Skip to content

Commit ec25b92

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#211108
1 parent 0759a01 commit ec25b92

2 files changed

Lines changed: 26 additions & 3 deletions

File tree

Scripts/typings/PlayFab/CloudScript.d.ts

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1617,7 +1617,12 @@ declare namespace PlayFabServerModels {
16171617
| "DuplicateTitleNameForPublisher"
16181618
| "AzureTitleCreationInProgress"
16191619
| "DuplicateAzureResourceId"
1620-
| "TitleContraintsPublisherDeletion"
1620+
| "TitleConstraintsPublisherDeletion"
1621+
| "InvalidPlayerAccountPoolId"
1622+
| "PlayerAccountPoolNotFound"
1623+
| "PlayerAccountPoolDeleted"
1624+
| "TitleCleanupInProgress"
1625+
| "AzureResourceManagerNotSupportedInStamp"
16211626
| "MatchmakingEntityInvalid"
16221627
| "MatchmakingPlayerAttributesInvalid"
16231628
| "MatchmakingQueueNotFound"
@@ -1641,6 +1646,9 @@ declare namespace PlayFabServerModels {
16411646
| "MatchmakingBadRequest"
16421647
| "PubSubFeatureNotEnabledForTitle"
16431648
| "PubSubTooManyRequests"
1649+
| "PubSubConnectionHandleAccessDenied"
1650+
| "PubSubConnectionHandleInvalid"
1651+
| "PubSubSubscriptionLimitExceeded"
16441652
| "TitleConfigNotFound"
16451653
| "TitleConfigUpdateConflict"
16461654
| "TitleConfigSerializationError"
@@ -1758,7 +1766,11 @@ declare namespace PlayFabServerModels {
17581766
| "EventSamplingInvalidRatio"
17591767
| "EventSamplingInvalidEventNamespace"
17601768
| "EventSamplingInvalidEventName"
1761-
| "EventSamplingRatioNotFound";
1769+
| "EventSamplingRatioNotFound"
1770+
| "EventSinkConnectionInvalid"
1771+
| "EventSinkConnectionUnauthorized"
1772+
| "EventSinkRegionInvalid"
1773+
| "OperationCanceled";
17621774

17631775
interface GenericPlayFabIdPair {
17641776
/** Unique generic service identifier for a user. */
@@ -3848,16 +3860,27 @@ declare namespace PlayFabServerModels {
38483860
* Value. If it already exists, the Value for that key will be overwritten with the new Value.
38493861
*/
38503862
interface SetTitleDataRequest {
3863+
/** Id of azure resource */
3864+
AzureResourceId?: string,
3865+
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
3866+
CustomTags?: { [key: string]: string | null },
38513867
/**
38523868
* key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
38533869
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
38543870
*/
38553871
Key: string,
3872+
/**
3873+
* Unique identifier for the title, found in the Settings > Game Properties section of the PlayFab developer site when a
3874+
* title has been selected.
3875+
*/
3876+
TitleId?: string,
38563877
/** new value to set. Set to null to remove a value */
38573878
Value?: string,
38583879
}
38593880

38603881
interface SetTitleDataResult {
3882+
/** Id of azure resource */
3883+
AzureResourceId?: string,
38613884
}
38623885

38633886
interface SharedGroupDataRecord {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playfab-cloudscriptexample",
3-
"version": "0.0.211012",
3+
"version": "0.0.211108",
44
"description": "PlayFab CloudScriptExample",
55
"main": "ExampleCloudScript.js",
66
"author": {

0 commit comments

Comments
 (0)