Skip to content

Commit c8d9e13

Browse files
author
Playfab Jenkins Bot
committed
https://api.playfab.com/releaseNotes/#170313
2 parents 5fd598b + 1826790 commit c8d9e13

20 files changed

+962
-232
lines changed

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ if(!PlayFab._internalSettings) {
9999
}
100100
}
101101

102-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
103-
PlayFab.sdkVersion = "1.1.170223";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.2.170313";
104104

105105
PlayFab.AdminApi = {
106106

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ if(!PlayFab._internalSettings) {
9999
}
100100
}
101101

102-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
103-
PlayFab.sdkVersion = "1.1.170223";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.2.170313";
104104

105105
PlayFab.ClientApi = {
106106

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ if(!PlayFab._internalSettings) {
9999
}
100100
}
101101

102-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
103-
PlayFab.sdkVersion = "1.1.170223";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.2.170313";
104104

105105
PlayFab.MatchmakerApi = {
106106

PlayFabSdk/src/PlayFab/PlayFabServerApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ if(!PlayFab._internalSettings) {
9999
}
100100
}
101101

102-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
103-
PlayFab.sdkVersion = "1.1.170223";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.2.170313";
104104

105105
PlayFab.ServerApi = {
106106

PlayFabSdk/src/Typings/PlayFab/PlayFabAdminApi.d.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="Playfab.d.ts" />
2+
13
declare module PlayFabAdminModule {
24
export interface IPlayFabAdmin {
35
/**
@@ -1658,6 +1660,7 @@ declare module PlayFabAdminModels {
16581660
}
16591661

16601662
type EffectType = "Allow"
1663+
| "Deny";
16611664

16621665
/**
16631666
/ https://api.playfab.com/Documentation/Client/datatype/PlayFab.Admin.Models/PlayFab.Admin.Models.EmptyResult
@@ -3072,7 +3075,7 @@ declare module PlayFabAdminModels {
30723075
*/
30733076
Action: string;
30743077
/**
3075-
/ The effect this statement will have. The only supported effect is 'Allow'.
3078+
/ The effect this statement will have. It could be either Allow or Deny
30763079
*/
30773080
Effect: string;
30783081
/**
@@ -3297,6 +3300,10 @@ declare module PlayFabAdminModels {
32973300
/ status of the process of saving player statistic values of the previous version to a downloadable archive
32983301
*/
32993302
ArchivalStatus?: string;
3303+
/**
3304+
/ status of the statistic version
3305+
*/
3306+
Status?: string;
33003307
/**
33013308
/ URL for the downloadable archive of player statistic values, if available
33023309
*/
@@ -3858,6 +3865,12 @@ declare module PlayFabAdminModels {
38583865
| "InProgress"
38593866
| "Complete";
38603867

3868+
type StatisticVersionStatus = "Active"
3869+
| "SnapshotPending"
3870+
| "Snapshot"
3871+
| "ArchivalPending"
3872+
| "Archived";
3873+
38613874
/**
38623875
/ https://api.playfab.com/Documentation/Client/datatype/PlayFab.Admin.Models/PlayFab.Admin.Models.StoreItem
38633876
*/

0 commit comments

Comments
 (0)