Skip to content

Commit 881b29e

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#200730
2 parents 8db2e7a + 17c8012 commit 881b29e

39 files changed

+341
-291
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.69.200713",
3+
"version": "1.70.200730",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabExperimentationApi.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515
disableAdvertising: false,
1616
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid"
17+
AD_TYPE_ANDROID_ID: "Adid",
18+
productionServerUrl: ".playfabapi.com"
1819
}
1920
}
2021

2122
if(!PlayFab._internalSettings) {
2223
PlayFab._internalSettings = {
2324
entityToken: null,
24-
sdkVersion: "1.69.200713",
25+
sdkVersion: "1.70.200730",
2526
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.69.200713"
27+
sdk: "JavaScriptSDK-1.70.200730"
2728
},
2829
sessionTicket: null,
2930
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30-
productionServerUrl: ".playfabapi.com",
3131
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
3232
errorLoggedIn: "Must be logged in to call this method",
3333
errorEntityToken: "You must successfully call GetEntityToken before calling this",
3434
errorSecretKey: "Must have PlayFab.settings.developerSecretKey set to call this method",
3535

3636
GetServerUrl: function () {
37-
if (!(PlayFab._internalSettings.productionServerUrl.substring(0, 4) === "http")) {
37+
if (!(PlayFab.settings.productionServerUrl.substring(0, 4) === "http")) {
3838
if (PlayFab._internalSettings.verticalName) {
39-
return "https://" + PlayFab._internalSettings.verticalName + PlayFab._internalSettings.productionServerUrl;
39+
return "https://" + PlayFab._internalSettings.verticalName + PlayFab.settings.productionServerUrl;
4040
} else {
41-
return "https://" + PlayFab.settings.titleId + PlayFab._internalSettings.productionServerUrl;
41+
return "https://" + PlayFab.settings.titleId + PlayFab.settings.productionServerUrl;
4242
}
4343
} else {
44-
return PlayFab._internalSettings.productionServerUrl;
44+
return PlayFab.settings.productionServerUrl;
4545
}
4646
},
4747

@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
235-
PlayFab.sdkVersion = "1.69.200713";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235+
PlayFab.sdkVersion = "1.70.200730";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

0 commit comments

Comments
 (0)