Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#220406
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Apr 6, 2022
2 parents 9e42804 + 2e4eeb1 commit e129f76
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 18 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.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",
Expand All @@ -19,7 +19,7 @@ var _internalSettings = (exports._internalSettings = {
entityToken: null,
sessionTicket: null,
requestGetParams: {
sdk: "JavaScriptSDK-2.89.220328",
sdk: "JavaScriptSDK-2.90.220406",
},
});

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 @@ -2333,6 +2333,7 @@ declare module PlayFabAdminModels {
| "PlayerIdentityLinkNotFound"
| "PhotonApplicationIdAlreadyInUse"
| "CloudScriptUnableToDeleteProductionRevision"
| "CustomIdNotFound"
| "MatchmakingEntityInvalid"
| "MatchmakingPlayerAttributesInvalid"
| "MatchmakingQueueNotFound"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
6 changes: 3 additions & 3 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
10 changes: 5 additions & 5 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabGroups.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down
6 changes: 4 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabProfiles.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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 {
Expand Down Expand Up @@ -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;
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 @@ -2313,6 +2313,7 @@ declare module PlayFabServerModels {
| "PlayerIdentityLinkNotFound"
| "PhotonApplicationIdAlreadyInUse"
| "CloudScriptUnableToDeleteProductionRevision"
| "CustomIdNotFound"
| "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.89.220328",
"version": "2.90.220406",
"description": "Playfab SDK for node.js applications",
"license": "Apache-2.0",
"devDependencies": {
Expand Down

0 comments on commit e129f76

Please sign in to comment.