@accelbyte/sdk 0.2.0-beta.4 → 0.2.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +1 -4
- package/dist/index.browser.es.js +950 -541
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +1499 -1060
- package/dist/index.node.es.js +950 -541
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +950 -541
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/node/package.json +1 -1
- package/examples/typescript-node/README.md +13 -0
- package/examples/typescript-node/node-example.ts +60 -0
- package/examples/vite/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ declare class FileUploadApi {
|
|
|
82
82
|
*/
|
|
83
83
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
84
84
|
/**
|
|
85
|
+
* POST [/basic/v1/public/namespaces/{namespace}/folders/{folder}/files](api)
|
|
86
|
+
*
|
|
85
87
|
* Generate an upload URL. It's valid for 10 minutes.
|
|
86
88
|
* Returns: URL data
|
|
87
89
|
*/
|
|
@@ -108,10 +110,16 @@ declare class MiscApi {
|
|
|
108
110
|
*/
|
|
109
111
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
110
112
|
/**
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
+
* GET [/basic/v1/public/namespaces/{namespace}/misc/countries](api)
|
|
114
|
+
*
|
|
115
|
+
* _Returns_: country code list
|
|
113
116
|
*/
|
|
114
117
|
getCountries: (lang?: string | undefined) => Promise<IResponseWithSync<CountryObjectArray>>;
|
|
118
|
+
/**
|
|
119
|
+
* GET [/basic/v1/public/namespaces/{namespace}/misc/languages](api)
|
|
120
|
+
*
|
|
121
|
+
* _Returns_: language list
|
|
122
|
+
*/
|
|
115
123
|
getLanguages: () => Promise<IResponseWithSync<unknown>>;
|
|
116
124
|
private newInstance;
|
|
117
125
|
}
|
|
@@ -125,9 +133,10 @@ declare class NamespaceApi {
|
|
|
125
133
|
*/
|
|
126
134
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
127
135
|
/**
|
|
136
|
+
* GET [/basic/v1/public/namespaces](api)
|
|
137
|
+
*
|
|
128
138
|
* Get all namespaces.
|
|
129
139
|
*
|
|
130
|
-
* Other detail info:
|
|
131
140
|
* - _Required permission_: login user
|
|
132
141
|
* - _Action code_: 11303
|
|
133
142
|
* - _Returns_: list of namespaces
|
|
@@ -222,23 +231,31 @@ declare class UserProfileApi {
|
|
|
222
231
|
*/
|
|
223
232
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
224
233
|
/**
|
|
234
|
+
* GET [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
235
|
+
*
|
|
225
236
|
* Get my profile
|
|
226
237
|
*
|
|
227
238
|
* __Client with user token can get user profile in target namespace__
|
|
228
239
|
*/
|
|
229
240
|
getUsersMeProfiles: () => Promise<IResponseWithSync<UserProfilePrivateInfo>>;
|
|
230
241
|
/**
|
|
242
|
+
* POST [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
243
|
+
*
|
|
231
244
|
* Create my profile.
|
|
232
245
|
*
|
|
233
246
|
* __Client with user token can create user profile in target namespace__
|
|
234
247
|
*/
|
|
235
248
|
createUserMeProfile: (data: UserProfilePrivateCreate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
236
249
|
/**
|
|
250
|
+
* PUT [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
251
|
+
*
|
|
237
252
|
* Update my profile.
|
|
238
253
|
* Updates user profile in the target namespace. If token's namespace doesn't match the target namespace, the service automatically maps the token's user ID into the user ID in the target namespace. The method returns the updated user profile on a successful call.
|
|
239
254
|
*/
|
|
240
255
|
updateUserMeProfile: (data: UserProfilePrivateUpdate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
241
256
|
/**
|
|
257
|
+
* PUT [/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes](api)
|
|
258
|
+
*
|
|
242
259
|
* Update partially custom attributes tied to user id.
|
|
243
260
|
* _Returns_: Updated custom attributes
|
|
244
261
|
*/
|
|
@@ -254,13 +271,14 @@ declare class CachingApi {
|
|
|
254
271
|
*/
|
|
255
272
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
256
273
|
/**
|
|
274
|
+
* GET [/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}](api)
|
|
275
|
+
*
|
|
257
276
|
* This API is used to retrieve detailed diff cache.
|
|
258
277
|
* The response will contains list of diff cache files along with its download url.
|
|
259
278
|
*
|
|
260
|
-
*
|
|
261
|
-
* - _Required permission_: login user
|
|
279
|
+
* _Required permission_: login user
|
|
262
280
|
*/
|
|
263
|
-
getDiffCache(sourceBuildId: string, destinationBuildId: string)
|
|
281
|
+
getDiffCache: (sourceBuildId: string, destinationBuildId: string) => Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
264
282
|
private newInstance;
|
|
265
283
|
}
|
|
266
284
|
|
|
@@ -272,19 +290,45 @@ declare class DlcApi {
|
|
|
272
290
|
*/
|
|
273
291
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
274
292
|
/**
|
|
293
|
+
* GET [/buildinfo/public/namespaces/{namespace}/dlcs/latest/byGameAppId/{appId}](api)
|
|
294
|
+
*
|
|
275
295
|
* Retrieve the list of DLC available on specific game. Use game's appId to query.
|
|
276
296
|
*
|
|
277
|
-
*
|
|
297
|
+
* _Returns_: list of DLC
|
|
278
298
|
*/
|
|
279
|
-
getLatestDLCByGameAppId(appId: string)
|
|
299
|
+
getLatestDLCByGameAppId: (appId: string) => Promise<IResponseWithSync<RetrieveLatestDlcResponseArray>>;
|
|
280
300
|
/**
|
|
301
|
+
* GET [/buildinfo/public/namespaces/{namespace}/apps/latest/byDLCAppId/{dlcAppId}](api)
|
|
302
|
+
*
|
|
281
303
|
* Retrieve the list of DLC available on specific game. Use DLC's appId to query.
|
|
282
|
-
*
|
|
304
|
+
*
|
|
305
|
+
* _Returns_: appId of game and list of its builds by platformId
|
|
283
306
|
*/
|
|
284
|
-
getBaseGamesByDlcAppId(dlcAppId: string)
|
|
307
|
+
getBaseGamesByDlcAppId: (dlcAppId: string) => Promise<IResponseWithSync<RetrieveBaseGameResponseArray>>;
|
|
285
308
|
private newInstance;
|
|
286
309
|
}
|
|
287
310
|
|
|
311
|
+
declare const PLATFORM: {
|
|
312
|
+
LINUX: string;
|
|
313
|
+
WINDOWS: string;
|
|
314
|
+
};
|
|
315
|
+
declare const ARCH: {
|
|
316
|
+
[arch: string]: string;
|
|
317
|
+
};
|
|
318
|
+
declare const BUILDINFO_PLATFORM_ID: {
|
|
319
|
+
[platformId: string]: string;
|
|
320
|
+
};
|
|
321
|
+
interface PlatformMatchMap {
|
|
322
|
+
arch: string[];
|
|
323
|
+
platform: string;
|
|
324
|
+
targetPlatform: string[];
|
|
325
|
+
}
|
|
326
|
+
declare const AvailablePlatform: PlatformMatchMap[];
|
|
327
|
+
declare enum LogLevel {
|
|
328
|
+
'DEBUG' = "DEBUG",
|
|
329
|
+
'INFO' = "INFO"
|
|
330
|
+
}
|
|
331
|
+
|
|
288
332
|
declare const BasicBuildManifest: z.ZodObject<{
|
|
289
333
|
buildId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
290
334
|
platformId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -319,36 +363,46 @@ declare class DownloaderApi {
|
|
|
319
363
|
*/
|
|
320
364
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
321
365
|
/**
|
|
366
|
+
* GET [/buildinfo/public/namespaces/{namespace}/availablebuilds/{appId}](api)
|
|
367
|
+
*
|
|
322
368
|
* This API is used to get simple build manifest that contains list of current build in various platform.
|
|
323
|
-
*
|
|
369
|
+
*
|
|
324
370
|
* - _Required permission_: login user
|
|
325
371
|
* - _Returns_: build manifest
|
|
326
372
|
*/
|
|
327
|
-
getAvailableBuilds(appId: string)
|
|
373
|
+
getAvailableBuilds: (appId: string) => Promise<IResponseWithSync<BasicBuildManifestArray>>;
|
|
328
374
|
/**
|
|
375
|
+
* GET [/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{platformId}](api)
|
|
376
|
+
*
|
|
329
377
|
* This API is used to get build manifest of release version of the application.
|
|
330
378
|
*
|
|
331
|
-
* Other detail info:
|
|
332
379
|
* - _Required permission_: login user
|
|
333
380
|
* - _Returns_: build manifest
|
|
334
381
|
*/
|
|
335
|
-
getBuildManifest(appId: string, platformId: string)
|
|
382
|
+
getBuildManifest: (appId: string, platformId: string) => Promise<IResponseWithSync<BuildManifest>>;
|
|
336
383
|
/**
|
|
384
|
+
* GET [/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}](api)
|
|
385
|
+
*
|
|
337
386
|
* This API is used to retrieve detailed diff cache.
|
|
338
387
|
* The response will contains list of diff cache files along with its download url.
|
|
339
388
|
*
|
|
340
389
|
* - _Required permission_: login user
|
|
341
390
|
*/
|
|
342
|
-
getDiffCache(sourceBuildId: string, destinationBuildId: string)
|
|
391
|
+
getDiffCache: (sourceBuildId: string, destinationBuildId: string) => Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
343
392
|
/**
|
|
344
393
|
* Check which platform is available for the user to download the game
|
|
394
|
+
*
|
|
395
|
+
* @internal
|
|
345
396
|
*/
|
|
346
|
-
getMatchPlatform({ buildsAvailability, userPlatform }: {
|
|
397
|
+
getMatchPlatform: ({ buildsAvailability, userPlatform }: {
|
|
347
398
|
buildsAvailability: BasicBuildManifest[];
|
|
348
399
|
userPlatform: IUserPlatform;
|
|
349
|
-
})
|
|
400
|
+
}) => string | null;
|
|
401
|
+
/**
|
|
402
|
+
* @internal
|
|
403
|
+
*/
|
|
404
|
+
getCurrentPlatform: (userPlatform: IUserPlatform) => PlatformMatchMap | undefined;
|
|
350
405
|
private newInstance;
|
|
351
|
-
private getCurrentPlatform;
|
|
352
406
|
}
|
|
353
407
|
|
|
354
408
|
declare class EventApi {
|
|
@@ -360,6 +414,8 @@ declare class EventApi {
|
|
|
360
414
|
*/
|
|
361
415
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
362
416
|
/**
|
|
417
|
+
* GET [/event/v2/public/namespaces/{namespace}/users/{userId}/edithistory](api)
|
|
418
|
+
*
|
|
363
419
|
* Available Type:
|
|
364
420
|
* - email
|
|
365
421
|
* - password
|
|
@@ -368,7 +424,7 @@ declare class EventApi {
|
|
|
368
424
|
* - country
|
|
369
425
|
* - language
|
|
370
426
|
*
|
|
371
|
-
*
|
|
427
|
+
* _Requires a valid user access token_
|
|
372
428
|
*/
|
|
373
429
|
getAccountHistoryByUserId: ({ userId, queryParams }: {
|
|
374
430
|
userId: string;
|
|
@@ -392,25 +448,34 @@ declare class DataDeletionApi {
|
|
|
392
448
|
*/
|
|
393
449
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
394
450
|
/**
|
|
451
|
+
* GET [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions/status](api)
|
|
452
|
+
*
|
|
395
453
|
* Fetch the status to check whether or not a user's account is on a deletion status
|
|
396
|
-
*
|
|
454
|
+
*
|
|
455
|
+
* _Requires a valid user access token_
|
|
397
456
|
*/
|
|
398
|
-
getGdprDeletionStatus(userId: string)
|
|
457
|
+
getGdprDeletionStatus: (userId: string) => Promise<IResponseWithSync<DeletionStatus>>;
|
|
399
458
|
/**
|
|
459
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions](api)
|
|
460
|
+
*
|
|
400
461
|
* Request an account's deletion
|
|
401
|
-
*
|
|
462
|
+
*
|
|
463
|
+
* _Requires a valid user access token and password_
|
|
402
464
|
*/
|
|
403
|
-
requestAccountDeletion({ userId, data }: {
|
|
465
|
+
requestAccountDeletion: ({ userId, data }: {
|
|
404
466
|
userId: string;
|
|
405
467
|
data: {
|
|
406
468
|
password: string | null;
|
|
407
469
|
};
|
|
408
|
-
})
|
|
470
|
+
}) => Promise<IResponse<RequestDeleteResponse>>;
|
|
409
471
|
/**
|
|
472
|
+
* DELETE [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions](api)
|
|
473
|
+
*
|
|
410
474
|
* Cancel a deletion request
|
|
411
|
-
*
|
|
475
|
+
*
|
|
476
|
+
* _Requires a valid user access token_
|
|
412
477
|
*/
|
|
413
|
-
cancelAccountDeletion(userId: string)
|
|
478
|
+
cancelAccountDeletion: (userId: string) => Promise<IResponse<unknown>>;
|
|
414
479
|
private newInstance;
|
|
415
480
|
}
|
|
416
481
|
|
|
@@ -423,45 +488,57 @@ declare class DataRetrievalApi {
|
|
|
423
488
|
*/
|
|
424
489
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
425
490
|
/**
|
|
491
|
+
* GET [/gdpr/public/namespaces/{namespace}/users/{userId}/requests](api)
|
|
492
|
+
*
|
|
426
493
|
* Fetch personal data request list
|
|
427
|
-
*
|
|
494
|
+
*
|
|
495
|
+
* _Requires a valid user access token_
|
|
428
496
|
*/
|
|
429
|
-
getGdprDataRequestList({ userId, queryParams }: {
|
|
497
|
+
getGdprDataRequestList: ({ userId, queryParams }: {
|
|
430
498
|
userId: string;
|
|
431
499
|
queryParams?: {
|
|
432
|
-
limit?: number;
|
|
433
|
-
offset?: number;
|
|
434
|
-
};
|
|
435
|
-
})
|
|
500
|
+
limit?: number | undefined;
|
|
501
|
+
offset?: number | undefined;
|
|
502
|
+
} | undefined;
|
|
503
|
+
}) => Promise<IResponseWithSync<UserPersonalDataResponse>>;
|
|
436
504
|
/**
|
|
505
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/requests](api)
|
|
506
|
+
*
|
|
437
507
|
* Create a request for personal data download
|
|
438
|
-
*
|
|
508
|
+
*
|
|
509
|
+
* _Requires a valid user access token_
|
|
439
510
|
*/
|
|
440
|
-
requestGdprData({ userId, data }: {
|
|
511
|
+
requestGdprData: ({ userId, data }: {
|
|
441
512
|
userId: string;
|
|
442
513
|
data: {
|
|
443
514
|
password: string | null;
|
|
444
515
|
};
|
|
445
|
-
})
|
|
516
|
+
}) => Promise<IResponse<DataRetrievalResponse>>;
|
|
446
517
|
/**
|
|
447
|
-
*
|
|
448
|
-
*
|
|
518
|
+
* DELETE [/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}](api)
|
|
519
|
+
*
|
|
520
|
+
* Cancel the request for personal data download
|
|
521
|
+
*
|
|
522
|
+
* _Requires a valid user access token_
|
|
449
523
|
*/
|
|
450
|
-
cancelGdprDataRequest({ userId, requestDate }: {
|
|
524
|
+
cancelGdprDataRequest: ({ userId, requestDate }: {
|
|
451
525
|
userId: string;
|
|
452
526
|
requestDate: string;
|
|
453
|
-
})
|
|
527
|
+
}) => Promise<IResponse<unknown>>;
|
|
454
528
|
/**
|
|
529
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}/generate](api)
|
|
530
|
+
*
|
|
455
531
|
* Create a download URL for personal data request
|
|
456
|
-
*
|
|
532
|
+
*
|
|
533
|
+
* _Requires a valid user access token_
|
|
457
534
|
*/
|
|
458
|
-
requestGdprDataDownloadUrl({ userId, requestDate, data }: {
|
|
535
|
+
requestGdprDataDownloadUrl: ({ userId, requestDate, data }: {
|
|
459
536
|
userId: string;
|
|
460
537
|
requestDate: string;
|
|
461
538
|
data: {
|
|
462
539
|
password: string | null;
|
|
463
540
|
};
|
|
464
|
-
})
|
|
541
|
+
}) => Promise<IResponse<UserDataUrl>>;
|
|
465
542
|
private newInstance;
|
|
466
543
|
}
|
|
467
544
|
|
|
@@ -474,10 +551,11 @@ declare class InputValidationsApi {
|
|
|
474
551
|
*/
|
|
475
552
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
476
553
|
/**
|
|
554
|
+
* GET [/iam/v3/public/inputValidations](api)
|
|
555
|
+
*
|
|
477
556
|
* No role required
|
|
478
557
|
* This method is to get list of input validation configuration.
|
|
479
558
|
* `regex` parameter will be returned if `isCustomRegex` is true. Otherwise, it will be empty.
|
|
480
|
-
*
|
|
481
559
|
*/
|
|
482
560
|
getValidations: (languageCode?: string | null | undefined, defaultOnEmpty?: boolean | null | undefined) => Promise<IResponseWithSync<InputValidationsPublicResponse>>;
|
|
483
561
|
private newInstance;
|
|
@@ -916,8 +994,10 @@ declare class OAuthApi {
|
|
|
916
994
|
/**
|
|
917
995
|
* @internal
|
|
918
996
|
*/
|
|
919
|
-
newOAuth20Extension()
|
|
997
|
+
newOAuth20Extension: () => OAuth20Extension$;
|
|
920
998
|
/**
|
|
999
|
+
* POST [/iam/v3/logout](api)
|
|
1000
|
+
*
|
|
921
1001
|
* This method is used to remove __access_token__, __refresh_token__ from cookie and revoke token from usage.
|
|
922
1002
|
* Supported methods:
|
|
923
1003
|
* - VerifyToken to verify token from header
|
|
@@ -925,6 +1005,8 @@ declare class OAuthApi {
|
|
|
925
1005
|
*/
|
|
926
1006
|
logout: () => Promise<IResponse<unknown>>;
|
|
927
1007
|
/**
|
|
1008
|
+
* POST [/iam/v3/oauth/revoke](api)
|
|
1009
|
+
*
|
|
928
1010
|
* This method revokes a token.
|
|
929
1011
|
* This method requires authorized requests header with Basic Authentication from client that establish the token.action code: 10706
|
|
930
1012
|
*/
|
|
@@ -932,6 +1014,8 @@ declare class OAuthApi {
|
|
|
932
1014
|
token: string;
|
|
933
1015
|
}) => Promise<IResponse<unknown>>;
|
|
934
1016
|
/**
|
|
1017
|
+
* POST [/iam/v3/oauth/mfa/verify](api)
|
|
1018
|
+
*
|
|
935
1019
|
* Verify 2FA code
|
|
936
1020
|
* This method is used for verifying 2FA code.
|
|
937
1021
|
* ##2FA remember device
|
|
@@ -939,12 +1023,19 @@ declare class OAuthApi {
|
|
|
939
1023
|
*
|
|
940
1024
|
*/
|
|
941
1025
|
verify2FA: ({ factor, code, mfaToken, rememberDevice }: Verify2FAParam) => Promise<IDataStatus<TokenResponseV3>>;
|
|
1026
|
+
/**
|
|
1027
|
+
* POST [/iam/v3/oauth/mfa/code](api)
|
|
1028
|
+
*/
|
|
942
1029
|
request2FAEmailCode: ({ mfaToken, factor }: Request2FAEmailCode) => Promise<IDataStatus<unknown>>;
|
|
943
1030
|
/**
|
|
1031
|
+
* GET [/iam/v3/location/country](api)
|
|
1032
|
+
*
|
|
944
1033
|
* This method get country location based on the request.
|
|
945
1034
|
*/
|
|
946
1035
|
getCurrentLocationCountry: () => Promise<IResponseWithSync<CountryLocationResponse>>;
|
|
947
1036
|
/**
|
|
1037
|
+
* GET [/iam/v3/oauth/namespaces/{namespace}/users/{userId}/platforms/{platformId}/platformToken](api)
|
|
1038
|
+
*
|
|
948
1039
|
* Retrieve User Third Party Platform Token
|
|
949
1040
|
*
|
|
950
1041
|
* This method used for retrieving third party platform token for user that login using third party,
|
|
@@ -962,6 +1053,8 @@ declare class OAuthApi {
|
|
|
962
1053
|
*/
|
|
963
1054
|
getThirdPartyPlatformToken: (userId: string, platformId: string) => Promise<IResponseWithSync<TokenThirdPartyResponse>>;
|
|
964
1055
|
/**
|
|
1056
|
+
* POST [/iam/v3/authenticateWithLink](api)
|
|
1057
|
+
*
|
|
965
1058
|
* This method is being used to authenticate a user account and perform platform link.
|
|
966
1059
|
* It validates user's email / username and password.
|
|
967
1060
|
* If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
|
|
@@ -981,25 +1074,27 @@ declare class OAuthApi {
|
|
|
981
1074
|
extend_exp?: boolean | null;
|
|
982
1075
|
}) => Promise<IResponse<TokenResponseV3>>;
|
|
983
1076
|
/**
|
|
1077
|
+
* POST [/iam/v3/link/code/validate](api)
|
|
1078
|
+
*
|
|
984
1079
|
* This method is being used to validate one time link code.
|
|
985
1080
|
* It require a valid user token.
|
|
986
1081
|
* Should specify the target platform id and current user should already linked to this platform.
|
|
987
1082
|
* Current user should be a headless account.
|
|
988
|
-
*
|
|
989
1083
|
*/
|
|
990
|
-
validateOneTimeLinkCode(data: {
|
|
1084
|
+
validateOneTimeLinkCode: (data: {
|
|
991
1085
|
oneTimeLinkCode: string | null;
|
|
992
|
-
})
|
|
1086
|
+
}) => Promise<IResponse<OneTimeLinkingCodeValidationResponse>>;
|
|
993
1087
|
/**
|
|
1088
|
+
* POST [/iam/v3/link/token/exchange](api)
|
|
1089
|
+
*
|
|
994
1090
|
* This method is being used to generate user's token by one time link code.
|
|
995
1091
|
* It require publisher ClientID
|
|
996
1092
|
* It required a code which can be generated from __/iam/v3/link/code/request__.
|
|
997
|
-
*
|
|
998
1093
|
*/
|
|
999
|
-
exchangeTokenByOneTimeLinkCode(data: {
|
|
1094
|
+
exchangeTokenByOneTimeLinkCode: (data: {
|
|
1000
1095
|
oneTimeLinkCode: string | null;
|
|
1001
1096
|
client_id: string | null;
|
|
1002
|
-
})
|
|
1097
|
+
}) => Promise<IResponse<TokenResponseV3>>;
|
|
1003
1098
|
private newInstance;
|
|
1004
1099
|
}
|
|
1005
1100
|
|
|
@@ -1058,6 +1153,8 @@ declare class ThirdPartyCredentialApi {
|
|
|
1058
1153
|
*/
|
|
1059
1154
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
1060
1155
|
/**
|
|
1156
|
+
* GET [/iam/v3/public/namespaces/{namespace}/platforms/clients/active](api)
|
|
1157
|
+
*
|
|
1061
1158
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
1062
1159
|
*/
|
|
1063
1160
|
getThirdPartyPlatformInfo: () => Promise<IResponseWithSync<PublicThirdPartyPlatformInfoArray>>;
|
|
@@ -1076,63 +1173,90 @@ declare class TwoFA {
|
|
|
1076
1173
|
*/
|
|
1077
1174
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
1078
1175
|
/**
|
|
1176
|
+
* GET [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode](api)
|
|
1177
|
+
*
|
|
1079
1178
|
* This method is used to get 8-digits backup codes.
|
|
1080
1179
|
* Each code is a one-time code and will be deleted once used.
|
|
1081
|
-
* This method Requires valid user access token
|
|
1082
1180
|
*
|
|
1181
|
+
* _Requires a valid user access token_
|
|
1083
1182
|
*/
|
|
1084
1183
|
getBackupCode: () => Promise<IResponseWithSync<BackupCodesResponseV4>>;
|
|
1085
1184
|
/**
|
|
1185
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/enable](api)
|
|
1186
|
+
*
|
|
1086
1187
|
* This method is used to enable 2FA backup codes.
|
|
1087
|
-
* This method Requires valid user access token
|
|
1088
1188
|
*
|
|
1189
|
+
* _Requires a valid user access token_
|
|
1089
1190
|
*/
|
|
1090
1191
|
enable2FABackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1091
1192
|
/**
|
|
1193
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode](api)
|
|
1194
|
+
*
|
|
1092
1195
|
* This method is used to enable 2FA backup codes.
|
|
1093
|
-
* This method Requires valid user access token
|
|
1094
1196
|
*
|
|
1197
|
+
* _Requires a valid user access token_
|
|
1095
1198
|
*/
|
|
1096
1199
|
generateBackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1097
1200
|
/**
|
|
1201
|
+
* DELETE [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/disable](api)
|
|
1202
|
+
*
|
|
1098
1203
|
* This method is used to enable 2FA backup codes.
|
|
1099
|
-
* This method Requires valid user access token
|
|
1100
1204
|
*
|
|
1205
|
+
* _Requires a valid user access token_
|
|
1101
1206
|
*/
|
|
1102
1207
|
disableBackupCodes: () => Promise<IResponse<unknown>>;
|
|
1103
1208
|
/**
|
|
1209
|
+
* DELETE [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/disable](api)
|
|
1210
|
+
* }
|
|
1104
1211
|
* This method is used to disable 2FA authenticator.
|
|
1105
|
-
* This method Requires valid user access token
|
|
1106
1212
|
*
|
|
1213
|
+
* _Requires a valid user access token_
|
|
1107
1214
|
*/
|
|
1108
1215
|
disableAuthenticator: () => Promise<IResponse<unknown>>;
|
|
1109
1216
|
/**
|
|
1217
|
+
* GET [/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor](api)
|
|
1218
|
+
*
|
|
1110
1219
|
* This method is used to get user enabled factors.
|
|
1111
|
-
* This method Requires valid user access token
|
|
1112
1220
|
*
|
|
1221
|
+
* _Requires a valid user access token_
|
|
1113
1222
|
*/
|
|
1114
1223
|
getEnabledMethods: () => Promise<IResponseWithSync<EnabledFactorsResponseV4>>;
|
|
1115
1224
|
/**
|
|
1225
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor](api)
|
|
1226
|
+
*
|
|
1116
1227
|
* This method is used to make 2FA factor default.
|
|
1117
|
-
* This method Requires valid user access token
|
|
1118
1228
|
*
|
|
1229
|
+
* _Requires a valid user access token_
|
|
1119
1230
|
*/
|
|
1120
1231
|
set2FAAsDefault: (factor: string) => Promise<IResponse<unknown>>;
|
|
1121
1232
|
/**
|
|
1233
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/enable](api)
|
|
1234
|
+
*
|
|
1122
1235
|
* This method is used to enable 2FA authenticator.
|
|
1123
|
-
* This method Requires valid user access token
|
|
1124
1236
|
*
|
|
1237
|
+
* _Requires a valid user access token_
|
|
1125
1238
|
*/
|
|
1126
1239
|
enable2FAAuthenticator: (code: string) => Promise<IResponse<unknown>>;
|
|
1127
1240
|
/**
|
|
1241
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/key](api)
|
|
1242
|
+
*
|
|
1128
1243
|
* This method is used to generate a secret key for 3rd-party authenticator app.
|
|
1129
1244
|
* A QR code URI is also returned so that frontend can generate QR code image.
|
|
1130
|
-
* This method Requires valid user access token
|
|
1131
1245
|
*
|
|
1246
|
+
* _Requires a valid user access token_
|
|
1132
1247
|
*/
|
|
1133
1248
|
generateSecretKey: () => Promise<IResponse<AuthenticatorKeyResponseV4>>;
|
|
1249
|
+
/**
|
|
1250
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/code](api)
|
|
1251
|
+
*/
|
|
1134
1252
|
requestEmailCode: () => Promise<IResponse<unknown>>;
|
|
1253
|
+
/**
|
|
1254
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable](api)
|
|
1255
|
+
*/
|
|
1135
1256
|
enableEmailMethod: (code: string) => Promise<IResponse<unknown>>;
|
|
1257
|
+
/**
|
|
1258
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/disable](api)
|
|
1259
|
+
*/
|
|
1136
1260
|
disableEmailMethod: () => Promise<IResponse<unknown>>;
|
|
1137
1261
|
private newInstance;
|
|
1138
1262
|
}
|
|
@@ -3857,22 +3981,32 @@ declare class UserApi {
|
|
|
3857
3981
|
*/
|
|
3858
3982
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
3859
3983
|
/**
|
|
3860
|
-
*
|
|
3984
|
+
* GET [/iam/v3/public/users/me](api)
|
|
3985
|
+
*
|
|
3986
|
+
* get currently logged-in user
|
|
3861
3987
|
*/
|
|
3862
3988
|
getCurrentUser: () => Promise<IResponseWithSync<UserResponseV3>>;
|
|
3863
3989
|
/**
|
|
3864
|
-
*
|
|
3990
|
+
* PATCH [/iam/v3/public/namespaces/{namespace}/users/me](api)
|
|
3991
|
+
*
|
|
3992
|
+
* Update current user
|
|
3865
3993
|
*/
|
|
3866
3994
|
updateUserMe: (data: UserUpdateRequestV3) => Promise<IResponse<UserResponseV3>>;
|
|
3867
3995
|
/**
|
|
3996
|
+
* PUT [/iam/v4/public/namespaces/{namespace}/users/me/email](api)
|
|
3997
|
+
*
|
|
3868
3998
|
* update current user's email
|
|
3869
3999
|
*/
|
|
3870
4000
|
updateEmailMe: (data: EmailUpdateRequestV4) => Promise<IResponse<unknown>>;
|
|
3871
4001
|
/**
|
|
4002
|
+
* PUT [/iam/v3/public/namespaces/{namespace}/users/me/password](api)
|
|
4003
|
+
*
|
|
3872
4004
|
* update current user's password
|
|
3873
4005
|
*/
|
|
3874
4006
|
updatePasswordMe: (data: UserPasswordUpdateV3Request) => Promise<IResponse<unknown>>;
|
|
3875
4007
|
/**
|
|
4008
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/code/request](api)
|
|
4009
|
+
*
|
|
3876
4010
|
* Required valid user authorization
|
|
3877
4011
|
* The verification code is sent to email address
|
|
3878
4012
|
* Available contexts for use :
|
|
@@ -3893,6 +4027,8 @@ declare class UserApi {
|
|
|
3893
4027
|
*/
|
|
3894
4028
|
requestVerificationCode: (data: SendVerificationCodeRequestV3) => Promise<IResponse<unknown>>;
|
|
3895
4029
|
/**
|
|
4030
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/code/verify](api)
|
|
4031
|
+
*
|
|
3896
4032
|
* Will consume code if validateOnly is set false
|
|
3897
4033
|
* Required valid user authorization
|
|
3898
4034
|
* Redeems a verification code sent to a user to verify the user's contact address is correct
|
|
@@ -3902,6 +4038,8 @@ declare class UserApi {
|
|
|
3902
4038
|
*/
|
|
3903
4039
|
verifyCode: (data: UserVerificationRequestV3) => Promise<IResponse<unknown>>;
|
|
3904
4040
|
/**
|
|
4041
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/headless/code/verify](api)
|
|
4042
|
+
*
|
|
3905
4043
|
* If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded
|
|
3906
4044
|
* Require valid user access token.
|
|
3907
4045
|
* The method upgrades a headless account by linking the headless account with the email address and the password.
|
|
@@ -3919,6 +4057,8 @@ declare class UserApi {
|
|
|
3919
4057
|
*/
|
|
3920
4058
|
upgradeHeadlessAccount: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV3) => Promise<IResponse<UserResponseV3>>;
|
|
3921
4059
|
/**
|
|
4060
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/headless/code/verify](api)
|
|
4061
|
+
*
|
|
3922
4062
|
* Require valid user access token.
|
|
3923
4063
|
* The method upgrades a headless account by linking the headless account with the email address, username, and password.
|
|
3924
4064
|
* By upgrading the headless account into a full account, the user could use the email address, username, and password for using Justice IAM.
|
|
@@ -3936,11 +4076,15 @@ declare class UserApi {
|
|
|
3936
4076
|
*/
|
|
3937
4077
|
upgradeHeadlessAccountV4: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV4) => Promise<IResponse<UserResponseV4>>;
|
|
3938
4078
|
/**
|
|
4079
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms](api)
|
|
4080
|
+
*
|
|
3939
4081
|
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
3940
|
-
*
|
|
4082
|
+
* action code: 10128
|
|
3941
4083
|
*/
|
|
3942
4084
|
getUserLinkedPlatform: (userId: string) => Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
3943
4085
|
/**
|
|
4086
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}](api)
|
|
4087
|
+
*
|
|
3944
4088
|
* Required valid user authorization.
|
|
3945
4089
|
* __Prerequisite:__
|
|
3946
4090
|
* Platform client configuration need to be added to database for specific platformId. Namespace service URL need to be specified (refer to required environment variables).
|
|
@@ -3974,21 +4118,25 @@ declare class UserApi {
|
|
|
3974
4118
|
};
|
|
3975
4119
|
}) => Promise<IResponse<unknown>>;
|
|
3976
4120
|
/**
|
|
4121
|
+
* GET [/iam/v3/public/namespaces/{namespace}/requests/{requestId}/async/status](api)
|
|
4122
|
+
*
|
|
3977
4123
|
* Get the linking status between a third-party platform to a user
|
|
3978
4124
|
*/
|
|
3979
4125
|
getLinkRequestStatus: (requestId: string) => Promise<IResponseWithSync<LinkRequest>>;
|
|
3980
4126
|
/**
|
|
4127
|
+
* @internal
|
|
3981
4128
|
* It is going to be __DEPRECATED__.
|
|
3982
4129
|
* Update Platform Account relation to current User Account.
|
|
3983
4130
|
* Note: Game progression data (statistics, reward, etc) associated with previous User Account will not be
|
|
3984
4131
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
3985
|
-
*
|
|
3986
4132
|
*/
|
|
3987
4133
|
linkPlatformToUserAccount: ({ userId, data }: {
|
|
3988
4134
|
userId: string;
|
|
3989
4135
|
data: LinkPlatformAccountRequest;
|
|
3990
4136
|
}) => Promise<IResponse<unknown>>;
|
|
3991
4137
|
/**
|
|
4138
|
+
* DELETE [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}](api)
|
|
4139
|
+
*
|
|
3992
4140
|
* Required valid user authorization.
|
|
3993
4141
|
* ##Supported platforms:
|
|
3994
4142
|
*
|
|
@@ -4022,6 +4170,8 @@ declare class UserApi {
|
|
|
4022
4170
|
data: UnlinkUserPlatformRequest;
|
|
4023
4171
|
}) => Promise<IResponse<unknown>>;
|
|
4024
4172
|
/**
|
|
4173
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link](api)
|
|
4174
|
+
*
|
|
4025
4175
|
* This method is used to generate third party login page which will redirected to establish method.
|
|
4026
4176
|
*/
|
|
4027
4177
|
getThirdPartyURL: ({ platformId, queryParams }: {
|
|
@@ -4032,28 +4182,34 @@ declare class UserApi {
|
|
|
4032
4182
|
} | undefined;
|
|
4033
4183
|
}) => Promise<IResponseWithSync<WebLinkingResponse>>;
|
|
4034
4184
|
/**
|
|
4185
|
+
* GET [/iam/v3/public/namespaces/{namespace}/agerestrictions/countries/{countryCode}](api)
|
|
4186
|
+
*
|
|
4035
4187
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
4036
4188
|
*/
|
|
4037
4189
|
getAgeRestrictionByCountry: (countryCode: string) => Promise<IResponseWithSync<CountryV3Response>>;
|
|
4038
4190
|
/**
|
|
4039
|
-
* Render 2D Avatar via readyplayer.me (https://docs.readyplayer.me/ready-player-me/avatars/2d-avatars/render-api)
|
|
4191
|
+
* Render 2D Avatar via readyplayer.me POST [](https://docs.readyplayer.me/ready-player-me/avatars/2d-avatars/render-api)
|
|
4192
|
+
* @internal
|
|
4040
4193
|
*/
|
|
4041
|
-
renderImageFromGlbModel(data: {
|
|
4194
|
+
renderImageFromGlbModel: (data: {
|
|
4042
4195
|
model: string;
|
|
4043
4196
|
scene: string;
|
|
4044
|
-
})
|
|
4197
|
+
}) => Promise<IResponse<{
|
|
4045
4198
|
renders: string[];
|
|
4046
4199
|
}>>;
|
|
4047
|
-
notifyGameSDK(url: string): Promise<IResponse<string>>;
|
|
4048
4200
|
/**
|
|
4201
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/code/request](api)
|
|
4202
|
+
*
|
|
4049
4203
|
* This method will validate the request's email address.
|
|
4050
4204
|
*
|
|
4051
4205
|
* If it already been used, will response 409.
|
|
4052
4206
|
*
|
|
4053
4207
|
* If it is available, we will send a verification code to this email address.
|
|
4054
4208
|
*/
|
|
4055
|
-
requestNewUserVerificationCode(data: SendRegisterVerificationCodeRequest)
|
|
4209
|
+
requestNewUserVerificationCode: (data: SendRegisterVerificationCodeRequest) => Promise<IResponse<unknown>>;
|
|
4056
4210
|
/**
|
|
4211
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users](api)
|
|
4212
|
+
*
|
|
4057
4213
|
* Create a new user with unique email address and username.
|
|
4058
4214
|
*
|
|
4059
4215
|
* __Required attributes:__
|
|
@@ -4070,44 +4226,55 @@ declare class UserApi {
|
|
|
4070
4226
|
* This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.
|
|
4071
4227
|
*
|
|
4072
4228
|
*/
|
|
4073
|
-
createUser(data: CreateUserRequestV4)
|
|
4229
|
+
createUser: (data: CreateUserRequestV4) => Promise<IResponse<CreateUserResponseV4>>;
|
|
4074
4230
|
/**
|
|
4231
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/distinctPlatforms](api)
|
|
4232
|
+
*
|
|
4075
4233
|
* This method retrieves platform accounts linked to user.
|
|
4076
4234
|
* It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
4077
4235
|
* Required valid user authorization.
|
|
4078
4236
|
*/
|
|
4079
|
-
getUserDistinctLinkedPlatform(userId: string)
|
|
4237
|
+
getUserDistinctLinkedPlatform: (userId: string) => Promise<IResponseWithSync<DistinctPlatformResponseV3>>;
|
|
4080
4238
|
/**
|
|
4239
|
+
* DELETE [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/all](api)
|
|
4240
|
+
*
|
|
4081
4241
|
* Required valid user authorization.
|
|
4082
4242
|
* Unlink user's account from for all third platforms.
|
|
4083
4243
|
*/
|
|
4084
|
-
unLinkAccountFromPlatformDistinct(platformId: string)
|
|
4244
|
+
unLinkAccountFromPlatformDistinct: (platformId: string) => Promise<IResponse<unknown>>;
|
|
4085
4245
|
/**
|
|
4246
|
+
* POST [/iam/v3/public/users/me/verify_link/request](api)
|
|
4247
|
+
*
|
|
4086
4248
|
* Required valid user authorization
|
|
4087
4249
|
* The verification link is sent to email address
|
|
4088
4250
|
* It will not send request if user email is already verified
|
|
4089
|
-
*
|
|
4090
4251
|
*/
|
|
4091
|
-
sendVerificationLink(languageTag: string)
|
|
4252
|
+
sendVerificationLink: (languageTag: string) => Promise<IResponse<unknown>>;
|
|
4092
4253
|
/**
|
|
4254
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms](api)
|
|
4255
|
+
*
|
|
4093
4256
|
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
4094
4257
|
* action code: 10128
|
|
4095
4258
|
*/
|
|
4096
|
-
getLinkedAccount(userId: string)
|
|
4259
|
+
getLinkedAccount: (userId: string) => Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
4097
4260
|
/**
|
|
4261
|
+
* GET [/iam/v3/public/users/me/headless/link/conflict](api)
|
|
4262
|
+
*
|
|
4098
4263
|
* Note:
|
|
4099
4264
|
* 1. My account should be full account
|
|
4100
4265
|
* 2. My account not linked to request headless account's third platform.
|
|
4101
4266
|
*/
|
|
4102
|
-
getLinkAccountByOneTimeCodeConflict(params: {
|
|
4267
|
+
getLinkAccountByOneTimeCodeConflict: (params: {
|
|
4103
4268
|
oneTimeLinkCode: string | null;
|
|
4104
|
-
})
|
|
4269
|
+
}) => Promise<IResponseWithSync<GetLinkHeadlessAccountConflictResponse>>;
|
|
4105
4270
|
/**
|
|
4271
|
+
* POST [/iam/v3/public/users/me/headless/linkWithProgression](api)
|
|
4272
|
+
*
|
|
4106
4273
|
* Note:
|
|
4107
4274
|
* 1. My account should be full account
|
|
4108
4275
|
* 2. My account not linked to headless account's third platform.
|
|
4109
4276
|
*/
|
|
4110
|
-
linkWithProgression(data: LinkHeadlessAccountRequest)
|
|
4277
|
+
linkWithProgression: (data: LinkHeadlessAccountRequest) => Promise<IResponse<unknown>>;
|
|
4111
4278
|
/**
|
|
4112
4279
|
* @internal
|
|
4113
4280
|
*/
|
|
@@ -4299,6 +4466,8 @@ declare class UserAuthorizationApi {
|
|
|
4299
4466
|
*/
|
|
4300
4467
|
constructor(conf: SDKRequestConfig, namespace: string, cache: boolean, options: UserAuthorizationOptions);
|
|
4301
4468
|
/**
|
|
4469
|
+
* POST: [/iam/v3/oauth/token](api)
|
|
4470
|
+
*
|
|
4302
4471
|
* This method supports grant type:
|
|
4303
4472
|
* - Grant Type == `authorization_code`:
|
|
4304
4473
|
* It generates the user token by given the authorization
|
|
@@ -4397,15 +4566,30 @@ declare class UserAuthorizationApi {
|
|
|
4397
4566
|
response: IDataStatus<TokenWithDeviceCookieResponseV3>;
|
|
4398
4567
|
error: null;
|
|
4399
4568
|
}>;
|
|
4569
|
+
/**
|
|
4570
|
+
* @internal
|
|
4571
|
+
*/
|
|
4400
4572
|
getMfaDataFromError: (errorResponse: AxiosResponse) => {
|
|
4401
4573
|
mfaToken: any;
|
|
4402
4574
|
factors: any;
|
|
4403
4575
|
defaultFactor: any;
|
|
4404
4576
|
email: any;
|
|
4405
4577
|
} | undefined;
|
|
4578
|
+
/**
|
|
4579
|
+
* @internal
|
|
4580
|
+
*/
|
|
4406
4581
|
getMfaDataFromStorage: () => any;
|
|
4582
|
+
/**
|
|
4583
|
+
* @internal
|
|
4584
|
+
*/
|
|
4407
4585
|
removeMfaDataFromStorage: () => void;
|
|
4408
|
-
|
|
4586
|
+
/**
|
|
4587
|
+
* @internal
|
|
4588
|
+
*/
|
|
4589
|
+
matchReceivedState: (maybeSentState: string) => MatchReceivedStateResult;
|
|
4590
|
+
/**
|
|
4591
|
+
* @internal
|
|
4592
|
+
*/
|
|
4409
4593
|
deduceLoginError: (error: string) => LoginErrorCancelled | LoginErrorExpired | LoginErrorUnknown;
|
|
4410
4594
|
exchangeAuthorizationCode: ({ code, error, state }: {
|
|
4411
4595
|
code?: string | null | undefined;
|
|
@@ -4421,13 +4605,32 @@ declare class UserAuthorizationApi {
|
|
|
4421
4605
|
} | undefined;
|
|
4422
4606
|
returnPath: any;
|
|
4423
4607
|
} | null>;
|
|
4608
|
+
/**
|
|
4609
|
+
* GET [/iam/v3/oauth/authorize](api)
|
|
4610
|
+
*
|
|
4611
|
+
* Creates a URL to be used for Login, Register, Link to existing account or Twitch Link
|
|
4612
|
+
*/
|
|
4424
4613
|
createLoginURL: (returnPath?: string | null | undefined, targetAuthPage?: string | undefined, oneTimeLinkCode?: string | undefined) => string;
|
|
4614
|
+
/**
|
|
4615
|
+
* GET [/iam/v3/oauth/authorize](api)
|
|
4616
|
+
*
|
|
4617
|
+
* Creates a URL to be used for password recovery
|
|
4618
|
+
*/
|
|
4425
4619
|
createForgotPasswordURL: () => string;
|
|
4620
|
+
/**
|
|
4621
|
+
* @internal
|
|
4622
|
+
*/
|
|
4426
4623
|
getCodeChallenge: () => {
|
|
4427
4624
|
verifier: string;
|
|
4428
4625
|
challenge: string;
|
|
4429
4626
|
};
|
|
4627
|
+
/**
|
|
4628
|
+
* @internal
|
|
4629
|
+
*/
|
|
4430
4630
|
refreshToken: () => Promise<Partial<TokenWithDeviceCookieResponseV3> | false>;
|
|
4631
|
+
/**
|
|
4632
|
+
* @internal
|
|
4633
|
+
*/
|
|
4431
4634
|
private getSearchParams;
|
|
4432
4635
|
}
|
|
4433
4636
|
|
|
@@ -4462,20 +4665,29 @@ declare class AgreementApi {
|
|
|
4462
4665
|
*/
|
|
4463
4666
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4464
4667
|
/**
|
|
4668
|
+
* POST [/agreement/public/agreements/policies](api)
|
|
4669
|
+
*
|
|
4465
4670
|
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement.
|
|
4466
|
-
*
|
|
4671
|
+
*
|
|
4672
|
+
* _Required permission_: login user
|
|
4467
4673
|
*/
|
|
4468
|
-
acceptLegalPolicies(acceptAgreements: AcceptAgreementRequest[])
|
|
4674
|
+
acceptLegalPolicies: (acceptAgreements: AcceptAgreementRequest[]) => Promise<IResponse<AcceptAgreementResponse>>;
|
|
4469
4675
|
/**
|
|
4676
|
+
* GET [/agreement/public/agreements/policies](api)
|
|
4677
|
+
*
|
|
4470
4678
|
* Retrieve accepted Legal Agreements.
|
|
4471
|
-
*
|
|
4679
|
+
*
|
|
4680
|
+
* _Required permission_: login user
|
|
4472
4681
|
*/
|
|
4473
|
-
getAgreements()
|
|
4682
|
+
getAgreements: () => Promise<IResponseWithSync<RetrieveAcceptedAgreementResponseArray>>;
|
|
4474
4683
|
/**
|
|
4475
|
-
*
|
|
4476
|
-
*
|
|
4684
|
+
* PATCH [/agreement/public/agreements/localized-policy-versions/preferences](api)
|
|
4685
|
+
*
|
|
4686
|
+
* Change marketing preference consent
|
|
4687
|
+
*
|
|
4688
|
+
* _Required permission_: login user
|
|
4477
4689
|
*/
|
|
4478
|
-
updateMarketingPreferences(acceptAgreements: AcceptAgreementRequest[])
|
|
4690
|
+
updateMarketingPreferences: (acceptAgreements: AcceptAgreementRequest[]) => Promise<IResponse<unknown>>;
|
|
4479
4691
|
private newInstance;
|
|
4480
4692
|
}
|
|
4481
4693
|
|
|
@@ -4488,10 +4700,13 @@ declare class EligibilitiesApi {
|
|
|
4488
4700
|
*/
|
|
4489
4701
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4490
4702
|
/**
|
|
4491
|
-
*
|
|
4492
|
-
*
|
|
4703
|
+
* GET [/agreement/public/eligibilities/namespaces/{namespace}](api)
|
|
4704
|
+
*
|
|
4705
|
+
* Retrieve the active policies and its conformance status by user.This process supports cross-namespace checking, that means if the active policy already accepted by the same user in other namespace, then it will be considered as eligible.
|
|
4706
|
+
*
|
|
4707
|
+
* _Required permission_: login user
|
|
4493
4708
|
*/
|
|
4494
|
-
getUserEligibilities()
|
|
4709
|
+
getUserEligibilities: () => Promise<IResponseWithSync<RetrieveUserEligibilitiesResponseArray>>;
|
|
4495
4710
|
private newInstance;
|
|
4496
4711
|
}
|
|
4497
4712
|
|
|
@@ -4504,9 +4719,11 @@ declare class LocalizedPolicyVersionsApi {
|
|
|
4504
4719
|
*/
|
|
4505
4720
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4506
4721
|
/**
|
|
4507
|
-
*
|
|
4722
|
+
* GET [/agreement/public/localized-policy-versions/{localizedPolicyVersionId}](api)
|
|
4723
|
+
*
|
|
4724
|
+
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located.
|
|
4508
4725
|
*/
|
|
4509
|
-
fetchLocalizedPolicyVersionById(localizedPolicyVersionId: string)
|
|
4726
|
+
fetchLocalizedPolicyVersionById: (localizedPolicyVersionId: string) => Promise<IResponseWithSync<RetrieveLocalizedPolicyVersionPublicResponse>>;
|
|
4510
4727
|
private newInstance;
|
|
4511
4728
|
}
|
|
4512
4729
|
|
|
@@ -4763,7 +4980,9 @@ declare class PoliciesApi {
|
|
|
4763
4980
|
*/
|
|
4764
4981
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4765
4982
|
/**
|
|
4766
|
-
*
|
|
4983
|
+
* GET [/agreement/public/policies/namespaces/{namespace}/countries/{countryCode}](api)
|
|
4984
|
+
*
|
|
4985
|
+
* Retrieve all active latest policies based on a namespace and country.
|
|
4767
4986
|
*
|
|
4768
4987
|
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
4769
4988
|
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
@@ -4777,22 +4996,22 @@ declare class PoliciesApi {
|
|
|
4777
4996
|
* - Query: alwaysIncludeDefault: true
|
|
4778
4997
|
* - Response: Document 1 (UA), Document 2 (US), Document 3 (US)
|
|
4779
4998
|
*/
|
|
4780
|
-
fetchPoliciesByCountry({ countryCode, queryParams }: {
|
|
4999
|
+
fetchPoliciesByCountry: ({ countryCode, queryParams }: {
|
|
4781
5000
|
countryCode: string;
|
|
4782
5001
|
queryParams: Parameters<Policies$['fetchPublicPoliciesNamespacesByNamespaceCountriesByCountrycode']>[1];
|
|
4783
|
-
})
|
|
5002
|
+
}) => Promise<IResponseWithSync<RetrievePolicyPublicResponseArray>>;
|
|
4784
5003
|
/**
|
|
4785
|
-
*
|
|
4786
|
-
* Other detail info:
|
|
5004
|
+
* GET [/agreement/public/policies/countries/{countryCode}](api)
|
|
4787
5005
|
*
|
|
5006
|
+
* Retrieve all active latest policies based on country from all namespaces.
|
|
4788
5007
|
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
4789
5008
|
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
4790
5009
|
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
4791
5010
|
*/
|
|
4792
|
-
fetchAllPoliciesByCountry({ countryCode, queryParams }: {
|
|
5011
|
+
fetchAllPoliciesByCountry: ({ countryCode, queryParams }: {
|
|
4793
5012
|
countryCode: string;
|
|
4794
5013
|
queryParams?: Parameters<Policies$['fetchPublicPoliciesCountriesByCountrycode']>[1];
|
|
4795
|
-
})
|
|
5014
|
+
}) => Promise<IResponseWithSync<RetrievePolicyPublicResponseArray>>;
|
|
4796
5015
|
private newInstance;
|
|
4797
5016
|
}
|
|
4798
5017
|
|
|
@@ -7648,8 +7867,17 @@ declare class PublicTemplateApi<ConfigKeysEnum extends string> {
|
|
|
7648
7867
|
private readonly namespace;
|
|
7649
7868
|
private cache;
|
|
7650
7869
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
7870
|
+
/**
|
|
7871
|
+
* @internal
|
|
7872
|
+
*/
|
|
7651
7873
|
getTemplateConfigs: (template: string) => Promise<IResponseWithSync<Configs>>;
|
|
7874
|
+
/**
|
|
7875
|
+
* @internal
|
|
7876
|
+
*/
|
|
7652
7877
|
getTemplateConfig: (template: string, configId: ConfigKeysEnum) => Promise<IResponseWithSync<Config>>;
|
|
7878
|
+
/**
|
|
7879
|
+
* @internal
|
|
7880
|
+
*/
|
|
7653
7881
|
getDiscoveryTemplateConfigs: () => Promise<IResponseWithSync<DiscoveryConfigData>>;
|
|
7654
7882
|
private newInstance;
|
|
7655
7883
|
}
|
|
@@ -7694,12 +7922,17 @@ declare class CurrencyApi {
|
|
|
7694
7922
|
*/
|
|
7695
7923
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
7696
7924
|
/**
|
|
7925
|
+
* GET [/platform/public/namespaces/{namespace}/currencies](api)
|
|
7926
|
+
*
|
|
7697
7927
|
* List currencies of a namespace.
|
|
7928
|
+
*
|
|
7698
7929
|
* Returns: Currency List
|
|
7699
7930
|
*/
|
|
7700
7931
|
getCurrencies: () => Promise<IResponseWithSync<CurrencyInfoArray>>;
|
|
7701
7932
|
/**
|
|
7702
7933
|
* Get the currencies list and convert into a map of currency code and the currency itself
|
|
7934
|
+
*
|
|
7935
|
+
* @internal
|
|
7703
7936
|
*/
|
|
7704
7937
|
getCurrencyMap: () => Promise<{
|
|
7705
7938
|
response: null;
|
|
@@ -11202,49 +11435,51 @@ declare class EntitlementApi {
|
|
|
11202
11435
|
*/
|
|
11203
11436
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11204
11437
|
/**
|
|
11438
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppId](api)
|
|
11439
|
+
*
|
|
11205
11440
|
* Get user app entitlement by appId.
|
|
11206
11441
|
*/
|
|
11207
|
-
getEntitlementByAppId({ userId, appId }: {
|
|
11442
|
+
getEntitlementByAppId: ({ userId, appId }: {
|
|
11208
11443
|
userId: string;
|
|
11209
11444
|
appId: string;
|
|
11210
|
-
})
|
|
11445
|
+
}) => Promise<IResponseWithSync<AppEntitlementInfo>>;
|
|
11211
11446
|
/**
|
|
11212
11447
|
* Query user entitlements for a specific user.
|
|
11213
11448
|
* Returns: entitlement list
|
|
11214
11449
|
*/
|
|
11215
|
-
getEntitlements({ userId, queryParams }: {
|
|
11450
|
+
getEntitlements: ({ userId, queryParams }: {
|
|
11216
11451
|
userId: string;
|
|
11217
11452
|
queryParams: Parameters<Entitlement$['fetchNsUsersByUseridEntitlements']>[1];
|
|
11218
|
-
})
|
|
11453
|
+
}) => Promise<IResponseWithSync<EntitlementPagingSlicedResult>>;
|
|
11219
11454
|
/**
|
|
11220
11455
|
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
11221
11456
|
*/
|
|
11222
|
-
getEntitlementOwnerShip({ userId, queryParams }: {
|
|
11457
|
+
getEntitlementOwnerShip: ({ userId, queryParams }: {
|
|
11223
11458
|
userId: string;
|
|
11224
11459
|
queryParams: {
|
|
11225
11460
|
itemIds?: string[];
|
|
11226
11461
|
appIds?: string[];
|
|
11227
11462
|
skus?: string[];
|
|
11228
11463
|
};
|
|
11229
|
-
})
|
|
11464
|
+
}) => Promise<IResponseWithSync<Ownership>>;
|
|
11230
11465
|
/**
|
|
11231
11466
|
* Get user entitlement ownership by itemIds.
|
|
11232
11467
|
*/
|
|
11233
|
-
getEntitlementByItemIds({ userId, queryParams }: {
|
|
11468
|
+
getEntitlementByItemIds: ({ userId, queryParams }: {
|
|
11234
11469
|
userId: string;
|
|
11235
11470
|
queryParams?: {
|
|
11236
|
-
ids?: string[];
|
|
11237
|
-
};
|
|
11238
|
-
})
|
|
11471
|
+
ids?: string[] | undefined;
|
|
11472
|
+
} | undefined;
|
|
11473
|
+
}) => Promise<IResponseWithSync<EntitlementOwnershipArray>>;
|
|
11239
11474
|
/**
|
|
11240
11475
|
* Consume user entitlement. If the entitlement useCount is 0, the status will be CONSUMED. Client should pass item id in options if entitlement clazz is OPTIONBOX
|
|
11241
11476
|
* Returns: consumed entitlement
|
|
11242
11477
|
*/
|
|
11243
|
-
claimEntitlement({ userId, entitlementId, data }: {
|
|
11478
|
+
claimEntitlement: ({ userId, entitlementId, data }: {
|
|
11244
11479
|
userId: string;
|
|
11245
11480
|
entitlementId: string;
|
|
11246
11481
|
data: EntitlementDecrement;
|
|
11247
|
-
})
|
|
11482
|
+
}) => Promise<IResponse<EntitlementDecrementResult>>;
|
|
11248
11483
|
private newInstance;
|
|
11249
11484
|
}
|
|
11250
11485
|
|
|
@@ -11273,7 +11508,10 @@ declare class FulfillmentApi {
|
|
|
11273
11508
|
*/
|
|
11274
11509
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11275
11510
|
/**
|
|
11276
|
-
*
|
|
11511
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/fulfillment/code](api)
|
|
11512
|
+
*
|
|
11513
|
+
* Redeem campaign code
|
|
11514
|
+
*
|
|
11277
11515
|
* Returns: fulfillment result
|
|
11278
11516
|
*/
|
|
11279
11517
|
redeemCode: ({ userId, data }: {
|
|
@@ -11283,614 +11521,98 @@ declare class FulfillmentApi {
|
|
|
11283
11521
|
private newInstance;
|
|
11284
11522
|
}
|
|
11285
11523
|
|
|
11286
|
-
declare const
|
|
11287
|
-
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
|
|
11291
|
-
|
|
11292
|
-
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
11298
|
-
|
|
11299
|
-
|
|
11300
|
-
|
|
11301
|
-
|
|
11302
|
-
|
|
11303
|
-
|
|
11304
|
-
|
|
11305
|
-
|
|
11306
|
-
|
|
11307
|
-
|
|
11308
|
-
|
|
11309
|
-
|
|
11310
|
-
|
|
11311
|
-
|
|
11312
|
-
|
|
11313
|
-
|
|
11314
|
-
|
|
11315
|
-
|
|
11316
|
-
|
|
11317
|
-
as?: string | null | undefined;
|
|
11318
|
-
caption?: string | null | undefined;
|
|
11319
|
-
height: number;
|
|
11320
|
-
width: number;
|
|
11321
|
-
imageUrl: string;
|
|
11322
|
-
smallImageUrl: string;
|
|
11323
|
-
}, {
|
|
11324
|
-
as?: string | null | undefined;
|
|
11325
|
-
caption?: string | null | undefined;
|
|
11326
|
-
height: number;
|
|
11327
|
-
width: number;
|
|
11328
|
-
imageUrl: string;
|
|
11329
|
-
smallImageUrl: string;
|
|
11330
|
-
}>, "many">>>;
|
|
11331
|
-
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11332
|
-
regionData: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11333
|
-
price: z.ZodNumber;
|
|
11334
|
-
discountPercentage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11335
|
-
discountAmount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11336
|
-
discountedPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11337
|
-
currencyCode: z.ZodString;
|
|
11338
|
-
currencyType: z.ZodEnum<["REAL", "VIRTUAL"]>;
|
|
11339
|
-
currencyNamespace: z.ZodString;
|
|
11340
|
-
trialPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11341
|
-
purchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11342
|
-
expireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11343
|
-
discountPurchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11344
|
-
discountExpireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11345
|
-
}, "strip", z.ZodTypeAny, {
|
|
11346
|
-
discountPercentage?: number | null | undefined;
|
|
11347
|
-
discountAmount?: number | null | undefined;
|
|
11348
|
-
discountedPrice?: number | null | undefined;
|
|
11349
|
-
trialPrice?: number | null | undefined;
|
|
11350
|
-
purchaseAt?: string | null | undefined;
|
|
11351
|
-
expireAt?: string | null | undefined;
|
|
11352
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11353
|
-
discountExpireAt?: string | null | undefined;
|
|
11354
|
-
currencyCode: string;
|
|
11355
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11356
|
-
price: number;
|
|
11357
|
-
currencyNamespace: string;
|
|
11358
|
-
}, {
|
|
11359
|
-
discountPercentage?: number | null | undefined;
|
|
11360
|
-
discountAmount?: number | null | undefined;
|
|
11361
|
-
discountedPrice?: number | null | undefined;
|
|
11362
|
-
trialPrice?: number | null | undefined;
|
|
11363
|
-
purchaseAt?: string | null | undefined;
|
|
11364
|
-
expireAt?: string | null | undefined;
|
|
11365
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11366
|
-
discountExpireAt?: string | null | undefined;
|
|
11367
|
-
currencyCode: string;
|
|
11368
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11369
|
-
price: number;
|
|
11370
|
-
currencyNamespace: string;
|
|
11371
|
-
}>, "many">>>;
|
|
11372
|
-
recurring: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11373
|
-
cycle: z.ZodEnum<["WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"]>;
|
|
11374
|
-
fixedFreeDays: z.ZodNumber;
|
|
11375
|
-
fixedTrialCycles: z.ZodNumber;
|
|
11376
|
-
graceDays: z.ZodNumber;
|
|
11377
|
-
}, "strip", z.ZodTypeAny, {
|
|
11378
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11379
|
-
fixedFreeDays: number;
|
|
11380
|
-
fixedTrialCycles: number;
|
|
11381
|
-
graceDays: number;
|
|
11382
|
-
}, {
|
|
11383
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11384
|
-
fixedFreeDays: number;
|
|
11385
|
-
fixedTrialCycles: number;
|
|
11386
|
-
graceDays: number;
|
|
11387
|
-
}>>>;
|
|
11388
|
-
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11389
|
-
itemQty: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
11390
|
-
boundItemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11391
|
-
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11392
|
-
features: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11393
|
-
maxCountPerUser: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11394
|
-
maxCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11395
|
-
clazz: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11396
|
-
boothName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11397
|
-
displayOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11398
|
-
ext: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11399
|
-
region: z.ZodString;
|
|
11400
|
-
language: z.ZodString;
|
|
11401
|
-
createdAt: z.ZodString;
|
|
11402
|
-
updatedAt: z.ZodString;
|
|
11403
|
-
purchaseCondition: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11404
|
-
conditionGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11405
|
-
predicates: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11406
|
-
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11407
|
-
predicateType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["EntitlementPredicate", "SeasonPassPredicate", "SeasonTierPredicate"]>>>;
|
|
11408
|
-
comparison: z.ZodNullable<z.ZodOptional<z.ZodEnum<["is", "isNot", "isGreaterThan", "isGreaterThanOrEqual", "isLessThan", "isLessThanOrEqual", "includes", "excludes"]>>>;
|
|
11409
|
-
anyOf: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11410
|
-
values: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11411
|
-
value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11412
|
-
}, "strip", z.ZodTypeAny, {
|
|
11413
|
-
name?: string | null | undefined;
|
|
11414
|
-
values?: string[] | null | undefined;
|
|
11415
|
-
value?: string | null | undefined;
|
|
11416
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11417
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11418
|
-
anyOf?: number | null | undefined;
|
|
11419
|
-
}, {
|
|
11420
|
-
name?: string | null | undefined;
|
|
11421
|
-
values?: string[] | null | undefined;
|
|
11422
|
-
value?: string | null | undefined;
|
|
11423
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11424
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11425
|
-
anyOf?: number | null | undefined;
|
|
11426
|
-
}>, "many">>>;
|
|
11427
|
-
operator: z.ZodNullable<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
11524
|
+
declare const ItemPagingSlicedResult: z.ZodObject<{
|
|
11525
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11526
|
+
title: z.ZodString;
|
|
11527
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11528
|
+
longDescription: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11529
|
+
itemId: z.ZodString;
|
|
11530
|
+
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11531
|
+
appType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["GAME", "SOFTWARE", "DLC", "DEMO"]>>>;
|
|
11532
|
+
seasonType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PASS", "TIER"]>>>;
|
|
11533
|
+
baseAppId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11534
|
+
sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11535
|
+
namespace: z.ZodString;
|
|
11536
|
+
name: z.ZodString;
|
|
11537
|
+
entitlementType: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
11538
|
+
useCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11539
|
+
stackable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11540
|
+
categoryPath: z.ZodString;
|
|
11541
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
|
|
11542
|
+
listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11543
|
+
purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11544
|
+
itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
|
|
11545
|
+
targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11546
|
+
targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11547
|
+
targetItemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11548
|
+
images: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11549
|
+
as: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11550
|
+
caption: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11551
|
+
height: z.ZodNumber;
|
|
11552
|
+
width: z.ZodNumber;
|
|
11553
|
+
imageUrl: z.ZodString;
|
|
11554
|
+
smallImageUrl: z.ZodString;
|
|
11428
11555
|
}, "strip", z.ZodTypeAny, {
|
|
11429
|
-
|
|
11430
|
-
|
|
11431
|
-
|
|
11432
|
-
|
|
11433
|
-
|
|
11434
|
-
|
|
11435
|
-
anyOf?: number | null | undefined;
|
|
11436
|
-
}[] | null | undefined;
|
|
11437
|
-
operator?: "and" | "or" | null | undefined;
|
|
11556
|
+
as?: string | null | undefined;
|
|
11557
|
+
caption?: string | null | undefined;
|
|
11558
|
+
height: number;
|
|
11559
|
+
width: number;
|
|
11560
|
+
imageUrl: string;
|
|
11561
|
+
smallImageUrl: string;
|
|
11438
11562
|
}, {
|
|
11439
|
-
|
|
11440
|
-
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
anyOf?: number | null | undefined;
|
|
11446
|
-
}[] | null | undefined;
|
|
11447
|
-
operator?: "and" | "or" | null | undefined;
|
|
11563
|
+
as?: string | null | undefined;
|
|
11564
|
+
caption?: string | null | undefined;
|
|
11565
|
+
height: number;
|
|
11566
|
+
width: number;
|
|
11567
|
+
imageUrl: string;
|
|
11568
|
+
smallImageUrl: string;
|
|
11448
11569
|
}>, "many">>>;
|
|
11449
|
-
|
|
11450
|
-
|
|
11451
|
-
|
|
11452
|
-
|
|
11453
|
-
|
|
11454
|
-
|
|
11455
|
-
|
|
11456
|
-
|
|
11457
|
-
|
|
11458
|
-
|
|
11459
|
-
|
|
11460
|
-
|
|
11461
|
-
|
|
11462
|
-
|
|
11463
|
-
predicates?: {
|
|
11464
|
-
name?: string | null | undefined;
|
|
11465
|
-
values?: string[] | null | undefined;
|
|
11466
|
-
value?: string | null | undefined;
|
|
11467
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11468
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11469
|
-
anyOf?: number | null | undefined;
|
|
11470
|
-
}[] | null | undefined;
|
|
11471
|
-
operator?: "and" | "or" | null | undefined;
|
|
11472
|
-
}[] | null | undefined;
|
|
11473
|
-
}>>>;
|
|
11474
|
-
optionBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11475
|
-
boxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11476
|
-
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11477
|
-
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11478
|
-
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11479
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11570
|
+
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11571
|
+
regionData: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11572
|
+
price: z.ZodNumber;
|
|
11573
|
+
discountPercentage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11574
|
+
discountAmount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11575
|
+
discountedPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11576
|
+
currencyCode: z.ZodString;
|
|
11577
|
+
currencyType: z.ZodEnum<["REAL", "VIRTUAL"]>;
|
|
11578
|
+
currencyNamespace: z.ZodString;
|
|
11579
|
+
trialPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11580
|
+
purchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11581
|
+
expireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11582
|
+
discountPurchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11583
|
+
discountExpireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11480
11584
|
}, "strip", z.ZodTypeAny, {
|
|
11481
|
-
|
|
11482
|
-
|
|
11483
|
-
|
|
11484
|
-
|
|
11585
|
+
discountPercentage?: number | null | undefined;
|
|
11586
|
+
discountAmount?: number | null | undefined;
|
|
11587
|
+
discountedPrice?: number | null | undefined;
|
|
11588
|
+
trialPrice?: number | null | undefined;
|
|
11589
|
+
purchaseAt?: string | null | undefined;
|
|
11590
|
+
expireAt?: string | null | undefined;
|
|
11591
|
+
discountPurchaseAt?: string | null | undefined;
|
|
11592
|
+
discountExpireAt?: string | null | undefined;
|
|
11593
|
+
currencyCode: string;
|
|
11594
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
11595
|
+
price: number;
|
|
11596
|
+
currencyNamespace: string;
|
|
11485
11597
|
}, {
|
|
11486
|
-
|
|
11487
|
-
|
|
11488
|
-
|
|
11489
|
-
|
|
11598
|
+
discountPercentage?: number | null | undefined;
|
|
11599
|
+
discountAmount?: number | null | undefined;
|
|
11600
|
+
discountedPrice?: number | null | undefined;
|
|
11601
|
+
trialPrice?: number | null | undefined;
|
|
11602
|
+
purchaseAt?: string | null | undefined;
|
|
11603
|
+
expireAt?: string | null | undefined;
|
|
11604
|
+
discountPurchaseAt?: string | null | undefined;
|
|
11605
|
+
discountExpireAt?: string | null | undefined;
|
|
11606
|
+
currencyCode: string;
|
|
11607
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
11608
|
+
price: number;
|
|
11609
|
+
currencyNamespace: string;
|
|
11490
11610
|
}>, "many">>>;
|
|
11491
|
-
|
|
11492
|
-
|
|
11493
|
-
|
|
11494
|
-
|
|
11495
|
-
|
|
11496
|
-
count?: number | null | undefined;
|
|
11497
|
-
}[] | null | undefined;
|
|
11498
|
-
}, {
|
|
11499
|
-
boxItems?: {
|
|
11500
|
-
itemId?: string | null | undefined;
|
|
11501
|
-
itemSku?: string | null | undefined;
|
|
11502
|
-
itemType?: string | null | undefined;
|
|
11503
|
-
count?: number | null | undefined;
|
|
11504
|
-
}[] | null | undefined;
|
|
11505
|
-
}>>>;
|
|
11506
|
-
lootBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11507
|
-
rewardCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11508
|
-
rewards: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11509
|
-
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11510
|
-
type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["REWARD", "REWARD_GROUP", "PROBABILITY_GROUP"]>>>;
|
|
11511
|
-
lootBoxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11512
|
-
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11513
|
-
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11514
|
-
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11515
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11516
|
-
}, "strip", z.ZodTypeAny, {
|
|
11517
|
-
itemId?: string | null | undefined;
|
|
11518
|
-
itemSku?: string | null | undefined;
|
|
11519
|
-
itemType?: string | null | undefined;
|
|
11520
|
-
count?: number | null | undefined;
|
|
11521
|
-
}, {
|
|
11522
|
-
itemId?: string | null | undefined;
|
|
11523
|
-
itemSku?: string | null | undefined;
|
|
11524
|
-
itemType?: string | null | undefined;
|
|
11525
|
-
count?: number | null | undefined;
|
|
11526
|
-
}>, "many">>>;
|
|
11527
|
-
weight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11528
|
-
odds: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11529
|
-
}, "strip", z.ZodTypeAny, {
|
|
11530
|
-
name?: string | null | undefined;
|
|
11531
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11532
|
-
lootBoxItems?: {
|
|
11533
|
-
itemId?: string | null | undefined;
|
|
11534
|
-
itemSku?: string | null | undefined;
|
|
11535
|
-
itemType?: string | null | undefined;
|
|
11536
|
-
count?: number | null | undefined;
|
|
11537
|
-
}[] | null | undefined;
|
|
11538
|
-
weight?: number | null | undefined;
|
|
11539
|
-
odds?: number | null | undefined;
|
|
11540
|
-
}, {
|
|
11541
|
-
name?: string | null | undefined;
|
|
11542
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11543
|
-
lootBoxItems?: {
|
|
11544
|
-
itemId?: string | null | undefined;
|
|
11545
|
-
itemSku?: string | null | undefined;
|
|
11546
|
-
itemType?: string | null | undefined;
|
|
11547
|
-
count?: number | null | undefined;
|
|
11548
|
-
}[] | null | undefined;
|
|
11549
|
-
weight?: number | null | undefined;
|
|
11550
|
-
odds?: number | null | undefined;
|
|
11551
|
-
}>, "many">>>;
|
|
11552
|
-
rollFunction: z.ZodNullable<z.ZodOptional<z.ZodEnum<["DEFAULT", "CUSTOM"]>>>;
|
|
11553
|
-
}, "strip", z.ZodTypeAny, {
|
|
11554
|
-
rewardCount?: number | null | undefined;
|
|
11555
|
-
rewards?: {
|
|
11556
|
-
name?: string | null | undefined;
|
|
11557
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11558
|
-
lootBoxItems?: {
|
|
11559
|
-
itemId?: string | null | undefined;
|
|
11560
|
-
itemSku?: string | null | undefined;
|
|
11561
|
-
itemType?: string | null | undefined;
|
|
11562
|
-
count?: number | null | undefined;
|
|
11563
|
-
}[] | null | undefined;
|
|
11564
|
-
weight?: number | null | undefined;
|
|
11565
|
-
odds?: number | null | undefined;
|
|
11566
|
-
}[] | null | undefined;
|
|
11567
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11568
|
-
}, {
|
|
11569
|
-
rewardCount?: number | null | undefined;
|
|
11570
|
-
rewards?: {
|
|
11571
|
-
name?: string | null | undefined;
|
|
11572
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11573
|
-
lootBoxItems?: {
|
|
11574
|
-
itemId?: string | null | undefined;
|
|
11575
|
-
itemSku?: string | null | undefined;
|
|
11576
|
-
itemType?: string | null | undefined;
|
|
11577
|
-
count?: number | null | undefined;
|
|
11578
|
-
}[] | null | undefined;
|
|
11579
|
-
weight?: number | null | undefined;
|
|
11580
|
-
odds?: number | null | undefined;
|
|
11581
|
-
}[] | null | undefined;
|
|
11582
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11583
|
-
}>>>;
|
|
11584
|
-
fresh: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11585
|
-
localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11586
|
-
}, "strip", z.ZodTypeAny, {
|
|
11587
|
-
appId?: string | null | undefined;
|
|
11588
|
-
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
11589
|
-
description?: string | null | undefined;
|
|
11590
|
-
ext?: Record<string, any> | null | undefined;
|
|
11591
|
-
tags?: string[] | null | undefined;
|
|
11592
|
-
images?: {
|
|
11593
|
-
as?: string | null | undefined;
|
|
11594
|
-
caption?: string | null | undefined;
|
|
11595
|
-
height: number;
|
|
11596
|
-
width: number;
|
|
11597
|
-
imageUrl: string;
|
|
11598
|
-
smallImageUrl: string;
|
|
11599
|
-
}[] | null | undefined;
|
|
11600
|
-
useCount?: number | null | undefined;
|
|
11601
|
-
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
11602
|
-
baseAppId?: string | null | undefined;
|
|
11603
|
-
sku?: string | null | undefined;
|
|
11604
|
-
listable?: boolean | null | undefined;
|
|
11605
|
-
purchasable?: boolean | null | undefined;
|
|
11606
|
-
stackable?: boolean | null | undefined;
|
|
11607
|
-
thumbnailUrl?: string | null | undefined;
|
|
11608
|
-
targetNamespace?: string | null | undefined;
|
|
11609
|
-
targetCurrencyCode?: string | null | undefined;
|
|
11610
|
-
targetItemId?: string | null | undefined;
|
|
11611
|
-
recurring?: {
|
|
11612
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11613
|
-
fixedFreeDays: number;
|
|
11614
|
-
fixedTrialCycles: number;
|
|
11615
|
-
graceDays: number;
|
|
11616
|
-
} | null | undefined;
|
|
11617
|
-
itemIds?: string[] | null | undefined;
|
|
11618
|
-
itemQty?: Record<string, number> | null | undefined;
|
|
11619
|
-
features?: string[] | null | undefined;
|
|
11620
|
-
maxCountPerUser?: number | null | undefined;
|
|
11621
|
-
maxCount?: number | null | undefined;
|
|
11622
|
-
boothName?: string | null | undefined;
|
|
11623
|
-
optionBoxConfig?: {
|
|
11624
|
-
boxItems?: {
|
|
11625
|
-
itemId?: string | null | undefined;
|
|
11626
|
-
itemSku?: string | null | undefined;
|
|
11627
|
-
itemType?: string | null | undefined;
|
|
11628
|
-
count?: number | null | undefined;
|
|
11629
|
-
}[] | null | undefined;
|
|
11630
|
-
} | null | undefined;
|
|
11631
|
-
lootBoxConfig?: {
|
|
11632
|
-
rewardCount?: number | null | undefined;
|
|
11633
|
-
rewards?: {
|
|
11634
|
-
name?: string | null | undefined;
|
|
11635
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11636
|
-
lootBoxItems?: {
|
|
11637
|
-
itemId?: string | null | undefined;
|
|
11638
|
-
itemSku?: string | null | undefined;
|
|
11639
|
-
itemType?: string | null | undefined;
|
|
11640
|
-
count?: number | null | undefined;
|
|
11641
|
-
}[] | null | undefined;
|
|
11642
|
-
weight?: number | null | undefined;
|
|
11643
|
-
odds?: number | null | undefined;
|
|
11644
|
-
}[] | null | undefined;
|
|
11645
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11646
|
-
} | null | undefined;
|
|
11647
|
-
clazz?: string | null | undefined;
|
|
11648
|
-
longDescription?: string | null | undefined;
|
|
11649
|
-
regionData?: {
|
|
11650
|
-
discountPercentage?: number | null | undefined;
|
|
11651
|
-
discountAmount?: number | null | undefined;
|
|
11652
|
-
discountedPrice?: number | null | undefined;
|
|
11653
|
-
trialPrice?: number | null | undefined;
|
|
11654
|
-
purchaseAt?: string | null | undefined;
|
|
11655
|
-
expireAt?: string | null | undefined;
|
|
11656
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11657
|
-
discountExpireAt?: string | null | undefined;
|
|
11658
|
-
currencyCode: string;
|
|
11659
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11660
|
-
price: number;
|
|
11661
|
-
currencyNamespace: string;
|
|
11662
|
-
}[] | null | undefined;
|
|
11663
|
-
boundItemIds?: string[] | null | undefined;
|
|
11664
|
-
displayOrder?: number | null | undefined;
|
|
11665
|
-
purchaseCondition?: {
|
|
11666
|
-
conditionGroups?: {
|
|
11667
|
-
predicates?: {
|
|
11668
|
-
name?: string | null | undefined;
|
|
11669
|
-
values?: string[] | null | undefined;
|
|
11670
|
-
value?: string | null | undefined;
|
|
11671
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11672
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11673
|
-
anyOf?: number | null | undefined;
|
|
11674
|
-
}[] | null | undefined;
|
|
11675
|
-
operator?: "and" | "or" | null | undefined;
|
|
11676
|
-
}[] | null | undefined;
|
|
11677
|
-
} | null | undefined;
|
|
11678
|
-
fresh?: boolean | null | undefined;
|
|
11679
|
-
localExt?: Record<string, any> | null | undefined;
|
|
11680
|
-
name: string;
|
|
11681
|
-
status: "ACTIVE" | "INACTIVE";
|
|
11682
|
-
namespace: string;
|
|
11683
|
-
createdAt: string;
|
|
11684
|
-
updatedAt: string;
|
|
11685
|
-
language: string;
|
|
11686
|
-
title: string;
|
|
11687
|
-
itemId: string;
|
|
11688
|
-
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
11689
|
-
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
11690
|
-
region: string;
|
|
11691
|
-
categoryPath: string;
|
|
11692
|
-
}, {
|
|
11693
|
-
appId?: string | null | undefined;
|
|
11694
|
-
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
11695
|
-
description?: string | null | undefined;
|
|
11696
|
-
ext?: Record<string, any> | null | undefined;
|
|
11697
|
-
tags?: string[] | null | undefined;
|
|
11698
|
-
images?: {
|
|
11699
|
-
as?: string | null | undefined;
|
|
11700
|
-
caption?: string | null | undefined;
|
|
11701
|
-
height: number;
|
|
11702
|
-
width: number;
|
|
11703
|
-
imageUrl: string;
|
|
11704
|
-
smallImageUrl: string;
|
|
11705
|
-
}[] | null | undefined;
|
|
11706
|
-
useCount?: number | null | undefined;
|
|
11707
|
-
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
11708
|
-
baseAppId?: string | null | undefined;
|
|
11709
|
-
sku?: string | null | undefined;
|
|
11710
|
-
listable?: boolean | null | undefined;
|
|
11711
|
-
purchasable?: boolean | null | undefined;
|
|
11712
|
-
stackable?: boolean | null | undefined;
|
|
11713
|
-
thumbnailUrl?: string | null | undefined;
|
|
11714
|
-
targetNamespace?: string | null | undefined;
|
|
11715
|
-
targetCurrencyCode?: string | null | undefined;
|
|
11716
|
-
targetItemId?: string | null | undefined;
|
|
11717
|
-
recurring?: {
|
|
11718
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11719
|
-
fixedFreeDays: number;
|
|
11720
|
-
fixedTrialCycles: number;
|
|
11721
|
-
graceDays: number;
|
|
11722
|
-
} | null | undefined;
|
|
11723
|
-
itemIds?: string[] | null | undefined;
|
|
11724
|
-
itemQty?: Record<string, number> | null | undefined;
|
|
11725
|
-
features?: string[] | null | undefined;
|
|
11726
|
-
maxCountPerUser?: number | null | undefined;
|
|
11727
|
-
maxCount?: number | null | undefined;
|
|
11728
|
-
boothName?: string | null | undefined;
|
|
11729
|
-
optionBoxConfig?: {
|
|
11730
|
-
boxItems?: {
|
|
11731
|
-
itemId?: string | null | undefined;
|
|
11732
|
-
itemSku?: string | null | undefined;
|
|
11733
|
-
itemType?: string | null | undefined;
|
|
11734
|
-
count?: number | null | undefined;
|
|
11735
|
-
}[] | null | undefined;
|
|
11736
|
-
} | null | undefined;
|
|
11737
|
-
lootBoxConfig?: {
|
|
11738
|
-
rewardCount?: number | null | undefined;
|
|
11739
|
-
rewards?: {
|
|
11740
|
-
name?: string | null | undefined;
|
|
11741
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11742
|
-
lootBoxItems?: {
|
|
11743
|
-
itemId?: string | null | undefined;
|
|
11744
|
-
itemSku?: string | null | undefined;
|
|
11745
|
-
itemType?: string | null | undefined;
|
|
11746
|
-
count?: number | null | undefined;
|
|
11747
|
-
}[] | null | undefined;
|
|
11748
|
-
weight?: number | null | undefined;
|
|
11749
|
-
odds?: number | null | undefined;
|
|
11750
|
-
}[] | null | undefined;
|
|
11751
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11752
|
-
} | null | undefined;
|
|
11753
|
-
clazz?: string | null | undefined;
|
|
11754
|
-
longDescription?: string | null | undefined;
|
|
11755
|
-
regionData?: {
|
|
11756
|
-
discountPercentage?: number | null | undefined;
|
|
11757
|
-
discountAmount?: number | null | undefined;
|
|
11758
|
-
discountedPrice?: number | null | undefined;
|
|
11759
|
-
trialPrice?: number | null | undefined;
|
|
11760
|
-
purchaseAt?: string | null | undefined;
|
|
11761
|
-
expireAt?: string | null | undefined;
|
|
11762
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11763
|
-
discountExpireAt?: string | null | undefined;
|
|
11764
|
-
currencyCode: string;
|
|
11765
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11766
|
-
price: number;
|
|
11767
|
-
currencyNamespace: string;
|
|
11768
|
-
}[] | null | undefined;
|
|
11769
|
-
boundItemIds?: string[] | null | undefined;
|
|
11770
|
-
displayOrder?: number | null | undefined;
|
|
11771
|
-
purchaseCondition?: {
|
|
11772
|
-
conditionGroups?: {
|
|
11773
|
-
predicates?: {
|
|
11774
|
-
name?: string | null | undefined;
|
|
11775
|
-
values?: string[] | null | undefined;
|
|
11776
|
-
value?: string | null | undefined;
|
|
11777
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11778
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11779
|
-
anyOf?: number | null | undefined;
|
|
11780
|
-
}[] | null | undefined;
|
|
11781
|
-
operator?: "and" | "or" | null | undefined;
|
|
11782
|
-
}[] | null | undefined;
|
|
11783
|
-
} | null | undefined;
|
|
11784
|
-
fresh?: boolean | null | undefined;
|
|
11785
|
-
localExt?: Record<string, any> | null | undefined;
|
|
11786
|
-
name: string;
|
|
11787
|
-
status: "ACTIVE" | "INACTIVE";
|
|
11788
|
-
namespace: string;
|
|
11789
|
-
createdAt: string;
|
|
11790
|
-
updatedAt: string;
|
|
11791
|
-
language: string;
|
|
11792
|
-
title: string;
|
|
11793
|
-
itemId: string;
|
|
11794
|
-
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
11795
|
-
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
11796
|
-
region: string;
|
|
11797
|
-
categoryPath: string;
|
|
11798
|
-
}>;
|
|
11799
|
-
interface ItemInfo extends z.TypeOf<typeof ItemInfo> {
|
|
11800
|
-
}
|
|
11801
|
-
|
|
11802
|
-
declare const ItemPagingSlicedResult: z.ZodObject<{
|
|
11803
|
-
data: z.ZodArray<z.ZodObject<{
|
|
11804
|
-
title: z.ZodString;
|
|
11805
|
-
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11806
|
-
longDescription: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11807
|
-
itemId: z.ZodString;
|
|
11808
|
-
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11809
|
-
appType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["GAME", "SOFTWARE", "DLC", "DEMO"]>>>;
|
|
11810
|
-
seasonType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PASS", "TIER"]>>>;
|
|
11811
|
-
baseAppId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11812
|
-
sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11813
|
-
namespace: z.ZodString;
|
|
11814
|
-
name: z.ZodString;
|
|
11815
|
-
entitlementType: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
11816
|
-
useCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11817
|
-
stackable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11818
|
-
categoryPath: z.ZodString;
|
|
11819
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
|
|
11820
|
-
listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11821
|
-
purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11822
|
-
itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
|
|
11823
|
-
targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11824
|
-
targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11825
|
-
targetItemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11826
|
-
images: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11827
|
-
as: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11828
|
-
caption: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11829
|
-
height: z.ZodNumber;
|
|
11830
|
-
width: z.ZodNumber;
|
|
11831
|
-
imageUrl: z.ZodString;
|
|
11832
|
-
smallImageUrl: z.ZodString;
|
|
11833
|
-
}, "strip", z.ZodTypeAny, {
|
|
11834
|
-
as?: string | null | undefined;
|
|
11835
|
-
caption?: string | null | undefined;
|
|
11836
|
-
height: number;
|
|
11837
|
-
width: number;
|
|
11838
|
-
imageUrl: string;
|
|
11839
|
-
smallImageUrl: string;
|
|
11840
|
-
}, {
|
|
11841
|
-
as?: string | null | undefined;
|
|
11842
|
-
caption?: string | null | undefined;
|
|
11843
|
-
height: number;
|
|
11844
|
-
width: number;
|
|
11845
|
-
imageUrl: string;
|
|
11846
|
-
smallImageUrl: string;
|
|
11847
|
-
}>, "many">>>;
|
|
11848
|
-
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11849
|
-
regionData: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11850
|
-
price: z.ZodNumber;
|
|
11851
|
-
discountPercentage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11852
|
-
discountAmount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11853
|
-
discountedPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11854
|
-
currencyCode: z.ZodString;
|
|
11855
|
-
currencyType: z.ZodEnum<["REAL", "VIRTUAL"]>;
|
|
11856
|
-
currencyNamespace: z.ZodString;
|
|
11857
|
-
trialPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11858
|
-
purchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11859
|
-
expireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11860
|
-
discountPurchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11861
|
-
discountExpireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11862
|
-
}, "strip", z.ZodTypeAny, {
|
|
11863
|
-
discountPercentage?: number | null | undefined;
|
|
11864
|
-
discountAmount?: number | null | undefined;
|
|
11865
|
-
discountedPrice?: number | null | undefined;
|
|
11866
|
-
trialPrice?: number | null | undefined;
|
|
11867
|
-
purchaseAt?: string | null | undefined;
|
|
11868
|
-
expireAt?: string | null | undefined;
|
|
11869
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11870
|
-
discountExpireAt?: string | null | undefined;
|
|
11871
|
-
currencyCode: string;
|
|
11872
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11873
|
-
price: number;
|
|
11874
|
-
currencyNamespace: string;
|
|
11875
|
-
}, {
|
|
11876
|
-
discountPercentage?: number | null | undefined;
|
|
11877
|
-
discountAmount?: number | null | undefined;
|
|
11878
|
-
discountedPrice?: number | null | undefined;
|
|
11879
|
-
trialPrice?: number | null | undefined;
|
|
11880
|
-
purchaseAt?: string | null | undefined;
|
|
11881
|
-
expireAt?: string | null | undefined;
|
|
11882
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11883
|
-
discountExpireAt?: string | null | undefined;
|
|
11884
|
-
currencyCode: string;
|
|
11885
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11886
|
-
price: number;
|
|
11887
|
-
currencyNamespace: string;
|
|
11888
|
-
}>, "many">>>;
|
|
11889
|
-
recurring: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11890
|
-
cycle: z.ZodEnum<["WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"]>;
|
|
11891
|
-
fixedFreeDays: z.ZodNumber;
|
|
11892
|
-
fixedTrialCycles: z.ZodNumber;
|
|
11893
|
-
graceDays: z.ZodNumber;
|
|
11611
|
+
recurring: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11612
|
+
cycle: z.ZodEnum<["WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"]>;
|
|
11613
|
+
fixedFreeDays: z.ZodNumber;
|
|
11614
|
+
fixedTrialCycles: z.ZodNumber;
|
|
11615
|
+
graceDays: z.ZodNumber;
|
|
11894
11616
|
}, "strip", z.ZodTypeAny, {
|
|
11895
11617
|
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11896
11618
|
fixedFreeDays: number;
|
|
@@ -12454,276 +12176,792 @@ declare const ItemPagingSlicedResult: z.ZodObject<{
|
|
|
12454
12176
|
imageUrl: string;
|
|
12455
12177
|
smallImageUrl: string;
|
|
12456
12178
|
}[] | null | undefined;
|
|
12457
|
-
useCount?: number | null | undefined;
|
|
12458
|
-
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
12459
|
-
baseAppId?: string | null | undefined;
|
|
12460
|
-
sku?: string | null | undefined;
|
|
12461
|
-
listable?: boolean | null | undefined;
|
|
12462
|
-
purchasable?: boolean | null | undefined;
|
|
12463
|
-
stackable?: boolean | null | undefined;
|
|
12464
|
-
thumbnailUrl?: string | null | undefined;
|
|
12465
|
-
targetNamespace?: string | null | undefined;
|
|
12466
|
-
targetCurrencyCode?: string | null | undefined;
|
|
12467
|
-
targetItemId?: string | null | undefined;
|
|
12468
|
-
recurring?: {
|
|
12469
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12470
|
-
fixedFreeDays: number;
|
|
12471
|
-
fixedTrialCycles: number;
|
|
12472
|
-
graceDays: number;
|
|
12473
|
-
} | null | undefined;
|
|
12474
|
-
itemIds?: string[] | null | undefined;
|
|
12475
|
-
itemQty?: Record<string, number> | null | undefined;
|
|
12476
|
-
features?: string[] | null | undefined;
|
|
12477
|
-
maxCountPerUser?: number | null | undefined;
|
|
12478
|
-
maxCount?: number | null | undefined;
|
|
12479
|
-
boothName?: string | null | undefined;
|
|
12480
|
-
optionBoxConfig?: {
|
|
12481
|
-
boxItems?: {
|
|
12179
|
+
useCount?: number | null | undefined;
|
|
12180
|
+
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
12181
|
+
baseAppId?: string | null | undefined;
|
|
12182
|
+
sku?: string | null | undefined;
|
|
12183
|
+
listable?: boolean | null | undefined;
|
|
12184
|
+
purchasable?: boolean | null | undefined;
|
|
12185
|
+
stackable?: boolean | null | undefined;
|
|
12186
|
+
thumbnailUrl?: string | null | undefined;
|
|
12187
|
+
targetNamespace?: string | null | undefined;
|
|
12188
|
+
targetCurrencyCode?: string | null | undefined;
|
|
12189
|
+
targetItemId?: string | null | undefined;
|
|
12190
|
+
recurring?: {
|
|
12191
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12192
|
+
fixedFreeDays: number;
|
|
12193
|
+
fixedTrialCycles: number;
|
|
12194
|
+
graceDays: number;
|
|
12195
|
+
} | null | undefined;
|
|
12196
|
+
itemIds?: string[] | null | undefined;
|
|
12197
|
+
itemQty?: Record<string, number> | null | undefined;
|
|
12198
|
+
features?: string[] | null | undefined;
|
|
12199
|
+
maxCountPerUser?: number | null | undefined;
|
|
12200
|
+
maxCount?: number | null | undefined;
|
|
12201
|
+
boothName?: string | null | undefined;
|
|
12202
|
+
optionBoxConfig?: {
|
|
12203
|
+
boxItems?: {
|
|
12204
|
+
itemId?: string | null | undefined;
|
|
12205
|
+
itemSku?: string | null | undefined;
|
|
12206
|
+
itemType?: string | null | undefined;
|
|
12207
|
+
count?: number | null | undefined;
|
|
12208
|
+
}[] | null | undefined;
|
|
12209
|
+
} | null | undefined;
|
|
12210
|
+
lootBoxConfig?: {
|
|
12211
|
+
rewardCount?: number | null | undefined;
|
|
12212
|
+
rewards?: {
|
|
12213
|
+
name?: string | null | undefined;
|
|
12214
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12215
|
+
lootBoxItems?: {
|
|
12216
|
+
itemId?: string | null | undefined;
|
|
12217
|
+
itemSku?: string | null | undefined;
|
|
12218
|
+
itemType?: string | null | undefined;
|
|
12219
|
+
count?: number | null | undefined;
|
|
12220
|
+
}[] | null | undefined;
|
|
12221
|
+
weight?: number | null | undefined;
|
|
12222
|
+
odds?: number | null | undefined;
|
|
12223
|
+
}[] | null | undefined;
|
|
12224
|
+
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
12225
|
+
} | null | undefined;
|
|
12226
|
+
clazz?: string | null | undefined;
|
|
12227
|
+
longDescription?: string | null | undefined;
|
|
12228
|
+
regionData?: {
|
|
12229
|
+
discountPercentage?: number | null | undefined;
|
|
12230
|
+
discountAmount?: number | null | undefined;
|
|
12231
|
+
discountedPrice?: number | null | undefined;
|
|
12232
|
+
trialPrice?: number | null | undefined;
|
|
12233
|
+
purchaseAt?: string | null | undefined;
|
|
12234
|
+
expireAt?: string | null | undefined;
|
|
12235
|
+
discountPurchaseAt?: string | null | undefined;
|
|
12236
|
+
discountExpireAt?: string | null | undefined;
|
|
12237
|
+
currencyCode: string;
|
|
12238
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
12239
|
+
price: number;
|
|
12240
|
+
currencyNamespace: string;
|
|
12241
|
+
}[] | null | undefined;
|
|
12242
|
+
boundItemIds?: string[] | null | undefined;
|
|
12243
|
+
displayOrder?: number | null | undefined;
|
|
12244
|
+
purchaseCondition?: {
|
|
12245
|
+
conditionGroups?: {
|
|
12246
|
+
predicates?: {
|
|
12247
|
+
name?: string | null | undefined;
|
|
12248
|
+
values?: string[] | null | undefined;
|
|
12249
|
+
value?: string | null | undefined;
|
|
12250
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12251
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12252
|
+
anyOf?: number | null | undefined;
|
|
12253
|
+
}[] | null | undefined;
|
|
12254
|
+
operator?: "and" | "or" | null | undefined;
|
|
12255
|
+
}[] | null | undefined;
|
|
12256
|
+
} | null | undefined;
|
|
12257
|
+
fresh?: boolean | null | undefined;
|
|
12258
|
+
localExt?: Record<string, any> | null | undefined;
|
|
12259
|
+
name: string;
|
|
12260
|
+
status: "ACTIVE" | "INACTIVE";
|
|
12261
|
+
namespace: string;
|
|
12262
|
+
createdAt: string;
|
|
12263
|
+
updatedAt: string;
|
|
12264
|
+
language: string;
|
|
12265
|
+
title: string;
|
|
12266
|
+
itemId: string;
|
|
12267
|
+
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
12268
|
+
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
12269
|
+
region: string;
|
|
12270
|
+
categoryPath: string;
|
|
12271
|
+
}[];
|
|
12272
|
+
}>;
|
|
12273
|
+
interface ItemPagingSlicedResult extends z.TypeOf<typeof ItemPagingSlicedResult> {
|
|
12274
|
+
}
|
|
12275
|
+
|
|
12276
|
+
declare const ItemPurchaseConditionValidateRequest: z.ZodObject<{
|
|
12277
|
+
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12278
|
+
}, "strip", z.ZodTypeAny, {
|
|
12279
|
+
itemIds?: string[] | null | undefined;
|
|
12280
|
+
}, {
|
|
12281
|
+
itemIds?: string[] | null | undefined;
|
|
12282
|
+
}>;
|
|
12283
|
+
interface ItemPurchaseConditionValidateRequest extends z.TypeOf<typeof ItemPurchaseConditionValidateRequest> {
|
|
12284
|
+
}
|
|
12285
|
+
|
|
12286
|
+
declare const AppInfo: z.ZodObject<{
|
|
12287
|
+
slogan: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12288
|
+
announcement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12289
|
+
itemId: z.ZodString;
|
|
12290
|
+
namespace: z.ZodString;
|
|
12291
|
+
carousel: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12292
|
+
type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["image", "video"]>>>;
|
|
12293
|
+
videoSource: z.ZodNullable<z.ZodOptional<z.ZodEnum<["generic", "youtube", "vimeo"]>>>;
|
|
12294
|
+
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12295
|
+
alt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12296
|
+
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12297
|
+
previewUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12298
|
+
}, "strip", z.ZodTypeAny, {
|
|
12299
|
+
type?: "image" | "video" | null | undefined;
|
|
12300
|
+
url?: string | null | undefined;
|
|
12301
|
+
thumbnailUrl?: string | null | undefined;
|
|
12302
|
+
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12303
|
+
alt?: string | null | undefined;
|
|
12304
|
+
previewUrl?: string | null | undefined;
|
|
12305
|
+
}, {
|
|
12306
|
+
type?: "image" | "video" | null | undefined;
|
|
12307
|
+
url?: string | null | undefined;
|
|
12308
|
+
thumbnailUrl?: string | null | undefined;
|
|
12309
|
+
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12310
|
+
alt?: string | null | undefined;
|
|
12311
|
+
previewUrl?: string | null | undefined;
|
|
12312
|
+
}>, "many">>>;
|
|
12313
|
+
developer: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12314
|
+
publisher: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12315
|
+
websiteUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12316
|
+
forumUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12317
|
+
platforms: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Windows", "MacOS", "Linux", "IOS", "Android"]>, "many">>>;
|
|
12318
|
+
platformRequirements: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
12319
|
+
label: z.ZodString;
|
|
12320
|
+
osVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12321
|
+
processor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12322
|
+
ram: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12323
|
+
graphics: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12324
|
+
directXVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12325
|
+
diskSpace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12326
|
+
soundCard: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12327
|
+
additionals: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12328
|
+
}, "strip", z.ZodTypeAny, {
|
|
12329
|
+
osVersion?: string | null | undefined;
|
|
12330
|
+
processor?: string | null | undefined;
|
|
12331
|
+
ram?: string | null | undefined;
|
|
12332
|
+
graphics?: string | null | undefined;
|
|
12333
|
+
directXVersion?: string | null | undefined;
|
|
12334
|
+
diskSpace?: string | null | undefined;
|
|
12335
|
+
soundCard?: string | null | undefined;
|
|
12336
|
+
additionals?: string | null | undefined;
|
|
12337
|
+
label: string;
|
|
12338
|
+
}, {
|
|
12339
|
+
osVersion?: string | null | undefined;
|
|
12340
|
+
processor?: string | null | undefined;
|
|
12341
|
+
ram?: string | null | undefined;
|
|
12342
|
+
graphics?: string | null | undefined;
|
|
12343
|
+
directXVersion?: string | null | undefined;
|
|
12344
|
+
diskSpace?: string | null | undefined;
|
|
12345
|
+
soundCard?: string | null | undefined;
|
|
12346
|
+
additionals?: string | null | undefined;
|
|
12347
|
+
label: string;
|
|
12348
|
+
}>, "many">>>>;
|
|
12349
|
+
primaryGenre: z.ZodNullable<z.ZodOptional<z.ZodEnum<["Action", "Adventure", "Casual", "FreeToPlay", "Indie", "MassivelyMultiplayer", "Racing", "RPG", "Simulation", "Sports", "Strategy"]>>>;
|
|
12350
|
+
genres: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Action", "Adventure", "Casual", "FreeToPlay", "Indie", "MassivelyMultiplayer", "Racing", "RPG", "Simulation", "Sports", "Strategy"]>, "many">>>;
|
|
12351
|
+
players: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Single", "Multi", "CrossPlatformMulti", "MMO", "Coop", "LocalCoop"]>, "many">>>;
|
|
12352
|
+
releaseDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12353
|
+
region: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12354
|
+
language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12355
|
+
}, "strip", z.ZodTypeAny, {
|
|
12356
|
+
publisher?: string | null | undefined;
|
|
12357
|
+
language?: string | null | undefined;
|
|
12358
|
+
platforms?: ("Windows" | "MacOS" | "Linux" | "IOS" | "Android")[] | null | undefined;
|
|
12359
|
+
region?: string | null | undefined;
|
|
12360
|
+
slogan?: string | null | undefined;
|
|
12361
|
+
announcement?: string | null | undefined;
|
|
12362
|
+
carousel?: {
|
|
12363
|
+
type?: "image" | "video" | null | undefined;
|
|
12364
|
+
url?: string | null | undefined;
|
|
12365
|
+
thumbnailUrl?: string | null | undefined;
|
|
12366
|
+
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12367
|
+
alt?: string | null | undefined;
|
|
12368
|
+
previewUrl?: string | null | undefined;
|
|
12369
|
+
}[] | null | undefined;
|
|
12370
|
+
developer?: string | null | undefined;
|
|
12371
|
+
websiteUrl?: string | null | undefined;
|
|
12372
|
+
forumUrl?: string | null | undefined;
|
|
12373
|
+
platformRequirements?: Record<string, {
|
|
12374
|
+
osVersion?: string | null | undefined;
|
|
12375
|
+
processor?: string | null | undefined;
|
|
12376
|
+
ram?: string | null | undefined;
|
|
12377
|
+
graphics?: string | null | undefined;
|
|
12378
|
+
directXVersion?: string | null | undefined;
|
|
12379
|
+
diskSpace?: string | null | undefined;
|
|
12380
|
+
soundCard?: string | null | undefined;
|
|
12381
|
+
additionals?: string | null | undefined;
|
|
12382
|
+
label: string;
|
|
12383
|
+
}[]> | null | undefined;
|
|
12384
|
+
primaryGenre?: "Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy" | null | undefined;
|
|
12385
|
+
genres?: ("Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy")[] | null | undefined;
|
|
12386
|
+
players?: ("Single" | "Multi" | "CrossPlatformMulti" | "MMO" | "Coop" | "LocalCoop")[] | null | undefined;
|
|
12387
|
+
releaseDate?: string | null | undefined;
|
|
12388
|
+
namespace: string;
|
|
12389
|
+
itemId: string;
|
|
12390
|
+
}, {
|
|
12391
|
+
publisher?: string | null | undefined;
|
|
12392
|
+
language?: string | null | undefined;
|
|
12393
|
+
platforms?: ("Windows" | "MacOS" | "Linux" | "IOS" | "Android")[] | null | undefined;
|
|
12394
|
+
region?: string | null | undefined;
|
|
12395
|
+
slogan?: string | null | undefined;
|
|
12396
|
+
announcement?: string | null | undefined;
|
|
12397
|
+
carousel?: {
|
|
12398
|
+
type?: "image" | "video" | null | undefined;
|
|
12399
|
+
url?: string | null | undefined;
|
|
12400
|
+
thumbnailUrl?: string | null | undefined;
|
|
12401
|
+
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12402
|
+
alt?: string | null | undefined;
|
|
12403
|
+
previewUrl?: string | null | undefined;
|
|
12404
|
+
}[] | null | undefined;
|
|
12405
|
+
developer?: string | null | undefined;
|
|
12406
|
+
websiteUrl?: string | null | undefined;
|
|
12407
|
+
forumUrl?: string | null | undefined;
|
|
12408
|
+
platformRequirements?: Record<string, {
|
|
12409
|
+
osVersion?: string | null | undefined;
|
|
12410
|
+
processor?: string | null | undefined;
|
|
12411
|
+
ram?: string | null | undefined;
|
|
12412
|
+
graphics?: string | null | undefined;
|
|
12413
|
+
directXVersion?: string | null | undefined;
|
|
12414
|
+
diskSpace?: string | null | undefined;
|
|
12415
|
+
soundCard?: string | null | undefined;
|
|
12416
|
+
additionals?: string | null | undefined;
|
|
12417
|
+
label: string;
|
|
12418
|
+
}[]> | null | undefined;
|
|
12419
|
+
primaryGenre?: "Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy" | null | undefined;
|
|
12420
|
+
genres?: ("Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy")[] | null | undefined;
|
|
12421
|
+
players?: ("Single" | "Multi" | "CrossPlatformMulti" | "MMO" | "Coop" | "LocalCoop")[] | null | undefined;
|
|
12422
|
+
releaseDate?: string | null | undefined;
|
|
12423
|
+
namespace: string;
|
|
12424
|
+
itemId: string;
|
|
12425
|
+
}>;
|
|
12426
|
+
interface AppInfo extends z.TypeOf<typeof AppInfo> {
|
|
12427
|
+
}
|
|
12428
|
+
|
|
12429
|
+
declare const ItemDynamicDataInfo: z.ZodObject<{
|
|
12430
|
+
itemId: z.ZodString;
|
|
12431
|
+
namespace: z.ZodString;
|
|
12432
|
+
availableCount: z.ZodNumber;
|
|
12433
|
+
userAvailableCount: z.ZodNumber;
|
|
12434
|
+
userPurchaseLimit: z.ZodNumber;
|
|
12435
|
+
}, "strip", z.ZodTypeAny, {
|
|
12436
|
+
namespace: string;
|
|
12437
|
+
itemId: string;
|
|
12438
|
+
availableCount: number;
|
|
12439
|
+
userAvailableCount: number;
|
|
12440
|
+
userPurchaseLimit: number;
|
|
12441
|
+
}, {
|
|
12442
|
+
namespace: string;
|
|
12443
|
+
itemId: string;
|
|
12444
|
+
availableCount: number;
|
|
12445
|
+
userAvailableCount: number;
|
|
12446
|
+
userPurchaseLimit: number;
|
|
12447
|
+
}>;
|
|
12448
|
+
interface ItemDynamicDataInfo extends z.TypeOf<typeof ItemDynamicDataInfo> {
|
|
12449
|
+
}
|
|
12450
|
+
|
|
12451
|
+
declare const ItemInfo: z.ZodObject<{
|
|
12452
|
+
title: z.ZodString;
|
|
12453
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12454
|
+
longDescription: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12455
|
+
itemId: z.ZodString;
|
|
12456
|
+
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12457
|
+
appType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["GAME", "SOFTWARE", "DLC", "DEMO"]>>>;
|
|
12458
|
+
seasonType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PASS", "TIER"]>>>;
|
|
12459
|
+
baseAppId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12460
|
+
sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12461
|
+
namespace: z.ZodString;
|
|
12462
|
+
name: z.ZodString;
|
|
12463
|
+
entitlementType: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
12464
|
+
useCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12465
|
+
stackable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
12466
|
+
categoryPath: z.ZodString;
|
|
12467
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
|
|
12468
|
+
listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
12469
|
+
purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
12470
|
+
itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
|
|
12471
|
+
targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12472
|
+
targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12473
|
+
targetItemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12474
|
+
images: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12475
|
+
as: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12476
|
+
caption: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12477
|
+
height: z.ZodNumber;
|
|
12478
|
+
width: z.ZodNumber;
|
|
12479
|
+
imageUrl: z.ZodString;
|
|
12480
|
+
smallImageUrl: z.ZodString;
|
|
12481
|
+
}, "strip", z.ZodTypeAny, {
|
|
12482
|
+
as?: string | null | undefined;
|
|
12483
|
+
caption?: string | null | undefined;
|
|
12484
|
+
height: number;
|
|
12485
|
+
width: number;
|
|
12486
|
+
imageUrl: string;
|
|
12487
|
+
smallImageUrl: string;
|
|
12488
|
+
}, {
|
|
12489
|
+
as?: string | null | undefined;
|
|
12490
|
+
caption?: string | null | undefined;
|
|
12491
|
+
height: number;
|
|
12492
|
+
width: number;
|
|
12493
|
+
imageUrl: string;
|
|
12494
|
+
smallImageUrl: string;
|
|
12495
|
+
}>, "many">>>;
|
|
12496
|
+
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12497
|
+
regionData: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12498
|
+
price: z.ZodNumber;
|
|
12499
|
+
discountPercentage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12500
|
+
discountAmount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12501
|
+
discountedPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12502
|
+
currencyCode: z.ZodString;
|
|
12503
|
+
currencyType: z.ZodEnum<["REAL", "VIRTUAL"]>;
|
|
12504
|
+
currencyNamespace: z.ZodString;
|
|
12505
|
+
trialPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12506
|
+
purchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12507
|
+
expireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12508
|
+
discountPurchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12509
|
+
discountExpireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12510
|
+
}, "strip", z.ZodTypeAny, {
|
|
12511
|
+
discountPercentage?: number | null | undefined;
|
|
12512
|
+
discountAmount?: number | null | undefined;
|
|
12513
|
+
discountedPrice?: number | null | undefined;
|
|
12514
|
+
trialPrice?: number | null | undefined;
|
|
12515
|
+
purchaseAt?: string | null | undefined;
|
|
12516
|
+
expireAt?: string | null | undefined;
|
|
12517
|
+
discountPurchaseAt?: string | null | undefined;
|
|
12518
|
+
discountExpireAt?: string | null | undefined;
|
|
12519
|
+
currencyCode: string;
|
|
12520
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
12521
|
+
price: number;
|
|
12522
|
+
currencyNamespace: string;
|
|
12523
|
+
}, {
|
|
12524
|
+
discountPercentage?: number | null | undefined;
|
|
12525
|
+
discountAmount?: number | null | undefined;
|
|
12526
|
+
discountedPrice?: number | null | undefined;
|
|
12527
|
+
trialPrice?: number | null | undefined;
|
|
12528
|
+
purchaseAt?: string | null | undefined;
|
|
12529
|
+
expireAt?: string | null | undefined;
|
|
12530
|
+
discountPurchaseAt?: string | null | undefined;
|
|
12531
|
+
discountExpireAt?: string | null | undefined;
|
|
12532
|
+
currencyCode: string;
|
|
12533
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
12534
|
+
price: number;
|
|
12535
|
+
currencyNamespace: string;
|
|
12536
|
+
}>, "many">>>;
|
|
12537
|
+
recurring: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12538
|
+
cycle: z.ZodEnum<["WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"]>;
|
|
12539
|
+
fixedFreeDays: z.ZodNumber;
|
|
12540
|
+
fixedTrialCycles: z.ZodNumber;
|
|
12541
|
+
graceDays: z.ZodNumber;
|
|
12542
|
+
}, "strip", z.ZodTypeAny, {
|
|
12543
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12544
|
+
fixedFreeDays: number;
|
|
12545
|
+
fixedTrialCycles: number;
|
|
12546
|
+
graceDays: number;
|
|
12547
|
+
}, {
|
|
12548
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12549
|
+
fixedFreeDays: number;
|
|
12550
|
+
fixedTrialCycles: number;
|
|
12551
|
+
graceDays: number;
|
|
12552
|
+
}>>>;
|
|
12553
|
+
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12554
|
+
itemQty: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
12555
|
+
boundItemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12556
|
+
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12557
|
+
features: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12558
|
+
maxCountPerUser: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12559
|
+
maxCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12560
|
+
clazz: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12561
|
+
boothName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12562
|
+
displayOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12563
|
+
ext: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12564
|
+
region: z.ZodString;
|
|
12565
|
+
language: z.ZodString;
|
|
12566
|
+
createdAt: z.ZodString;
|
|
12567
|
+
updatedAt: z.ZodString;
|
|
12568
|
+
purchaseCondition: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12569
|
+
conditionGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12570
|
+
predicates: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12571
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12572
|
+
predicateType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["EntitlementPredicate", "SeasonPassPredicate", "SeasonTierPredicate"]>>>;
|
|
12573
|
+
comparison: z.ZodNullable<z.ZodOptional<z.ZodEnum<["is", "isNot", "isGreaterThan", "isGreaterThanOrEqual", "isLessThan", "isLessThanOrEqual", "includes", "excludes"]>>>;
|
|
12574
|
+
anyOf: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12575
|
+
values: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12576
|
+
value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12577
|
+
}, "strip", z.ZodTypeAny, {
|
|
12578
|
+
name?: string | null | undefined;
|
|
12579
|
+
values?: string[] | null | undefined;
|
|
12580
|
+
value?: string | null | undefined;
|
|
12581
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12582
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12583
|
+
anyOf?: number | null | undefined;
|
|
12584
|
+
}, {
|
|
12585
|
+
name?: string | null | undefined;
|
|
12586
|
+
values?: string[] | null | undefined;
|
|
12587
|
+
value?: string | null | undefined;
|
|
12588
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12589
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12590
|
+
anyOf?: number | null | undefined;
|
|
12591
|
+
}>, "many">>>;
|
|
12592
|
+
operator: z.ZodNullable<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
12593
|
+
}, "strip", z.ZodTypeAny, {
|
|
12594
|
+
predicates?: {
|
|
12595
|
+
name?: string | null | undefined;
|
|
12596
|
+
values?: string[] | null | undefined;
|
|
12597
|
+
value?: string | null | undefined;
|
|
12598
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12599
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12600
|
+
anyOf?: number | null | undefined;
|
|
12601
|
+
}[] | null | undefined;
|
|
12602
|
+
operator?: "and" | "or" | null | undefined;
|
|
12603
|
+
}, {
|
|
12604
|
+
predicates?: {
|
|
12605
|
+
name?: string | null | undefined;
|
|
12606
|
+
values?: string[] | null | undefined;
|
|
12607
|
+
value?: string | null | undefined;
|
|
12608
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12609
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12610
|
+
anyOf?: number | null | undefined;
|
|
12611
|
+
}[] | null | undefined;
|
|
12612
|
+
operator?: "and" | "or" | null | undefined;
|
|
12613
|
+
}>, "many">>>;
|
|
12614
|
+
}, "strip", z.ZodTypeAny, {
|
|
12615
|
+
conditionGroups?: {
|
|
12616
|
+
predicates?: {
|
|
12617
|
+
name?: string | null | undefined;
|
|
12618
|
+
values?: string[] | null | undefined;
|
|
12619
|
+
value?: string | null | undefined;
|
|
12620
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12621
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12622
|
+
anyOf?: number | null | undefined;
|
|
12623
|
+
}[] | null | undefined;
|
|
12624
|
+
operator?: "and" | "or" | null | undefined;
|
|
12625
|
+
}[] | null | undefined;
|
|
12626
|
+
}, {
|
|
12627
|
+
conditionGroups?: {
|
|
12628
|
+
predicates?: {
|
|
12629
|
+
name?: string | null | undefined;
|
|
12630
|
+
values?: string[] | null | undefined;
|
|
12631
|
+
value?: string | null | undefined;
|
|
12632
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12633
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12634
|
+
anyOf?: number | null | undefined;
|
|
12635
|
+
}[] | null | undefined;
|
|
12636
|
+
operator?: "and" | "or" | null | undefined;
|
|
12637
|
+
}[] | null | undefined;
|
|
12638
|
+
}>>>;
|
|
12639
|
+
optionBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12640
|
+
boxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12641
|
+
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12642
|
+
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12643
|
+
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12644
|
+
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12645
|
+
}, "strip", z.ZodTypeAny, {
|
|
12646
|
+
itemId?: string | null | undefined;
|
|
12647
|
+
itemSku?: string | null | undefined;
|
|
12648
|
+
itemType?: string | null | undefined;
|
|
12649
|
+
count?: number | null | undefined;
|
|
12650
|
+
}, {
|
|
12651
|
+
itemId?: string | null | undefined;
|
|
12652
|
+
itemSku?: string | null | undefined;
|
|
12653
|
+
itemType?: string | null | undefined;
|
|
12654
|
+
count?: number | null | undefined;
|
|
12655
|
+
}>, "many">>>;
|
|
12656
|
+
}, "strip", z.ZodTypeAny, {
|
|
12657
|
+
boxItems?: {
|
|
12658
|
+
itemId?: string | null | undefined;
|
|
12659
|
+
itemSku?: string | null | undefined;
|
|
12660
|
+
itemType?: string | null | undefined;
|
|
12661
|
+
count?: number | null | undefined;
|
|
12662
|
+
}[] | null | undefined;
|
|
12663
|
+
}, {
|
|
12664
|
+
boxItems?: {
|
|
12665
|
+
itemId?: string | null | undefined;
|
|
12666
|
+
itemSku?: string | null | undefined;
|
|
12667
|
+
itemType?: string | null | undefined;
|
|
12668
|
+
count?: number | null | undefined;
|
|
12669
|
+
}[] | null | undefined;
|
|
12670
|
+
}>>>;
|
|
12671
|
+
lootBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12672
|
+
rewardCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12673
|
+
rewards: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12674
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12675
|
+
type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["REWARD", "REWARD_GROUP", "PROBABILITY_GROUP"]>>>;
|
|
12676
|
+
lootBoxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12677
|
+
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12678
|
+
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12679
|
+
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12680
|
+
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12681
|
+
}, "strip", z.ZodTypeAny, {
|
|
12682
|
+
itemId?: string | null | undefined;
|
|
12683
|
+
itemSku?: string | null | undefined;
|
|
12684
|
+
itemType?: string | null | undefined;
|
|
12685
|
+
count?: number | null | undefined;
|
|
12686
|
+
}, {
|
|
12687
|
+
itemId?: string | null | undefined;
|
|
12688
|
+
itemSku?: string | null | undefined;
|
|
12689
|
+
itemType?: string | null | undefined;
|
|
12690
|
+
count?: number | null | undefined;
|
|
12691
|
+
}>, "many">>>;
|
|
12692
|
+
weight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12693
|
+
odds: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12694
|
+
}, "strip", z.ZodTypeAny, {
|
|
12695
|
+
name?: string | null | undefined;
|
|
12696
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12697
|
+
lootBoxItems?: {
|
|
12698
|
+
itemId?: string | null | undefined;
|
|
12699
|
+
itemSku?: string | null | undefined;
|
|
12700
|
+
itemType?: string | null | undefined;
|
|
12701
|
+
count?: number | null | undefined;
|
|
12702
|
+
}[] | null | undefined;
|
|
12703
|
+
weight?: number | null | undefined;
|
|
12704
|
+
odds?: number | null | undefined;
|
|
12705
|
+
}, {
|
|
12706
|
+
name?: string | null | undefined;
|
|
12707
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12708
|
+
lootBoxItems?: {
|
|
12709
|
+
itemId?: string | null | undefined;
|
|
12710
|
+
itemSku?: string | null | undefined;
|
|
12711
|
+
itemType?: string | null | undefined;
|
|
12712
|
+
count?: number | null | undefined;
|
|
12713
|
+
}[] | null | undefined;
|
|
12714
|
+
weight?: number | null | undefined;
|
|
12715
|
+
odds?: number | null | undefined;
|
|
12716
|
+
}>, "many">>>;
|
|
12717
|
+
rollFunction: z.ZodNullable<z.ZodOptional<z.ZodEnum<["DEFAULT", "CUSTOM"]>>>;
|
|
12718
|
+
}, "strip", z.ZodTypeAny, {
|
|
12719
|
+
rewardCount?: number | null | undefined;
|
|
12720
|
+
rewards?: {
|
|
12721
|
+
name?: string | null | undefined;
|
|
12722
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12723
|
+
lootBoxItems?: {
|
|
12724
|
+
itemId?: string | null | undefined;
|
|
12725
|
+
itemSku?: string | null | undefined;
|
|
12726
|
+
itemType?: string | null | undefined;
|
|
12727
|
+
count?: number | null | undefined;
|
|
12728
|
+
}[] | null | undefined;
|
|
12729
|
+
weight?: number | null | undefined;
|
|
12730
|
+
odds?: number | null | undefined;
|
|
12731
|
+
}[] | null | undefined;
|
|
12732
|
+
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
12733
|
+
}, {
|
|
12734
|
+
rewardCount?: number | null | undefined;
|
|
12735
|
+
rewards?: {
|
|
12736
|
+
name?: string | null | undefined;
|
|
12737
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12738
|
+
lootBoxItems?: {
|
|
12739
|
+
itemId?: string | null | undefined;
|
|
12740
|
+
itemSku?: string | null | undefined;
|
|
12741
|
+
itemType?: string | null | undefined;
|
|
12742
|
+
count?: number | null | undefined;
|
|
12743
|
+
}[] | null | undefined;
|
|
12744
|
+
weight?: number | null | undefined;
|
|
12745
|
+
odds?: number | null | undefined;
|
|
12746
|
+
}[] | null | undefined;
|
|
12747
|
+
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
12748
|
+
}>>>;
|
|
12749
|
+
fresh: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
12750
|
+
localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12751
|
+
}, "strip", z.ZodTypeAny, {
|
|
12752
|
+
appId?: string | null | undefined;
|
|
12753
|
+
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
12754
|
+
description?: string | null | undefined;
|
|
12755
|
+
ext?: Record<string, any> | null | undefined;
|
|
12756
|
+
tags?: string[] | null | undefined;
|
|
12757
|
+
images?: {
|
|
12758
|
+
as?: string | null | undefined;
|
|
12759
|
+
caption?: string | null | undefined;
|
|
12760
|
+
height: number;
|
|
12761
|
+
width: number;
|
|
12762
|
+
imageUrl: string;
|
|
12763
|
+
smallImageUrl: string;
|
|
12764
|
+
}[] | null | undefined;
|
|
12765
|
+
useCount?: number | null | undefined;
|
|
12766
|
+
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
12767
|
+
baseAppId?: string | null | undefined;
|
|
12768
|
+
sku?: string | null | undefined;
|
|
12769
|
+
listable?: boolean | null | undefined;
|
|
12770
|
+
purchasable?: boolean | null | undefined;
|
|
12771
|
+
stackable?: boolean | null | undefined;
|
|
12772
|
+
thumbnailUrl?: string | null | undefined;
|
|
12773
|
+
targetNamespace?: string | null | undefined;
|
|
12774
|
+
targetCurrencyCode?: string | null | undefined;
|
|
12775
|
+
targetItemId?: string | null | undefined;
|
|
12776
|
+
recurring?: {
|
|
12777
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12778
|
+
fixedFreeDays: number;
|
|
12779
|
+
fixedTrialCycles: number;
|
|
12780
|
+
graceDays: number;
|
|
12781
|
+
} | null | undefined;
|
|
12782
|
+
itemIds?: string[] | null | undefined;
|
|
12783
|
+
itemQty?: Record<string, number> | null | undefined;
|
|
12784
|
+
features?: string[] | null | undefined;
|
|
12785
|
+
maxCountPerUser?: number | null | undefined;
|
|
12786
|
+
maxCount?: number | null | undefined;
|
|
12787
|
+
boothName?: string | null | undefined;
|
|
12788
|
+
optionBoxConfig?: {
|
|
12789
|
+
boxItems?: {
|
|
12790
|
+
itemId?: string | null | undefined;
|
|
12791
|
+
itemSku?: string | null | undefined;
|
|
12792
|
+
itemType?: string | null | undefined;
|
|
12793
|
+
count?: number | null | undefined;
|
|
12794
|
+
}[] | null | undefined;
|
|
12795
|
+
} | null | undefined;
|
|
12796
|
+
lootBoxConfig?: {
|
|
12797
|
+
rewardCount?: number | null | undefined;
|
|
12798
|
+
rewards?: {
|
|
12799
|
+
name?: string | null | undefined;
|
|
12800
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12801
|
+
lootBoxItems?: {
|
|
12802
|
+
itemId?: string | null | undefined;
|
|
12803
|
+
itemSku?: string | null | undefined;
|
|
12804
|
+
itemType?: string | null | undefined;
|
|
12805
|
+
count?: number | null | undefined;
|
|
12806
|
+
}[] | null | undefined;
|
|
12807
|
+
weight?: number | null | undefined;
|
|
12808
|
+
odds?: number | null | undefined;
|
|
12809
|
+
}[] | null | undefined;
|
|
12810
|
+
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
12811
|
+
} | null | undefined;
|
|
12812
|
+
clazz?: string | null | undefined;
|
|
12813
|
+
longDescription?: string | null | undefined;
|
|
12814
|
+
regionData?: {
|
|
12815
|
+
discountPercentage?: number | null | undefined;
|
|
12816
|
+
discountAmount?: number | null | undefined;
|
|
12817
|
+
discountedPrice?: number | null | undefined;
|
|
12818
|
+
trialPrice?: number | null | undefined;
|
|
12819
|
+
purchaseAt?: string | null | undefined;
|
|
12820
|
+
expireAt?: string | null | undefined;
|
|
12821
|
+
discountPurchaseAt?: string | null | undefined;
|
|
12822
|
+
discountExpireAt?: string | null | undefined;
|
|
12823
|
+
currencyCode: string;
|
|
12824
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
12825
|
+
price: number;
|
|
12826
|
+
currencyNamespace: string;
|
|
12827
|
+
}[] | null | undefined;
|
|
12828
|
+
boundItemIds?: string[] | null | undefined;
|
|
12829
|
+
displayOrder?: number | null | undefined;
|
|
12830
|
+
purchaseCondition?: {
|
|
12831
|
+
conditionGroups?: {
|
|
12832
|
+
predicates?: {
|
|
12833
|
+
name?: string | null | undefined;
|
|
12834
|
+
values?: string[] | null | undefined;
|
|
12835
|
+
value?: string | null | undefined;
|
|
12836
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12837
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12838
|
+
anyOf?: number | null | undefined;
|
|
12839
|
+
}[] | null | undefined;
|
|
12840
|
+
operator?: "and" | "or" | null | undefined;
|
|
12841
|
+
}[] | null | undefined;
|
|
12842
|
+
} | null | undefined;
|
|
12843
|
+
fresh?: boolean | null | undefined;
|
|
12844
|
+
localExt?: Record<string, any> | null | undefined;
|
|
12845
|
+
name: string;
|
|
12846
|
+
status: "ACTIVE" | "INACTIVE";
|
|
12847
|
+
namespace: string;
|
|
12848
|
+
createdAt: string;
|
|
12849
|
+
updatedAt: string;
|
|
12850
|
+
language: string;
|
|
12851
|
+
title: string;
|
|
12852
|
+
itemId: string;
|
|
12853
|
+
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
12854
|
+
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
12855
|
+
region: string;
|
|
12856
|
+
categoryPath: string;
|
|
12857
|
+
}, {
|
|
12858
|
+
appId?: string | null | undefined;
|
|
12859
|
+
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
12860
|
+
description?: string | null | undefined;
|
|
12861
|
+
ext?: Record<string, any> | null | undefined;
|
|
12862
|
+
tags?: string[] | null | undefined;
|
|
12863
|
+
images?: {
|
|
12864
|
+
as?: string | null | undefined;
|
|
12865
|
+
caption?: string | null | undefined;
|
|
12866
|
+
height: number;
|
|
12867
|
+
width: number;
|
|
12868
|
+
imageUrl: string;
|
|
12869
|
+
smallImageUrl: string;
|
|
12870
|
+
}[] | null | undefined;
|
|
12871
|
+
useCount?: number | null | undefined;
|
|
12872
|
+
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
12873
|
+
baseAppId?: string | null | undefined;
|
|
12874
|
+
sku?: string | null | undefined;
|
|
12875
|
+
listable?: boolean | null | undefined;
|
|
12876
|
+
purchasable?: boolean | null | undefined;
|
|
12877
|
+
stackable?: boolean | null | undefined;
|
|
12878
|
+
thumbnailUrl?: string | null | undefined;
|
|
12879
|
+
targetNamespace?: string | null | undefined;
|
|
12880
|
+
targetCurrencyCode?: string | null | undefined;
|
|
12881
|
+
targetItemId?: string | null | undefined;
|
|
12882
|
+
recurring?: {
|
|
12883
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
12884
|
+
fixedFreeDays: number;
|
|
12885
|
+
fixedTrialCycles: number;
|
|
12886
|
+
graceDays: number;
|
|
12887
|
+
} | null | undefined;
|
|
12888
|
+
itemIds?: string[] | null | undefined;
|
|
12889
|
+
itemQty?: Record<string, number> | null | undefined;
|
|
12890
|
+
features?: string[] | null | undefined;
|
|
12891
|
+
maxCountPerUser?: number | null | undefined;
|
|
12892
|
+
maxCount?: number | null | undefined;
|
|
12893
|
+
boothName?: string | null | undefined;
|
|
12894
|
+
optionBoxConfig?: {
|
|
12895
|
+
boxItems?: {
|
|
12896
|
+
itemId?: string | null | undefined;
|
|
12897
|
+
itemSku?: string | null | undefined;
|
|
12898
|
+
itemType?: string | null | undefined;
|
|
12899
|
+
count?: number | null | undefined;
|
|
12900
|
+
}[] | null | undefined;
|
|
12901
|
+
} | null | undefined;
|
|
12902
|
+
lootBoxConfig?: {
|
|
12903
|
+
rewardCount?: number | null | undefined;
|
|
12904
|
+
rewards?: {
|
|
12905
|
+
name?: string | null | undefined;
|
|
12906
|
+
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
12907
|
+
lootBoxItems?: {
|
|
12482
12908
|
itemId?: string | null | undefined;
|
|
12483
12909
|
itemSku?: string | null | undefined;
|
|
12484
12910
|
itemType?: string | null | undefined;
|
|
12485
12911
|
count?: number | null | undefined;
|
|
12486
12912
|
}[] | null | undefined;
|
|
12487
|
-
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
|
|
12913
|
+
weight?: number | null | undefined;
|
|
12914
|
+
odds?: number | null | undefined;
|
|
12915
|
+
}[] | null | undefined;
|
|
12916
|
+
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
12917
|
+
} | null | undefined;
|
|
12918
|
+
clazz?: string | null | undefined;
|
|
12919
|
+
longDescription?: string | null | undefined;
|
|
12920
|
+
regionData?: {
|
|
12921
|
+
discountPercentage?: number | null | undefined;
|
|
12922
|
+
discountAmount?: number | null | undefined;
|
|
12923
|
+
discountedPrice?: number | null | undefined;
|
|
12924
|
+
trialPrice?: number | null | undefined;
|
|
12925
|
+
purchaseAt?: string | null | undefined;
|
|
12926
|
+
expireAt?: string | null | undefined;
|
|
12927
|
+
discountPurchaseAt?: string | null | undefined;
|
|
12928
|
+
discountExpireAt?: string | null | undefined;
|
|
12929
|
+
currencyCode: string;
|
|
12930
|
+
currencyType: "REAL" | "VIRTUAL";
|
|
12931
|
+
price: number;
|
|
12932
|
+
currencyNamespace: string;
|
|
12933
|
+
}[] | null | undefined;
|
|
12934
|
+
boundItemIds?: string[] | null | undefined;
|
|
12935
|
+
displayOrder?: number | null | undefined;
|
|
12936
|
+
purchaseCondition?: {
|
|
12937
|
+
conditionGroups?: {
|
|
12938
|
+
predicates?: {
|
|
12491
12939
|
name?: string | null | undefined;
|
|
12492
|
-
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
count?: number | null | undefined;
|
|
12498
|
-
}[] | null | undefined;
|
|
12499
|
-
weight?: number | null | undefined;
|
|
12500
|
-
odds?: number | null | undefined;
|
|
12940
|
+
values?: string[] | null | undefined;
|
|
12941
|
+
value?: string | null | undefined;
|
|
12942
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12943
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12944
|
+
anyOf?: number | null | undefined;
|
|
12501
12945
|
}[] | null | undefined;
|
|
12502
|
-
|
|
12503
|
-
} | null | undefined;
|
|
12504
|
-
clazz?: string | null | undefined;
|
|
12505
|
-
longDescription?: string | null | undefined;
|
|
12506
|
-
regionData?: {
|
|
12507
|
-
discountPercentage?: number | null | undefined;
|
|
12508
|
-
discountAmount?: number | null | undefined;
|
|
12509
|
-
discountedPrice?: number | null | undefined;
|
|
12510
|
-
trialPrice?: number | null | undefined;
|
|
12511
|
-
purchaseAt?: string | null | undefined;
|
|
12512
|
-
expireAt?: string | null | undefined;
|
|
12513
|
-
discountPurchaseAt?: string | null | undefined;
|
|
12514
|
-
discountExpireAt?: string | null | undefined;
|
|
12515
|
-
currencyCode: string;
|
|
12516
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
12517
|
-
price: number;
|
|
12518
|
-
currencyNamespace: string;
|
|
12946
|
+
operator?: "and" | "or" | null | undefined;
|
|
12519
12947
|
}[] | null | undefined;
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
name?: string | null | undefined;
|
|
12526
|
-
values?: string[] | null | undefined;
|
|
12527
|
-
value?: string | null | undefined;
|
|
12528
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
12529
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
12530
|
-
anyOf?: number | null | undefined;
|
|
12531
|
-
}[] | null | undefined;
|
|
12532
|
-
operator?: "and" | "or" | null | undefined;
|
|
12533
|
-
}[] | null | undefined;
|
|
12534
|
-
} | null | undefined;
|
|
12535
|
-
fresh?: boolean | null | undefined;
|
|
12536
|
-
localExt?: Record<string, any> | null | undefined;
|
|
12537
|
-
name: string;
|
|
12538
|
-
status: "ACTIVE" | "INACTIVE";
|
|
12539
|
-
namespace: string;
|
|
12540
|
-
createdAt: string;
|
|
12541
|
-
updatedAt: string;
|
|
12542
|
-
language: string;
|
|
12543
|
-
title: string;
|
|
12544
|
-
itemId: string;
|
|
12545
|
-
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
12546
|
-
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
12547
|
-
region: string;
|
|
12548
|
-
categoryPath: string;
|
|
12549
|
-
}[];
|
|
12550
|
-
}>;
|
|
12551
|
-
interface ItemPagingSlicedResult extends z.TypeOf<typeof ItemPagingSlicedResult> {
|
|
12552
|
-
}
|
|
12553
|
-
|
|
12554
|
-
declare const ItemPurchaseConditionValidateRequest: z.ZodObject<{
|
|
12555
|
-
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12556
|
-
}, "strip", z.ZodTypeAny, {
|
|
12557
|
-
itemIds?: string[] | null | undefined;
|
|
12558
|
-
}, {
|
|
12559
|
-
itemIds?: string[] | null | undefined;
|
|
12560
|
-
}>;
|
|
12561
|
-
interface ItemPurchaseConditionValidateRequest extends z.TypeOf<typeof ItemPurchaseConditionValidateRequest> {
|
|
12562
|
-
}
|
|
12563
|
-
|
|
12564
|
-
declare const AppInfo: z.ZodObject<{
|
|
12565
|
-
slogan: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12566
|
-
announcement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12567
|
-
itemId: z.ZodString;
|
|
12568
|
-
namespace: z.ZodString;
|
|
12569
|
-
carousel: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12570
|
-
type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["image", "video"]>>>;
|
|
12571
|
-
videoSource: z.ZodNullable<z.ZodOptional<z.ZodEnum<["generic", "youtube", "vimeo"]>>>;
|
|
12572
|
-
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12573
|
-
alt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12574
|
-
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12575
|
-
previewUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12576
|
-
}, "strip", z.ZodTypeAny, {
|
|
12577
|
-
type?: "image" | "video" | null | undefined;
|
|
12578
|
-
url?: string | null | undefined;
|
|
12579
|
-
thumbnailUrl?: string | null | undefined;
|
|
12580
|
-
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12581
|
-
alt?: string | null | undefined;
|
|
12582
|
-
previewUrl?: string | null | undefined;
|
|
12583
|
-
}, {
|
|
12584
|
-
type?: "image" | "video" | null | undefined;
|
|
12585
|
-
url?: string | null | undefined;
|
|
12586
|
-
thumbnailUrl?: string | null | undefined;
|
|
12587
|
-
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12588
|
-
alt?: string | null | undefined;
|
|
12589
|
-
previewUrl?: string | null | undefined;
|
|
12590
|
-
}>, "many">>>;
|
|
12591
|
-
developer: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12592
|
-
publisher: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12593
|
-
websiteUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12594
|
-
forumUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12595
|
-
platforms: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Windows", "MacOS", "Linux", "IOS", "Android"]>, "many">>>;
|
|
12596
|
-
platformRequirements: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
12597
|
-
label: z.ZodString;
|
|
12598
|
-
osVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12599
|
-
processor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12600
|
-
ram: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12601
|
-
graphics: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12602
|
-
directXVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12603
|
-
diskSpace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12604
|
-
soundCard: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12605
|
-
additionals: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12606
|
-
}, "strip", z.ZodTypeAny, {
|
|
12607
|
-
osVersion?: string | null | undefined;
|
|
12608
|
-
processor?: string | null | undefined;
|
|
12609
|
-
ram?: string | null | undefined;
|
|
12610
|
-
graphics?: string | null | undefined;
|
|
12611
|
-
directXVersion?: string | null | undefined;
|
|
12612
|
-
diskSpace?: string | null | undefined;
|
|
12613
|
-
soundCard?: string | null | undefined;
|
|
12614
|
-
additionals?: string | null | undefined;
|
|
12615
|
-
label: string;
|
|
12616
|
-
}, {
|
|
12617
|
-
osVersion?: string | null | undefined;
|
|
12618
|
-
processor?: string | null | undefined;
|
|
12619
|
-
ram?: string | null | undefined;
|
|
12620
|
-
graphics?: string | null | undefined;
|
|
12621
|
-
directXVersion?: string | null | undefined;
|
|
12622
|
-
diskSpace?: string | null | undefined;
|
|
12623
|
-
soundCard?: string | null | undefined;
|
|
12624
|
-
additionals?: string | null | undefined;
|
|
12625
|
-
label: string;
|
|
12626
|
-
}>, "many">>>>;
|
|
12627
|
-
primaryGenre: z.ZodNullable<z.ZodOptional<z.ZodEnum<["Action", "Adventure", "Casual", "FreeToPlay", "Indie", "MassivelyMultiplayer", "Racing", "RPG", "Simulation", "Sports", "Strategy"]>>>;
|
|
12628
|
-
genres: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Action", "Adventure", "Casual", "FreeToPlay", "Indie", "MassivelyMultiplayer", "Racing", "RPG", "Simulation", "Sports", "Strategy"]>, "many">>>;
|
|
12629
|
-
players: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["Single", "Multi", "CrossPlatformMulti", "MMO", "Coop", "LocalCoop"]>, "many">>>;
|
|
12630
|
-
releaseDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12631
|
-
region: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12632
|
-
language: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12633
|
-
}, "strip", z.ZodTypeAny, {
|
|
12634
|
-
publisher?: string | null | undefined;
|
|
12635
|
-
language?: string | null | undefined;
|
|
12636
|
-
platforms?: ("Windows" | "MacOS" | "Linux" | "IOS" | "Android")[] | null | undefined;
|
|
12637
|
-
region?: string | null | undefined;
|
|
12638
|
-
slogan?: string | null | undefined;
|
|
12639
|
-
announcement?: string | null | undefined;
|
|
12640
|
-
carousel?: {
|
|
12641
|
-
type?: "image" | "video" | null | undefined;
|
|
12642
|
-
url?: string | null | undefined;
|
|
12643
|
-
thumbnailUrl?: string | null | undefined;
|
|
12644
|
-
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12645
|
-
alt?: string | null | undefined;
|
|
12646
|
-
previewUrl?: string | null | undefined;
|
|
12647
|
-
}[] | null | undefined;
|
|
12648
|
-
developer?: string | null | undefined;
|
|
12649
|
-
websiteUrl?: string | null | undefined;
|
|
12650
|
-
forumUrl?: string | null | undefined;
|
|
12651
|
-
platformRequirements?: Record<string, {
|
|
12652
|
-
osVersion?: string | null | undefined;
|
|
12653
|
-
processor?: string | null | undefined;
|
|
12654
|
-
ram?: string | null | undefined;
|
|
12655
|
-
graphics?: string | null | undefined;
|
|
12656
|
-
directXVersion?: string | null | undefined;
|
|
12657
|
-
diskSpace?: string | null | undefined;
|
|
12658
|
-
soundCard?: string | null | undefined;
|
|
12659
|
-
additionals?: string | null | undefined;
|
|
12660
|
-
label: string;
|
|
12661
|
-
}[]> | null | undefined;
|
|
12662
|
-
primaryGenre?: "Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy" | null | undefined;
|
|
12663
|
-
genres?: ("Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy")[] | null | undefined;
|
|
12664
|
-
players?: ("Single" | "Multi" | "CrossPlatformMulti" | "MMO" | "Coop" | "LocalCoop")[] | null | undefined;
|
|
12665
|
-
releaseDate?: string | null | undefined;
|
|
12666
|
-
namespace: string;
|
|
12667
|
-
itemId: string;
|
|
12668
|
-
}, {
|
|
12669
|
-
publisher?: string | null | undefined;
|
|
12670
|
-
language?: string | null | undefined;
|
|
12671
|
-
platforms?: ("Windows" | "MacOS" | "Linux" | "IOS" | "Android")[] | null | undefined;
|
|
12672
|
-
region?: string | null | undefined;
|
|
12673
|
-
slogan?: string | null | undefined;
|
|
12674
|
-
announcement?: string | null | undefined;
|
|
12675
|
-
carousel?: {
|
|
12676
|
-
type?: "image" | "video" | null | undefined;
|
|
12677
|
-
url?: string | null | undefined;
|
|
12678
|
-
thumbnailUrl?: string | null | undefined;
|
|
12679
|
-
videoSource?: "generic" | "youtube" | "vimeo" | null | undefined;
|
|
12680
|
-
alt?: string | null | undefined;
|
|
12681
|
-
previewUrl?: string | null | undefined;
|
|
12682
|
-
}[] | null | undefined;
|
|
12683
|
-
developer?: string | null | undefined;
|
|
12684
|
-
websiteUrl?: string | null | undefined;
|
|
12685
|
-
forumUrl?: string | null | undefined;
|
|
12686
|
-
platformRequirements?: Record<string, {
|
|
12687
|
-
osVersion?: string | null | undefined;
|
|
12688
|
-
processor?: string | null | undefined;
|
|
12689
|
-
ram?: string | null | undefined;
|
|
12690
|
-
graphics?: string | null | undefined;
|
|
12691
|
-
directXVersion?: string | null | undefined;
|
|
12692
|
-
diskSpace?: string | null | undefined;
|
|
12693
|
-
soundCard?: string | null | undefined;
|
|
12694
|
-
additionals?: string | null | undefined;
|
|
12695
|
-
label: string;
|
|
12696
|
-
}[]> | null | undefined;
|
|
12697
|
-
primaryGenre?: "Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy" | null | undefined;
|
|
12698
|
-
genres?: ("Action" | "Adventure" | "Casual" | "FreeToPlay" | "Indie" | "MassivelyMultiplayer" | "Racing" | "RPG" | "Simulation" | "Sports" | "Strategy")[] | null | undefined;
|
|
12699
|
-
players?: ("Single" | "Multi" | "CrossPlatformMulti" | "MMO" | "Coop" | "LocalCoop")[] | null | undefined;
|
|
12700
|
-
releaseDate?: string | null | undefined;
|
|
12701
|
-
namespace: string;
|
|
12702
|
-
itemId: string;
|
|
12703
|
-
}>;
|
|
12704
|
-
interface AppInfo extends z.TypeOf<typeof AppInfo> {
|
|
12705
|
-
}
|
|
12706
|
-
|
|
12707
|
-
declare const ItemDynamicDataInfo: z.ZodObject<{
|
|
12708
|
-
itemId: z.ZodString;
|
|
12709
|
-
namespace: z.ZodString;
|
|
12710
|
-
availableCount: z.ZodNumber;
|
|
12711
|
-
userAvailableCount: z.ZodNumber;
|
|
12712
|
-
userPurchaseLimit: z.ZodNumber;
|
|
12713
|
-
}, "strip", z.ZodTypeAny, {
|
|
12714
|
-
namespace: string;
|
|
12715
|
-
itemId: string;
|
|
12716
|
-
availableCount: number;
|
|
12717
|
-
userAvailableCount: number;
|
|
12718
|
-
userPurchaseLimit: number;
|
|
12719
|
-
}, {
|
|
12948
|
+
} | null | undefined;
|
|
12949
|
+
fresh?: boolean | null | undefined;
|
|
12950
|
+
localExt?: Record<string, any> | null | undefined;
|
|
12951
|
+
name: string;
|
|
12952
|
+
status: "ACTIVE" | "INACTIVE";
|
|
12720
12953
|
namespace: string;
|
|
12954
|
+
createdAt: string;
|
|
12955
|
+
updatedAt: string;
|
|
12956
|
+
language: string;
|
|
12957
|
+
title: string;
|
|
12721
12958
|
itemId: string;
|
|
12722
|
-
|
|
12723
|
-
|
|
12724
|
-
|
|
12959
|
+
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
12960
|
+
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
12961
|
+
region: string;
|
|
12962
|
+
categoryPath: string;
|
|
12725
12963
|
}>;
|
|
12726
|
-
interface
|
|
12964
|
+
interface ItemInfo extends z.TypeOf<typeof ItemInfo> {
|
|
12727
12965
|
}
|
|
12728
12966
|
|
|
12729
12967
|
declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
|
|
@@ -14667,63 +14905,70 @@ declare class ItemApi {
|
|
|
14667
14905
|
*/
|
|
14668
14906
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
14669
14907
|
/**
|
|
14670
|
-
*
|
|
14908
|
+
* GET [/platform/public/namespaces/{namespace}/items/byAppId](api)
|
|
14909
|
+
*
|
|
14910
|
+
* This API is used to get item by appId
|
|
14911
|
+
*
|
|
14671
14912
|
* Returns: the item with that appId
|
|
14672
14913
|
*/
|
|
14673
|
-
getItemByAppId({ ...queryParams }: {
|
|
14914
|
+
getItemByAppId: ({ ...queryParams }: {
|
|
14674
14915
|
storeId?: string;
|
|
14675
14916
|
appId: string;
|
|
14676
14917
|
language?: string;
|
|
14677
14918
|
region?: string;
|
|
14678
|
-
})
|
|
14919
|
+
}) => Promise<IResponseWithSync<ItemInfo>>;
|
|
14679
14920
|
/**
|
|
14680
|
-
*
|
|
14921
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/dynamic](api)
|
|
14922
|
+
*
|
|
14923
|
+
* Get item dynamic data for a published item
|
|
14924
|
+
*
|
|
14681
14925
|
* Returns: item dynamic data
|
|
14682
14926
|
*/
|
|
14683
|
-
getItemByItemIdDynamic(itemId: string)
|
|
14684
|
-
|
|
14927
|
+
getItemByItemIdDynamic: (itemId: string) => Promise<IResponseWithSync<ItemDynamicDataInfo>>;
|
|
14928
|
+
/**
|
|
14929
|
+
* GET [/platform/public/namespaces/{namespace}/items/byCriteria](api)
|
|
14930
|
+
*/
|
|
14931
|
+
fetchItemsByCriteria: ({ queryParams }: {
|
|
14685
14932
|
queryParams?: Parameters<Item$['fetchNsItemsByCriteria']>[0];
|
|
14686
|
-
})
|
|
14933
|
+
}) => Promise<IResponseWithSync<ItemPagingSlicedResult>>;
|
|
14687
14934
|
/**
|
|
14935
|
+
* GET [/platform/public/namespaces/{namespace}/items/locale/byIds](api)
|
|
14936
|
+
*
|
|
14688
14937
|
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return.
|
|
14938
|
+
*
|
|
14689
14939
|
* Returns: the list of items
|
|
14690
14940
|
*/
|
|
14691
|
-
getItemsByItemIds({ queryParams }: {
|
|
14692
|
-
queryParams: QueryParamsItemIds;
|
|
14693
|
-
}): Promise<IResponseWithSync<ItemInfoArray>>;
|
|
14694
|
-
/**
|
|
14695
|
-
* Fetch the items and convert it into a map of `itemId` and its item info
|
|
14696
|
-
*/
|
|
14697
|
-
fetchAvailableItemInfoMap({ queryParams }: {
|
|
14941
|
+
getItemsByItemIds: ({ queryParams }: {
|
|
14698
14942
|
queryParams: QueryParamsItemIds;
|
|
14699
|
-
})
|
|
14700
|
-
response: null;
|
|
14701
|
-
error: IResponseError;
|
|
14702
|
-
onSync: (syncedData: (_: IResponse<ItemInfoArray>) => void) => void;
|
|
14703
|
-
} | {
|
|
14704
|
-
error: null;
|
|
14705
|
-
value: Map<string, ItemInfo>;
|
|
14706
|
-
}>;
|
|
14943
|
+
}) => Promise<IResponseWithSync<ItemInfoArray>>;
|
|
14707
14944
|
/**
|
|
14945
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/locale](api)
|
|
14946
|
+
*
|
|
14708
14947
|
* This API is used to get an item in locale. If item not exist in specific region, default region item will return.
|
|
14948
|
+
*
|
|
14709
14949
|
* Returns: item data
|
|
14710
14950
|
*/
|
|
14711
|
-
getItemsByItemIdLocale({ itemId, queryParams }: {
|
|
14951
|
+
getItemsByItemIdLocale: ({ itemId, queryParams }: {
|
|
14712
14952
|
itemId: string;
|
|
14713
14953
|
queryParams?: Parameters<Item$['fetchNsItemsByItemidLocale']>[1];
|
|
14714
|
-
})
|
|
14954
|
+
}) => Promise<IResponseWithSync<PopulatedItemInfo>>;
|
|
14715
14955
|
/**
|
|
14956
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/app/locale](api)
|
|
14957
|
+
*
|
|
14716
14958
|
* This API is used to get an app in locale. If app not exist in specific region, default region app will return.
|
|
14959
|
+
*
|
|
14717
14960
|
* Returns: app data
|
|
14718
14961
|
*/
|
|
14719
|
-
getAppInfoByItemId({ itemId, queryParams }: {
|
|
14962
|
+
getAppInfoByItemId: ({ itemId, queryParams }: {
|
|
14720
14963
|
itemId: string;
|
|
14721
|
-
queryParams?: QueryParams;
|
|
14722
|
-
})
|
|
14964
|
+
queryParams?: QueryParams | undefined;
|
|
14965
|
+
}) => Promise<IResponseWithSync<AppInfo>>;
|
|
14723
14966
|
/**
|
|
14967
|
+
* POST [/platform/public/namespaces/{namespace}/items/purchase/conditions/validate](api)
|
|
14968
|
+
*
|
|
14724
14969
|
* This API is used to validate user item purchase condition
|
|
14725
14970
|
*/
|
|
14726
|
-
validatePurchaseCondition(data: ItemPurchaseConditionValidateRequest)
|
|
14971
|
+
validatePurchaseCondition: (data: ItemPurchaseConditionValidateRequest) => Promise<IResponse<ItemPurchaseConditionValidateResultArray>>;
|
|
14727
14972
|
private newInstance;
|
|
14728
14973
|
}
|
|
14729
14974
|
|
|
@@ -16425,33 +16670,97 @@ declare class OrderApi {
|
|
|
16425
16670
|
*/
|
|
16426
16671
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16427
16672
|
/**
|
|
16428
|
-
*
|
|
16429
|
-
*
|
|
16673
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/orders](api)
|
|
16674
|
+
*
|
|
16675
|
+
* Query user orders
|
|
16676
|
+
*
|
|
16677
|
+
* Returns a paginated list of `OrderInfo`:
|
|
16678
|
+
* <pre lang="json">{
|
|
16679
|
+
orderNo,
|
|
16680
|
+
paymentOrderNo,
|
|
16681
|
+
namespace,
|
|
16682
|
+
userId,
|
|
16683
|
+
itemId,
|
|
16684
|
+
sandbox,
|
|
16685
|
+
quantity,
|
|
16686
|
+
price,
|
|
16687
|
+
discountedPrice,
|
|
16688
|
+
creationOptions
|
|
16689
|
+
paymentProvider: ('WALLET', 'XSOLLA', 'ADYEN', 'STRIPE', 'CHECKOUT', 'ALIPAY', 'WXPAY', 'PAYPAL'),
|
|
16690
|
+
paymentMethod,
|
|
16691
|
+
tax,
|
|
16692
|
+
vat,
|
|
16693
|
+
salesTax,
|
|
16694
|
+
paymentProviderFee,
|
|
16695
|
+
paymentMethodFee
|
|
16696
|
+
currency: CurrencySummary,
|
|
16697
|
+
paymentStationUrl,
|
|
16698
|
+
itemSnapshot,
|
|
16699
|
+
region,
|
|
16700
|
+
language,
|
|
16701
|
+
status: (
|
|
16702
|
+
'INIT',
|
|
16703
|
+
'CHARGED',
|
|
16704
|
+
'CHARGEBACK',
|
|
16705
|
+
'CHARGEBACK_REVERSED',
|
|
16706
|
+
'FULFILLED',
|
|
16707
|
+
'FULFILL_FAILED',
|
|
16708
|
+
'REFUNDING',
|
|
16709
|
+
'REFUNDED',
|
|
16710
|
+
'REFUND_FAILED',
|
|
16711
|
+
'CLOSED',
|
|
16712
|
+
'DELETED'
|
|
16713
|
+
),
|
|
16714
|
+
statusReason,
|
|
16715
|
+
createdTime,
|
|
16716
|
+
chargedTime,
|
|
16717
|
+
fulfilledTime,
|
|
16718
|
+
refundedTime,
|
|
16719
|
+
chargebackTime,
|
|
16720
|
+
chargebackReversedTime,
|
|
16721
|
+
expireTime,
|
|
16722
|
+
paymentRemainSeconds,
|
|
16723
|
+
ext,
|
|
16724
|
+
totalTax,
|
|
16725
|
+
totalPrice,
|
|
16726
|
+
subtotalPrice,
|
|
16727
|
+
createdAt,
|
|
16728
|
+
updatedAt
|
|
16729
|
+
}</pre>
|
|
16430
16730
|
*/
|
|
16431
16731
|
getOrderList: ({ userId, queryParams }: {
|
|
16432
16732
|
userId: string;
|
|
16433
16733
|
queryParams?: Parameters<Order$['fetchNsUsersByUseridOrders']>[1];
|
|
16434
16734
|
}) => Promise<IResponseWithSync<OrderPagingSlicedResult>>;
|
|
16435
16735
|
/**
|
|
16736
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}](api)
|
|
16737
|
+
*
|
|
16436
16738
|
* Get user order.
|
|
16437
|
-
*
|
|
16739
|
+
*
|
|
16740
|
+
* Returns: `OrderInfo`
|
|
16438
16741
|
*/
|
|
16439
16742
|
getOrderByOrderNo: ({ userId, orderNo }: {
|
|
16440
16743
|
userId: string;
|
|
16441
16744
|
orderNo: string;
|
|
16442
16745
|
}) => Promise<IResponseWithSync<OrderInfo>>;
|
|
16443
16746
|
/**
|
|
16747
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/cancel](api)
|
|
16748
|
+
*
|
|
16444
16749
|
* Cancel user order.
|
|
16445
|
-
*
|
|
16750
|
+
*
|
|
16751
|
+
* Returns: cancelled `OrderInfo`
|
|
16446
16752
|
*/
|
|
16447
16753
|
cancelOrder: ({ userId, orderNo }: {
|
|
16448
16754
|
userId: string;
|
|
16449
16755
|
orderNo: string;
|
|
16450
16756
|
}) => Promise<IResponse<OrderInfo>>;
|
|
16451
16757
|
/**
|
|
16758
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/orders](api)
|
|
16759
|
+
*
|
|
16452
16760
|
* Create an order. The result contains the checkout link and payment token.
|
|
16453
16761
|
* User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.
|
|
16454
|
-
*
|
|
16762
|
+
*
|
|
16763
|
+
* Returns: created `OrderInfo`
|
|
16455
16764
|
*/
|
|
16456
16765
|
createOrder: ({ userId, data }: {
|
|
16457
16766
|
userId: string;
|
|
@@ -16459,6 +16768,8 @@ declare class OrderApi {
|
|
|
16459
16768
|
}) => Promise<IResponse<OrderInfo>>;
|
|
16460
16769
|
/**
|
|
16461
16770
|
* Fetch all information needed for a user to check the user's availability to purchase the item
|
|
16771
|
+
*
|
|
16772
|
+
* @internal
|
|
16462
16773
|
*/
|
|
16463
16774
|
fetchPrePurchaseInformation: ({ userId, item }: {
|
|
16464
16775
|
userId?: string | null | undefined;
|
|
@@ -16727,14 +17038,17 @@ declare class PaymentApi {
|
|
|
16727
17038
|
*/
|
|
16728
17039
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16729
17040
|
/**
|
|
16730
|
-
*
|
|
16731
|
-
*
|
|
17041
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts](api)
|
|
17042
|
+
*
|
|
17043
|
+
* Get payment accounts.
|
|
17044
|
+
*
|
|
17045
|
+
* Returns: Payment account list `PaymentAccountArray`
|
|
16732
17046
|
*/
|
|
16733
17047
|
getPaymentAccounts: (userId: string) => Promise<IResponseWithSync<PaymentAccountArray>>;
|
|
16734
17048
|
/**
|
|
16735
|
-
*
|
|
17049
|
+
* DELETE [/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts/{type}/{id}](api)
|
|
16736
17050
|
*
|
|
16737
|
-
*
|
|
17051
|
+
* Delete payment account.
|
|
16738
17052
|
*/
|
|
16739
17053
|
deletePaymentAccount: ({ userId, type, id }: {
|
|
16740
17054
|
userId: string;
|
|
@@ -16742,22 +17056,34 @@ declare class PaymentApi {
|
|
|
16742
17056
|
id: string;
|
|
16743
17057
|
}) => Promise<IResponse<unknown>>;
|
|
16744
17058
|
/**
|
|
17059
|
+
* GET [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/info](api)
|
|
17060
|
+
*
|
|
16745
17061
|
* Get payment order info.
|
|
16746
|
-
*
|
|
17062
|
+
*
|
|
17063
|
+
* Returns: Payment order details `PaymentOrderDetails`
|
|
16747
17064
|
*/
|
|
16748
17065
|
getPaymentInfo: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderDetails>>;
|
|
16749
17066
|
/**
|
|
17067
|
+
* POST [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/pay](api)
|
|
17068
|
+
*
|
|
16750
17069
|
* Do payment(For now, this only support checkout.com).
|
|
17070
|
+
*
|
|
16751
17071
|
* Returns: Payment process result
|
|
16752
17072
|
*/
|
|
16753
17073
|
processPaymentOrder: (paymentOrderNo: string, data: PaymentToken, queryParams: Parameters<PaymentStation$['postNsPaymentOrdersByPaymentordernoPay']>[2]) => Promise<IResponse<PaymentProcessResult>>;
|
|
16754
17074
|
/**
|
|
17075
|
+
* GET [/platform/public/namespaces/{namespace}/payment/publicconfig](api)
|
|
17076
|
+
*
|
|
16755
17077
|
* Get payment provider public config, at current only Strip provide public config.
|
|
17078
|
+
*
|
|
16756
17079
|
* Returns: Public config
|
|
16757
17080
|
*/
|
|
16758
17081
|
getPaymentProviderPublicConfig: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentPublicconfig']>[0]['paymentProvider'], region: string | null, sandbox?: boolean | null | undefined) => Promise<IResponseWithSync<unknown>>;
|
|
16759
17082
|
/**
|
|
17083
|
+
* GET [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/status](api)
|
|
17084
|
+
*
|
|
16760
17085
|
* Check payment order paid status.
|
|
17086
|
+
*
|
|
16761
17087
|
* Returns: Payment order paid result
|
|
16762
17088
|
*/
|
|
16763
17089
|
getPaymentOrderStatus: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderPaidResult>>;
|
|
@@ -16767,12 +17093,18 @@ declare class PaymentApi {
|
|
|
16767
17093
|
*/
|
|
16768
17094
|
getPaymentMethods: (paymentOrderNo: string | null) => Promise<IResponseWithSync<PaymentMethodArray>>;
|
|
16769
17095
|
/**
|
|
17096
|
+
* GET [/platform/public/namespaces/{namespace}/payment/methods](api)
|
|
17097
|
+
*
|
|
16770
17098
|
* Check and get a payment order's should pay tax.
|
|
17099
|
+
*
|
|
16771
17100
|
* Returns: tax result
|
|
16772
17101
|
*/
|
|
16773
17102
|
getPaymentTax: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentTax']>[0]['paymentProvider'], paymentOrderNo: string | null, zipCode?: string | null | undefined) => Promise<IResponseWithSync<TaxResult>>;
|
|
16774
17103
|
/**
|
|
17104
|
+
* POST [/platform/public/namespaces/{namespace}/payment/link](api)
|
|
17105
|
+
*
|
|
16775
17106
|
* Get payment url.
|
|
17107
|
+
*
|
|
16776
17108
|
* Returns: Get payment link
|
|
16777
17109
|
*/
|
|
16778
17110
|
createPaymentUrl: (data: PaymentUrlCreate) => Promise<IResponse<PaymentUrl>>;
|
|
@@ -17119,6 +17451,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17119
17451
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17120
17452
|
id: z.ZodString;
|
|
17121
17453
|
namespace: z.ZodString;
|
|
17454
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17122
17455
|
userId: z.ZodString;
|
|
17123
17456
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
17124
17457
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -17132,6 +17465,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17132
17465
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17133
17466
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17134
17467
|
}, "strip", z.ZodTypeAny, {
|
|
17468
|
+
name?: string | null | undefined;
|
|
17135
17469
|
endDate?: string | null | undefined;
|
|
17136
17470
|
itemId?: string | null | undefined;
|
|
17137
17471
|
stackable?: boolean | null | undefined;
|
|
@@ -17147,6 +17481,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17147
17481
|
id: string;
|
|
17148
17482
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
17149
17483
|
}, {
|
|
17484
|
+
name?: string | null | undefined;
|
|
17150
17485
|
endDate?: string | null | undefined;
|
|
17151
17486
|
itemId?: string | null | undefined;
|
|
17152
17487
|
stackable?: boolean | null | undefined;
|
|
@@ -17668,6 +18003,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17668
18003
|
retryAttempted?: number | null | undefined;
|
|
17669
18004
|
nextBillingDate?: string | null | undefined;
|
|
17670
18005
|
entitlements?: {
|
|
18006
|
+
name?: string | null | undefined;
|
|
17671
18007
|
endDate?: string | null | undefined;
|
|
17672
18008
|
itemId?: string | null | undefined;
|
|
17673
18009
|
stackable?: boolean | null | undefined;
|
|
@@ -17819,6 +18155,7 @@ declare const SubscriptionInfo: z.ZodObject<{
|
|
|
17819
18155
|
retryAttempted?: number | null | undefined;
|
|
17820
18156
|
nextBillingDate?: string | null | undefined;
|
|
17821
18157
|
entitlements?: {
|
|
18158
|
+
name?: string | null | undefined;
|
|
17822
18159
|
endDate?: string | null | undefined;
|
|
17823
18160
|
itemId?: string | null | undefined;
|
|
17824
18161
|
stackable?: boolean | null | undefined;
|
|
@@ -17917,6 +18254,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
17917
18254
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17918
18255
|
id: z.ZodString;
|
|
17919
18256
|
namespace: z.ZodString;
|
|
18257
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17920
18258
|
userId: z.ZodString;
|
|
17921
18259
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
17922
18260
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -17930,6 +18268,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
17930
18268
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17931
18269
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
17932
18270
|
}, "strip", z.ZodTypeAny, {
|
|
18271
|
+
name?: string | null | undefined;
|
|
17933
18272
|
endDate?: string | null | undefined;
|
|
17934
18273
|
itemId?: string | null | undefined;
|
|
17935
18274
|
stackable?: boolean | null | undefined;
|
|
@@ -17945,6 +18284,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
17945
18284
|
id: string;
|
|
17946
18285
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
17947
18286
|
}, {
|
|
18287
|
+
name?: string | null | undefined;
|
|
17948
18288
|
endDate?: string | null | undefined;
|
|
17949
18289
|
itemId?: string | null | undefined;
|
|
17950
18290
|
stackable?: boolean | null | undefined;
|
|
@@ -18466,6 +18806,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18466
18806
|
retryAttempted?: number | null | undefined;
|
|
18467
18807
|
nextBillingDate?: string | null | undefined;
|
|
18468
18808
|
entitlements?: {
|
|
18809
|
+
name?: string | null | undefined;
|
|
18469
18810
|
endDate?: string | null | undefined;
|
|
18470
18811
|
itemId?: string | null | undefined;
|
|
18471
18812
|
stackable?: boolean | null | undefined;
|
|
@@ -18617,6 +18958,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18617
18958
|
retryAttempted?: number | null | undefined;
|
|
18618
18959
|
nextBillingDate?: string | null | undefined;
|
|
18619
18960
|
entitlements?: {
|
|
18961
|
+
name?: string | null | undefined;
|
|
18620
18962
|
endDate?: string | null | undefined;
|
|
18621
18963
|
itemId?: string | null | undefined;
|
|
18622
18964
|
stackable?: boolean | null | undefined;
|
|
@@ -18784,6 +19126,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18784
19126
|
retryAttempted?: number | null | undefined;
|
|
18785
19127
|
nextBillingDate?: string | null | undefined;
|
|
18786
19128
|
entitlements?: {
|
|
19129
|
+
name?: string | null | undefined;
|
|
18787
19130
|
endDate?: string | null | undefined;
|
|
18788
19131
|
itemId?: string | null | undefined;
|
|
18789
19132
|
stackable?: boolean | null | undefined;
|
|
@@ -18941,6 +19284,7 @@ declare const SubscriptionPagingSlicedResult: z.ZodObject<{
|
|
|
18941
19284
|
retryAttempted?: number | null | undefined;
|
|
18942
19285
|
nextBillingDate?: string | null | undefined;
|
|
18943
19286
|
entitlements?: {
|
|
19287
|
+
name?: string | null | undefined;
|
|
18944
19288
|
endDate?: string | null | undefined;
|
|
18945
19289
|
itemId?: string | null | undefined;
|
|
18946
19290
|
stackable?: boolean | null | undefined;
|
|
@@ -19050,22 +19394,30 @@ declare class SubscriptionApi {
|
|
|
19050
19394
|
*/
|
|
19051
19395
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
19052
19396
|
/**
|
|
19397
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions](api)
|
|
19398
|
+
*
|
|
19053
19399
|
* Query user subscriptions.
|
|
19400
|
+
*
|
|
19054
19401
|
* Returns: paginated subscription
|
|
19055
19402
|
*/
|
|
19056
|
-
getUserSubscriptions({ userId, queryParams }: {
|
|
19403
|
+
getUserSubscriptions: ({ userId, queryParams }: {
|
|
19057
19404
|
userId: string;
|
|
19058
19405
|
queryParams?: Parameters<Subscription$['fetchNsUsersByUseridSubscriptions']>[1];
|
|
19059
|
-
})
|
|
19406
|
+
}) => Promise<IResponseWithSync<SubscriptionPagingSlicedResult>>;
|
|
19060
19407
|
/**
|
|
19408
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}](api)
|
|
19409
|
+
*
|
|
19061
19410
|
* Get user subscription.
|
|
19411
|
+
*
|
|
19062
19412
|
* Returns: subscription
|
|
19063
19413
|
*/
|
|
19064
|
-
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }: {
|
|
19414
|
+
getUserSubscriptionBySubscriptionId: ({ userId, subscriptionId }: {
|
|
19065
19415
|
userId: string;
|
|
19066
19416
|
subscriptionId: string;
|
|
19067
|
-
})
|
|
19417
|
+
}) => Promise<IResponseWithSync<SubscriptionInfo>>;
|
|
19068
19418
|
/**
|
|
19419
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions](api)
|
|
19420
|
+
*
|
|
19069
19421
|
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true.
|
|
19070
19422
|
* __ACTIVE USER subscription can't do subscribe again.__
|
|
19071
19423
|
* __The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.__
|
|
@@ -19073,44 +19425,53 @@ declare class SubscriptionApi {
|
|
|
19073
19425
|
*
|
|
19074
19426
|
* Returns: created subscription
|
|
19075
19427
|
*/
|
|
19076
|
-
createSubscription({ userId, data }: {
|
|
19428
|
+
createSubscription: ({ userId, data }: {
|
|
19077
19429
|
userId: string;
|
|
19078
19430
|
data: SubscribeRequest;
|
|
19079
|
-
})
|
|
19431
|
+
}) => Promise<IResponse<unknown>>;
|
|
19080
19432
|
/**
|
|
19433
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/history](api)
|
|
19434
|
+
*
|
|
19081
19435
|
* Get user subscription billing histories.
|
|
19436
|
+
*
|
|
19082
19437
|
* Returns: paginated subscription history
|
|
19083
19438
|
*/
|
|
19084
|
-
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }: {
|
|
19439
|
+
getUserSubscriptionBillingHistory: ({ userId, subscriptionId, queryParams }: {
|
|
19085
19440
|
userId: string;
|
|
19086
19441
|
subscriptionId: string;
|
|
19087
19442
|
queryParams?: {
|
|
19088
|
-
excludeFree?: boolean | null;
|
|
19089
|
-
offset?: number;
|
|
19090
|
-
limit?: number;
|
|
19091
|
-
};
|
|
19092
|
-
})
|
|
19443
|
+
excludeFree?: boolean | null | undefined;
|
|
19444
|
+
offset?: number | undefined;
|
|
19445
|
+
limit?: number | undefined;
|
|
19446
|
+
} | undefined;
|
|
19447
|
+
}) => Promise<IResponseWithSync<BillingHistoryPagingSlicedResult>>;
|
|
19093
19448
|
/**
|
|
19449
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/billingAccount](api)
|
|
19450
|
+
*
|
|
19094
19451
|
* Request to change a subscription billing account, this will guide user to payment station.
|
|
19095
19452
|
* The actual change will happen at the 0 payment notification successfully handled.
|
|
19096
19453
|
* Only ACTIVE USER subscription with real currency billing account can be changed.
|
|
19454
|
+
*
|
|
19097
19455
|
* Returns: updated subscription
|
|
19098
19456
|
*/
|
|
19099
|
-
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }: {
|
|
19457
|
+
updateUserSubscriptionPaymentMethod: ({ userId, subscriptionId }: {
|
|
19100
19458
|
userId: string;
|
|
19101
19459
|
subscriptionId: string;
|
|
19102
|
-
})
|
|
19460
|
+
}) => Promise<IResponse<SubscriptionInfo>>;
|
|
19103
19461
|
/**
|
|
19462
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/cancel](api)
|
|
19463
|
+
*
|
|
19104
19464
|
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
19105
19465
|
* __Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.__
|
|
19106
19466
|
* Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.
|
|
19467
|
+
*
|
|
19107
19468
|
* Returns: cancelled subscription
|
|
19108
19469
|
*/
|
|
19109
|
-
cancelUserSubscription({ userId, subscriptionId, data }: {
|
|
19470
|
+
cancelUserSubscription: ({ userId, subscriptionId, data }: {
|
|
19110
19471
|
userId: string;
|
|
19111
19472
|
subscriptionId: string;
|
|
19112
19473
|
data: CancelRequest;
|
|
19113
|
-
})
|
|
19474
|
+
}) => Promise<IResponse<SubscriptionInfo>>;
|
|
19114
19475
|
private newInstance;
|
|
19115
19476
|
}
|
|
19116
19477
|
|
|
@@ -19189,21 +19550,28 @@ declare class WalletApi {
|
|
|
19189
19550
|
*/
|
|
19190
19551
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
19191
19552
|
/**
|
|
19553
|
+
* GET [/platform/public/namespaces/{namespace}/users/me/wallets/{currencyCode}](api)
|
|
19554
|
+
*
|
|
19192
19555
|
* get my wallet by currency code and namespace.
|
|
19193
19556
|
*
|
|
19194
19557
|
* Returns: wallet info
|
|
19558
|
+
*
|
|
19195
19559
|
* Path's namespace:
|
|
19196
19560
|
* - can be filled with __publisher namespace__ in order to get __publisher user wallet__
|
|
19197
19561
|
* - can be filled with __game namespace__ in order to get __game user wallet__
|
|
19198
19562
|
*/
|
|
19199
19563
|
getUserMeWallet: (currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19200
19564
|
/**
|
|
19565
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}](api)
|
|
19566
|
+
*
|
|
19201
19567
|
* Get a wallet by currency code.
|
|
19568
|
+
*
|
|
19202
19569
|
* Returns: wallet info
|
|
19203
19570
|
*/
|
|
19204
19571
|
getWalletByUserId: (userId: string, currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19205
19572
|
/**
|
|
19206
19573
|
* get a map of wallet represented by its currency code
|
|
19574
|
+
* @internal
|
|
19207
19575
|
*/
|
|
19208
19576
|
getWalletMap: ({ userId, currencyCodes }: {
|
|
19209
19577
|
userId: string;
|
|
@@ -19218,31 +19586,15 @@ declare class WalletApi {
|
|
|
19218
19586
|
private newInstance;
|
|
19219
19587
|
}
|
|
19220
19588
|
|
|
19221
|
-
declare const PLATFORM: {
|
|
19222
|
-
LINUX: string;
|
|
19223
|
-
WINDOWS: string;
|
|
19224
|
-
};
|
|
19225
|
-
declare const ARCH: {
|
|
19226
|
-
[arch: string]: string;
|
|
19227
|
-
};
|
|
19228
|
-
declare const BUILDINFO_PLATFORM_ID: {
|
|
19229
|
-
[platformId: string]: string;
|
|
19230
|
-
};
|
|
19231
|
-
interface PlatformMatchMap {
|
|
19232
|
-
arch: string[];
|
|
19233
|
-
platform: string;
|
|
19234
|
-
targetPlatform: string[];
|
|
19235
|
-
}
|
|
19236
|
-
declare const AvailablePlatform: PlatformMatchMap[];
|
|
19237
|
-
declare enum LogLevel {
|
|
19238
|
-
'DEBUG' = "DEBUG",
|
|
19239
|
-
'INFO' = "INFO"
|
|
19240
|
-
}
|
|
19241
|
-
|
|
19242
19589
|
declare type Overrides = {
|
|
19243
19590
|
config?: SDKRequestConfig;
|
|
19244
19591
|
cache?: boolean;
|
|
19245
19592
|
};
|
|
19593
|
+
declare type ServiceVersion = {
|
|
19594
|
+
name: string;
|
|
19595
|
+
version: string | undefined;
|
|
19596
|
+
buildDate: string;
|
|
19597
|
+
};
|
|
19246
19598
|
interface AccelbyteSDK {
|
|
19247
19599
|
IAM: {
|
|
19248
19600
|
UserAuthorization(overrides?: Overrides): UserAuthorizationApi;
|
|
@@ -19251,17 +19603,20 @@ interface AccelbyteSDK {
|
|
|
19251
19603
|
InputValidation(overrides?: Overrides): InputValidationsApi;
|
|
19252
19604
|
ThirdPartyCredential(overrides?: Overrides): ThirdPartyCredentialApi;
|
|
19253
19605
|
TwoFA(overrides?: Overrides): TwoFA;
|
|
19606
|
+
version: ServiceVersion;
|
|
19254
19607
|
};
|
|
19255
19608
|
BuildInfo: {
|
|
19256
19609
|
Downloader(overrides?: Overrides): DownloaderApi;
|
|
19257
19610
|
DLC(overrides?: Overrides): DlcApi;
|
|
19258
19611
|
Caching(overrides?: Overrides): CachingApi;
|
|
19612
|
+
version: ServiceVersion;
|
|
19259
19613
|
};
|
|
19260
19614
|
Basic: {
|
|
19261
19615
|
Misc(overrides?: Overrides): MiscApi;
|
|
19262
19616
|
UserProfile(overrides?: Overrides): UserProfileApi;
|
|
19263
19617
|
FileUpload(overrides?: Overrides): FileUploadApi;
|
|
19264
19618
|
Namespace(overrides?: Overrides): NamespaceApi;
|
|
19619
|
+
version: ServiceVersion;
|
|
19265
19620
|
};
|
|
19266
19621
|
Platform: {
|
|
19267
19622
|
Currency(overrides?: Overrides): CurrencyApi;
|
|
@@ -19272,23 +19627,29 @@ interface AccelbyteSDK {
|
|
|
19272
19627
|
Payment(overrides?: Overrides): PaymentApi;
|
|
19273
19628
|
Subscription(overrides?: Overrides): SubscriptionApi;
|
|
19274
19629
|
Wallet(overrides?: Overrides): WalletApi;
|
|
19630
|
+
version: ServiceVersion;
|
|
19275
19631
|
};
|
|
19276
19632
|
Legal: {
|
|
19277
19633
|
Eligibilities(overrides?: Overrides): EligibilitiesApi;
|
|
19278
19634
|
Policies(overrides?: Overrides): PoliciesApi;
|
|
19279
19635
|
Agreement(overrides?: Overrides): AgreementApi;
|
|
19280
19636
|
LocalizedPolicyVersions(overrides?: Overrides): LocalizedPolicyVersionsApi;
|
|
19637
|
+
version: ServiceVersion;
|
|
19281
19638
|
};
|
|
19282
19639
|
GDPR: {
|
|
19283
19640
|
DataDeletion(overrides?: Overrides): DataDeletionApi;
|
|
19284
19641
|
DataRetrieval(overrides?: Overrides): DataRetrievalApi;
|
|
19642
|
+
version: ServiceVersion;
|
|
19285
19643
|
};
|
|
19286
19644
|
Event: {
|
|
19287
19645
|
Event(overrides?: Overrides): EventApi;
|
|
19646
|
+
version: ServiceVersion;
|
|
19288
19647
|
};
|
|
19289
19648
|
AccelbyteConfig: {
|
|
19290
19649
|
PublicTemplate<ConfigKeysEnum extends string>(overrides?: Overrides): PublicTemplateApi<ConfigKeysEnum>;
|
|
19650
|
+
version: ServiceVersion;
|
|
19291
19651
|
};
|
|
19652
|
+
version: () => void;
|
|
19292
19653
|
refreshTokens(newAccessToken: string | undefined | null, newRefreshToken?: string | undefined | null): any;
|
|
19293
19654
|
}
|
|
19294
19655
|
interface SDKOptions {
|
|
@@ -24764,16 +25125,16 @@ declare const InviteUserRequestV4: z.ZodObject<{
|
|
|
24764
25125
|
assignedNamespaces: z.ZodArray<z.ZodString, "many">;
|
|
24765
25126
|
emailAddresses: z.ZodArray<z.ZodString, "many">;
|
|
24766
25127
|
isAdmin: z.ZodBoolean;
|
|
24767
|
-
namespace: z.ZodString
|
|
25128
|
+
namespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
24768
25129
|
roleId: z.ZodString;
|
|
24769
25130
|
}, "strip", z.ZodTypeAny, {
|
|
24770
|
-
namespace
|
|
25131
|
+
namespace?: string | null | undefined;
|
|
24771
25132
|
roleId: string;
|
|
24772
25133
|
emailAddresses: string[];
|
|
24773
25134
|
assignedNamespaces: string[];
|
|
24774
25135
|
isAdmin: boolean;
|
|
24775
25136
|
}, {
|
|
24776
|
-
namespace
|
|
25137
|
+
namespace?: string | null | undefined;
|
|
24777
25138
|
roleId: string;
|
|
24778
25139
|
emailAddresses: string[];
|
|
24779
25140
|
assignedNamespaces: string[];
|
|
@@ -27630,7 +27991,7 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27630
27991
|
ACSURL: z.ZodString;
|
|
27631
27992
|
AWSCognitoRegion: z.ZodString;
|
|
27632
27993
|
AWSCognitoUserPool: z.ZodString;
|
|
27633
|
-
AllowedClients: z.ZodArray<z.ZodString, "many"
|
|
27994
|
+
AllowedClients: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
27634
27995
|
AppId: z.ZodString;
|
|
27635
27996
|
AuthorizationEndpoint: z.ZodString;
|
|
27636
27997
|
ClientId: z.ZodString;
|
|
@@ -27685,12 +28046,14 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27685
28046
|
Secret: z.ZodString;
|
|
27686
28047
|
TeamID: z.ZodString;
|
|
27687
28048
|
TokenAuthenticationType: z.ZodString;
|
|
27688
|
-
TokenClaimsMapping: z.ZodRecord<z.ZodString, z.ZodString
|
|
28049
|
+
TokenClaimsMapping: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
27689
28050
|
TokenEndpoint: z.ZodString;
|
|
27690
28051
|
UserInfoEndpoint: z.ZodString;
|
|
27691
28052
|
UserInfoHTTPMethod: z.ZodString;
|
|
27692
28053
|
scopes: z.ZodArray<z.ZodString, "many">;
|
|
27693
28054
|
}, "strip", z.ZodTypeAny, {
|
|
28055
|
+
AllowedClients?: string[] | null | undefined;
|
|
28056
|
+
TokenClaimsMapping?: Record<string, string> | null | undefined;
|
|
27694
28057
|
AppId: string;
|
|
27695
28058
|
ClientId: string;
|
|
27696
28059
|
Environment: string;
|
|
@@ -27702,7 +28065,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27702
28065
|
ACSURL: string;
|
|
27703
28066
|
AWSCognitoRegion: string;
|
|
27704
28067
|
AWSCognitoUserPool: string;
|
|
27705
|
-
AllowedClients: string[];
|
|
27706
28068
|
AuthorizationEndpoint: string;
|
|
27707
28069
|
FederationMetadataURL: string;
|
|
27708
28070
|
GenericOauthFlow: boolean;
|
|
@@ -27726,11 +28088,12 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27726
28088
|
}[];
|
|
27727
28089
|
TeamID: string;
|
|
27728
28090
|
TokenAuthenticationType: string;
|
|
27729
|
-
TokenClaimsMapping: Record<string, string>;
|
|
27730
28091
|
TokenEndpoint: string;
|
|
27731
28092
|
UserInfoEndpoint: string;
|
|
27732
28093
|
UserInfoHTTPMethod: string;
|
|
27733
28094
|
}, {
|
|
28095
|
+
AllowedClients?: string[] | null | undefined;
|
|
28096
|
+
TokenClaimsMapping?: Record<string, string> | null | undefined;
|
|
27734
28097
|
AppId: string;
|
|
27735
28098
|
ClientId: string;
|
|
27736
28099
|
Environment: string;
|
|
@@ -27742,7 +28105,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27742
28105
|
ACSURL: string;
|
|
27743
28106
|
AWSCognitoRegion: string;
|
|
27744
28107
|
AWSCognitoUserPool: string;
|
|
27745
|
-
AllowedClients: string[];
|
|
27746
28108
|
AuthorizationEndpoint: string;
|
|
27747
28109
|
FederationMetadataURL: string;
|
|
27748
28110
|
GenericOauthFlow: boolean;
|
|
@@ -27766,7 +28128,6 @@ declare const ThirdPartyLoginPlatformCredentialRequest: z.ZodObject<{
|
|
|
27766
28128
|
}[];
|
|
27767
28129
|
TeamID: string;
|
|
27768
28130
|
TokenAuthenticationType: string;
|
|
27769
|
-
TokenClaimsMapping: Record<string, string>;
|
|
27770
28131
|
TokenEndpoint: string;
|
|
27771
28132
|
UserInfoEndpoint: string;
|
|
27772
28133
|
UserInfoHTTPMethod: string;
|
|
@@ -30168,6 +30529,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30168
30529
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30169
30530
|
id: z.ZodString;
|
|
30170
30531
|
namespace: z.ZodString;
|
|
30532
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30171
30533
|
userId: z.ZodString;
|
|
30172
30534
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
30173
30535
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -30181,6 +30543,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30181
30543
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30182
30544
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30183
30545
|
}, "strip", z.ZodTypeAny, {
|
|
30546
|
+
name?: string | null | undefined;
|
|
30184
30547
|
endDate?: string | null | undefined;
|
|
30185
30548
|
itemId?: string | null | undefined;
|
|
30186
30549
|
stackable?: boolean | null | undefined;
|
|
@@ -30196,6 +30559,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30196
30559
|
id: string;
|
|
30197
30560
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30198
30561
|
}, {
|
|
30562
|
+
name?: string | null | undefined;
|
|
30199
30563
|
endDate?: string | null | undefined;
|
|
30200
30564
|
itemId?: string | null | undefined;
|
|
30201
30565
|
stackable?: boolean | null | undefined;
|
|
@@ -30216,12 +30580,15 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30216
30580
|
namespace: z.ZodString;
|
|
30217
30581
|
userId: z.ZodString;
|
|
30218
30582
|
amount: z.ZodNumber;
|
|
30583
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30219
30584
|
}, "strip", z.ZodTypeAny, {
|
|
30585
|
+
currencyCode?: string | null | undefined;
|
|
30220
30586
|
namespace: string;
|
|
30221
30587
|
userId: string;
|
|
30222
30588
|
walletId: string;
|
|
30223
30589
|
amount: number;
|
|
30224
30590
|
}, {
|
|
30591
|
+
currencyCode?: string | null | undefined;
|
|
30225
30592
|
namespace: string;
|
|
30226
30593
|
userId: string;
|
|
30227
30594
|
walletId: string;
|
|
@@ -30260,6 +30627,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30260
30627
|
}>, "many">>>;
|
|
30261
30628
|
}, "strip", z.ZodTypeAny, {
|
|
30262
30629
|
entitlementSummaries?: {
|
|
30630
|
+
name?: string | null | undefined;
|
|
30263
30631
|
endDate?: string | null | undefined;
|
|
30264
30632
|
itemId?: string | null | undefined;
|
|
30265
30633
|
stackable?: boolean | null | undefined;
|
|
@@ -30276,6 +30644,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30276
30644
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30277
30645
|
}[] | null | undefined;
|
|
30278
30646
|
creditSummaries?: {
|
|
30647
|
+
currencyCode?: string | null | undefined;
|
|
30279
30648
|
namespace: string;
|
|
30280
30649
|
userId: string;
|
|
30281
30650
|
walletId: string;
|
|
@@ -30296,6 +30665,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30296
30665
|
userId: string;
|
|
30297
30666
|
}, {
|
|
30298
30667
|
entitlementSummaries?: {
|
|
30668
|
+
name?: string | null | undefined;
|
|
30299
30669
|
endDate?: string | null | undefined;
|
|
30300
30670
|
itemId?: string | null | undefined;
|
|
30301
30671
|
stackable?: boolean | null | undefined;
|
|
@@ -30312,6 +30682,7 @@ declare const FulfillmentResult: z.ZodObject<{
|
|
|
30312
30682
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
30313
30683
|
}[] | null | undefined;
|
|
30314
30684
|
creditSummaries?: {
|
|
30685
|
+
currencyCode?: string | null | undefined;
|
|
30315
30686
|
namespace: string;
|
|
30316
30687
|
userId: string;
|
|
30317
30688
|
walletId: string;
|
|
@@ -40174,12 +40545,15 @@ declare const CreditSummary: z.ZodObject<{
|
|
|
40174
40545
|
namespace: z.ZodString;
|
|
40175
40546
|
userId: z.ZodString;
|
|
40176
40547
|
amount: z.ZodNumber;
|
|
40548
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40177
40549
|
}, "strip", z.ZodTypeAny, {
|
|
40550
|
+
currencyCode?: string | null | undefined;
|
|
40178
40551
|
namespace: string;
|
|
40179
40552
|
userId: string;
|
|
40180
40553
|
walletId: string;
|
|
40181
40554
|
amount: number;
|
|
40182
40555
|
}, {
|
|
40556
|
+
currencyCode?: string | null | undefined;
|
|
40183
40557
|
namespace: string;
|
|
40184
40558
|
userId: string;
|
|
40185
40559
|
walletId: string;
|
|
@@ -40191,6 +40565,7 @@ interface CreditSummary extends z.TypeOf<typeof CreditSummary> {
|
|
|
40191
40565
|
declare const EntitlementSummary: z.ZodObject<{
|
|
40192
40566
|
id: z.ZodString;
|
|
40193
40567
|
namespace: z.ZodString;
|
|
40568
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40194
40569
|
userId: z.ZodString;
|
|
40195
40570
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40196
40571
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40204,6 +40579,7 @@ declare const EntitlementSummary: z.ZodObject<{
|
|
|
40204
40579
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40205
40580
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40206
40581
|
}, "strip", z.ZodTypeAny, {
|
|
40582
|
+
name?: string | null | undefined;
|
|
40207
40583
|
endDate?: string | null | undefined;
|
|
40208
40584
|
itemId?: string | null | undefined;
|
|
40209
40585
|
stackable?: boolean | null | undefined;
|
|
@@ -40219,6 +40595,7 @@ declare const EntitlementSummary: z.ZodObject<{
|
|
|
40219
40595
|
id: string;
|
|
40220
40596
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40221
40597
|
}, {
|
|
40598
|
+
name?: string | null | undefined;
|
|
40222
40599
|
endDate?: string | null | undefined;
|
|
40223
40600
|
itemId?: string | null | undefined;
|
|
40224
40601
|
stackable?: boolean | null | undefined;
|
|
@@ -40322,6 +40699,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40322
40699
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40323
40700
|
id: z.ZodString;
|
|
40324
40701
|
namespace: z.ZodString;
|
|
40702
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40325
40703
|
userId: z.ZodString;
|
|
40326
40704
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40327
40705
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40335,6 +40713,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40335
40713
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40336
40714
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40337
40715
|
}, "strip", z.ZodTypeAny, {
|
|
40716
|
+
name?: string | null | undefined;
|
|
40338
40717
|
endDate?: string | null | undefined;
|
|
40339
40718
|
itemId?: string | null | undefined;
|
|
40340
40719
|
stackable?: boolean | null | undefined;
|
|
@@ -40350,6 +40729,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40350
40729
|
id: string;
|
|
40351
40730
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40352
40731
|
}, {
|
|
40732
|
+
name?: string | null | undefined;
|
|
40353
40733
|
endDate?: string | null | undefined;
|
|
40354
40734
|
itemId?: string | null | undefined;
|
|
40355
40735
|
stackable?: boolean | null | undefined;
|
|
@@ -40370,12 +40750,15 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40370
40750
|
namespace: z.ZodString;
|
|
40371
40751
|
userId: z.ZodString;
|
|
40372
40752
|
amount: z.ZodNumber;
|
|
40753
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40373
40754
|
}, "strip", z.ZodTypeAny, {
|
|
40755
|
+
currencyCode?: string | null | undefined;
|
|
40374
40756
|
namespace: string;
|
|
40375
40757
|
userId: string;
|
|
40376
40758
|
walletId: string;
|
|
40377
40759
|
amount: number;
|
|
40378
40760
|
}, {
|
|
40761
|
+
currencyCode?: string | null | undefined;
|
|
40379
40762
|
namespace: string;
|
|
40380
40763
|
userId: string;
|
|
40381
40764
|
walletId: string;
|
|
@@ -40431,6 +40814,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40431
40814
|
}, "strip", z.ZodTypeAny, {
|
|
40432
40815
|
code?: string | null | undefined;
|
|
40433
40816
|
entitlementSummaries?: {
|
|
40817
|
+
name?: string | null | undefined;
|
|
40434
40818
|
endDate?: string | null | undefined;
|
|
40435
40819
|
itemId?: string | null | undefined;
|
|
40436
40820
|
stackable?: boolean | null | undefined;
|
|
@@ -40447,6 +40831,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40447
40831
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40448
40832
|
}[] | null | undefined;
|
|
40449
40833
|
creditSummaries?: {
|
|
40834
|
+
currencyCode?: string | null | undefined;
|
|
40450
40835
|
namespace: string;
|
|
40451
40836
|
userId: string;
|
|
40452
40837
|
walletId: string;
|
|
@@ -40488,6 +40873,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40488
40873
|
}, {
|
|
40489
40874
|
code?: string | null | undefined;
|
|
40490
40875
|
entitlementSummaries?: {
|
|
40876
|
+
name?: string | null | undefined;
|
|
40491
40877
|
endDate?: string | null | undefined;
|
|
40492
40878
|
itemId?: string | null | undefined;
|
|
40493
40879
|
stackable?: boolean | null | undefined;
|
|
@@ -40504,6 +40890,7 @@ declare const FulfillmentHistoryInfo: z.ZodObject<{
|
|
|
40504
40890
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40505
40891
|
}[] | null | undefined;
|
|
40506
40892
|
creditSummaries?: {
|
|
40893
|
+
currencyCode?: string | null | undefined;
|
|
40507
40894
|
namespace: string;
|
|
40508
40895
|
userId: string;
|
|
40509
40896
|
walletId: string;
|
|
@@ -40582,6 +40969,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40582
40969
|
entitlementSummaries: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40583
40970
|
id: z.ZodString;
|
|
40584
40971
|
namespace: z.ZodString;
|
|
40972
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40585
40973
|
userId: z.ZodString;
|
|
40586
40974
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
40587
40975
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -40595,6 +40983,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40595
40983
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40596
40984
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40597
40985
|
}, "strip", z.ZodTypeAny, {
|
|
40986
|
+
name?: string | null | undefined;
|
|
40598
40987
|
endDate?: string | null | undefined;
|
|
40599
40988
|
itemId?: string | null | undefined;
|
|
40600
40989
|
stackable?: boolean | null | undefined;
|
|
@@ -40610,6 +40999,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40610
40999
|
id: string;
|
|
40611
41000
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40612
41001
|
}, {
|
|
41002
|
+
name?: string | null | undefined;
|
|
40613
41003
|
endDate?: string | null | undefined;
|
|
40614
41004
|
itemId?: string | null | undefined;
|
|
40615
41005
|
stackable?: boolean | null | undefined;
|
|
@@ -40630,12 +41020,15 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40630
41020
|
namespace: z.ZodString;
|
|
40631
41021
|
userId: z.ZodString;
|
|
40632
41022
|
amount: z.ZodNumber;
|
|
41023
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
40633
41024
|
}, "strip", z.ZodTypeAny, {
|
|
41025
|
+
currencyCode?: string | null | undefined;
|
|
40634
41026
|
namespace: string;
|
|
40635
41027
|
userId: string;
|
|
40636
41028
|
walletId: string;
|
|
40637
41029
|
amount: number;
|
|
40638
41030
|
}, {
|
|
41031
|
+
currencyCode?: string | null | undefined;
|
|
40639
41032
|
namespace: string;
|
|
40640
41033
|
userId: string;
|
|
40641
41034
|
walletId: string;
|
|
@@ -40691,6 +41084,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40691
41084
|
}, "strip", z.ZodTypeAny, {
|
|
40692
41085
|
code?: string | null | undefined;
|
|
40693
41086
|
entitlementSummaries?: {
|
|
41087
|
+
name?: string | null | undefined;
|
|
40694
41088
|
endDate?: string | null | undefined;
|
|
40695
41089
|
itemId?: string | null | undefined;
|
|
40696
41090
|
stackable?: boolean | null | undefined;
|
|
@@ -40707,6 +41101,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40707
41101
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40708
41102
|
}[] | null | undefined;
|
|
40709
41103
|
creditSummaries?: {
|
|
41104
|
+
currencyCode?: string | null | undefined;
|
|
40710
41105
|
namespace: string;
|
|
40711
41106
|
userId: string;
|
|
40712
41107
|
walletId: string;
|
|
@@ -40748,6 +41143,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40748
41143
|
}, {
|
|
40749
41144
|
code?: string | null | undefined;
|
|
40750
41145
|
entitlementSummaries?: {
|
|
41146
|
+
name?: string | null | undefined;
|
|
40751
41147
|
endDate?: string | null | undefined;
|
|
40752
41148
|
itemId?: string | null | undefined;
|
|
40753
41149
|
stackable?: boolean | null | undefined;
|
|
@@ -40764,6 +41160,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40764
41160
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40765
41161
|
}[] | null | undefined;
|
|
40766
41162
|
creditSummaries?: {
|
|
41163
|
+
currencyCode?: string | null | undefined;
|
|
40767
41164
|
namespace: string;
|
|
40768
41165
|
userId: string;
|
|
40769
41166
|
walletId: string;
|
|
@@ -40821,6 +41218,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40821
41218
|
data: {
|
|
40822
41219
|
code?: string | null | undefined;
|
|
40823
41220
|
entitlementSummaries?: {
|
|
41221
|
+
name?: string | null | undefined;
|
|
40824
41222
|
endDate?: string | null | undefined;
|
|
40825
41223
|
itemId?: string | null | undefined;
|
|
40826
41224
|
stackable?: boolean | null | undefined;
|
|
@@ -40837,6 +41235,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40837
41235
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40838
41236
|
}[] | null | undefined;
|
|
40839
41237
|
creditSummaries?: {
|
|
41238
|
+
currencyCode?: string | null | undefined;
|
|
40840
41239
|
namespace: string;
|
|
40841
41240
|
userId: string;
|
|
40842
41241
|
walletId: string;
|
|
@@ -40884,6 +41283,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40884
41283
|
data: {
|
|
40885
41284
|
code?: string | null | undefined;
|
|
40886
41285
|
entitlementSummaries?: {
|
|
41286
|
+
name?: string | null | undefined;
|
|
40887
41287
|
endDate?: string | null | undefined;
|
|
40888
41288
|
itemId?: string | null | undefined;
|
|
40889
41289
|
stackable?: boolean | null | undefined;
|
|
@@ -40900,6 +41300,7 @@ declare const FulfillmentHistoryPagingSlicedResult: z.ZodObject<{
|
|
|
40900
41300
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
40901
41301
|
}[] | null | undefined;
|
|
40902
41302
|
creditSummaries?: {
|
|
41303
|
+
currencyCode?: string | null | undefined;
|
|
40903
41304
|
namespace: string;
|
|
40904
41305
|
userId: string;
|
|
40905
41306
|
walletId: string;
|
|
@@ -45798,6 +46199,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45798
46199
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45799
46200
|
id: z.ZodString;
|
|
45800
46201
|
namespace: z.ZodString;
|
|
46202
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45801
46203
|
userId: z.ZodString;
|
|
45802
46204
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
45803
46205
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -45811,6 +46213,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45811
46213
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45812
46214
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45813
46215
|
}, "strip", z.ZodTypeAny, {
|
|
46216
|
+
name?: string | null | undefined;
|
|
45814
46217
|
endDate?: string | null | undefined;
|
|
45815
46218
|
itemId?: string | null | undefined;
|
|
45816
46219
|
stackable?: boolean | null | undefined;
|
|
@@ -45826,6 +46229,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45826
46229
|
id: string;
|
|
45827
46230
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
45828
46231
|
}, {
|
|
46232
|
+
name?: string | null | undefined;
|
|
45829
46233
|
endDate?: string | null | undefined;
|
|
45830
46234
|
itemId?: string | null | undefined;
|
|
45831
46235
|
stackable?: boolean | null | undefined;
|
|
@@ -45846,12 +46250,15 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45846
46250
|
namespace: z.ZodString;
|
|
45847
46251
|
userId: z.ZodString;
|
|
45848
46252
|
amount: z.ZodNumber;
|
|
46253
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45849
46254
|
}, "strip", z.ZodTypeAny, {
|
|
46255
|
+
currencyCode?: string | null | undefined;
|
|
45850
46256
|
namespace: string;
|
|
45851
46257
|
userId: string;
|
|
45852
46258
|
walletId: string;
|
|
45853
46259
|
amount: number;
|
|
45854
46260
|
}, {
|
|
46261
|
+
currencyCode?: string | null | undefined;
|
|
45855
46262
|
namespace: string;
|
|
45856
46263
|
userId: string;
|
|
45857
46264
|
walletId: string;
|
|
@@ -45871,6 +46278,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45871
46278
|
statusReason?: string | null | undefined;
|
|
45872
46279
|
fulfilledTime?: string | null | undefined;
|
|
45873
46280
|
entitlements?: {
|
|
46281
|
+
name?: string | null | undefined;
|
|
45874
46282
|
endDate?: string | null | undefined;
|
|
45875
46283
|
itemId?: string | null | undefined;
|
|
45876
46284
|
stackable?: boolean | null | undefined;
|
|
@@ -45891,6 +46299,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45891
46299
|
receiptData?: string | null | undefined;
|
|
45892
46300
|
retryCount?: number | null | undefined;
|
|
45893
46301
|
credits?: {
|
|
46302
|
+
currencyCode?: string | null | undefined;
|
|
45894
46303
|
namespace: string;
|
|
45895
46304
|
userId: string;
|
|
45896
46305
|
walletId: string;
|
|
@@ -45913,6 +46322,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45913
46322
|
statusReason?: string | null | undefined;
|
|
45914
46323
|
fulfilledTime?: string | null | undefined;
|
|
45915
46324
|
entitlements?: {
|
|
46325
|
+
name?: string | null | undefined;
|
|
45916
46326
|
endDate?: string | null | undefined;
|
|
45917
46327
|
itemId?: string | null | undefined;
|
|
45918
46328
|
stackable?: boolean | null | undefined;
|
|
@@ -45933,6 +46343,7 @@ declare const IapOrderInfo: z.ZodObject<{
|
|
|
45933
46343
|
receiptData?: string | null | undefined;
|
|
45934
46344
|
retryCount?: number | null | undefined;
|
|
45935
46345
|
credits?: {
|
|
46346
|
+
currencyCode?: string | null | undefined;
|
|
45936
46347
|
namespace: string;
|
|
45937
46348
|
userId: string;
|
|
45938
46349
|
walletId: string;
|
|
@@ -45969,6 +46380,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
45969
46380
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45970
46381
|
id: z.ZodString;
|
|
45971
46382
|
namespace: z.ZodString;
|
|
46383
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45972
46384
|
userId: z.ZodString;
|
|
45973
46385
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
45974
46386
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -45982,6 +46394,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
45982
46394
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45983
46395
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45984
46396
|
}, "strip", z.ZodTypeAny, {
|
|
46397
|
+
name?: string | null | undefined;
|
|
45985
46398
|
endDate?: string | null | undefined;
|
|
45986
46399
|
itemId?: string | null | undefined;
|
|
45987
46400
|
stackable?: boolean | null | undefined;
|
|
@@ -45997,6 +46410,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
45997
46410
|
id: string;
|
|
45998
46411
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
45999
46412
|
}, {
|
|
46413
|
+
name?: string | null | undefined;
|
|
46000
46414
|
endDate?: string | null | undefined;
|
|
46001
46415
|
itemId?: string | null | undefined;
|
|
46002
46416
|
stackable?: boolean | null | undefined;
|
|
@@ -46017,12 +46431,15 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46017
46431
|
namespace: z.ZodString;
|
|
46018
46432
|
userId: z.ZodString;
|
|
46019
46433
|
amount: z.ZodNumber;
|
|
46434
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46020
46435
|
}, "strip", z.ZodTypeAny, {
|
|
46436
|
+
currencyCode?: string | null | undefined;
|
|
46021
46437
|
namespace: string;
|
|
46022
46438
|
userId: string;
|
|
46023
46439
|
walletId: string;
|
|
46024
46440
|
amount: number;
|
|
46025
46441
|
}, {
|
|
46442
|
+
currencyCode?: string | null | undefined;
|
|
46026
46443
|
namespace: string;
|
|
46027
46444
|
userId: string;
|
|
46028
46445
|
walletId: string;
|
|
@@ -46042,6 +46459,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46042
46459
|
statusReason?: string | null | undefined;
|
|
46043
46460
|
fulfilledTime?: string | null | undefined;
|
|
46044
46461
|
entitlements?: {
|
|
46462
|
+
name?: string | null | undefined;
|
|
46045
46463
|
endDate?: string | null | undefined;
|
|
46046
46464
|
itemId?: string | null | undefined;
|
|
46047
46465
|
stackable?: boolean | null | undefined;
|
|
@@ -46062,6 +46480,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46062
46480
|
receiptData?: string | null | undefined;
|
|
46063
46481
|
retryCount?: number | null | undefined;
|
|
46064
46482
|
credits?: {
|
|
46483
|
+
currencyCode?: string | null | undefined;
|
|
46065
46484
|
namespace: string;
|
|
46066
46485
|
userId: string;
|
|
46067
46486
|
walletId: string;
|
|
@@ -46084,6 +46503,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46084
46503
|
statusReason?: string | null | undefined;
|
|
46085
46504
|
fulfilledTime?: string | null | undefined;
|
|
46086
46505
|
entitlements?: {
|
|
46506
|
+
name?: string | null | undefined;
|
|
46087
46507
|
endDate?: string | null | undefined;
|
|
46088
46508
|
itemId?: string | null | undefined;
|
|
46089
46509
|
stackable?: boolean | null | undefined;
|
|
@@ -46104,6 +46524,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46104
46524
|
receiptData?: string | null | undefined;
|
|
46105
46525
|
retryCount?: number | null | undefined;
|
|
46106
46526
|
credits?: {
|
|
46527
|
+
currencyCode?: string | null | undefined;
|
|
46107
46528
|
namespace: string;
|
|
46108
46529
|
userId: string;
|
|
46109
46530
|
walletId: string;
|
|
@@ -46142,6 +46563,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46142
46563
|
statusReason?: string | null | undefined;
|
|
46143
46564
|
fulfilledTime?: string | null | undefined;
|
|
46144
46565
|
entitlements?: {
|
|
46566
|
+
name?: string | null | undefined;
|
|
46145
46567
|
endDate?: string | null | undefined;
|
|
46146
46568
|
itemId?: string | null | undefined;
|
|
46147
46569
|
stackable?: boolean | null | undefined;
|
|
@@ -46162,6 +46584,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46162
46584
|
receiptData?: string | null | undefined;
|
|
46163
46585
|
retryCount?: number | null | undefined;
|
|
46164
46586
|
credits?: {
|
|
46587
|
+
currencyCode?: string | null | undefined;
|
|
46165
46588
|
namespace: string;
|
|
46166
46589
|
userId: string;
|
|
46167
46590
|
walletId: string;
|
|
@@ -46190,6 +46613,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46190
46613
|
statusReason?: string | null | undefined;
|
|
46191
46614
|
fulfilledTime?: string | null | undefined;
|
|
46192
46615
|
entitlements?: {
|
|
46616
|
+
name?: string | null | undefined;
|
|
46193
46617
|
endDate?: string | null | undefined;
|
|
46194
46618
|
itemId?: string | null | undefined;
|
|
46195
46619
|
stackable?: boolean | null | undefined;
|
|
@@ -46210,6 +46634,7 @@ declare const IapOrderPagingSlicedResult: z.ZodObject<{
|
|
|
46210
46634
|
receiptData?: string | null | undefined;
|
|
46211
46635
|
retryCount?: number | null | undefined;
|
|
46212
46636
|
credits?: {
|
|
46637
|
+
currencyCode?: string | null | undefined;
|
|
46213
46638
|
namespace: string;
|
|
46214
46639
|
userId: string;
|
|
46215
46640
|
walletId: string;
|
|
@@ -49305,6 +49730,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49305
49730
|
entitlements: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49306
49731
|
id: z.ZodString;
|
|
49307
49732
|
namespace: z.ZodString;
|
|
49733
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49308
49734
|
userId: z.ZodString;
|
|
49309
49735
|
clazz: z.ZodEnum<["APP", "ENTITLEMENT", "CODE", "SUBSCRIPTION", "MEDIA", "OPTIONBOX", "LOOTBOX"]>;
|
|
49310
49736
|
type: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
@@ -49318,6 +49744,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49318
49744
|
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49319
49745
|
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49320
49746
|
}, "strip", z.ZodTypeAny, {
|
|
49747
|
+
name?: string | null | undefined;
|
|
49321
49748
|
endDate?: string | null | undefined;
|
|
49322
49749
|
itemId?: string | null | undefined;
|
|
49323
49750
|
stackable?: boolean | null | undefined;
|
|
@@ -49333,6 +49760,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49333
49760
|
id: string;
|
|
49334
49761
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49335
49762
|
}, {
|
|
49763
|
+
name?: string | null | undefined;
|
|
49336
49764
|
endDate?: string | null | undefined;
|
|
49337
49765
|
itemId?: string | null | undefined;
|
|
49338
49766
|
stackable?: boolean | null | undefined;
|
|
@@ -49353,12 +49781,15 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49353
49781
|
namespace: z.ZodString;
|
|
49354
49782
|
userId: z.ZodString;
|
|
49355
49783
|
amount: z.ZodNumber;
|
|
49784
|
+
currencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49356
49785
|
}, "strip", z.ZodTypeAny, {
|
|
49786
|
+
currencyCode?: string | null | undefined;
|
|
49357
49787
|
namespace: string;
|
|
49358
49788
|
userId: string;
|
|
49359
49789
|
walletId: string;
|
|
49360
49790
|
amount: number;
|
|
49361
49791
|
}, {
|
|
49792
|
+
currencyCode?: string | null | undefined;
|
|
49362
49793
|
namespace: string;
|
|
49363
49794
|
userId: string;
|
|
49364
49795
|
walletId: string;
|
|
@@ -49366,6 +49797,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49366
49797
|
}>, "many">>>;
|
|
49367
49798
|
}, "strip", z.ZodTypeAny, {
|
|
49368
49799
|
entitlements?: {
|
|
49800
|
+
name?: string | null | undefined;
|
|
49369
49801
|
endDate?: string | null | undefined;
|
|
49370
49802
|
itemId?: string | null | undefined;
|
|
49371
49803
|
stackable?: boolean | null | undefined;
|
|
@@ -49382,6 +49814,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49382
49814
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49383
49815
|
}[] | null | undefined;
|
|
49384
49816
|
credits?: {
|
|
49817
|
+
currencyCode?: string | null | undefined;
|
|
49385
49818
|
namespace: string;
|
|
49386
49819
|
userId: string;
|
|
49387
49820
|
walletId: string;
|
|
@@ -49389,6 +49822,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49389
49822
|
}[] | null | undefined;
|
|
49390
49823
|
}, {
|
|
49391
49824
|
entitlements?: {
|
|
49825
|
+
name?: string | null | undefined;
|
|
49392
49826
|
endDate?: string | null | undefined;
|
|
49393
49827
|
itemId?: string | null | undefined;
|
|
49394
49828
|
stackable?: boolean | null | undefined;
|
|
@@ -49405,6 +49839,7 @@ declare const OrderGrantInfo: z.ZodObject<{
|
|
|
49405
49839
|
clazz: "APP" | "CODE" | "SUBSCRIPTION" | "MEDIA" | "OPTIONBOX" | "LOOTBOX" | "ENTITLEMENT";
|
|
49406
49840
|
}[] | null | undefined;
|
|
49407
49841
|
credits?: {
|
|
49842
|
+
currencyCode?: string | null | undefined;
|
|
49408
49843
|
namespace: string;
|
|
49409
49844
|
userId: string;
|
|
49410
49845
|
walletId: string;
|
|
@@ -65367,10 +65802,6 @@ declare const EligibleUser: z.ZodObject<Pick<{
|
|
|
65367
65802
|
}>;
|
|
65368
65803
|
declare type EligibleUser = z.TypeOf<typeof EligibleUser>;
|
|
65369
65804
|
|
|
65370
|
-
declare class BrowserHelper {
|
|
65371
|
-
static isOnBrowser: () => false | Document;
|
|
65372
|
-
}
|
|
65373
|
-
|
|
65374
65805
|
declare class CodeGenUtil {
|
|
65375
65806
|
/**
|
|
65376
65807
|
* Returns a hash code from a string
|
|
@@ -65382,6 +65813,13 @@ declare class CodeGenUtil {
|
|
|
65382
65813
|
static getFormUrlEncodedData: (data: Record<string, any>) => URLSearchParams;
|
|
65383
65814
|
}
|
|
65384
65815
|
|
|
65816
|
+
declare class DesktopChecker {
|
|
65817
|
+
private static desktopApp;
|
|
65818
|
+
static isDesktopApp(): boolean;
|
|
65819
|
+
private static isInIframe;
|
|
65820
|
+
private static isElectron;
|
|
65821
|
+
}
|
|
65822
|
+
|
|
65385
65823
|
declare type EjectId = number;
|
|
65386
65824
|
declare type RequestInterceptor = (config: AxiosRequestConfig) => AxiosRequestConfig | Promise<AxiosRequestConfig>;
|
|
65387
65825
|
declare type ResponseInterceptor = (response: AxiosResponse) => AxiosResponse | Promise<AxiosResponse>;
|
|
@@ -65397,6 +65835,7 @@ declare class Network {
|
|
|
65397
65835
|
}
|
|
65398
65836
|
|
|
65399
65837
|
declare class UrlHelper {
|
|
65838
|
+
static isOnBrowser: () => false | Document;
|
|
65400
65839
|
static isCompleteURLString: (urlString: string) => boolean;
|
|
65401
65840
|
static trimSlashFromStringEnd(pathString: string): string;
|
|
65402
65841
|
static trimSlashFromStringStart(pathString: string): string;
|
|
@@ -65423,4 +65862,4 @@ declare class SdkDevice {
|
|
|
65423
65862
|
static getDeviceId: () => string;
|
|
65424
65863
|
}
|
|
65425
65864
|
|
|
65426
|
-
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BrowserHelper, BuildAvailability, BuildAvailabilityArray, BuildDeletionData, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|
|
65865
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BuildAvailability, BuildAvailabilityArray, BuildDeletionData, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DesktopChecker, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, ServiceVersion, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|