@accelbyte/sdk 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -679,10 +679,10 @@ declare const TokenResponseV3: z.ZodObject<{
679
679
  }>, "many">;
680
680
  platform_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
681
681
  platform_user_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
682
- refresh_expires_in: z.ZodNumber;
683
- refresh_token: z.ZodString;
682
+ refresh_expires_in: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
683
+ refresh_token: z.ZodNullable<z.ZodOptional<z.ZodString>>;
684
684
  roles: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
685
- scope: z.ZodString;
685
+ scope: z.ZodNullable<z.ZodOptional<z.ZodString>>;
686
686
  token_type: z.ZodString;
687
687
  user_id: z.ZodString;
688
688
  xuid: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -702,7 +702,10 @@ declare const TokenResponseV3: z.ZodObject<{
702
702
  }[] | null | undefined;
703
703
  platform_id?: string | null | undefined;
704
704
  platform_user_id?: string | null | undefined;
705
+ refresh_expires_in?: number | null | undefined;
706
+ refresh_token?: string | null | undefined;
705
707
  roles?: string[] | null | undefined;
708
+ scope?: string | null | undefined;
706
709
  xuid?: string | null | undefined;
707
710
  namespace: string;
708
711
  access_token: string;
@@ -715,9 +718,6 @@ declare const TokenResponseV3: z.ZodObject<{
715
718
  action: number;
716
719
  resource: string;
717
720
  }[];
718
- refresh_expires_in: number;
719
- refresh_token: string;
720
- scope: string;
721
721
  token_type: string;
722
722
  user_id: string;
723
723
  }, {
@@ -736,7 +736,10 @@ declare const TokenResponseV3: z.ZodObject<{
736
736
  }[] | null | undefined;
737
737
  platform_id?: string | null | undefined;
738
738
  platform_user_id?: string | null | undefined;
739
+ refresh_expires_in?: number | null | undefined;
740
+ refresh_token?: string | null | undefined;
739
741
  roles?: string[] | null | undefined;
742
+ scope?: string | null | undefined;
740
743
  xuid?: string | null | undefined;
741
744
  namespace: string;
742
745
  access_token: string;
@@ -749,9 +752,6 @@ declare const TokenResponseV3: z.ZodObject<{
749
752
  action: number;
750
753
  resource: string;
751
754
  }[];
752
- refresh_expires_in: number;
753
- refresh_token: string;
754
- scope: string;
755
755
  token_type: string;
756
756
  user_id: string;
757
757
  }>;
@@ -1250,6 +1250,15 @@ declare class OAuthApi {
1250
1250
  refresh_token?: string | null;
1251
1251
  extend_exp?: boolean | null;
1252
1252
  }) => Promise<IResponse<TokenWithDeviceCookieResponseV3>>;
1253
+ /**
1254
+ * POST [/iam/v3/oauth/verify](api)
1255
+ *
1256
+ * This endpoint requires all requests to have Authorization header set with Basic access authentication constructed from client id and client secret.
1257
+ *
1258
+ */
1259
+ verifyAccessToken: (data: {
1260
+ token: string | null;
1261
+ }) => Promise<IResponse<TokenResponseV3>>;
1253
1262
  private newInstance;
1254
1263
  }
1255
1264
 
@@ -12838,6 +12847,7 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
12838
12847
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
12839
12848
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
12840
12849
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
12850
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
12841
12851
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
12842
12852
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12843
12853
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -13129,7 +13139,6 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13129
13139
  currencyCode: string;
13130
13140
  price: number;
13131
13141
  }>>>;
13132
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
13133
13142
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
13134
13143
  }, "strip", z.ZodTypeAny, {
13135
13144
  appId?: string | null | undefined;
@@ -13146,6 +13155,7 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13146
13155
  stackable?: boolean | null | undefined;
13147
13156
  listable?: boolean | null | undefined;
13148
13157
  purchasable?: boolean | null | undefined;
13158
+ sectionExclusive?: boolean | null | undefined;
13149
13159
  targetCurrencyCode?: string | null | undefined;
13150
13160
  targetItemId?: string | null | undefined;
13151
13161
  images?: {
@@ -13229,7 +13239,6 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13229
13239
  currencyCode: string;
13230
13240
  price: number;
13231
13241
  } | null | undefined;
13232
- sectionExclusive?: boolean | null | undefined;
13233
13242
  localExt?: Record<string, any> | null | undefined;
13234
13243
  status: "ACTIVE" | "INACTIVE";
13235
13244
  name: string;
@@ -13258,6 +13267,7 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13258
13267
  stackable?: boolean | null | undefined;
13259
13268
  listable?: boolean | null | undefined;
13260
13269
  purchasable?: boolean | null | undefined;
13270
+ sectionExclusive?: boolean | null | undefined;
13261
13271
  targetCurrencyCode?: string | null | undefined;
13262
13272
  targetItemId?: string | null | undefined;
13263
13273
  images?: {
@@ -13341,7 +13351,6 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13341
13351
  currencyCode: string;
13342
13352
  price: number;
13343
13353
  } | null | undefined;
13344
- sectionExclusive?: boolean | null | undefined;
13345
13354
  localExt?: Record<string, any> | null | undefined;
13346
13355
  status: "ACTIVE" | "INACTIVE";
13347
13356
  name: string;
@@ -13386,6 +13395,7 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13386
13395
  stackable?: boolean | null | undefined;
13387
13396
  listable?: boolean | null | undefined;
13388
13397
  purchasable?: boolean | null | undefined;
13398
+ sectionExclusive?: boolean | null | undefined;
13389
13399
  targetCurrencyCode?: string | null | undefined;
13390
13400
  targetItemId?: string | null | undefined;
13391
13401
  images?: {
@@ -13469,7 +13479,6 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13469
13479
  currencyCode: string;
13470
13480
  price: number;
13471
13481
  } | null | undefined;
13472
- sectionExclusive?: boolean | null | undefined;
13473
13482
  localExt?: Record<string, any> | null | undefined;
13474
13483
  status: "ACTIVE" | "INACTIVE";
13475
13484
  name: string;
@@ -13504,6 +13513,7 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13504
13513
  stackable?: boolean | null | undefined;
13505
13514
  listable?: boolean | null | undefined;
13506
13515
  purchasable?: boolean | null | undefined;
13516
+ sectionExclusive?: boolean | null | undefined;
13507
13517
  targetCurrencyCode?: string | null | undefined;
13508
13518
  targetItemId?: string | null | undefined;
13509
13519
  images?: {
@@ -13587,7 +13597,6 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
13587
13597
  currencyCode: string;
13588
13598
  price: number;
13589
13599
  } | null | undefined;
13590
- sectionExclusive?: boolean | null | undefined;
13591
13600
  localExt?: Record<string, any> | null | undefined;
13592
13601
  status: "ACTIVE" | "INACTIVE";
13593
13602
  name: string;
@@ -13800,6 +13809,7 @@ declare const ItemInfo: z.ZodObject<{
13800
13809
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
13801
13810
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
13802
13811
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
13812
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
13803
13813
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
13804
13814
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13805
13815
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -14091,7 +14101,6 @@ declare const ItemInfo: z.ZodObject<{
14091
14101
  currencyCode: string;
14092
14102
  price: number;
14093
14103
  }>>>;
14094
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14095
14104
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
14096
14105
  }, "strip", z.ZodTypeAny, {
14097
14106
  appId?: string | null | undefined;
@@ -14108,6 +14117,7 @@ declare const ItemInfo: z.ZodObject<{
14108
14117
  stackable?: boolean | null | undefined;
14109
14118
  listable?: boolean | null | undefined;
14110
14119
  purchasable?: boolean | null | undefined;
14120
+ sectionExclusive?: boolean | null | undefined;
14111
14121
  targetCurrencyCode?: string | null | undefined;
14112
14122
  targetItemId?: string | null | undefined;
14113
14123
  images?: {
@@ -14191,7 +14201,6 @@ declare const ItemInfo: z.ZodObject<{
14191
14201
  currencyCode: string;
14192
14202
  price: number;
14193
14203
  } | null | undefined;
14194
- sectionExclusive?: boolean | null | undefined;
14195
14204
  localExt?: Record<string, any> | null | undefined;
14196
14205
  status: "ACTIVE" | "INACTIVE";
14197
14206
  name: string;
@@ -14220,6 +14229,7 @@ declare const ItemInfo: z.ZodObject<{
14220
14229
  stackable?: boolean | null | undefined;
14221
14230
  listable?: boolean | null | undefined;
14222
14231
  purchasable?: boolean | null | undefined;
14232
+ sectionExclusive?: boolean | null | undefined;
14223
14233
  targetCurrencyCode?: string | null | undefined;
14224
14234
  targetItemId?: string | null | undefined;
14225
14235
  images?: {
@@ -14303,7 +14313,6 @@ declare const ItemInfo: z.ZodObject<{
14303
14313
  currencyCode: string;
14304
14314
  price: number;
14305
14315
  } | null | undefined;
14306
- sectionExclusive?: boolean | null | undefined;
14307
14316
  localExt?: Record<string, any> | null | undefined;
14308
14317
  status: "ACTIVE" | "INACTIVE";
14309
14318
  name: string;
@@ -14340,6 +14349,7 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14340
14349
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
14341
14350
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14342
14351
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14352
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14343
14353
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
14344
14354
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14345
14355
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -14631,7 +14641,6 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14631
14641
  currencyCode: string;
14632
14642
  price: number;
14633
14643
  }>>>;
14634
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14635
14644
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
14636
14645
  }, "strip", z.ZodTypeAny, {
14637
14646
  appId?: string | null | undefined;
@@ -14648,6 +14657,7 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14648
14657
  stackable?: boolean | null | undefined;
14649
14658
  listable?: boolean | null | undefined;
14650
14659
  purchasable?: boolean | null | undefined;
14660
+ sectionExclusive?: boolean | null | undefined;
14651
14661
  targetCurrencyCode?: string | null | undefined;
14652
14662
  targetItemId?: string | null | undefined;
14653
14663
  images?: {
@@ -14731,7 +14741,6 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14731
14741
  currencyCode: string;
14732
14742
  price: number;
14733
14743
  } | null | undefined;
14734
- sectionExclusive?: boolean | null | undefined;
14735
14744
  localExt?: Record<string, any> | null | undefined;
14736
14745
  status: "ACTIVE" | "INACTIVE";
14737
14746
  name: string;
@@ -14760,6 +14769,7 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14760
14769
  stackable?: boolean | null | undefined;
14761
14770
  listable?: boolean | null | undefined;
14762
14771
  purchasable?: boolean | null | undefined;
14772
+ sectionExclusive?: boolean | null | undefined;
14763
14773
  targetCurrencyCode?: string | null | undefined;
14764
14774
  targetItemId?: string | null | undefined;
14765
14775
  images?: {
@@ -14843,7 +14853,6 @@ declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
14843
14853
  currencyCode: string;
14844
14854
  price: number;
14845
14855
  } | null | undefined;
14846
- sectionExclusive?: boolean | null | undefined;
14847
14856
  localExt?: Record<string, any> | null | undefined;
14848
14857
  status: "ACTIVE" | "INACTIVE";
14849
14858
  name: string;
@@ -14944,6 +14953,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
14944
14953
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
14945
14954
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14946
14955
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14956
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
14947
14957
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
14948
14958
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14949
14959
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -15254,6 +15264,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
15254
15264
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
15255
15265
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
15256
15266
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
15267
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
15257
15268
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
15258
15269
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15259
15270
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -15546,7 +15557,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
15546
15557
  price: number;
15547
15558
  }>>>;
15548
15559
  bundledQty: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
15549
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
15550
15560
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
15551
15561
  }, "strip", z.ZodTypeAny, {
15552
15562
  appId?: string | null | undefined;
@@ -15563,6 +15573,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
15563
15573
  stackable?: boolean | null | undefined;
15564
15574
  listable?: boolean | null | undefined;
15565
15575
  purchasable?: boolean | null | undefined;
15576
+ sectionExclusive?: boolean | null | undefined;
15566
15577
  targetCurrencyCode?: string | null | undefined;
15567
15578
  targetItemId?: string | null | undefined;
15568
15579
  images?: {
@@ -15646,7 +15657,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
15646
15657
  currencyCode: string;
15647
15658
  price: number;
15648
15659
  } | null | undefined;
15649
- sectionExclusive?: boolean | null | undefined;
15650
15660
  localExt?: Record<string, any> | null | undefined;
15651
15661
  bundledQty?: number | null | undefined;
15652
15662
  status: "ACTIVE" | "INACTIVE";
@@ -15676,222 +15686,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
15676
15686
  stackable?: boolean | null | undefined;
15677
15687
  listable?: boolean | null | undefined;
15678
15688
  purchasable?: boolean | null | undefined;
15679
- targetCurrencyCode?: string | null | undefined;
15680
- targetItemId?: string | null | undefined;
15681
- images?: {
15682
- as?: string | null | undefined;
15683
- caption?: string | null | undefined;
15684
- height: number;
15685
- width: number;
15686
- imageUrl: string;
15687
- smallImageUrl: string;
15688
- }[] | null | undefined;
15689
- regionData?: {
15690
- price?: number | null | undefined;
15691
- discountPercentage?: number | null | undefined;
15692
- discountAmount?: number | null | undefined;
15693
- discountedPrice?: number | null | undefined;
15694
- trialPrice?: number | null | undefined;
15695
- purchaseAt?: string | null | undefined;
15696
- expireAt?: string | null | undefined;
15697
- discountPurchaseAt?: string | null | undefined;
15698
- discountExpireAt?: string | null | undefined;
15699
- currencyCode: string;
15700
- currencyType: "REAL" | "VIRTUAL";
15701
- currencyNamespace: string;
15702
- }[] | null | undefined;
15703
- recurring?: {
15704
- cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
15705
- fixedFreeDays: number;
15706
- fixedTrialCycles: number;
15707
- graceDays: number;
15708
- } | null | undefined;
15709
- itemIds?: string[] | null | undefined;
15710
- itemQty?: Record<string, number> | null | undefined;
15711
- boundItemIds?: string[] | null | undefined;
15712
- tags?: string[] | null | undefined;
15713
- features?: string[] | null | undefined;
15714
- maxCountPerUser?: number | null | undefined;
15715
- maxCount?: number | null | undefined;
15716
- clazz?: string | null | undefined;
15717
- boothName?: string | null | undefined;
15718
- displayOrder?: number | null | undefined;
15719
- purchaseCondition?: {
15720
- conditionGroups?: {
15721
- predicates?: {
15722
- values?: string[] | null | undefined;
15723
- value?: string | null | undefined;
15724
- name?: string | null | undefined;
15725
- predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
15726
- comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
15727
- anyOf?: number | null | undefined;
15728
- }[] | null | undefined;
15729
- operator?: "and" | "or" | null | undefined;
15730
- }[] | null | undefined;
15731
- } | null | undefined;
15732
- optionBoxConfig?: {
15733
- boxItems?: {
15734
- count?: number | null | undefined;
15735
- itemId?: string | null | undefined;
15736
- itemSku?: string | null | undefined;
15737
- itemType?: string | null | undefined;
15738
- }[] | null | undefined;
15739
- } | null | undefined;
15740
- lootBoxConfig?: {
15741
- rewardCount?: number | null | undefined;
15742
- rewards?: {
15743
- type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
15744
- name?: string | null | undefined;
15745
- lootBoxItems?: {
15746
- count?: number | null | undefined;
15747
- itemId?: string | null | undefined;
15748
- itemSku?: string | null | undefined;
15749
- itemType?: string | null | undefined;
15750
- }[] | null | undefined;
15751
- weight?: number | null | undefined;
15752
- odds?: number | null | undefined;
15753
- }[] | null | undefined;
15754
- rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
15755
- } | null | undefined;
15756
- fresh?: boolean | null | undefined;
15757
- sellable?: boolean | null | undefined;
15758
- saleConfig?: {
15759
- currencyCode: string;
15760
- price: number;
15761
- } | null | undefined;
15762
15689
  sectionExclusive?: boolean | null | undefined;
15763
- localExt?: Record<string, any> | null | undefined;
15764
- bundledQty?: number | null | undefined;
15765
- status: "ACTIVE" | "INACTIVE";
15766
- name: string;
15767
- namespace: string;
15768
- createdAt: string;
15769
- updatedAt: string;
15770
- language: string;
15771
- title: string;
15772
- categoryPath: string;
15773
- itemId: string;
15774
- region: string;
15775
- itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
15776
- entitlementType: "DURABLE" | "CONSUMABLE";
15777
- }>, "many">>>;
15778
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
15779
- localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
15780
- }, "strip", z.ZodTypeAny, {
15781
- appId?: string | null | undefined;
15782
- appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
15783
- description?: string | null | undefined;
15784
- ext?: Record<string, any> | null | undefined;
15785
- targetNamespace?: string | null | undefined;
15786
- thumbnailUrl?: string | null | undefined;
15787
- longDescription?: string | null | undefined;
15788
- seasonType?: "PASS" | "TIER" | null | undefined;
15789
- baseAppId?: string | null | undefined;
15790
- sku?: string | null | undefined;
15791
- useCount?: number | null | undefined;
15792
- stackable?: boolean | null | undefined;
15793
- listable?: boolean | null | undefined;
15794
- purchasable?: boolean | null | undefined;
15795
- targetCurrencyCode?: string | null | undefined;
15796
- targetItemId?: string | null | undefined;
15797
- images?: {
15798
- as?: string | null | undefined;
15799
- caption?: string | null | undefined;
15800
- height: number;
15801
- width: number;
15802
- imageUrl: string;
15803
- smallImageUrl: string;
15804
- }[] | null | undefined;
15805
- regionData?: {
15806
- price?: number | null | undefined;
15807
- discountPercentage?: number | null | undefined;
15808
- discountAmount?: number | null | undefined;
15809
- discountedPrice?: number | null | undefined;
15810
- trialPrice?: number | null | undefined;
15811
- purchaseAt?: string | null | undefined;
15812
- expireAt?: string | null | undefined;
15813
- discountPurchaseAt?: string | null | undefined;
15814
- discountExpireAt?: string | null | undefined;
15815
- currencyCode: string;
15816
- currencyType: "REAL" | "VIRTUAL";
15817
- currencyNamespace: string;
15818
- }[] | null | undefined;
15819
- recurring?: {
15820
- cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
15821
- fixedFreeDays: number;
15822
- fixedTrialCycles: number;
15823
- graceDays: number;
15824
- } | null | undefined;
15825
- itemIds?: string[] | null | undefined;
15826
- itemQty?: Record<string, number> | null | undefined;
15827
- boundItemIds?: string[] | null | undefined;
15828
- tags?: string[] | null | undefined;
15829
- features?: string[] | null | undefined;
15830
- maxCountPerUser?: number | null | undefined;
15831
- maxCount?: number | null | undefined;
15832
- clazz?: string | null | undefined;
15833
- boothName?: string | null | undefined;
15834
- displayOrder?: number | null | undefined;
15835
- purchaseCondition?: {
15836
- conditionGroups?: {
15837
- predicates?: {
15838
- values?: string[] | null | undefined;
15839
- value?: string | null | undefined;
15840
- name?: string | null | undefined;
15841
- predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
15842
- comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
15843
- anyOf?: number | null | undefined;
15844
- }[] | null | undefined;
15845
- operator?: "and" | "or" | null | undefined;
15846
- }[] | null | undefined;
15847
- } | null | undefined;
15848
- optionBoxConfig?: {
15849
- boxItems?: {
15850
- count?: number | null | undefined;
15851
- itemId?: string | null | undefined;
15852
- itemSku?: string | null | undefined;
15853
- itemType?: string | null | undefined;
15854
- }[] | null | undefined;
15855
- } | null | undefined;
15856
- lootBoxConfig?: {
15857
- rewardCount?: number | null | undefined;
15858
- rewards?: {
15859
- type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
15860
- name?: string | null | undefined;
15861
- lootBoxItems?: {
15862
- count?: number | null | undefined;
15863
- itemId?: string | null | undefined;
15864
- itemSku?: string | null | undefined;
15865
- itemType?: string | null | undefined;
15866
- }[] | null | undefined;
15867
- weight?: number | null | undefined;
15868
- odds?: number | null | undefined;
15869
- }[] | null | undefined;
15870
- rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
15871
- } | null | undefined;
15872
- fresh?: boolean | null | undefined;
15873
- sellable?: boolean | null | undefined;
15874
- saleConfig?: {
15875
- currencyCode: string;
15876
- price: number;
15877
- } | null | undefined;
15878
- sectionExclusive?: boolean | null | undefined;
15879
- localExt?: Record<string, any> | null | undefined;
15880
- items?: {
15881
- appId?: string | null | undefined;
15882
- appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
15883
- description?: string | null | undefined;
15884
- ext?: Record<string, any> | null | undefined;
15885
- targetNamespace?: string | null | undefined;
15886
- thumbnailUrl?: string | null | undefined;
15887
- longDescription?: string | null | undefined;
15888
- seasonType?: "PASS" | "TIER" | null | undefined;
15889
- baseAppId?: string | null | undefined;
15890
- sku?: string | null | undefined;
15891
- useCount?: number | null | undefined;
15892
- stackable?: boolean | null | undefined;
15893
- listable?: boolean | null | undefined;
15894
- purchasable?: boolean | null | undefined;
15895
15690
  targetCurrencyCode?: string | null | undefined;
15896
15691
  targetItemId?: string | null | undefined;
15897
15692
  images?: {
@@ -15975,7 +15770,221 @@ declare const PopulatedItemInfo: z.ZodObject<{
15975
15770
  currencyCode: string;
15976
15771
  price: number;
15977
15772
  } | null | undefined;
15773
+ localExt?: Record<string, any> | null | undefined;
15774
+ bundledQty?: number | null | undefined;
15775
+ status: "ACTIVE" | "INACTIVE";
15776
+ name: string;
15777
+ namespace: string;
15778
+ createdAt: string;
15779
+ updatedAt: string;
15780
+ language: string;
15781
+ title: string;
15782
+ categoryPath: string;
15783
+ itemId: string;
15784
+ region: string;
15785
+ itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
15786
+ entitlementType: "DURABLE" | "CONSUMABLE";
15787
+ }>, "many">>>;
15788
+ localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
15789
+ }, "strip", z.ZodTypeAny, {
15790
+ appId?: string | null | undefined;
15791
+ appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
15792
+ description?: string | null | undefined;
15793
+ ext?: Record<string, any> | null | undefined;
15794
+ targetNamespace?: string | null | undefined;
15795
+ thumbnailUrl?: string | null | undefined;
15796
+ longDescription?: string | null | undefined;
15797
+ seasonType?: "PASS" | "TIER" | null | undefined;
15798
+ baseAppId?: string | null | undefined;
15799
+ sku?: string | null | undefined;
15800
+ useCount?: number | null | undefined;
15801
+ stackable?: boolean | null | undefined;
15802
+ listable?: boolean | null | undefined;
15803
+ purchasable?: boolean | null | undefined;
15804
+ sectionExclusive?: boolean | null | undefined;
15805
+ targetCurrencyCode?: string | null | undefined;
15806
+ targetItemId?: string | null | undefined;
15807
+ images?: {
15808
+ as?: string | null | undefined;
15809
+ caption?: string | null | undefined;
15810
+ height: number;
15811
+ width: number;
15812
+ imageUrl: string;
15813
+ smallImageUrl: string;
15814
+ }[] | null | undefined;
15815
+ regionData?: {
15816
+ price?: number | null | undefined;
15817
+ discountPercentage?: number | null | undefined;
15818
+ discountAmount?: number | null | undefined;
15819
+ discountedPrice?: number | null | undefined;
15820
+ trialPrice?: number | null | undefined;
15821
+ purchaseAt?: string | null | undefined;
15822
+ expireAt?: string | null | undefined;
15823
+ discountPurchaseAt?: string | null | undefined;
15824
+ discountExpireAt?: string | null | undefined;
15825
+ currencyCode: string;
15826
+ currencyType: "REAL" | "VIRTUAL";
15827
+ currencyNamespace: string;
15828
+ }[] | null | undefined;
15829
+ recurring?: {
15830
+ cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
15831
+ fixedFreeDays: number;
15832
+ fixedTrialCycles: number;
15833
+ graceDays: number;
15834
+ } | null | undefined;
15835
+ itemIds?: string[] | null | undefined;
15836
+ itemQty?: Record<string, number> | null | undefined;
15837
+ boundItemIds?: string[] | null | undefined;
15838
+ tags?: string[] | null | undefined;
15839
+ features?: string[] | null | undefined;
15840
+ maxCountPerUser?: number | null | undefined;
15841
+ maxCount?: number | null | undefined;
15842
+ clazz?: string | null | undefined;
15843
+ boothName?: string | null | undefined;
15844
+ displayOrder?: number | null | undefined;
15845
+ purchaseCondition?: {
15846
+ conditionGroups?: {
15847
+ predicates?: {
15848
+ values?: string[] | null | undefined;
15849
+ value?: string | null | undefined;
15850
+ name?: string | null | undefined;
15851
+ predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
15852
+ comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
15853
+ anyOf?: number | null | undefined;
15854
+ }[] | null | undefined;
15855
+ operator?: "and" | "or" | null | undefined;
15856
+ }[] | null | undefined;
15857
+ } | null | undefined;
15858
+ optionBoxConfig?: {
15859
+ boxItems?: {
15860
+ count?: number | null | undefined;
15861
+ itemId?: string | null | undefined;
15862
+ itemSku?: string | null | undefined;
15863
+ itemType?: string | null | undefined;
15864
+ }[] | null | undefined;
15865
+ } | null | undefined;
15866
+ lootBoxConfig?: {
15867
+ rewardCount?: number | null | undefined;
15868
+ rewards?: {
15869
+ type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
15870
+ name?: string | null | undefined;
15871
+ lootBoxItems?: {
15872
+ count?: number | null | undefined;
15873
+ itemId?: string | null | undefined;
15874
+ itemSku?: string | null | undefined;
15875
+ itemType?: string | null | undefined;
15876
+ }[] | null | undefined;
15877
+ weight?: number | null | undefined;
15878
+ odds?: number | null | undefined;
15879
+ }[] | null | undefined;
15880
+ rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
15881
+ } | null | undefined;
15882
+ fresh?: boolean | null | undefined;
15883
+ sellable?: boolean | null | undefined;
15884
+ saleConfig?: {
15885
+ currencyCode: string;
15886
+ price: number;
15887
+ } | null | undefined;
15888
+ localExt?: Record<string, any> | null | undefined;
15889
+ items?: {
15890
+ appId?: string | null | undefined;
15891
+ appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
15892
+ description?: string | null | undefined;
15893
+ ext?: Record<string, any> | null | undefined;
15894
+ targetNamespace?: string | null | undefined;
15895
+ thumbnailUrl?: string | null | undefined;
15896
+ longDescription?: string | null | undefined;
15897
+ seasonType?: "PASS" | "TIER" | null | undefined;
15898
+ baseAppId?: string | null | undefined;
15899
+ sku?: string | null | undefined;
15900
+ useCount?: number | null | undefined;
15901
+ stackable?: boolean | null | undefined;
15902
+ listable?: boolean | null | undefined;
15903
+ purchasable?: boolean | null | undefined;
15978
15904
  sectionExclusive?: boolean | null | undefined;
15905
+ targetCurrencyCode?: string | null | undefined;
15906
+ targetItemId?: string | null | undefined;
15907
+ images?: {
15908
+ as?: string | null | undefined;
15909
+ caption?: string | null | undefined;
15910
+ height: number;
15911
+ width: number;
15912
+ imageUrl: string;
15913
+ smallImageUrl: string;
15914
+ }[] | null | undefined;
15915
+ regionData?: {
15916
+ price?: number | null | undefined;
15917
+ discountPercentage?: number | null | undefined;
15918
+ discountAmount?: number | null | undefined;
15919
+ discountedPrice?: number | null | undefined;
15920
+ trialPrice?: number | null | undefined;
15921
+ purchaseAt?: string | null | undefined;
15922
+ expireAt?: string | null | undefined;
15923
+ discountPurchaseAt?: string | null | undefined;
15924
+ discountExpireAt?: string | null | undefined;
15925
+ currencyCode: string;
15926
+ currencyType: "REAL" | "VIRTUAL";
15927
+ currencyNamespace: string;
15928
+ }[] | null | undefined;
15929
+ recurring?: {
15930
+ cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
15931
+ fixedFreeDays: number;
15932
+ fixedTrialCycles: number;
15933
+ graceDays: number;
15934
+ } | null | undefined;
15935
+ itemIds?: string[] | null | undefined;
15936
+ itemQty?: Record<string, number> | null | undefined;
15937
+ boundItemIds?: string[] | null | undefined;
15938
+ tags?: string[] | null | undefined;
15939
+ features?: string[] | null | undefined;
15940
+ maxCountPerUser?: number | null | undefined;
15941
+ maxCount?: number | null | undefined;
15942
+ clazz?: string | null | undefined;
15943
+ boothName?: string | null | undefined;
15944
+ displayOrder?: number | null | undefined;
15945
+ purchaseCondition?: {
15946
+ conditionGroups?: {
15947
+ predicates?: {
15948
+ values?: string[] | null | undefined;
15949
+ value?: string | null | undefined;
15950
+ name?: string | null | undefined;
15951
+ predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
15952
+ comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
15953
+ anyOf?: number | null | undefined;
15954
+ }[] | null | undefined;
15955
+ operator?: "and" | "or" | null | undefined;
15956
+ }[] | null | undefined;
15957
+ } | null | undefined;
15958
+ optionBoxConfig?: {
15959
+ boxItems?: {
15960
+ count?: number | null | undefined;
15961
+ itemId?: string | null | undefined;
15962
+ itemSku?: string | null | undefined;
15963
+ itemType?: string | null | undefined;
15964
+ }[] | null | undefined;
15965
+ } | null | undefined;
15966
+ lootBoxConfig?: {
15967
+ rewardCount?: number | null | undefined;
15968
+ rewards?: {
15969
+ type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
15970
+ name?: string | null | undefined;
15971
+ lootBoxItems?: {
15972
+ count?: number | null | undefined;
15973
+ itemId?: string | null | undefined;
15974
+ itemSku?: string | null | undefined;
15975
+ itemType?: string | null | undefined;
15976
+ }[] | null | undefined;
15977
+ weight?: number | null | undefined;
15978
+ odds?: number | null | undefined;
15979
+ }[] | null | undefined;
15980
+ rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
15981
+ } | null | undefined;
15982
+ fresh?: boolean | null | undefined;
15983
+ sellable?: boolean | null | undefined;
15984
+ saleConfig?: {
15985
+ currencyCode: string;
15986
+ price: number;
15987
+ } | null | undefined;
15979
15988
  localExt?: Record<string, any> | null | undefined;
15980
15989
  bundledQty?: number | null | undefined;
15981
15990
  status: "ACTIVE" | "INACTIVE";
@@ -16018,6 +16027,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
16018
16027
  stackable?: boolean | null | undefined;
16019
16028
  listable?: boolean | null | undefined;
16020
16029
  purchasable?: boolean | null | undefined;
16030
+ sectionExclusive?: boolean | null | undefined;
16021
16031
  targetCurrencyCode?: string | null | undefined;
16022
16032
  targetItemId?: string | null | undefined;
16023
16033
  images?: {
@@ -16101,7 +16111,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
16101
16111
  currencyCode: string;
16102
16112
  price: number;
16103
16113
  } | null | undefined;
16104
- sectionExclusive?: boolean | null | undefined;
16105
16114
  localExt?: Record<string, any> | null | undefined;
16106
16115
  items?: {
16107
16116
  appId?: string | null | undefined;
@@ -16118,6 +16127,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
16118
16127
  stackable?: boolean | null | undefined;
16119
16128
  listable?: boolean | null | undefined;
16120
16129
  purchasable?: boolean | null | undefined;
16130
+ sectionExclusive?: boolean | null | undefined;
16121
16131
  targetCurrencyCode?: string | null | undefined;
16122
16132
  targetItemId?: string | null | undefined;
16123
16133
  images?: {
@@ -16201,7 +16211,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
16201
16211
  currencyCode: string;
16202
16212
  price: number;
16203
16213
  } | null | undefined;
16204
- sectionExclusive?: boolean | null | undefined;
16205
16214
  localExt?: Record<string, any> | null | undefined;
16206
16215
  bundledQty?: number | null | undefined;
16207
16216
  status: "ACTIVE" | "INACTIVE";
@@ -32087,6 +32096,7 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32087
32096
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
32088
32097
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
32089
32098
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
32099
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
32090
32100
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
32091
32101
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
32092
32102
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -32378,7 +32388,6 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32378
32388
  currencyCode: string;
32379
32389
  price: number;
32380
32390
  }>>>;
32381
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
32382
32391
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
32383
32392
  }, "strip", z.ZodTypeAny, {
32384
32393
  appId?: string | null | undefined;
@@ -32395,6 +32404,7 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32395
32404
  stackable?: boolean | null | undefined;
32396
32405
  listable?: boolean | null | undefined;
32397
32406
  purchasable?: boolean | null | undefined;
32407
+ sectionExclusive?: boolean | null | undefined;
32398
32408
  targetCurrencyCode?: string | null | undefined;
32399
32409
  targetItemId?: string | null | undefined;
32400
32410
  images?: {
@@ -32478,7 +32488,6 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32478
32488
  currencyCode: string;
32479
32489
  price: number;
32480
32490
  } | null | undefined;
32481
- sectionExclusive?: boolean | null | undefined;
32482
32491
  localExt?: Record<string, any> | null | undefined;
32483
32492
  status: "ACTIVE" | "INACTIVE";
32484
32493
  name: string;
@@ -32507,6 +32516,7 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32507
32516
  stackable?: boolean | null | undefined;
32508
32517
  listable?: boolean | null | undefined;
32509
32518
  purchasable?: boolean | null | undefined;
32519
+ sectionExclusive?: boolean | null | undefined;
32510
32520
  targetCurrencyCode?: string | null | undefined;
32511
32521
  targetItemId?: string | null | undefined;
32512
32522
  images?: {
@@ -32590,7 +32600,6 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32590
32600
  currencyCode: string;
32591
32601
  price: number;
32592
32602
  } | null | undefined;
32593
- sectionExclusive?: boolean | null | undefined;
32594
32603
  localExt?: Record<string, any> | null | undefined;
32595
32604
  status: "ACTIVE" | "INACTIVE";
32596
32605
  name: string;
@@ -32632,6 +32641,7 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32632
32641
  stackable?: boolean | null | undefined;
32633
32642
  listable?: boolean | null | undefined;
32634
32643
  purchasable?: boolean | null | undefined;
32644
+ sectionExclusive?: boolean | null | undefined;
32635
32645
  targetCurrencyCode?: string | null | undefined;
32636
32646
  targetItemId?: string | null | undefined;
32637
32647
  images?: {
@@ -32715,7 +32725,6 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32715
32725
  currencyCode: string;
32716
32726
  price: number;
32717
32727
  } | null | undefined;
32718
- sectionExclusive?: boolean | null | undefined;
32719
32728
  localExt?: Record<string, any> | null | undefined;
32720
32729
  status: "ACTIVE" | "INACTIVE";
32721
32730
  name: string;
@@ -32762,6 +32771,7 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32762
32771
  stackable?: boolean | null | undefined;
32763
32772
  listable?: boolean | null | undefined;
32764
32773
  purchasable?: boolean | null | undefined;
32774
+ sectionExclusive?: boolean | null | undefined;
32765
32775
  targetCurrencyCode?: string | null | undefined;
32766
32776
  targetItemId?: string | null | undefined;
32767
32777
  images?: {
@@ -32845,7 +32855,6 @@ declare const SectionInfoArray: z.ZodArray<z.ZodObject<{
32845
32855
  currencyCode: string;
32846
32856
  price: number;
32847
32857
  } | null | undefined;
32848
- sectionExclusive?: boolean | null | undefined;
32849
32858
  localExt?: Record<string, any> | null | undefined;
32850
32859
  status: "ACTIVE" | "INACTIVE";
32851
32860
  name: string;
@@ -35652,6 +35661,7 @@ declare const FullItemInfo: z.ZodObject<{
35652
35661
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
35653
35662
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
35654
35663
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
35664
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
35655
35665
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
35656
35666
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
35657
35667
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -35930,6 +35940,7 @@ declare const FullItemInfo: z.ZodObject<{
35930
35940
  stackable?: boolean | null | undefined;
35931
35941
  listable?: boolean | null | undefined;
35932
35942
  purchasable?: boolean | null | undefined;
35943
+ sectionExclusive?: boolean | null | undefined;
35933
35944
  targetCurrencyCode?: string | null | undefined;
35934
35945
  targetItemId?: string | null | undefined;
35935
35946
  images?: {
@@ -36040,6 +36051,7 @@ declare const FullItemInfo: z.ZodObject<{
36040
36051
  stackable?: boolean | null | undefined;
36041
36052
  listable?: boolean | null | undefined;
36042
36053
  purchasable?: boolean | null | undefined;
36054
+ sectionExclusive?: boolean | null | undefined;
36043
36055
  targetCurrencyCode?: string | null | undefined;
36044
36056
  targetItemId?: string | null | undefined;
36045
36057
  images?: {
@@ -36541,6 +36553,7 @@ declare const BundledItemInfo: z.ZodObject<{
36541
36553
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
36542
36554
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
36543
36555
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
36556
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
36544
36557
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
36545
36558
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
36546
36559
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -36833,7 +36846,6 @@ declare const BundledItemInfo: z.ZodObject<{
36833
36846
  price: number;
36834
36847
  }>>>;
36835
36848
  bundledQty: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
36836
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
36837
36849
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
36838
36850
  }, "strip", z.ZodTypeAny, {
36839
36851
  appId?: string | null | undefined;
@@ -36850,6 +36862,7 @@ declare const BundledItemInfo: z.ZodObject<{
36850
36862
  stackable?: boolean | null | undefined;
36851
36863
  listable?: boolean | null | undefined;
36852
36864
  purchasable?: boolean | null | undefined;
36865
+ sectionExclusive?: boolean | null | undefined;
36853
36866
  targetCurrencyCode?: string | null | undefined;
36854
36867
  targetItemId?: string | null | undefined;
36855
36868
  images?: {
@@ -36933,7 +36946,6 @@ declare const BundledItemInfo: z.ZodObject<{
36933
36946
  currencyCode: string;
36934
36947
  price: number;
36935
36948
  } | null | undefined;
36936
- sectionExclusive?: boolean | null | undefined;
36937
36949
  localExt?: Record<string, any> | null | undefined;
36938
36950
  bundledQty?: number | null | undefined;
36939
36951
  status: "ACTIVE" | "INACTIVE";
@@ -36963,6 +36975,7 @@ declare const BundledItemInfo: z.ZodObject<{
36963
36975
  stackable?: boolean | null | undefined;
36964
36976
  listable?: boolean | null | undefined;
36965
36977
  purchasable?: boolean | null | undefined;
36978
+ sectionExclusive?: boolean | null | undefined;
36966
36979
  targetCurrencyCode?: string | null | undefined;
36967
36980
  targetItemId?: string | null | undefined;
36968
36981
  images?: {
@@ -37046,7 +37059,6 @@ declare const BundledItemInfo: z.ZodObject<{
37046
37059
  currencyCode: string;
37047
37060
  price: number;
37048
37061
  } | null | undefined;
37049
- sectionExclusive?: boolean | null | undefined;
37050
37062
  localExt?: Record<string, any> | null | undefined;
37051
37063
  bundledQty?: number | null | undefined;
37052
37064
  status: "ACTIVE" | "INACTIVE";
@@ -37235,6 +37247,7 @@ declare const FullItemPagingSlicedResult: z.ZodObject<{
37235
37247
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
37236
37248
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
37237
37249
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
37250
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
37238
37251
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
37239
37252
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
37240
37253
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -37513,6 +37526,7 @@ declare const FullItemPagingSlicedResult: z.ZodObject<{
37513
37526
  stackable?: boolean | null | undefined;
37514
37527
  listable?: boolean | null | undefined;
37515
37528
  purchasable?: boolean | null | undefined;
37529
+ sectionExclusive?: boolean | null | undefined;
37516
37530
  targetCurrencyCode?: string | null | undefined;
37517
37531
  targetItemId?: string | null | undefined;
37518
37532
  images?: {
@@ -37623,6 +37637,7 @@ declare const FullItemPagingSlicedResult: z.ZodObject<{
37623
37637
  stackable?: boolean | null | undefined;
37624
37638
  listable?: boolean | null | undefined;
37625
37639
  purchasable?: boolean | null | undefined;
37640
+ sectionExclusive?: boolean | null | undefined;
37626
37641
  targetCurrencyCode?: string | null | undefined;
37627
37642
  targetItemId?: string | null | undefined;
37628
37643
  images?: {
@@ -37749,6 +37764,7 @@ declare const FullItemPagingSlicedResult: z.ZodObject<{
37749
37764
  stackable?: boolean | null | undefined;
37750
37765
  listable?: boolean | null | undefined;
37751
37766
  purchasable?: boolean | null | undefined;
37767
+ sectionExclusive?: boolean | null | undefined;
37752
37768
  targetCurrencyCode?: string | null | undefined;
37753
37769
  targetItemId?: string | null | undefined;
37754
37770
  images?: {
@@ -37865,6 +37881,7 @@ declare const FullItemPagingSlicedResult: z.ZodObject<{
37865
37881
  stackable?: boolean | null | undefined;
37866
37882
  listable?: boolean | null | undefined;
37867
37883
  purchasable?: boolean | null | undefined;
37884
+ sectionExclusive?: boolean | null | undefined;
37868
37885
  targetCurrencyCode?: string | null | undefined;
37869
37886
  targetItemId?: string | null | undefined;
37870
37887
  images?: {
@@ -38048,7 +38065,7 @@ declare const ItemUpdate: z.ZodObject<{
38048
38065
  status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE"]>>>;
38049
38066
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38050
38067
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38051
- isSectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38068
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38052
38069
  sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
38053
38070
  regionData: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
38054
38071
  price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -38253,6 +38270,7 @@ declare const ItemUpdate: z.ZodObject<{
38253
38270
  stackable?: boolean | null | undefined;
38254
38271
  listable?: boolean | null | undefined;
38255
38272
  purchasable?: boolean | null | undefined;
38273
+ sectionExclusive?: boolean | null | undefined;
38256
38274
  targetCurrencyCode?: string | null | undefined;
38257
38275
  images?: {
38258
38276
  as?: string | null | undefined;
@@ -38326,7 +38344,6 @@ declare const ItemUpdate: z.ZodObject<{
38326
38344
  localExt?: Record<string, any> | null | undefined;
38327
38345
  title: string;
38328
38346
  }> | null | undefined;
38329
- isSectionExclusive?: boolean | null | undefined;
38330
38347
  itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
38331
38348
  entitlementType: "DURABLE" | "CONSUMABLE";
38332
38349
  }, {
@@ -38345,6 +38362,7 @@ declare const ItemUpdate: z.ZodObject<{
38345
38362
  stackable?: boolean | null | undefined;
38346
38363
  listable?: boolean | null | undefined;
38347
38364
  purchasable?: boolean | null | undefined;
38365
+ sectionExclusive?: boolean | null | undefined;
38348
38366
  targetCurrencyCode?: string | null | undefined;
38349
38367
  images?: {
38350
38368
  as?: string | null | undefined;
@@ -38418,7 +38436,6 @@ declare const ItemUpdate: z.ZodObject<{
38418
38436
  localExt?: Record<string, any> | null | undefined;
38419
38437
  title: string;
38420
38438
  }> | null | undefined;
38421
- isSectionExclusive?: boolean | null | undefined;
38422
38439
  itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
38423
38440
  entitlementType: "DURABLE" | "CONSUMABLE";
38424
38441
  }>;
@@ -38675,7 +38692,7 @@ declare const ItemCreate: z.ZodObject<{
38675
38692
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
38676
38693
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38677
38694
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38678
- isSectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38695
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
38679
38696
  sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
38680
38697
  images: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
38681
38698
  as: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -38900,6 +38917,7 @@ declare const ItemCreate: z.ZodObject<{
38900
38917
  stackable?: boolean | null | undefined;
38901
38918
  listable?: boolean | null | undefined;
38902
38919
  purchasable?: boolean | null | undefined;
38920
+ sectionExclusive?: boolean | null | undefined;
38903
38921
  targetCurrencyCode?: string | null | undefined;
38904
38922
  images?: {
38905
38923
  as?: string | null | undefined;
@@ -38953,7 +38971,6 @@ declare const ItemCreate: z.ZodObject<{
38953
38971
  currencyCode: string;
38954
38972
  price: number;
38955
38973
  } | null | undefined;
38956
- isSectionExclusive?: boolean | null | undefined;
38957
38974
  status: "ACTIVE" | "INACTIVE";
38958
38975
  name: string;
38959
38976
  categoryPath: string;
@@ -38992,6 +39009,7 @@ declare const ItemCreate: z.ZodObject<{
38992
39009
  stackable?: boolean | null | undefined;
38993
39010
  listable?: boolean | null | undefined;
38994
39011
  purchasable?: boolean | null | undefined;
39012
+ sectionExclusive?: boolean | null | undefined;
38995
39013
  targetCurrencyCode?: string | null | undefined;
38996
39014
  images?: {
38997
39015
  as?: string | null | undefined;
@@ -39045,7 +39063,6 @@ declare const ItemCreate: z.ZodObject<{
39045
39063
  currencyCode: string;
39046
39064
  price: number;
39047
39065
  } | null | undefined;
39048
- isSectionExclusive?: boolean | null | undefined;
39049
39066
  status: "ACTIVE" | "INACTIVE";
39050
39067
  name: string;
39051
39068
  categoryPath: string;
@@ -40345,6 +40362,7 @@ declare const SectionInfo: z.ZodObject<{
40345
40362
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
40346
40363
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
40347
40364
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
40365
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
40348
40366
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
40349
40367
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
40350
40368
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -40636,7 +40654,6 @@ declare const SectionInfo: z.ZodObject<{
40636
40654
  currencyCode: string;
40637
40655
  price: number;
40638
40656
  }>>>;
40639
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
40640
40657
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
40641
40658
  }, "strip", z.ZodTypeAny, {
40642
40659
  appId?: string | null | undefined;
@@ -40653,6 +40670,7 @@ declare const SectionInfo: z.ZodObject<{
40653
40670
  stackable?: boolean | null | undefined;
40654
40671
  listable?: boolean | null | undefined;
40655
40672
  purchasable?: boolean | null | undefined;
40673
+ sectionExclusive?: boolean | null | undefined;
40656
40674
  targetCurrencyCode?: string | null | undefined;
40657
40675
  targetItemId?: string | null | undefined;
40658
40676
  images?: {
@@ -40736,7 +40754,6 @@ declare const SectionInfo: z.ZodObject<{
40736
40754
  currencyCode: string;
40737
40755
  price: number;
40738
40756
  } | null | undefined;
40739
- sectionExclusive?: boolean | null | undefined;
40740
40757
  localExt?: Record<string, any> | null | undefined;
40741
40758
  status: "ACTIVE" | "INACTIVE";
40742
40759
  name: string;
@@ -40765,6 +40782,7 @@ declare const SectionInfo: z.ZodObject<{
40765
40782
  stackable?: boolean | null | undefined;
40766
40783
  listable?: boolean | null | undefined;
40767
40784
  purchasable?: boolean | null | undefined;
40785
+ sectionExclusive?: boolean | null | undefined;
40768
40786
  targetCurrencyCode?: string | null | undefined;
40769
40787
  targetItemId?: string | null | undefined;
40770
40788
  images?: {
@@ -40848,7 +40866,6 @@ declare const SectionInfo: z.ZodObject<{
40848
40866
  currencyCode: string;
40849
40867
  price: number;
40850
40868
  } | null | undefined;
40851
- sectionExclusive?: boolean | null | undefined;
40852
40869
  localExt?: Record<string, any> | null | undefined;
40853
40870
  status: "ACTIVE" | "INACTIVE";
40854
40871
  name: string;
@@ -40890,6 +40907,7 @@ declare const SectionInfo: z.ZodObject<{
40890
40907
  stackable?: boolean | null | undefined;
40891
40908
  listable?: boolean | null | undefined;
40892
40909
  purchasable?: boolean | null | undefined;
40910
+ sectionExclusive?: boolean | null | undefined;
40893
40911
  targetCurrencyCode?: string | null | undefined;
40894
40912
  targetItemId?: string | null | undefined;
40895
40913
  images?: {
@@ -40973,7 +40991,6 @@ declare const SectionInfo: z.ZodObject<{
40973
40991
  currencyCode: string;
40974
40992
  price: number;
40975
40993
  } | null | undefined;
40976
- sectionExclusive?: boolean | null | undefined;
40977
40994
  localExt?: Record<string, any> | null | undefined;
40978
40995
  status: "ACTIVE" | "INACTIVE";
40979
40996
  name: string;
@@ -41020,6 +41037,7 @@ declare const SectionInfo: z.ZodObject<{
41020
41037
  stackable?: boolean | null | undefined;
41021
41038
  listable?: boolean | null | undefined;
41022
41039
  purchasable?: boolean | null | undefined;
41040
+ sectionExclusive?: boolean | null | undefined;
41023
41041
  targetCurrencyCode?: string | null | undefined;
41024
41042
  targetItemId?: string | null | undefined;
41025
41043
  images?: {
@@ -41103,7 +41121,6 @@ declare const SectionInfo: z.ZodObject<{
41103
41121
  currencyCode: string;
41104
41122
  price: number;
41105
41123
  } | null | undefined;
41106
- sectionExclusive?: boolean | null | undefined;
41107
41124
  localExt?: Record<string, any> | null | undefined;
41108
41125
  status: "ACTIVE" | "INACTIVE";
41109
41126
  name: string;
@@ -44136,6 +44153,7 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44136
44153
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
44137
44154
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44138
44155
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44156
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44139
44157
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
44140
44158
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
44141
44159
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -44427,7 +44445,6 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44427
44445
  currencyCode: string;
44428
44446
  price: number;
44429
44447
  }>>>;
44430
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44431
44448
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
44432
44449
  }, "strip", z.ZodTypeAny, {
44433
44450
  appId?: string | null | undefined;
@@ -44444,6 +44461,7 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44444
44461
  stackable?: boolean | null | undefined;
44445
44462
  listable?: boolean | null | undefined;
44446
44463
  purchasable?: boolean | null | undefined;
44464
+ sectionExclusive?: boolean | null | undefined;
44447
44465
  targetCurrencyCode?: string | null | undefined;
44448
44466
  targetItemId?: string | null | undefined;
44449
44467
  images?: {
@@ -44527,7 +44545,6 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44527
44545
  currencyCode: string;
44528
44546
  price: number;
44529
44547
  } | null | undefined;
44530
- sectionExclusive?: boolean | null | undefined;
44531
44548
  localExt?: Record<string, any> | null | undefined;
44532
44549
  status: "ACTIVE" | "INACTIVE";
44533
44550
  name: string;
@@ -44556,6 +44573,7 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44556
44573
  stackable?: boolean | null | undefined;
44557
44574
  listable?: boolean | null | undefined;
44558
44575
  purchasable?: boolean | null | undefined;
44576
+ sectionExclusive?: boolean | null | undefined;
44559
44577
  targetCurrencyCode?: string | null | undefined;
44560
44578
  targetItemId?: string | null | undefined;
44561
44579
  images?: {
@@ -44639,7 +44657,6 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44639
44657
  currencyCode: string;
44640
44658
  price: number;
44641
44659
  } | null | undefined;
44642
- sectionExclusive?: boolean | null | undefined;
44643
44660
  localExt?: Record<string, any> | null | undefined;
44644
44661
  status: "ACTIVE" | "INACTIVE";
44645
44662
  name: string;
@@ -44683,6 +44700,7 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44683
44700
  stackable?: boolean | null | undefined;
44684
44701
  listable?: boolean | null | undefined;
44685
44702
  purchasable?: boolean | null | undefined;
44703
+ sectionExclusive?: boolean | null | undefined;
44686
44704
  targetCurrencyCode?: string | null | undefined;
44687
44705
  targetItemId?: string | null | undefined;
44688
44706
  images?: {
@@ -44766,7 +44784,6 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44766
44784
  currencyCode: string;
44767
44785
  price: number;
44768
44786
  } | null | undefined;
44769
- sectionExclusive?: boolean | null | undefined;
44770
44787
  localExt?: Record<string, any> | null | undefined;
44771
44788
  status: "ACTIVE" | "INACTIVE";
44772
44789
  name: string;
@@ -44810,6 +44827,7 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44810
44827
  stackable?: boolean | null | undefined;
44811
44828
  listable?: boolean | null | undefined;
44812
44829
  purchasable?: boolean | null | undefined;
44830
+ sectionExclusive?: boolean | null | undefined;
44813
44831
  targetCurrencyCode?: string | null | undefined;
44814
44832
  targetItemId?: string | null | undefined;
44815
44833
  images?: {
@@ -44893,7 +44911,6 @@ declare const FulfillmentScriptContext: z.ZodObject<{
44893
44911
  currencyCode: string;
44894
44912
  price: number;
44895
44913
  } | null | undefined;
44896
- sectionExclusive?: boolean | null | undefined;
44897
44914
  localExt?: Record<string, any> | null | undefined;
44898
44915
  status: "ACTIVE" | "INACTIVE";
44899
44916
  name: string;
@@ -44979,6 +44996,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
44979
44996
  status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
44980
44997
  listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44981
44998
  purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44999
+ sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
44982
45000
  itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
44983
45001
  targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
44984
45002
  targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -45270,7 +45288,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45270
45288
  currencyCode: string;
45271
45289
  price: number;
45272
45290
  }>>>;
45273
- sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
45274
45291
  localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
45275
45292
  }, "strip", z.ZodTypeAny, {
45276
45293
  appId?: string | null | undefined;
@@ -45287,6 +45304,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45287
45304
  stackable?: boolean | null | undefined;
45288
45305
  listable?: boolean | null | undefined;
45289
45306
  purchasable?: boolean | null | undefined;
45307
+ sectionExclusive?: boolean | null | undefined;
45290
45308
  targetCurrencyCode?: string | null | undefined;
45291
45309
  targetItemId?: string | null | undefined;
45292
45310
  images?: {
@@ -45370,7 +45388,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45370
45388
  currencyCode: string;
45371
45389
  price: number;
45372
45390
  } | null | undefined;
45373
- sectionExclusive?: boolean | null | undefined;
45374
45391
  localExt?: Record<string, any> | null | undefined;
45375
45392
  status: "ACTIVE" | "INACTIVE";
45376
45393
  name: string;
@@ -45399,6 +45416,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45399
45416
  stackable?: boolean | null | undefined;
45400
45417
  listable?: boolean | null | undefined;
45401
45418
  purchasable?: boolean | null | undefined;
45419
+ sectionExclusive?: boolean | null | undefined;
45402
45420
  targetCurrencyCode?: string | null | undefined;
45403
45421
  targetItemId?: string | null | undefined;
45404
45422
  images?: {
@@ -45482,7 +45500,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45482
45500
  currencyCode: string;
45483
45501
  price: number;
45484
45502
  } | null | undefined;
45485
- sectionExclusive?: boolean | null | undefined;
45486
45503
  localExt?: Record<string, any> | null | undefined;
45487
45504
  status: "ACTIVE" | "INACTIVE";
45488
45505
  name: string;
@@ -45526,6 +45543,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45526
45543
  stackable?: boolean | null | undefined;
45527
45544
  listable?: boolean | null | undefined;
45528
45545
  purchasable?: boolean | null | undefined;
45546
+ sectionExclusive?: boolean | null | undefined;
45529
45547
  targetCurrencyCode?: string | null | undefined;
45530
45548
  targetItemId?: string | null | undefined;
45531
45549
  images?: {
@@ -45609,7 +45627,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45609
45627
  currencyCode: string;
45610
45628
  price: number;
45611
45629
  } | null | undefined;
45612
- sectionExclusive?: boolean | null | undefined;
45613
45630
  localExt?: Record<string, any> | null | undefined;
45614
45631
  status: "ACTIVE" | "INACTIVE";
45615
45632
  name: string;
@@ -45653,6 +45670,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45653
45670
  stackable?: boolean | null | undefined;
45654
45671
  listable?: boolean | null | undefined;
45655
45672
  purchasable?: boolean | null | undefined;
45673
+ sectionExclusive?: boolean | null | undefined;
45656
45674
  targetCurrencyCode?: string | null | undefined;
45657
45675
  targetItemId?: string | null | undefined;
45658
45676
  images?: {
@@ -45736,7 +45754,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45736
45754
  currencyCode: string;
45737
45755
  price: number;
45738
45756
  } | null | undefined;
45739
- sectionExclusive?: boolean | null | undefined;
45740
45757
  localExt?: Record<string, any> | null | undefined;
45741
45758
  status: "ACTIVE" | "INACTIVE";
45742
45759
  name: string;
@@ -45784,6 +45801,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45784
45801
  stackable?: boolean | null | undefined;
45785
45802
  listable?: boolean | null | undefined;
45786
45803
  purchasable?: boolean | null | undefined;
45804
+ sectionExclusive?: boolean | null | undefined;
45787
45805
  targetCurrencyCode?: string | null | undefined;
45788
45806
  targetItemId?: string | null | undefined;
45789
45807
  images?: {
@@ -45867,7 +45885,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45867
45885
  currencyCode: string;
45868
45886
  price: number;
45869
45887
  } | null | undefined;
45870
- sectionExclusive?: boolean | null | undefined;
45871
45888
  localExt?: Record<string, any> | null | undefined;
45872
45889
  status: "ACTIVE" | "INACTIVE";
45873
45890
  name: string;
@@ -45915,6 +45932,7 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45915
45932
  stackable?: boolean | null | undefined;
45916
45933
  listable?: boolean | null | undefined;
45917
45934
  purchasable?: boolean | null | undefined;
45935
+ sectionExclusive?: boolean | null | undefined;
45918
45936
  targetCurrencyCode?: string | null | undefined;
45919
45937
  targetItemId?: string | null | undefined;
45920
45938
  images?: {
@@ -45998,7 +46016,6 @@ declare const FulfillmentScriptEvalTestRequest: z.ZodObject<{
45998
46016
  currencyCode: string;
45999
46017
  price: number;
46000
46018
  } | null | undefined;
46001
- sectionExclusive?: boolean | null | undefined;
46002
46019
  localExt?: Record<string, any> | null | undefined;
46003
46020
  status: "ACTIVE" | "INACTIVE";
46004
46021
  name: string;
@@ -71788,89 +71805,1245 @@ declare const LauncherConfigData: z.ZodObject<{
71788
71805
  customTitleFontUrl: string;
71789
71806
  };
71790
71807
  }>;
71791
- }, {
71792
- loginPage: z.ZodObject<{
71793
- template: z.ZodString;
71794
- background: z.ZodString;
71795
- boxLogo: z.ZodString;
71796
- boxTitle: z.ZodString;
71797
- boxInfo: z.ZodString;
71798
- boxButtonText: z.ZodString;
71799
- backgroundOverlay: z.ZodObject<{
71800
- isEnabled: z.ZodBoolean;
71801
- type: z.ZodNativeEnum<typeof BackgroundOverlayType>;
71802
- opacity: z.ZodNumber;
71803
- }, "strip", z.ZodTypeAny, {
71804
- type: BackgroundOverlayType;
71805
- isEnabled: boolean;
71806
- opacity: number;
71807
- }, {
71808
- type: BackgroundOverlayType;
71809
- isEnabled: boolean;
71810
- opacity: number;
71811
- }>;
71812
- }, "strip", z.ZodTypeAny, {
71813
- template: string;
71814
- background: string;
71815
- backgroundOverlay: {
71816
- type: BackgroundOverlayType;
71817
- isEnabled: boolean;
71818
- opacity: number;
71819
- };
71820
- boxLogo: string;
71821
- boxTitle: string;
71822
- boxInfo: string;
71823
- boxButtonText: string;
71824
- }, {
71825
- template: string;
71826
- background: string;
71827
- backgroundOverlay: {
71828
- type: BackgroundOverlayType;
71829
- isEnabled: boolean;
71830
- opacity: number;
71831
- };
71832
- boxLogo: string;
71833
- boxTitle: string;
71834
- boxInfo: string;
71835
- boxButtonText: string;
71836
- }>;
71837
- mainPage: z.ZodObject<{
71838
- gameTitle: z.ZodString;
71839
- background: z.ZodString;
71840
- gameID: z.ZodString;
71841
- backgroundOverlay: z.ZodObject<{
71842
- isEnabled: z.ZodBoolean;
71843
- type: z.ZodNativeEnum<typeof BackgroundOverlayType>;
71844
- opacity: z.ZodNumber;
71845
- }, "strip", z.ZodTypeAny, {
71846
- type: BackgroundOverlayType;
71847
- isEnabled: boolean;
71848
- opacity: number;
71849
- }, {
71850
- type: BackgroundOverlayType;
71851
- isEnabled: boolean;
71852
- opacity: number;
71853
- }>;
71854
- }, "strip", z.ZodTypeAny, {
71855
- background: string;
71856
- backgroundOverlay: {
71857
- type: BackgroundOverlayType;
71858
- isEnabled: boolean;
71859
- opacity: number;
71860
- };
71861
- gameTitle: string;
71862
- gameID: string;
71863
- }, {
71864
- background: string;
71865
- backgroundOverlay: {
71866
- type: BackgroundOverlayType;
71867
- isEnabled: boolean;
71868
- opacity: number;
71869
- };
71870
- gameTitle: string;
71871
- gameID: string;
71872
- }>;
71873
- }>, "strip", z.ZodTypeAny, {
71808
+ }, {
71809
+ loginPage: z.ZodObject<{
71810
+ template: z.ZodString;
71811
+ background: z.ZodString;
71812
+ boxLogo: z.ZodString;
71813
+ boxTitle: z.ZodString;
71814
+ boxInfo: z.ZodString;
71815
+ boxButtonText: z.ZodString;
71816
+ backgroundOverlay: z.ZodObject<{
71817
+ isEnabled: z.ZodBoolean;
71818
+ type: z.ZodNativeEnum<typeof BackgroundOverlayType>;
71819
+ opacity: z.ZodNumber;
71820
+ }, "strip", z.ZodTypeAny, {
71821
+ type: BackgroundOverlayType;
71822
+ isEnabled: boolean;
71823
+ opacity: number;
71824
+ }, {
71825
+ type: BackgroundOverlayType;
71826
+ isEnabled: boolean;
71827
+ opacity: number;
71828
+ }>;
71829
+ }, "strip", z.ZodTypeAny, {
71830
+ template: string;
71831
+ background: string;
71832
+ backgroundOverlay: {
71833
+ type: BackgroundOverlayType;
71834
+ isEnabled: boolean;
71835
+ opacity: number;
71836
+ };
71837
+ boxLogo: string;
71838
+ boxTitle: string;
71839
+ boxInfo: string;
71840
+ boxButtonText: string;
71841
+ }, {
71842
+ template: string;
71843
+ background: string;
71844
+ backgroundOverlay: {
71845
+ type: BackgroundOverlayType;
71846
+ isEnabled: boolean;
71847
+ opacity: number;
71848
+ };
71849
+ boxLogo: string;
71850
+ boxTitle: string;
71851
+ boxInfo: string;
71852
+ boxButtonText: string;
71853
+ }>;
71854
+ mainPage: z.ZodObject<{
71855
+ gameTitle: z.ZodString;
71856
+ background: z.ZodString;
71857
+ gameID: z.ZodString;
71858
+ backgroundOverlay: z.ZodObject<{
71859
+ isEnabled: z.ZodBoolean;
71860
+ type: z.ZodNativeEnum<typeof BackgroundOverlayType>;
71861
+ opacity: z.ZodNumber;
71862
+ }, "strip", z.ZodTypeAny, {
71863
+ type: BackgroundOverlayType;
71864
+ isEnabled: boolean;
71865
+ opacity: number;
71866
+ }, {
71867
+ type: BackgroundOverlayType;
71868
+ isEnabled: boolean;
71869
+ opacity: number;
71870
+ }>;
71871
+ }, "strip", z.ZodTypeAny, {
71872
+ background: string;
71873
+ backgroundOverlay: {
71874
+ type: BackgroundOverlayType;
71875
+ isEnabled: boolean;
71876
+ opacity: number;
71877
+ };
71878
+ gameTitle: string;
71879
+ gameID: string;
71880
+ }, {
71881
+ background: string;
71882
+ backgroundOverlay: {
71883
+ type: BackgroundOverlayType;
71884
+ isEnabled: boolean;
71885
+ opacity: number;
71886
+ };
71887
+ gameTitle: string;
71888
+ gameID: string;
71889
+ }>;
71890
+ }>, "strip", z.ZodTypeAny, {
71891
+ templatePreview?: string | undefined;
71892
+ isLocalStyleEnabled: boolean;
71893
+ global: {
71894
+ colors: {
71895
+ text: {
71896
+ hex: string;
71897
+ rgb: {
71898
+ r: number;
71899
+ g: number;
71900
+ b: number;
71901
+ a: number;
71902
+ };
71903
+ };
71904
+ card: {
71905
+ hex: string;
71906
+ rgb: {
71907
+ r: number;
71908
+ g: number;
71909
+ b: number;
71910
+ a: number;
71911
+ };
71912
+ };
71913
+ background: {
71914
+ hex: string;
71915
+ rgb: {
71916
+ r: number;
71917
+ g: number;
71918
+ b: number;
71919
+ a: number;
71920
+ };
71921
+ };
71922
+ overlay: {
71923
+ hex: string;
71924
+ rgb: {
71925
+ r: number;
71926
+ g: number;
71927
+ b: number;
71928
+ a: number;
71929
+ };
71930
+ };
71931
+ primary: {
71932
+ hex: string;
71933
+ rgb: {
71934
+ r: number;
71935
+ g: number;
71936
+ b: number;
71937
+ a: number;
71938
+ };
71939
+ };
71940
+ secondary: {
71941
+ hex: string;
71942
+ rgb: {
71943
+ r: number;
71944
+ g: number;
71945
+ b: number;
71946
+ a: number;
71947
+ };
71948
+ };
71949
+ };
71950
+ fonts: {
71951
+ title: string;
71952
+ body: string;
71953
+ customBodyFontUrl: string;
71954
+ customTitleFontUrl: string;
71955
+ };
71956
+ };
71957
+ loginPage: {
71958
+ template: string;
71959
+ background: string;
71960
+ backgroundOverlay: {
71961
+ type: BackgroundOverlayType;
71962
+ isEnabled: boolean;
71963
+ opacity: number;
71964
+ };
71965
+ boxLogo: string;
71966
+ boxTitle: string;
71967
+ boxInfo: string;
71968
+ boxButtonText: string;
71969
+ };
71970
+ mainPage: {
71971
+ background: string;
71972
+ backgroundOverlay: {
71973
+ type: BackgroundOverlayType;
71974
+ isEnabled: boolean;
71975
+ opacity: number;
71976
+ };
71977
+ gameTitle: string;
71978
+ gameID: string;
71979
+ };
71980
+ }, {
71981
+ templatePreview?: string | undefined;
71982
+ isLocalStyleEnabled: boolean;
71983
+ global: {
71984
+ colors: {
71985
+ text: {
71986
+ hex: string;
71987
+ rgb: {
71988
+ r: number;
71989
+ g: number;
71990
+ b: number;
71991
+ a: number;
71992
+ };
71993
+ };
71994
+ card: {
71995
+ hex: string;
71996
+ rgb: {
71997
+ r: number;
71998
+ g: number;
71999
+ b: number;
72000
+ a: number;
72001
+ };
72002
+ };
72003
+ background: {
72004
+ hex: string;
72005
+ rgb: {
72006
+ r: number;
72007
+ g: number;
72008
+ b: number;
72009
+ a: number;
72010
+ };
72011
+ };
72012
+ overlay: {
72013
+ hex: string;
72014
+ rgb: {
72015
+ r: number;
72016
+ g: number;
72017
+ b: number;
72018
+ a: number;
72019
+ };
72020
+ };
72021
+ primary: {
72022
+ hex: string;
72023
+ rgb: {
72024
+ r: number;
72025
+ g: number;
72026
+ b: number;
72027
+ a: number;
72028
+ };
72029
+ };
72030
+ secondary: {
72031
+ hex: string;
72032
+ rgb: {
72033
+ r: number;
72034
+ g: number;
72035
+ b: number;
72036
+ a: number;
72037
+ };
72038
+ };
72039
+ };
72040
+ fonts: {
72041
+ title: string;
72042
+ body: string;
72043
+ customBodyFontUrl: string;
72044
+ customTitleFontUrl: string;
72045
+ };
72046
+ };
72047
+ loginPage: {
72048
+ template: string;
72049
+ background: string;
72050
+ backgroundOverlay: {
72051
+ type: BackgroundOverlayType;
72052
+ isEnabled: boolean;
72053
+ opacity: number;
72054
+ };
72055
+ boxLogo: string;
72056
+ boxTitle: string;
72057
+ boxInfo: string;
72058
+ boxButtonText: string;
72059
+ };
72060
+ mainPage: {
72061
+ background: string;
72062
+ backgroundOverlay: {
72063
+ type: BackgroundOverlayType;
72064
+ isEnabled: boolean;
72065
+ opacity: number;
72066
+ };
72067
+ gameTitle: string;
72068
+ gameID: string;
72069
+ };
72070
+ }>;
72071
+ }>, "strip", z.ZodTypeAny, {
72072
+ data: {
72073
+ templatePreview?: string | undefined;
72074
+ isLocalStyleEnabled: boolean;
72075
+ global: {
72076
+ colors: {
72077
+ text: {
72078
+ hex: string;
72079
+ rgb: {
72080
+ r: number;
72081
+ g: number;
72082
+ b: number;
72083
+ a: number;
72084
+ };
72085
+ };
72086
+ card: {
72087
+ hex: string;
72088
+ rgb: {
72089
+ r: number;
72090
+ g: number;
72091
+ b: number;
72092
+ a: number;
72093
+ };
72094
+ };
72095
+ background: {
72096
+ hex: string;
72097
+ rgb: {
72098
+ r: number;
72099
+ g: number;
72100
+ b: number;
72101
+ a: number;
72102
+ };
72103
+ };
72104
+ overlay: {
72105
+ hex: string;
72106
+ rgb: {
72107
+ r: number;
72108
+ g: number;
72109
+ b: number;
72110
+ a: number;
72111
+ };
72112
+ };
72113
+ primary: {
72114
+ hex: string;
72115
+ rgb: {
72116
+ r: number;
72117
+ g: number;
72118
+ b: number;
72119
+ a: number;
72120
+ };
72121
+ };
72122
+ secondary: {
72123
+ hex: string;
72124
+ rgb: {
72125
+ r: number;
72126
+ g: number;
72127
+ b: number;
72128
+ a: number;
72129
+ };
72130
+ };
72131
+ };
72132
+ fonts: {
72133
+ title: string;
72134
+ body: string;
72135
+ customBodyFontUrl: string;
72136
+ customTitleFontUrl: string;
72137
+ };
72138
+ };
72139
+ loginPage: {
72140
+ template: string;
72141
+ background: string;
72142
+ backgroundOverlay: {
72143
+ type: BackgroundOverlayType;
72144
+ isEnabled: boolean;
72145
+ opacity: number;
72146
+ };
72147
+ boxLogo: string;
72148
+ boxTitle: string;
72149
+ boxInfo: string;
72150
+ boxButtonText: string;
72151
+ };
72152
+ mainPage: {
72153
+ background: string;
72154
+ backgroundOverlay: {
72155
+ type: BackgroundOverlayType;
72156
+ isEnabled: boolean;
72157
+ opacity: number;
72158
+ };
72159
+ gameTitle: string;
72160
+ gameID: string;
72161
+ };
72162
+ };
72163
+ name: string;
72164
+ updatedAt: string;
72165
+ version: number;
72166
+ format: string;
72167
+ }, {
72168
+ data: {
72169
+ templatePreview?: string | undefined;
72170
+ isLocalStyleEnabled: boolean;
72171
+ global: {
72172
+ colors: {
72173
+ text: {
72174
+ hex: string;
72175
+ rgb: {
72176
+ r: number;
72177
+ g: number;
72178
+ b: number;
72179
+ a: number;
72180
+ };
72181
+ };
72182
+ card: {
72183
+ hex: string;
72184
+ rgb: {
72185
+ r: number;
72186
+ g: number;
72187
+ b: number;
72188
+ a: number;
72189
+ };
72190
+ };
72191
+ background: {
72192
+ hex: string;
72193
+ rgb: {
72194
+ r: number;
72195
+ g: number;
72196
+ b: number;
72197
+ a: number;
72198
+ };
72199
+ };
72200
+ overlay: {
72201
+ hex: string;
72202
+ rgb: {
72203
+ r: number;
72204
+ g: number;
72205
+ b: number;
72206
+ a: number;
72207
+ };
72208
+ };
72209
+ primary: {
72210
+ hex: string;
72211
+ rgb: {
72212
+ r: number;
72213
+ g: number;
72214
+ b: number;
72215
+ a: number;
72216
+ };
72217
+ };
72218
+ secondary: {
72219
+ hex: string;
72220
+ rgb: {
72221
+ r: number;
72222
+ g: number;
72223
+ b: number;
72224
+ a: number;
72225
+ };
72226
+ };
72227
+ };
72228
+ fonts: {
72229
+ title: string;
72230
+ body: string;
72231
+ customBodyFontUrl: string;
72232
+ customTitleFontUrl: string;
72233
+ };
72234
+ };
72235
+ loginPage: {
72236
+ template: string;
72237
+ background: string;
72238
+ backgroundOverlay: {
72239
+ type: BackgroundOverlayType;
72240
+ isEnabled: boolean;
72241
+ opacity: number;
72242
+ };
72243
+ boxLogo: string;
72244
+ boxTitle: string;
72245
+ boxInfo: string;
72246
+ boxButtonText: string;
72247
+ };
72248
+ mainPage: {
72249
+ background: string;
72250
+ backgroundOverlay: {
72251
+ type: BackgroundOverlayType;
72252
+ isEnabled: boolean;
72253
+ opacity: number;
72254
+ };
72255
+ gameTitle: string;
72256
+ gameID: string;
72257
+ };
72258
+ };
72259
+ name: string;
72260
+ updatedAt: string;
72261
+ version: number;
72262
+ format: string;
72263
+ }>;
72264
+ launcherUpdateUrl: z.ZodObject<z.extendShape<{
72265
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
72266
+ format: z.ZodString;
72267
+ name: z.ZodString;
72268
+ updatedAt: z.ZodString;
72269
+ version: z.ZodNumber;
72270
+ }, {
72271
+ data: z.ZodObject<{
72272
+ value: z.ZodString;
72273
+ }, "strip", z.ZodTypeAny, {
72274
+ value: string;
72275
+ }, {
72276
+ value: string;
72277
+ }>;
72278
+ }>, "strip", z.ZodTypeAny, {
72279
+ data: {
72280
+ value: string;
72281
+ };
72282
+ name: string;
72283
+ updatedAt: string;
72284
+ version: number;
72285
+ format: string;
72286
+ }, {
72287
+ data: {
72288
+ value: string;
72289
+ };
72290
+ name: string;
72291
+ updatedAt: string;
72292
+ version: number;
72293
+ format: string;
72294
+ }>;
72295
+ logoVariant: z.ZodObject<z.extendShape<{
72296
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
72297
+ format: z.ZodString;
72298
+ name: z.ZodString;
72299
+ updatedAt: z.ZodString;
72300
+ version: z.ZodNumber;
72301
+ }, {
72302
+ data: z.ZodObject<{
72303
+ header: z.ZodNullable<z.ZodNumber>;
72304
+ footer: z.ZodNullable<z.ZodNumber>;
72305
+ }, "strip", z.ZodTypeAny, {
72306
+ header: number | null;
72307
+ footer: number | null;
72308
+ }, {
72309
+ header: number | null;
72310
+ footer: number | null;
72311
+ }>;
72312
+ }>, "strip", z.ZodTypeAny, {
72313
+ data: {
72314
+ header: number | null;
72315
+ footer: number | null;
72316
+ };
72317
+ name: string;
72318
+ updatedAt: string;
72319
+ version: number;
72320
+ format: string;
72321
+ }, {
72322
+ data: {
72323
+ header: number | null;
72324
+ footer: number | null;
72325
+ };
72326
+ name: string;
72327
+ updatedAt: string;
72328
+ version: number;
72329
+ format: string;
72330
+ }>;
72331
+ }, "strip", z.ZodTypeAny, {
72332
+ pageConfig: {
72333
+ data: {
72334
+ templatePreview?: string | undefined;
72335
+ isLocalStyleEnabled: boolean;
72336
+ global: {
72337
+ colors: {
72338
+ text: {
72339
+ hex: string;
72340
+ rgb: {
72341
+ r: number;
72342
+ g: number;
72343
+ b: number;
72344
+ a: number;
72345
+ };
72346
+ };
72347
+ card: {
72348
+ hex: string;
72349
+ rgb: {
72350
+ r: number;
72351
+ g: number;
72352
+ b: number;
72353
+ a: number;
72354
+ };
72355
+ };
72356
+ background: {
72357
+ hex: string;
72358
+ rgb: {
72359
+ r: number;
72360
+ g: number;
72361
+ b: number;
72362
+ a: number;
72363
+ };
72364
+ };
72365
+ overlay: {
72366
+ hex: string;
72367
+ rgb: {
72368
+ r: number;
72369
+ g: number;
72370
+ b: number;
72371
+ a: number;
72372
+ };
72373
+ };
72374
+ primary: {
72375
+ hex: string;
72376
+ rgb: {
72377
+ r: number;
72378
+ g: number;
72379
+ b: number;
72380
+ a: number;
72381
+ };
72382
+ };
72383
+ secondary: {
72384
+ hex: string;
72385
+ rgb: {
72386
+ r: number;
72387
+ g: number;
72388
+ b: number;
72389
+ a: number;
72390
+ };
72391
+ };
72392
+ };
72393
+ fonts: {
72394
+ title: string;
72395
+ body: string;
72396
+ customBodyFontUrl: string;
72397
+ customTitleFontUrl: string;
72398
+ };
72399
+ };
72400
+ loginPage: {
72401
+ template: string;
72402
+ background: string;
72403
+ backgroundOverlay: {
72404
+ type: BackgroundOverlayType;
72405
+ isEnabled: boolean;
72406
+ opacity: number;
72407
+ };
72408
+ boxLogo: string;
72409
+ boxTitle: string;
72410
+ boxInfo: string;
72411
+ boxButtonText: string;
72412
+ };
72413
+ mainPage: {
72414
+ background: string;
72415
+ backgroundOverlay: {
72416
+ type: BackgroundOverlayType;
72417
+ isEnabled: boolean;
72418
+ opacity: number;
72419
+ };
72420
+ gameTitle: string;
72421
+ gameID: string;
72422
+ };
72423
+ };
72424
+ name: string;
72425
+ updatedAt: string;
72426
+ version: number;
72427
+ format: string;
72428
+ };
72429
+ logoVariant: {
72430
+ data: {
72431
+ header: number | null;
72432
+ footer: number | null;
72433
+ };
72434
+ name: string;
72435
+ updatedAt: string;
72436
+ version: number;
72437
+ format: string;
72438
+ };
72439
+ launcherUpdateUrl: {
72440
+ data: {
72441
+ value: string;
72442
+ };
72443
+ name: string;
72444
+ updatedAt: string;
72445
+ version: number;
72446
+ format: string;
72447
+ };
72448
+ }, {
72449
+ pageConfig: {
72450
+ data: {
72451
+ templatePreview?: string | undefined;
72452
+ isLocalStyleEnabled: boolean;
72453
+ global: {
72454
+ colors: {
72455
+ text: {
72456
+ hex: string;
72457
+ rgb: {
72458
+ r: number;
72459
+ g: number;
72460
+ b: number;
72461
+ a: number;
72462
+ };
72463
+ };
72464
+ card: {
72465
+ hex: string;
72466
+ rgb: {
72467
+ r: number;
72468
+ g: number;
72469
+ b: number;
72470
+ a: number;
72471
+ };
72472
+ };
72473
+ background: {
72474
+ hex: string;
72475
+ rgb: {
72476
+ r: number;
72477
+ g: number;
72478
+ b: number;
72479
+ a: number;
72480
+ };
72481
+ };
72482
+ overlay: {
72483
+ hex: string;
72484
+ rgb: {
72485
+ r: number;
72486
+ g: number;
72487
+ b: number;
72488
+ a: number;
72489
+ };
72490
+ };
72491
+ primary: {
72492
+ hex: string;
72493
+ rgb: {
72494
+ r: number;
72495
+ g: number;
72496
+ b: number;
72497
+ a: number;
72498
+ };
72499
+ };
72500
+ secondary: {
72501
+ hex: string;
72502
+ rgb: {
72503
+ r: number;
72504
+ g: number;
72505
+ b: number;
72506
+ a: number;
72507
+ };
72508
+ };
72509
+ };
72510
+ fonts: {
72511
+ title: string;
72512
+ body: string;
72513
+ customBodyFontUrl: string;
72514
+ customTitleFontUrl: string;
72515
+ };
72516
+ };
72517
+ loginPage: {
72518
+ template: string;
72519
+ background: string;
72520
+ backgroundOverlay: {
72521
+ type: BackgroundOverlayType;
72522
+ isEnabled: boolean;
72523
+ opacity: number;
72524
+ };
72525
+ boxLogo: string;
72526
+ boxTitle: string;
72527
+ boxInfo: string;
72528
+ boxButtonText: string;
72529
+ };
72530
+ mainPage: {
72531
+ background: string;
72532
+ backgroundOverlay: {
72533
+ type: BackgroundOverlayType;
72534
+ isEnabled: boolean;
72535
+ opacity: number;
72536
+ };
72537
+ gameTitle: string;
72538
+ gameID: string;
72539
+ };
72540
+ };
72541
+ name: string;
72542
+ updatedAt: string;
72543
+ version: number;
72544
+ format: string;
72545
+ };
72546
+ logoVariant: {
72547
+ data: {
72548
+ header: number | null;
72549
+ footer: number | null;
72550
+ };
72551
+ name: string;
72552
+ updatedAt: string;
72553
+ version: number;
72554
+ format: string;
72555
+ };
72556
+ launcherUpdateUrl: {
72557
+ data: {
72558
+ value: string;
72559
+ };
72560
+ name: string;
72561
+ updatedAt: string;
72562
+ version: number;
72563
+ format: string;
72564
+ };
72565
+ }>;
72566
+ interface LauncherConfigData extends z.infer<typeof LauncherConfigData> {
72567
+ }
72568
+
72569
+ declare const PaymentConfigData: z.ZodObject<{
72570
+ pageConfig: z.ZodObject<z.extendShape<{
72571
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
72572
+ format: z.ZodString;
72573
+ name: z.ZodString;
72574
+ updatedAt: z.ZodString;
72575
+ version: z.ZodNumber;
72576
+ }, {
72577
+ data: z.ZodObject<{
72578
+ templatePreview: z.ZodOptional<z.ZodString>;
72579
+ isLocalStyleEnabled: z.ZodBoolean;
72580
+ global: z.ZodObject<{
72581
+ colors: z.ZodObject<{
72582
+ primary: z.ZodObject<{
72583
+ hex: z.ZodString;
72584
+ rgb: z.ZodObject<{
72585
+ r: z.ZodNumber;
72586
+ g: z.ZodNumber;
72587
+ b: z.ZodNumber;
72588
+ a: z.ZodNumber;
72589
+ }, "strip", z.ZodTypeAny, {
72590
+ r: number;
72591
+ g: number;
72592
+ b: number;
72593
+ a: number;
72594
+ }, {
72595
+ r: number;
72596
+ g: number;
72597
+ b: number;
72598
+ a: number;
72599
+ }>;
72600
+ }, "strip", z.ZodTypeAny, {
72601
+ hex: string;
72602
+ rgb: {
72603
+ r: number;
72604
+ g: number;
72605
+ b: number;
72606
+ a: number;
72607
+ };
72608
+ }, {
72609
+ hex: string;
72610
+ rgb: {
72611
+ r: number;
72612
+ g: number;
72613
+ b: number;
72614
+ a: number;
72615
+ };
72616
+ }>;
72617
+ secondary: z.ZodObject<{
72618
+ hex: z.ZodString;
72619
+ rgb: z.ZodObject<{
72620
+ r: z.ZodNumber;
72621
+ g: z.ZodNumber;
72622
+ b: z.ZodNumber;
72623
+ a: z.ZodNumber;
72624
+ }, "strip", z.ZodTypeAny, {
72625
+ r: number;
72626
+ g: number;
72627
+ b: number;
72628
+ a: number;
72629
+ }, {
72630
+ r: number;
72631
+ g: number;
72632
+ b: number;
72633
+ a: number;
72634
+ }>;
72635
+ }, "strip", z.ZodTypeAny, {
72636
+ hex: string;
72637
+ rgb: {
72638
+ r: number;
72639
+ g: number;
72640
+ b: number;
72641
+ a: number;
72642
+ };
72643
+ }, {
72644
+ hex: string;
72645
+ rgb: {
72646
+ r: number;
72647
+ g: number;
72648
+ b: number;
72649
+ a: number;
72650
+ };
72651
+ }>;
72652
+ text: z.ZodObject<{
72653
+ hex: z.ZodString;
72654
+ rgb: z.ZodObject<{
72655
+ r: z.ZodNumber;
72656
+ g: z.ZodNumber;
72657
+ b: z.ZodNumber;
72658
+ a: z.ZodNumber;
72659
+ }, "strip", z.ZodTypeAny, {
72660
+ r: number;
72661
+ g: number;
72662
+ b: number;
72663
+ a: number;
72664
+ }, {
72665
+ r: number;
72666
+ g: number;
72667
+ b: number;
72668
+ a: number;
72669
+ }>;
72670
+ }, "strip", z.ZodTypeAny, {
72671
+ hex: string;
72672
+ rgb: {
72673
+ r: number;
72674
+ g: number;
72675
+ b: number;
72676
+ a: number;
72677
+ };
72678
+ }, {
72679
+ hex: string;
72680
+ rgb: {
72681
+ r: number;
72682
+ g: number;
72683
+ b: number;
72684
+ a: number;
72685
+ };
72686
+ }>;
72687
+ overlay: z.ZodObject<{
72688
+ hex: z.ZodString;
72689
+ rgb: z.ZodObject<{
72690
+ r: z.ZodNumber;
72691
+ g: z.ZodNumber;
72692
+ b: z.ZodNumber;
72693
+ a: z.ZodNumber;
72694
+ }, "strip", z.ZodTypeAny, {
72695
+ r: number;
72696
+ g: number;
72697
+ b: number;
72698
+ a: number;
72699
+ }, {
72700
+ r: number;
72701
+ g: number;
72702
+ b: number;
72703
+ a: number;
72704
+ }>;
72705
+ }, "strip", z.ZodTypeAny, {
72706
+ hex: string;
72707
+ rgb: {
72708
+ r: number;
72709
+ g: number;
72710
+ b: number;
72711
+ a: number;
72712
+ };
72713
+ }, {
72714
+ hex: string;
72715
+ rgb: {
72716
+ r: number;
72717
+ g: number;
72718
+ b: number;
72719
+ a: number;
72720
+ };
72721
+ }>;
72722
+ background: z.ZodObject<{
72723
+ hex: z.ZodString;
72724
+ rgb: z.ZodObject<{
72725
+ r: z.ZodNumber;
72726
+ g: z.ZodNumber;
72727
+ b: z.ZodNumber;
72728
+ a: z.ZodNumber;
72729
+ }, "strip", z.ZodTypeAny, {
72730
+ r: number;
72731
+ g: number;
72732
+ b: number;
72733
+ a: number;
72734
+ }, {
72735
+ r: number;
72736
+ g: number;
72737
+ b: number;
72738
+ a: number;
72739
+ }>;
72740
+ }, "strip", z.ZodTypeAny, {
72741
+ hex: string;
72742
+ rgb: {
72743
+ r: number;
72744
+ g: number;
72745
+ b: number;
72746
+ a: number;
72747
+ };
72748
+ }, {
72749
+ hex: string;
72750
+ rgb: {
72751
+ r: number;
72752
+ g: number;
72753
+ b: number;
72754
+ a: number;
72755
+ };
72756
+ }>;
72757
+ card: z.ZodObject<{
72758
+ hex: z.ZodString;
72759
+ rgb: z.ZodObject<{
72760
+ r: z.ZodNumber;
72761
+ g: z.ZodNumber;
72762
+ b: z.ZodNumber;
72763
+ a: z.ZodNumber;
72764
+ }, "strip", z.ZodTypeAny, {
72765
+ r: number;
72766
+ g: number;
72767
+ b: number;
72768
+ a: number;
72769
+ }, {
72770
+ r: number;
72771
+ g: number;
72772
+ b: number;
72773
+ a: number;
72774
+ }>;
72775
+ }, "strip", z.ZodTypeAny, {
72776
+ hex: string;
72777
+ rgb: {
72778
+ r: number;
72779
+ g: number;
72780
+ b: number;
72781
+ a: number;
72782
+ };
72783
+ }, {
72784
+ hex: string;
72785
+ rgb: {
72786
+ r: number;
72787
+ g: number;
72788
+ b: number;
72789
+ a: number;
72790
+ };
72791
+ }>;
72792
+ }, "strip", z.ZodTypeAny, {
72793
+ text: {
72794
+ hex: string;
72795
+ rgb: {
72796
+ r: number;
72797
+ g: number;
72798
+ b: number;
72799
+ a: number;
72800
+ };
72801
+ };
72802
+ card: {
72803
+ hex: string;
72804
+ rgb: {
72805
+ r: number;
72806
+ g: number;
72807
+ b: number;
72808
+ a: number;
72809
+ };
72810
+ };
72811
+ background: {
72812
+ hex: string;
72813
+ rgb: {
72814
+ r: number;
72815
+ g: number;
72816
+ b: number;
72817
+ a: number;
72818
+ };
72819
+ };
72820
+ overlay: {
72821
+ hex: string;
72822
+ rgb: {
72823
+ r: number;
72824
+ g: number;
72825
+ b: number;
72826
+ a: number;
72827
+ };
72828
+ };
72829
+ primary: {
72830
+ hex: string;
72831
+ rgb: {
72832
+ r: number;
72833
+ g: number;
72834
+ b: number;
72835
+ a: number;
72836
+ };
72837
+ };
72838
+ secondary: {
72839
+ hex: string;
72840
+ rgb: {
72841
+ r: number;
72842
+ g: number;
72843
+ b: number;
72844
+ a: number;
72845
+ };
72846
+ };
72847
+ }, {
72848
+ text: {
72849
+ hex: string;
72850
+ rgb: {
72851
+ r: number;
72852
+ g: number;
72853
+ b: number;
72854
+ a: number;
72855
+ };
72856
+ };
72857
+ card: {
72858
+ hex: string;
72859
+ rgb: {
72860
+ r: number;
72861
+ g: number;
72862
+ b: number;
72863
+ a: number;
72864
+ };
72865
+ };
72866
+ background: {
72867
+ hex: string;
72868
+ rgb: {
72869
+ r: number;
72870
+ g: number;
72871
+ b: number;
72872
+ a: number;
72873
+ };
72874
+ };
72875
+ overlay: {
72876
+ hex: string;
72877
+ rgb: {
72878
+ r: number;
72879
+ g: number;
72880
+ b: number;
72881
+ a: number;
72882
+ };
72883
+ };
72884
+ primary: {
72885
+ hex: string;
72886
+ rgb: {
72887
+ r: number;
72888
+ g: number;
72889
+ b: number;
72890
+ a: number;
72891
+ };
72892
+ };
72893
+ secondary: {
72894
+ hex: string;
72895
+ rgb: {
72896
+ r: number;
72897
+ g: number;
72898
+ b: number;
72899
+ a: number;
72900
+ };
72901
+ };
72902
+ }>;
72903
+ fonts: z.ZodObject<{
72904
+ body: z.ZodString;
72905
+ customBodyFontUrl: z.ZodString;
72906
+ title: z.ZodString;
72907
+ customTitleFontUrl: z.ZodString;
72908
+ }, "strip", z.ZodTypeAny, {
72909
+ title: string;
72910
+ body: string;
72911
+ customBodyFontUrl: string;
72912
+ customTitleFontUrl: string;
72913
+ }, {
72914
+ title: string;
72915
+ body: string;
72916
+ customBodyFontUrl: string;
72917
+ customTitleFontUrl: string;
72918
+ }>;
72919
+ }, "strip", z.ZodTypeAny, {
72920
+ colors: {
72921
+ text: {
72922
+ hex: string;
72923
+ rgb: {
72924
+ r: number;
72925
+ g: number;
72926
+ b: number;
72927
+ a: number;
72928
+ };
72929
+ };
72930
+ card: {
72931
+ hex: string;
72932
+ rgb: {
72933
+ r: number;
72934
+ g: number;
72935
+ b: number;
72936
+ a: number;
72937
+ };
72938
+ };
72939
+ background: {
72940
+ hex: string;
72941
+ rgb: {
72942
+ r: number;
72943
+ g: number;
72944
+ b: number;
72945
+ a: number;
72946
+ };
72947
+ };
72948
+ overlay: {
72949
+ hex: string;
72950
+ rgb: {
72951
+ r: number;
72952
+ g: number;
72953
+ b: number;
72954
+ a: number;
72955
+ };
72956
+ };
72957
+ primary: {
72958
+ hex: string;
72959
+ rgb: {
72960
+ r: number;
72961
+ g: number;
72962
+ b: number;
72963
+ a: number;
72964
+ };
72965
+ };
72966
+ secondary: {
72967
+ hex: string;
72968
+ rgb: {
72969
+ r: number;
72970
+ g: number;
72971
+ b: number;
72972
+ a: number;
72973
+ };
72974
+ };
72975
+ };
72976
+ fonts: {
72977
+ title: string;
72978
+ body: string;
72979
+ customBodyFontUrl: string;
72980
+ customTitleFontUrl: string;
72981
+ };
72982
+ }, {
72983
+ colors: {
72984
+ text: {
72985
+ hex: string;
72986
+ rgb: {
72987
+ r: number;
72988
+ g: number;
72989
+ b: number;
72990
+ a: number;
72991
+ };
72992
+ };
72993
+ card: {
72994
+ hex: string;
72995
+ rgb: {
72996
+ r: number;
72997
+ g: number;
72998
+ b: number;
72999
+ a: number;
73000
+ };
73001
+ };
73002
+ background: {
73003
+ hex: string;
73004
+ rgb: {
73005
+ r: number;
73006
+ g: number;
73007
+ b: number;
73008
+ a: number;
73009
+ };
73010
+ };
73011
+ overlay: {
73012
+ hex: string;
73013
+ rgb: {
73014
+ r: number;
73015
+ g: number;
73016
+ b: number;
73017
+ a: number;
73018
+ };
73019
+ };
73020
+ primary: {
73021
+ hex: string;
73022
+ rgb: {
73023
+ r: number;
73024
+ g: number;
73025
+ b: number;
73026
+ a: number;
73027
+ };
73028
+ };
73029
+ secondary: {
73030
+ hex: string;
73031
+ rgb: {
73032
+ r: number;
73033
+ g: number;
73034
+ b: number;
73035
+ a: number;
73036
+ };
73037
+ };
73038
+ };
73039
+ fonts: {
73040
+ title: string;
73041
+ body: string;
73042
+ customBodyFontUrl: string;
73043
+ customTitleFontUrl: string;
73044
+ };
73045
+ }>;
73046
+ }, "strip", z.ZodTypeAny, {
71874
73047
  templatePreview?: string | undefined;
71875
73048
  isLocalStyleEnabled: boolean;
71876
73049
  global: {
@@ -71937,29 +73110,6 @@ declare const LauncherConfigData: z.ZodObject<{
71937
73110
  customTitleFontUrl: string;
71938
73111
  };
71939
73112
  };
71940
- loginPage: {
71941
- template: string;
71942
- background: string;
71943
- backgroundOverlay: {
71944
- type: BackgroundOverlayType;
71945
- isEnabled: boolean;
71946
- opacity: number;
71947
- };
71948
- boxLogo: string;
71949
- boxTitle: string;
71950
- boxInfo: string;
71951
- boxButtonText: string;
71952
- };
71953
- mainPage: {
71954
- background: string;
71955
- backgroundOverlay: {
71956
- type: BackgroundOverlayType;
71957
- isEnabled: boolean;
71958
- opacity: number;
71959
- };
71960
- gameTitle: string;
71961
- gameID: string;
71962
- };
71963
73113
  }, {
71964
73114
  templatePreview?: string | undefined;
71965
73115
  isLocalStyleEnabled: boolean;
@@ -72027,29 +73177,6 @@ declare const LauncherConfigData: z.ZodObject<{
72027
73177
  customTitleFontUrl: string;
72028
73178
  };
72029
73179
  };
72030
- loginPage: {
72031
- template: string;
72032
- background: string;
72033
- backgroundOverlay: {
72034
- type: BackgroundOverlayType;
72035
- isEnabled: boolean;
72036
- opacity: number;
72037
- };
72038
- boxLogo: string;
72039
- boxTitle: string;
72040
- boxInfo: string;
72041
- boxButtonText: string;
72042
- };
72043
- mainPage: {
72044
- background: string;
72045
- backgroundOverlay: {
72046
- type: BackgroundOverlayType;
72047
- isEnabled: boolean;
72048
- opacity: number;
72049
- };
72050
- gameTitle: string;
72051
- gameID: string;
72052
- };
72053
73180
  }>;
72054
73181
  }>, "strip", z.ZodTypeAny, {
72055
73182
  data: {
@@ -72119,29 +73246,6 @@ declare const LauncherConfigData: z.ZodObject<{
72119
73246
  customTitleFontUrl: string;
72120
73247
  };
72121
73248
  };
72122
- loginPage: {
72123
- template: string;
72124
- background: string;
72125
- backgroundOverlay: {
72126
- type: BackgroundOverlayType;
72127
- isEnabled: boolean;
72128
- opacity: number;
72129
- };
72130
- boxLogo: string;
72131
- boxTitle: string;
72132
- boxInfo: string;
72133
- boxButtonText: string;
72134
- };
72135
- mainPage: {
72136
- background: string;
72137
- backgroundOverlay: {
72138
- type: BackgroundOverlayType;
72139
- isEnabled: boolean;
72140
- opacity: number;
72141
- };
72142
- gameTitle: string;
72143
- gameID: string;
72144
- };
72145
73249
  };
72146
73250
  name: string;
72147
73251
  updatedAt: string;
@@ -72215,96 +73319,6 @@ declare const LauncherConfigData: z.ZodObject<{
72215
73319
  customTitleFontUrl: string;
72216
73320
  };
72217
73321
  };
72218
- loginPage: {
72219
- template: string;
72220
- background: string;
72221
- backgroundOverlay: {
72222
- type: BackgroundOverlayType;
72223
- isEnabled: boolean;
72224
- opacity: number;
72225
- };
72226
- boxLogo: string;
72227
- boxTitle: string;
72228
- boxInfo: string;
72229
- boxButtonText: string;
72230
- };
72231
- mainPage: {
72232
- background: string;
72233
- backgroundOverlay: {
72234
- type: BackgroundOverlayType;
72235
- isEnabled: boolean;
72236
- opacity: number;
72237
- };
72238
- gameTitle: string;
72239
- gameID: string;
72240
- };
72241
- };
72242
- name: string;
72243
- updatedAt: string;
72244
- version: number;
72245
- format: string;
72246
- }>;
72247
- launcherUpdateUrl: z.ZodObject<z.extendShape<{
72248
- data: z.ZodRecord<z.ZodString, z.ZodAny>;
72249
- format: z.ZodString;
72250
- name: z.ZodString;
72251
- updatedAt: z.ZodString;
72252
- version: z.ZodNumber;
72253
- }, {
72254
- data: z.ZodObject<{
72255
- value: z.ZodString;
72256
- }, "strip", z.ZodTypeAny, {
72257
- value: string;
72258
- }, {
72259
- value: string;
72260
- }>;
72261
- }>, "strip", z.ZodTypeAny, {
72262
- data: {
72263
- value: string;
72264
- };
72265
- name: string;
72266
- updatedAt: string;
72267
- version: number;
72268
- format: string;
72269
- }, {
72270
- data: {
72271
- value: string;
72272
- };
72273
- name: string;
72274
- updatedAt: string;
72275
- version: number;
72276
- format: string;
72277
- }>;
72278
- logoVariant: z.ZodObject<z.extendShape<{
72279
- data: z.ZodRecord<z.ZodString, z.ZodAny>;
72280
- format: z.ZodString;
72281
- name: z.ZodString;
72282
- updatedAt: z.ZodString;
72283
- version: z.ZodNumber;
72284
- }, {
72285
- data: z.ZodObject<{
72286
- header: z.ZodNullable<z.ZodNumber>;
72287
- footer: z.ZodNullable<z.ZodNumber>;
72288
- }, "strip", z.ZodTypeAny, {
72289
- header: number | null;
72290
- footer: number | null;
72291
- }, {
72292
- header: number | null;
72293
- footer: number | null;
72294
- }>;
72295
- }>, "strip", z.ZodTypeAny, {
72296
- data: {
72297
- header: number | null;
72298
- footer: number | null;
72299
- };
72300
- name: string;
72301
- updatedAt: string;
72302
- version: number;
72303
- format: string;
72304
- }, {
72305
- data: {
72306
- header: number | null;
72307
- footer: number | null;
72308
73322
  };
72309
73323
  name: string;
72310
73324
  updatedAt: string;
@@ -72380,48 +73394,6 @@ declare const LauncherConfigData: z.ZodObject<{
72380
73394
  customTitleFontUrl: string;
72381
73395
  };
72382
73396
  };
72383
- loginPage: {
72384
- template: string;
72385
- background: string;
72386
- backgroundOverlay: {
72387
- type: BackgroundOverlayType;
72388
- isEnabled: boolean;
72389
- opacity: number;
72390
- };
72391
- boxLogo: string;
72392
- boxTitle: string;
72393
- boxInfo: string;
72394
- boxButtonText: string;
72395
- };
72396
- mainPage: {
72397
- background: string;
72398
- backgroundOverlay: {
72399
- type: BackgroundOverlayType;
72400
- isEnabled: boolean;
72401
- opacity: number;
72402
- };
72403
- gameTitle: string;
72404
- gameID: string;
72405
- };
72406
- };
72407
- name: string;
72408
- updatedAt: string;
72409
- version: number;
72410
- format: string;
72411
- };
72412
- logoVariant: {
72413
- data: {
72414
- header: number | null;
72415
- footer: number | null;
72416
- };
72417
- name: string;
72418
- updatedAt: string;
72419
- version: number;
72420
- format: string;
72421
- };
72422
- launcherUpdateUrl: {
72423
- data: {
72424
- value: string;
72425
73397
  };
72426
73398
  name: string;
72427
73399
  updatedAt: string;
@@ -72497,48 +73469,6 @@ declare const LauncherConfigData: z.ZodObject<{
72497
73469
  customTitleFontUrl: string;
72498
73470
  };
72499
73471
  };
72500
- loginPage: {
72501
- template: string;
72502
- background: string;
72503
- backgroundOverlay: {
72504
- type: BackgroundOverlayType;
72505
- isEnabled: boolean;
72506
- opacity: number;
72507
- };
72508
- boxLogo: string;
72509
- boxTitle: string;
72510
- boxInfo: string;
72511
- boxButtonText: string;
72512
- };
72513
- mainPage: {
72514
- background: string;
72515
- backgroundOverlay: {
72516
- type: BackgroundOverlayType;
72517
- isEnabled: boolean;
72518
- opacity: number;
72519
- };
72520
- gameTitle: string;
72521
- gameID: string;
72522
- };
72523
- };
72524
- name: string;
72525
- updatedAt: string;
72526
- version: number;
72527
- format: string;
72528
- };
72529
- logoVariant: {
72530
- data: {
72531
- header: number | null;
72532
- footer: number | null;
72533
- };
72534
- name: string;
72535
- updatedAt: string;
72536
- version: number;
72537
- format: string;
72538
- };
72539
- launcherUpdateUrl: {
72540
- data: {
72541
- value: string;
72542
73472
  };
72543
73473
  name: string;
72544
73474
  updatedAt: string;
@@ -72546,7 +73476,7 @@ declare const LauncherConfigData: z.ZodObject<{
72546
73476
  format: string;
72547
73477
  };
72548
73478
  }>;
72549
- interface LauncherConfigData extends z.infer<typeof LauncherConfigData> {
73479
+ interface PaymentConfigData extends z.infer<typeof PaymentConfigData> {
72550
73480
  }
72551
73481
 
72552
73482
  declare const ReadyPlayerMe: z.ZodObject<{
@@ -72710,4 +73640,4 @@ declare class SdkDevice {
72710
73640
  static getDeviceId: () => string;
72711
73641
  }
72712
73642
 
72713
- 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, BackgroundConfig, 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, BulkCreditRequest, BulkCreditResult, BulkDebitRequest, BulkDebitResult, BulkEntitlementGrantRequest, BulkEntitlementGrantResult, BulkEntitlementRevokeResult, BulkOperationResult, BulkRegionDataChangeRequest, 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, ConfigCreate, ConfigInfo, ConfigUpdate, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumableEntitlementRevocationConfig, 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, CreditResult, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DebitResult, 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, EntitlementGrantResult, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementRevokeResult, EntitlementSoldRequest, EntitlementSoldResult, 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, GameList, GameListKeys, 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, IapItemFlatEntry, IapItemMappingInfo, 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, LauncherConfigData, 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$, 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, PublicInviteUserRequestV4, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataChange, 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, RevocationError, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUseCountRequest, 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, SaleConfig, 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, StreamerInfo, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TGameListKeys, 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, TwitchDropConfigData, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, TwitchSyncResult, TwitchSyncResultArray, 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, UserAgreementsResponse, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserDlcRecord, 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, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersAgreementsRequest, 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 };
73643
+ 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, BackgroundConfig, 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, BulkCreditRequest, BulkCreditResult, BulkDebitRequest, BulkDebitResult, BulkEntitlementGrantRequest, BulkEntitlementGrantResult, BulkEntitlementRevokeResult, BulkOperationResult, BulkRegionDataChangeRequest, 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, ConfigCreate, ConfigInfo, ConfigUpdate, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumableEntitlementRevocationConfig, 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, CreditResult, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DebitResult, 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, EntitlementGrantResult, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementRevokeResult, EntitlementSoldRequest, EntitlementSoldResult, 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, GameList, GameListKeys, 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, IapItemFlatEntry, IapItemMappingInfo, 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, LauncherConfigData, 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$, 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, PaymentConfigData, 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, PublicInviteUserRequestV4, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataChange, 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, RevocationError, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUseCountRequest, 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, SaleConfig, 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, StreamerInfo, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TGameListKeys, 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, TwitchDropConfigData, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, TwitchSyncResult, TwitchSyncResultArray, 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, UserAgreementsResponse, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserDlcRecord, 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, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersAgreementsRequest, 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 };