Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230818
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Aug 21, 2023
2 parents ebcb32e + d429898 commit 20d6eb0
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 15 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.133.230804";
exports.buildIdentifier = "adobuild_nodesdk_115";
exports.sdk_version = "2.134.230818";
exports.buildIdentifier = "adobuild_nodesdk_116";

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.133.230804",
sdk: "JavaScriptSDK-2.134.230818",
},
});

Expand Down
18 changes: 16 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabAdmin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,8 @@ declare module PlayFabAdminModels {
| "EU"
| "NA"
| "OC"
| "SA";
| "SA"
| "Unknown";

type CountryCode = "AF"

Expand Down Expand Up @@ -1377,7 +1378,8 @@ declare module PlayFabAdminModels {
| "EH"
| "YE"
| "ZM"
| "ZW";
| "ZW"
| "Unknown";

export interface CreateActionsOnPlayerSegmentTaskRequest extends PlayFabModule.IPlayFabRequestCommon {
// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
Expand Down Expand Up @@ -2596,6 +2598,11 @@ declare module PlayFabAdminModels {
| "AllowNonUniquePlayerDisplayNamesDisableNotAllowed"
| "PartitionedEventInvalid"
| "PartitionedEventCountOverLimit"
| "ManageEventNamespaceInvalid"
| "ManageEventNameInvalid"
| "ManagedEventNotFound"
| "ManageEventsInvalidRatio"
| "ManagedEventInvalid"
| "PlayerCustomPropertiesPropertyNameTooLong"
| "PlayerCustomPropertiesPropertyNameIsInvalid"
| "PlayerCustomPropertiesStringPropertyValueTooLong"
Expand Down Expand Up @@ -5019,6 +5026,8 @@ declare module PlayFabAdminModels {
PrivateInfo?: UserPrivateAccountInfo;
// User PlayStation :tm: Network account information, if a PlayStation :tm: Network account has been linked
PsnInfo?: UserPsnInfo;
// Server Custom ID information, if a server custom ID has been assigned
ServerCustomIdInfo?: UserServerCustomIdInfo;
// User Steam information, if a Steam account has been linked
SteamInfo?: UserSteamInfo;
// Title-specific information for the user account
Expand Down Expand Up @@ -5173,6 +5182,11 @@ declare module PlayFabAdminModels {
PsnOnlineId?: string;
}

export interface UserServerCustomIdInfo {
// Custom ID
CustomId?: string;
}

export interface UserSteamInfo {
// what stage of game ownership the user is listed as being in, from Steam
SteamActivationStatus?: string;
Expand Down
13 changes: 11 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,8 @@ declare module PlayFabClientModels {
| "EU"
| "NA"
| "OC"
| "SA";
| "SA"
| "Unknown";

type CountryCode = "AF"

Expand Down Expand Up @@ -1809,7 +1810,8 @@ declare module PlayFabClientModels {
| "EH"
| "YE"
| "ZM"
| "ZW";
| "ZW"
| "Unknown";

export interface CreateSharedGroupRequest extends PlayFabModule.IPlayFabRequestCommon {
// Unique identifier for the shared group (a random identifier will be assigned, if one is not specified).
Expand Down Expand Up @@ -4840,6 +4842,8 @@ declare module PlayFabClientModels {
PrivateInfo?: UserPrivateAccountInfo;
// User PlayStation :tm: Network account information, if a PlayStation :tm: Network account has been linked
PsnInfo?: UserPsnInfo;
// Server Custom ID information, if a server custom ID has been assigned
ServerCustomIdInfo?: UserServerCustomIdInfo;
// User Steam information, if a Steam account has been linked
SteamInfo?: UserSteamInfo;
// Title-specific information for the user account
Expand Down Expand Up @@ -4989,6 +4993,11 @@ declare module PlayFabClientModels {
PsnOnlineId?: string;
}

export interface UserServerCustomIdInfo {
// Custom ID
CustomId?: string;
}

export interface UserSettings {
// Boolean for whether this player is eligible for gathering device info.
GatherDeviceInfo: boolean;
Expand Down
6 changes: 4 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabCloudScript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ declare module PlayFabCloudScriptModels {
| "EU"
| "NA"
| "OC"
| "SA";
| "SA"
| "Unknown";

type CountryCode = "AF"

Expand Down Expand Up @@ -368,7 +369,8 @@ declare module PlayFabCloudScriptModels {
| "EH"
| "YE"
| "ZM"
| "ZW";
| "ZW"
| "Unknown";

type EmailVerificationStatus = "Unverified"

Expand Down
3 changes: 2 additions & 1 deletion PlayFabSdk/Scripts/typings/PlayFab/PlayFabEconomy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,8 @@ declare module PlayFabEconomyModels {
| "EH"
| "YE"
| "ZM"
| "ZW";
| "ZW"
| "Unknown";

export interface CreateDraftItemRequest extends PlayFabModule.IPlayFabRequestCommon {
// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
Expand Down
18 changes: 16 additions & 2 deletions PlayFabSdk/Scripts/typings/PlayFab/PlayFabServer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,8 @@ declare module PlayFabServerModels {
| "EU"
| "NA"
| "OC"
| "SA";
| "SA"
| "Unknown";

type CountryCode = "AF"

Expand Down Expand Up @@ -1533,7 +1534,8 @@ declare module PlayFabServerModels {
| "EH"
| "YE"
| "ZM"
| "ZW";
| "ZW"
| "Unknown";

export interface CreateSharedGroupRequest extends PlayFabModule.IPlayFabRequestCommon {
// Unique identifier for the shared group (a random identifier will be assigned, if one is not specified).
Expand Down Expand Up @@ -2610,6 +2612,11 @@ declare module PlayFabServerModels {
| "AllowNonUniquePlayerDisplayNamesDisableNotAllowed"
| "PartitionedEventInvalid"
| "PartitionedEventCountOverLimit"
| "ManageEventNamespaceInvalid"
| "ManageEventNameInvalid"
| "ManagedEventNotFound"
| "ManageEventsInvalidRatio"
| "ManagedEventInvalid"
| "PlayerCustomPropertiesPropertyNameTooLong"
| "PlayerCustomPropertiesPropertyNameIsInvalid"
| "PlayerCustomPropertiesStringPropertyValueTooLong"
Expand Down Expand Up @@ -4906,6 +4913,8 @@ declare module PlayFabServerModels {
PrivateInfo?: UserPrivateAccountInfo;
// User PlayStation :tm: Network account information, if a PlayStation :tm: Network account has been linked
PsnInfo?: UserPsnInfo;
// Server Custom ID information, if a server custom ID has been assigned
ServerCustomIdInfo?: UserServerCustomIdInfo;
// User Steam information, if a Steam account has been linked
SteamInfo?: UserSteamInfo;
// Title-specific information for the user account
Expand Down Expand Up @@ -5055,6 +5064,11 @@ declare module PlayFabServerModels {
PsnOnlineId?: string;
}

export interface UserServerCustomIdInfo {
// Custom ID
CustomId?: string;
}

export interface UserSettings {
// Boolean for whether this player is eligible for gathering device info.
GatherDeviceInfo: boolean;
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.133.230804",
"version": "2.134.230818",
"description": "Playfab SDK for node.js applications",
"license": "Apache-2.0",
"devDependencies": {
Expand Down

0 comments on commit 20d6eb0

Please sign in to comment.