Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230220
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Feb 20, 2023
2 parents e6978d5 + f809cd4 commit 5f933df
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 7 deletions.
4 changes: 2 additions & 2 deletions PlayFabSdk/Scripts/PlayFab/PlayFab.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = {
entityToken: null,
sessionTicket: null,
requestGetParams: {
sdk: "JavaScriptSDK-2.118.230206",
sdk: "JavaScriptSDK-2.119.230220",
},
});

Expand Down
1 change: 1 addition & 0 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2395,6 +2395,7 @@ declare module PlayFabAdminModels {
| "AnalysisSubscriptionFoundAlready"
| "AnalysisSubscriptionManagementInvalidInput"
| "InvalidGameCenterId"
| "InvalidNintendoSwitchAccountId"
| "MatchmakingEntityInvalid"
| "MatchmakingPlayerAttributesInvalid"
| "MatchmakingQueueNotFound"
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 =
Expand Down
22 changes: 22 additions & 0 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2386,6 +2386,7 @@ declare module PlayFabServerModels {
| "AnalysisSubscriptionFoundAlready"
| "AnalysisSubscriptionManagementInvalidInput"
| "InvalidGameCenterId"
| "InvalidNintendoSwitchAccountId"
| "MatchmakingEntityInvalid"
| "MatchmakingPlayerAttributesInvalid"
| "MatchmakingQueueNotFound"
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSdk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion PlayFabSdk/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 5f933df

Please sign in to comment.