diff --git a/PlayFabSdk/Scripts/PlayFab/PlayFab.js b/PlayFabSdk/Scripts/PlayFab/PlayFab.js index a084a09..4b0122a 100644 --- a/PlayFabSdk/Scripts/PlayFab/PlayFab.js +++ b/PlayFabSdk/Scripts/PlayFab/PlayFab.js @@ -3,8 +3,8 @@ var url = require("url"); var https = require("https"); -exports.sdk_version = "2.89.220328"; -exports.buildIdentifier = "adobuild_nodesdk_114"; +exports.sdk_version = "2.90.220406"; +exports.buildIdentifier = "adobuild_nodesdk_8"; var settings = (exports.settings = { productionUrl: ".playfabapi.com", @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = { entityToken: null, sessionTicket: null, requestGetParams: { - sdk: "JavaScriptSDK-2.89.220328", + sdk: "JavaScriptSDK-2.90.220406", }, }); diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts index 242cd64..f8282aa 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts @@ -2333,6 +2333,7 @@ declare module PlayFabAdminModels { | "PlayerIdentityLinkNotFound" | "PhotonApplicationIdAlreadyInUse" | "CloudScriptUnableToDeleteProductionRevision" + | "CustomIdNotFound" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAuthentication.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAuthentication.d.ts index 7c050de..f779041 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAuthentication.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAuthentication.d.ts @@ -45,7 +45,7 @@ declare module PlayFabAuthenticationModels { export interface GetEntityTokenRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; } diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts index 59a9746..e07911c 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts @@ -412,7 +412,7 @@ declare module PlayFabCloudScriptModels { export interface ExecuteEntityCloudScriptRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The name of the CloudScript function to execute FunctionName: string; @@ -432,7 +432,7 @@ declare module PlayFabCloudScriptModels { export interface ExecuteFunctionRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The name of the CloudScript function to execute FunctionName: string; @@ -681,7 +681,7 @@ declare module PlayFabCloudScriptModels { export interface PostFunctionResultForPlayerTriggeredActionRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The result of the function execution. FunctionResult: ExecuteFunctionResult; diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabExperimentation.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabExperimentation.d.ts index 403a561..8836c93 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabExperimentation.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabExperimentation.d.ts @@ -260,7 +260,7 @@ declare module PlayFabExperimentationModels { export interface GetTreatmentAssignmentRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; } diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabGroups.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabGroups.d.ts index dca6ed4..3a955b0 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabGroups.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabGroups.d.ts @@ -170,7 +170,7 @@ declare module PlayFabGroupsModels { export interface AcceptGroupInvitationRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The identifier of the group Group: EntityKey; @@ -193,7 +193,7 @@ declare module PlayFabGroupsModels { AutoAcceptOutstandingInvite?: boolean; // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The identifier of the group Group: EntityKey; @@ -235,7 +235,7 @@ declare module PlayFabGroupsModels { export interface CreateGroupRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The name of the group. This is unique at the title level by default. GroupName: string; @@ -489,7 +489,7 @@ declare module PlayFabGroupsModels { export interface ListMembershipOpportunitiesRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; } @@ -503,7 +503,7 @@ declare module PlayFabGroupsModels { export interface ListMembershipRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; } diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabProfiles.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabProfiles.d.ts index 22fd848..63d6854 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabProfiles.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabProfiles.d.ts @@ -172,7 +172,7 @@ declare module PlayFabProfilesModels { // Determines whether the objects will be returned as an escaped JSON string or as a un-escaped JSON object. Default is // JSON string. DataAsObject?: boolean; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; } @@ -199,6 +199,8 @@ declare module PlayFabProfilesModels { export interface GetGlobalPolicyRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; + // The optional entity to perform this action on. Defaults to the currently logged in entity. + Entity?: EntityKey; } export interface GetGlobalPolicyResponse extends PlayFabModule.IPlayFabResultCommon { @@ -254,7 +256,7 @@ declare module PlayFabProfilesModels { export interface SetProfileLanguageRequest extends PlayFabModule.IPlayFabRequestCommon { // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; - // The entity to perform this action on. + // The optional entity to perform this action on. Defaults to the currently logged in entity. Entity?: EntityKey; // The expected version of a profile to perform this update on ExpectedVersion?: number; diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts index f8f59f9..22d88f8 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts @@ -2313,6 +2313,7 @@ declare module PlayFabServerModels { | "PlayerIdentityLinkNotFound" | "PhotonApplicationIdAlreadyInUse" | "CloudScriptUnableToDeleteProductionRevision" + | "CustomIdNotFound" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" diff --git a/PlayFabSdk/package-lock.json b/PlayFabSdk/package-lock.json index 28a474e..a888d6c 100644 --- a/PlayFabSdk/package-lock.json +++ b/PlayFabSdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "playfab-sdk", - "version": "2.89.220328", + "version": "2.90.220406", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playfab-sdk", - "version": "2.89.220328", + "version": "2.90.220406", "license": "Apache-2.0", "devDependencies": { "@types/node": "^9.6.55", diff --git a/PlayFabSdk/package.json b/PlayFabSdk/package.json index 8936f6f..1a6a157 100644 --- a/PlayFabSdk/package.json +++ b/PlayFabSdk/package.json @@ -1,6 +1,6 @@ { "name": "playfab-sdk", - "version": "2.89.220328", + "version": "2.90.220406", "description": "Playfab SDK for node.js applications", "license": "Apache-2.0", "devDependencies": {