async-playfab-web-sdk 1.192.250526-5 → 1.193.250606
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Addon.js +2 -2
- package/dist/Admin.js +2 -2
- package/dist/Authentication.js +2 -2
- package/dist/Client.d.ts +3 -1
- package/dist/Client.js +2 -2
- package/dist/CloudScript.js +2 -2
- package/dist/Data.js +2 -2
- package/dist/Economy.d.ts +6 -0
- package/dist/Economy.js +2 -2
- package/dist/Events.js +2 -2
- package/dist/Experimentation.js +2 -2
- package/dist/Groups.js +2 -2
- package/dist/Insights.js +2 -2
- package/dist/Localization.js +2 -2
- package/dist/Matchmaker.js +2 -2
- package/dist/Multiplayer.d.ts +4 -4
- package/dist/Multiplayer.js +2 -2
- package/dist/Profiles.js +2 -2
- package/dist/Progression.d.ts +14 -2
- package/dist/Progression.js +2 -2
- package/dist/Server.js +2 -2
- package/dist/{chunk-SR2RIRLX.js → chunk-5LPKBU65.js} +2 -2
- package/dist/{chunk-ADHTNFTN.js → chunk-ABEEDFKP.js} +2 -2
- package/dist/{chunk-3O5QT4SL.js → chunk-AGNOI6QW.js} +2 -2
- package/dist/{chunk-NFWQ4MMZ.js → chunk-B4NQUOWG.js} +2 -2
- package/dist/{chunk-C7U2JQNZ.js → chunk-GERGPHQM.js} +2 -2
- package/dist/{chunk-3OBHYLBF.js → chunk-GOZV2MOC.js} +2 -2
- package/dist/{chunk-GAZYZIK2.js → chunk-GXP64DCJ.js} +2 -2
- package/dist/{chunk-SQWILU5T.js → chunk-HUS6GF7X.js} +2 -2
- package/dist/{chunk-73SVDH45.js → chunk-JIEFHAFU.js} +2 -2
- package/dist/{chunk-PFXZB4UN.js → chunk-LCCANUCE.js} +6 -6
- package/dist/{chunk-PFXZB4UN.js.map → chunk-LCCANUCE.js.map} +1 -1
- package/dist/{chunk-P7UVG26J.js → chunk-MNQCGRC6.js} +2 -2
- package/dist/{chunk-ZW4TJ3MQ.js → chunk-N4R6Y2MM.js} +2 -2
- package/dist/{chunk-XVDYM74A.js → chunk-N7LC7KNB.js} +4 -4
- package/dist/chunk-N7LC7KNB.js.map +1 -0
- package/dist/{chunk-5CWZN75H.js → chunk-NPTN4F4Z.js} +2 -2
- package/dist/{chunk-3I6ONUUQ.js → chunk-QHGWL3NW.js} +2 -2
- package/dist/{chunk-57KYHGBO.js → chunk-RKXM4KV5.js} +2 -2
- package/dist/{chunk-J54WY4UN.js → chunk-UDM2ZVXN.js} +10 -2
- package/dist/chunk-UDM2ZVXN.js.map +1 -0
- package/dist/{chunk-QNGQW3YB.js → chunk-ZEBSOOZG.js} +2 -2
- package/dist/index.js +18 -18
- package/package.json +1 -1
- package/dist/chunk-J54WY4UN.js.map +0 -1
- package/dist/chunk-XVDYM74A.js.map +0 -1
- /package/dist/{chunk-SR2RIRLX.js.map → chunk-5LPKBU65.js.map} +0 -0
- /package/dist/{chunk-ADHTNFTN.js.map → chunk-ABEEDFKP.js.map} +0 -0
- /package/dist/{chunk-3O5QT4SL.js.map → chunk-AGNOI6QW.js.map} +0 -0
- /package/dist/{chunk-NFWQ4MMZ.js.map → chunk-B4NQUOWG.js.map} +0 -0
- /package/dist/{chunk-C7U2JQNZ.js.map → chunk-GERGPHQM.js.map} +0 -0
- /package/dist/{chunk-3OBHYLBF.js.map → chunk-GOZV2MOC.js.map} +0 -0
- /package/dist/{chunk-GAZYZIK2.js.map → chunk-GXP64DCJ.js.map} +0 -0
- /package/dist/{chunk-SQWILU5T.js.map → chunk-HUS6GF7X.js.map} +0 -0
- /package/dist/{chunk-73SVDH45.js.map → chunk-JIEFHAFU.js.map} +0 -0
- /package/dist/{chunk-P7UVG26J.js.map → chunk-MNQCGRC6.js.map} +0 -0
- /package/dist/{chunk-ZW4TJ3MQ.js.map → chunk-N4R6Y2MM.js.map} +0 -0
- /package/dist/{chunk-5CWZN75H.js.map → chunk-NPTN4F4Z.js.map} +0 -0
- /package/dist/{chunk-3I6ONUUQ.js.map → chunk-QHGWL3NW.js.map} +0 -0
- /package/dist/{chunk-57KYHGBO.js.map → chunk-RKXM4KV5.js.map} +0 -0
- /package/dist/{chunk-QNGQW3YB.js.map → chunk-ZEBSOOZG.js.map} +0 -0
package/dist/Addon.js
CHANGED
package/dist/Admin.js
CHANGED
package/dist/Authentication.js
CHANGED
package/dist/Client.d.ts
CHANGED
@@ -1802,7 +1802,9 @@ interface LinkedPlatformAccountModel {
|
|
1802
1802
|
}
|
1803
1803
|
interface LinkFacebookAccountRequest extends IPlayFabRequestCommon {
|
1804
1804
|
/** Unique identifier from Facebook for the user. */
|
1805
|
-
AccessToken
|
1805
|
+
AccessToken?: string;
|
1806
|
+
/** Token used for limited login authentication. */
|
1807
|
+
AuthenticationToken?: string;
|
1806
1808
|
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
|
1807
1809
|
CustomTags?: Record<string, string | null>;
|
1808
1810
|
/** If another user is already linked to the account, unlink the other user and re-link. */
|
package/dist/Client.js
CHANGED
package/dist/CloudScript.js
CHANGED
package/dist/Data.js
CHANGED
package/dist/Economy.d.ts
CHANGED
@@ -1591,6 +1591,8 @@ interface TakedownItemReviewsResponse extends IPlayFabResultCommon {
|
|
1591
1591
|
interface Transaction {
|
1592
1592
|
/** The API call that caused this transaction. */
|
1593
1593
|
ApiName?: string;
|
1594
|
+
/** Additional details about the transaction. Null if it was not a clawback operation. */
|
1595
|
+
ClawbackDetails?: TransactionClawbackDetails;
|
1594
1596
|
/** The country of the caller of the operation. */
|
1595
1597
|
CountryCode?: string;
|
1596
1598
|
/** The type of item that the the operation occurred on. */
|
@@ -1610,6 +1612,10 @@ interface Transaction {
|
|
1610
1612
|
/** Additional details about the transaction. Null if it was not a transfer operation. */
|
1611
1613
|
TransferDetails?: TransactionTransferDetails;
|
1612
1614
|
}
|
1615
|
+
interface TransactionClawbackDetails {
|
1616
|
+
/** The id of the clawed back operation. */
|
1617
|
+
TransactionIdClawedback?: string;
|
1618
|
+
}
|
1613
1619
|
interface TransactionOperation {
|
1614
1620
|
/** The amount of items in this transaction. */
|
1615
1621
|
Amount?: number;
|
package/dist/Economy.js
CHANGED
package/dist/Events.js
CHANGED
package/dist/Experimentation.js
CHANGED
package/dist/Groups.js
CHANGED
package/dist/Insights.js
CHANGED
package/dist/Localization.js
CHANGED
package/dist/Matchmaker.js
CHANGED
package/dist/Multiplayer.d.ts
CHANGED
@@ -3542,8 +3542,8 @@ declare class PlayFabMultiplayerApi extends PlayFabCommon {
|
|
3542
3542
|
* "Deaths"
|
3543
3543
|
* ],
|
3544
3544
|
* "InitialSettingsModelId": "73a2506e-9fd3-4d84-8dd7-570c8e9e02cf",
|
3545
|
-
* "MatchResultStartTimeUtc": "2025-
|
3546
|
-
* "MatchResultEndTimeUtc": "2025-
|
3545
|
+
* "MatchResultStartTimeUtc": "2025-06-06T13:31:58.123Z",
|
3546
|
+
* "MatchResultEndTimeUtc": "2025-06-06T14:01:58.123Z",
|
3547
3547
|
* "MaxIterations": 100,
|
3548
3548
|
* "AnomalousMatchResultIgnoreThreshold": -20.0
|
3549
3549
|
* });
|
@@ -5561,8 +5561,8 @@ declare class PlayFabMultiplayerApi extends PlayFabCommon {
|
|
5561
5561
|
* "Rank": 1
|
5562
5562
|
* }
|
5563
5563
|
* ],
|
5564
|
-
* "StartDateTimeUtc": "2025-
|
5565
|
-
* "EndDateTimeUtc": "2025-
|
5564
|
+
* "StartDateTimeUtc": "2025-06-06T13:31:58.114Z",
|
5565
|
+
* "EndDateTimeUtc": "2025-06-06T14:01:58.114Z"
|
5566
5566
|
* }
|
5567
5567
|
* });
|
5568
5568
|
*/
|
package/dist/Multiplayer.js
CHANGED
package/dist/Profiles.js
CHANGED
package/dist/Progression.d.ts
CHANGED
@@ -96,9 +96,9 @@ interface EntityLeaderboardEntry {
|
|
96
96
|
Scores?: string[];
|
97
97
|
}
|
98
98
|
interface EntityStatistics {
|
99
|
-
/**
|
99
|
+
/** The entity for which the statistics are returned. */
|
100
100
|
EntityKey?: EntityKey;
|
101
|
-
/**
|
101
|
+
/** The statistics for the given entity key. */
|
102
102
|
Statistics?: EntityStatisticValue[];
|
103
103
|
}
|
104
104
|
interface EntityStatisticValue {
|
@@ -254,6 +254,8 @@ interface GetStatisticsForEntitiesRequest extends IPlayFabRequestCommon {
|
|
254
254
|
CustomTags?: Record<string, string | null>;
|
255
255
|
/** Collection of Entity IDs to retrieve statistics for. */
|
256
256
|
Entities: EntityKey[];
|
257
|
+
/** The list of statistics to return for the user. If set to null, the current version of all statistics are returned. */
|
258
|
+
StatisticNames?: string[];
|
257
259
|
}
|
258
260
|
interface GetStatisticsForEntitiesResponse extends IPlayFabResultCommon {
|
259
261
|
/** A mapping of statistic name to the columns defined in the corresponding definition. */
|
@@ -266,6 +268,8 @@ interface GetStatisticsRequest extends IPlayFabRequestCommon {
|
|
266
268
|
CustomTags?: Record<string, string | null>;
|
267
269
|
/** The optional entity to perform this action on. Defaults to the currently logged in entity. */
|
268
270
|
Entity?: EntityKey;
|
271
|
+
/** The list of statistics to return for the user. If set to null, the current version of all statistics are returned. */
|
272
|
+
StatisticNames?: string[];
|
269
273
|
}
|
270
274
|
interface GetStatisticsResponse extends IPlayFabResultCommon {
|
271
275
|
/** A mapping of statistic name to the columns defined in the corresponding definition. */
|
@@ -671,6 +675,10 @@ declare class PlayFabProgressionApi extends PlayFabCommon {
|
|
671
675
|
* {@link https://docs.microsoft.com/rest/api/playfab/statistic/statistics/getstatistics Microsoft Documentation}
|
672
676
|
* @example
|
673
677
|
* await statisticClient.GetStatistics({
|
678
|
+
* "StatisticNames": [
|
679
|
+
* "SpeedRuns",
|
680
|
+
* "Boosts"
|
681
|
+
* ],
|
674
682
|
* "Entity": {
|
675
683
|
* "Id": "A197412JDA",
|
676
684
|
* "Type": "title_player_account",
|
@@ -696,6 +704,10 @@ declare class PlayFabProgressionApi extends PlayFabCommon {
|
|
696
704
|
* "Type": "title_player_account",
|
697
705
|
* "TypeString": "title_player_account"
|
698
706
|
* }
|
707
|
+
* ],
|
708
|
+
* "StatisticNames": [
|
709
|
+
* "SpeedRuns",
|
710
|
+
* "Boosts"
|
699
711
|
* ]
|
700
712
|
* });
|
701
713
|
*/
|
package/dist/Progression.js
CHANGED
package/dist/Server.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabClientApi.ts
|
6
6
|
var PlayFabClientApi = class extends PlayFabCommon {
|
@@ -2967,4 +2967,4 @@ var PlayFabClientApi = class extends PlayFabCommon {
|
|
2967
2967
|
export {
|
2968
2968
|
PlayFabClientApi
|
2969
2969
|
};
|
2970
|
-
//# sourceMappingURL=chunk-
|
2970
|
+
//# sourceMappingURL=chunk-5LPKBU65.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabDataApi.ts
|
6
6
|
var PlayFabDataApi = class extends PlayFabCommon {
|
@@ -172,4 +172,4 @@ var PlayFabDataApi = class extends PlayFabCommon {
|
|
172
172
|
export {
|
173
173
|
PlayFabDataApi
|
174
174
|
};
|
175
|
-
//# sourceMappingURL=chunk-
|
175
|
+
//# sourceMappingURL=chunk-ABEEDFKP.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabServerApi.ts
|
6
6
|
var PlayFabServerApi = class extends PlayFabCommon {
|
@@ -2474,4 +2474,4 @@ var PlayFabServerApi = class extends PlayFabCommon {
|
|
2474
2474
|
export {
|
2475
2475
|
PlayFabServerApi
|
2476
2476
|
};
|
2477
|
-
//# sourceMappingURL=chunk-
|
2477
|
+
//# sourceMappingURL=chunk-AGNOI6QW.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabEconomyApi.ts
|
6
6
|
var PlayFabEconomyApi = class extends PlayFabCommon {
|
@@ -1045,4 +1045,4 @@ var PlayFabEconomyApi = class extends PlayFabCommon {
|
|
1045
1045
|
export {
|
1046
1046
|
PlayFabEconomyApi
|
1047
1047
|
};
|
1048
|
-
//# sourceMappingURL=chunk-
|
1048
|
+
//# sourceMappingURL=chunk-B4NQUOWG.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabMatchmakerApi.ts
|
6
6
|
var PlayFabMatchmakerApi = class extends PlayFabCommon {
|
@@ -73,4 +73,4 @@ var PlayFabMatchmakerApi = class extends PlayFabCommon {
|
|
73
73
|
export {
|
74
74
|
PlayFabMatchmakerApi
|
75
75
|
};
|
76
|
-
//# sourceMappingURL=chunk-
|
76
|
+
//# sourceMappingURL=chunk-GERGPHQM.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabAdminApi.ts
|
6
6
|
var PlayFabAdminApi = class extends PlayFabCommon {
|
@@ -2670,4 +2670,4 @@ var PlayFabAdminApi = class extends PlayFabCommon {
|
|
2670
2670
|
export {
|
2671
2671
|
PlayFabAdminApi
|
2672
2672
|
};
|
2673
|
-
//# sourceMappingURL=chunk-
|
2673
|
+
//# sourceMappingURL=chunk-GOZV2MOC.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabInsightsApi.ts
|
6
6
|
var PlayFabInsightsApi = class extends PlayFabCommon {
|
@@ -79,4 +79,4 @@ var PlayFabInsightsApi = class extends PlayFabCommon {
|
|
79
79
|
export {
|
80
80
|
PlayFabInsightsApi
|
81
81
|
};
|
82
|
-
//# sourceMappingURL=chunk-
|
82
|
+
//# sourceMappingURL=chunk-GXP64DCJ.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabCloudScriptApi.ts
|
6
6
|
var PlayFabCloudScriptApi = class extends PlayFabCommon {
|
@@ -267,4 +267,4 @@ var PlayFabCloudScriptApi = class extends PlayFabCommon {
|
|
267
267
|
export {
|
268
268
|
PlayFabCloudScriptApi
|
269
269
|
};
|
270
|
-
//# sourceMappingURL=chunk-
|
270
|
+
//# sourceMappingURL=chunk-HUS6GF7X.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabProfilesApi.ts
|
6
6
|
var PlayFabProfilesApi = class extends PlayFabCommon {
|
@@ -194,4 +194,4 @@ var PlayFabProfilesApi = class extends PlayFabCommon {
|
|
194
194
|
export {
|
195
195
|
PlayFabProfilesApi
|
196
196
|
};
|
197
|
-
//# sourceMappingURL=chunk-
|
197
|
+
//# sourceMappingURL=chunk-JIEFHAFU.js.map
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
PlayFabCommon
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-N7LC7KNB.js";
|
4
4
|
|
5
5
|
// src/apis/PlayFabMultiplayerApi.ts
|
6
6
|
var PlayFabMultiplayerApi = class extends PlayFabCommon {
|
@@ -123,8 +123,8 @@ var PlayFabMultiplayerApi = class extends PlayFabCommon {
|
|
123
123
|
* "Deaths"
|
124
124
|
* ],
|
125
125
|
* "InitialSettingsModelId": "73a2506e-9fd3-4d84-8dd7-570c8e9e02cf",
|
126
|
-
* "MatchResultStartTimeUtc": "2025-
|
127
|
-
* "MatchResultEndTimeUtc": "2025-
|
126
|
+
* "MatchResultStartTimeUtc": "2025-06-06T13:31:58.123Z",
|
127
|
+
* "MatchResultEndTimeUtc": "2025-06-06T14:01:58.123Z",
|
128
128
|
* "MaxIterations": 100,
|
129
129
|
* "AnomalousMatchResultIgnoreThreshold": -20.0
|
130
130
|
* });
|
@@ -2354,8 +2354,8 @@ var PlayFabMultiplayerApi = class extends PlayFabCommon {
|
|
2354
2354
|
* "Rank": 1
|
2355
2355
|
* }
|
2356
2356
|
* ],
|
2357
|
-
* "StartDateTimeUtc": "2025-
|
2358
|
-
* "EndDateTimeUtc": "2025-
|
2357
|
+
* "StartDateTimeUtc": "2025-06-06T13:31:58.114Z",
|
2358
|
+
* "EndDateTimeUtc": "2025-06-06T14:01:58.114Z"
|
2359
2359
|
* }
|
2360
2360
|
* });
|
2361
2361
|
*/
|
@@ -2384,4 +2384,4 @@ var PlayFabMultiplayerApi = class extends PlayFabCommon {
|
|
2384
2384
|
export {
|
2385
2385
|
PlayFabMultiplayerApi
|
2386
2386
|
};
|
2387
|
-
//# sourceMappingURL=chunk-
|
2387
|
+
//# sourceMappingURL=chunk-LCCANUCE.js.map
|