Skip to content

Commit 816db1c

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#201218
1 parent 11a5eb8 commit 816db1c

35 files changed

+2191
-431
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.77.201027",
3+
"version": "1.79.201218",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";
@@ -309,6 +309,10 @@ PlayFab.AdminApi = {
309309
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/CreatePlayerStatisticDefinition", request, "X-SecretKey", callback, customData, extraHeaders);
310310
},
311311

312+
CreateSegment: function (request, callback, customData, extraHeaders) {
313+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/CreateSegment", request, "X-SecretKey", callback, customData, extraHeaders);
314+
},
315+
312316
DeleteContent: function (request, callback, customData, extraHeaders) {
313317
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeleteContent", request, "X-SecretKey", callback, customData, extraHeaders);
314318
},
@@ -329,6 +333,10 @@ PlayFab.AdminApi = {
329333
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeletePlayerSharedSecret", request, "X-SecretKey", callback, customData, extraHeaders);
330334
},
331335

336+
DeleteSegment: function (request, callback, customData, extraHeaders) {
337+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeleteSegment", request, "X-SecretKey", callback, customData, extraHeaders);
338+
},
339+
332340
DeleteStore: function (request, callback, customData, extraHeaders) {
333341
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeleteStore", request, "X-SecretKey", callback, customData, extraHeaders);
334342
},
@@ -441,6 +449,10 @@ PlayFab.AdminApi = {
441449
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetRandomResultTables", request, "X-SecretKey", callback, customData, extraHeaders);
442450
},
443451

452+
GetSegments: function (request, callback, customData, extraHeaders) {
453+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetSegments", request, "X-SecretKey", callback, customData, extraHeaders);
454+
},
455+
444456
GetServerBuildInfo: function (request, callback, customData, extraHeaders) {
445457
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetServerBuildInfo", request, "X-SecretKey", callback, customData, extraHeaders);
446458
},
@@ -665,6 +677,10 @@ PlayFab.AdminApi = {
665677
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateRandomResultTables", request, "X-SecretKey", callback, customData, extraHeaders);
666678
},
667679

680+
UpdateSegment: function (request, callback, customData, extraHeaders) {
681+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateSegment", request, "X-SecretKey", callback, customData, extraHeaders);
682+
},
683+
668684
UpdateStoreItems: function (request, callback, customData, extraHeaders) {
669685
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateStoreItems", request, "X-SecretKey", callback, customData, extraHeaders);
670686
},

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabExperimentationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabInsightsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.77.201027",
25+
sdkVersion: "1.79.201218",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.77.201027"
27+
sdk: "JavaScriptSDK-1.79.201218"
2828
},
2929
sessionTicket: null,
3030
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-3_2";
235-
PlayFab.sdkVersion = "1.77.201027";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.79.201218";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

0 commit comments

Comments
 (0)