@accelbyte/sdk 0.1.1-alpha.53 → 0.1.1-alpha.55
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 +9 -1
- package/dist/index.d.ts +324 -1
- package/dist/{index.es.js → index.node.es.js} +54 -27
- package/dist/index.node.es.js.map +1 -0
- package/dist/{index.js → index.node.js} +64 -35
- package/dist/index.node.js.map +1 -0
- package/package.json +4 -4
- package/dist/index.es.js.map +0 -1
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
### 0.1.1-alpha.
|
|
1
|
+
### 0.1.1-alpha.55 - 2023-01-23
|
|
2
|
+
|
|
3
|
+
- Fix generateLoginURL not working in Node.js because getRandomValues is not polyfilled
|
|
4
|
+
|
|
5
|
+
### 0.1.1-alpha.54 - 2023-01-12
|
|
6
|
+
|
|
7
|
+
- Add `brandName` to DiscoveryConfigData
|
|
8
|
+
|
|
9
|
+
### 0.1.1-alpha.53 - 2023-01-11
|
|
2
10
|
|
|
3
11
|
- Fixed od-shared dependency error
|
|
4
12
|
|
package/dist/index.d.ts
CHANGED
|
@@ -5580,6 +5580,15 @@ declare class PublicTemplateApi<ConfigKeysEnum extends string> {
|
|
|
5580
5580
|
format: string;
|
|
5581
5581
|
}>>;
|
|
5582
5582
|
getDiscoveryTemplateConfigs: () => Promise<IResponseWithSync<{
|
|
5583
|
+
appId: {
|
|
5584
|
+
name: string;
|
|
5585
|
+
data: {
|
|
5586
|
+
value: string;
|
|
5587
|
+
};
|
|
5588
|
+
updatedAt: string;
|
|
5589
|
+
version: number;
|
|
5590
|
+
format: string;
|
|
5591
|
+
};
|
|
5583
5592
|
ppTemplateInfo: {
|
|
5584
5593
|
name: string;
|
|
5585
5594
|
data: {
|
|
@@ -5620,6 +5629,16 @@ declare class PublicTemplateApi<ConfigKeysEnum extends string> {
|
|
|
5620
5629
|
version: number;
|
|
5621
5630
|
format: string;
|
|
5622
5631
|
};
|
|
5632
|
+
paymentTemplateInfo: {
|
|
5633
|
+
name: string;
|
|
5634
|
+
data: {
|
|
5635
|
+
draft: string;
|
|
5636
|
+
published: string;
|
|
5637
|
+
};
|
|
5638
|
+
updatedAt: string;
|
|
5639
|
+
version: number;
|
|
5640
|
+
format: string;
|
|
5641
|
+
};
|
|
5623
5642
|
ppFeatureFlags: {
|
|
5624
5643
|
name: string;
|
|
5625
5644
|
data: Record<string, any>;
|
|
@@ -5850,6 +5869,33 @@ declare class PublicTemplateApi<ConfigKeysEnum extends string> {
|
|
|
5850
5869
|
version: number;
|
|
5851
5870
|
format: string;
|
|
5852
5871
|
};
|
|
5872
|
+
avatarsList: {
|
|
5873
|
+
name: string;
|
|
5874
|
+
data: {
|
|
5875
|
+
value: string;
|
|
5876
|
+
};
|
|
5877
|
+
updatedAt: string;
|
|
5878
|
+
version: number;
|
|
5879
|
+
format: string;
|
|
5880
|
+
};
|
|
5881
|
+
brandName: {
|
|
5882
|
+
name: string;
|
|
5883
|
+
data: {
|
|
5884
|
+
value: string;
|
|
5885
|
+
};
|
|
5886
|
+
updatedAt: string;
|
|
5887
|
+
version: number;
|
|
5888
|
+
format: string;
|
|
5889
|
+
};
|
|
5890
|
+
favicon: {
|
|
5891
|
+
name: string;
|
|
5892
|
+
data: {
|
|
5893
|
+
value: string;
|
|
5894
|
+
};
|
|
5895
|
+
updatedAt: string;
|
|
5896
|
+
version: number;
|
|
5897
|
+
format: string;
|
|
5898
|
+
};
|
|
5853
5899
|
}>>;
|
|
5854
5900
|
private newInstance;
|
|
5855
5901
|
}
|
|
@@ -58500,6 +58546,31 @@ declare const GlobalStyleConfig: z.ZodObject<{
|
|
|
58500
58546
|
};
|
|
58501
58547
|
}>;
|
|
58502
58548
|
declare type GlobalStyleConfig = z.infer<typeof GlobalStyleConfig>;
|
|
58549
|
+
declare const SocialLinkConfig: z.ZodObject<{
|
|
58550
|
+
url: z.ZodString;
|
|
58551
|
+
platform: z.ZodString;
|
|
58552
|
+
apps: z.ZodArray<z.ZodString, "many">;
|
|
58553
|
+
}, "strip", z.ZodTypeAny, {
|
|
58554
|
+
url: string;
|
|
58555
|
+
platform: string;
|
|
58556
|
+
apps: string[];
|
|
58557
|
+
}, {
|
|
58558
|
+
url: string;
|
|
58559
|
+
platform: string;
|
|
58560
|
+
apps: string[];
|
|
58561
|
+
}>;
|
|
58562
|
+
declare type SocialLinkConfig = z.infer<typeof SocialLinkConfig>;
|
|
58563
|
+
declare const TemplateInfoConfig: z.ZodObject<{
|
|
58564
|
+
draft: z.ZodString;
|
|
58565
|
+
published: z.ZodString;
|
|
58566
|
+
}, "strip", z.ZodTypeAny, {
|
|
58567
|
+
draft: string;
|
|
58568
|
+
published: string;
|
|
58569
|
+
}, {
|
|
58570
|
+
draft: string;
|
|
58571
|
+
published: string;
|
|
58572
|
+
}>;
|
|
58573
|
+
declare type TemplateInfoConfig = z.infer<typeof TemplateInfoConfig>;
|
|
58503
58574
|
declare const DiscoveryConfigData: z.ZodObject<{
|
|
58504
58575
|
ppTemplateInfo: z.ZodObject<z.extendShape<{
|
|
58505
58576
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -58645,6 +58716,42 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
58645
58716
|
version: number;
|
|
58646
58717
|
format: string;
|
|
58647
58718
|
}>;
|
|
58719
|
+
paymentTemplateInfo: z.ZodObject<z.extendShape<{
|
|
58720
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
58721
|
+
format: z.ZodString;
|
|
58722
|
+
name: z.ZodString;
|
|
58723
|
+
updatedAt: z.ZodString;
|
|
58724
|
+
version: z.ZodNumber;
|
|
58725
|
+
}, {
|
|
58726
|
+
data: z.ZodObject<{
|
|
58727
|
+
draft: z.ZodString;
|
|
58728
|
+
published: z.ZodString;
|
|
58729
|
+
}, "strip", z.ZodTypeAny, {
|
|
58730
|
+
draft: string;
|
|
58731
|
+
published: string;
|
|
58732
|
+
}, {
|
|
58733
|
+
draft: string;
|
|
58734
|
+
published: string;
|
|
58735
|
+
}>;
|
|
58736
|
+
}>, "strip", z.ZodTypeAny, {
|
|
58737
|
+
name: string;
|
|
58738
|
+
data: {
|
|
58739
|
+
draft: string;
|
|
58740
|
+
published: string;
|
|
58741
|
+
};
|
|
58742
|
+
updatedAt: string;
|
|
58743
|
+
version: number;
|
|
58744
|
+
format: string;
|
|
58745
|
+
}, {
|
|
58746
|
+
name: string;
|
|
58747
|
+
data: {
|
|
58748
|
+
draft: string;
|
|
58749
|
+
published: string;
|
|
58750
|
+
};
|
|
58751
|
+
updatedAt: string;
|
|
58752
|
+
version: number;
|
|
58753
|
+
format: string;
|
|
58754
|
+
}>;
|
|
58648
58755
|
ppFeatureFlags: z.ZodObject<{
|
|
58649
58756
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
58650
58757
|
format: z.ZodString;
|
|
@@ -60717,7 +60824,140 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
60717
60824
|
version: number;
|
|
60718
60825
|
format: string;
|
|
60719
60826
|
}>;
|
|
60827
|
+
appId: z.ZodObject<z.extendShape<{
|
|
60828
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
60829
|
+
format: z.ZodString;
|
|
60830
|
+
name: z.ZodString;
|
|
60831
|
+
updatedAt: z.ZodString;
|
|
60832
|
+
version: z.ZodNumber;
|
|
60833
|
+
}, {
|
|
60834
|
+
data: z.ZodObject<{
|
|
60835
|
+
value: z.ZodString;
|
|
60836
|
+
}, "strip", z.ZodTypeAny, {
|
|
60837
|
+
value: string;
|
|
60838
|
+
}, {
|
|
60839
|
+
value: string;
|
|
60840
|
+
}>;
|
|
60841
|
+
}>, "strip", z.ZodTypeAny, {
|
|
60842
|
+
name: string;
|
|
60843
|
+
data: {
|
|
60844
|
+
value: string;
|
|
60845
|
+
};
|
|
60846
|
+
updatedAt: string;
|
|
60847
|
+
version: number;
|
|
60848
|
+
format: string;
|
|
60849
|
+
}, {
|
|
60850
|
+
name: string;
|
|
60851
|
+
data: {
|
|
60852
|
+
value: string;
|
|
60853
|
+
};
|
|
60854
|
+
updatedAt: string;
|
|
60855
|
+
version: number;
|
|
60856
|
+
format: string;
|
|
60857
|
+
}>;
|
|
60858
|
+
avatarsList: z.ZodObject<z.extendShape<{
|
|
60859
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
60860
|
+
format: z.ZodString;
|
|
60861
|
+
name: z.ZodString;
|
|
60862
|
+
updatedAt: z.ZodString;
|
|
60863
|
+
version: z.ZodNumber;
|
|
60864
|
+
}, {
|
|
60865
|
+
data: z.ZodObject<{
|
|
60866
|
+
value: z.ZodString;
|
|
60867
|
+
}, "strip", z.ZodTypeAny, {
|
|
60868
|
+
value: string;
|
|
60869
|
+
}, {
|
|
60870
|
+
value: string;
|
|
60871
|
+
}>;
|
|
60872
|
+
}>, "strip", z.ZodTypeAny, {
|
|
60873
|
+
name: string;
|
|
60874
|
+
data: {
|
|
60875
|
+
value: string;
|
|
60876
|
+
};
|
|
60877
|
+
updatedAt: string;
|
|
60878
|
+
version: number;
|
|
60879
|
+
format: string;
|
|
60880
|
+
}, {
|
|
60881
|
+
name: string;
|
|
60882
|
+
data: {
|
|
60883
|
+
value: string;
|
|
60884
|
+
};
|
|
60885
|
+
updatedAt: string;
|
|
60886
|
+
version: number;
|
|
60887
|
+
format: string;
|
|
60888
|
+
}>;
|
|
60889
|
+
brandName: z.ZodObject<z.extendShape<{
|
|
60890
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
60891
|
+
format: z.ZodString;
|
|
60892
|
+
name: z.ZodString;
|
|
60893
|
+
updatedAt: z.ZodString;
|
|
60894
|
+
version: z.ZodNumber;
|
|
60895
|
+
}, {
|
|
60896
|
+
data: z.ZodObject<{
|
|
60897
|
+
value: z.ZodString;
|
|
60898
|
+
}, "strip", z.ZodTypeAny, {
|
|
60899
|
+
value: string;
|
|
60900
|
+
}, {
|
|
60901
|
+
value: string;
|
|
60902
|
+
}>;
|
|
60903
|
+
}>, "strip", z.ZodTypeAny, {
|
|
60904
|
+
name: string;
|
|
60905
|
+
data: {
|
|
60906
|
+
value: string;
|
|
60907
|
+
};
|
|
60908
|
+
updatedAt: string;
|
|
60909
|
+
version: number;
|
|
60910
|
+
format: string;
|
|
60911
|
+
}, {
|
|
60912
|
+
name: string;
|
|
60913
|
+
data: {
|
|
60914
|
+
value: string;
|
|
60915
|
+
};
|
|
60916
|
+
updatedAt: string;
|
|
60917
|
+
version: number;
|
|
60918
|
+
format: string;
|
|
60919
|
+
}>;
|
|
60920
|
+
favicon: z.ZodObject<z.extendShape<{
|
|
60921
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
60922
|
+
format: z.ZodString;
|
|
60923
|
+
name: z.ZodString;
|
|
60924
|
+
updatedAt: z.ZodString;
|
|
60925
|
+
version: z.ZodNumber;
|
|
60926
|
+
}, {
|
|
60927
|
+
data: z.ZodObject<{
|
|
60928
|
+
value: z.ZodString;
|
|
60929
|
+
}, "strip", z.ZodTypeAny, {
|
|
60930
|
+
value: string;
|
|
60931
|
+
}, {
|
|
60932
|
+
value: string;
|
|
60933
|
+
}>;
|
|
60934
|
+
}>, "strip", z.ZodTypeAny, {
|
|
60935
|
+
name: string;
|
|
60936
|
+
data: {
|
|
60937
|
+
value: string;
|
|
60938
|
+
};
|
|
60939
|
+
updatedAt: string;
|
|
60940
|
+
version: number;
|
|
60941
|
+
format: string;
|
|
60942
|
+
}, {
|
|
60943
|
+
name: string;
|
|
60944
|
+
data: {
|
|
60945
|
+
value: string;
|
|
60946
|
+
};
|
|
60947
|
+
updatedAt: string;
|
|
60948
|
+
version: number;
|
|
60949
|
+
format: string;
|
|
60950
|
+
}>;
|
|
60720
60951
|
}, "strip", z.ZodTypeAny, {
|
|
60952
|
+
appId: {
|
|
60953
|
+
name: string;
|
|
60954
|
+
data: {
|
|
60955
|
+
value: string;
|
|
60956
|
+
};
|
|
60957
|
+
updatedAt: string;
|
|
60958
|
+
version: number;
|
|
60959
|
+
format: string;
|
|
60960
|
+
};
|
|
60721
60961
|
ppTemplateInfo: {
|
|
60722
60962
|
name: string;
|
|
60723
60963
|
data: {
|
|
@@ -60758,6 +60998,16 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
60758
60998
|
version: number;
|
|
60759
60999
|
format: string;
|
|
60760
61000
|
};
|
|
61001
|
+
paymentTemplateInfo: {
|
|
61002
|
+
name: string;
|
|
61003
|
+
data: {
|
|
61004
|
+
draft: string;
|
|
61005
|
+
published: string;
|
|
61006
|
+
};
|
|
61007
|
+
updatedAt: string;
|
|
61008
|
+
version: number;
|
|
61009
|
+
format: string;
|
|
61010
|
+
};
|
|
60761
61011
|
ppFeatureFlags: {
|
|
60762
61012
|
name: string;
|
|
60763
61013
|
data: Record<string, any>;
|
|
@@ -60988,7 +61238,43 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
60988
61238
|
version: number;
|
|
60989
61239
|
format: string;
|
|
60990
61240
|
};
|
|
61241
|
+
avatarsList: {
|
|
61242
|
+
name: string;
|
|
61243
|
+
data: {
|
|
61244
|
+
value: string;
|
|
61245
|
+
};
|
|
61246
|
+
updatedAt: string;
|
|
61247
|
+
version: number;
|
|
61248
|
+
format: string;
|
|
61249
|
+
};
|
|
61250
|
+
brandName: {
|
|
61251
|
+
name: string;
|
|
61252
|
+
data: {
|
|
61253
|
+
value: string;
|
|
61254
|
+
};
|
|
61255
|
+
updatedAt: string;
|
|
61256
|
+
version: number;
|
|
61257
|
+
format: string;
|
|
61258
|
+
};
|
|
61259
|
+
favicon: {
|
|
61260
|
+
name: string;
|
|
61261
|
+
data: {
|
|
61262
|
+
value: string;
|
|
61263
|
+
};
|
|
61264
|
+
updatedAt: string;
|
|
61265
|
+
version: number;
|
|
61266
|
+
format: string;
|
|
61267
|
+
};
|
|
60991
61268
|
}, {
|
|
61269
|
+
appId: {
|
|
61270
|
+
name: string;
|
|
61271
|
+
data: {
|
|
61272
|
+
value: string;
|
|
61273
|
+
};
|
|
61274
|
+
updatedAt: string;
|
|
61275
|
+
version: number;
|
|
61276
|
+
format: string;
|
|
61277
|
+
};
|
|
60992
61278
|
ppTemplateInfo: {
|
|
60993
61279
|
name: string;
|
|
60994
61280
|
data: {
|
|
@@ -61029,6 +61315,16 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
61029
61315
|
version: number;
|
|
61030
61316
|
format: string;
|
|
61031
61317
|
};
|
|
61318
|
+
paymentTemplateInfo: {
|
|
61319
|
+
name: string;
|
|
61320
|
+
data: {
|
|
61321
|
+
draft: string;
|
|
61322
|
+
published: string;
|
|
61323
|
+
};
|
|
61324
|
+
updatedAt: string;
|
|
61325
|
+
version: number;
|
|
61326
|
+
format: string;
|
|
61327
|
+
};
|
|
61032
61328
|
ppFeatureFlags: {
|
|
61033
61329
|
name: string;
|
|
61034
61330
|
data: Record<string, any>;
|
|
@@ -61259,6 +61555,33 @@ declare const DiscoveryConfigData: z.ZodObject<{
|
|
|
61259
61555
|
version: number;
|
|
61260
61556
|
format: string;
|
|
61261
61557
|
};
|
|
61558
|
+
avatarsList: {
|
|
61559
|
+
name: string;
|
|
61560
|
+
data: {
|
|
61561
|
+
value: string;
|
|
61562
|
+
};
|
|
61563
|
+
updatedAt: string;
|
|
61564
|
+
version: number;
|
|
61565
|
+
format: string;
|
|
61566
|
+
};
|
|
61567
|
+
brandName: {
|
|
61568
|
+
name: string;
|
|
61569
|
+
data: {
|
|
61570
|
+
value: string;
|
|
61571
|
+
};
|
|
61572
|
+
updatedAt: string;
|
|
61573
|
+
version: number;
|
|
61574
|
+
format: string;
|
|
61575
|
+
};
|
|
61576
|
+
favicon: {
|
|
61577
|
+
name: string;
|
|
61578
|
+
data: {
|
|
61579
|
+
value: string;
|
|
61580
|
+
};
|
|
61581
|
+
updatedAt: string;
|
|
61582
|
+
version: number;
|
|
61583
|
+
format: string;
|
|
61584
|
+
};
|
|
61262
61585
|
}>;
|
|
61263
61586
|
declare type DiscoveryConfigData = z.infer<typeof DiscoveryConfigData>;
|
|
61264
61587
|
declare const HomepagePPConfig: z.ZodObject<{
|
|
@@ -61432,4 +61755,4 @@ declare class SdkDevice {
|
|
|
61432
61755
|
static getDeviceId: () => string;
|
|
61433
61756
|
}
|
|
61434
61757
|
|
|
61435
|
-
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, ColorConfig, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, 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, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, HomepagePPConfig, 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, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, 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, 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, SdkCache, SdkDevice, 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, TokenThirdPartyLinkStatusResponse, 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 };
|
|
61758
|
+
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, ColorConfig, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, 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, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, HomepagePPConfig, 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, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, 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, 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, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, 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, 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, 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 };
|