Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#220118
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Jan 19, 2022
2 parents 1a727aa + a0d24e7 commit 19f16d7
Show file tree
Hide file tree
Showing 6 changed files with 1,542 additions and 658 deletions.
6 changes: 3 additions & 3 deletions PlayFabSdk/Scripts/PlayFab/PlayFab.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
var url = require("url");
var https = require("https");

exports.sdk_version = "2.80.211209";
exports.buildIdentifier = "jbuild_nodesdk_sdk-generic-2_1";
exports.sdk_version = "2.81.220118";
exports.buildIdentifier = "adobuild_nodesdk_115";

var settings = (exports.settings = {
productionUrl: ".playfabapi.com",
Expand All @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = {
entityToken: null,
sessionTicket: null,
requestGetParams: {
sdk: "JavaScriptSDK-2.80.211209",
sdk: "JavaScriptSDK-2.81.220118",
},
});

Expand Down
9 changes: 4 additions & 5 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -951,8 +951,6 @@ declare module PlayFabAdminModels {
Expires?: string;
// The IP address on which the ban was applied. May affect multiple players.
IPAddress?: string;
// The MAC address on which the ban was applied. May affect multiple players.
MACAddress?: string;
// Unique PlayFab assigned ID of the user on whom the operation will be performed.
PlayFabId?: string;
// The reason why this ban was applied.
Expand Down Expand Up @@ -2412,7 +2410,6 @@ declare module PlayFabAdminModels {
| "ApiNotEnabledForTitle"
| "DuplicateTitleNameForPublisher"
| "AzureTitleCreationInProgress"
| "DuplicateAzureResourceId"
| "TitleConstraintsPublisherDeletion"
| "InvalidPlayerAccountPoolId"
| "PlayerAccountPoolNotFound"
Expand Down Expand Up @@ -2448,7 +2445,7 @@ declare module PlayFabAdminModels {
| "MatchmakingBadRequest"
| "PubSubFeatureNotEnabledForTitle"
| "PubSubTooManyRequests"
| "PubSubConnectionHandleAccessDenied"
| "PubSubConnectionNotFoundForEntity"
| "PubSubConnectionHandleInvalid"
| "PubSubSubscriptionLimitExceeded"
| "TitleConfigNotFound"
Expand Down Expand Up @@ -2572,7 +2569,9 @@ declare module PlayFabAdminModels {
| "EventSinkConnectionInvalid"
| "EventSinkConnectionUnauthorized"
| "EventSinkRegionInvalid"
| "OperationCanceled";
| "OperationCanceled"
| "InvalidDisplayNameRandomSuffixLength"
| "AllowNonUniquePlayerDisplayNamesDisableNotAllowed";

export interface GetActionsOnPlayersInSegmentTaskInstanceResult extends PlayFabModule.IPlayFabResultCommon {
// Parameter of this task instance
Expand Down
11 changes: 11 additions & 0 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabMultiplayer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,8 @@ declare module PlayFabMultiplayerModels {
UseStreamingForAssetDownloads?: boolean;
// The VM size to create the build on.
VmSize?: string;
// The crash dump configuration for the build.
WindowsCrashDumpConfiguration?: WindowsCrashDumpConfiguration;
}

export interface CreateBuildWithManagedContainerResponse extends PlayFabModule.IPlayFabResultCommon {
Expand Down Expand Up @@ -2403,4 +2405,13 @@ declare module PlayFabMultiplayerModels {
VmId?: string;
}

export interface WindowsCrashDumpConfiguration {
// See https://docs.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps for valid values.
CustomDumpFlags?: number;
// See https://docs.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps for valid values.
DumpType?: number;
// Designates whether automatic crash dump capturing will be enabled for this Build.
IsEnabled: boolean;
}

}
9 changes: 4 additions & 5 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1012,8 +1012,6 @@ declare module PlayFabServerModels {
Expires?: string;
// The IP address on which the ban was applied. May affect multiple players.
IPAddress?: string;
// The MAC address on which the ban was applied. May affect multiple players.
MACAddress?: string;
// Unique PlayFab assigned ID of the user on whom the operation will be performed.
PlayFabId?: string;
// The reason why this ban was applied.
Expand Down Expand Up @@ -2313,7 +2311,6 @@ declare module PlayFabServerModels {
| "ApiNotEnabledForTitle"
| "DuplicateTitleNameForPublisher"
| "AzureTitleCreationInProgress"
| "DuplicateAzureResourceId"
| "TitleConstraintsPublisherDeletion"
| "InvalidPlayerAccountPoolId"
| "PlayerAccountPoolNotFound"
Expand Down Expand Up @@ -2349,7 +2346,7 @@ declare module PlayFabServerModels {
| "MatchmakingBadRequest"
| "PubSubFeatureNotEnabledForTitle"
| "PubSubTooManyRequests"
| "PubSubConnectionHandleAccessDenied"
| "PubSubConnectionNotFoundForEntity"
| "PubSubConnectionHandleInvalid"
| "PubSubSubscriptionLimitExceeded"
| "TitleConfigNotFound"
Expand Down Expand Up @@ -2473,7 +2470,9 @@ declare module PlayFabServerModels {
| "EventSinkConnectionInvalid"
| "EventSinkConnectionUnauthorized"
| "EventSinkRegionInvalid"
| "OperationCanceled";
| "OperationCanceled"
| "InvalidDisplayNameRandomSuffixLength"
| "AllowNonUniquePlayerDisplayNamesDisableNotAllowed";

export interface GenericPlayFabIdPair {
// Unique generic service identifier for a user.
Expand Down
Loading

0 comments on commit 19f16d7

Please sign in to comment.