@accelbyte/sdk 0.2.0-beta.3 → 0.2.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -1
- package/README.md +2 -2
- package/dist/index.browser.es.js +1098 -669
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +1568 -1147
- package/dist/index.node.es.js +1099 -670
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +1099 -670
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/next/yarn.lock +4 -4
- package/examples/node/package.json +1 -1
- package/examples/node/yarn.lock +4 -4
- package/examples/vite/package.json +1 -1
- package/examples/vite/yarn.lock +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,7 +82,10 @@ declare class FileUploadApi {
|
|
|
82
82
|
*/
|
|
83
83
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* POST [/basic/v1/public/namespaces/{namespace}/folders/{folder}/files](api)
|
|
86
|
+
*
|
|
87
|
+
* Generate an upload URL. It's valid for 10 minutes.
|
|
88
|
+
* Returns: URL data
|
|
86
89
|
*/
|
|
87
90
|
generateFolderUploadFileUrl: ({ folder, queryParams }: {
|
|
88
91
|
folder: string;
|
|
@@ -107,9 +110,16 @@ declare class MiscApi {
|
|
|
107
110
|
*/
|
|
108
111
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
109
112
|
/**
|
|
110
|
-
*
|
|
113
|
+
* GET [/basic/v1/public/namespaces/{namespace}/misc/countries](api)
|
|
114
|
+
*
|
|
115
|
+
* _Returns_: country code list
|
|
111
116
|
*/
|
|
112
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
|
+
*/
|
|
113
123
|
getLanguages: () => Promise<IResponseWithSync<unknown>>;
|
|
114
124
|
private newInstance;
|
|
115
125
|
}
|
|
@@ -123,7 +133,13 @@ declare class NamespaceApi {
|
|
|
123
133
|
*/
|
|
124
134
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
125
135
|
/**
|
|
126
|
-
*
|
|
136
|
+
* GET [/basic/v1/public/namespaces](api)
|
|
137
|
+
*
|
|
138
|
+
* Get all namespaces.
|
|
139
|
+
*
|
|
140
|
+
* - _Required permission_: login user
|
|
141
|
+
* - _Action code_: 11303
|
|
142
|
+
* - _Returns_: list of namespaces
|
|
127
143
|
*/
|
|
128
144
|
getNamespaces: (activeOnly?: boolean | null | undefined) => Promise<IResponseWithSync<NamespaceInfoArray>>;
|
|
129
145
|
private newInstance;
|
|
@@ -215,19 +231,33 @@ declare class UserProfileApi {
|
|
|
215
231
|
*/
|
|
216
232
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
217
233
|
/**
|
|
218
|
-
*
|
|
234
|
+
* GET [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
235
|
+
*
|
|
236
|
+
* Get my profile
|
|
237
|
+
*
|
|
238
|
+
* __Client with user token can get user profile in target namespace__
|
|
219
239
|
*/
|
|
220
240
|
getUsersMeProfiles: () => Promise<IResponseWithSync<UserProfilePrivateInfo>>;
|
|
221
241
|
/**
|
|
222
|
-
*
|
|
242
|
+
* POST [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
243
|
+
*
|
|
244
|
+
* Create my profile.
|
|
245
|
+
*
|
|
246
|
+
* __Client with user token can create user profile in target namespace__
|
|
223
247
|
*/
|
|
224
248
|
createUserMeProfile: (data: UserProfilePrivateCreate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
225
249
|
/**
|
|
226
|
-
*
|
|
250
|
+
* PUT [/basic/v1/public/namespaces/{namespace}/users/me/profiles](api)
|
|
251
|
+
*
|
|
252
|
+
* Update my profile.
|
|
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.
|
|
227
254
|
*/
|
|
228
255
|
updateUserMeProfile: (data: UserProfilePrivateUpdate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
229
256
|
/**
|
|
230
|
-
*
|
|
257
|
+
* PUT [/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes](api)
|
|
258
|
+
*
|
|
259
|
+
* Update partially custom attributes tied to user id.
|
|
260
|
+
* _Returns_: Updated custom attributes
|
|
231
261
|
*/
|
|
232
262
|
updateUserCustomAttributes: (userId: string, data: any) => Promise<IResponse<unknown>>;
|
|
233
263
|
private newInstance;
|
|
@@ -241,9 +271,14 @@ declare class CachingApi {
|
|
|
241
271
|
*/
|
|
242
272
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
243
273
|
/**
|
|
244
|
-
*
|
|
274
|
+
* GET [/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}](api)
|
|
275
|
+
*
|
|
276
|
+
* This API is used to retrieve detailed diff cache.
|
|
277
|
+
* The response will contains list of diff cache files along with its download url.
|
|
278
|
+
*
|
|
279
|
+
* _Required permission_: login user
|
|
245
280
|
*/
|
|
246
|
-
getDiffCache(sourceBuildId: string, destinationBuildId: string)
|
|
281
|
+
getDiffCache: (sourceBuildId: string, destinationBuildId: string) => Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
247
282
|
private newInstance;
|
|
248
283
|
}
|
|
249
284
|
|
|
@@ -255,16 +290,45 @@ declare class DlcApi {
|
|
|
255
290
|
*/
|
|
256
291
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
257
292
|
/**
|
|
258
|
-
*
|
|
293
|
+
* GET [/buildinfo/public/namespaces/{namespace}/dlcs/latest/byGameAppId/{appId}](api)
|
|
294
|
+
*
|
|
295
|
+
* Retrieve the list of DLC available on specific game. Use game's appId to query.
|
|
296
|
+
*
|
|
297
|
+
* _Returns_: list of DLC
|
|
259
298
|
*/
|
|
260
|
-
getLatestDLCByGameAppId(appId: string)
|
|
299
|
+
getLatestDLCByGameAppId: (appId: string) => Promise<IResponseWithSync<RetrieveLatestDlcResponseArray>>;
|
|
261
300
|
/**
|
|
262
|
-
*
|
|
301
|
+
* GET [/buildinfo/public/namespaces/{namespace}/apps/latest/byDLCAppId/{dlcAppId}](api)
|
|
302
|
+
*
|
|
303
|
+
* Retrieve the list of DLC available on specific game. Use DLC's appId to query.
|
|
304
|
+
*
|
|
305
|
+
* _Returns_: appId of game and list of its builds by platformId
|
|
263
306
|
*/
|
|
264
|
-
getBaseGamesByDlcAppId(dlcAppId: string)
|
|
307
|
+
getBaseGamesByDlcAppId: (dlcAppId: string) => Promise<IResponseWithSync<RetrieveBaseGameResponseArray>>;
|
|
265
308
|
private newInstance;
|
|
266
309
|
}
|
|
267
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
|
+
|
|
268
332
|
declare const BasicBuildManifest: z.ZodObject<{
|
|
269
333
|
buildId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
270
334
|
platformId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -299,26 +363,46 @@ declare class DownloaderApi {
|
|
|
299
363
|
*/
|
|
300
364
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
301
365
|
/**
|
|
302
|
-
*
|
|
366
|
+
* GET [/buildinfo/public/namespaces/{namespace}/availablebuilds/{appId}](api)
|
|
367
|
+
*
|
|
368
|
+
* This API is used to get simple build manifest that contains list of current build in various platform.
|
|
369
|
+
*
|
|
370
|
+
* - _Required permission_: login user
|
|
371
|
+
* - _Returns_: build manifest
|
|
303
372
|
*/
|
|
304
|
-
getAvailableBuilds(appId: string)
|
|
373
|
+
getAvailableBuilds: (appId: string) => Promise<IResponseWithSync<BasicBuildManifestArray>>;
|
|
305
374
|
/**
|
|
306
|
-
*
|
|
375
|
+
* GET [/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{platformId}](api)
|
|
376
|
+
*
|
|
377
|
+
* This API is used to get build manifest of release version of the application.
|
|
378
|
+
*
|
|
379
|
+
* - _Required permission_: login user
|
|
380
|
+
* - _Returns_: build manifest
|
|
307
381
|
*/
|
|
308
|
-
getBuildManifest(appId: string, platformId: string)
|
|
382
|
+
getBuildManifest: (appId: string, platformId: string) => Promise<IResponseWithSync<BuildManifest>>;
|
|
309
383
|
/**
|
|
310
|
-
*
|
|
384
|
+
* GET [/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}](api)
|
|
385
|
+
*
|
|
386
|
+
* This API is used to retrieve detailed diff cache.
|
|
387
|
+
* The response will contains list of diff cache files along with its download url.
|
|
388
|
+
*
|
|
389
|
+
* - _Required permission_: login user
|
|
311
390
|
*/
|
|
312
|
-
getDiffCache(sourceBuildId: string, destinationBuildId: string)
|
|
391
|
+
getDiffCache: (sourceBuildId: string, destinationBuildId: string) => Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
313
392
|
/**
|
|
314
393
|
* Check which platform is available for the user to download the game
|
|
394
|
+
*
|
|
395
|
+
* @internal
|
|
315
396
|
*/
|
|
316
|
-
getMatchPlatform({ buildsAvailability, userPlatform }: {
|
|
397
|
+
getMatchPlatform: ({ buildsAvailability, userPlatform }: {
|
|
317
398
|
buildsAvailability: BasicBuildManifest[];
|
|
318
399
|
userPlatform: IUserPlatform;
|
|
319
|
-
})
|
|
400
|
+
}) => string | null;
|
|
401
|
+
/**
|
|
402
|
+
* @internal
|
|
403
|
+
*/
|
|
404
|
+
getCurrentPlatform: (userPlatform: IUserPlatform) => PlatformMatchMap | undefined;
|
|
320
405
|
private newInstance;
|
|
321
|
-
private getCurrentPlatform;
|
|
322
406
|
}
|
|
323
407
|
|
|
324
408
|
declare class EventApi {
|
|
@@ -330,16 +414,17 @@ declare class EventApi {
|
|
|
330
414
|
*/
|
|
331
415
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
332
416
|
/**
|
|
333
|
-
*
|
|
334
|
-
*
|
|
335
|
-
*
|
|
336
|
-
*
|
|
337
|
-
*
|
|
338
|
-
*
|
|
339
|
-
*
|
|
340
|
-
*
|
|
341
|
-
*
|
|
342
|
-
*
|
|
417
|
+
* GET [/event/v2/public/namespaces/{namespace}/users/{userId}/edithistory](api)
|
|
418
|
+
*
|
|
419
|
+
* Available Type:
|
|
420
|
+
* - email
|
|
421
|
+
* - password
|
|
422
|
+
* - displayname
|
|
423
|
+
* - dateofbirth
|
|
424
|
+
* - country
|
|
425
|
+
* - language
|
|
426
|
+
*
|
|
427
|
+
* _Requires a valid user access token_
|
|
343
428
|
*/
|
|
344
429
|
getAccountHistoryByUserId: ({ userId, queryParams }: {
|
|
345
430
|
userId: string;
|
|
@@ -363,25 +448,34 @@ declare class DataDeletionApi {
|
|
|
363
448
|
*/
|
|
364
449
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
365
450
|
/**
|
|
366
|
-
*
|
|
367
|
-
*
|
|
451
|
+
* GET [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions/status](api)
|
|
452
|
+
*
|
|
453
|
+
* Fetch the status to check whether or not a user's account is on a deletion status
|
|
454
|
+
*
|
|
455
|
+
* _Requires a valid user access token_
|
|
368
456
|
*/
|
|
369
|
-
getGdprDeletionStatus(userId: string)
|
|
457
|
+
getGdprDeletionStatus: (userId: string) => Promise<IResponseWithSync<DeletionStatus>>;
|
|
370
458
|
/**
|
|
371
|
-
*
|
|
372
|
-
*
|
|
459
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions](api)
|
|
460
|
+
*
|
|
461
|
+
* Request an account's deletion
|
|
462
|
+
*
|
|
463
|
+
* _Requires a valid user access token and password_
|
|
373
464
|
*/
|
|
374
|
-
requestAccountDeletion({ userId, data }: {
|
|
465
|
+
requestAccountDeletion: ({ userId, data }: {
|
|
375
466
|
userId: string;
|
|
376
467
|
data: {
|
|
377
468
|
password: string | null;
|
|
378
469
|
};
|
|
379
|
-
})
|
|
470
|
+
}) => Promise<IResponse<RequestDeleteResponse>>;
|
|
380
471
|
/**
|
|
381
|
-
*
|
|
382
|
-
*
|
|
472
|
+
* DELETE [/gdpr/public/namespaces/{namespace}/users/{userId}/deletions](api)
|
|
473
|
+
*
|
|
474
|
+
* Cancel a deletion request
|
|
475
|
+
*
|
|
476
|
+
* _Requires a valid user access token_
|
|
383
477
|
*/
|
|
384
|
-
cancelAccountDeletion(userId: string)
|
|
478
|
+
cancelAccountDeletion: (userId: string) => Promise<IResponse<unknown>>;
|
|
385
479
|
private newInstance;
|
|
386
480
|
}
|
|
387
481
|
|
|
@@ -394,45 +488,57 @@ declare class DataRetrievalApi {
|
|
|
394
488
|
*/
|
|
395
489
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
396
490
|
/**
|
|
397
|
-
*
|
|
398
|
-
*
|
|
491
|
+
* GET [/gdpr/public/namespaces/{namespace}/users/{userId}/requests](api)
|
|
492
|
+
*
|
|
493
|
+
* Fetch personal data request list
|
|
494
|
+
*
|
|
495
|
+
* _Requires a valid user access token_
|
|
399
496
|
*/
|
|
400
|
-
getGdprDataRequestList({ userId, queryParams }: {
|
|
497
|
+
getGdprDataRequestList: ({ userId, queryParams }: {
|
|
401
498
|
userId: string;
|
|
402
499
|
queryParams?: {
|
|
403
|
-
limit?: number;
|
|
404
|
-
offset?: number;
|
|
405
|
-
};
|
|
406
|
-
})
|
|
500
|
+
limit?: number | undefined;
|
|
501
|
+
offset?: number | undefined;
|
|
502
|
+
} | undefined;
|
|
503
|
+
}) => Promise<IResponseWithSync<UserPersonalDataResponse>>;
|
|
407
504
|
/**
|
|
408
|
-
*
|
|
409
|
-
*
|
|
505
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/requests](api)
|
|
506
|
+
*
|
|
507
|
+
* Create a request for personal data download
|
|
508
|
+
*
|
|
509
|
+
* _Requires a valid user access token_
|
|
410
510
|
*/
|
|
411
|
-
requestGdprData({ userId, data }: {
|
|
511
|
+
requestGdprData: ({ userId, data }: {
|
|
412
512
|
userId: string;
|
|
413
513
|
data: {
|
|
414
514
|
password: string | null;
|
|
415
515
|
};
|
|
416
|
-
})
|
|
516
|
+
}) => Promise<IResponse<DataRetrievalResponse>>;
|
|
417
517
|
/**
|
|
418
|
-
*
|
|
419
|
-
*
|
|
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_
|
|
420
523
|
*/
|
|
421
|
-
cancelGdprDataRequest({ userId, requestDate }: {
|
|
524
|
+
cancelGdprDataRequest: ({ userId, requestDate }: {
|
|
422
525
|
userId: string;
|
|
423
526
|
requestDate: string;
|
|
424
|
-
})
|
|
527
|
+
}) => Promise<IResponse<unknown>>;
|
|
425
528
|
/**
|
|
426
|
-
*
|
|
427
|
-
*
|
|
529
|
+
* POST [/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}/generate](api)
|
|
530
|
+
*
|
|
531
|
+
* Create a download URL for personal data request
|
|
532
|
+
*
|
|
533
|
+
* _Requires a valid user access token_
|
|
428
534
|
*/
|
|
429
|
-
requestGdprDataDownloadUrl({ userId, requestDate, data }: {
|
|
535
|
+
requestGdprDataDownloadUrl: ({ userId, requestDate, data }: {
|
|
430
536
|
userId: string;
|
|
431
537
|
requestDate: string;
|
|
432
538
|
data: {
|
|
433
539
|
password: string | null;
|
|
434
540
|
};
|
|
435
|
-
})
|
|
541
|
+
}) => Promise<IResponse<UserDataUrl>>;
|
|
436
542
|
private newInstance;
|
|
437
543
|
}
|
|
438
544
|
|
|
@@ -445,10 +551,11 @@ declare class InputValidationsApi {
|
|
|
445
551
|
*/
|
|
446
552
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
447
553
|
/**
|
|
448
|
-
*
|
|
449
|
-
* <p>This method is to get list of input validation configuration.</p>
|
|
450
|
-
* <p><code>regex</code> parameter will be returned if <code>isCustomRegex</code> is true. Otherwise, it will be empty.</p>
|
|
554
|
+
* GET [/iam/v3/public/inputValidations](api)
|
|
451
555
|
*
|
|
556
|
+
* No role required
|
|
557
|
+
* This method is to get list of input validation configuration.
|
|
558
|
+
* `regex` parameter will be returned if `isCustomRegex` is true. Otherwise, it will be empty.
|
|
452
559
|
*/
|
|
453
560
|
getValidations: (languageCode?: string | null | undefined, defaultOnEmpty?: boolean | null | undefined) => Promise<IResponseWithSync<InputValidationsPublicResponse>>;
|
|
454
561
|
private newInstance;
|
|
@@ -887,63 +994,76 @@ declare class OAuthApi {
|
|
|
887
994
|
/**
|
|
888
995
|
* @internal
|
|
889
996
|
*/
|
|
890
|
-
newOAuth20Extension()
|
|
997
|
+
newOAuth20Extension: () => OAuth20Extension$;
|
|
891
998
|
/**
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
*
|
|
895
|
-
*
|
|
896
|
-
*
|
|
897
|
-
*
|
|
999
|
+
* POST [/iam/v3/logout](api)
|
|
1000
|
+
*
|
|
1001
|
+
* This method is used to remove __access_token__, __refresh_token__ from cookie and revoke token from usage.
|
|
1002
|
+
* Supported methods:
|
|
1003
|
+
* - VerifyToken to verify token from header
|
|
1004
|
+
* - AddTokenToRevocationList to revoke token with TTL
|
|
898
1005
|
*/
|
|
899
1006
|
logout: () => Promise<IResponse<unknown>>;
|
|
900
1007
|
/**
|
|
901
|
-
*
|
|
902
|
-
*
|
|
1008
|
+
* POST [/iam/v3/oauth/revoke](api)
|
|
1009
|
+
*
|
|
1010
|
+
* This method revokes a token.
|
|
1011
|
+
* This method requires authorized requests header with Basic Authentication from client that establish the token.action code: 10706
|
|
903
1012
|
*/
|
|
904
1013
|
revoke: ({ token }: {
|
|
905
1014
|
token: string;
|
|
906
1015
|
}) => Promise<IResponse<unknown>>;
|
|
907
1016
|
/**
|
|
908
|
-
*
|
|
909
|
-
*
|
|
910
|
-
*
|
|
911
|
-
*
|
|
1017
|
+
* POST [/iam/v3/oauth/mfa/verify](api)
|
|
1018
|
+
*
|
|
1019
|
+
* Verify 2FA code
|
|
1020
|
+
* This method is used for verifying 2FA code.
|
|
1021
|
+
* ##2FA remember device
|
|
1022
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
912
1023
|
*
|
|
913
1024
|
*/
|
|
914
1025
|
verify2FA: ({ factor, code, mfaToken, rememberDevice }: Verify2FAParam) => Promise<IDataStatus<TokenResponseV3>>;
|
|
1026
|
+
/**
|
|
1027
|
+
* POST [/iam/v3/oauth/mfa/code](api)
|
|
1028
|
+
*/
|
|
915
1029
|
request2FAEmailCode: ({ mfaToken, factor }: Request2FAEmailCode) => Promise<IDataStatus<unknown>>;
|
|
916
1030
|
/**
|
|
917
|
-
*
|
|
1031
|
+
* GET [/iam/v3/location/country](api)
|
|
1032
|
+
*
|
|
1033
|
+
* This method get country location based on the request.
|
|
918
1034
|
*/
|
|
919
1035
|
getCurrentLocationCountry: () => Promise<IResponseWithSync<CountryLocationResponse>>;
|
|
920
1036
|
/**
|
|
921
|
-
*
|
|
922
|
-
*
|
|
1037
|
+
* GET [/iam/v3/oauth/namespaces/{namespace}/users/{userId}/platforms/{platformId}/platformToken](api)
|
|
1038
|
+
*
|
|
1039
|
+
* Retrieve User Third Party Platform Token
|
|
1040
|
+
*
|
|
923
1041
|
* This method used for retrieving third party platform token for user that login using third party,
|
|
924
1042
|
* if user have not link requested platform in game namespace, will try to retrieving third party platform token from publisher namespace.
|
|
925
1043
|
* Passing platform group name or it's member will return same access token that can be used across the platform members.
|
|
926
|
-
*
|
|
927
|
-
*
|
|
928
|
-
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
933
|
-
*
|
|
934
|
-
*
|
|
935
|
-
* </ul>
|
|
1044
|
+
*
|
|
1045
|
+
* The third party platform and platform group covered for this is:
|
|
1046
|
+
* - (psn) ps4web
|
|
1047
|
+
* - (psn) ps4
|
|
1048
|
+
* - (psn) ps5
|
|
1049
|
+
* - epicgames
|
|
1050
|
+
* - twitch
|
|
1051
|
+
* - awscognito
|
|
1052
|
+
*
|
|
936
1053
|
*/
|
|
937
1054
|
getThirdPartyPlatformToken: (userId: string, platformId: string) => Promise<IResponseWithSync<TokenThirdPartyResponse>>;
|
|
938
1055
|
/**
|
|
1056
|
+
* POST [/iam/v3/authenticateWithLink](api)
|
|
1057
|
+
*
|
|
939
1058
|
* This method is being used to authenticate a user account and perform platform link.
|
|
940
1059
|
* It validates user's email / username and password.
|
|
941
|
-
* If user already enable 2FA, then invoke
|
|
1060
|
+
* If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
|
|
942
1061
|
*
|
|
943
|
-
*
|
|
1062
|
+
* ##Device Cookie Validation
|
|
944
1063
|
*
|
|
945
|
-
* Device Cookie is used to protect the user account from brute force login attack,
|
|
946
|
-
*
|
|
1064
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
1065
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies).
|
|
1066
|
+
* This method will read device cookie from cookie __auth-trust-id__. If device cookie not found, it will generate a new one and set it into cookie when successfully authenticate.
|
|
947
1067
|
*
|
|
948
1068
|
*/
|
|
949
1069
|
authenticateWithLink: (data: {
|
|
@@ -954,25 +1074,27 @@ declare class OAuthApi {
|
|
|
954
1074
|
extend_exp?: boolean | null;
|
|
955
1075
|
}) => Promise<IResponse<TokenResponseV3>>;
|
|
956
1076
|
/**
|
|
1077
|
+
* POST [/iam/v3/link/code/validate](api)
|
|
1078
|
+
*
|
|
957
1079
|
* This method is being used to validate one time link code.
|
|
958
1080
|
* It require a valid user token.
|
|
959
1081
|
* Should specify the target platform id and current user should already linked to this platform.
|
|
960
1082
|
* Current user should be a headless account.
|
|
961
|
-
*
|
|
962
1083
|
*/
|
|
963
|
-
validateOneTimeLinkCode(data: {
|
|
1084
|
+
validateOneTimeLinkCode: (data: {
|
|
964
1085
|
oneTimeLinkCode: string | null;
|
|
965
|
-
})
|
|
1086
|
+
}) => Promise<IResponse<OneTimeLinkingCodeValidationResponse>>;
|
|
966
1087
|
/**
|
|
1088
|
+
* POST [/iam/v3/link/token/exchange](api)
|
|
1089
|
+
*
|
|
967
1090
|
* This method is being used to generate user's token by one time link code.
|
|
968
1091
|
* It require publisher ClientID
|
|
969
|
-
* It required a code which can be generated from
|
|
970
|
-
*
|
|
1092
|
+
* It required a code which can be generated from __/iam/v3/link/code/request__.
|
|
971
1093
|
*/
|
|
972
|
-
exchangeTokenByOneTimeLinkCode(data: {
|
|
1094
|
+
exchangeTokenByOneTimeLinkCode: (data: {
|
|
973
1095
|
oneTimeLinkCode: string | null;
|
|
974
1096
|
client_id: string | null;
|
|
975
|
-
})
|
|
1097
|
+
}) => Promise<IResponse<TokenResponseV3>>;
|
|
976
1098
|
private newInstance;
|
|
977
1099
|
}
|
|
978
1100
|
|
|
@@ -1031,6 +1153,8 @@ declare class ThirdPartyCredentialApi {
|
|
|
1031
1153
|
*/
|
|
1032
1154
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
1033
1155
|
/**
|
|
1156
|
+
* GET [/iam/v3/public/namespaces/{namespace}/platforms/clients/active](api)
|
|
1157
|
+
*
|
|
1034
1158
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
1035
1159
|
*/
|
|
1036
1160
|
getThirdPartyPlatformInfo: () => Promise<IResponseWithSync<PublicThirdPartyPlatformInfoArray>>;
|
|
@@ -1049,63 +1173,90 @@ declare class TwoFA {
|
|
|
1049
1173
|
*/
|
|
1050
1174
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
1051
1175
|
/**
|
|
1052
|
-
*
|
|
1053
|
-
*
|
|
1054
|
-
*
|
|
1176
|
+
* GET [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode](api)
|
|
1177
|
+
*
|
|
1178
|
+
* This method is used to get 8-digits backup codes.
|
|
1179
|
+
* Each code is a one-time code and will be deleted once used.
|
|
1055
1180
|
*
|
|
1181
|
+
* _Requires a valid user access token_
|
|
1056
1182
|
*/
|
|
1057
1183
|
getBackupCode: () => Promise<IResponseWithSync<BackupCodesResponseV4>>;
|
|
1058
1184
|
/**
|
|
1059
|
-
*
|
|
1060
|
-
* <p>This method Requires valid user access token</p>
|
|
1185
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/enable](api)
|
|
1061
1186
|
*
|
|
1187
|
+
* This method is used to enable 2FA backup codes.
|
|
1188
|
+
*
|
|
1189
|
+
* _Requires a valid user access token_
|
|
1062
1190
|
*/
|
|
1063
1191
|
enable2FABackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1064
1192
|
/**
|
|
1065
|
-
*
|
|
1066
|
-
*
|
|
1193
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode](api)
|
|
1194
|
+
*
|
|
1195
|
+
* This method is used to enable 2FA backup codes.
|
|
1067
1196
|
*
|
|
1197
|
+
* _Requires a valid user access token_
|
|
1068
1198
|
*/
|
|
1069
1199
|
generateBackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1070
1200
|
/**
|
|
1071
|
-
*
|
|
1072
|
-
* <p>This method Requires valid user access token</p>
|
|
1201
|
+
* DELETE [/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/disable](api)
|
|
1073
1202
|
*
|
|
1203
|
+
* This method is used to enable 2FA backup codes.
|
|
1204
|
+
*
|
|
1205
|
+
* _Requires a valid user access token_
|
|
1074
1206
|
*/
|
|
1075
1207
|
disableBackupCodes: () => Promise<IResponse<unknown>>;
|
|
1076
1208
|
/**
|
|
1077
|
-
*
|
|
1078
|
-
*
|
|
1209
|
+
* DELETE [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/disable](api)
|
|
1210
|
+
* }
|
|
1211
|
+
* This method is used to disable 2FA authenticator.
|
|
1079
1212
|
*
|
|
1213
|
+
* _Requires a valid user access token_
|
|
1080
1214
|
*/
|
|
1081
1215
|
disableAuthenticator: () => Promise<IResponse<unknown>>;
|
|
1082
1216
|
/**
|
|
1083
|
-
*
|
|
1084
|
-
* <p>This method Requires valid user access token</p>
|
|
1217
|
+
* GET [/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor](api)
|
|
1085
1218
|
*
|
|
1219
|
+
* This method is used to get user enabled factors.
|
|
1220
|
+
*
|
|
1221
|
+
* _Requires a valid user access token_
|
|
1086
1222
|
*/
|
|
1087
1223
|
getEnabledMethods: () => Promise<IResponseWithSync<EnabledFactorsResponseV4>>;
|
|
1088
1224
|
/**
|
|
1089
|
-
*
|
|
1090
|
-
*
|
|
1225
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor](api)
|
|
1226
|
+
*
|
|
1227
|
+
* This method is used to make 2FA factor default.
|
|
1091
1228
|
*
|
|
1229
|
+
* _Requires a valid user access token_
|
|
1092
1230
|
*/
|
|
1093
1231
|
set2FAAsDefault: (factor: string) => Promise<IResponse<unknown>>;
|
|
1094
1232
|
/**
|
|
1095
|
-
*
|
|
1096
|
-
* <p>This method Requires valid user access token</p>
|
|
1233
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/enable](api)
|
|
1097
1234
|
*
|
|
1235
|
+
* This method is used to enable 2FA authenticator.
|
|
1236
|
+
*
|
|
1237
|
+
* _Requires a valid user access token_
|
|
1098
1238
|
*/
|
|
1099
1239
|
enable2FAAuthenticator: (code: string) => Promise<IResponse<unknown>>;
|
|
1100
1240
|
/**
|
|
1101
|
-
*
|
|
1102
|
-
* A QR code URI is also returned so that frontend can generate QR code image.</p>
|
|
1103
|
-
* <p>This method Requires valid user access token</p>
|
|
1241
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/key](api)
|
|
1104
1242
|
*
|
|
1243
|
+
* This method is used to generate a secret key for 3rd-party authenticator app.
|
|
1244
|
+
* A QR code URI is also returned so that frontend can generate QR code image.
|
|
1245
|
+
*
|
|
1246
|
+
* _Requires a valid user access token_
|
|
1105
1247
|
*/
|
|
1106
1248
|
generateSecretKey: () => Promise<IResponse<AuthenticatorKeyResponseV4>>;
|
|
1249
|
+
/**
|
|
1250
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/code](api)
|
|
1251
|
+
*/
|
|
1107
1252
|
requestEmailCode: () => Promise<IResponse<unknown>>;
|
|
1253
|
+
/**
|
|
1254
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable](api)
|
|
1255
|
+
*/
|
|
1108
1256
|
enableEmailMethod: (code: string) => Promise<IResponse<unknown>>;
|
|
1257
|
+
/**
|
|
1258
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/disable](api)
|
|
1259
|
+
*/
|
|
1109
1260
|
disableEmailMethod: () => Promise<IResponse<unknown>>;
|
|
1110
1261
|
private newInstance;
|
|
1111
1262
|
}
|
|
@@ -3830,118 +3981,134 @@ declare class UserApi {
|
|
|
3830
3981
|
*/
|
|
3831
3982
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
3832
3983
|
/**
|
|
3833
|
-
*
|
|
3984
|
+
* GET [/iam/v3/public/users/me](api)
|
|
3985
|
+
*
|
|
3986
|
+
* get currently logged-in user
|
|
3834
3987
|
*/
|
|
3835
3988
|
getCurrentUser: () => Promise<IResponseWithSync<UserResponseV3>>;
|
|
3836
3989
|
/**
|
|
3837
|
-
*
|
|
3990
|
+
* PATCH [/iam/v3/public/namespaces/{namespace}/users/me](api)
|
|
3991
|
+
*
|
|
3992
|
+
* Update current user
|
|
3838
3993
|
*/
|
|
3839
3994
|
updateUserMe: (data: UserUpdateRequestV3) => Promise<IResponse<UserResponseV3>>;
|
|
3840
3995
|
/**
|
|
3996
|
+
* PUT [/iam/v4/public/namespaces/{namespace}/users/me/email](api)
|
|
3997
|
+
*
|
|
3841
3998
|
* update current user's email
|
|
3842
3999
|
*/
|
|
3843
4000
|
updateEmailMe: (data: EmailUpdateRequestV4) => Promise<IResponse<unknown>>;
|
|
3844
4001
|
/**
|
|
4002
|
+
* PUT [/iam/v3/public/namespaces/{namespace}/users/me/password](api)
|
|
4003
|
+
*
|
|
3845
4004
|
* update current user's password
|
|
3846
4005
|
*/
|
|
3847
4006
|
updatePasswordMe: (data: UserPasswordUpdateV3Request) => Promise<IResponse<unknown>>;
|
|
3848
4007
|
/**
|
|
4008
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/code/request](api)
|
|
4009
|
+
*
|
|
3849
4010
|
* Required valid user authorization
|
|
3850
|
-
*
|
|
3851
|
-
*
|
|
3852
|
-
*
|
|
3853
|
-
*
|
|
3854
|
-
*
|
|
3855
|
-
*
|
|
3856
|
-
*
|
|
3857
|
-
*
|
|
3858
|
-
*
|
|
3859
|
-
*
|
|
3860
|
-
*
|
|
3861
|
-
*
|
|
3862
|
-
*
|
|
3863
|
-
*
|
|
3864
|
-
*
|
|
3865
|
-
* </li>
|
|
3866
|
-
* </ol>
|
|
3867
|
-
* <p>action code: 10116</p>
|
|
4011
|
+
* The verification code is sent to email address
|
|
4012
|
+
* Available contexts for use :
|
|
4013
|
+
* -
|
|
4014
|
+
* __UserAccountRegistration__
|
|
4015
|
+
* a context type used for verifying email address in user account registration. It returns 409 if the email address already verified.
|
|
4016
|
+
* __It is the default context if the Context field is empty__
|
|
4017
|
+
*
|
|
4018
|
+
* -
|
|
4019
|
+
* __UpdateEmailAddress__
|
|
4020
|
+
* a context type used for verify user before updating email address.(Without email address verified checking)
|
|
4021
|
+
*
|
|
4022
|
+
* - __upgradeHeadlessAccount__
|
|
4023
|
+
* The context is intended to be used whenever the email address wanted to be automatically verified on upgrading a headless account.
|
|
4024
|
+
* If this context used, IAM rejects the request if the email address is already used by others by returning HTTP Status Code 409.
|
|
4025
|
+
* action code: 10116
|
|
3868
4026
|
*
|
|
3869
4027
|
*/
|
|
3870
4028
|
requestVerificationCode: (data: SendVerificationCodeRequestV3) => Promise<IResponse<unknown>>;
|
|
3871
4029
|
/**
|
|
3872
|
-
*
|
|
3873
|
-
*
|
|
3874
|
-
*
|
|
3875
|
-
*
|
|
3876
|
-
*
|
|
4030
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/code/verify](api)
|
|
4031
|
+
*
|
|
4032
|
+
* Will consume code if validateOnly is set false
|
|
4033
|
+
* Required valid user authorization
|
|
4034
|
+
* Redeems a verification code sent to a user to verify the user's contact address is correct
|
|
4035
|
+
* Available ContactType : __email__
|
|
4036
|
+
* action code: 10107
|
|
3877
4037
|
*
|
|
3878
4038
|
*/
|
|
3879
4039
|
verifyCode: (data: UserVerificationRequestV3) => Promise<IResponse<unknown>>;
|
|
3880
4040
|
/**
|
|
3881
|
-
*
|
|
4041
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/headless/code/verify](api)
|
|
4042
|
+
*
|
|
4043
|
+
* If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded
|
|
3882
4044
|
* Require valid user access token.
|
|
3883
|
-
*
|
|
3884
|
-
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
3885
|
-
*
|
|
3886
|
-
* In order to get a verification code for the method, please check the send verification code method
|
|
3887
|
-
*
|
|
4045
|
+
* The method upgrades a headless account by linking the headless account with the email address and the password.
|
|
4046
|
+
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
4047
|
+
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
4048
|
+
* In order to get a verification code for the method, please check the send verification code method.
|
|
4049
|
+
* This method also have an ability to update user data (if the user data field is specified) right after the upgrade account process is done.
|
|
3888
4050
|
* Supported user data fields :
|
|
3889
|
-
*
|
|
3890
|
-
*
|
|
3891
|
-
*
|
|
3892
|
-
*
|
|
3893
|
-
*
|
|
3894
|
-
*
|
|
4051
|
+
*
|
|
4052
|
+
* - displayName
|
|
4053
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
4054
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
4055
|
+
*
|
|
4056
|
+
* action code : 10124
|
|
3895
4057
|
*/
|
|
3896
4058
|
upgradeHeadlessAccount: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV3) => Promise<IResponse<UserResponseV3>>;
|
|
3897
4059
|
/**
|
|
4060
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users/me/headless/code/verify](api)
|
|
4061
|
+
*
|
|
3898
4062
|
* Require valid user access token.
|
|
3899
4063
|
* The method upgrades a headless account by linking the headless account with the email address, username, and password.
|
|
3900
4064
|
* By upgrading the headless account into a full account, the user could use the email address, username, and password for using Justice IAM.
|
|
3901
|
-
*
|
|
4065
|
+
*
|
|
3902
4066
|
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
3903
|
-
*
|
|
3904
|
-
* <br>
|
|
4067
|
+
*
|
|
3905
4068
|
* This method also have an ability to update user data (if the user data field is specified) right after the upgrade account process is done.
|
|
3906
4069
|
* Supported user data fields:
|
|
3907
|
-
*
|
|
3908
|
-
*
|
|
3909
|
-
*
|
|
3910
|
-
*
|
|
3911
|
-
*
|
|
4070
|
+
*
|
|
4071
|
+
* - displayName
|
|
4072
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
4073
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
4074
|
+
*
|
|
3912
4075
|
* action code : 10124
|
|
3913
4076
|
*/
|
|
3914
4077
|
upgradeHeadlessAccountV4: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV4) => Promise<IResponse<UserResponseV4>>;
|
|
3915
4078
|
/**
|
|
3916
|
-
*
|
|
3917
|
-
*
|
|
4079
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms](api)
|
|
4080
|
+
*
|
|
4081
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
4082
|
+
* action code: 10128
|
|
3918
4083
|
*/
|
|
3919
4084
|
getUserLinkedPlatform: (userId: string) => Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
3920
4085
|
/**
|
|
4086
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}](api)
|
|
4087
|
+
*
|
|
3921
4088
|
* Required valid user authorization.
|
|
3922
|
-
*
|
|
4089
|
+
* __Prerequisite:__
|
|
3923
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).
|
|
3924
|
-
*
|
|
3925
|
-
*
|
|
3926
|
-
*
|
|
3927
|
-
*
|
|
3928
|
-
*
|
|
3929
|
-
*
|
|
3930
|
-
*
|
|
3931
|
-
*
|
|
3932
|
-
*
|
|
3933
|
-
*
|
|
3934
|
-
*
|
|
3935
|
-
*
|
|
3936
|
-
*
|
|
3937
|
-
*
|
|
3938
|
-
*
|
|
3939
|
-
*
|
|
3940
|
-
*
|
|
3941
|
-
*
|
|
3942
|
-
*
|
|
3943
|
-
*
|
|
3944
|
-
*
|
|
4091
|
+
* ##Supported platforms:
|
|
4092
|
+
*
|
|
4093
|
+
* - __steam__: The ticket’s value is the authentication code returned by Steam.
|
|
4094
|
+
* - __steamopenid__: Steam's user authentication method using OpenID 2.0. The ticket's value is URL generated by Steam on web authentication
|
|
4095
|
+
* - __facebook__: The ticket’s value is the authorization code returned by Facebook OAuth
|
|
4096
|
+
* - __google__: The ticket’s value is the authorization code returned by Google OAuth
|
|
4097
|
+
* - __oculus__: The ticket’s value is a string composed of Oculus's user ID and the nonce separated by a colon (:).
|
|
4098
|
+
* - __twitch__: The ticket’s value is the authorization code returned by Twitch OAuth.
|
|
4099
|
+
* - __android__: The ticket's value is the Android’s device ID
|
|
4100
|
+
* - __ios__: The ticket's value is the iOS’s device ID.
|
|
4101
|
+
* - __apple__: The ticket’s value is the authorization code returned by Apple OAuth.
|
|
4102
|
+
* - __device__: Every device that doesn't run Android and iOS is categorized as a device platform. The ticket's value is the device’s ID.
|
|
4103
|
+
* - __discord__: The ticket’s value is the authorization code returned by Discord OAuth.
|
|
4104
|
+
* - __ps4web__: The ticket’s value is the authorization code returned by PSN OAuth.
|
|
4105
|
+
* - __xblweb__: The ticket’s value is the authorization code returned by XBox Live OAuth.
|
|
4106
|
+
* - __awscognito__: The ticket’s value is the aws cognito access token (JWT).
|
|
4107
|
+
* - __epicgames__: The ticket’s value is an access-token obtained from Epicgames EOS Account Service.
|
|
4108
|
+
* - __nintendo__: The ticket’s value is the authorization code(id_token) returned by Nintendo OAuth.
|
|
4109
|
+
* - __stadia__: The ticket’s value is a JWT Token, which can be obtained after calling the Stadia SDK's function.
|
|
4110
|
+
*
|
|
4111
|
+
* action code : 10144
|
|
3945
4112
|
*/
|
|
3946
4113
|
linkAccountToPlatform: ({ platformId, data }: {
|
|
3947
4114
|
platformId: string;
|
|
@@ -3951,54 +4118,60 @@ declare class UserApi {
|
|
|
3951
4118
|
};
|
|
3952
4119
|
}) => Promise<IResponse<unknown>>;
|
|
3953
4120
|
/**
|
|
4121
|
+
* GET [/iam/v3/public/namespaces/{namespace}/requests/{requestId}/async/status](api)
|
|
4122
|
+
*
|
|
3954
4123
|
* Get the linking status between a third-party platform to a user
|
|
3955
4124
|
*/
|
|
3956
4125
|
getLinkRequestStatus: (requestId: string) => Promise<IResponseWithSync<LinkRequest>>;
|
|
3957
4126
|
/**
|
|
3958
|
-
*
|
|
4127
|
+
* @internal
|
|
4128
|
+
* It is going to be __DEPRECATED__.
|
|
3959
4129
|
* Update Platform Account relation to current User Account.
|
|
3960
4130
|
* Note: Game progression data (statistics, reward, etc) associated with previous User Account will not be
|
|
3961
4131
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
3962
|
-
*
|
|
3963
4132
|
*/
|
|
3964
4133
|
linkPlatformToUserAccount: ({ userId, data }: {
|
|
3965
4134
|
userId: string;
|
|
3966
4135
|
data: LinkPlatformAccountRequest;
|
|
3967
4136
|
}) => Promise<IResponse<unknown>>;
|
|
3968
4137
|
/**
|
|
4138
|
+
* DELETE [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}](api)
|
|
4139
|
+
*
|
|
3969
4140
|
* Required valid user authorization.
|
|
3970
|
-
*
|
|
3971
|
-
*
|
|
3972
|
-
*
|
|
3973
|
-
*
|
|
3974
|
-
*
|
|
3975
|
-
*
|
|
3976
|
-
*
|
|
3977
|
-
*
|
|
3978
|
-
*
|
|
3979
|
-
*
|
|
3980
|
-
*
|
|
3981
|
-
*
|
|
3982
|
-
*
|
|
3983
|
-
*
|
|
3984
|
-
*
|
|
3985
|
-
*
|
|
3986
|
-
*
|
|
3987
|
-
*
|
|
3988
|
-
*
|
|
3989
|
-
*
|
|
3990
|
-
*
|
|
3991
|
-
*
|
|
3992
|
-
*
|
|
3993
|
-
*
|
|
3994
|
-
*
|
|
3995
|
-
*
|
|
4141
|
+
* ##Supported platforms:
|
|
4142
|
+
*
|
|
4143
|
+
* - __steam__
|
|
4144
|
+
* - __steamopenid__
|
|
4145
|
+
* - __facebook__
|
|
4146
|
+
* - __google__
|
|
4147
|
+
* - __oculus__
|
|
4148
|
+
* - __twitch__
|
|
4149
|
+
* - __android__
|
|
4150
|
+
* - __ios__
|
|
4151
|
+
* - __apple__
|
|
4152
|
+
* - __device__
|
|
4153
|
+
* - __discord__
|
|
4154
|
+
* - __awscognito__
|
|
4155
|
+
* - __epicgames__
|
|
4156
|
+
* - __nintendo__
|
|
4157
|
+
* - __stadia__
|
|
4158
|
+
*
|
|
4159
|
+
* Unlink user's account from a specific platform. 'justice' platform might have multiple accounts from different namespaces linked.
|
|
4160
|
+
* _platformNamespace_ need to be specified when the platform ID is 'justice'.
|
|
4161
|
+
*
|
|
4162
|
+
* Unlink user's account from justice platform will enable password token grant and password update.
|
|
4163
|
+
*
|
|
4164
|
+
* If you want to unlink user's account in a game namespace, you have to specify _platformNamespace_ to that game namespace.
|
|
4165
|
+
*
|
|
4166
|
+
* action code : 10121
|
|
3996
4167
|
*/
|
|
3997
4168
|
unLinkAccountFromPlatform: ({ platformId, data }: {
|
|
3998
4169
|
platformId: string;
|
|
3999
4170
|
data: UnlinkUserPlatformRequest;
|
|
4000
4171
|
}) => Promise<IResponse<unknown>>;
|
|
4001
4172
|
/**
|
|
4173
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link](api)
|
|
4174
|
+
*
|
|
4002
4175
|
* This method is used to generate third party login page which will redirected to establish method.
|
|
4003
4176
|
*/
|
|
4004
4177
|
getThirdPartyURL: ({ platformId, queryParams }: {
|
|
@@ -4009,84 +4182,99 @@ declare class UserApi {
|
|
|
4009
4182
|
} | undefined;
|
|
4010
4183
|
}) => Promise<IResponseWithSync<WebLinkingResponse>>;
|
|
4011
4184
|
/**
|
|
4185
|
+
* GET [/iam/v3/public/namespaces/{namespace}/agerestrictions/countries/{countryCode}](api)
|
|
4186
|
+
*
|
|
4012
4187
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
4013
4188
|
*/
|
|
4014
4189
|
getAgeRestrictionByCountry: (countryCode: string) => Promise<IResponseWithSync<CountryV3Response>>;
|
|
4015
4190
|
/**
|
|
4016
|
-
* 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
|
|
4017
4193
|
*/
|
|
4018
|
-
renderImageFromGlbModel(data: {
|
|
4194
|
+
renderImageFromGlbModel: (data: {
|
|
4019
4195
|
model: string;
|
|
4020
4196
|
scene: string;
|
|
4021
|
-
})
|
|
4197
|
+
}) => Promise<IResponse<{
|
|
4022
4198
|
renders: string[];
|
|
4023
4199
|
}>>;
|
|
4024
|
-
notifyGameSDK(url: string): Promise<IResponse<string>>;
|
|
4025
4200
|
/**
|
|
4201
|
+
* POST [/iam/v3/public/namespaces/{namespace}/users/code/request](api)
|
|
4202
|
+
*
|
|
4026
4203
|
* This method will validate the request's email address.
|
|
4027
4204
|
*
|
|
4028
4205
|
* If it already been used, will response 409.
|
|
4029
4206
|
*
|
|
4030
4207
|
* If it is available, we will send a verification code to this email address.
|
|
4031
|
-
* This code can be verified by this <a href="#operations-Users-PublicVerifyRegistrationCode">method</a>.
|
|
4032
|
-
*
|
|
4033
4208
|
*/
|
|
4034
|
-
requestNewUserVerificationCode(data: SendRegisterVerificationCodeRequest)
|
|
4209
|
+
requestNewUserVerificationCode: (data: SendRegisterVerificationCodeRequest) => Promise<IResponse<unknown>>;
|
|
4035
4210
|
/**
|
|
4211
|
+
* POST [/iam/v4/public/namespaces/{namespace}/users](api)
|
|
4212
|
+
*
|
|
4036
4213
|
* Create a new user with unique email address and username.
|
|
4037
|
-
*
|
|
4038
|
-
*
|
|
4214
|
+
*
|
|
4215
|
+
* __Required attributes:__
|
|
4039
4216
|
* - authType: possible value is EMAILPASSWD
|
|
4040
4217
|
* - emailAddress: Please refer to the rule from /v3/public/inputValidations API.
|
|
4041
4218
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
4042
4219
|
* - password: Please refer to the rule from /v3/public/inputValidations API.
|
|
4043
4220
|
* - country: ISO3166-1 alpha-2 two letter, e.g. US.
|
|
4044
4221
|
* - dateOfBirth: YYYY-MM-DD, e.g. 1990-01-01. valid values are between 1905-01-01 until current date.
|
|
4045
|
-
*
|
|
4046
|
-
*
|
|
4222
|
+
*
|
|
4223
|
+
* __Not required attributes:__
|
|
4047
4224
|
* - displayName: Please refer to the rule from /v3/public/inputValidations API.
|
|
4048
|
-
*
|
|
4049
|
-
*
|
|
4225
|
+
*
|
|
4226
|
+
* This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.
|
|
4050
4227
|
*
|
|
4051
4228
|
*/
|
|
4052
|
-
createUser(data: CreateUserRequestV4)
|
|
4229
|
+
createUser: (data: CreateUserRequestV4) => Promise<IResponse<CreateUserResponseV4>>;
|
|
4053
4230
|
/**
|
|
4054
|
-
*
|
|
4055
|
-
*
|
|
4056
|
-
*
|
|
4231
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/distinctPlatforms](api)
|
|
4232
|
+
*
|
|
4233
|
+
* This method retrieves platform accounts linked to user.
|
|
4234
|
+
* It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
4235
|
+
* Required valid user authorization.
|
|
4057
4236
|
*/
|
|
4058
|
-
getUserDistinctLinkedPlatform(userId: string)
|
|
4237
|
+
getUserDistinctLinkedPlatform: (userId: string) => Promise<IResponseWithSync<DistinctPlatformResponseV3>>;
|
|
4059
4238
|
/**
|
|
4239
|
+
* DELETE [/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/all](api)
|
|
4240
|
+
*
|
|
4060
4241
|
* Required valid user authorization.
|
|
4061
|
-
*
|
|
4242
|
+
* Unlink user's account from for all third platforms.
|
|
4062
4243
|
*/
|
|
4063
|
-
unLinkAccountFromPlatformDistinct(platformId: string)
|
|
4244
|
+
unLinkAccountFromPlatformDistinct: (platformId: string) => Promise<IResponse<unknown>>;
|
|
4064
4245
|
/**
|
|
4065
|
-
*
|
|
4066
|
-
* <p>The verification link is sent to email address</p>
|
|
4067
|
-
* <p>It will not send request if user email is already verified</p>
|
|
4246
|
+
* POST [/iam/v3/public/users/me/verify_link/request](api)
|
|
4068
4247
|
*
|
|
4248
|
+
* Required valid user authorization
|
|
4249
|
+
* The verification link is sent to email address
|
|
4250
|
+
* It will not send request if user email is already verified
|
|
4069
4251
|
*/
|
|
4070
|
-
sendVerificationLink(languageTag: string)
|
|
4252
|
+
sendVerificationLink: (languageTag: string) => Promise<IResponse<unknown>>;
|
|
4071
4253
|
/**
|
|
4072
|
-
*
|
|
4073
|
-
*
|
|
4254
|
+
* GET [/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms](api)
|
|
4255
|
+
*
|
|
4256
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
4257
|
+
* action code: 10128
|
|
4074
4258
|
*/
|
|
4075
|
-
getLinkedAccount(userId: string)
|
|
4259
|
+
getLinkedAccount: (userId: string) => Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
4076
4260
|
/**
|
|
4077
|
-
*
|
|
4261
|
+
* GET [/iam/v3/public/users/me/headless/link/conflict](api)
|
|
4262
|
+
*
|
|
4263
|
+
* Note:
|
|
4078
4264
|
* 1. My account should be full account
|
|
4079
4265
|
* 2. My account not linked to request headless account's third platform.
|
|
4080
4266
|
*/
|
|
4081
|
-
getLinkAccountByOneTimeCodeConflict(params: {
|
|
4267
|
+
getLinkAccountByOneTimeCodeConflict: (params: {
|
|
4082
4268
|
oneTimeLinkCode: string | null;
|
|
4083
|
-
})
|
|
4269
|
+
}) => Promise<IResponseWithSync<GetLinkHeadlessAccountConflictResponse>>;
|
|
4084
4270
|
/**
|
|
4085
|
-
*
|
|
4271
|
+
* POST [/iam/v3/public/users/me/headless/linkWithProgression](api)
|
|
4272
|
+
*
|
|
4273
|
+
* Note:
|
|
4086
4274
|
* 1. My account should be full account
|
|
4087
4275
|
* 2. My account not linked to headless account's third platform.
|
|
4088
4276
|
*/
|
|
4089
|
-
linkWithProgression(data: LinkHeadlessAccountRequest)
|
|
4277
|
+
linkWithProgression: (data: LinkHeadlessAccountRequest) => Promise<IResponse<unknown>>;
|
|
4090
4278
|
/**
|
|
4091
4279
|
* @internal
|
|
4092
4280
|
*/
|
|
@@ -4268,7 +4456,7 @@ declare class LoginErrorUnknown extends Error {
|
|
|
4268
4456
|
}
|
|
4269
4457
|
declare class LoginErrorUnmatchedState extends Error {
|
|
4270
4458
|
}
|
|
4271
|
-
declare class
|
|
4459
|
+
declare class UserAuthorizationApi {
|
|
4272
4460
|
private readonly conf;
|
|
4273
4461
|
private readonly namespace;
|
|
4274
4462
|
private readonly cache;
|
|
@@ -4278,81 +4466,83 @@ declare class UserAuthorization {
|
|
|
4278
4466
|
*/
|
|
4279
4467
|
constructor(conf: SDKRequestConfig, namespace: string, cache: boolean, options: UserAuthorizationOptions);
|
|
4280
4468
|
/**
|
|
4281
|
-
*
|
|
4282
|
-
*
|
|
4469
|
+
* POST: [/iam/v3/oauth/token](api)
|
|
4470
|
+
*
|
|
4471
|
+
* This method supports grant type:
|
|
4472
|
+
* - Grant Type == `authorization_code`:
|
|
4283
4473
|
* It generates the user token by given the authorization
|
|
4284
4474
|
* code which generated in "/iam/v3/authenticate" API response. It should also pass
|
|
4285
4475
|
* in the redirect_uri, which should be the same as generating the
|
|
4286
4476
|
* authorization code request.
|
|
4287
|
-
*
|
|
4288
|
-
*
|
|
4477
|
+
*
|
|
4478
|
+
* - Grant Type == `password`:
|
|
4289
4479
|
* The grant type to use for authenticating a user, whether it's by email / username and password combination
|
|
4290
4480
|
* or through platform.
|
|
4291
|
-
*
|
|
4292
|
-
*
|
|
4481
|
+
*
|
|
4482
|
+
* - Grant Type == `refresh_token`:
|
|
4293
4483
|
* Used to get a new access token for a valid refresh token.
|
|
4294
|
-
*
|
|
4295
|
-
*
|
|
4484
|
+
*
|
|
4485
|
+
* - Grant Type == `client_credentials`:
|
|
4296
4486
|
* It generates a token by checking the client credentials provided through Authorization header.
|
|
4297
|
-
*
|
|
4298
|
-
*
|
|
4299
|
-
*
|
|
4300
|
-
*
|
|
4301
|
-
*
|
|
4302
|
-
*
|
|
4303
|
-
*
|
|
4304
|
-
*
|
|
4305
|
-
*
|
|
4306
|
-
*
|
|
4307
|
-
*
|
|
4308
|
-
*
|
|
4309
|
-
*
|
|
4310
|
-
*
|
|
4311
|
-
*
|
|
4312
|
-
*
|
|
4313
|
-
*
|
|
4314
|
-
*
|
|
4315
|
-
*
|
|
4316
|
-
*
|
|
4317
|
-
*
|
|
4318
|
-
*
|
|
4319
|
-
*
|
|
4320
|
-
*
|
|
4321
|
-
*
|
|
4322
|
-
*
|
|
4323
|
-
*
|
|
4324
|
-
*
|
|
4325
|
-
*
|
|
4326
|
-
*
|
|
4327
|
-
*
|
|
4328
|
-
*
|
|
4329
|
-
*
|
|
4330
|
-
*
|
|
4331
|
-
*
|
|
4332
|
-
*
|
|
4333
|
-
*
|
|
4334
|
-
*
|
|
4335
|
-
*
|
|
4336
|
-
*
|
|
4337
|
-
*
|
|
4338
|
-
*
|
|
4339
|
-
*
|
|
4340
|
-
*
|
|
4341
|
-
*
|
|
4342
|
-
*
|
|
4343
|
-
*
|
|
4344
|
-
*
|
|
4345
|
-
*
|
|
4346
|
-
*
|
|
4347
|
-
*
|
|
4348
|
-
*
|
|
4349
|
-
*
|
|
4350
|
-
*
|
|
4351
|
-
*
|
|
4352
|
-
*
|
|
4353
|
-
*
|
|
4354
|
-
*
|
|
4355
|
-
*
|
|
4487
|
+
* ##Access Token Content
|
|
4488
|
+
* Following is the access token’s content:
|
|
4489
|
+
*
|
|
4490
|
+
* -
|
|
4491
|
+
* __namespace__. It is the namespace the token was generated from.
|
|
4492
|
+
*
|
|
4493
|
+
* -
|
|
4494
|
+
* __display_name__. The display name of the sub. It is empty if the token is generated from the client credential
|
|
4495
|
+
*
|
|
4496
|
+
* -
|
|
4497
|
+
* __roles__. The sub’s roles. It is empty if the token is generated from the client credential
|
|
4498
|
+
*
|
|
4499
|
+
* -
|
|
4500
|
+
* __namespace_roles__. The sub’s roles scoped to namespace. Improvement from roles, which make the role scoped to specific namespace instead of global to publisher namespace
|
|
4501
|
+
*
|
|
4502
|
+
* -
|
|
4503
|
+
* __permissions__. The sub or aud’ permissions
|
|
4504
|
+
*
|
|
4505
|
+
* -
|
|
4506
|
+
* __bans__. The sub’s list of bans. It is used by the IAM client for validating the token.
|
|
4507
|
+
*
|
|
4508
|
+
* -
|
|
4509
|
+
* __jflgs__. It stands for Justice Flags. It is a special flag used for storing additional status information regarding the sub. It is implemented as a bit mask. Following explains what each bit represents:
|
|
4510
|
+
*
|
|
4511
|
+
* - 1: Email Address Verified
|
|
4512
|
+
* - 2: Phone Number Verified
|
|
4513
|
+
* - 4: Anonymous
|
|
4514
|
+
* - 8: Suspicious Login
|
|
4515
|
+
*
|
|
4516
|
+
*
|
|
4517
|
+
* -
|
|
4518
|
+
* __aud__. The aud is the targeted resource server.
|
|
4519
|
+
*
|
|
4520
|
+
* -
|
|
4521
|
+
* __iat__. The time the token issues at. It is in Epoch time format
|
|
4522
|
+
*
|
|
4523
|
+
* -
|
|
4524
|
+
* __exp__. The time the token expires. It is in Epoch time format
|
|
4525
|
+
*
|
|
4526
|
+
* -
|
|
4527
|
+
* __client_id__. The UserID. The sub is omitted if the token is generated from client credential
|
|
4528
|
+
*
|
|
4529
|
+
* -
|
|
4530
|
+
* __scope__. The scope of the access request, expressed as a list of space-delimited, case-sensitive strings
|
|
4531
|
+
*
|
|
4532
|
+
*
|
|
4533
|
+
* ##Bans
|
|
4534
|
+
* The JWT contains user's active bans with its expiry date. List of ban types can be obtained from /bans.
|
|
4535
|
+
* ##Device Cookie Validation
|
|
4536
|
+
* __For grant type "password" only__
|
|
4537
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
4538
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies)
|
|
4539
|
+
* This method will read device cookie from request header __Auth-Trust-Id__. If device cookie not found, it will generate a new one and set it into response body __auth_trust_id__ when successfully login.
|
|
4540
|
+
* ##Track Login History
|
|
4541
|
+
* This method will track login history to detect suspicious login activity, please provide __Device-Id__ (alphanumeric) in request header parameter otherwise it will set to "unknown".
|
|
4542
|
+
* Align with General Data Protection Regulation in Europe, user login history will be kept within 28 days by default"
|
|
4543
|
+
* ##2FA remember device
|
|
4544
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
4545
|
+
* action code: 10703
|
|
4356
4546
|
*/
|
|
4357
4547
|
loginWithAuthorizationCode: ({ code, codeVerifier }: {
|
|
4358
4548
|
code: string;
|
|
@@ -4376,15 +4566,30 @@ declare class UserAuthorization {
|
|
|
4376
4566
|
response: IDataStatus<TokenWithDeviceCookieResponseV3>;
|
|
4377
4567
|
error: null;
|
|
4378
4568
|
}>;
|
|
4569
|
+
/**
|
|
4570
|
+
* @internal
|
|
4571
|
+
*/
|
|
4379
4572
|
getMfaDataFromError: (errorResponse: AxiosResponse) => {
|
|
4380
4573
|
mfaToken: any;
|
|
4381
4574
|
factors: any;
|
|
4382
4575
|
defaultFactor: any;
|
|
4383
4576
|
email: any;
|
|
4384
4577
|
} | undefined;
|
|
4578
|
+
/**
|
|
4579
|
+
* @internal
|
|
4580
|
+
*/
|
|
4385
4581
|
getMfaDataFromStorage: () => any;
|
|
4582
|
+
/**
|
|
4583
|
+
* @internal
|
|
4584
|
+
*/
|
|
4386
4585
|
removeMfaDataFromStorage: () => void;
|
|
4387
|
-
|
|
4586
|
+
/**
|
|
4587
|
+
* @internal
|
|
4588
|
+
*/
|
|
4589
|
+
matchReceivedState: (maybeSentState: string) => MatchReceivedStateResult;
|
|
4590
|
+
/**
|
|
4591
|
+
* @internal
|
|
4592
|
+
*/
|
|
4388
4593
|
deduceLoginError: (error: string) => LoginErrorCancelled | LoginErrorExpired | LoginErrorUnknown;
|
|
4389
4594
|
exchangeAuthorizationCode: ({ code, error, state }: {
|
|
4390
4595
|
code?: string | null | undefined;
|
|
@@ -4400,13 +4605,32 @@ declare class UserAuthorization {
|
|
|
4400
4605
|
} | undefined;
|
|
4401
4606
|
returnPath: any;
|
|
4402
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
|
+
*/
|
|
4403
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
|
+
*/
|
|
4404
4619
|
createForgotPasswordURL: () => string;
|
|
4620
|
+
/**
|
|
4621
|
+
* @internal
|
|
4622
|
+
*/
|
|
4405
4623
|
getCodeChallenge: () => {
|
|
4406
4624
|
verifier: string;
|
|
4407
4625
|
challenge: string;
|
|
4408
4626
|
};
|
|
4627
|
+
/**
|
|
4628
|
+
* @internal
|
|
4629
|
+
*/
|
|
4409
4630
|
refreshToken: () => Promise<Partial<TokenWithDeviceCookieResponseV3> | false>;
|
|
4631
|
+
/**
|
|
4632
|
+
* @internal
|
|
4633
|
+
*/
|
|
4410
4634
|
private getSearchParams;
|
|
4411
4635
|
}
|
|
4412
4636
|
|
|
@@ -4441,17 +4665,29 @@ declare class AgreementApi {
|
|
|
4441
4665
|
*/
|
|
4442
4666
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4443
4667
|
/**
|
|
4444
|
-
*
|
|
4668
|
+
* POST [/agreement/public/agreements/policies](api)
|
|
4669
|
+
*
|
|
4670
|
+
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement.
|
|
4671
|
+
*
|
|
4672
|
+
* _Required permission_: login user
|
|
4445
4673
|
*/
|
|
4446
|
-
acceptLegalPolicies(acceptAgreements: AcceptAgreementRequest[])
|
|
4674
|
+
acceptLegalPolicies: (acceptAgreements: AcceptAgreementRequest[]) => Promise<IResponse<AcceptAgreementResponse>>;
|
|
4447
4675
|
/**
|
|
4448
|
-
*
|
|
4676
|
+
* GET [/agreement/public/agreements/policies](api)
|
|
4677
|
+
*
|
|
4678
|
+
* Retrieve accepted Legal Agreements.
|
|
4679
|
+
*
|
|
4680
|
+
* _Required permission_: login user
|
|
4449
4681
|
*/
|
|
4450
|
-
getAgreements()
|
|
4682
|
+
getAgreements: () => Promise<IResponseWithSync<RetrieveAcceptedAgreementResponseArray>>;
|
|
4451
4683
|
/**
|
|
4452
|
-
*
|
|
4684
|
+
* PATCH [/agreement/public/agreements/localized-policy-versions/preferences](api)
|
|
4685
|
+
*
|
|
4686
|
+
* Change marketing preference consent
|
|
4687
|
+
*
|
|
4688
|
+
* _Required permission_: login user
|
|
4453
4689
|
*/
|
|
4454
|
-
updateMarketingPreferences(acceptAgreements: AcceptAgreementRequest[])
|
|
4690
|
+
updateMarketingPreferences: (acceptAgreements: AcceptAgreementRequest[]) => Promise<IResponse<unknown>>;
|
|
4455
4691
|
private newInstance;
|
|
4456
4692
|
}
|
|
4457
4693
|
|
|
@@ -4464,9 +4700,13 @@ declare class EligibilitiesApi {
|
|
|
4464
4700
|
*/
|
|
4465
4701
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4466
4702
|
/**
|
|
4467
|
-
*
|
|
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
|
|
4468
4708
|
*/
|
|
4469
|
-
getUserEligibilities()
|
|
4709
|
+
getUserEligibilities: () => Promise<IResponseWithSync<RetrieveUserEligibilitiesResponseArray>>;
|
|
4470
4710
|
private newInstance;
|
|
4471
4711
|
}
|
|
4472
4712
|
|
|
@@ -4479,9 +4719,11 @@ declare class LocalizedPolicyVersionsApi {
|
|
|
4479
4719
|
*/
|
|
4480
4720
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4481
4721
|
/**
|
|
4482
|
-
*
|
|
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.
|
|
4483
4725
|
*/
|
|
4484
|
-
fetchLocalizedPolicyVersionById(localizedPolicyVersionId: string)
|
|
4726
|
+
fetchLocalizedPolicyVersionById: (localizedPolicyVersionId: string) => Promise<IResponseWithSync<RetrieveLocalizedPolicyVersionPublicResponse>>;
|
|
4485
4727
|
private newInstance;
|
|
4486
4728
|
}
|
|
4487
4729
|
|
|
@@ -4738,19 +4980,38 @@ declare class PoliciesApi {
|
|
|
4738
4980
|
*/
|
|
4739
4981
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4740
4982
|
/**
|
|
4741
|
-
*
|
|
4983
|
+
* GET [/agreement/public/policies/namespaces/{namespace}/countries/{countryCode}](api)
|
|
4984
|
+
*
|
|
4985
|
+
* Retrieve all active latest policies based on a namespace and country.
|
|
4986
|
+
*
|
|
4987
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
4988
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
4989
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
4990
|
+
* - _Fill the alwaysIncludeDefault with true if you want to be responded with always include default policy. If there are duplicate policies (default policies and country specific policies with same base policy) it'll include policy with same country code, for example:_
|
|
4991
|
+
*
|
|
4992
|
+
* - Document 1 (default): Region US (default), UA
|
|
4993
|
+
* - Document 2 (default): Region US (default)
|
|
4994
|
+
* - Document 3 (default): Region US (default)
|
|
4995
|
+
* - User: Region UA
|
|
4996
|
+
* - Query: alwaysIncludeDefault: true
|
|
4997
|
+
* - Response: Document 1 (UA), Document 2 (US), Document 3 (US)
|
|
4742
4998
|
*/
|
|
4743
|
-
fetchPoliciesByCountry({ countryCode, queryParams }: {
|
|
4999
|
+
fetchPoliciesByCountry: ({ countryCode, queryParams }: {
|
|
4744
5000
|
countryCode: string;
|
|
4745
5001
|
queryParams: Parameters<Policies$['fetchPublicPoliciesNamespacesByNamespaceCountriesByCountrycode']>[1];
|
|
4746
|
-
})
|
|
5002
|
+
}) => Promise<IResponseWithSync<RetrievePolicyPublicResponseArray>>;
|
|
4747
5003
|
/**
|
|
4748
|
-
*
|
|
5004
|
+
* GET [/agreement/public/policies/countries/{countryCode}](api)
|
|
5005
|
+
*
|
|
5006
|
+
* Retrieve all active latest policies based on country from all namespaces.
|
|
5007
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
5008
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
5009
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
4749
5010
|
*/
|
|
4750
|
-
fetchAllPoliciesByCountry({ countryCode, queryParams }: {
|
|
5011
|
+
fetchAllPoliciesByCountry: ({ countryCode, queryParams }: {
|
|
4751
5012
|
countryCode: string;
|
|
4752
5013
|
queryParams?: Parameters<Policies$['fetchPublicPoliciesCountriesByCountrycode']>[1];
|
|
4753
|
-
})
|
|
5014
|
+
}) => Promise<IResponseWithSync<RetrievePolicyPublicResponseArray>>;
|
|
4754
5015
|
private newInstance;
|
|
4755
5016
|
}
|
|
4756
5017
|
|
|
@@ -7606,8 +7867,17 @@ declare class PublicTemplateApi<ConfigKeysEnum extends string> {
|
|
|
7606
7867
|
private readonly namespace;
|
|
7607
7868
|
private cache;
|
|
7608
7869
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
7870
|
+
/**
|
|
7871
|
+
* @internal
|
|
7872
|
+
*/
|
|
7609
7873
|
getTemplateConfigs: (template: string) => Promise<IResponseWithSync<Configs>>;
|
|
7874
|
+
/**
|
|
7875
|
+
* @internal
|
|
7876
|
+
*/
|
|
7610
7877
|
getTemplateConfig: (template: string, configId: ConfigKeysEnum) => Promise<IResponseWithSync<Config>>;
|
|
7878
|
+
/**
|
|
7879
|
+
* @internal
|
|
7880
|
+
*/
|
|
7611
7881
|
getDiscoveryTemplateConfigs: () => Promise<IResponseWithSync<DiscoveryConfigData>>;
|
|
7612
7882
|
private newInstance;
|
|
7613
7883
|
}
|
|
@@ -7652,11 +7922,17 @@ declare class CurrencyApi {
|
|
|
7652
7922
|
*/
|
|
7653
7923
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
7654
7924
|
/**
|
|
7655
|
-
*
|
|
7925
|
+
* GET [/platform/public/namespaces/{namespace}/currencies](api)
|
|
7926
|
+
*
|
|
7927
|
+
* List currencies of a namespace.
|
|
7928
|
+
*
|
|
7929
|
+
* Returns: Currency List
|
|
7656
7930
|
*/
|
|
7657
7931
|
getCurrencies: () => Promise<IResponseWithSync<CurrencyInfoArray>>;
|
|
7658
7932
|
/**
|
|
7659
7933
|
* Get the currencies list and convert into a map of currency code and the currency itself
|
|
7934
|
+
*
|
|
7935
|
+
* @internal
|
|
7660
7936
|
*/
|
|
7661
7937
|
getCurrencyMap: () => Promise<{
|
|
7662
7938
|
response: null;
|
|
@@ -11159,47 +11435,51 @@ declare class EntitlementApi {
|
|
|
11159
11435
|
*/
|
|
11160
11436
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11161
11437
|
/**
|
|
11162
|
-
*
|
|
11438
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppId](api)
|
|
11439
|
+
*
|
|
11440
|
+
* Get user app entitlement by appId.
|
|
11163
11441
|
*/
|
|
11164
|
-
getEntitlementByAppId({ userId, appId }: {
|
|
11442
|
+
getEntitlementByAppId: ({ userId, appId }: {
|
|
11165
11443
|
userId: string;
|
|
11166
11444
|
appId: string;
|
|
11167
|
-
})
|
|
11445
|
+
}) => Promise<IResponseWithSync<AppEntitlementInfo>>;
|
|
11168
11446
|
/**
|
|
11169
|
-
* Query user entitlements for a specific user
|
|
11447
|
+
* Query user entitlements for a specific user.
|
|
11448
|
+
* Returns: entitlement list
|
|
11170
11449
|
*/
|
|
11171
|
-
getEntitlements({ userId, queryParams }: {
|
|
11450
|
+
getEntitlements: ({ userId, queryParams }: {
|
|
11172
11451
|
userId: string;
|
|
11173
11452
|
queryParams: Parameters<Entitlement$['fetchNsUsersByUseridEntitlements']>[1];
|
|
11174
|
-
})
|
|
11453
|
+
}) => Promise<IResponseWithSync<EntitlementPagingSlicedResult>>;
|
|
11175
11454
|
/**
|
|
11176
|
-
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
11455
|
+
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
11177
11456
|
*/
|
|
11178
|
-
getEntitlementOwnerShip({ userId, queryParams }: {
|
|
11457
|
+
getEntitlementOwnerShip: ({ userId, queryParams }: {
|
|
11179
11458
|
userId: string;
|
|
11180
11459
|
queryParams: {
|
|
11181
11460
|
itemIds?: string[];
|
|
11182
11461
|
appIds?: string[];
|
|
11183
11462
|
skus?: string[];
|
|
11184
11463
|
};
|
|
11185
|
-
})
|
|
11464
|
+
}) => Promise<IResponseWithSync<Ownership>>;
|
|
11186
11465
|
/**
|
|
11187
|
-
* Get user entitlement ownership by itemIds
|
|
11466
|
+
* Get user entitlement ownership by itemIds.
|
|
11188
11467
|
*/
|
|
11189
|
-
getEntitlementByItemIds({ userId, queryParams }: {
|
|
11468
|
+
getEntitlementByItemIds: ({ userId, queryParams }: {
|
|
11190
11469
|
userId: string;
|
|
11191
11470
|
queryParams?: {
|
|
11192
|
-
ids?: string[];
|
|
11193
|
-
};
|
|
11194
|
-
})
|
|
11471
|
+
ids?: string[] | undefined;
|
|
11472
|
+
} | undefined;
|
|
11473
|
+
}) => Promise<IResponseWithSync<EntitlementOwnershipArray>>;
|
|
11195
11474
|
/**
|
|
11196
|
-
* 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
|
|
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
|
|
11476
|
+
* Returns: consumed entitlement
|
|
11197
11477
|
*/
|
|
11198
|
-
claimEntitlement({ userId, entitlementId, data }: {
|
|
11478
|
+
claimEntitlement: ({ userId, entitlementId, data }: {
|
|
11199
11479
|
userId: string;
|
|
11200
11480
|
entitlementId: string;
|
|
11201
11481
|
data: EntitlementDecrement;
|
|
11202
|
-
})
|
|
11482
|
+
}) => Promise<IResponse<EntitlementDecrementResult>>;
|
|
11203
11483
|
private newInstance;
|
|
11204
11484
|
}
|
|
11205
11485
|
|
|
@@ -11228,7 +11508,11 @@ declare class FulfillmentApi {
|
|
|
11228
11508
|
*/
|
|
11229
11509
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11230
11510
|
/**
|
|
11231
|
-
*
|
|
11511
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/fulfillment/code](api)
|
|
11512
|
+
*
|
|
11513
|
+
* Redeem campaign code
|
|
11514
|
+
*
|
|
11515
|
+
* Returns: fulfillment result
|
|
11232
11516
|
*/
|
|
11233
11517
|
redeemCode: ({ userId, data }: {
|
|
11234
11518
|
userId: string;
|
|
@@ -11237,232 +11521,197 @@ declare class FulfillmentApi {
|
|
|
11237
11521
|
private newInstance;
|
|
11238
11522
|
}
|
|
11239
11523
|
|
|
11240
|
-
declare const
|
|
11241
|
-
|
|
11242
|
-
|
|
11243
|
-
|
|
11244
|
-
|
|
11245
|
-
|
|
11246
|
-
|
|
11247
|
-
|
|
11248
|
-
|
|
11249
|
-
|
|
11250
|
-
|
|
11251
|
-
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11255
|
-
|
|
11256
|
-
|
|
11257
|
-
|
|
11258
|
-
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
11262
|
-
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
|
|
11269
|
-
|
|
11270
|
-
|
|
11271
|
-
|
|
11272
|
-
|
|
11273
|
-
|
|
11274
|
-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
|
|
11284
|
-
|
|
11285
|
-
|
|
11286
|
-
|
|
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
|
-
|
|
11318
|
-
|
|
11319
|
-
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
|
|
11328
|
-
|
|
11329
|
-
|
|
11330
|
-
|
|
11331
|
-
|
|
11332
|
-
|
|
11333
|
-
|
|
11334
|
-
|
|
11335
|
-
|
|
11336
|
-
|
|
11337
|
-
|
|
11338
|
-
|
|
11339
|
-
|
|
11340
|
-
|
|
11341
|
-
|
|
11342
|
-
|
|
11343
|
-
|
|
11344
|
-
|
|
11345
|
-
|
|
11346
|
-
|
|
11347
|
-
|
|
11348
|
-
|
|
11349
|
-
|
|
11350
|
-
|
|
11351
|
-
|
|
11352
|
-
|
|
11353
|
-
|
|
11354
|
-
|
|
11355
|
-
|
|
11356
|
-
|
|
11357
|
-
|
|
11358
|
-
|
|
11359
|
-
|
|
11360
|
-
|
|
11361
|
-
|
|
11362
|
-
|
|
11363
|
-
|
|
11364
|
-
|
|
11365
|
-
|
|
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;
|
|
11555
|
+
}, "strip", z.ZodTypeAny, {
|
|
11556
|
+
as?: string | null | undefined;
|
|
11557
|
+
caption?: string | null | undefined;
|
|
11558
|
+
height: number;
|
|
11559
|
+
width: number;
|
|
11560
|
+
imageUrl: string;
|
|
11561
|
+
smallImageUrl: string;
|
|
11562
|
+
}, {
|
|
11563
|
+
as?: string | null | undefined;
|
|
11564
|
+
caption?: string | null | undefined;
|
|
11565
|
+
height: number;
|
|
11566
|
+
width: number;
|
|
11567
|
+
imageUrl: string;
|
|
11568
|
+
smallImageUrl: string;
|
|
11569
|
+
}>, "many">>>;
|
|
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>>;
|
|
11584
|
+
}, "strip", z.ZodTypeAny, {
|
|
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;
|
|
11597
|
+
}, {
|
|
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;
|
|
11610
|
+
}>, "many">>>;
|
|
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;
|
|
11616
|
+
}, "strip", z.ZodTypeAny, {
|
|
11617
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11618
|
+
fixedFreeDays: number;
|
|
11619
|
+
fixedTrialCycles: number;
|
|
11620
|
+
graceDays: number;
|
|
11621
|
+
}, {
|
|
11622
|
+
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11623
|
+
fixedFreeDays: number;
|
|
11624
|
+
fixedTrialCycles: number;
|
|
11625
|
+
graceDays: number;
|
|
11626
|
+
}>>>;
|
|
11627
|
+
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11628
|
+
itemQty: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
11629
|
+
boundItemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11630
|
+
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11631
|
+
features: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11632
|
+
maxCountPerUser: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11633
|
+
maxCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11634
|
+
clazz: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11635
|
+
boothName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11636
|
+
displayOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11637
|
+
ext: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11638
|
+
region: z.ZodString;
|
|
11639
|
+
language: z.ZodString;
|
|
11640
|
+
createdAt: z.ZodString;
|
|
11641
|
+
updatedAt: z.ZodString;
|
|
11642
|
+
purchaseCondition: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11643
|
+
conditionGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11644
|
+
predicates: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11645
|
+
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11646
|
+
predicateType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["EntitlementPredicate", "SeasonPassPredicate", "SeasonTierPredicate"]>>>;
|
|
11647
|
+
comparison: z.ZodNullable<z.ZodOptional<z.ZodEnum<["is", "isNot", "isGreaterThan", "isGreaterThanOrEqual", "isLessThan", "isLessThanOrEqual", "includes", "excludes"]>>>;
|
|
11648
|
+
anyOf: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11649
|
+
values: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11650
|
+
value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11651
|
+
}, "strip", z.ZodTypeAny, {
|
|
11652
|
+
name?: string | null | undefined;
|
|
11653
|
+
values?: string[] | null | undefined;
|
|
11654
|
+
value?: string | null | undefined;
|
|
11655
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11656
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11657
|
+
anyOf?: number | null | undefined;
|
|
11658
|
+
}, {
|
|
11659
|
+
name?: string | null | undefined;
|
|
11660
|
+
values?: string[] | null | undefined;
|
|
11661
|
+
value?: string | null | undefined;
|
|
11662
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11663
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11664
|
+
anyOf?: number | null | undefined;
|
|
11665
|
+
}>, "many">>>;
|
|
11666
|
+
operator: z.ZodNullable<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
11366
11667
|
}, "strip", z.ZodTypeAny, {
|
|
11367
|
-
|
|
11368
|
-
|
|
11369
|
-
|
|
11370
|
-
|
|
11371
|
-
|
|
11372
|
-
|
|
11668
|
+
predicates?: {
|
|
11669
|
+
name?: string | null | undefined;
|
|
11670
|
+
values?: string[] | null | undefined;
|
|
11671
|
+
value?: string | null | undefined;
|
|
11672
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11673
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11674
|
+
anyOf?: number | null | undefined;
|
|
11675
|
+
}[] | null | undefined;
|
|
11676
|
+
operator?: "and" | "or" | null | undefined;
|
|
11373
11677
|
}, {
|
|
11374
|
-
|
|
11375
|
-
|
|
11376
|
-
|
|
11377
|
-
|
|
11378
|
-
|
|
11379
|
-
|
|
11678
|
+
predicates?: {
|
|
11679
|
+
name?: string | null | undefined;
|
|
11680
|
+
values?: string[] | null | undefined;
|
|
11681
|
+
value?: string | null | undefined;
|
|
11682
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11683
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11684
|
+
anyOf?: number | null | undefined;
|
|
11685
|
+
}[] | null | undefined;
|
|
11686
|
+
operator?: "and" | "or" | null | undefined;
|
|
11380
11687
|
}>, "many">>>;
|
|
11381
|
-
operator: z.ZodNullable<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
11382
11688
|
}, "strip", z.ZodTypeAny, {
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
11386
|
-
|
|
11387
|
-
|
|
11388
|
-
|
|
11389
|
-
|
|
11689
|
+
conditionGroups?: {
|
|
11690
|
+
predicates?: {
|
|
11691
|
+
name?: string | null | undefined;
|
|
11692
|
+
values?: string[] | null | undefined;
|
|
11693
|
+
value?: string | null | undefined;
|
|
11694
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11695
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11696
|
+
anyOf?: number | null | undefined;
|
|
11697
|
+
}[] | null | undefined;
|
|
11698
|
+
operator?: "and" | "or" | null | undefined;
|
|
11390
11699
|
}[] | null | undefined;
|
|
11391
|
-
operator?: "and" | "or" | null | undefined;
|
|
11392
11700
|
}, {
|
|
11393
|
-
|
|
11394
|
-
|
|
11395
|
-
|
|
11396
|
-
|
|
11397
|
-
|
|
11398
|
-
|
|
11399
|
-
|
|
11400
|
-
|
|
11401
|
-
|
|
11402
|
-
|
|
11403
|
-
}, "strip", z.ZodTypeAny, {
|
|
11404
|
-
conditionGroups?: {
|
|
11405
|
-
predicates?: {
|
|
11406
|
-
name?: string | null | undefined;
|
|
11407
|
-
values?: string[] | null | undefined;
|
|
11408
|
-
value?: string | null | undefined;
|
|
11409
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11410
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11411
|
-
anyOf?: number | null | undefined;
|
|
11412
|
-
}[] | null | undefined;
|
|
11413
|
-
operator?: "and" | "or" | null | undefined;
|
|
11414
|
-
}[] | null | undefined;
|
|
11415
|
-
}, {
|
|
11416
|
-
conditionGroups?: {
|
|
11417
|
-
predicates?: {
|
|
11418
|
-
name?: string | null | undefined;
|
|
11419
|
-
values?: string[] | null | undefined;
|
|
11420
|
-
value?: string | null | undefined;
|
|
11421
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11422
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11423
|
-
anyOf?: number | null | undefined;
|
|
11701
|
+
conditionGroups?: {
|
|
11702
|
+
predicates?: {
|
|
11703
|
+
name?: string | null | undefined;
|
|
11704
|
+
values?: string[] | null | undefined;
|
|
11705
|
+
value?: string | null | undefined;
|
|
11706
|
+
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11707
|
+
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11708
|
+
anyOf?: number | null | undefined;
|
|
11709
|
+
}[] | null | undefined;
|
|
11710
|
+
operator?: "and" | "or" | null | undefined;
|
|
11424
11711
|
}[] | null | undefined;
|
|
11425
|
-
|
|
11426
|
-
|
|
11427
|
-
|
|
11428
|
-
optionBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11429
|
-
boxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11430
|
-
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11431
|
-
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11432
|
-
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11433
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11434
|
-
}, "strip", z.ZodTypeAny, {
|
|
11435
|
-
itemId?: string | null | undefined;
|
|
11436
|
-
itemSku?: string | null | undefined;
|
|
11437
|
-
itemType?: string | null | undefined;
|
|
11438
|
-
count?: number | null | undefined;
|
|
11439
|
-
}, {
|
|
11440
|
-
itemId?: string | null | undefined;
|
|
11441
|
-
itemSku?: string | null | undefined;
|
|
11442
|
-
itemType?: string | null | undefined;
|
|
11443
|
-
count?: number | null | undefined;
|
|
11444
|
-
}>, "many">>>;
|
|
11445
|
-
}, "strip", z.ZodTypeAny, {
|
|
11446
|
-
boxItems?: {
|
|
11447
|
-
itemId?: string | null | undefined;
|
|
11448
|
-
itemSku?: string | null | undefined;
|
|
11449
|
-
itemType?: string | null | undefined;
|
|
11450
|
-
count?: number | null | undefined;
|
|
11451
|
-
}[] | null | undefined;
|
|
11452
|
-
}, {
|
|
11453
|
-
boxItems?: {
|
|
11454
|
-
itemId?: string | null | undefined;
|
|
11455
|
-
itemSku?: string | null | undefined;
|
|
11456
|
-
itemType?: string | null | undefined;
|
|
11457
|
-
count?: number | null | undefined;
|
|
11458
|
-
}[] | null | undefined;
|
|
11459
|
-
}>>>;
|
|
11460
|
-
lootBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11461
|
-
rewardCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11462
|
-
rewards: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11463
|
-
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11464
|
-
type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["REWARD", "REWARD_GROUP", "PROBABILITY_GROUP"]>>>;
|
|
11465
|
-
lootBoxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11712
|
+
}>>>;
|
|
11713
|
+
optionBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11714
|
+
boxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11466
11715
|
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11467
11716
|
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11468
11717
|
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -11478,496 +11727,15 @@ declare const ItemInfo: z.ZodObject<{
|
|
|
11478
11727
|
itemType?: string | null | undefined;
|
|
11479
11728
|
count?: number | null | undefined;
|
|
11480
11729
|
}>, "many">>>;
|
|
11481
|
-
weight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11482
|
-
odds: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11483
11730
|
}, "strip", z.ZodTypeAny, {
|
|
11484
|
-
|
|
11485
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11486
|
-
lootBoxItems?: {
|
|
11731
|
+
boxItems?: {
|
|
11487
11732
|
itemId?: string | null | undefined;
|
|
11488
11733
|
itemSku?: string | null | undefined;
|
|
11489
11734
|
itemType?: string | null | undefined;
|
|
11490
11735
|
count?: number | null | undefined;
|
|
11491
11736
|
}[] | null | undefined;
|
|
11492
|
-
weight?: number | null | undefined;
|
|
11493
|
-
odds?: number | null | undefined;
|
|
11494
11737
|
}, {
|
|
11495
|
-
|
|
11496
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11497
|
-
lootBoxItems?: {
|
|
11498
|
-
itemId?: string | null | undefined;
|
|
11499
|
-
itemSku?: string | null | undefined;
|
|
11500
|
-
itemType?: string | null | undefined;
|
|
11501
|
-
count?: number | null | undefined;
|
|
11502
|
-
}[] | null | undefined;
|
|
11503
|
-
weight?: number | null | undefined;
|
|
11504
|
-
odds?: number | null | undefined;
|
|
11505
|
-
}>, "many">>>;
|
|
11506
|
-
rollFunction: z.ZodNullable<z.ZodOptional<z.ZodEnum<["DEFAULT", "CUSTOM"]>>>;
|
|
11507
|
-
}, "strip", z.ZodTypeAny, {
|
|
11508
|
-
rewardCount?: number | null | undefined;
|
|
11509
|
-
rewards?: {
|
|
11510
|
-
name?: string | null | undefined;
|
|
11511
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11512
|
-
lootBoxItems?: {
|
|
11513
|
-
itemId?: string | null | undefined;
|
|
11514
|
-
itemSku?: string | null | undefined;
|
|
11515
|
-
itemType?: string | null | undefined;
|
|
11516
|
-
count?: number | null | undefined;
|
|
11517
|
-
}[] | null | undefined;
|
|
11518
|
-
weight?: number | null | undefined;
|
|
11519
|
-
odds?: number | null | undefined;
|
|
11520
|
-
}[] | null | undefined;
|
|
11521
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11522
|
-
}, {
|
|
11523
|
-
rewardCount?: number | null | undefined;
|
|
11524
|
-
rewards?: {
|
|
11525
|
-
name?: string | null | undefined;
|
|
11526
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11527
|
-
lootBoxItems?: {
|
|
11528
|
-
itemId?: string | null | undefined;
|
|
11529
|
-
itemSku?: string | null | undefined;
|
|
11530
|
-
itemType?: string | null | undefined;
|
|
11531
|
-
count?: number | null | undefined;
|
|
11532
|
-
}[] | null | undefined;
|
|
11533
|
-
weight?: number | null | undefined;
|
|
11534
|
-
odds?: number | null | undefined;
|
|
11535
|
-
}[] | null | undefined;
|
|
11536
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11537
|
-
}>>>;
|
|
11538
|
-
fresh: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11539
|
-
localExt: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11540
|
-
}, "strip", z.ZodTypeAny, {
|
|
11541
|
-
appId?: string | null | undefined;
|
|
11542
|
-
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
11543
|
-
description?: string | null | undefined;
|
|
11544
|
-
ext?: Record<string, any> | null | undefined;
|
|
11545
|
-
tags?: string[] | null | undefined;
|
|
11546
|
-
images?: {
|
|
11547
|
-
as?: string | null | undefined;
|
|
11548
|
-
caption?: string | null | undefined;
|
|
11549
|
-
height: number;
|
|
11550
|
-
width: number;
|
|
11551
|
-
imageUrl: string;
|
|
11552
|
-
smallImageUrl: string;
|
|
11553
|
-
}[] | null | undefined;
|
|
11554
|
-
useCount?: number | null | undefined;
|
|
11555
|
-
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
11556
|
-
baseAppId?: string | null | undefined;
|
|
11557
|
-
sku?: string | null | undefined;
|
|
11558
|
-
listable?: boolean | null | undefined;
|
|
11559
|
-
purchasable?: boolean | null | undefined;
|
|
11560
|
-
stackable?: boolean | null | undefined;
|
|
11561
|
-
thumbnailUrl?: string | null | undefined;
|
|
11562
|
-
targetNamespace?: string | null | undefined;
|
|
11563
|
-
targetCurrencyCode?: string | null | undefined;
|
|
11564
|
-
targetItemId?: string | null | undefined;
|
|
11565
|
-
recurring?: {
|
|
11566
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11567
|
-
fixedFreeDays: number;
|
|
11568
|
-
fixedTrialCycles: number;
|
|
11569
|
-
graceDays: number;
|
|
11570
|
-
} | null | undefined;
|
|
11571
|
-
itemIds?: string[] | null | undefined;
|
|
11572
|
-
itemQty?: Record<string, number> | null | undefined;
|
|
11573
|
-
features?: string[] | null | undefined;
|
|
11574
|
-
maxCountPerUser?: number | null | undefined;
|
|
11575
|
-
maxCount?: number | null | undefined;
|
|
11576
|
-
boothName?: string | null | undefined;
|
|
11577
|
-
optionBoxConfig?: {
|
|
11578
|
-
boxItems?: {
|
|
11579
|
-
itemId?: string | null | undefined;
|
|
11580
|
-
itemSku?: string | null | undefined;
|
|
11581
|
-
itemType?: string | null | undefined;
|
|
11582
|
-
count?: number | null | undefined;
|
|
11583
|
-
}[] | null | undefined;
|
|
11584
|
-
} | null | undefined;
|
|
11585
|
-
lootBoxConfig?: {
|
|
11586
|
-
rewardCount?: number | null | undefined;
|
|
11587
|
-
rewards?: {
|
|
11588
|
-
name?: string | null | undefined;
|
|
11589
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11590
|
-
lootBoxItems?: {
|
|
11591
|
-
itemId?: string | null | undefined;
|
|
11592
|
-
itemSku?: string | null | undefined;
|
|
11593
|
-
itemType?: string | null | undefined;
|
|
11594
|
-
count?: number | null | undefined;
|
|
11595
|
-
}[] | null | undefined;
|
|
11596
|
-
weight?: number | null | undefined;
|
|
11597
|
-
odds?: number | null | undefined;
|
|
11598
|
-
}[] | null | undefined;
|
|
11599
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11600
|
-
} | null | undefined;
|
|
11601
|
-
clazz?: string | null | undefined;
|
|
11602
|
-
longDescription?: string | null | undefined;
|
|
11603
|
-
regionData?: {
|
|
11604
|
-
discountPercentage?: number | null | undefined;
|
|
11605
|
-
discountAmount?: number | null | undefined;
|
|
11606
|
-
discountedPrice?: number | null | undefined;
|
|
11607
|
-
trialPrice?: number | null | undefined;
|
|
11608
|
-
purchaseAt?: string | null | undefined;
|
|
11609
|
-
expireAt?: string | null | undefined;
|
|
11610
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11611
|
-
discountExpireAt?: string | null | undefined;
|
|
11612
|
-
currencyCode: string;
|
|
11613
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11614
|
-
price: number;
|
|
11615
|
-
currencyNamespace: string;
|
|
11616
|
-
}[] | null | undefined;
|
|
11617
|
-
boundItemIds?: string[] | null | undefined;
|
|
11618
|
-
displayOrder?: number | null | undefined;
|
|
11619
|
-
purchaseCondition?: {
|
|
11620
|
-
conditionGroups?: {
|
|
11621
|
-
predicates?: {
|
|
11622
|
-
name?: string | null | undefined;
|
|
11623
|
-
values?: string[] | null | undefined;
|
|
11624
|
-
value?: string | null | undefined;
|
|
11625
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11626
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11627
|
-
anyOf?: number | null | undefined;
|
|
11628
|
-
}[] | null | undefined;
|
|
11629
|
-
operator?: "and" | "or" | null | undefined;
|
|
11630
|
-
}[] | null | undefined;
|
|
11631
|
-
} | null | undefined;
|
|
11632
|
-
fresh?: boolean | null | undefined;
|
|
11633
|
-
localExt?: Record<string, any> | null | undefined;
|
|
11634
|
-
name: string;
|
|
11635
|
-
status: "ACTIVE" | "INACTIVE";
|
|
11636
|
-
namespace: string;
|
|
11637
|
-
createdAt: string;
|
|
11638
|
-
updatedAt: string;
|
|
11639
|
-
language: string;
|
|
11640
|
-
title: string;
|
|
11641
|
-
itemId: string;
|
|
11642
|
-
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
11643
|
-
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
11644
|
-
region: string;
|
|
11645
|
-
categoryPath: string;
|
|
11646
|
-
}, {
|
|
11647
|
-
appId?: string | null | undefined;
|
|
11648
|
-
appType?: "GAME" | "SOFTWARE" | "DLC" | "DEMO" | null | undefined;
|
|
11649
|
-
description?: string | null | undefined;
|
|
11650
|
-
ext?: Record<string, any> | null | undefined;
|
|
11651
|
-
tags?: string[] | null | undefined;
|
|
11652
|
-
images?: {
|
|
11653
|
-
as?: string | null | undefined;
|
|
11654
|
-
caption?: string | null | undefined;
|
|
11655
|
-
height: number;
|
|
11656
|
-
width: number;
|
|
11657
|
-
imageUrl: string;
|
|
11658
|
-
smallImageUrl: string;
|
|
11659
|
-
}[] | null | undefined;
|
|
11660
|
-
useCount?: number | null | undefined;
|
|
11661
|
-
seasonType?: "PASS" | "TIER" | null | undefined;
|
|
11662
|
-
baseAppId?: string | null | undefined;
|
|
11663
|
-
sku?: string | null | undefined;
|
|
11664
|
-
listable?: boolean | null | undefined;
|
|
11665
|
-
purchasable?: boolean | null | undefined;
|
|
11666
|
-
stackable?: boolean | null | undefined;
|
|
11667
|
-
thumbnailUrl?: string | null | undefined;
|
|
11668
|
-
targetNamespace?: string | null | undefined;
|
|
11669
|
-
targetCurrencyCode?: string | null | undefined;
|
|
11670
|
-
targetItemId?: string | null | undefined;
|
|
11671
|
-
recurring?: {
|
|
11672
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11673
|
-
fixedFreeDays: number;
|
|
11674
|
-
fixedTrialCycles: number;
|
|
11675
|
-
graceDays: number;
|
|
11676
|
-
} | null | undefined;
|
|
11677
|
-
itemIds?: string[] | null | undefined;
|
|
11678
|
-
itemQty?: Record<string, number> | null | undefined;
|
|
11679
|
-
features?: string[] | null | undefined;
|
|
11680
|
-
maxCountPerUser?: number | null | undefined;
|
|
11681
|
-
maxCount?: number | null | undefined;
|
|
11682
|
-
boothName?: string | null | undefined;
|
|
11683
|
-
optionBoxConfig?: {
|
|
11684
|
-
boxItems?: {
|
|
11685
|
-
itemId?: string | null | undefined;
|
|
11686
|
-
itemSku?: string | null | undefined;
|
|
11687
|
-
itemType?: string | null | undefined;
|
|
11688
|
-
count?: number | null | undefined;
|
|
11689
|
-
}[] | null | undefined;
|
|
11690
|
-
} | null | undefined;
|
|
11691
|
-
lootBoxConfig?: {
|
|
11692
|
-
rewardCount?: number | null | undefined;
|
|
11693
|
-
rewards?: {
|
|
11694
|
-
name?: string | null | undefined;
|
|
11695
|
-
type?: "REWARD" | "REWARD_GROUP" | "PROBABILITY_GROUP" | null | undefined;
|
|
11696
|
-
lootBoxItems?: {
|
|
11697
|
-
itemId?: string | null | undefined;
|
|
11698
|
-
itemSku?: string | null | undefined;
|
|
11699
|
-
itemType?: string | null | undefined;
|
|
11700
|
-
count?: number | null | undefined;
|
|
11701
|
-
}[] | null | undefined;
|
|
11702
|
-
weight?: number | null | undefined;
|
|
11703
|
-
odds?: number | null | undefined;
|
|
11704
|
-
}[] | null | undefined;
|
|
11705
|
-
rollFunction?: "DEFAULT" | "CUSTOM" | null | undefined;
|
|
11706
|
-
} | null | undefined;
|
|
11707
|
-
clazz?: string | null | undefined;
|
|
11708
|
-
longDescription?: string | null | undefined;
|
|
11709
|
-
regionData?: {
|
|
11710
|
-
discountPercentage?: number | null | undefined;
|
|
11711
|
-
discountAmount?: number | null | undefined;
|
|
11712
|
-
discountedPrice?: number | null | undefined;
|
|
11713
|
-
trialPrice?: number | null | undefined;
|
|
11714
|
-
purchaseAt?: string | null | undefined;
|
|
11715
|
-
expireAt?: string | null | undefined;
|
|
11716
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11717
|
-
discountExpireAt?: string | null | undefined;
|
|
11718
|
-
currencyCode: string;
|
|
11719
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11720
|
-
price: number;
|
|
11721
|
-
currencyNamespace: string;
|
|
11722
|
-
}[] | null | undefined;
|
|
11723
|
-
boundItemIds?: string[] | null | undefined;
|
|
11724
|
-
displayOrder?: number | null | undefined;
|
|
11725
|
-
purchaseCondition?: {
|
|
11726
|
-
conditionGroups?: {
|
|
11727
|
-
predicates?: {
|
|
11728
|
-
name?: string | null | undefined;
|
|
11729
|
-
values?: string[] | null | undefined;
|
|
11730
|
-
value?: string | null | undefined;
|
|
11731
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11732
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11733
|
-
anyOf?: number | null | undefined;
|
|
11734
|
-
}[] | null | undefined;
|
|
11735
|
-
operator?: "and" | "or" | null | undefined;
|
|
11736
|
-
}[] | null | undefined;
|
|
11737
|
-
} | null | undefined;
|
|
11738
|
-
fresh?: boolean | null | undefined;
|
|
11739
|
-
localExt?: Record<string, any> | null | undefined;
|
|
11740
|
-
name: string;
|
|
11741
|
-
status: "ACTIVE" | "INACTIVE";
|
|
11742
|
-
namespace: string;
|
|
11743
|
-
createdAt: string;
|
|
11744
|
-
updatedAt: string;
|
|
11745
|
-
language: string;
|
|
11746
|
-
title: string;
|
|
11747
|
-
itemId: string;
|
|
11748
|
-
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
11749
|
-
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
11750
|
-
region: string;
|
|
11751
|
-
categoryPath: string;
|
|
11752
|
-
}>;
|
|
11753
|
-
interface ItemInfo extends z.TypeOf<typeof ItemInfo> {
|
|
11754
|
-
}
|
|
11755
|
-
|
|
11756
|
-
declare const ItemPagingSlicedResult: z.ZodObject<{
|
|
11757
|
-
data: z.ZodArray<z.ZodObject<{
|
|
11758
|
-
title: z.ZodString;
|
|
11759
|
-
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11760
|
-
longDescription: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11761
|
-
itemId: z.ZodString;
|
|
11762
|
-
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11763
|
-
appType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["GAME", "SOFTWARE", "DLC", "DEMO"]>>>;
|
|
11764
|
-
seasonType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PASS", "TIER"]>>>;
|
|
11765
|
-
baseAppId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11766
|
-
sku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11767
|
-
namespace: z.ZodString;
|
|
11768
|
-
name: z.ZodString;
|
|
11769
|
-
entitlementType: z.ZodEnum<["DURABLE", "CONSUMABLE"]>;
|
|
11770
|
-
useCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11771
|
-
stackable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11772
|
-
categoryPath: z.ZodString;
|
|
11773
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE"]>;
|
|
11774
|
-
listable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11775
|
-
purchasable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11776
|
-
itemType: z.ZodEnum<["APP", "COINS", "INGAMEITEM", "BUNDLE", "CODE", "SUBSCRIPTION", "SEASON", "MEDIA", "OPTIONBOX", "EXTENSION", "LOOTBOX"]>;
|
|
11777
|
-
targetNamespace: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11778
|
-
targetCurrencyCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11779
|
-
targetItemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11780
|
-
images: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11781
|
-
as: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11782
|
-
caption: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11783
|
-
height: z.ZodNumber;
|
|
11784
|
-
width: z.ZodNumber;
|
|
11785
|
-
imageUrl: z.ZodString;
|
|
11786
|
-
smallImageUrl: z.ZodString;
|
|
11787
|
-
}, "strip", z.ZodTypeAny, {
|
|
11788
|
-
as?: string | null | undefined;
|
|
11789
|
-
caption?: string | null | undefined;
|
|
11790
|
-
height: number;
|
|
11791
|
-
width: number;
|
|
11792
|
-
imageUrl: string;
|
|
11793
|
-
smallImageUrl: string;
|
|
11794
|
-
}, {
|
|
11795
|
-
as?: string | null | undefined;
|
|
11796
|
-
caption?: string | null | undefined;
|
|
11797
|
-
height: number;
|
|
11798
|
-
width: number;
|
|
11799
|
-
imageUrl: string;
|
|
11800
|
-
smallImageUrl: string;
|
|
11801
|
-
}>, "many">>>;
|
|
11802
|
-
thumbnailUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11803
|
-
regionData: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11804
|
-
price: z.ZodNumber;
|
|
11805
|
-
discountPercentage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11806
|
-
discountAmount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11807
|
-
discountedPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11808
|
-
currencyCode: z.ZodString;
|
|
11809
|
-
currencyType: z.ZodEnum<["REAL", "VIRTUAL"]>;
|
|
11810
|
-
currencyNamespace: z.ZodString;
|
|
11811
|
-
trialPrice: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11812
|
-
purchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11813
|
-
expireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11814
|
-
discountPurchaseAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11815
|
-
discountExpireAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11816
|
-
}, "strip", z.ZodTypeAny, {
|
|
11817
|
-
discountPercentage?: number | null | undefined;
|
|
11818
|
-
discountAmount?: number | null | undefined;
|
|
11819
|
-
discountedPrice?: number | null | undefined;
|
|
11820
|
-
trialPrice?: number | null | undefined;
|
|
11821
|
-
purchaseAt?: string | null | undefined;
|
|
11822
|
-
expireAt?: string | null | undefined;
|
|
11823
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11824
|
-
discountExpireAt?: string | null | undefined;
|
|
11825
|
-
currencyCode: string;
|
|
11826
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11827
|
-
price: number;
|
|
11828
|
-
currencyNamespace: string;
|
|
11829
|
-
}, {
|
|
11830
|
-
discountPercentage?: number | null | undefined;
|
|
11831
|
-
discountAmount?: number | null | undefined;
|
|
11832
|
-
discountedPrice?: number | null | undefined;
|
|
11833
|
-
trialPrice?: number | null | undefined;
|
|
11834
|
-
purchaseAt?: string | null | undefined;
|
|
11835
|
-
expireAt?: string | null | undefined;
|
|
11836
|
-
discountPurchaseAt?: string | null | undefined;
|
|
11837
|
-
discountExpireAt?: string | null | undefined;
|
|
11838
|
-
currencyCode: string;
|
|
11839
|
-
currencyType: "REAL" | "VIRTUAL";
|
|
11840
|
-
price: number;
|
|
11841
|
-
currencyNamespace: string;
|
|
11842
|
-
}>, "many">>>;
|
|
11843
|
-
recurring: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11844
|
-
cycle: z.ZodEnum<["WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"]>;
|
|
11845
|
-
fixedFreeDays: z.ZodNumber;
|
|
11846
|
-
fixedTrialCycles: z.ZodNumber;
|
|
11847
|
-
graceDays: z.ZodNumber;
|
|
11848
|
-
}, "strip", z.ZodTypeAny, {
|
|
11849
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11850
|
-
fixedFreeDays: number;
|
|
11851
|
-
fixedTrialCycles: number;
|
|
11852
|
-
graceDays: number;
|
|
11853
|
-
}, {
|
|
11854
|
-
cycle: "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY";
|
|
11855
|
-
fixedFreeDays: number;
|
|
11856
|
-
fixedTrialCycles: number;
|
|
11857
|
-
graceDays: number;
|
|
11858
|
-
}>>>;
|
|
11859
|
-
itemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11860
|
-
itemQty: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
11861
|
-
boundItemIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11862
|
-
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11863
|
-
features: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11864
|
-
maxCountPerUser: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11865
|
-
maxCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11866
|
-
clazz: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11867
|
-
boothName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11868
|
-
displayOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11869
|
-
ext: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11870
|
-
region: z.ZodString;
|
|
11871
|
-
language: z.ZodString;
|
|
11872
|
-
createdAt: z.ZodString;
|
|
11873
|
-
updatedAt: z.ZodString;
|
|
11874
|
-
purchaseCondition: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11875
|
-
conditionGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11876
|
-
predicates: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11877
|
-
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11878
|
-
predicateType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["EntitlementPredicate", "SeasonPassPredicate", "SeasonTierPredicate"]>>>;
|
|
11879
|
-
comparison: z.ZodNullable<z.ZodOptional<z.ZodEnum<["is", "isNot", "isGreaterThan", "isGreaterThanOrEqual", "isLessThan", "isLessThanOrEqual", "includes", "excludes"]>>>;
|
|
11880
|
-
anyOf: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11881
|
-
values: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11882
|
-
value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11883
|
-
}, "strip", z.ZodTypeAny, {
|
|
11884
|
-
name?: string | null | undefined;
|
|
11885
|
-
values?: string[] | null | undefined;
|
|
11886
|
-
value?: string | null | undefined;
|
|
11887
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11888
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11889
|
-
anyOf?: number | null | undefined;
|
|
11890
|
-
}, {
|
|
11891
|
-
name?: string | null | undefined;
|
|
11892
|
-
values?: string[] | null | undefined;
|
|
11893
|
-
value?: string | null | undefined;
|
|
11894
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11895
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11896
|
-
anyOf?: number | null | undefined;
|
|
11897
|
-
}>, "many">>>;
|
|
11898
|
-
operator: z.ZodNullable<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
11899
|
-
}, "strip", z.ZodTypeAny, {
|
|
11900
|
-
predicates?: {
|
|
11901
|
-
name?: string | null | undefined;
|
|
11902
|
-
values?: string[] | null | undefined;
|
|
11903
|
-
value?: string | null | undefined;
|
|
11904
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11905
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11906
|
-
anyOf?: number | null | undefined;
|
|
11907
|
-
}[] | null | undefined;
|
|
11908
|
-
operator?: "and" | "or" | null | undefined;
|
|
11909
|
-
}, {
|
|
11910
|
-
predicates?: {
|
|
11911
|
-
name?: string | null | undefined;
|
|
11912
|
-
values?: string[] | null | undefined;
|
|
11913
|
-
value?: string | null | undefined;
|
|
11914
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11915
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11916
|
-
anyOf?: number | null | undefined;
|
|
11917
|
-
}[] | null | undefined;
|
|
11918
|
-
operator?: "and" | "or" | null | undefined;
|
|
11919
|
-
}>, "many">>>;
|
|
11920
|
-
}, "strip", z.ZodTypeAny, {
|
|
11921
|
-
conditionGroups?: {
|
|
11922
|
-
predicates?: {
|
|
11923
|
-
name?: string | null | undefined;
|
|
11924
|
-
values?: string[] | null | undefined;
|
|
11925
|
-
value?: string | null | undefined;
|
|
11926
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11927
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11928
|
-
anyOf?: number | null | undefined;
|
|
11929
|
-
}[] | null | undefined;
|
|
11930
|
-
operator?: "and" | "or" | null | undefined;
|
|
11931
|
-
}[] | null | undefined;
|
|
11932
|
-
}, {
|
|
11933
|
-
conditionGroups?: {
|
|
11934
|
-
predicates?: {
|
|
11935
|
-
name?: string | null | undefined;
|
|
11936
|
-
values?: string[] | null | undefined;
|
|
11937
|
-
value?: string | null | undefined;
|
|
11938
|
-
predicateType?: "EntitlementPredicate" | "SeasonPassPredicate" | "SeasonTierPredicate" | null | undefined;
|
|
11939
|
-
comparison?: "is" | "isNot" | "isGreaterThan" | "isGreaterThanOrEqual" | "isLessThan" | "isLessThanOrEqual" | "includes" | "excludes" | null | undefined;
|
|
11940
|
-
anyOf?: number | null | undefined;
|
|
11941
|
-
}[] | null | undefined;
|
|
11942
|
-
operator?: "and" | "or" | null | undefined;
|
|
11943
|
-
}[] | null | undefined;
|
|
11944
|
-
}>>>;
|
|
11945
|
-
optionBoxConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11946
|
-
boxItems: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11947
|
-
itemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11948
|
-
itemSku: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11949
|
-
itemType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11950
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
11951
|
-
}, "strip", z.ZodTypeAny, {
|
|
11952
|
-
itemId?: string | null | undefined;
|
|
11953
|
-
itemSku?: string | null | undefined;
|
|
11954
|
-
itemType?: string | null | undefined;
|
|
11955
|
-
count?: number | null | undefined;
|
|
11956
|
-
}, {
|
|
11957
|
-
itemId?: string | null | undefined;
|
|
11958
|
-
itemSku?: string | null | undefined;
|
|
11959
|
-
itemType?: string | null | undefined;
|
|
11960
|
-
count?: number | null | undefined;
|
|
11961
|
-
}>, "many">>>;
|
|
11962
|
-
}, "strip", z.ZodTypeAny, {
|
|
11963
|
-
boxItems?: {
|
|
11964
|
-
itemId?: string | null | undefined;
|
|
11965
|
-
itemSku?: string | null | undefined;
|
|
11966
|
-
itemType?: string | null | undefined;
|
|
11967
|
-
count?: number | null | undefined;
|
|
11968
|
-
}[] | null | undefined;
|
|
11969
|
-
}, {
|
|
11970
|
-
boxItems?: {
|
|
11738
|
+
boxItems?: {
|
|
11971
11739
|
itemId?: string | null | undefined;
|
|
11972
11740
|
itemSku?: string | null | undefined;
|
|
11973
11741
|
itemType?: string | null | undefined;
|
|
@@ -12680,7 +12448,523 @@ declare const ItemDynamicDataInfo: z.ZodObject<{
|
|
|
12680
12448
|
interface ItemDynamicDataInfo extends z.TypeOf<typeof ItemDynamicDataInfo> {
|
|
12681
12449
|
}
|
|
12682
12450
|
|
|
12683
|
-
declare const
|
|
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?: {
|
|
12908
|
+
itemId?: string | null | undefined;
|
|
12909
|
+
itemSku?: string | null | undefined;
|
|
12910
|
+
itemType?: string | null | undefined;
|
|
12911
|
+
count?: number | null | undefined;
|
|
12912
|
+
}[] | null | undefined;
|
|
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?: {
|
|
12939
|
+
name?: string | 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;
|
|
12945
|
+
}[] | null | undefined;
|
|
12946
|
+
operator?: "and" | "or" | null | undefined;
|
|
12947
|
+
}[] | null | undefined;
|
|
12948
|
+
} | null | undefined;
|
|
12949
|
+
fresh?: boolean | null | undefined;
|
|
12950
|
+
localExt?: Record<string, any> | null | undefined;
|
|
12951
|
+
name: string;
|
|
12952
|
+
status: "ACTIVE" | "INACTIVE";
|
|
12953
|
+
namespace: string;
|
|
12954
|
+
createdAt: string;
|
|
12955
|
+
updatedAt: string;
|
|
12956
|
+
language: string;
|
|
12957
|
+
title: string;
|
|
12958
|
+
itemId: string;
|
|
12959
|
+
itemType: "APP" | "COINS" | "INGAMEITEM" | "BUNDLE" | "CODE" | "SUBSCRIPTION" | "SEASON" | "MEDIA" | "OPTIONBOX" | "EXTENSION" | "LOOTBOX";
|
|
12960
|
+
entitlementType: "DURABLE" | "CONSUMABLE";
|
|
12961
|
+
region: string;
|
|
12962
|
+
categoryPath: string;
|
|
12963
|
+
}>;
|
|
12964
|
+
interface ItemInfo extends z.TypeOf<typeof ItemInfo> {
|
|
12965
|
+
}
|
|
12966
|
+
|
|
12967
|
+
declare const ItemInfoArray: z.ZodArray<z.ZodObject<{
|
|
12684
12968
|
title: z.ZodString;
|
|
12685
12969
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12686
12970
|
longDescription: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -14621,58 +14905,70 @@ declare class ItemApi {
|
|
|
14621
14905
|
*/
|
|
14622
14906
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
14623
14907
|
/**
|
|
14624
|
-
*
|
|
14908
|
+
* GET [/platform/public/namespaces/{namespace}/items/byAppId](api)
|
|
14909
|
+
*
|
|
14910
|
+
* This API is used to get item by appId
|
|
14911
|
+
*
|
|
14912
|
+
* Returns: the item with that appId
|
|
14625
14913
|
*/
|
|
14626
|
-
getItemByAppId({ ...queryParams }: {
|
|
14914
|
+
getItemByAppId: ({ ...queryParams }: {
|
|
14627
14915
|
storeId?: string;
|
|
14628
14916
|
appId: string;
|
|
14629
14917
|
language?: string;
|
|
14630
14918
|
region?: string;
|
|
14631
|
-
})
|
|
14919
|
+
}) => Promise<IResponseWithSync<ItemInfo>>;
|
|
14632
14920
|
/**
|
|
14633
|
-
*
|
|
14921
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/dynamic](api)
|
|
14922
|
+
*
|
|
14923
|
+
* Get item dynamic data for a published item
|
|
14924
|
+
*
|
|
14925
|
+
* Returns: item dynamic data
|
|
14634
14926
|
*/
|
|
14635
|
-
getItemByItemIdDynamic(itemId: string)
|
|
14636
|
-
fetchItemsByCriteria({ queryParams }: {
|
|
14637
|
-
queryParams?: Parameters<Item$['fetchNsItemsByCriteria']>[0];
|
|
14638
|
-
}): Promise<IResponseWithSync<ItemPagingSlicedResult>>;
|
|
14927
|
+
getItemByItemIdDynamic: (itemId: string) => Promise<IResponseWithSync<ItemDynamicDataInfo>>;
|
|
14639
14928
|
/**
|
|
14640
|
-
*
|
|
14929
|
+
* GET [/platform/public/namespaces/{namespace}/items/byCriteria](api)
|
|
14641
14930
|
*/
|
|
14642
|
-
|
|
14643
|
-
queryParams
|
|
14644
|
-
})
|
|
14931
|
+
fetchItemsByCriteria: ({ queryParams }: {
|
|
14932
|
+
queryParams?: Parameters<Item$['fetchNsItemsByCriteria']>[0];
|
|
14933
|
+
}) => Promise<IResponseWithSync<ItemPagingSlicedResult>>;
|
|
14645
14934
|
/**
|
|
14646
|
-
*
|
|
14935
|
+
* GET [/platform/public/namespaces/{namespace}/items/locale/byIds](api)
|
|
14936
|
+
*
|
|
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
|
+
*
|
|
14939
|
+
* Returns: the list of items
|
|
14647
14940
|
*/
|
|
14648
|
-
|
|
14941
|
+
getItemsByItemIds: ({ queryParams }: {
|
|
14649
14942
|
queryParams: QueryParamsItemIds;
|
|
14650
|
-
})
|
|
14651
|
-
response: null;
|
|
14652
|
-
error: IResponseError;
|
|
14653
|
-
onSync: (syncedData: (_: IResponse<ItemInfoArray>) => void) => void;
|
|
14654
|
-
} | {
|
|
14655
|
-
error: null;
|
|
14656
|
-
value: Map<string, ItemInfo>;
|
|
14657
|
-
}>;
|
|
14943
|
+
}) => Promise<IResponseWithSync<ItemInfoArray>>;
|
|
14658
14944
|
/**
|
|
14659
|
-
*
|
|
14945
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/locale](api)
|
|
14946
|
+
*
|
|
14947
|
+
* This API is used to get an item in locale. If item not exist in specific region, default region item will return.
|
|
14948
|
+
*
|
|
14949
|
+
* Returns: item data
|
|
14660
14950
|
*/
|
|
14661
|
-
getItemsByItemIdLocale({ itemId, queryParams }: {
|
|
14951
|
+
getItemsByItemIdLocale: ({ itemId, queryParams }: {
|
|
14662
14952
|
itemId: string;
|
|
14663
14953
|
queryParams?: Parameters<Item$['fetchNsItemsByItemidLocale']>[1];
|
|
14664
|
-
})
|
|
14954
|
+
}) => Promise<IResponseWithSync<PopulatedItemInfo>>;
|
|
14665
14955
|
/**
|
|
14666
|
-
*
|
|
14956
|
+
* GET [/platform/public/namespaces/{namespace}/items/{itemId}/app/locale](api)
|
|
14957
|
+
*
|
|
14958
|
+
* This API is used to get an app in locale. If app not exist in specific region, default region app will return.
|
|
14959
|
+
*
|
|
14960
|
+
* Returns: app data
|
|
14667
14961
|
*/
|
|
14668
|
-
getAppInfoByItemId({ itemId, queryParams }: {
|
|
14962
|
+
getAppInfoByItemId: ({ itemId, queryParams }: {
|
|
14669
14963
|
itemId: string;
|
|
14670
|
-
queryParams?: QueryParams;
|
|
14671
|
-
})
|
|
14964
|
+
queryParams?: QueryParams | undefined;
|
|
14965
|
+
}) => Promise<IResponseWithSync<AppInfo>>;
|
|
14672
14966
|
/**
|
|
14967
|
+
* POST [/platform/public/namespaces/{namespace}/items/purchase/conditions/validate](api)
|
|
14968
|
+
*
|
|
14673
14969
|
* This API is used to validate user item purchase condition
|
|
14674
14970
|
*/
|
|
14675
|
-
validatePurchaseCondition(data: ItemPurchaseConditionValidateRequest)
|
|
14971
|
+
validatePurchaseCondition: (data: ItemPurchaseConditionValidateRequest) => Promise<IResponse<ItemPurchaseConditionValidateResultArray>>;
|
|
14676
14972
|
private newInstance;
|
|
14677
14973
|
}
|
|
14678
14974
|
|
|
@@ -16374,28 +16670,97 @@ declare class OrderApi {
|
|
|
16374
16670
|
*/
|
|
16375
16671
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16376
16672
|
/**
|
|
16377
|
-
*
|
|
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>
|
|
16378
16730
|
*/
|
|
16379
16731
|
getOrderList: ({ userId, queryParams }: {
|
|
16380
16732
|
userId: string;
|
|
16381
16733
|
queryParams?: Parameters<Order$['fetchNsUsersByUseridOrders']>[1];
|
|
16382
16734
|
}) => Promise<IResponseWithSync<OrderPagingSlicedResult>>;
|
|
16383
16735
|
/**
|
|
16384
|
-
*
|
|
16736
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}](api)
|
|
16737
|
+
*
|
|
16738
|
+
* Get user order.
|
|
16739
|
+
*
|
|
16740
|
+
* Returns: `OrderInfo`
|
|
16385
16741
|
*/
|
|
16386
16742
|
getOrderByOrderNo: ({ userId, orderNo }: {
|
|
16387
16743
|
userId: string;
|
|
16388
16744
|
orderNo: string;
|
|
16389
16745
|
}) => Promise<IResponseWithSync<OrderInfo>>;
|
|
16390
16746
|
/**
|
|
16391
|
-
*
|
|
16747
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/cancel](api)
|
|
16748
|
+
*
|
|
16749
|
+
* Cancel user order.
|
|
16750
|
+
*
|
|
16751
|
+
* Returns: cancelled `OrderInfo`
|
|
16392
16752
|
*/
|
|
16393
16753
|
cancelOrder: ({ userId, orderNo }: {
|
|
16394
16754
|
userId: string;
|
|
16395
16755
|
orderNo: string;
|
|
16396
16756
|
}) => Promise<IResponse<OrderInfo>>;
|
|
16397
16757
|
/**
|
|
16398
|
-
*
|
|
16758
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/orders](api)
|
|
16759
|
+
*
|
|
16760
|
+
* Create an order. The result contains the checkout link and payment token.
|
|
16761
|
+
* User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.
|
|
16762
|
+
*
|
|
16763
|
+
* Returns: created `OrderInfo`
|
|
16399
16764
|
*/
|
|
16400
16765
|
createOrder: ({ userId, data }: {
|
|
16401
16766
|
userId: string;
|
|
@@ -16403,6 +16768,8 @@ declare class OrderApi {
|
|
|
16403
16768
|
}) => Promise<IResponse<OrderInfo>>;
|
|
16404
16769
|
/**
|
|
16405
16770
|
* Fetch all information needed for a user to check the user's availability to purchase the item
|
|
16771
|
+
*
|
|
16772
|
+
* @internal
|
|
16406
16773
|
*/
|
|
16407
16774
|
fetchPrePurchaseInformation: ({ userId, item }: {
|
|
16408
16775
|
userId?: string | null | undefined;
|
|
@@ -16671,11 +17038,17 @@ declare class PaymentApi {
|
|
|
16671
17038
|
*/
|
|
16672
17039
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16673
17040
|
/**
|
|
16674
|
-
*
|
|
17041
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts](api)
|
|
17042
|
+
*
|
|
17043
|
+
* Get payment accounts.
|
|
17044
|
+
*
|
|
17045
|
+
* Returns: Payment account list `PaymentAccountArray`
|
|
16675
17046
|
*/
|
|
16676
17047
|
getPaymentAccounts: (userId: string) => Promise<IResponseWithSync<PaymentAccountArray>>;
|
|
16677
17048
|
/**
|
|
16678
|
-
*
|
|
17049
|
+
* DELETE [/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts/{type}/{id}](api)
|
|
17050
|
+
*
|
|
17051
|
+
* Delete payment account.
|
|
16679
17052
|
*/
|
|
16680
17053
|
deletePaymentAccount: ({ userId, type, id }: {
|
|
16681
17054
|
userId: string;
|
|
@@ -16683,31 +17056,56 @@ declare class PaymentApi {
|
|
|
16683
17056
|
id: string;
|
|
16684
17057
|
}) => Promise<IResponse<unknown>>;
|
|
16685
17058
|
/**
|
|
16686
|
-
*
|
|
17059
|
+
* GET [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/info](api)
|
|
17060
|
+
*
|
|
17061
|
+
* Get payment order info.
|
|
17062
|
+
*
|
|
17063
|
+
* Returns: Payment order details `PaymentOrderDetails`
|
|
16687
17064
|
*/
|
|
16688
17065
|
getPaymentInfo: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderDetails>>;
|
|
16689
17066
|
/**
|
|
16690
|
-
*
|
|
17067
|
+
* POST [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/pay](api)
|
|
17068
|
+
*
|
|
17069
|
+
* Do payment(For now, this only support checkout.com).
|
|
17070
|
+
*
|
|
17071
|
+
* Returns: Payment process result
|
|
16691
17072
|
*/
|
|
16692
17073
|
processPaymentOrder: (paymentOrderNo: string, data: PaymentToken, queryParams: Parameters<PaymentStation$['postNsPaymentOrdersByPaymentordernoPay']>[2]) => Promise<IResponse<PaymentProcessResult>>;
|
|
16693
17074
|
/**
|
|
16694
|
-
*
|
|
17075
|
+
* GET [/platform/public/namespaces/{namespace}/payment/publicconfig](api)
|
|
17076
|
+
*
|
|
17077
|
+
* Get payment provider public config, at current only Strip provide public config.
|
|
17078
|
+
*
|
|
17079
|
+
* Returns: Public config
|
|
16695
17080
|
*/
|
|
16696
17081
|
getPaymentProviderPublicConfig: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentPublicconfig']>[0]['paymentProvider'], region: string | null, sandbox?: boolean | null | undefined) => Promise<IResponseWithSync<unknown>>;
|
|
16697
17082
|
/**
|
|
16698
|
-
*
|
|
17083
|
+
* GET [/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/status](api)
|
|
17084
|
+
*
|
|
17085
|
+
* Check payment order paid status.
|
|
17086
|
+
*
|
|
17087
|
+
* Returns: Payment order paid result
|
|
16699
17088
|
*/
|
|
16700
17089
|
getPaymentOrderStatus: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderPaidResult>>;
|
|
16701
17090
|
/**
|
|
16702
|
-
* Get payment methods
|
|
17091
|
+
* Get payment methods.
|
|
17092
|
+
* Returns: Payment method list
|
|
16703
17093
|
*/
|
|
16704
17094
|
getPaymentMethods: (paymentOrderNo: string | null) => Promise<IResponseWithSync<PaymentMethodArray>>;
|
|
16705
17095
|
/**
|
|
16706
|
-
*
|
|
17096
|
+
* GET [/platform/public/namespaces/{namespace}/payment/methods](api)
|
|
17097
|
+
*
|
|
17098
|
+
* Check and get a payment order's should pay tax.
|
|
17099
|
+
*
|
|
17100
|
+
* Returns: tax result
|
|
16707
17101
|
*/
|
|
16708
17102
|
getPaymentTax: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentTax']>[0]['paymentProvider'], paymentOrderNo: string | null, zipCode?: string | null | undefined) => Promise<IResponseWithSync<TaxResult>>;
|
|
16709
17103
|
/**
|
|
16710
|
-
*
|
|
17104
|
+
* POST [/platform/public/namespaces/{namespace}/payment/link](api)
|
|
17105
|
+
*
|
|
17106
|
+
* Get payment url.
|
|
17107
|
+
*
|
|
17108
|
+
* Returns: Get payment link
|
|
16711
17109
|
*/
|
|
16712
17110
|
createPaymentUrl: (data: PaymentUrlCreate) => Promise<IResponse<PaymentUrl>>;
|
|
16713
17111
|
private newInstance;
|
|
@@ -18984,53 +19382,84 @@ declare class SubscriptionApi {
|
|
|
18984
19382
|
*/
|
|
18985
19383
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
18986
19384
|
/**
|
|
18987
|
-
*
|
|
19385
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions](api)
|
|
19386
|
+
*
|
|
19387
|
+
* Query user subscriptions.
|
|
19388
|
+
*
|
|
19389
|
+
* Returns: paginated subscription
|
|
18988
19390
|
*/
|
|
18989
|
-
getUserSubscriptions({ userId, queryParams }: {
|
|
19391
|
+
getUserSubscriptions: ({ userId, queryParams }: {
|
|
18990
19392
|
userId: string;
|
|
18991
19393
|
queryParams?: Parameters<Subscription$['fetchNsUsersByUseridSubscriptions']>[1];
|
|
18992
|
-
})
|
|
19394
|
+
}) => Promise<IResponseWithSync<SubscriptionPagingSlicedResult>>;
|
|
18993
19395
|
/**
|
|
18994
|
-
*
|
|
19396
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}](api)
|
|
19397
|
+
*
|
|
19398
|
+
* Get user subscription.
|
|
19399
|
+
*
|
|
19400
|
+
* Returns: subscription
|
|
18995
19401
|
*/
|
|
18996
|
-
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }: {
|
|
19402
|
+
getUserSubscriptionBySubscriptionId: ({ userId, subscriptionId }: {
|
|
18997
19403
|
userId: string;
|
|
18998
19404
|
subscriptionId: string;
|
|
18999
|
-
})
|
|
19405
|
+
}) => Promise<IResponseWithSync<SubscriptionInfo>>;
|
|
19000
19406
|
/**
|
|
19001
|
-
*
|
|
19407
|
+
* POST [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions](api)
|
|
19408
|
+
*
|
|
19409
|
+
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true.
|
|
19410
|
+
* __ACTIVE USER subscription can't do subscribe again.__
|
|
19411
|
+
* __The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.__
|
|
19412
|
+
* User with permission SANDBOX will create sandbox subscription that not real paid.
|
|
19413
|
+
*
|
|
19414
|
+
* Returns: created subscription
|
|
19002
19415
|
*/
|
|
19003
|
-
createSubscription({ userId, data }: {
|
|
19416
|
+
createSubscription: ({ userId, data }: {
|
|
19004
19417
|
userId: string;
|
|
19005
19418
|
data: SubscribeRequest;
|
|
19006
|
-
})
|
|
19419
|
+
}) => Promise<IResponse<unknown>>;
|
|
19007
19420
|
/**
|
|
19008
|
-
*
|
|
19421
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/history](api)
|
|
19422
|
+
*
|
|
19423
|
+
* Get user subscription billing histories.
|
|
19424
|
+
*
|
|
19425
|
+
* Returns: paginated subscription history
|
|
19009
19426
|
*/
|
|
19010
|
-
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }: {
|
|
19427
|
+
getUserSubscriptionBillingHistory: ({ userId, subscriptionId, queryParams }: {
|
|
19011
19428
|
userId: string;
|
|
19012
19429
|
subscriptionId: string;
|
|
19013
19430
|
queryParams?: {
|
|
19014
|
-
excludeFree?: boolean | null;
|
|
19015
|
-
offset?: number;
|
|
19016
|
-
limit?: number;
|
|
19017
|
-
};
|
|
19018
|
-
})
|
|
19431
|
+
excludeFree?: boolean | null | undefined;
|
|
19432
|
+
offset?: number | undefined;
|
|
19433
|
+
limit?: number | undefined;
|
|
19434
|
+
} | undefined;
|
|
19435
|
+
}) => Promise<IResponseWithSync<BillingHistoryPagingSlicedResult>>;
|
|
19019
19436
|
/**
|
|
19020
|
-
*
|
|
19437
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/billingAccount](api)
|
|
19438
|
+
*
|
|
19439
|
+
* Request to change a subscription billing account, this will guide user to payment station.
|
|
19440
|
+
* The actual change will happen at the 0 payment notification successfully handled.
|
|
19441
|
+
* Only ACTIVE USER subscription with real currency billing account can be changed.
|
|
19442
|
+
*
|
|
19443
|
+
* Returns: updated subscription
|
|
19021
19444
|
*/
|
|
19022
|
-
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }: {
|
|
19445
|
+
updateUserSubscriptionPaymentMethod: ({ userId, subscriptionId }: {
|
|
19023
19446
|
userId: string;
|
|
19024
19447
|
subscriptionId: string;
|
|
19025
|
-
})
|
|
19448
|
+
}) => Promise<IResponse<SubscriptionInfo>>;
|
|
19026
19449
|
/**
|
|
19027
|
-
*
|
|
19450
|
+
* PUT [/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/cancel](api)
|
|
19451
|
+
*
|
|
19452
|
+
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
19453
|
+
* __Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.__
|
|
19454
|
+
* Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.
|
|
19455
|
+
*
|
|
19456
|
+
* Returns: cancelled subscription
|
|
19028
19457
|
*/
|
|
19029
|
-
cancelUserSubscription({ userId, subscriptionId, data }: {
|
|
19458
|
+
cancelUserSubscription: ({ userId, subscriptionId, data }: {
|
|
19030
19459
|
userId: string;
|
|
19031
19460
|
subscriptionId: string;
|
|
19032
19461
|
data: CancelRequest;
|
|
19033
|
-
})
|
|
19462
|
+
}) => Promise<IResponse<SubscriptionInfo>>;
|
|
19034
19463
|
private newInstance;
|
|
19035
19464
|
}
|
|
19036
19465
|
|
|
@@ -19109,15 +19538,28 @@ declare class WalletApi {
|
|
|
19109
19538
|
*/
|
|
19110
19539
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
19111
19540
|
/**
|
|
19112
|
-
*
|
|
19541
|
+
* GET [/platform/public/namespaces/{namespace}/users/me/wallets/{currencyCode}](api)
|
|
19542
|
+
*
|
|
19543
|
+
* get my wallet by currency code and namespace.
|
|
19544
|
+
*
|
|
19545
|
+
* Returns: wallet info
|
|
19546
|
+
*
|
|
19547
|
+
* Path's namespace:
|
|
19548
|
+
* - can be filled with __publisher namespace__ in order to get __publisher user wallet__
|
|
19549
|
+
* - can be filled with __game namespace__ in order to get __game user wallet__
|
|
19113
19550
|
*/
|
|
19114
19551
|
getUserMeWallet: (currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19115
19552
|
/**
|
|
19116
|
-
*
|
|
19553
|
+
* GET [/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}](api)
|
|
19554
|
+
*
|
|
19555
|
+
* Get a wallet by currency code.
|
|
19556
|
+
*
|
|
19557
|
+
* Returns: wallet info
|
|
19117
19558
|
*/
|
|
19118
19559
|
getWalletByUserId: (userId: string, currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19119
19560
|
/**
|
|
19120
19561
|
* get a map of wallet represented by its currency code
|
|
19562
|
+
* @internal
|
|
19121
19563
|
*/
|
|
19122
19564
|
getWalletMap: ({ userId, currencyCodes }: {
|
|
19123
19565
|
userId: string;
|
|
@@ -19132,34 +19574,13 @@ declare class WalletApi {
|
|
|
19132
19574
|
private newInstance;
|
|
19133
19575
|
}
|
|
19134
19576
|
|
|
19135
|
-
declare const PLATFORM: {
|
|
19136
|
-
LINUX: string;
|
|
19137
|
-
WINDOWS: string;
|
|
19138
|
-
};
|
|
19139
|
-
declare const ARCH: {
|
|
19140
|
-
[arch: string]: string;
|
|
19141
|
-
};
|
|
19142
|
-
declare const BUILDINFO_PLATFORM_ID: {
|
|
19143
|
-
[platformId: string]: string;
|
|
19144
|
-
};
|
|
19145
|
-
interface PlatformMatchMap {
|
|
19146
|
-
arch: string[];
|
|
19147
|
-
platform: string;
|
|
19148
|
-
targetPlatform: string[];
|
|
19149
|
-
}
|
|
19150
|
-
declare const AvailablePlatform: PlatformMatchMap[];
|
|
19151
|
-
declare enum LogLevel {
|
|
19152
|
-
'DEBUG' = "DEBUG",
|
|
19153
|
-
'INFO' = "INFO"
|
|
19154
|
-
}
|
|
19155
|
-
|
|
19156
19577
|
declare type Overrides = {
|
|
19157
19578
|
config?: SDKRequestConfig;
|
|
19158
19579
|
cache?: boolean;
|
|
19159
19580
|
};
|
|
19160
19581
|
interface AccelbyteSDK {
|
|
19161
19582
|
IAM: {
|
|
19162
|
-
UserAuthorization(overrides?: Overrides):
|
|
19583
|
+
UserAuthorization(overrides?: Overrides): UserAuthorizationApi;
|
|
19163
19584
|
User(overrides?: Overrides): UserApi;
|
|
19164
19585
|
OAuth(overrides?: Overrides): OAuthApi;
|
|
19165
19586
|
InputValidation(overrides?: Overrides): InputValidationsApi;
|
|
@@ -65337,4 +65758,4 @@ declare class SdkDevice {
|
|
|
65337
65758
|
static getDeviceId: () => string;
|
|
65338
65759
|
}
|
|
65339
65760
|
|
|
65340
|
-
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, UserAuthorization, 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 };
|
|
65761
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BrowserHelper, BuildAvailability, BuildAvailabilityArray, BuildDeletionData, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|