Skip to content

Commit 4e51e24

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#211209
2 parents d24e2ad + 61373df commit 4e51e24

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

Scripts/typings/PlayFab/CloudScript.d.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,21 @@ declare namespace PlayFabServerModels {
223223
AchievementResults?: AwardSteamAchievementItem[],
224224
}
225225

226+
interface AzureResourceSystemData {
227+
/** The timestamp of resource creation (UTC) */
228+
CreatedAt?: string,
229+
/** The identity that created the resource */
230+
CreatedBy?: string,
231+
/** The type of identity that created the resource */
232+
CreatedByType?: string,
233+
/** The type of identity that last modified the resource */
234+
LastModifiedAt?: string,
235+
/** The identity that last modified the resource */
236+
LastModifiedBy?: string,
237+
/** The type of identity that last modified the resource */
238+
LastModifiedByType?: string,
239+
}
240+
226241
/** Contains information for a ban. */
227242
interface BanInfo {
228243
/** The active state of this ban. Expired bans may still have this value set to true but they will have no effect. */
@@ -1622,7 +1637,13 @@ declare namespace PlayFabServerModels {
16221637
| "PlayerAccountPoolNotFound"
16231638
| "PlayerAccountPoolDeleted"
16241639
| "TitleCleanupInProgress"
1640+
| "AzureResourceConcurrentOperationInProgress"
1641+
| "TitlePublisherUpdateNotAllowed"
16251642
| "AzureResourceManagerNotSupportedInStamp"
1643+
| "ApiNotIncludedInAzurePlayFabFeatureSet"
1644+
| "GoogleServiceAccountFailedAuth"
1645+
| "GoogleAPIServiceUnavailable"
1646+
| "GoogleAPIServiceUnknownError"
16261647
| "MatchmakingEntityInvalid"
16271648
| "MatchmakingPlayerAttributesInvalid"
16281649
| "MatchmakingQueueNotFound"
@@ -3869,6 +3890,8 @@ declare namespace PlayFabServerModels {
38693890
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
38703891
*/
38713892
Key: string,
3893+
/** System Data of the Azure Resource */
3894+
SystemData?: AzureResourceSystemData,
38723895
/**
38733896
* Unique identifier for the title, found in the Settings > Game Properties section of the PlayFab developer site when a
38743897
* title has been selected.

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.211108",
3+
"version": "0.0.211209",
44
"description": "PlayFab CloudScriptExample",
55
"main": "ExampleCloudScript.js",
66
"author": {

0 commit comments

Comments
 (0)