diff --git a/PlayFabSdk/Scripts/PlayFab/PlayFab.js b/PlayFabSdk/Scripts/PlayFab/PlayFab.js index 42a08b9..ef6ab3b 100644 --- a/PlayFabSdk/Scripts/PlayFab/PlayFab.js +++ b/PlayFabSdk/Scripts/PlayFab/PlayFab.js @@ -3,7 +3,7 @@ var url = require("url"); var https = require("https"); -exports.sdk_version = "2.118.230206"; +exports.sdk_version = "2.119.230220"; exports.buildIdentifier = "adobuild_nodesdk_114"; var settings = (exports.settings = { @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = { entityToken: null, sessionTicket: null, requestGetParams: { - sdk: "JavaScriptSDK-2.118.230206", + sdk: "JavaScriptSDK-2.119.230220", }, }); diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts index d70ea8a..0dc84ff 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts @@ -2395,6 +2395,7 @@ declare module PlayFabAdminModels { | "AnalysisSubscriptionFoundAlready" | "AnalysisSubscriptionManagementInvalidInput" | "InvalidGameCenterId" + | "InvalidNintendoSwitchAccountId" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts index e68e162..af921c2 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts @@ -1812,7 +1812,7 @@ declare module PlayFabEconomyModels { export interface TransferInventoryItemsOperation { // The amount to transfer. - Amount: number; + Amount?: number; // Indicates whether stacks reduced to an amount of 0 during the operation should be deleted from the inventory. (Default = // false) DeleteEmptyStacks: boolean; @@ -1826,7 +1826,7 @@ declare module PlayFabEconomyModels { export interface TransferInventoryItemsRequest extends PlayFabModule.IPlayFabRequestCommon { // The amount to transfer . - Amount: number; + Amount?: number; // The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). CustomTags?: { [key: string]: string | null }; // Indicates whether stacks reduced to an amount of 0 during the request should be deleted from the inventory. (Default = diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts index ac3886f..6e3c95e 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts @@ -871,6 +871,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size to create the build on. VmSize?: string; + // The configuration for the VmStartupScript for the build + VmStartupScriptConfiguration?: VmStartupScriptParams; } export interface CreateBuildWithCustomContainerResponse extends PlayFabModule.IPlayFabResultCommon { @@ -916,6 +918,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size the build was created on. VmSize?: string; + // The configuration for the VmStartupScript feature for the build + VmStartupScriptConfiguration?: VmStartupScriptConfiguration; } export interface CreateBuildWithManagedContainerRequest extends PlayFabModule.IPlayFabRequestCommon { @@ -957,6 +961,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size to create the build on. VmSize?: string; + // The configuration for the VmStartupScript for the build + VmStartupScriptConfiguration?: VmStartupScriptParams; // The crash dump configuration for the build. WindowsCrashDumpConfiguration?: WindowsCrashDumpConfiguration; } @@ -1005,6 +1011,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size the build was created on. VmSize?: string; + // The configuration for the VmStartupScript feature for the build + VmStartupScriptConfiguration?: VmStartupScriptConfiguration; } export interface CreateBuildWithProcessBasedServerRequest extends PlayFabModule.IPlayFabRequestCommon { @@ -1048,6 +1056,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size to create the build on. VmSize?: string; + // The configuration for the VmStartupScript for the build + VmStartupScriptConfiguration?: VmStartupScriptParams; } export interface CreateBuildWithProcessBasedServerResponse extends PlayFabModule.IPlayFabResultCommon { @@ -1096,6 +1106,8 @@ declare module PlayFabMultiplayerModels { UseStreamingForAssetDownloads?: boolean; // The VM size the build was created on. VmSize?: string; + // The configuration for the VmStartupScript feature for the build + VmStartupScriptConfiguration?: VmStartupScriptConfiguration; } export interface CreateLobbyRequest extends PlayFabModule.IPlayFabRequestCommon { @@ -2998,6 +3010,16 @@ declare module PlayFabMultiplayerModels { VmId?: string; } + export interface VmStartupScriptConfiguration { + // Asset which contains the VmStartupScript script and any other required files. + VmStartupScriptAssetReference: AssetReference; + } + + export interface VmStartupScriptParams { + // Asset which contains the VmStartupScript script and any other required files. + VmStartupScriptAssetReference: AssetReferenceParams; + } + export interface WindowsCrashDumpConfiguration { // See https://docs.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps for valid values. CustomDumpFlags?: number; diff --git a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts index 9aec3a7..9319d32 100644 --- a/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts +++ b/PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts @@ -2386,6 +2386,7 @@ declare module PlayFabServerModels { | "AnalysisSubscriptionFoundAlready" | "AnalysisSubscriptionManagementInvalidInput" | "InvalidGameCenterId" + | "InvalidNintendoSwitchAccountId" | "MatchmakingEntityInvalid" | "MatchmakingPlayerAttributesInvalid" | "MatchmakingQueueNotFound" diff --git a/PlayFabSdk/package-lock.json b/PlayFabSdk/package-lock.json index 4670ec4..a5a924b 100644 --- a/PlayFabSdk/package-lock.json +++ b/PlayFabSdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "playfab-sdk", - "version": "2.118.230206", + "version": "2.119.230220", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playfab-sdk", - "version": "2.118.230206", + "version": "2.119.230220", "license": "Apache-2.0", "devDependencies": { "@types/node": "^9.6.55", diff --git a/PlayFabSdk/package.json b/PlayFabSdk/package.json index 70baf3c..2c7b246 100644 --- a/PlayFabSdk/package.json +++ b/PlayFabSdk/package.json @@ -1,6 +1,6 @@ { "name": "playfab-sdk", - "version": "2.118.230206", + "version": "2.119.230220", "description": "Playfab SDK for node.js applications", "license": "Apache-2.0", "devDependencies": {