Skip to content

Commit f945b71

Browse files
https://api.playfab.com/releaseNotes/#190424
2 parents 8c6fdba + 2f9946b commit f945b71

31 files changed

+431
-123
lines changed

PlayFabSdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playfab-web-sdk",
3-
"version": "1.43.190410",
3+
"version": "1.44.190424",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";
@@ -249,6 +249,22 @@ PlayFab.AuthenticationApi = {
249249
PlayFab._internalSettings.entityToken = null;
250250
},
251251

252+
ActivateKey: function (request, callback, customData, extraHeaders) {
253+
return PlayFab._internalSettings.ExecuteRequestWrapper("/APIKey/ActivateKey", request, "X-EntityToken", callback, customData, extraHeaders);
254+
},
255+
256+
CreateKey: function (request, callback, customData, extraHeaders) {
257+
return PlayFab._internalSettings.ExecuteRequestWrapper("/APIKey/CreateKey", request, "X-EntityToken", callback, customData, extraHeaders);
258+
},
259+
260+
DeactivateKey: function (request, callback, customData, extraHeaders) {
261+
return PlayFab._internalSettings.ExecuteRequestWrapper("/APIKey/DeactivateKey", request, "X-EntityToken", callback, customData, extraHeaders);
262+
},
263+
264+
DeleteKey: function (request, callback, customData, extraHeaders) {
265+
return PlayFab._internalSettings.ExecuteRequestWrapper("/APIKey/DeleteKey", request, "X-EntityToken", callback, customData, extraHeaders);
266+
},
267+
252268
GetEntityToken: function (request, callback, customData, extraHeaders) {
253269
var authKey = null; var authValue = null;
254270
if (!authKey && PlayFab._internalSettings.sessionTicket) { var authInfo = PlayFab._internalSettings.GetAuthInfo(request, authKey="X-Authorization"); authKey = authInfo.authKey, authValue = authInfo.authValue; }
@@ -261,6 +277,10 @@ PlayFab.AuthenticationApi = {
261277
};
262278
return PlayFab._internalSettings.ExecuteRequestWrapper("/Authentication/GetEntityToken", request, authKey, overloadCallback, customData, extraHeaders);
263279
},
280+
281+
GetKeys: function (request, callback, customData, extraHeaders) {
282+
return PlayFab._internalSettings.ExecuteRequestWrapper("/APIKey/GetKeys", request, "X-EntityToken", callback, customData, extraHeaders);
283+
},
264284
};
265285

266286
var PlayFabAuthenticationSDK = PlayFab.AuthenticationApi;

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabLocalizationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.43.190410",
24+
sdkVersion: "1.44.190424",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.43.190410"
26+
sdk: "JavaScriptSDK-1.44.190424"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_0";
235-
PlayFab.sdkVersion = "1.43.190410";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-2_1";
235+
PlayFab.sdkVersion = "1.44.190424";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

0 commit comments

Comments
 (0)