@accelbyte/sdk 0.2.0-beta.5 → 0.2.0-beta.8
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 +12 -0
- package/dist/index.browser.es.js +105 -38
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +118 -14
- package/dist/index.node.es.js +105 -38
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +105 -38
- package/dist/index.node.js.map +1 -1
- package/examples/typescript-node/README.md +13 -0
- package/examples/typescript-node/node-example.ts +60 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17451,6 +17451,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17451
17451
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17452
17452
|
id: z.ZodString;
|
|
17453
17453
|
namespace: z.ZodString;
|
|
17454
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17454
17455
|
userId: z.ZodString;
|
|
17455
17456
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
17456
17457
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -17464,6 +17465,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17464
17465
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17465
17466
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17466
17467
|
}, "strip", z.ZodTypeAny, {
|
|
17468
|
+
name?: string | null | undefined;
|
|
17467
17469
|
endDate?: string | null | undefined;
|
|
17468
17470
|
itemId?: string | null | undefined;
|
|
17469
17471
|
stackable?: boolean | null | undefined;
|
|
@@ -17479,6 +17481,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17479
17481
|
id: string;
|
|
17480
17482
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
17481
17483
|
}, {
|
|
17484
|
+
name?: string | null | undefined;
|
|
17482
17485
|
endDate?: string | null | undefined;
|
|
17483
17486
|
itemId?: string | null | undefined;
|
|
17484
17487
|
stackable?: boolean | null | undefined;
|
|
@@ -18000,6 +18003,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
18000
18003
|
retryAttempted?: number | null | undefined;
|
|
18001
18004
|
nextBillingDate?: string | null | undefined;
|
|
18002
18005
|
entitlements?: {
|
|
18006
|
+
name?: string | null | undefined;
|
|
18003
18007
|
endDate?: string | null | undefined;
|
|
18004
18008
|
itemId?: string | null | undefined;
|
|
18005
18009
|
stackable?: boolean | null | undefined;
|
|
@@ -18151,6 +18155,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
18151
18155
|
retryAttempted?: number | null | undefined;
|
|
18152
18156
|
nextBillingDate?: string | null | undefined;
|
|
18153
18157
|
entitlements?: {
|
|
18158
|
+
name?: string | null | undefined;
|
|
18154
18159
|
endDate?: string | null | undefined;
|
|
18155
18160
|
itemId?: string | null | undefined;
|
|
18156
18161
|
stackable?: boolean | null | undefined;
|
|
@@ -18249,6 +18254,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18249
18254
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18250
18255
|
id: z.ZodString;
|
|
18251
18256
|
namespace: z.ZodString;
|
|
18257
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18252
18258
|
userId: z.ZodString;
|
|
18253
18259
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
18254
18260
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -18262,6 +18268,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18262
18268
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18263
18269
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18264
18270
|
}, "strip", z.ZodTypeAny, {
|
|
18271
|
+
name?: string | null | undefined;
|
|
18265
18272
|
endDate?: string | null | undefined;
|
|
18266
18273
|
itemId?: string | null | undefined;
|
|
18267
18274
|
stackable?: boolean | null | undefined;
|
|
@@ -18277,6 +18284,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18277
18284
|
id: string;
|
|
18278
18285
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
18279
18286
|
}, {
|
|
18287
|
+
name?: string | null | undefined;
|
|
18280
18288
|
endDate?: string | null | undefined;
|
|
18281
18289
|
itemId?: string | null | undefined;
|
|
18282
18290
|
stackable?: boolean | null | undefined;
|
|
@@ -18798,6 +18806,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18798
18806
|
retryAttempted?: number | null | undefined;
|
|
18799
18807
|
nextBillingDate?: string | null | undefined;
|
|
18800
18808
|
entitlements?: {
|
|
18809
|
+
name?: string | null | undefined;
|
|
18801
18810
|
endDate?: string | null | undefined;
|
|
18802
18811
|
itemId?: string | null | undefined;
|
|
18803
18812
|
stackable?: boolean | null | undefined;
|
|
@@ -18949,6 +18958,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18949
18958
|
retryAttempted?: number | null | undefined;
|
|
18950
18959
|
nextBillingDate?: string | null | undefined;
|
|
18951
18960
|
entitlements?: {
|
|
18961
|
+
name?: string | null | undefined;
|
|
18952
18962
|
endDate?: string | null | undefined;
|
|
18953
18963
|
itemId?: string | null | undefined;
|
|
18954
18964
|
stackable?: boolean | null | undefined;
|
|
@@ -19116,6 +19126,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
19116
19126
|
retryAttempted?: number | null | undefined;
|
|
19117
19127
|
nextBillingDate?: string | null | undefined;
|
|
19118
19128
|
entitlements?: {
|
|
19129
|
+
name?: string | null | undefined;
|
|
19119
19130
|
endDate?: string | null | undefined;
|
|
19120
19131
|
itemId?: string | null | undefined;
|
|
19121
19132
|
stackable?: boolean | null | undefined;
|
|
@@ -19273,6 +19284,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
19273
19284
|
retryAttempted?: number | null | undefined;
|
|
19274
19285
|
nextBillingDate?: string | null | undefined;
|
|
19275
19286
|
entitlements?: {
|
|
19287
|
+
name?: string | null | undefined;
|
|
19276
19288
|
endDate?: string | null | undefined;
|
|
19277
19289
|
itemId?: string | null | undefined;
|
|
19278
19290
|
stackable?: boolean | null | undefined;
|
|
@@ -19578,6 +19590,11 @@ declare type Overrides = {
|
|
|
19578
19590
|
config?: SDKRequestConfig;
|
|
19579
19591
|
cache?: boolean;
|
|
19580
19592
|
};
|
|
19593
|
+
declare type ServiceVersion = {
|
|
19594
|
+
name: string;
|
|
19595
|
+
version: string | undefined;
|
|
19596
|
+
buildDate: string;
|
|
19597
|
+
};
|
|
19581
19598
|
interface AccelbyteSDK {
|
|
19582
19599
|
IAM: {
|
|
19583
19600
|
UserAuthorization(overrides?: Overrides): UserAuthorizationApi;
|
|
@@ -19586,17 +19603,20 @@ interface AccelbyteSDK {
|
|
|
19586
19603
|
InputValidation(overrides?: Overrides): InputValidationsApi;
|
|
19587
19604
|
ThirdPartyCredential(overrides?: Overrides): ThirdPartyCredentialApi;
|
|
19588
19605
|
TwoFA(overrides?: Overrides): TwoFA;
|
|
19606
|
+
version: ServiceVersion;
|
|
19589
19607
|
};
|
|
19590
19608
|
BuildInfo: {
|
|
19591
19609
|
Downloader(overrides?: Overrides): DownloaderApi;
|
|
19592
19610
|
DLC(overrides?: Overrides): DlcApi;
|
|
19593
19611
|
Caching(overrides?: Overrides): CachingApi;
|
|
19612
|
+
version: ServiceVersion;
|
|
19594
19613
|
};
|
|
19595
19614
|
Basic: {
|
|
19596
19615
|
Misc(overrides?: Overrides): MiscApi;
|
|
19597
19616
|
UserProfile(overrides?: Overrides): UserProfileApi;
|
|
19598
19617
|
FileUpload(overrides?: Overrides): FileUploadApi;
|
|
19599
19618
|
Namespace(overrides?: Overrides): NamespaceApi;
|
|
19619
|
+
version: ServiceVersion;
|
|
19600
19620
|
};
|
|
19601
19621
|
Platform: {
|
|
19602
19622
|
Currency(overrides?: Overrides): CurrencyApi;
|
|
@@ -19607,23 +19627,29 @@ interface AccelbyteSDK {
|
|
|
19607
19627
|
Payment(overrides?: Overrides): PaymentApi;
|
|
19608
19628
|
Subscription(overrides?: Overrides): SubscriptionApi;
|
|
19609
19629
|
Wallet(overrides?: Overrides): WalletApi;
|
|
19630
|
+
version: ServiceVersion;
|
|
19610
19631
|
};
|
|
19611
19632
|
Legal: {
|
|
19612
19633
|
Eligibilities(overrides?: Overrides): EligibilitiesApi;
|
|
19613
19634
|
Policies(overrides?: Overrides): PoliciesApi;
|
|
19614
19635
|
Agreement(overrides?: Overrides): AgreementApi;
|
|
19615
19636
|
LocalizedPolicyVersions(overrides?: Overrides): LocalizedPolicyVersionsApi;
|
|
19637
|
+
version: ServiceVersion;
|
|
19616
19638
|
};
|
|
19617
19639
|
GDPR: {
|
|
19618
19640
|
DataDeletion(overrides?: Overrides): DataDeletionApi;
|
|
19619
19641
|
DataRetrieval(overrides?: Overrides): DataRetrievalApi;
|
|
19642
|
+
version: ServiceVersion;
|
|
19620
19643
|
};
|
|
19621
19644
|
Event: {
|
|
19622
19645
|
Event(overrides?: Overrides): EventApi;
|
|
19646
|
+
version: ServiceVersion;
|
|
19623
19647
|
};
|
|
19624
19648
|
AccelbyteConfig: {
|
|
19625
19649
|
PublicTemplate<ConfigKeysEnum extends string>(overrides?: Overrides): PublicTemplateApi<ConfigKeysEnum>;
|
|
19650
|
+
version: ServiceVersion;
|
|
19626
19651
|
};
|
|
19652
|
+
version: () => void;
|
|
19627
19653
|
refreshTokens(newAccessToken: string | undefined | null, newRefreshToken?: string | undefined | null): any;
|
|
19628
19654
|
}
|
|
19629
19655
|
interface SDKOptions {
|
|
@@ -25099,16 +25125,16 @@ declare const InviteUserRequestV4: z.ZodObject<{
|
|
|
25099
25125
|
assignedNamespaces: z.ZodArray<z.ZodString, "many">;
|
|
25100
25126
|
emailAddresses: z.ZodArray<z.ZodString, "many">;
|
|
25101
25127
|
isAdmin: z.ZodBoolean;
|
|
25102
|
-
namespace: z.ZodString
|
|
25128
|
+
namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25103
25129
|
roleId: z.ZodString;
|
|
25104
25130
|
}, "strip", z.ZodTypeAny, {
|
|
25105
|
-
namespace
|
|
25131
|
+
namespace?: string | null | undefined;
|
|
25106
25132
|
roleId: string;
|
|
25107
25133
|
emailAddresses: string[];
|
|
25108
25134
|
assignedNamespaces: string[];
|
|
25109
25135
|
isAdmin: boolean;
|
|
25110
25136
|
}, {
|
|
25111
|
-
namespace
|
|
25137
|
+
namespace?: string | null | undefined;
|
|
25112
25138
|
roleId: string;
|
|
25113
25139
|
emailAddresses: string[];
|
|
25114
25140
|
assignedNamespaces: string[];
|
|
@@ -27965,7 +27991,7 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27965
27991
|
ACSURL: z.ZodString;
|
|
27966
27992
|
AWSCognitoRegion: z.ZodString;
|
|
27967
27993
|
AWSCognitoUserPool: z.ZodString;
|
|
27968
|
-
AllowedClients: z.ZodArray<z.ZodString, "many"
|
|
27994
|
+
AllowedClients: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
27969
27995
|
AppId: z.ZodString;
|
|
27970
27996
|
AuthorizationEndpoint: z.ZodString;
|
|
27971
27997
|
ClientId: z.ZodString;
|
|
@@ -28020,12 +28046,14 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
28020
28046
|
Secret: z.ZodString;
|
|
28021
28047
|
TeamID: z.ZodString;
|
|
28022
28048
|
TokenAuthenticationType: z.ZodString;
|
|
28023
|
-
TokenClaimsMapping: z.ZodRecord<z.ZodString, z.ZodString
|
|
28049
|
+
TokenClaimsMapping: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
28024
28050
|
TokenEndpoint: z.ZodString;
|
|
28025
28051
|
UserInfoEndpoint: z.ZodString;
|
|
28026
28052
|
UserInfoHTTPMethod: z.ZodString;
|
|
28027
28053
|
scopes: z.ZodArray<z.ZodString, "many">;
|
|
28028
28054
|
}, "strip", z.ZodTypeAny, {
|
|
28055
|
+
AllowedClients?: string[] | null | undefined;
|
|
28056
|
+
TokenClaimsMapping?: Record<string, string> | null | undefined;
|
|
28029
28057
|
AppId: string;
|
|
28030
28058
|
ClientId: string;
|
|
28031
28059
|
Environment: string;
|
|
@@ -28037,7 +28065,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
28037
28065
|
ACSURL: string;
|
|
28038
28066
|
AWSCognitoRegion: string;
|
|
28039
28067
|
AWSCognitoUserPool: string;
|
|
28040
|
-
AllowedClients: string[];
|
|
28041
28068
|
AuthorizationEndpoint: string;
|
|
28042
28069
|
FederationMetadataURL: string;
|
|
28043
28070
|
GenericOauthFlow: boolean;
|
|
@@ -28061,11 +28088,12 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
28061
28088
|
}[];
|
|
28062
28089
|
TeamID: string;
|
|
28063
28090
|
TokenAuthenticationType: string;
|
|
28064
|
-
TokenClaimsMapping: Record<string, string>;
|
|
28065
28091
|
TokenEndpoint: string;
|
|
28066
28092
|
UserInfoEndpoint: string;
|
|
28067
28093
|
UserInfoHTTPMethod: string;
|
|
28068
28094
|
}, {
|
|
28095
|
+
AllowedClients?: string[] | null | undefined;
|
|
28096
|
+
TokenClaimsMapping?: Record<string, string> | null | undefined;
|
|
28069
28097
|
AppId: string;
|
|
28070
28098
|
ClientId: string;
|
|
28071
28099
|
Environment: string;
|
|
@@ -28077,7 +28105,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
28077
28105
|
ACSURL: string;
|
|
28078
28106
|
AWSCognitoRegion: string;
|
|
28079
28107
|
AWSCognitoUserPool: string;
|
|
28080
|
-
AllowedClients: string[];
|
|
28081
28108
|
AuthorizationEndpoint: string;
|
|
28082
28109
|
FederationMetadataURL: string;
|
|
28083
28110
|
GenericOauthFlow: boolean;
|
|
@@ -28101,7 +28128,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
28101
28128
|
}[];
|
|
28102
28129
|
TeamID: string;
|
|
28103
28130
|
TokenAuthenticationType: string;
|
|
28104
|
-
TokenClaimsMapping: Record<string, string>;
|
|
28105
28131
|
TokenEndpoint: string;
|
|
28106
28132
|
UserInfoEndpoint: string;
|
|
28107
28133
|
UserInfoHTTPMethod: string;
|
|
@@ -30503,6 +30529,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30503
30529
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30504
30530
|
id: z.ZodString;
|
|
30505
30531
|
namespace: z.ZodString;
|
|
30532
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30506
30533
|
userId: z.ZodString;
|
|
30507
30534
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
30508
30535
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -30516,6 +30543,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30516
30543
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30517
30544
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30518
30545
|
}, "strip", z.ZodTypeAny, {
|
|
30546
|
+
name?: string | null | undefined;
|
|
30519
30547
|
endDate?: string | null | undefined;
|
|
30520
30548
|
itemId?: string | null | undefined;
|
|
30521
30549
|
stackable?: boolean | null | undefined;
|
|
@@ -30531,6 +30559,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30531
30559
|
id: string;
|
|
30532
30560
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30533
30561
|
}, {
|
|
30562
|
+
name?: string | null | undefined;
|
|
30534
30563
|
endDate?: string | null | undefined;
|
|
30535
30564
|
itemId?: string | null | undefined;
|
|
30536
30565
|
stackable?: boolean | null | undefined;
|
|
@@ -30551,12 +30580,15 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30551
30580
|
namespace: z.ZodString;
|
|
30552
30581
|
userId: z.ZodString;
|
|
30553
30582
|
amount: z.ZodNumber;
|
|
30583
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30554
30584
|
}, "strip", z.ZodTypeAny, {
|
|
30585
|
+
currencyCode?: string | null | undefined;
|
|
30555
30586
|
namespace: string;
|
|
30556
30587
|
userId: string;
|
|
30557
30588
|
walletId: string;
|
|
30558
30589
|
amount: number;
|
|
30559
30590
|
}, {
|
|
30591
|
+
currencyCode?: string | null | undefined;
|
|
30560
30592
|
namespace: string;
|
|
30561
30593
|
userId: string;
|
|
30562
30594
|
walletId: string;
|
|
@@ -30595,6 +30627,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30595
30627
|
}>, "many">>>;
|
|
30596
30628
|
}, "strip", z.ZodTypeAny, {
|
|
30597
30629
|
entitlementSummaries?: {
|
|
30630
|
+
name?: string | null | undefined;
|
|
30598
30631
|
endDate?: string | null | undefined;
|
|
30599
30632
|
itemId?: string | null | undefined;
|
|
30600
30633
|
stackable?: boolean | null | undefined;
|
|
@@ -30611,6 +30644,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30611
30644
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30612
30645
|
}[] | null | undefined;
|
|
30613
30646
|
creditSummaries?: {
|
|
30647
|
+
currencyCode?: string | null | undefined;
|
|
30614
30648
|
namespace: string;
|
|
30615
30649
|
userId: string;
|
|
30616
30650
|
walletId: string;
|
|
@@ -30631,6 +30665,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30631
30665
|
userId: string;
|
|
30632
30666
|
}, {
|
|
30633
30667
|
entitlementSummaries?: {
|
|
30668
|
+
name?: string | null | undefined;
|
|
30634
30669
|
endDate?: string | null | undefined;
|
|
30635
30670
|
itemId?: string | null | undefined;
|
|
30636
30671
|
stackable?: boolean | null | undefined;
|
|
@@ -30647,6 +30682,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30647
30682
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30648
30683
|
}[] | null | undefined;
|
|
30649
30684
|
creditSummaries?: {
|
|
30685
|
+
currencyCode?: string | null | undefined;
|
|
30650
30686
|
namespace: string;
|
|
30651
30687
|
userId: string;
|
|
30652
30688
|
walletId: string;
|
|
@@ -40509,12 +40545,15 @@ declare const CreditSummary: z.ZodObject<{
|
|
|
40509
40545
|
namespace: z.ZodString;
|
|
40510
40546
|
userId: z.ZodString;
|
|
40511
40547
|
amount: z.ZodNumber;
|
|
40548
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40512
40549
|
}, "strip", z.ZodTypeAny, {
|
|
40550
|
+
currencyCode?: string | null | undefined;
|
|
40513
40551
|
namespace: string;
|
|
40514
40552
|
userId: string;
|
|
40515
40553
|
walletId: string;
|
|
40516
40554
|
amount: number;
|
|
40517
40555
|
}, {
|
|
40556
|
+
currencyCode?: string | null | undefined;
|
|
40518
40557
|
namespace: string;
|
|
40519
40558
|
userId: string;
|
|
40520
40559
|
walletId: string;
|
|
@@ -40526,6 +40565,7 @@ interface CreditSummary extends z.TypeOf<typeof CreditSummary> {
|
|
|
40526
40565
|
declare const EntitlementSummary: z.ZodObject<{
|
|
40527
40566
|
id: z.ZodString;
|
|
40528
40567
|
namespace: z.ZodString;
|
|
40568
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40529
40569
|
userId: z.ZodString;
|
|
40530
40570
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40531
40571
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40539,6 +40579,7 @@ declare const EntitlementSummary: z.ZodObject<{
|
|
|
40539
40579
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40540
40580
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40541
40581
|
}, "strip", z.ZodTypeAny, {
|
|
40582
|
+
name?: string | null | undefined;
|
|
40542
40583
|
endDate?: string | null | undefined;
|
|
40543
40584
|
itemId?: string | null | undefined;
|
|
40544
40585
|
stackable?: boolean | null | undefined;
|
|
@@ -40554,6 +40595,7 @@ declare const EntitlementSummary: z.ZodObject<{
|
|
|
40554
40595
|
id: string;
|
|
40555
40596
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40556
40597
|
}, {
|
|
40598
|
+
name?: string | null | undefined;
|
|
40557
40599
|
endDate?: string | null | undefined;
|
|
40558
40600
|
itemId?: string | null | undefined;
|
|
40559
40601
|
stackable?: boolean | null | undefined;
|
|
@@ -40657,6 +40699,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40657
40699
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40658
40700
|
id: z.ZodString;
|
|
40659
40701
|
namespace: z.ZodString;
|
|
40702
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40660
40703
|
userId: z.ZodString;
|
|
40661
40704
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40662
40705
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40670,6 +40713,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40670
40713
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40671
40714
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40672
40715
|
}, "strip", z.ZodTypeAny, {
|
|
40716
|
+
name?: string | null | undefined;
|
|
40673
40717
|
endDate?: string | null | undefined;
|
|
40674
40718
|
itemId?: string | null | undefined;
|
|
40675
40719
|
stackable?: boolean | null | undefined;
|
|
@@ -40685,6 +40729,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40685
40729
|
id: string;
|
|
40686
40730
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40687
40731
|
}, {
|
|
40732
|
+
name?: string | null | undefined;
|
|
40688
40733
|
endDate?: string | null | undefined;
|
|
40689
40734
|
itemId?: string | null | undefined;
|
|
40690
40735
|
stackable?: boolean | null | undefined;
|
|
@@ -40705,12 +40750,15 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40705
40750
|
namespace: z.ZodString;
|
|
40706
40751
|
userId: z.ZodString;
|
|
40707
40752
|
amount: z.ZodNumber;
|
|
40753
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40708
40754
|
}, "strip", z.ZodTypeAny, {
|
|
40755
|
+
currencyCode?: string | null | undefined;
|
|
40709
40756
|
namespace: string;
|
|
40710
40757
|
userId: string;
|
|
40711
40758
|
walletId: string;
|
|
40712
40759
|
amount: number;
|
|
40713
40760
|
}, {
|
|
40761
|
+
currencyCode?: string | null | undefined;
|
|
40714
40762
|
namespace: string;
|
|
40715
40763
|
userId: string;
|
|
40716
40764
|
walletId: string;
|
|
@@ -40766,6 +40814,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40766
40814
|
}, "strip", z.ZodTypeAny, {
|
|
40767
40815
|
code?: string | null | undefined;
|
|
40768
40816
|
entitlementSummaries?: {
|
|
40817
|
+
name?: string | null | undefined;
|
|
40769
40818
|
endDate?: string | null | undefined;
|
|
40770
40819
|
itemId?: string | null | undefined;
|
|
40771
40820
|
stackable?: boolean | null | undefined;
|
|
@@ -40782,6 +40831,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40782
40831
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40783
40832
|
}[] | null | undefined;
|
|
40784
40833
|
creditSummaries?: {
|
|
40834
|
+
currencyCode?: string | null | undefined;
|
|
40785
40835
|
namespace: string;
|
|
40786
40836
|
userId: string;
|
|
40787
40837
|
walletId: string;
|
|
@@ -40823,6 +40873,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40823
40873
|
}, {
|
|
40824
40874
|
code?: string | null | undefined;
|
|
40825
40875
|
entitlementSummaries?: {
|
|
40876
|
+
name?: string | null | undefined;
|
|
40826
40877
|
endDate?: string | null | undefined;
|
|
40827
40878
|
itemId?: string | null | undefined;
|
|
40828
40879
|
stackable?: boolean | null | undefined;
|
|
@@ -40839,6 +40890,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40839
40890
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40840
40891
|
}[] | null | undefined;
|
|
40841
40892
|
creditSummaries?: {
|
|
40893
|
+
currencyCode?: string | null | undefined;
|
|
40842
40894
|
namespace: string;
|
|
40843
40895
|
userId: string;
|
|
40844
40896
|
walletId: string;
|
|
@@ -40917,6 +40969,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40917
40969
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40918
40970
|
id: z.ZodString;
|
|
40919
40971
|
namespace: z.ZodString;
|
|
40972
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40920
40973
|
userId: z.ZodString;
|
|
40921
40974
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40922
40975
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40930,6 +40983,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40930
40983
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40931
40984
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40932
40985
|
}, "strip", z.ZodTypeAny, {
|
|
40986
|
+
name?: string | null | undefined;
|
|
40933
40987
|
endDate?: string | null | undefined;
|
|
40934
40988
|
itemId?: string | null | undefined;
|
|
40935
40989
|
stackable?: boolean | null | undefined;
|
|
@@ -40945,6 +40999,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40945
40999
|
id: string;
|
|
40946
41000
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40947
41001
|
}, {
|
|
41002
|
+
name?: string | null | undefined;
|
|
40948
41003
|
endDate?: string | null | undefined;
|
|
40949
41004
|
itemId?: string | null | undefined;
|
|
40950
41005
|
stackable?: boolean | null | undefined;
|
|
@@ -40965,12 +41020,15 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40965
41020
|
namespace: z.ZodString;
|
|
40966
41021
|
userId: z.ZodString;
|
|
40967
41022
|
amount: z.ZodNumber;
|
|
41023
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40968
41024
|
}, "strip", z.ZodTypeAny, {
|
|
41025
|
+
currencyCode?: string | null | undefined;
|
|
40969
41026
|
namespace: string;
|
|
40970
41027
|
userId: string;
|
|
40971
41028
|
walletId: string;
|
|
40972
41029
|
amount: number;
|
|
40973
41030
|
}, {
|
|
41031
|
+
currencyCode?: string | null | undefined;
|
|
40974
41032
|
namespace: string;
|
|
40975
41033
|
userId: string;
|
|
40976
41034
|
walletId: string;
|
|
@@ -41026,6 +41084,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41026
41084
|
}, "strip", z.ZodTypeAny, {
|
|
41027
41085
|
code?: string | null | undefined;
|
|
41028
41086
|
entitlementSummaries?: {
|
|
41087
|
+
name?: string | null | undefined;
|
|
41029
41088
|
endDate?: string | null | undefined;
|
|
41030
41089
|
itemId?: string | null | undefined;
|
|
41031
41090
|
stackable?: boolean | null | undefined;
|
|
@@ -41042,6 +41101,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41042
41101
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
41043
41102
|
}[] | null | undefined;
|
|
41044
41103
|
creditSummaries?: {
|
|
41104
|
+
currencyCode?: string | null | undefined;
|
|
41045
41105
|
namespace: string;
|
|
41046
41106
|
userId: string;
|
|
41047
41107
|
walletId: string;
|
|
@@ -41083,6 +41143,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41083
41143
|
}, {
|
|
41084
41144
|
code?: string | null | undefined;
|
|
41085
41145
|
entitlementSummaries?: {
|
|
41146
|
+
name?: string | null | undefined;
|
|
41086
41147
|
endDate?: string | null | undefined;
|
|
41087
41148
|
itemId?: string | null | undefined;
|
|
41088
41149
|
stackable?: boolean | null | undefined;
|
|
@@ -41099,6 +41160,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41099
41160
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
41100
41161
|
}[] | null | undefined;
|
|
41101
41162
|
creditSummaries?: {
|
|
41163
|
+
currencyCode?: string | null | undefined;
|
|
41102
41164
|
namespace: string;
|
|
41103
41165
|
userId: string;
|
|
41104
41166
|
walletId: string;
|
|
@@ -41156,6 +41218,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41156
41218
|
data: {
|
|
41157
41219
|
code?: string | null | undefined;
|
|
41158
41220
|
entitlementSummaries?: {
|
|
41221
|
+
name?: string | null | undefined;
|
|
41159
41222
|
endDate?: string | null | undefined;
|
|
41160
41223
|
itemId?: string | null | undefined;
|
|
41161
41224
|
stackable?: boolean | null | undefined;
|
|
@@ -41172,6 +41235,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41172
41235
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
41173
41236
|
}[] | null | undefined;
|
|
41174
41237
|
creditSummaries?: {
|
|
41238
|
+
currencyCode?: string | null | undefined;
|
|
41175
41239
|
namespace: string;
|
|
41176
41240
|
userId: string;
|
|
41177
41241
|
walletId: string;
|
|
@@ -41219,6 +41283,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41219
41283
|
data: {
|
|
41220
41284
|
code?: string | null | undefined;
|
|
41221
41285
|
entitlementSummaries?: {
|
|
41286
|
+
name?: string | null | undefined;
|
|
41222
41287
|
endDate?: string | null | undefined;
|
|
41223
41288
|
itemId?: string | null | undefined;
|
|
41224
41289
|
stackable?: boolean | null | undefined;
|
|
@@ -41235,6 +41300,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
41235
41300
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
41236
41301
|
}[] | null | undefined;
|
|
41237
41302
|
creditSummaries?: {
|
|
41303
|
+
currencyCode?: string | null | undefined;
|
|
41238
41304
|
namespace: string;
|
|
41239
41305
|
userId: string;
|
|
41240
41306
|
walletId: string;
|
|
@@ -46133,6 +46199,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46133
46199
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46134
46200
|
id: z.ZodString;
|
|
46135
46201
|
namespace: z.ZodString;
|
|
46202
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46136
46203
|
userId: z.ZodString;
|
|
46137
46204
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
46138
46205
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -46146,6 +46213,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46146
46213
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46147
46214
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46148
46215
|
}, "strip", z.ZodTypeAny, {
|
|
46216
|
+
name?: string | null | undefined;
|
|
46149
46217
|
endDate?: string | null | undefined;
|
|
46150
46218
|
itemId?: string | null | undefined;
|
|
46151
46219
|
stackable?: boolean | null | undefined;
|
|
@@ -46161,6 +46229,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46161
46229
|
id: string;
|
|
46162
46230
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
46163
46231
|
}, {
|
|
46232
|
+
name?: string | null | undefined;
|
|
46164
46233
|
endDate?: string | null | undefined;
|
|
46165
46234
|
itemId?: string | null | undefined;
|
|
46166
46235
|
stackable?: boolean | null | undefined;
|
|
@@ -46181,12 +46250,15 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46181
46250
|
namespace: z.ZodString;
|
|
46182
46251
|
userId: z.ZodString;
|
|
46183
46252
|
amount: z.ZodNumber;
|
|
46253
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46184
46254
|
}, "strip", z.ZodTypeAny, {
|
|
46255
|
+
currencyCode?: string | null | undefined;
|
|
46185
46256
|
namespace: string;
|
|
46186
46257
|
userId: string;
|
|
46187
46258
|
walletId: string;
|
|
46188
46259
|
amount: number;
|
|
46189
46260
|
}, {
|
|
46261
|
+
currencyCode?: string | null | undefined;
|
|
46190
46262
|
namespace: string;
|
|
46191
46263
|
userId: string;
|
|
46192
46264
|
walletId: string;
|
|
@@ -46206,6 +46278,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46206
46278
|
statusReason?: string | null | undefined;
|
|
46207
46279
|
fulfilledTime?: string | null | undefined;
|
|
46208
46280
|
entitlements?: {
|
|
46281
|
+
name?: string | null | undefined;
|
|
46209
46282
|
endDate?: string | null | undefined;
|
|
46210
46283
|
itemId?: string | null | undefined;
|
|
46211
46284
|
stackable?: boolean | null | undefined;
|
|
@@ -46226,6 +46299,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46226
46299
|
receiptData?: string | null | undefined;
|
|
46227
46300
|
retryCount?: number | null | undefined;
|
|
46228
46301
|
credits?: {
|
|
46302
|
+
currencyCode?: string | null | undefined;
|
|
46229
46303
|
namespace: string;
|
|
46230
46304
|
userId: string;
|
|
46231
46305
|
walletId: string;
|
|
@@ -46248,6 +46322,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46248
46322
|
statusReason?: string | null | undefined;
|
|
46249
46323
|
fulfilledTime?: string | null | undefined;
|
|
46250
46324
|
entitlements?: {
|
|
46325
|
+
name?: string | null | undefined;
|
|
46251
46326
|
endDate?: string | null | undefined;
|
|
46252
46327
|
itemId?: string | null | undefined;
|
|
46253
46328
|
stackable?: boolean | null | undefined;
|
|
@@ -46268,6 +46343,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
46268
46343
|
receiptData?: string | null | undefined;
|
|
46269
46344
|
retryCount?: number | null | undefined;
|
|
46270
46345
|
credits?: {
|
|
46346
|
+
currencyCode?: string | null | undefined;
|
|
46271
46347
|
namespace: string;
|
|
46272
46348
|
userId: string;
|
|
46273
46349
|
walletId: string;
|
|
@@ -46304,6 +46380,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46304
46380
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46305
46381
|
id: z.ZodString;
|
|
46306
46382
|
namespace: z.ZodString;
|
|
46383
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46307
46384
|
userId: z.ZodString;
|
|
46308
46385
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
46309
46386
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -46317,6 +46394,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46317
46394
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46318
46395
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46319
46396
|
}, "strip", z.ZodTypeAny, {
|
|
46397
|
+
name?: string | null | undefined;
|
|
46320
46398
|
endDate?: string | null | undefined;
|
|
46321
46399
|
itemId?: string | null | undefined;
|
|
46322
46400
|
stackable?: boolean | null | undefined;
|
|
@@ -46332,6 +46410,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46332
46410
|
id: string;
|
|
46333
46411
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
46334
46412
|
}, {
|
|
46413
|
+
name?: string | null | undefined;
|
|
46335
46414
|
endDate?: string | null | undefined;
|
|
46336
46415
|
itemId?: string | null | undefined;
|
|
46337
46416
|
stackable?: boolean | null | undefined;
|
|
@@ -46352,12 +46431,15 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46352
46431
|
namespace: z.ZodString;
|
|
46353
46432
|
userId: z.ZodString;
|
|
46354
46433
|
amount: z.ZodNumber;
|
|
46434
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46355
46435
|
}, "strip", z.ZodTypeAny, {
|
|
46436
|
+
currencyCode?: string | null | undefined;
|
|
46356
46437
|
namespace: string;
|
|
46357
46438
|
userId: string;
|
|
46358
46439
|
walletId: string;
|
|
46359
46440
|
amount: number;
|
|
46360
46441
|
}, {
|
|
46442
|
+
currencyCode?: string | null | undefined;
|
|
46361
46443
|
namespace: string;
|
|
46362
46444
|
userId: string;
|
|
46363
46445
|
walletId: string;
|
|
@@ -46377,6 +46459,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46377
46459
|
statusReason?: string | null | undefined;
|
|
46378
46460
|
fulfilledTime?: string | null | undefined;
|
|
46379
46461
|
entitlements?: {
|
|
46462
|
+
name?: string | null | undefined;
|
|
46380
46463
|
endDate?: string | null | undefined;
|
|
46381
46464
|
itemId?: string | null | undefined;
|
|
46382
46465
|
stackable?: boolean | null | undefined;
|
|
@@ -46397,6 +46480,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46397
46480
|
receiptData?: string | null | undefined;
|
|
46398
46481
|
retryCount?: number | null | undefined;
|
|
46399
46482
|
credits?: {
|
|
46483
|
+
currencyCode?: string | null | undefined;
|
|
46400
46484
|
namespace: string;
|
|
46401
46485
|
userId: string;
|
|
46402
46486
|
walletId: string;
|
|
@@ -46419,6 +46503,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46419
46503
|
statusReason?: string | null | undefined;
|
|
46420
46504
|
fulfilledTime?: string | null | undefined;
|
|
46421
46505
|
entitlements?: {
|
|
46506
|
+
name?: string | null | undefined;
|
|
46422
46507
|
endDate?: string | null | undefined;
|
|
46423
46508
|
itemId?: string | null | undefined;
|
|
46424
46509
|
stackable?: boolean | null | undefined;
|
|
@@ -46439,6 +46524,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46439
46524
|
receiptData?: string | null | undefined;
|
|
46440
46525
|
retryCount?: number | null | undefined;
|
|
46441
46526
|
credits?: {
|
|
46527
|
+
currencyCode?: string | null | undefined;
|
|
46442
46528
|
namespace: string;
|
|
46443
46529
|
userId: string;
|
|
46444
46530
|
walletId: string;
|
|
@@ -46477,6 +46563,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46477
46563
|
statusReason?: string | null | undefined;
|
|
46478
46564
|
fulfilledTime?: string | null | undefined;
|
|
46479
46565
|
entitlements?: {
|
|
46566
|
+
name?: string | null | undefined;
|
|
46480
46567
|
endDate?: string | null | undefined;
|
|
46481
46568
|
itemId?: string | null | undefined;
|
|
46482
46569
|
stackable?: boolean | null | undefined;
|
|
@@ -46497,6 +46584,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46497
46584
|
receiptData?: string | null | undefined;
|
|
46498
46585
|
retryCount?: number | null | undefined;
|
|
46499
46586
|
credits?: {
|
|
46587
|
+
currencyCode?: string | null | undefined;
|
|
46500
46588
|
namespace: string;
|
|
46501
46589
|
userId: string;
|
|
46502
46590
|
walletId: string;
|
|
@@ -46525,6 +46613,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46525
46613
|
statusReason?: string | null | undefined;
|
|
46526
46614
|
fulfilledTime?: string | null | undefined;
|
|
46527
46615
|
entitlements?: {
|
|
46616
|
+
name?: string | null | undefined;
|
|
46528
46617
|
endDate?: string | null | undefined;
|
|
46529
46618
|
itemId?: string | null | undefined;
|
|
46530
46619
|
stackable?: boolean | null | undefined;
|
|
@@ -46545,6 +46634,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46545
46634
|
receiptData?: string | null | undefined;
|
|
46546
46635
|
retryCount?: number | null | undefined;
|
|
46547
46636
|
credits?: {
|
|
46637
|
+
currencyCode?: string | null | undefined;
|
|
46548
46638
|
namespace: string;
|
|
46549
46639
|
userId: string;
|
|
46550
46640
|
walletId: string;
|
|
@@ -49640,6 +49730,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49640
49730
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49641
49731
|
id: z.ZodString;
|
|
49642
49732
|
namespace: z.ZodString;
|
|
49733
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49643
49734
|
userId: z.ZodString;
|
|
49644
49735
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
49645
49736
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -49653,6 +49744,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49653
49744
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49654
49745
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49655
49746
|
}, "strip", z.ZodTypeAny, {
|
|
49747
|
+
name?: string | null | undefined;
|
|
49656
49748
|
endDate?: string | null | undefined;
|
|
49657
49749
|
itemId?: string | null | undefined;
|
|
49658
49750
|
stackable?: boolean | null | undefined;
|
|
@@ -49668,6 +49760,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49668
49760
|
id: string;
|
|
49669
49761
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49670
49762
|
}, {
|
|
49763
|
+
name?: string | null | undefined;
|
|
49671
49764
|
endDate?: string | null | undefined;
|
|
49672
49765
|
itemId?: string | null | undefined;
|
|
49673
49766
|
stackable?: boolean | null | undefined;
|
|
@@ -49688,12 +49781,15 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49688
49781
|
namespace: z.ZodString;
|
|
49689
49782
|
userId: z.ZodString;
|
|
49690
49783
|
amount: z.ZodNumber;
|
|
49784
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49691
49785
|
}, "strip", z.ZodTypeAny, {
|
|
49786
|
+
currencyCode?: string | null | undefined;
|
|
49692
49787
|
namespace: string;
|
|
49693
49788
|
userId: string;
|
|
49694
49789
|
walletId: string;
|
|
49695
49790
|
amount: number;
|
|
49696
49791
|
}, {
|
|
49792
|
+
currencyCode?: string | null | undefined;
|
|
49697
49793
|
namespace: string;
|
|
49698
49794
|
userId: string;
|
|
49699
49795
|
walletId: string;
|
|
@@ -49701,6 +49797,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49701
49797
|
}>, "many">>>;
|
|
49702
49798
|
}, "strip", z.ZodTypeAny, {
|
|
49703
49799
|
entitlements?: {
|
|
49800
|
+
name?: string | null | undefined;
|
|
49704
49801
|
endDate?: string | null | undefined;
|
|
49705
49802
|
itemId?: string | null | undefined;
|
|
49706
49803
|
stackable?: boolean | null | undefined;
|
|
@@ -49717,6 +49814,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49717
49814
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49718
49815
|
}[] | null | undefined;
|
|
49719
49816
|
credits?: {
|
|
49817
|
+
currencyCode?: string | null | undefined;
|
|
49720
49818
|
namespace: string;
|
|
49721
49819
|
userId: string;
|
|
49722
49820
|
walletId: string;
|
|
@@ -49724,6 +49822,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49724
49822
|
}[] | null | undefined;
|
|
49725
49823
|
}, {
|
|
49726
49824
|
entitlements?: {
|
|
49825
|
+
name?: string | null | undefined;
|
|
49727
49826
|
endDate?: string | null | undefined;
|
|
49728
49827
|
itemId?: string | null | undefined;
|
|
49729
49828
|
stackable?: boolean | null | undefined;
|
|
@@ -49740,6 +49839,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49740
49839
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49741
49840
|
}[] | null | undefined;
|
|
49742
49841
|
credits?: {
|
|
49842
|
+
currencyCode?: string | null | undefined;
|
|
49743
49843
|
namespace: string;
|
|
49744
49844
|
userId: string;
|
|
49745
49845
|
walletId: string;
|
|
@@ -65702,10 +65802,6 @@ declare const EligibleUser: z.ZodObject<Pick<{
|
|
|
65702
65802
|
}>;
|
|
65703
65803
|
declare type EligibleUser = z.TypeOf<typeof EligibleUser>;
|
|
65704
65804
|
|
|
65705
|
-
declare class BrowserHelper {
|
|
65706
|
-
static isOnBrowser: () => false | Document;
|
|
65707
|
-
}
|
|
65708
|
-
|
|
65709
65805
|
declare class CodeGenUtil {
|
|
65710
65806
|
/**
|
|
65711
65807
|
* Returns a hash code from a string
|
|
@@ -65717,6 +65813,13 @@ declare class CodeGenUtil {
|
|
|
65717
65813
|
static getFormUrlEncodedData: (data: Record<string, any>) => URLSearchParams;
|
|
65718
65814
|
}
|
|
65719
65815
|
|
|
65816
|
+
declare class DesktopChecker {
|
|
65817
|
+
private static desktopApp;
|
|
65818
|
+
static isDesktopApp(): boolean;
|
|
65819
|
+
private static isInIframe;
|
|
65820
|
+
private static isElectron;
|
|
65821
|
+
}
|
|
65822
|
+
|
|
65720
65823
|
declare type EjectId = number;
|
|
65721
65824
|
declare type RequestInterceptor = (config: AxiosRequestConfig) => AxiosRequestConfig | Promise<AxiosRequestConfig>;
|
|
65722
65825
|
declare type ResponseInterceptor = (response: AxiosResponse) => AxiosResponse | Promise<AxiosResponse>;
|
|
@@ -65732,6 +65835,7 @@ declare class Network {
|
|
|
65732
65835
|
}
|
|
65733
65836
|
|
|
65734
65837
|
declare class UrlHelper {
|
|
65838
|
+
static isOnBrowser: () => false | Document;
|
|
65735
65839
|
static isCompleteURLString: (urlString: string) => boolean;
|
|
65736
65840
|
static trimSlashFromStringEnd(pathString: string): string;
|
|
65737
65841
|
static trimSlashFromStringStart(pathString: string): string;
|
|
@@ -65758,4 +65862,4 @@ declare class SdkDevice {
|
|
|
65758
65862
|
static getDeviceId: () => string;
|
|
65759
65863
|
}
|
|
65760
65864
|
|
|
65761
|
-
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, 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, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, 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, BuildDeletionData, 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, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, 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, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, 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, EntitlementRevocation, EntitlementRevocationConfig, 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, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, 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, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, 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, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, 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, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, 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, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, 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, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, 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, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, 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, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, 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, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|
|
65865
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, 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, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, 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, BuildAvailability, BuildAvailabilityArray, BuildDeletionData, 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, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DesktopChecker, 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, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, 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, EntitlementRevocation, EntitlementRevocationConfig, 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, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, 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, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, 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, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, 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, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, 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, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, 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, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, ServiceVersion, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, 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, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, 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, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, 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, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|