From 9f139c7ecb02f52ef0209ed1280d55ea630c1cbb Mon Sep 17 00:00:00 2001 From: PlayFab SDK Team Date: Mon, 22 Jul 2024 21:41:21 +0000 Subject: [PATCH] https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240719 --- PlayFabSdk/Scripts/PlayFab/PlayFab.js | 6 +++--- .../Scripts/typings/PlayFab/PlayFabAdmin.d.ts | 20 ++++++++++++++++++- .../typings/PlayFab/PlayFabEconomy.d.ts | 2 +- .../typings/PlayFab/PlayFabMultiplayer.d.ts | 3 ++- .../typings/PlayFab/PlayFabServer.d.ts | 20 ++++++++++++++++++- PlayFabSdk/package-lock.json | 4 ++-- PlayFabSdk/package.json | 2 +- 7 files changed, 47 insertions(+), 10 deletions(-) diff --git a/PlayFabSdk/Scripts/PlayFab/PlayFab.js b/PlayFabSdk/Scripts/PlayFab/PlayFab.js index 51b23da..eda6fca 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.156.240621"; -exports.buildIdentifier = "adobuild_nodesdk_114"; +exports.sdk_version = "2.157.240719"; +exports.buildIdentifier = "adobuild_nodesdk_117"; var settings = (exports.settings = { productionUrl: ".playfabapi.com", @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = { entityToken: null, sessionTicket: null, requestGetParams: { - sdk: "JavaScriptSDK-2.156.240621", + sdk: "JavaScriptSDK-2.157.240719", }, }); diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts index f1d80b1..14b6ff8 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts @@ -2525,8 +2525,16 @@ declare module PlayFabAdminModels { | "StatisticDefinitionModificationNotAllowedWhileLinked" | "LeaderboardUpdateNotAllowedWhileLinked" | "CloudScriptAzureFunctionsEventHubRequestError" - | "LeaderboardRateLimitExceeded" | "ExternalEntityNotAllowedForTier" + | "InvalidBaseTimeForInterval" + | "EntityTypeMismatchWithStatDefinition" + | "SpecifiedVersionLeaderboardNotFound" + | "LeaderboardColumnLengthMismatchWithStatDefinition" + | "DuplicateColumnNameFound" + | "LinkedStatisticColumnNotFound" + | "LinkedStatisticColumnRequired" + | "MultipleLinkedStatisticsNotAllowed" + | "MaxQueryableVerionsValueNotAllowedForTier" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" @@ -2704,6 +2712,7 @@ declare module PlayFabAdminModels { | "EventSinkTitleUnauthorized" | "EventSinkInsufficientRoleAssignment" | "EventSinkContainerNotFound" + | "EventSinkTenantIdInvalid" | "OperationCanceled" | "InvalidDisplayNameRandomSuffixLength" | "AllowNonUniquePlayerDisplayNamesDisableNotAllowed" @@ -2785,7 +2794,16 @@ declare module PlayFabAdminModels { | "TrueSkillInvalidAnomalyThreshold" | "TrueSkillConditionKeyLimitExceeded" | "TrueSkillConditionValuePerKeyLimitExceeded" + | "TrueSkillInvalidTimestamp" | "TrueSkillEventLimitExceeded" + | "TrueSkillInvalidPlayers" + | "TrueSkillTrueSkillPlayerNull" + | "TrueSkillInvalidPlayerId" + | "TrueSkillInvalidSquadSize" + | "TrueSkillConditionSetNotInModel" + | "GameSaveManifestNotFound" + | "GameSaveManifestVersionAlreadyExists" + | "GameSaveConflictUpdatingManifest" | "StateShareForbidden" | "StateShareTitleNotInFlight" | "StateShareStateNotFound" diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts index 5b2e4cc..59c3bab 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts @@ -47,7 +47,7 @@ declare module PlayFabEconomyModule { request: PlayFabEconomyModels.DeleteItemRequest | null, callback: PlayFabModule.ApiCallback | null, ): void; - // Execute a list of Inventory Operations. A maximum list of 250 operations can be performed by a single request. There is + // Execute a list of Inventory Operations. A maximum list of 50 operations can be performed by a single request. There is // also a limit to 300 items that can be modified/added in a single request. For example, adding a bundle with 50 items // counts as 50 items modified. All operations must be done within a single inventory collection. This API has a reduced // RPS compared to an individual inventory operation with Player Entities limited to 60 requests in 90 seconds. diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts index f7676e8..9e7998c 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts @@ -1472,7 +1472,8 @@ declare module PlayFabMultiplayerModels { | "SameEntityLoginProvider" | "DifferentEntityLoginProvider" | "AnyEntityLoginProvider" - | "AnyPlatformTypeAndEntityLoginProvider"; + | "AnyPlatformTypeAndEntityLoginProvider" + | "OnlyServers"; export interface DynamicStandbySettings { // List of auto standing by trigger values and corresponding standing by multiplier. Defaults to 1.5X at 50%, 3X at 25%, diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts index 7af48a1..207c57e 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts @@ -2420,8 +2420,16 @@ declare module PlayFabServerModels { | "StatisticDefinitionModificationNotAllowedWhileLinked" | "LeaderboardUpdateNotAllowedWhileLinked" | "CloudScriptAzureFunctionsEventHubRequestError" - | "LeaderboardRateLimitExceeded" | "ExternalEntityNotAllowedForTier" + | "InvalidBaseTimeForInterval" + | "EntityTypeMismatchWithStatDefinition" + | "SpecifiedVersionLeaderboardNotFound" + | "LeaderboardColumnLengthMismatchWithStatDefinition" + | "DuplicateColumnNameFound" + | "LinkedStatisticColumnNotFound" + | "LinkedStatisticColumnRequired" + | "MultipleLinkedStatisticsNotAllowed" + | "MaxQueryableVerionsValueNotAllowedForTier" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" @@ -2599,6 +2607,7 @@ declare module PlayFabServerModels { | "EventSinkTitleUnauthorized" | "EventSinkInsufficientRoleAssignment" | "EventSinkContainerNotFound" + | "EventSinkTenantIdInvalid" | "OperationCanceled" | "InvalidDisplayNameRandomSuffixLength" | "AllowNonUniquePlayerDisplayNamesDisableNotAllowed" @@ -2680,7 +2689,16 @@ declare module PlayFabServerModels { | "TrueSkillInvalidAnomalyThreshold" | "TrueSkillConditionKeyLimitExceeded" | "TrueSkillConditionValuePerKeyLimitExceeded" + | "TrueSkillInvalidTimestamp" | "TrueSkillEventLimitExceeded" + | "TrueSkillInvalidPlayers" + | "TrueSkillTrueSkillPlayerNull" + | "TrueSkillInvalidPlayerId" + | "TrueSkillInvalidSquadSize" + | "TrueSkillConditionSetNotInModel" + | "GameSaveManifestNotFound" + | "GameSaveManifestVersionAlreadyExists" + | "GameSaveConflictUpdatingManifest" | "StateShareForbidden" | "StateShareTitleNotInFlight" | "StateShareStateNotFound" diff --git a/PlayFabSdk/package-lock.json b/PlayFabSdk/package-lock.json index 18570ea..10c19d9 100644 --- a/PlayFabSdk/package-lock.json +++ b/PlayFabSdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "playfab-sdk", - "version": "2.156.240621", + "version": "2.157.240719", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playfab-sdk", - "version": "2.156.240621", + "version": "2.157.240719", "license": "Apache-2.0", "devDependencies": { "@types/node": "^9.6.55", diff --git a/PlayFabSdk/package.json b/PlayFabSdk/package.json index 7e570a6..4dd5560 100644 --- a/PlayFabSdk/package.json +++ b/PlayFabSdk/package.json @@ -1,6 +1,6 @@ { "name": "playfab-sdk", - "version": "2.156.240621", + "version": "2.157.240719", "description": "Playfab SDK for node.js applications", "license": "Apache-2.0", "devDependencies": {