@accelbyte/sdk 1.1.1 → 1.1.2
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/cjs/node/index.cjs +26 -16
- package/dist/cjs/node/index.cjs.map +1 -1
- package/dist/es/browser/index.browser.js +26 -16
- package/dist/es/browser/index.browser.js.map +1 -1
- package/dist/es/node/index.node.js +26 -16
- package/dist/es/node/index.node.js.map +1 -1
- package/dist/index.d.ts +76 -59
- package/package.json +1 -1
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,6 +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;
|
|
15689
|
+
sectionExclusive?: boolean | null | undefined;
|
|
15679
15690
|
targetCurrencyCode?: string | null | undefined;
|
|
15680
15691
|
targetItemId?: string | null | undefined;
|
|
15681
15692
|
images?: {
|
|
@@ -15759,7 +15770,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15759
15770
|
currencyCode: string;
|
|
15760
15771
|
price: number;
|
|
15761
15772
|
} | null | undefined;
|
|
15762
|
-
sectionExclusive?: boolean | null | undefined;
|
|
15763
15773
|
localExt?: Record<string, any> | null | undefined;
|
|
15764
15774
|
bundledQty?: number | null | undefined;
|
|
15765
15775
|
status: "ACTIVE" | "INACTIVE";
|
|
@@ -15775,7 +15785,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15775
15785
|
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
15776
15786
|
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
15777
15787
|
}>, "many">>>;
|
|
15778
|
-
sectionExclusive: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
15779
15788
|
localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
15780
15789
|
}, "strip", z.ZodTypeAny, {
|
|
15781
15790
|
appId?: string | null | undefined;
|
|
@@ -15792,6 +15801,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15792
15801
|
stackable?: boolean | null | undefined;
|
|
15793
15802
|
listable?: boolean | null | undefined;
|
|
15794
15803
|
purchasable?: boolean | null | undefined;
|
|
15804
|
+
sectionExclusive?: boolean | null | undefined;
|
|
15795
15805
|
targetCurrencyCode?: string | null | undefined;
|
|
15796
15806
|
targetItemId?: string | null | undefined;
|
|
15797
15807
|
images?: {
|
|
@@ -15875,7 +15885,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15875
15885
|
currencyCode: string;
|
|
15876
15886
|
price: number;
|
|
15877
15887
|
} | null | undefined;
|
|
15878
|
-
sectionExclusive?: boolean | null | undefined;
|
|
15879
15888
|
localExt?: Record<string, any> | null | undefined;
|
|
15880
15889
|
items?: {
|
|
15881
15890
|
appId?: string | null | undefined;
|
|
@@ -15892,6 +15901,7 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15892
15901
|
stackable?: boolean | null | undefined;
|
|
15893
15902
|
listable?: boolean | null | undefined;
|
|
15894
15903
|
purchasable?: boolean | null | undefined;
|
|
15904
|
+
sectionExclusive?: boolean | null | undefined;
|
|
15895
15905
|
targetCurrencyCode?: string | null | undefined;
|
|
15896
15906
|
targetItemId?: string | null | undefined;
|
|
15897
15907
|
images?: {
|
|
@@ -15975,7 +15985,6 @@ declare const PopulatedItemInfo: z.ZodObject<{
|
|
|
15975
15985
|
currencyCode: string;
|
|
15976
15986
|
price: number;
|
|
15977
15987
|
} | null | undefined;
|
|
15978
|
-
sectionExclusive?: boolean | 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
|
-
|
|
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
|
-
|
|
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;
|