Skip to content

Commit a1d841f

Browse files
author
Playfab Jenkins Bot
committed
https://api.playfab.com/releaseNotes/#170130
1 parent f14aa79 commit a1d841f

14 files changed

+72
-38
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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
104104

105105
PlayFab.ServerApi = {
106106

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ declare module PlayFabAdminModule {
366366
*/
367367
GetContentList(request: PlayFabAdminModels.GetContentListRequest, callback: PlayFabModule.ApiCallback<PlayFabAdminModels.GetContentListResult>): void;
368368
/**
369-
/ Retrieves the pre-signed URL for uploading a content file. A subsequent HTTP PUT to the returned URL uploads the content.
369+
/ Retrieves the pre-signed URL for uploading a content file. A subsequent HTTP PUT to the returned URL uploads the content. Also, please be aware that the Content service is specifically PlayFab's CDN offering, for which standard CDN rates apply.
370370
/ https://api.playfab.com/Documentation/Admin/method/GetContentUploadUrl
371371
*/
372372
GetContentUploadUrl(request: PlayFabAdminModels.GetContentUploadUrlRequest, callback: PlayFabModule.ApiCallback<PlayFabAdminModels.GetContentUploadUrlResult>): void;

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

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ declare module PlayFabClientModule {
3333
*/
3434
LoginWithGameCenter(request: PlayFabClientModels.LoginWithGameCenterRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.LoginResult>): void;
3535
/**
36-
/ Signs the user in using a Google account access token(https://developers.google.com/android/reference/com/google/android/gms/auth/GoogleAuthUtil#public-methods), returning a session identifier that can subsequently be used for API calls which require an authenticated user
36+
/ Signs the user in using their Google account credentials
3737
/ https://api.playfab.com/Documentation/Client/method/LoginWithGoogleAccount
3838
*/
3939
LoginWithGoogleAccount(request: PlayFabClientModels.LoginWithGoogleAccountRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.LoginResult>): void;
@@ -143,7 +143,7 @@ declare module PlayFabClientModule {
143143
*/
144144
LinkGameCenterAccount(request: PlayFabClientModels.LinkGameCenterAccountRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.LinkGameCenterAccountResult>): void;
145145
/**
146-
/ Links the currently signed-in user account to the Google account specified by the Google account access token (https://developers.google.com/android/reference/com/google/android/gms/auth/GoogleAuthUtil#public-methods).
146+
/ Links the currently signed-in user account to their Google account, using their Google account credentials
147147
/ https://api.playfab.com/Documentation/Client/method/LinkGoogleAccount
148148
*/
149149
LinkGoogleAccount(request: PlayFabClientModels.LinkGoogleAccountRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.LinkGoogleAccountResult>): void;
@@ -503,7 +503,7 @@ declare module PlayFabClientModule {
503503
*/
504504
ExecuteCloudScript(request: PlayFabClientModels.ExecuteCloudScriptRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.ExecuteCloudScriptResult>): void;
505505
/**
506-
/ This API retrieves a pre-signed URL for accessing a content file for the title. A subsequent HTTP GET to the returned URL will attempt to download the content. A HEAD query to the returned URL will attempt to retrieve the metadata of the content. Note that a successful result does not guarantee the existence of this content - if it has not been uploaded, the query to retrieve the data will fail. See this post for more information: https://community.playfab.com/hc/en-us/community/posts/205469488-How-to-upload-files-to-PlayFab-s-Content-Service
506+
/ This API retrieves a pre-signed URL for accessing a content file for the title. A subsequent HTTP GET to the returned URL will attempt to download the content. A HEAD query to the returned URL will attempt to retrieve the metadata of the content. Note that a successful result does not guarantee the existence of this content - if it has not been uploaded, the query to retrieve the data will fail. See this post for more information: https://community.playfab.com/hc/en-us/community/posts/205469488-How-to-upload-files-to-PlayFab-s-Content-Service. Also, please be aware that the Content service is specifically PlayFab's CDN offering, for which standard CDN rates apply.
507507
/ https://api.playfab.com/Documentation/Client/method/GetContentDownloadUrl
508508
*/
509509
GetContentDownloadUrl(request: PlayFabClientModels.GetContentDownloadUrlRequest, callback: PlayFabModule.ApiCallback<PlayFabClientModels.GetContentDownloadUrlResult>): void;
@@ -3110,9 +3110,13 @@ declare module PlayFabClientModels {
31103110
*/
31113111
export interface LinkGoogleAccountRequest extends PlayFabModule.IPlayFabRequestCommon {
31123112
/**
3113-
/ Unique token (https://developers.google.com/android/reference/com/google/android/gms/auth/GoogleAuthUtil#public-methods) from Google Play for the user.
3113+
/ Server authentication code obtained on the client by calling getServerAuthCode() (https://developers.google.com/identity/sign-in/android/offline-access) from Google Play for the user.
31143114
*/
3115-
AccessToken: string;
3115+
ServerAuthCode?: string;
3116+
/**
3117+
/ OAuth 2.0 access token obtained on the client by calling the getAccessToken() Google client API.
3118+
*/
3119+
AccessToken?: string;
31163120
/**
31173121
/ If another user is already linked to the account, unlink the other user and re-link.
31183122
*/
@@ -3412,9 +3416,13 @@ declare module PlayFabClientModels {
34123416
*/
34133417
TitleId?: string;
34143418
/**
3415-
/ Unique token (https://developers.google.com/android/reference/com/google/android/gms/auth/GoogleAuthUtil#public-methods) from Google Play for the user.
3419+
/ OAuth 2.0 server authentication code obtained on the client by calling the getServerAuthCode() (https://developers.google.com/identity/sign-in/android/offline-access) Google client API.
34163420
*/
3417-
AccessToken: string;
3421+
ServerAuthCode?: string;
3422+
/**
3423+
/ OAuth 2.0 access token obtained on the client by calling the getAccessToken() Google client API.
3424+
*/
3425+
AccessToken?: string;
34183426
/**
34193427
/ Automatically create a PlayFab account if one is not currently linked to this Google account.
34203428
*/
@@ -3672,6 +3680,15 @@ declare module PlayFabClientModels {
36723680

36733681
}
36743682

3683+
/**
3684+
/ https://api.playfab.com/Documentation/Client/datatype/PlayFab.Client.Models/PlayFab.Client.Models.NameIdentifier
3685+
*/
3686+
export interface NameIdentifier {
3687+
Name?: string;
3688+
Id?: string;
3689+
3690+
}
3691+
36753692
/**
36763693
/ https://api.playfab.com/Documentation/Client/datatype/PlayFab.Client.Models/PlayFab.Client.Models.OpenTradeRequest
36773694
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ declare module PlayFabServerModule {
416416
*/
417417
ExecuteCloudScript(request: PlayFabServerModels.ExecuteCloudScriptServerRequest, callback: PlayFabModule.ApiCallback<PlayFabServerModels.ExecuteCloudScriptResult>): void;
418418
/**
419-
/ This API retrieves a pre-signed URL for accessing a content file for the title. A subsequent HTTP GET to the returned URL will attempt to download the content. A HEAD query to the returned URL will attempt to retrieve the metadata of the content. Note that a successful result does not guarantee the existence of this content - if it has not been uploaded, the query to retrieve the data will fail. See this post for more information: https://community.playfab.com/hc/en-us/community/posts/205469488-How-to-upload-files-to-PlayFab-s-Content-Service
419+
/ This API retrieves a pre-signed URL for accessing a content file for the title. A subsequent HTTP GET to the returned URL will attempt to download the content. A HEAD query to the returned URL will attempt to retrieve the metadata of the content. Note that a successful result does not guarantee the existence of this content - if it has not been uploaded, the query to retrieve the data will fail. See this post for more information: https://community.playfab.com/hc/en-us/community/posts/205469488-How-to-upload-files-to-PlayFab-s-Content-Service. Also, please be aware that the Content service is specifically PlayFab's CDN offering, for which standard CDN rates apply.
420420
/ https://api.playfab.com/Documentation/Server/method/GetContentDownloadUrl
421421
*/
422422
GetContentDownloadUrl(request: PlayFabServerModels.GetContentDownloadUrlRequest, callback: PlayFabModule.ApiCallback<PlayFabServerModels.GetContentDownloadUrlResult>): void;
@@ -4043,7 +4043,7 @@ declare module PlayFabServerModels {
40434043
*/
40444044
export interface SetGameServerInstanceDataRequest extends PlayFabModule.IPlayFabRequestCommon {
40454045
/**
4046-
/ Unique identifier of the Game Instance to be updated.
4046+
/ Unique identifier of the Game Instance to be updated, in decimal format.
40474047
*/
40484048
LobbyId: string;
40494049
/**
@@ -4065,7 +4065,7 @@ declare module PlayFabServerModels {
40654065
*/
40664066
export interface SetGameServerInstanceStateRequest extends PlayFabModule.IPlayFabRequestCommon {
40674067
/**
4068-
/ Unique identifier of the Game Instance to be updated.
4068+
/ Unique identifier of the Game Instance to be updated, in decimal format.
40694069
*/
40704070
LobbyId: string;
40714071
/**

PlayFabTestingExample/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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
104104

105105
PlayFab.AdminApi = {
106106

PlayFabTestingExample/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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
104104

105105
PlayFab.ClientApi = {
106106

PlayFabTestingExample/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 = "javascriptsdk_manual";
103-
PlayFab.sdkVersion = "1.-1.170109";
102+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
103+
PlayFab.sdkVersion = "1.0.170130";
104104

105105
PlayFab.MatchmakerApi = {
106106

0 commit comments

Comments
 (0)