@accelbyte/sdk 0.1.1-alpha.40 → 0.1.1-alpha.41
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/CHANGELOG.md +1 -0
- package/dist/index.d.ts +262 -11
- package/dist/index.es.js +152 -10
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +153 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -661,6 +661,33 @@ declare const GameTokenCodeResponse: z.ZodObject<{
|
|
|
661
661
|
}>;
|
|
662
662
|
declare type GameTokenCodeResponse = z.TypeOf<typeof GameTokenCodeResponse>;
|
|
663
663
|
|
|
664
|
+
declare const OneTimeLinkingCodeResponse: z.ZodObject<{
|
|
665
|
+
exp: z.ZodNumber;
|
|
666
|
+
oneTimeLinkCode: z.ZodString;
|
|
667
|
+
oneTimeLinkUrl: z.ZodString;
|
|
668
|
+
}, "strip", z.ZodTypeAny, {
|
|
669
|
+
exp: number;
|
|
670
|
+
oneTimeLinkCode: string;
|
|
671
|
+
oneTimeLinkUrl: string;
|
|
672
|
+
}, {
|
|
673
|
+
exp: number;
|
|
674
|
+
oneTimeLinkCode: string;
|
|
675
|
+
oneTimeLinkUrl: string;
|
|
676
|
+
}>;
|
|
677
|
+
declare type OneTimeLinkingCodeResponse = z.TypeOf<typeof OneTimeLinkingCodeResponse>;
|
|
678
|
+
|
|
679
|
+
declare const OneTimeLinkingCodeValidationResponse: z.ZodObject<{
|
|
680
|
+
expired: z.ZodBoolean;
|
|
681
|
+
valid: z.ZodBoolean;
|
|
682
|
+
}, "strip", z.ZodTypeAny, {
|
|
683
|
+
valid: boolean;
|
|
684
|
+
expired: boolean;
|
|
685
|
+
}, {
|
|
686
|
+
valid: boolean;
|
|
687
|
+
expired: boolean;
|
|
688
|
+
}>;
|
|
689
|
+
declare type OneTimeLinkingCodeValidationResponse = z.TypeOf<typeof OneTimeLinkingCodeValidationResponse>;
|
|
690
|
+
|
|
664
691
|
declare const TokenResponseV3: z.ZodObject<{
|
|
665
692
|
access_token: z.ZodString;
|
|
666
693
|
bans: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -796,9 +823,6 @@ declare const TokenResponseV3: z.ZodObject<{
|
|
|
796
823
|
}>;
|
|
797
824
|
declare type TokenResponseV3 = z.TypeOf<typeof TokenResponseV3>;
|
|
798
825
|
|
|
799
|
-
/**
|
|
800
|
-
* DON'T EDIT THIS FILE, it is AUTO GENERATED
|
|
801
|
-
*/
|
|
802
826
|
declare class OAuth20Extension$ {
|
|
803
827
|
private axiosInstance;
|
|
804
828
|
private namespace;
|
|
@@ -852,6 +876,36 @@ declare class OAuth20Extension$ {
|
|
|
852
876
|
linkingToken: string | null;
|
|
853
877
|
extend_exp?: boolean | null;
|
|
854
878
|
}): Promise<IResponse<T>>;
|
|
879
|
+
/**
|
|
880
|
+
* <p>This endpoint is being used to request the one time code [8 length] for headless account to link or upgrade to a full account.<br>
|
|
881
|
+
* It require a valid user token.<br>
|
|
882
|
+
* Should specify the target platform id and current user should already linked to this platform.<br>
|
|
883
|
+
* Current user should be a headless account.<br>
|
|
884
|
+
* </p>
|
|
885
|
+
*/
|
|
886
|
+
postIamV3LinkCodeRequest<T = OneTimeLinkingCodeResponse>(data: {
|
|
887
|
+
platformId: string | null;
|
|
888
|
+
}): Promise<IResponse<T>>;
|
|
889
|
+
/**
|
|
890
|
+
* <p>This endpoint is being used to validate one time link code.<br>
|
|
891
|
+
* It require a valid user token.<br>
|
|
892
|
+
* Should specify the target platform id and current user should already linked to this platform.<br>
|
|
893
|
+
* Current user should be a headless account.<br>
|
|
894
|
+
* </p>
|
|
895
|
+
*/
|
|
896
|
+
postIamV3LinkCodeValidate<T = OneTimeLinkingCodeValidationResponse>(data: {
|
|
897
|
+
oneTimeLinkCode: string | null;
|
|
898
|
+
}): Promise<IResponse<T>>;
|
|
899
|
+
/**
|
|
900
|
+
* <p>This endpoint is being used to generate user's token by one time link code.<br>
|
|
901
|
+
* It require publisher ClientID<br>
|
|
902
|
+
* It required a code which can be generated from <strong>/iam/v3/link/code/request</strong>.<br>
|
|
903
|
+
* </p>
|
|
904
|
+
*/
|
|
905
|
+
postIamV3LinkTokenExchange<T = TokenResponseV3>(data: {
|
|
906
|
+
oneTimeLinkCode: string | null;
|
|
907
|
+
client_id: string | null;
|
|
908
|
+
}): Promise<IResponse<T>>;
|
|
855
909
|
/**
|
|
856
910
|
* <p>This endpoint get country location based on the request.</p>
|
|
857
911
|
*/
|
|
@@ -1124,6 +1178,63 @@ declare class OAuthApi {
|
|
|
1124
1178
|
token_type: string;
|
|
1125
1179
|
user_id: string;
|
|
1126
1180
|
}>>;
|
|
1181
|
+
/**
|
|
1182
|
+
* This method is being used to validate one time link code.
|
|
1183
|
+
* It require a valid user token.
|
|
1184
|
+
* Should specify the target platform id and current user should already linked to this platform.
|
|
1185
|
+
* Current user should be a headless account.
|
|
1186
|
+
*
|
|
1187
|
+
*/
|
|
1188
|
+
validateOneTimeLinkCode(data: {
|
|
1189
|
+
oneTimeLinkCode: string | null;
|
|
1190
|
+
}): Promise<IResponse<{
|
|
1191
|
+
valid: boolean;
|
|
1192
|
+
expired: boolean;
|
|
1193
|
+
}>>;
|
|
1194
|
+
/**
|
|
1195
|
+
* This method is being used to generate user's token by one time link code.
|
|
1196
|
+
* It require publisher ClientID
|
|
1197
|
+
* It required a code which can be generated from <strong>/iam/v3/link/code/request</strong>.<br>
|
|
1198
|
+
*
|
|
1199
|
+
*/
|
|
1200
|
+
exchangeTokenByOneTimeLinkCode(data: {
|
|
1201
|
+
oneTimeLinkCode: string | null;
|
|
1202
|
+
client_id: string | null;
|
|
1203
|
+
}): Promise<IResponse<{
|
|
1204
|
+
bans?: {
|
|
1205
|
+
disabledDate?: string | null | undefined;
|
|
1206
|
+
ban: string;
|
|
1207
|
+
enabled: boolean;
|
|
1208
|
+
endDate: string;
|
|
1209
|
+
targetedNamespace: string;
|
|
1210
|
+
}[] | null | undefined;
|
|
1211
|
+
is_comply?: boolean | null | undefined;
|
|
1212
|
+
jflgs?: number | null | undefined;
|
|
1213
|
+
namespace_roles?: {
|
|
1214
|
+
namespace: string;
|
|
1215
|
+
roleId: string;
|
|
1216
|
+
}[] | null | undefined;
|
|
1217
|
+
platform_id?: string | null | undefined;
|
|
1218
|
+
platform_user_id?: string | null | undefined;
|
|
1219
|
+
roles?: string[] | null | undefined;
|
|
1220
|
+
xuid?: string | null | undefined;
|
|
1221
|
+
namespace: string;
|
|
1222
|
+
access_token: string;
|
|
1223
|
+
display_name: string;
|
|
1224
|
+
expires_in: number;
|
|
1225
|
+
permissions: {
|
|
1226
|
+
schedAction?: number | null | undefined;
|
|
1227
|
+
schedCron?: string | null | undefined;
|
|
1228
|
+
schedRange?: string[] | null | undefined;
|
|
1229
|
+
action: number;
|
|
1230
|
+
resource: string;
|
|
1231
|
+
}[];
|
|
1232
|
+
refresh_expires_in: number;
|
|
1233
|
+
refresh_token: string;
|
|
1234
|
+
scope: string;
|
|
1235
|
+
token_type: string;
|
|
1236
|
+
user_id: string;
|
|
1237
|
+
}>>;
|
|
1127
1238
|
private newInstance;
|
|
1128
1239
|
}
|
|
1129
1240
|
|
|
@@ -1360,6 +1471,18 @@ declare const EmailUpdateRequestV4: z.ZodObject<{
|
|
|
1360
1471
|
}>;
|
|
1361
1472
|
declare type EmailUpdateRequestV4 = z.TypeOf<typeof EmailUpdateRequestV4>;
|
|
1362
1473
|
|
|
1474
|
+
declare const LinkHeadlessAccountRequest: z.ZodObject<{
|
|
1475
|
+
chosenNamespaces: z.ZodArray<z.ZodString, "many">;
|
|
1476
|
+
oneTimeLinkCode: z.ZodString;
|
|
1477
|
+
}, "strip", z.ZodTypeAny, {
|
|
1478
|
+
oneTimeLinkCode: string;
|
|
1479
|
+
chosenNamespaces: string[];
|
|
1480
|
+
}, {
|
|
1481
|
+
oneTimeLinkCode: string;
|
|
1482
|
+
chosenNamespaces: string[];
|
|
1483
|
+
}>;
|
|
1484
|
+
declare type LinkHeadlessAccountRequest = z.TypeOf<typeof LinkHeadlessAccountRequest>;
|
|
1485
|
+
|
|
1363
1486
|
declare const LinkPlatformAccountRequest: z.ZodObject<{
|
|
1364
1487
|
platformId: z.ZodString;
|
|
1365
1488
|
platformUserId: z.ZodString;
|
|
@@ -1643,6 +1766,77 @@ declare const ForgotPasswordRequestV3: z.ZodObject<{
|
|
|
1643
1766
|
}>;
|
|
1644
1767
|
declare type ForgotPasswordRequestV3 = z.TypeOf<typeof ForgotPasswordRequestV3>;
|
|
1645
1768
|
|
|
1769
|
+
declare const GetLinkHeadlessAccountConflictResponse: z.ZodObject<{
|
|
1770
|
+
currentAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1771
|
+
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1772
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1773
|
+
linkedGames: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1774
|
+
userName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1775
|
+
}, "strip", z.ZodTypeAny, {
|
|
1776
|
+
displayName?: string | null | undefined;
|
|
1777
|
+
email?: string | null | undefined;
|
|
1778
|
+
userName?: string | null | undefined;
|
|
1779
|
+
linkedGames?: string[] | null | undefined;
|
|
1780
|
+
}, {
|
|
1781
|
+
displayName?: string | null | undefined;
|
|
1782
|
+
email?: string | null | undefined;
|
|
1783
|
+
userName?: string | null | undefined;
|
|
1784
|
+
linkedGames?: string[] | null | undefined;
|
|
1785
|
+
}>>>;
|
|
1786
|
+
headlessAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1787
|
+
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1788
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1789
|
+
linkedGames: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1790
|
+
userName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1791
|
+
}, "strip", z.ZodTypeAny, {
|
|
1792
|
+
displayName?: string | null | undefined;
|
|
1793
|
+
email?: string | null | undefined;
|
|
1794
|
+
userName?: string | null | undefined;
|
|
1795
|
+
linkedGames?: string[] | null | undefined;
|
|
1796
|
+
}, {
|
|
1797
|
+
displayName?: string | null | undefined;
|
|
1798
|
+
email?: string | null | undefined;
|
|
1799
|
+
userName?: string | null | undefined;
|
|
1800
|
+
linkedGames?: string[] | null | undefined;
|
|
1801
|
+
}>>>;
|
|
1802
|
+
platformAlreadyLinked: z.ZodBoolean;
|
|
1803
|
+
platformId: z.ZodString;
|
|
1804
|
+
platformLinkConflict: z.ZodBoolean;
|
|
1805
|
+
}, "strip", z.ZodTypeAny, {
|
|
1806
|
+
currentAccount?: {
|
|
1807
|
+
displayName?: string | null | undefined;
|
|
1808
|
+
email?: string | null | undefined;
|
|
1809
|
+
userName?: string | null | undefined;
|
|
1810
|
+
linkedGames?: string[] | null | undefined;
|
|
1811
|
+
} | null | undefined;
|
|
1812
|
+
headlessAccount?: {
|
|
1813
|
+
displayName?: string | null | undefined;
|
|
1814
|
+
email?: string | null | undefined;
|
|
1815
|
+
userName?: string | null | undefined;
|
|
1816
|
+
linkedGames?: string[] | null | undefined;
|
|
1817
|
+
} | null | undefined;
|
|
1818
|
+
platformId: string;
|
|
1819
|
+
platformAlreadyLinked: boolean;
|
|
1820
|
+
platformLinkConflict: boolean;
|
|
1821
|
+
}, {
|
|
1822
|
+
currentAccount?: {
|
|
1823
|
+
displayName?: string | null | undefined;
|
|
1824
|
+
email?: string | null | undefined;
|
|
1825
|
+
userName?: string | null | undefined;
|
|
1826
|
+
linkedGames?: string[] | null | undefined;
|
|
1827
|
+
} | null | undefined;
|
|
1828
|
+
headlessAccount?: {
|
|
1829
|
+
displayName?: string | null | undefined;
|
|
1830
|
+
email?: string | null | undefined;
|
|
1831
|
+
userName?: string | null | undefined;
|
|
1832
|
+
linkedGames?: string[] | null | undefined;
|
|
1833
|
+
} | null | undefined;
|
|
1834
|
+
platformId: string;
|
|
1835
|
+
platformAlreadyLinked: boolean;
|
|
1836
|
+
platformLinkConflict: boolean;
|
|
1837
|
+
}>;
|
|
1838
|
+
declare type GetLinkHeadlessAccountConflictResponse = z.TypeOf<typeof GetLinkHeadlessAccountConflictResponse>;
|
|
1839
|
+
|
|
1646
1840
|
declare const GetPublisherUserV3Response: z.ZodObject<{
|
|
1647
1841
|
namespace: z.ZodString;
|
|
1648
1842
|
userId: z.ZodString;
|
|
@@ -2884,9 +3078,6 @@ declare const WebLinkingResponse: z.ZodObject<{
|
|
|
2884
3078
|
}>;
|
|
2885
3079
|
declare type WebLinkingResponse = z.TypeOf<typeof WebLinkingResponse>;
|
|
2886
3080
|
|
|
2887
|
-
/**
|
|
2888
|
-
* DON'T EDIT THIS FILE, it is AUTO GENERATED
|
|
2889
|
-
*/
|
|
2890
3081
|
declare class Users$ {
|
|
2891
3082
|
private axiosInstance;
|
|
2892
3083
|
private namespace;
|
|
@@ -3305,6 +3496,20 @@ declare class Users$ {
|
|
|
3305
3496
|
* <p>Require valid user authorization<br>Get my user data<br>action code : 10147 </p>
|
|
3306
3497
|
*/
|
|
3307
3498
|
fetchIamV3PublicUsersMe<T = UserResponseV3>(): Promise<IResponseWithSync<T>>;
|
|
3499
|
+
/**
|
|
3500
|
+
* Note:<br>
|
|
3501
|
+
* 1. My account should be full account
|
|
3502
|
+
* 2. My account not linked to request headless account's third platform.
|
|
3503
|
+
*/
|
|
3504
|
+
fetchIamV3PublicUsersMeHeadlessLinkConflict<T = GetLinkHeadlessAccountConflictResponse>(queryParams?: {
|
|
3505
|
+
oneTimeLinkCode: string | null;
|
|
3506
|
+
}): Promise<IResponseWithSync<T>>;
|
|
3507
|
+
/**
|
|
3508
|
+
* Note:<br>
|
|
3509
|
+
* 1. My account should be full account
|
|
3510
|
+
* 2. My account not linked to headless account's third platform.
|
|
3511
|
+
*/
|
|
3512
|
+
postIamV3PublicUsersMeHeadlessLinkWithProgression(data: LinkHeadlessAccountRequest): Promise<IResponse<unknown>>;
|
|
3308
3513
|
/**
|
|
3309
3514
|
* Required valid user authorization
|
|
3310
3515
|
* <p>The verification link is sent to email address</p>
|
|
@@ -4352,6 +4557,36 @@ declare class UserApi {
|
|
|
4352
4557
|
previous: string;
|
|
4353
4558
|
};
|
|
4354
4559
|
}>>;
|
|
4560
|
+
/**
|
|
4561
|
+
* Note:<br>
|
|
4562
|
+
* 1. My account should be full account
|
|
4563
|
+
* 2. My account not linked to request headless account's third platform.
|
|
4564
|
+
*/
|
|
4565
|
+
getLinkAccountByOneTimeCodeConflict(params: {
|
|
4566
|
+
oneTimeLinkCode: string | null;
|
|
4567
|
+
}): Promise<IResponseWithSync<{
|
|
4568
|
+
currentAccount?: {
|
|
4569
|
+
displayName?: string | null | undefined;
|
|
4570
|
+
email?: string | null | undefined;
|
|
4571
|
+
userName?: string | null | undefined;
|
|
4572
|
+
linkedGames?: string[] | null | undefined;
|
|
4573
|
+
} | null | undefined;
|
|
4574
|
+
headlessAccount?: {
|
|
4575
|
+
displayName?: string | null | undefined;
|
|
4576
|
+
email?: string | null | undefined;
|
|
4577
|
+
userName?: string | null | undefined;
|
|
4578
|
+
linkedGames?: string[] | null | undefined;
|
|
4579
|
+
} | null | undefined;
|
|
4580
|
+
platformId: string;
|
|
4581
|
+
platformAlreadyLinked: boolean;
|
|
4582
|
+
platformLinkConflict: boolean;
|
|
4583
|
+
}>>;
|
|
4584
|
+
/**
|
|
4585
|
+
* Note:<br>
|
|
4586
|
+
* 1. My account should be full account
|
|
4587
|
+
* 2. My account not linked to headless account's third platform.
|
|
4588
|
+
*/
|
|
4589
|
+
linkWithProgression(data: LinkHeadlessAccountRequest): Promise<IResponse<unknown>>;
|
|
4355
4590
|
/**
|
|
4356
4591
|
* @internal
|
|
4357
4592
|
*/
|
|
@@ -4734,7 +4969,7 @@ declare class UserAuthorization {
|
|
|
4734
4969
|
} | undefined;
|
|
4735
4970
|
returnPath: any;
|
|
4736
4971
|
} | null>;
|
|
4737
|
-
createLoginURL: (returnPath?: string | null | undefined, targetAuthPage?: string | undefined) => string;
|
|
4972
|
+
createLoginURL: (returnPath?: string | null | undefined, targetAuthPage?: string | undefined, oneTimeLinkCode?: string | undefined) => string;
|
|
4738
4973
|
createForgotPasswordURL: () => string;
|
|
4739
4974
|
getCodeChallenge: () => {
|
|
4740
4975
|
verifier: string;
|
|
@@ -17466,6 +17701,24 @@ declare const AcceptedPoliciesRequest: z.ZodObject<{
|
|
|
17466
17701
|
}>;
|
|
17467
17702
|
declare type AcceptedPoliciesRequest = z.TypeOf<typeof AcceptedPoliciesRequest>;
|
|
17468
17703
|
|
|
17704
|
+
declare const AccountProgressionInfo: z.ZodObject<{
|
|
17705
|
+
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17706
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17707
|
+
linkedGames: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
17708
|
+
userName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17709
|
+
}, "strip", z.ZodTypeAny, {
|
|
17710
|
+
displayName?: string | null | undefined;
|
|
17711
|
+
email?: string | null | undefined;
|
|
17712
|
+
userName?: string | null | undefined;
|
|
17713
|
+
linkedGames?: string[] | null | undefined;
|
|
17714
|
+
}, {
|
|
17715
|
+
displayName?: string | null | undefined;
|
|
17716
|
+
email?: string | null | undefined;
|
|
17717
|
+
userName?: string | null | undefined;
|
|
17718
|
+
linkedGames?: string[] | null | undefined;
|
|
17719
|
+
}>;
|
|
17720
|
+
declare type AccountProgressionInfo = z.TypeOf<typeof AccountProgressionInfo>;
|
|
17721
|
+
|
|
17469
17722
|
declare const AddUserRoleV4Request: z.ZodObject<{
|
|
17470
17723
|
assignedNamespaces: z.ZodArray<z.ZodString, "many">;
|
|
17471
17724
|
roleId: z.ZodString;
|
|
@@ -26403,9 +26656,6 @@ declare class InputValidations$ {
|
|
|
26403
26656
|
}): Promise<IResponseWithSync<T>>;
|
|
26404
26657
|
}
|
|
26405
26658
|
|
|
26406
|
-
/**
|
|
26407
|
-
* DON'T EDIT THIS FILE, it is AUTO GENERATED
|
|
26408
|
-
*/
|
|
26409
26659
|
declare class OAuth20$ {
|
|
26410
26660
|
private axiosInstance;
|
|
26411
26661
|
private namespace;
|
|
@@ -26459,6 +26709,7 @@ declare class OAuth20$ {
|
|
|
26459
26709
|
target_auth_page?: string | null;
|
|
26460
26710
|
createHeadless?: boolean | null;
|
|
26461
26711
|
useRedirectUriAsLoginUrlWhenLocked?: boolean | null;
|
|
26712
|
+
oneTimeLinkCode?: string | null;
|
|
26462
26713
|
}): Promise<IResponseWithSync<unknown>>;
|
|
26463
26714
|
/**
|
|
26464
26715
|
* <p>This endpoint returns information about an access token intended to be used by resource servers or other internal servers.</p>
|
|
@@ -56745,4 +56996,4 @@ declare class UrlHelper {
|
|
|
56745
56996
|
static combineURLPaths(urlString: string, ...paths: string[]): string;
|
|
56746
56997
|
}
|
|
56747
56998
|
|
|
56748
|
-
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ADtoObjectForOrderCreationOptions, ADtoObjectForQueryingXboxUserAchievements, ADtoObjectForUnlockSteamAchievementApi, ADtoObjectForUpdateXboxAchievementCompletePercentageApi, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparisonObject, AvailablePlatform, AvailablePredicateObject, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BrowserHelper, BuildAvailability, BuildAvailabilityArray, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, Downloader$, DownloaderApi, Drm$, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OptionBoxConfig, Order, Order$, OrderCreate, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, PredicateObject, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationList, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StadiaIapConfigInfo, StadiaSyncRequest, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorization, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XboxAchievementRequest, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|
|
56999
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ADtoObjectForOrderCreationOptions, ADtoObjectForQueryingXboxUserAchievements, ADtoObjectForUnlockSteamAchievementApi, ADtoObjectForUpdateXboxAchievementCompletePercentageApi, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparisonObject, AvailablePlatform, AvailablePredicateObject, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BrowserHelper, BuildAvailability, BuildAvailabilityArray, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, Downloader$, DownloaderApi, Drm$, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OptionBoxConfig, Order, Order$, OrderCreate, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, PredicateObject, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationList, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StadiaIapConfigInfo, StadiaSyncRequest, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorization, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XboxAchievementRequest, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|