@accelbyte/sdk 0.2.0-beta.2 → 0.2.0-beta.4
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 +8 -0
- package/README.md +5 -2
- package/dist/index.browser.es.js +400 -313
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +398 -312
- package/dist/index.node.es.js +400 -313
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +400 -313
- 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,8 @@ declare class FileUploadApi {
|
|
|
82
82
|
*/
|
|
83
83
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
84
84
|
/**
|
|
85
|
-
* Generate an upload URL. It's valid for 10 minutes
|
|
85
|
+
* Generate an upload URL. It's valid for 10 minutes.
|
|
86
|
+
* Returns: URL data
|
|
86
87
|
*/
|
|
87
88
|
generateFolderUploadFileUrl: ({ folder, queryParams }: {
|
|
88
89
|
folder: string;
|
|
@@ -107,7 +108,8 @@ declare class MiscApi {
|
|
|
107
108
|
*/
|
|
108
109
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
109
110
|
/**
|
|
110
|
-
* List countries
|
|
111
|
+
* List countries.
|
|
112
|
+
* - _Returns_: country code list
|
|
111
113
|
*/
|
|
112
114
|
getCountries: (lang?: string | undefined) => Promise<IResponseWithSync<CountryObjectArray>>;
|
|
113
115
|
getLanguages: () => Promise<IResponseWithSync<unknown>>;
|
|
@@ -123,7 +125,12 @@ declare class NamespaceApi {
|
|
|
123
125
|
*/
|
|
124
126
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
125
127
|
/**
|
|
126
|
-
* Get all namespaces
|
|
128
|
+
* Get all namespaces.
|
|
129
|
+
*
|
|
130
|
+
* Other detail info:
|
|
131
|
+
* - _Required permission_: login user
|
|
132
|
+
* - _Action code_: 11303
|
|
133
|
+
* - _Returns_: list of namespaces
|
|
127
134
|
*/
|
|
128
135
|
getNamespaces: (activeOnly?: boolean | null | undefined) => Promise<IResponseWithSync<NamespaceInfoArray>>;
|
|
129
136
|
private newInstance;
|
|
@@ -215,19 +222,25 @@ declare class UserProfileApi {
|
|
|
215
222
|
*/
|
|
216
223
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
217
224
|
/**
|
|
218
|
-
* Get my profile
|
|
225
|
+
* Get my profile
|
|
226
|
+
*
|
|
227
|
+
* __Client with user token can get user profile in target namespace__
|
|
219
228
|
*/
|
|
220
229
|
getUsersMeProfiles: () => Promise<IResponseWithSync<UserProfilePrivateInfo>>;
|
|
221
230
|
/**
|
|
222
|
-
* Create my profile
|
|
231
|
+
* Create my profile.
|
|
232
|
+
*
|
|
233
|
+
* __Client with user token can create user profile in target namespace__
|
|
223
234
|
*/
|
|
224
235
|
createUserMeProfile: (data: UserProfilePrivateCreate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
225
236
|
/**
|
|
226
|
-
* Update my profile
|
|
237
|
+
* Update my profile.
|
|
238
|
+
* 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
239
|
*/
|
|
228
240
|
updateUserMeProfile: (data: UserProfilePrivateUpdate) => Promise<IResponse<UserProfilePrivateInfo>>;
|
|
229
241
|
/**
|
|
230
|
-
* Update partially custom attributes tied to user id
|
|
242
|
+
* Update partially custom attributes tied to user id.
|
|
243
|
+
* _Returns_: Updated custom attributes
|
|
231
244
|
*/
|
|
232
245
|
updateUserCustomAttributes: (userId: string, data: any) => Promise<IResponse<unknown>>;
|
|
233
246
|
private newInstance;
|
|
@@ -241,7 +254,11 @@ declare class CachingApi {
|
|
|
241
254
|
*/
|
|
242
255
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
243
256
|
/**
|
|
244
|
-
* This API is used to retrieve detailed diff cache
|
|
257
|
+
* This API is used to retrieve detailed diff cache.
|
|
258
|
+
* The response will contains list of diff cache files along with its download url.
|
|
259
|
+
*
|
|
260
|
+
* Other detail info:
|
|
261
|
+
* - _Required permission_: login user
|
|
245
262
|
*/
|
|
246
263
|
getDiffCache(sourceBuildId: string, destinationBuildId: string): Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
247
264
|
private newInstance;
|
|
@@ -255,11 +272,14 @@ declare class DlcApi {
|
|
|
255
272
|
*/
|
|
256
273
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
257
274
|
/**
|
|
258
|
-
* Retrieve the list of DLC available on specific game. Use game's appId to query
|
|
275
|
+
* Retrieve the list of DLC available on specific game. Use game's appId to query.
|
|
276
|
+
*
|
|
277
|
+
* - _Returns_: list of DLC
|
|
259
278
|
*/
|
|
260
279
|
getLatestDLCByGameAppId(appId: string): Promise<IResponseWithSync<RetrieveLatestDlcResponseArray>>;
|
|
261
280
|
/**
|
|
262
|
-
* Retrieve the list of DLC available on specific game. Use DLC's appId to query
|
|
281
|
+
* Retrieve the list of DLC available on specific game. Use DLC's appId to query.
|
|
282
|
+
* - _Returns_: appId of game and list of its builds by platformId
|
|
263
283
|
*/
|
|
264
284
|
getBaseGamesByDlcAppId(dlcAppId: string): Promise<IResponseWithSync<RetrieveBaseGameResponseArray>>;
|
|
265
285
|
private newInstance;
|
|
@@ -299,15 +319,25 @@ declare class DownloaderApi {
|
|
|
299
319
|
*/
|
|
300
320
|
constructor(conf: SDKRequestConfig, namespace: string);
|
|
301
321
|
/**
|
|
302
|
-
* This API is used to get simple build manifest that contains list of current build in various platform
|
|
322
|
+
* This API is used to get simple build manifest that contains list of current build in various platform.
|
|
323
|
+
* Other detail info:
|
|
324
|
+
* - _Required permission_: login user
|
|
325
|
+
* - _Returns_: build manifest
|
|
303
326
|
*/
|
|
304
327
|
getAvailableBuilds(appId: string): Promise<IResponseWithSync<BasicBuildManifestArray>>;
|
|
305
328
|
/**
|
|
306
|
-
* This API is used to get build manifest of release version of the application
|
|
329
|
+
* This API is used to get build manifest of release version of the application.
|
|
330
|
+
*
|
|
331
|
+
* Other detail info:
|
|
332
|
+
* - _Required permission_: login user
|
|
333
|
+
* - _Returns_: build manifest
|
|
307
334
|
*/
|
|
308
335
|
getBuildManifest(appId: string, platformId: string): Promise<IResponseWithSync<BuildManifest>>;
|
|
309
336
|
/**
|
|
310
|
-
* This API is used to retrieve detailed diff cache
|
|
337
|
+
* This API is used to retrieve detailed diff cache.
|
|
338
|
+
* The response will contains list of diff cache files along with its download url.
|
|
339
|
+
*
|
|
340
|
+
* - _Required permission_: login user
|
|
311
341
|
*/
|
|
312
342
|
getDiffCache(sourceBuildId: string, destinationBuildId: string): Promise<IResponseWithSync<RetrieveDiffCacheResponse>>;
|
|
313
343
|
/**
|
|
@@ -330,16 +360,15 @@ declare class EventApi {
|
|
|
330
360
|
*/
|
|
331
361
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
332
362
|
/**
|
|
333
|
-
*
|
|
334
|
-
*
|
|
335
|
-
*
|
|
336
|
-
*
|
|
337
|
-
*
|
|
338
|
-
*
|
|
339
|
-
*
|
|
340
|
-
*
|
|
341
|
-
*
|
|
342
|
-
* <p>Requires a valid user access token</p>
|
|
363
|
+
* Available Type:
|
|
364
|
+
* - email
|
|
365
|
+
* - password
|
|
366
|
+
* - displayname
|
|
367
|
+
* - dateofbirth
|
|
368
|
+
* - country
|
|
369
|
+
* - language
|
|
370
|
+
*
|
|
371
|
+
* Requires a valid user access token
|
|
343
372
|
*/
|
|
344
373
|
getAccountHistoryByUserId: ({ userId, queryParams }: {
|
|
345
374
|
userId: string;
|
|
@@ -363,13 +392,13 @@ declare class DataDeletionApi {
|
|
|
363
392
|
*/
|
|
364
393
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
365
394
|
/**
|
|
366
|
-
*
|
|
367
|
-
*
|
|
395
|
+
* Fetch the status to check whether or not a user's account is on a deletion status
|
|
396
|
+
* Requires valid user access token
|
|
368
397
|
*/
|
|
369
398
|
getGdprDeletionStatus(userId: string): Promise<IResponseWithSync<DeletionStatus>>;
|
|
370
399
|
/**
|
|
371
|
-
*
|
|
372
|
-
*
|
|
400
|
+
* Request an account's deletion
|
|
401
|
+
* Requires valid user access token and password
|
|
373
402
|
*/
|
|
374
403
|
requestAccountDeletion({ userId, data }: {
|
|
375
404
|
userId: string;
|
|
@@ -378,8 +407,8 @@ declare class DataDeletionApi {
|
|
|
378
407
|
};
|
|
379
408
|
}): Promise<IResponse<RequestDeleteResponse>>;
|
|
380
409
|
/**
|
|
381
|
-
*
|
|
382
|
-
*
|
|
410
|
+
* Cancel a deletion request
|
|
411
|
+
* Requires valid user access token
|
|
383
412
|
*/
|
|
384
413
|
cancelAccountDeletion(userId: string): Promise<IResponse<unknown>>;
|
|
385
414
|
private newInstance;
|
|
@@ -394,8 +423,8 @@ declare class DataRetrievalApi {
|
|
|
394
423
|
*/
|
|
395
424
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
396
425
|
/**
|
|
397
|
-
*
|
|
398
|
-
*
|
|
426
|
+
* Fetch personal data request list
|
|
427
|
+
* Requires valid user access token
|
|
399
428
|
*/
|
|
400
429
|
getGdprDataRequestList({ userId, queryParams }: {
|
|
401
430
|
userId: string;
|
|
@@ -405,8 +434,8 @@ declare class DataRetrievalApi {
|
|
|
405
434
|
};
|
|
406
435
|
}): Promise<IResponseWithSync<UserPersonalDataResponse>>;
|
|
407
436
|
/**
|
|
408
|
-
*
|
|
409
|
-
*
|
|
437
|
+
* Create a request for personal data download
|
|
438
|
+
* Requires valid user access token
|
|
410
439
|
*/
|
|
411
440
|
requestGdprData({ userId, data }: {
|
|
412
441
|
userId: string;
|
|
@@ -415,16 +444,16 @@ declare class DataRetrievalApi {
|
|
|
415
444
|
};
|
|
416
445
|
}): Promise<IResponse<DataRetrievalResponse>>;
|
|
417
446
|
/**
|
|
418
|
-
*
|
|
419
|
-
*
|
|
447
|
+
* Cancel the request for personal data dowwnload
|
|
448
|
+
* Requires valid user access token
|
|
420
449
|
*/
|
|
421
450
|
cancelGdprDataRequest({ userId, requestDate }: {
|
|
422
451
|
userId: string;
|
|
423
452
|
requestDate: string;
|
|
424
453
|
}): Promise<IResponse<unknown>>;
|
|
425
454
|
/**
|
|
426
|
-
*
|
|
427
|
-
*
|
|
455
|
+
* Create a download URL for personal data request
|
|
456
|
+
* Requires valid user access token
|
|
428
457
|
*/
|
|
429
458
|
requestGdprDataDownloadUrl({ userId, requestDate, data }: {
|
|
430
459
|
userId: string;
|
|
@@ -445,9 +474,9 @@ declare class InputValidationsApi {
|
|
|
445
474
|
*/
|
|
446
475
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
447
476
|
/**
|
|
448
|
-
*
|
|
449
|
-
*
|
|
450
|
-
*
|
|
477
|
+
* No role required
|
|
478
|
+
* This method is to get list of input validation configuration.
|
|
479
|
+
* `regex` parameter will be returned if `isCustomRegex` is true. Otherwise, it will be empty.
|
|
451
480
|
*
|
|
452
481
|
*/
|
|
453
482
|
getValidations: (languageCode?: string | null | undefined, defaultOnEmpty?: boolean | null | undefined) => Promise<IResponseWithSync<InputValidationsPublicResponse>>;
|
|
@@ -889,61 +918,59 @@ declare class OAuthApi {
|
|
|
889
918
|
*/
|
|
890
919
|
newOAuth20Extension(): OAuth20Extension$;
|
|
891
920
|
/**
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
*
|
|
895
|
-
*
|
|
896
|
-
* <li>AddTokenToRevocationList to revoke token with TTL</li>
|
|
897
|
-
* </ul>
|
|
921
|
+
* This method is used to remove __access_token__, __refresh_token__ from cookie and revoke token from usage.
|
|
922
|
+
* Supported methods:
|
|
923
|
+
* - VerifyToken to verify token from header
|
|
924
|
+
* - AddTokenToRevocationList to revoke token with TTL
|
|
898
925
|
*/
|
|
899
926
|
logout: () => Promise<IResponse<unknown>>;
|
|
900
927
|
/**
|
|
901
|
-
*
|
|
902
|
-
*
|
|
928
|
+
* This method revokes a token.
|
|
929
|
+
* This method requires authorized requests header with Basic Authentication from client that establish the token.action code: 10706
|
|
903
930
|
*/
|
|
904
931
|
revoke: ({ token }: {
|
|
905
932
|
token: string;
|
|
906
933
|
}) => Promise<IResponse<unknown>>;
|
|
907
934
|
/**
|
|
908
|
-
* Verify 2FA code
|
|
909
|
-
*
|
|
910
|
-
*
|
|
911
|
-
*
|
|
935
|
+
* Verify 2FA code
|
|
936
|
+
* This method is used for verifying 2FA code.
|
|
937
|
+
* ##2FA remember device
|
|
938
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
912
939
|
*
|
|
913
940
|
*/
|
|
914
941
|
verify2FA: ({ factor, code, mfaToken, rememberDevice }: Verify2FAParam) => Promise<IDataStatus<TokenResponseV3>>;
|
|
915
942
|
request2FAEmailCode: ({ mfaToken, factor }: Request2FAEmailCode) => Promise<IDataStatus<unknown>>;
|
|
916
943
|
/**
|
|
917
|
-
*
|
|
944
|
+
* This method get country location based on the request.
|
|
918
945
|
*/
|
|
919
946
|
getCurrentLocationCountry: () => Promise<IResponseWithSync<CountryLocationResponse>>;
|
|
920
947
|
/**
|
|
921
|
-
* Retrieve User Third Party Platform Token
|
|
922
|
-
*
|
|
948
|
+
* Retrieve User Third Party Platform Token
|
|
949
|
+
*
|
|
923
950
|
* This method used for retrieving third party platform token for user that login using third party,
|
|
924
951
|
* if user have not link requested platform in game namespace, will try to retrieving third party platform token from publisher namespace.
|
|
925
952
|
* 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>
|
|
953
|
+
*
|
|
954
|
+
* The third party platform and platform group covered for this is:
|
|
955
|
+
* - (psn) ps4web
|
|
956
|
+
* - (psn) ps4
|
|
957
|
+
* - (psn) ps5
|
|
958
|
+
* - epicgames
|
|
959
|
+
* - twitch
|
|
960
|
+
* - awscognito
|
|
961
|
+
*
|
|
936
962
|
*/
|
|
937
963
|
getThirdPartyPlatformToken: (userId: string, platformId: string) => Promise<IResponseWithSync<TokenThirdPartyResponse>>;
|
|
938
964
|
/**
|
|
939
965
|
* This method is being used to authenticate a user account and perform platform link.
|
|
940
966
|
* It validates user's email / username and password.
|
|
941
|
-
* If user already enable 2FA, then invoke
|
|
967
|
+
* If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
|
|
942
968
|
*
|
|
943
|
-
*
|
|
969
|
+
* ##Device Cookie Validation
|
|
944
970
|
*
|
|
945
|
-
* Device Cookie is used to protect the user account from brute force login attack,
|
|
946
|
-
*
|
|
971
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
972
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies).
|
|
973
|
+
* 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
974
|
*
|
|
948
975
|
*/
|
|
949
976
|
authenticateWithLink: (data: {
|
|
@@ -966,7 +993,7 @@ declare class OAuthApi {
|
|
|
966
993
|
/**
|
|
967
994
|
* This method is being used to generate user's token by one time link code.
|
|
968
995
|
* It require publisher ClientID
|
|
969
|
-
* It required a code which can be generated from
|
|
996
|
+
* It required a code which can be generated from __/iam/v3/link/code/request__.
|
|
970
997
|
*
|
|
971
998
|
*/
|
|
972
999
|
exchangeTokenByOneTimeLinkCode(data: {
|
|
@@ -1049,58 +1076,58 @@ declare class TwoFA {
|
|
|
1049
1076
|
*/
|
|
1050
1077
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
1051
1078
|
/**
|
|
1052
|
-
*
|
|
1053
|
-
* Each code is a one-time code and will be deleted once used
|
|
1054
|
-
*
|
|
1079
|
+
* This method is used to get 8-digits backup codes.
|
|
1080
|
+
* Each code is a one-time code and will be deleted once used.
|
|
1081
|
+
* This method Requires valid user access token
|
|
1055
1082
|
*
|
|
1056
1083
|
*/
|
|
1057
1084
|
getBackupCode: () => Promise<IResponseWithSync<BackupCodesResponseV4>>;
|
|
1058
1085
|
/**
|
|
1059
|
-
*
|
|
1060
|
-
*
|
|
1086
|
+
* This method is used to enable 2FA backup codes.
|
|
1087
|
+
* This method Requires valid user access token
|
|
1061
1088
|
*
|
|
1062
1089
|
*/
|
|
1063
1090
|
enable2FABackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1064
1091
|
/**
|
|
1065
|
-
*
|
|
1066
|
-
*
|
|
1092
|
+
* This method is used to enable 2FA backup codes.
|
|
1093
|
+
* This method Requires valid user access token
|
|
1067
1094
|
*
|
|
1068
1095
|
*/
|
|
1069
1096
|
generateBackupCodes: () => Promise<IResponse<BackupCodesResponseV4>>;
|
|
1070
1097
|
/**
|
|
1071
|
-
*
|
|
1072
|
-
*
|
|
1098
|
+
* This method is used to enable 2FA backup codes.
|
|
1099
|
+
* This method Requires valid user access token
|
|
1073
1100
|
*
|
|
1074
1101
|
*/
|
|
1075
1102
|
disableBackupCodes: () => Promise<IResponse<unknown>>;
|
|
1076
1103
|
/**
|
|
1077
|
-
*
|
|
1078
|
-
*
|
|
1104
|
+
* This method is used to disable 2FA authenticator.
|
|
1105
|
+
* This method Requires valid user access token
|
|
1079
1106
|
*
|
|
1080
1107
|
*/
|
|
1081
1108
|
disableAuthenticator: () => Promise<IResponse<unknown>>;
|
|
1082
1109
|
/**
|
|
1083
|
-
*
|
|
1084
|
-
*
|
|
1110
|
+
* This method is used to get user enabled factors.
|
|
1111
|
+
* This method Requires valid user access token
|
|
1085
1112
|
*
|
|
1086
1113
|
*/
|
|
1087
1114
|
getEnabledMethods: () => Promise<IResponseWithSync<EnabledFactorsResponseV4>>;
|
|
1088
1115
|
/**
|
|
1089
|
-
*
|
|
1090
|
-
*
|
|
1116
|
+
* This method is used to make 2FA factor default.
|
|
1117
|
+
* This method Requires valid user access token
|
|
1091
1118
|
*
|
|
1092
1119
|
*/
|
|
1093
1120
|
set2FAAsDefault: (factor: string) => Promise<IResponse<unknown>>;
|
|
1094
1121
|
/**
|
|
1095
|
-
*
|
|
1096
|
-
*
|
|
1122
|
+
* This method is used to enable 2FA authenticator.
|
|
1123
|
+
* This method Requires valid user access token
|
|
1097
1124
|
*
|
|
1098
1125
|
*/
|
|
1099
1126
|
enable2FAAuthenticator: (code: string) => Promise<IResponse<unknown>>;
|
|
1100
1127
|
/**
|
|
1101
|
-
*
|
|
1102
|
-
* A QR code URI is also returned so that frontend can generate QR code image
|
|
1103
|
-
*
|
|
1128
|
+
* This method is used to generate a secret key for 3rd-party authenticator app.
|
|
1129
|
+
* A QR code URI is also returned so that frontend can generate QR code image.
|
|
1130
|
+
* This method Requires valid user access token
|
|
1104
1131
|
*
|
|
1105
1132
|
*/
|
|
1106
1133
|
generateSecretKey: () => Promise<IResponse<AuthenticatorKeyResponseV4>>;
|
|
@@ -3847,101 +3874,97 @@ declare class UserApi {
|
|
|
3847
3874
|
updatePasswordMe: (data: UserPasswordUpdateV3Request) => Promise<IResponse<unknown>>;
|
|
3848
3875
|
/**
|
|
3849
3876
|
* 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>
|
|
3877
|
+
* The verification code is sent to email address
|
|
3878
|
+
* Available contexts for use :
|
|
3879
|
+
* -
|
|
3880
|
+
* __UserAccountRegistration__
|
|
3881
|
+
* a context type used for verifying email address in user account registration. It returns 409 if the email address already verified.
|
|
3882
|
+
* __It is the default context if the Context field is empty__
|
|
3883
|
+
*
|
|
3884
|
+
* -
|
|
3885
|
+
* __UpdateEmailAddress__
|
|
3886
|
+
* a context type used for verify user before updating email address.(Without email address verified checking)
|
|
3887
|
+
*
|
|
3888
|
+
* - __upgradeHeadlessAccount__
|
|
3889
|
+
* The context is intended to be used whenever the email address wanted to be automatically verified on upgrading a headless account.
|
|
3890
|
+
* If this context used, IAM rejects the request if the email address is already used by others by returning HTTP Status Code 409.
|
|
3891
|
+
* action code: 10116
|
|
3868
3892
|
*
|
|
3869
3893
|
*/
|
|
3870
3894
|
requestVerificationCode: (data: SendVerificationCodeRequestV3) => Promise<IResponse<unknown>>;
|
|
3871
3895
|
/**
|
|
3872
|
-
*
|
|
3873
|
-
*
|
|
3874
|
-
*
|
|
3875
|
-
*
|
|
3876
|
-
*
|
|
3896
|
+
* Will consume code if validateOnly is set false
|
|
3897
|
+
* Required valid user authorization
|
|
3898
|
+
* Redeems a verification code sent to a user to verify the user's contact address is correct
|
|
3899
|
+
* Available ContactType : __email__
|
|
3900
|
+
* action code: 10107
|
|
3877
3901
|
*
|
|
3878
3902
|
*/
|
|
3879
3903
|
verifyCode: (data: UserVerificationRequestV3) => Promise<IResponse<unknown>>;
|
|
3880
3904
|
/**
|
|
3881
|
-
*
|
|
3905
|
+
* If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded
|
|
3882
3906
|
* 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
|
-
*
|
|
3907
|
+
* The method upgrades a headless account by linking the headless account with the email address and the password.
|
|
3908
|
+
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
3909
|
+
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
3910
|
+
* In order to get a verification code for the method, please check the send verification code method.
|
|
3911
|
+
* 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
3912
|
* Supported user data fields :
|
|
3889
|
-
*
|
|
3890
|
-
*
|
|
3891
|
-
*
|
|
3892
|
-
*
|
|
3893
|
-
*
|
|
3894
|
-
*
|
|
3913
|
+
*
|
|
3914
|
+
* - displayName
|
|
3915
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
3916
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
3917
|
+
*
|
|
3918
|
+
* action code : 10124
|
|
3895
3919
|
*/
|
|
3896
3920
|
upgradeHeadlessAccount: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV3) => Promise<IResponse<UserResponseV3>>;
|
|
3897
3921
|
/**
|
|
3898
3922
|
* Require valid user access token.
|
|
3899
3923
|
* The method upgrades a headless account by linking the headless account with the email address, username, and password.
|
|
3900
3924
|
* By upgrading the headless account into a full account, the user could use the email address, username, and password for using Justice IAM.
|
|
3901
|
-
*
|
|
3925
|
+
*
|
|
3902
3926
|
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
3903
|
-
*
|
|
3904
|
-
* <br>
|
|
3927
|
+
*
|
|
3905
3928
|
* 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
3929
|
* Supported user data fields:
|
|
3907
|
-
*
|
|
3908
|
-
*
|
|
3909
|
-
*
|
|
3910
|
-
*
|
|
3911
|
-
*
|
|
3930
|
+
*
|
|
3931
|
+
* - displayName
|
|
3932
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
3933
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
3934
|
+
*
|
|
3912
3935
|
* action code : 10124
|
|
3913
3936
|
*/
|
|
3914
3937
|
upgradeHeadlessAccountV4: (data: UpgradeHeadlessAccountWithVerificationCodeRequestV4) => Promise<IResponse<UserResponseV4>>;
|
|
3915
3938
|
/**
|
|
3916
|
-
*
|
|
3917
|
-
*
|
|
3939
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
3940
|
+
* action code: 10128
|
|
3918
3941
|
*/
|
|
3919
3942
|
getUserLinkedPlatform: (userId: string) => Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
3920
3943
|
/**
|
|
3921
3944
|
* Required valid user authorization.
|
|
3922
|
-
*
|
|
3945
|
+
* __Prerequisite:__
|
|
3923
3946
|
* 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
|
-
*
|
|
3947
|
+
* ##Supported platforms:
|
|
3948
|
+
*
|
|
3949
|
+
* - __steam__: The ticket’s value is the authentication code returned by Steam.
|
|
3950
|
+
* - __steamopenid__: Steam's user authentication method using OpenID 2.0. The ticket's value is URL generated by Steam on web authentication
|
|
3951
|
+
* - __facebook__: The ticket’s value is the authorization code returned by Facebook OAuth
|
|
3952
|
+
* - __google__: The ticket’s value is the authorization code returned by Google OAuth
|
|
3953
|
+
* - __oculus__: The ticket’s value is a string composed of Oculus's user ID and the nonce separated by a colon (:).
|
|
3954
|
+
* - __twitch__: The ticket’s value is the authorization code returned by Twitch OAuth.
|
|
3955
|
+
* - __android__: The ticket's value is the Android’s device ID
|
|
3956
|
+
* - __ios__: The ticket's value is the iOS’s device ID.
|
|
3957
|
+
* - __apple__: The ticket’s value is the authorization code returned by Apple OAuth.
|
|
3958
|
+
* - __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.
|
|
3959
|
+
* - __discord__: The ticket’s value is the authorization code returned by Discord OAuth.
|
|
3960
|
+
* - __ps4web__: The ticket’s value is the authorization code returned by PSN OAuth.
|
|
3961
|
+
* - __xblweb__: The ticket’s value is the authorization code returned by XBox Live OAuth.
|
|
3962
|
+
* - __awscognito__: The ticket’s value is the aws cognito access token (JWT).
|
|
3963
|
+
* - __epicgames__: The ticket’s value is an access-token obtained from Epicgames EOS Account Service.
|
|
3964
|
+
* - __nintendo__: The ticket’s value is the authorization code(id_token) returned by Nintendo OAuth.
|
|
3965
|
+
* - __stadia__: The ticket’s value is a JWT Token, which can be obtained after calling the Stadia SDK's function.
|
|
3966
|
+
*
|
|
3967
|
+
* action code : 10144
|
|
3945
3968
|
*/
|
|
3946
3969
|
linkAccountToPlatform: ({ platformId, data }: {
|
|
3947
3970
|
platformId: string;
|
|
@@ -3955,7 +3978,7 @@ declare class UserApi {
|
|
|
3955
3978
|
*/
|
|
3956
3979
|
getLinkRequestStatus: (requestId: string) => Promise<IResponseWithSync<LinkRequest>>;
|
|
3957
3980
|
/**
|
|
3958
|
-
* It is going to be
|
|
3981
|
+
* It is going to be __DEPRECATED__.
|
|
3959
3982
|
* Update Platform Account relation to current User Account.
|
|
3960
3983
|
* Note: Game progression data (statistics, reward, etc) associated with previous User Account will not be
|
|
3961
3984
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
@@ -3967,32 +3990,32 @@ declare class UserApi {
|
|
|
3967
3990
|
}) => Promise<IResponse<unknown>>;
|
|
3968
3991
|
/**
|
|
3969
3992
|
* 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
|
-
*
|
|
3993
|
+
* ##Supported platforms:
|
|
3994
|
+
*
|
|
3995
|
+
* - __steam__
|
|
3996
|
+
* - __steamopenid__
|
|
3997
|
+
* - __facebook__
|
|
3998
|
+
* - __google__
|
|
3999
|
+
* - __oculus__
|
|
4000
|
+
* - __twitch__
|
|
4001
|
+
* - __android__
|
|
4002
|
+
* - __ios__
|
|
4003
|
+
* - __apple__
|
|
4004
|
+
* - __device__
|
|
4005
|
+
* - __discord__
|
|
4006
|
+
* - __awscognito__
|
|
4007
|
+
* - __epicgames__
|
|
4008
|
+
* - __nintendo__
|
|
4009
|
+
* - __stadia__
|
|
4010
|
+
*
|
|
4011
|
+
* Unlink user's account from a specific platform. 'justice' platform might have multiple accounts from different namespaces linked.
|
|
4012
|
+
* _platformNamespace_ need to be specified when the platform ID is 'justice'.
|
|
4013
|
+
*
|
|
4014
|
+
* Unlink user's account from justice platform will enable password token grant and password update.
|
|
4015
|
+
*
|
|
4016
|
+
* If you want to unlink user's account in a game namespace, you have to specify _platformNamespace_ to that game namespace.
|
|
4017
|
+
*
|
|
4018
|
+
* action code : 10121
|
|
3996
4019
|
*/
|
|
3997
4020
|
unLinkAccountFromPlatform: ({ platformId, data }: {
|
|
3998
4021
|
platformId: string;
|
|
@@ -4028,53 +4051,51 @@ declare class UserApi {
|
|
|
4028
4051
|
* If it already been used, will response 409.
|
|
4029
4052
|
*
|
|
4030
4053
|
* 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
4054
|
*/
|
|
4034
4055
|
requestNewUserVerificationCode(data: SendRegisterVerificationCodeRequest): Promise<IResponse<unknown>>;
|
|
4035
4056
|
/**
|
|
4036
4057
|
* Create a new user with unique email address and username.
|
|
4037
|
-
*
|
|
4038
|
-
*
|
|
4058
|
+
*
|
|
4059
|
+
* __Required attributes:__
|
|
4039
4060
|
* - authType: possible value is EMAILPASSWD
|
|
4040
4061
|
* - emailAddress: Please refer to the rule from /v3/public/inputValidations API.
|
|
4041
4062
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
4042
4063
|
* - password: Please refer to the rule from /v3/public/inputValidations API.
|
|
4043
4064
|
* - country: ISO3166-1 alpha-2 two letter, e.g. US.
|
|
4044
4065
|
* - dateOfBirth: YYYY-MM-DD, e.g. 1990-01-01. valid values are between 1905-01-01 until current date.
|
|
4045
|
-
*
|
|
4046
|
-
*
|
|
4066
|
+
*
|
|
4067
|
+
* __Not required attributes:__
|
|
4047
4068
|
* - displayName: Please refer to the rule from /v3/public/inputValidations API.
|
|
4048
|
-
*
|
|
4049
|
-
*
|
|
4069
|
+
*
|
|
4070
|
+
* This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.
|
|
4050
4071
|
*
|
|
4051
4072
|
*/
|
|
4052
4073
|
createUser(data: CreateUserRequestV4): Promise<IResponse<CreateUserResponseV4>>;
|
|
4053
4074
|
/**
|
|
4054
|
-
*
|
|
4055
|
-
*
|
|
4056
|
-
*
|
|
4075
|
+
* This method retrieves platform accounts linked to user.
|
|
4076
|
+
* It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
4077
|
+
* Required valid user authorization.
|
|
4057
4078
|
*/
|
|
4058
4079
|
getUserDistinctLinkedPlatform(userId: string): Promise<IResponseWithSync<DistinctPlatformResponseV3>>;
|
|
4059
4080
|
/**
|
|
4060
4081
|
* Required valid user authorization.
|
|
4061
|
-
*
|
|
4082
|
+
* Unlink user's account from for all third platforms.
|
|
4062
4083
|
*/
|
|
4063
4084
|
unLinkAccountFromPlatformDistinct(platformId: string): Promise<IResponse<unknown>>;
|
|
4064
4085
|
/**
|
|
4065
4086
|
* Required valid user authorization
|
|
4066
|
-
*
|
|
4067
|
-
*
|
|
4087
|
+
* The verification link is sent to email address
|
|
4088
|
+
* It will not send request if user email is already verified
|
|
4068
4089
|
*
|
|
4069
4090
|
*/
|
|
4070
4091
|
sendVerificationLink(languageTag: string): Promise<IResponse<unknown>>;
|
|
4071
4092
|
/**
|
|
4072
|
-
*
|
|
4073
|
-
*
|
|
4093
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
4094
|
+
* action code: 10128
|
|
4074
4095
|
*/
|
|
4075
4096
|
getLinkedAccount(userId: string): Promise<IResponseWithSync<UserLinkedPlatformsResponseV3>>;
|
|
4076
4097
|
/**
|
|
4077
|
-
* Note
|
|
4098
|
+
* Note:
|
|
4078
4099
|
* 1. My account should be full account
|
|
4079
4100
|
* 2. My account not linked to request headless account's third platform.
|
|
4080
4101
|
*/
|
|
@@ -4082,7 +4103,7 @@ declare class UserApi {
|
|
|
4082
4103
|
oneTimeLinkCode: string | null;
|
|
4083
4104
|
}): Promise<IResponseWithSync<GetLinkHeadlessAccountConflictResponse>>;
|
|
4084
4105
|
/**
|
|
4085
|
-
* Note
|
|
4106
|
+
* Note:
|
|
4086
4107
|
* 1. My account should be full account
|
|
4087
4108
|
* 2. My account not linked to headless account's third platform.
|
|
4088
4109
|
*/
|
|
@@ -4268,7 +4289,7 @@ declare class LoginErrorUnknown extends Error {
|
|
|
4268
4289
|
}
|
|
4269
4290
|
declare class LoginErrorUnmatchedState extends Error {
|
|
4270
4291
|
}
|
|
4271
|
-
declare class
|
|
4292
|
+
declare class UserAuthorizationApi {
|
|
4272
4293
|
private readonly conf;
|
|
4273
4294
|
private readonly namespace;
|
|
4274
4295
|
private readonly cache;
|
|
@@ -4278,81 +4299,81 @@ declare class UserAuthorization {
|
|
|
4278
4299
|
*/
|
|
4279
4300
|
constructor(conf: SDKRequestConfig, namespace: string, cache: boolean, options: UserAuthorizationOptions);
|
|
4280
4301
|
/**
|
|
4281
|
-
*
|
|
4282
|
-
*
|
|
4302
|
+
* This method supports grant type:
|
|
4303
|
+
* - Grant Type == `authorization_code`:
|
|
4283
4304
|
* It generates the user token by given the authorization
|
|
4284
4305
|
* code which generated in "/iam/v3/authenticate" API response. It should also pass
|
|
4285
4306
|
* in the redirect_uri, which should be the same as generating the
|
|
4286
4307
|
* authorization code request.
|
|
4287
|
-
*
|
|
4288
|
-
*
|
|
4308
|
+
*
|
|
4309
|
+
* - Grant Type == `password`:
|
|
4289
4310
|
* The grant type to use for authenticating a user, whether it's by email / username and password combination
|
|
4290
4311
|
* or through platform.
|
|
4291
|
-
*
|
|
4292
|
-
*
|
|
4312
|
+
*
|
|
4313
|
+
* - Grant Type == `refresh_token`:
|
|
4293
4314
|
* Used to get a new access token for a valid refresh token.
|
|
4294
|
-
*
|
|
4295
|
-
*
|
|
4315
|
+
*
|
|
4316
|
+
* - Grant Type == `client_credentials`:
|
|
4296
4317
|
* 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
|
-
*
|
|
4318
|
+
* ##Access Token Content
|
|
4319
|
+
* Following is the access token’s content:
|
|
4320
|
+
*
|
|
4321
|
+
* -
|
|
4322
|
+
* __namespace__. It is the namespace the token was generated from.
|
|
4323
|
+
*
|
|
4324
|
+
* -
|
|
4325
|
+
* __display_name__. The display name of the sub. It is empty if the token is generated from the client credential
|
|
4326
|
+
*
|
|
4327
|
+
* -
|
|
4328
|
+
* __roles__. The sub’s roles. It is empty if the token is generated from the client credential
|
|
4329
|
+
*
|
|
4330
|
+
* -
|
|
4331
|
+
* __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
|
|
4332
|
+
*
|
|
4333
|
+
* -
|
|
4334
|
+
* __permissions__. The sub or aud’ permissions
|
|
4335
|
+
*
|
|
4336
|
+
* -
|
|
4337
|
+
* __bans__. The sub’s list of bans. It is used by the IAM client for validating the token.
|
|
4338
|
+
*
|
|
4339
|
+
* -
|
|
4340
|
+
* __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:
|
|
4341
|
+
*
|
|
4342
|
+
* - 1: Email Address Verified
|
|
4343
|
+
* - 2: Phone Number Verified
|
|
4344
|
+
* - 4: Anonymous
|
|
4345
|
+
* - 8: Suspicious Login
|
|
4346
|
+
*
|
|
4347
|
+
*
|
|
4348
|
+
* -
|
|
4349
|
+
* __aud__. The aud is the targeted resource server.
|
|
4350
|
+
*
|
|
4351
|
+
* -
|
|
4352
|
+
* __iat__. The time the token issues at. It is in Epoch time format
|
|
4353
|
+
*
|
|
4354
|
+
* -
|
|
4355
|
+
* __exp__. The time the token expires. It is in Epoch time format
|
|
4356
|
+
*
|
|
4357
|
+
* -
|
|
4358
|
+
* __client_id__. The UserID. The sub is omitted if the token is generated from client credential
|
|
4359
|
+
*
|
|
4360
|
+
* -
|
|
4361
|
+
* __scope__. The scope of the access request, expressed as a list of space-delimited, case-sensitive strings
|
|
4362
|
+
*
|
|
4363
|
+
*
|
|
4364
|
+
* ##Bans
|
|
4365
|
+
* The JWT contains user's active bans with its expiry date. List of ban types can be obtained from /bans.
|
|
4366
|
+
* ##Device Cookie Validation
|
|
4367
|
+
* __For grant type "password" only__
|
|
4368
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
4369
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies)
|
|
4370
|
+
* 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.
|
|
4371
|
+
* ##Track Login History
|
|
4372
|
+
* 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".
|
|
4373
|
+
* Align with General Data Protection Regulation in Europe, user login history will be kept within 28 days by default"
|
|
4374
|
+
* ##2FA remember device
|
|
4375
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
4376
|
+
* action code: 10703
|
|
4356
4377
|
*/
|
|
4357
4378
|
loginWithAuthorizationCode: ({ code, codeVerifier }: {
|
|
4358
4379
|
code: string;
|
|
@@ -4441,15 +4462,18 @@ declare class AgreementApi {
|
|
|
4441
4462
|
*/
|
|
4442
4463
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4443
4464
|
/**
|
|
4444
|
-
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement
|
|
4465
|
+
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement.
|
|
4466
|
+
* - _Required permission_: login user
|
|
4445
4467
|
*/
|
|
4446
4468
|
acceptLegalPolicies(acceptAgreements: AcceptAgreementRequest[]): Promise<IResponse<AcceptAgreementResponse>>;
|
|
4447
4469
|
/**
|
|
4448
|
-
* Retrieve accepted Legal Agreements
|
|
4470
|
+
* Retrieve accepted Legal Agreements.
|
|
4471
|
+
* - _Required permission_: login user
|
|
4449
4472
|
*/
|
|
4450
4473
|
getAgreements(): Promise<IResponseWithSync<RetrieveAcceptedAgreementResponseArray>>;
|
|
4451
4474
|
/**
|
|
4452
|
-
* Change marketing preference consent
|
|
4475
|
+
* Change marketing preference consent.
|
|
4476
|
+
* - _Required permission_: login user
|
|
4453
4477
|
*/
|
|
4454
4478
|
updateMarketingPreferences(acceptAgreements: AcceptAgreementRequest[]): Promise<IResponse<unknown>>;
|
|
4455
4479
|
private newInstance;
|
|
@@ -4464,7 +4488,8 @@ declare class EligibilitiesApi {
|
|
|
4464
4488
|
*/
|
|
4465
4489
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4466
4490
|
/**
|
|
4467
|
-
* Retrieve the active policies and its conformance status by user
|
|
4491
|
+
* 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.Other detail info:
|
|
4492
|
+
* - _Required permission_: login user
|
|
4468
4493
|
*/
|
|
4469
4494
|
getUserEligibilities(): Promise<IResponseWithSync<RetrieveUserEligibilitiesResponseArray>>;
|
|
4470
4495
|
private newInstance;
|
|
@@ -4479,7 +4504,7 @@ declare class LocalizedPolicyVersionsApi {
|
|
|
4479
4504
|
*/
|
|
4480
4505
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4481
4506
|
/**
|
|
4482
|
-
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located
|
|
4507
|
+
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located.Other detail info:
|
|
4483
4508
|
*/
|
|
4484
4509
|
fetchLocalizedPolicyVersionById(localizedPolicyVersionId: string): Promise<IResponseWithSync<RetrieveLocalizedPolicyVersionPublicResponse>>;
|
|
4485
4510
|
private newInstance;
|
|
@@ -4738,14 +4763,31 @@ declare class PoliciesApi {
|
|
|
4738
4763
|
*/
|
|
4739
4764
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
4740
4765
|
/**
|
|
4741
|
-
* Retrieve all active latest policies based on a namespace and country
|
|
4766
|
+
* Retrieve all active latest policies based on a namespace and country.Other detail info:
|
|
4767
|
+
*
|
|
4768
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
4769
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
4770
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
4771
|
+
* - _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:_
|
|
4772
|
+
*
|
|
4773
|
+
* - Document 1 (default): Region US (default), UA
|
|
4774
|
+
* - Document 2 (default): Region US (default)
|
|
4775
|
+
* - Document 3 (default): Region US (default)
|
|
4776
|
+
* - User: Region UA
|
|
4777
|
+
* - Query: alwaysIncludeDefault: true
|
|
4778
|
+
* - Response: Document 1 (UA), Document 2 (US), Document 3 (US)
|
|
4742
4779
|
*/
|
|
4743
4780
|
fetchPoliciesByCountry({ countryCode, queryParams }: {
|
|
4744
4781
|
countryCode: string;
|
|
4745
4782
|
queryParams: Parameters<Policies$['fetchPublicPoliciesNamespacesByNamespaceCountriesByCountrycode']>[1];
|
|
4746
4783
|
}): Promise<IResponseWithSync<RetrievePolicyPublicResponseArray>>;
|
|
4747
4784
|
/**
|
|
4748
|
-
* Retrieve all active latest policies based on country from all namespaces
|
|
4785
|
+
* Retrieve all active latest policies based on country from all namespaces.
|
|
4786
|
+
* Other detail info:
|
|
4787
|
+
*
|
|
4788
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
4789
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
4790
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
4749
4791
|
*/
|
|
4750
4792
|
fetchAllPoliciesByCountry({ countryCode, queryParams }: {
|
|
4751
4793
|
countryCode: string;
|
|
@@ -7652,7 +7694,8 @@ declare class CurrencyApi {
|
|
|
7652
7694
|
*/
|
|
7653
7695
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
7654
7696
|
/**
|
|
7655
|
-
* List currencies of a namespace
|
|
7697
|
+
* List currencies of a namespace.
|
|
7698
|
+
* Returns: Currency List
|
|
7656
7699
|
*/
|
|
7657
7700
|
getCurrencies: () => Promise<IResponseWithSync<CurrencyInfoArray>>;
|
|
7658
7701
|
/**
|
|
@@ -11159,21 +11202,22 @@ declare class EntitlementApi {
|
|
|
11159
11202
|
*/
|
|
11160
11203
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11161
11204
|
/**
|
|
11162
|
-
* Get user app entitlement by appId
|
|
11205
|
+
* Get user app entitlement by appId.
|
|
11163
11206
|
*/
|
|
11164
11207
|
getEntitlementByAppId({ userId, appId }: {
|
|
11165
11208
|
userId: string;
|
|
11166
11209
|
appId: string;
|
|
11167
11210
|
}): Promise<IResponseWithSync<AppEntitlementInfo>>;
|
|
11168
11211
|
/**
|
|
11169
|
-
* Query user entitlements for a specific user
|
|
11212
|
+
* Query user entitlements for a specific user.
|
|
11213
|
+
* Returns: entitlement list
|
|
11170
11214
|
*/
|
|
11171
11215
|
getEntitlements({ userId, queryParams }: {
|
|
11172
11216
|
userId: string;
|
|
11173
11217
|
queryParams: Parameters<Entitlement$['fetchNsUsersByUseridEntitlements']>[1];
|
|
11174
11218
|
}): Promise<IResponseWithSync<EntitlementPagingSlicedResult>>;
|
|
11175
11219
|
/**
|
|
11176
|
-
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
11220
|
+
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
11177
11221
|
*/
|
|
11178
11222
|
getEntitlementOwnerShip({ userId, queryParams }: {
|
|
11179
11223
|
userId: string;
|
|
@@ -11184,7 +11228,7 @@ declare class EntitlementApi {
|
|
|
11184
11228
|
};
|
|
11185
11229
|
}): Promise<IResponseWithSync<Ownership>>;
|
|
11186
11230
|
/**
|
|
11187
|
-
* Get user entitlement ownership by itemIds
|
|
11231
|
+
* Get user entitlement ownership by itemIds.
|
|
11188
11232
|
*/
|
|
11189
11233
|
getEntitlementByItemIds({ userId, queryParams }: {
|
|
11190
11234
|
userId: string;
|
|
@@ -11193,7 +11237,8 @@ declare class EntitlementApi {
|
|
|
11193
11237
|
};
|
|
11194
11238
|
}): Promise<IResponseWithSync<EntitlementOwnershipArray>>;
|
|
11195
11239
|
/**
|
|
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
|
|
11240
|
+
* Consume user entitlement. If the entitlement useCount is 0, the status will be CONSUMED. Client should pass item id in options if entitlement clazz is OPTIONBOX
|
|
11241
|
+
* Returns: consumed entitlement
|
|
11197
11242
|
*/
|
|
11198
11243
|
claimEntitlement({ userId, entitlementId, data }: {
|
|
11199
11244
|
userId: string;
|
|
@@ -11228,7 +11273,8 @@ declare class FulfillmentApi {
|
|
|
11228
11273
|
*/
|
|
11229
11274
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
11230
11275
|
/**
|
|
11231
|
-
* Redeem campaign code
|
|
11276
|
+
* Redeem campaign code.
|
|
11277
|
+
* Returns: fulfillment result
|
|
11232
11278
|
*/
|
|
11233
11279
|
redeemCode: ({ userId, data }: {
|
|
11234
11280
|
userId: string;
|
|
@@ -14621,7 +14667,8 @@ declare class ItemApi {
|
|
|
14621
14667
|
*/
|
|
14622
14668
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
14623
14669
|
/**
|
|
14624
|
-
* This API is used to get item by appId
|
|
14670
|
+
* This API is used to get item by appId.
|
|
14671
|
+
* Returns: the item with that appId
|
|
14625
14672
|
*/
|
|
14626
14673
|
getItemByAppId({ ...queryParams }: {
|
|
14627
14674
|
storeId?: string;
|
|
@@ -14630,14 +14677,16 @@ declare class ItemApi {
|
|
|
14630
14677
|
region?: string;
|
|
14631
14678
|
}): Promise<IResponseWithSync<ItemInfo>>;
|
|
14632
14679
|
/**
|
|
14633
|
-
* Get item dynamic data for a published item
|
|
14680
|
+
* Get item dynamic data for a published item.
|
|
14681
|
+
* Returns: item dynamic data
|
|
14634
14682
|
*/
|
|
14635
14683
|
getItemByItemIdDynamic(itemId: string): Promise<IResponseWithSync<ItemDynamicDataInfo>>;
|
|
14636
14684
|
fetchItemsByCriteria({ queryParams }: {
|
|
14637
14685
|
queryParams?: Parameters<Item$['fetchNsItemsByCriteria']>[0];
|
|
14638
14686
|
}): Promise<IResponseWithSync<ItemPagingSlicedResult>>;
|
|
14639
14687
|
/**
|
|
14640
|
-
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return
|
|
14688
|
+
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return.
|
|
14689
|
+
* Returns: the list of items
|
|
14641
14690
|
*/
|
|
14642
14691
|
getItemsByItemIds({ queryParams }: {
|
|
14643
14692
|
queryParams: QueryParamsItemIds;
|
|
@@ -14656,14 +14705,16 @@ declare class ItemApi {
|
|
|
14656
14705
|
value: Map<string, ItemInfo>;
|
|
14657
14706
|
}>;
|
|
14658
14707
|
/**
|
|
14659
|
-
* This API is used to get an item in locale. If item not exist in specific region, default region item will return
|
|
14708
|
+
* This API is used to get an item in locale. If item not exist in specific region, default region item will return.
|
|
14709
|
+
* Returns: item data
|
|
14660
14710
|
*/
|
|
14661
14711
|
getItemsByItemIdLocale({ itemId, queryParams }: {
|
|
14662
14712
|
itemId: string;
|
|
14663
14713
|
queryParams?: Parameters<Item$['fetchNsItemsByItemidLocale']>[1];
|
|
14664
14714
|
}): Promise<IResponseWithSync<PopulatedItemInfo>>;
|
|
14665
14715
|
/**
|
|
14666
|
-
* This API is used to get an app in locale. If app not exist in specific region, default region app will return
|
|
14716
|
+
* This API is used to get an app in locale. If app not exist in specific region, default region app will return.
|
|
14717
|
+
* Returns: app data
|
|
14667
14718
|
*/
|
|
14668
14719
|
getAppInfoByItemId({ itemId, queryParams }: {
|
|
14669
14720
|
itemId: string;
|
|
@@ -16374,28 +16425,33 @@ declare class OrderApi {
|
|
|
16374
16425
|
*/
|
|
16375
16426
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16376
16427
|
/**
|
|
16377
|
-
* Query user orders
|
|
16428
|
+
* Query user orders.
|
|
16429
|
+
* Returns: get order
|
|
16378
16430
|
*/
|
|
16379
16431
|
getOrderList: ({ userId, queryParams }: {
|
|
16380
16432
|
userId: string;
|
|
16381
16433
|
queryParams?: Parameters<Order$['fetchNsUsersByUseridOrders']>[1];
|
|
16382
16434
|
}) => Promise<IResponseWithSync<OrderPagingSlicedResult>>;
|
|
16383
16435
|
/**
|
|
16384
|
-
* Get user order
|
|
16436
|
+
* Get user order.
|
|
16437
|
+
* Returns: get order
|
|
16385
16438
|
*/
|
|
16386
16439
|
getOrderByOrderNo: ({ userId, orderNo }: {
|
|
16387
16440
|
userId: string;
|
|
16388
16441
|
orderNo: string;
|
|
16389
16442
|
}) => Promise<IResponseWithSync<OrderInfo>>;
|
|
16390
16443
|
/**
|
|
16391
|
-
* Cancel user order
|
|
16444
|
+
* Cancel user order.
|
|
16445
|
+
* Returns: cancelled order
|
|
16392
16446
|
*/
|
|
16393
16447
|
cancelOrder: ({ userId, orderNo }: {
|
|
16394
16448
|
userId: string;
|
|
16395
16449
|
orderNo: string;
|
|
16396
16450
|
}) => Promise<IResponse<OrderInfo>>;
|
|
16397
16451
|
/**
|
|
16398
|
-
* Create an order. The result contains the checkout link and payment token.
|
|
16452
|
+
* Create an order. The result contains the checkout link and payment token.
|
|
16453
|
+
* User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.
|
|
16454
|
+
* Returns: created order
|
|
16399
16455
|
*/
|
|
16400
16456
|
createOrder: ({ userId, data }: {
|
|
16401
16457
|
userId: string;
|
|
@@ -16671,11 +16727,14 @@ declare class PaymentApi {
|
|
|
16671
16727
|
*/
|
|
16672
16728
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
16673
16729
|
/**
|
|
16674
|
-
* Get payment accounts
|
|
16730
|
+
* Get payment accounts.\
|
|
16731
|
+
* Returns: Payment account list
|
|
16675
16732
|
*/
|
|
16676
16733
|
getPaymentAccounts: (userId: string) => Promise<IResponseWithSync<PaymentAccountArray>>;
|
|
16677
16734
|
/**
|
|
16678
|
-
* Delete payment account
|
|
16735
|
+
* Delete payment account.
|
|
16736
|
+
*
|
|
16737
|
+
* Other detail info:
|
|
16679
16738
|
*/
|
|
16680
16739
|
deletePaymentAccount: ({ userId, type, id }: {
|
|
16681
16740
|
userId: string;
|
|
@@ -16683,31 +16742,38 @@ declare class PaymentApi {
|
|
|
16683
16742
|
id: string;
|
|
16684
16743
|
}) => Promise<IResponse<unknown>>;
|
|
16685
16744
|
/**
|
|
16686
|
-
* Get payment order info
|
|
16745
|
+
* Get payment order info.
|
|
16746
|
+
* Returns: Payment order details
|
|
16687
16747
|
*/
|
|
16688
16748
|
getPaymentInfo: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderDetails>>;
|
|
16689
16749
|
/**
|
|
16690
|
-
* Do payment(For now, this only support checkout.com)
|
|
16750
|
+
* Do payment(For now, this only support checkout.com).
|
|
16751
|
+
* Returns: Payment process result
|
|
16691
16752
|
*/
|
|
16692
16753
|
processPaymentOrder: (paymentOrderNo: string, data: PaymentToken, queryParams: Parameters<PaymentStation$['postNsPaymentOrdersByPaymentordernoPay']>[2]) => Promise<IResponse<PaymentProcessResult>>;
|
|
16693
16754
|
/**
|
|
16694
|
-
* Get payment provider public config, at current only Strip provide public config
|
|
16755
|
+
* Get payment provider public config, at current only Strip provide public config.
|
|
16756
|
+
* Returns: Public config
|
|
16695
16757
|
*/
|
|
16696
16758
|
getPaymentProviderPublicConfig: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentPublicconfig']>[0]['paymentProvider'], region: string | null, sandbox?: boolean | null | undefined) => Promise<IResponseWithSync<unknown>>;
|
|
16697
16759
|
/**
|
|
16698
|
-
* Check payment order paid status
|
|
16760
|
+
* Check payment order paid status.
|
|
16761
|
+
* Returns: Payment order paid result
|
|
16699
16762
|
*/
|
|
16700
16763
|
getPaymentOrderStatus: (paymentOrderNo: string) => Promise<IResponseWithSync<PaymentOrderPaidResult>>;
|
|
16701
16764
|
/**
|
|
16702
|
-
* Get payment methods
|
|
16765
|
+
* Get payment methods.
|
|
16766
|
+
* Returns: Payment method list
|
|
16703
16767
|
*/
|
|
16704
16768
|
getPaymentMethods: (paymentOrderNo: string | null) => Promise<IResponseWithSync<PaymentMethodArray>>;
|
|
16705
16769
|
/**
|
|
16706
|
-
* Check and get a payment order's should pay tax
|
|
16770
|
+
* Check and get a payment order's should pay tax.
|
|
16771
|
+
* Returns: tax result
|
|
16707
16772
|
*/
|
|
16708
16773
|
getPaymentTax: (paymentProvider: Parameters<PaymentStation$['fetchNsPaymentTax']>[0]['paymentProvider'], paymentOrderNo: string | null, zipCode?: string | null | undefined) => Promise<IResponseWithSync<TaxResult>>;
|
|
16709
16774
|
/**
|
|
16710
|
-
* Get payment url
|
|
16775
|
+
* Get payment url.
|
|
16776
|
+
* Returns: Get payment link
|
|
16711
16777
|
*/
|
|
16712
16778
|
createPaymentUrl: (data: PaymentUrlCreate) => Promise<IResponse<PaymentUrl>>;
|
|
16713
16779
|
private newInstance;
|
|
@@ -18984,28 +19050,36 @@ declare class SubscriptionApi {
|
|
|
18984
19050
|
*/
|
|
18985
19051
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
18986
19052
|
/**
|
|
18987
|
-
* Query user subscriptions
|
|
19053
|
+
* Query user subscriptions.
|
|
19054
|
+
* Returns: paginated subscription
|
|
18988
19055
|
*/
|
|
18989
19056
|
getUserSubscriptions({ userId, queryParams }: {
|
|
18990
19057
|
userId: string;
|
|
18991
19058
|
queryParams?: Parameters<Subscription$['fetchNsUsersByUseridSubscriptions']>[1];
|
|
18992
19059
|
}): Promise<IResponseWithSync<SubscriptionPagingSlicedResult>>;
|
|
18993
19060
|
/**
|
|
18994
|
-
* Get user subscription
|
|
19061
|
+
* Get user subscription.
|
|
19062
|
+
* Returns: subscription
|
|
18995
19063
|
*/
|
|
18996
19064
|
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }: {
|
|
18997
19065
|
userId: string;
|
|
18998
19066
|
subscriptionId: string;
|
|
18999
19067
|
}): Promise<IResponseWithSync<SubscriptionInfo>>;
|
|
19000
19068
|
/**
|
|
19001
|
-
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true
|
|
19069
|
+
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true.
|
|
19070
|
+
* __ACTIVE USER subscription can't do subscribe again.__
|
|
19071
|
+
* __The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.__
|
|
19072
|
+
* User with permission SANDBOX will create sandbox subscription that not real paid.
|
|
19073
|
+
*
|
|
19074
|
+
* Returns: created subscription
|
|
19002
19075
|
*/
|
|
19003
19076
|
createSubscription({ userId, data }: {
|
|
19004
19077
|
userId: string;
|
|
19005
19078
|
data: SubscribeRequest;
|
|
19006
19079
|
}): Promise<IResponse<unknown>>;
|
|
19007
19080
|
/**
|
|
19008
|
-
* Get user subscription billing histories
|
|
19081
|
+
* Get user subscription billing histories.
|
|
19082
|
+
* Returns: paginated subscription history
|
|
19009
19083
|
*/
|
|
19010
19084
|
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }: {
|
|
19011
19085
|
userId: string;
|
|
@@ -19017,14 +19091,20 @@ declare class SubscriptionApi {
|
|
|
19017
19091
|
};
|
|
19018
19092
|
}): Promise<IResponseWithSync<BillingHistoryPagingSlicedResult>>;
|
|
19019
19093
|
/**
|
|
19020
|
-
* Request to change a subscription billing account, this will guide user to payment station.
|
|
19094
|
+
* Request to change a subscription billing account, this will guide user to payment station.
|
|
19095
|
+
* The actual change will happen at the 0 payment notification successfully handled.
|
|
19096
|
+
* Only ACTIVE USER subscription with real currency billing account can be changed.
|
|
19097
|
+
* Returns: updated subscription
|
|
19021
19098
|
*/
|
|
19022
19099
|
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }: {
|
|
19023
19100
|
userId: string;
|
|
19024
19101
|
subscriptionId: string;
|
|
19025
19102
|
}): Promise<IResponse<SubscriptionInfo>>;
|
|
19026
19103
|
/**
|
|
19027
|
-
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
19104
|
+
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
19105
|
+
* __Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.__
|
|
19106
|
+
* Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.
|
|
19107
|
+
* Returns: cancelled subscription
|
|
19028
19108
|
*/
|
|
19029
19109
|
cancelUserSubscription({ userId, subscriptionId, data }: {
|
|
19030
19110
|
userId: string;
|
|
@@ -19109,11 +19189,17 @@ declare class WalletApi {
|
|
|
19109
19189
|
*/
|
|
19110
19190
|
constructor(conf: SDKRequestConfig, namespace: string, cache?: boolean);
|
|
19111
19191
|
/**
|
|
19112
|
-
* get my wallet by currency code and namespace
|
|
19192
|
+
* get my wallet by currency code and namespace.
|
|
19193
|
+
*
|
|
19194
|
+
* Returns: wallet info
|
|
19195
|
+
* Path's namespace:
|
|
19196
|
+
* - can be filled with __publisher namespace__ in order to get __publisher user wallet__
|
|
19197
|
+
* - can be filled with __game namespace__ in order to get __game user wallet__
|
|
19113
19198
|
*/
|
|
19114
19199
|
getUserMeWallet: (currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19115
19200
|
/**
|
|
19116
|
-
*
|
|
19201
|
+
* Get a wallet by currency code.
|
|
19202
|
+
* Returns: wallet info
|
|
19117
19203
|
*/
|
|
19118
19204
|
getWalletByUserId: (userId: string, currencyCode: string) => Promise<IResponseWithSync<PlatformWallet>>;
|
|
19119
19205
|
/**
|
|
@@ -19159,7 +19245,7 @@ declare type Overrides = {
|
|
|
19159
19245
|
};
|
|
19160
19246
|
interface AccelbyteSDK {
|
|
19161
19247
|
IAM: {
|
|
19162
|
-
UserAuthorization(overrides?: Overrides):
|
|
19248
|
+
UserAuthorization(overrides?: Overrides): UserAuthorizationApi;
|
|
19163
19249
|
User(overrides?: Overrides): UserApi;
|
|
19164
19250
|
OAuth(overrides?: Overrides): OAuthApi;
|
|
19165
19251
|
InputValidation(overrides?: Overrides): InputValidationsApi;
|
|
@@ -65337,4 +65423,4 @@ declare class SdkDevice {
|
|
|
65337
65423
|
static getDeviceId: () => string;
|
|
65338
65424
|
}
|
|
65339
65425
|
|
|
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 };
|
|
65426
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, AccelbyteSDK, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, Achievement, AchievementInfo, Action, AddCountryGroupRequest, AddCountryGroupResponse, AddUserRoleV4Request, AdditionalData, AdminOrderCreate, AdyenConfig, AgeRestrictionRequest, AgeRestrictionRequestV3, AgeRestrictionResponse, AgeRestrictionResponseV3, AgentType, Agreement$, AliPayConfig, AppEntitlementInfo, AppEntitlementPagingSlicedResult, AppInfo, AppLocalization, AppUpdate, AppleIapConfigInfo, AppleIapConfigRequest, AppleIapReceipt, AssignUserV4Request, AssignedUserV4Response, AuthenticatorKeyResponseV4, AuthenticatorSecretKey, AvailableComparison, AvailablePlatform, AvailablePredicate, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, BackgroundOverlay, BackgroundOverlayType, BackupCodesResponseV4, Ban, BanCreateRequest, BanReason, BanReasonV3, BanReasons, BanReasonsV3, BanType, BanUpdateRequest, BanV3, BannedBy, BannedByV3, Bans, BansV3, BasicBuildManifest, BasicBuildManifestArray, BasicCategoryInfo, BasicItem, BillingAccount, BillingHistoryChargeStatus, BillingHistoryInfo, BillingHistoryPagingSlicedResult, BinaryUpload, BlockData, BlockDownloadUrls, BlockDownloadUrlsRequest, BlockManifest, BoxItem, BrowserHelper, BuildAvailability, BuildAvailabilityArray, BuildDeletionData, BuildIdManifest, BuildIdVersion, BuildInfoPii, BuildManifest, BulkBanCreateRequestV3, BulkOperationResult, BulkUnbanCreateRequestV3, BundledItemInfo, Caching$, CalculateDiffCacheRequest, CampaignCreate, CampaignDynamicInfo, CampaignInfo, CampaignPagingSlicedResult, CampaignUpdate, CancelRequest, CatalogChangeInfo, CatalogChangePagingSlicedResult, CatalogChangeStatistics, Category$, CategoryCreate, CategoryInfo, CategoryInfoArray, CategoryUpdate, CheckValidUserIdRequestV4, CheckoutConfig, CleanerConfigObject, ClientCreateRequest, ClientCreationResponse, ClientCreationV3Request, ClientPayload, ClientPermission, ClientPermissionV3, ClientPermissions, ClientPermissionsV3, ClientRequestParameter, ClientResponse, ClientUpdateRequest, ClientUpdateSecretRequest, ClientUpdateV3Request, ClientV3Response, ClientsV3Response, CodeCreate, CodeCreateResult, CodeGenUtil, CodeInfo, CodeInfoPagingSlicedResult, ColorConfig, ColorConfigs, CommitDiffCacheRequest, CommitMultipartUploadRequest, CompanyLogo, CompanyLogoConfig, CompatibilityObject, ConditionGroup, ConditionGroupValidateResult, ConditionMatchResult, Config, Configs, ConfigurationInfo, ConfigurationUpdate, ConflictedUserPlatformAccounts, ConsumeItem, Country, CountryAgeRestriction, CountryAgeRestrictionRequest, CountryAgeRestrictionV3Request, CountryGroupObject, CountryLocationResponse, CountryObject, CountryObjectArray, CountryV3Response, CreateBasePolicyRequest, CreateBasePolicyRequestV2, CreateBasePolicyResponse, CreateDependencyLinkRequest, CreateDiffCacheRequest, CreateJusticeUserResponse, CreateLocalizedPolicyVersionRequest, CreateLocalizedPolicyVersionResponse, CreatePolicyVersionRequest, CreatePolicyVersionResponse, CreateTestUserRequestV4, CreateTestUserResponseV4, CreateTestUsersRequestV4, CreateTestUsersResponseV4, CreateUserRequestV4, CreateUserResponseV4, CreditRequest, CreditRevocation, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, DebitByCurrencyCodeRequest, DebitRequest, DecodeError, DefaultLaunchProfile, DeleteRewardConditionRequest, DeletionData, DeletionStatus, DependencyObject, Description, DetailedWalletTransactionInfo, DetailedWalletTransactionPagingSlicedResult, DeviceBanRequestV4, DeviceBanResponseV4, DeviceBanUpdateRequestV4, DeviceBannedResponseV4, DeviceBansResponseV4, DeviceIdDecryptResponseV4, DeviceResponseV4, DeviceTypeResponseV4, DeviceTypesResponseV4, DeviceUserResponseV4, DeviceUsersResponseV4, DevicesResponseV4, DiffCacheObject, DiffPatchRequest, DiffStatusReport, DifferentialBuildManifest, DifferentialFileManifest, DifferentialUploadSummary, DisableUserRequest, DiscoveryConfigData, DisplayedPolicy, DistinctLinkedPlatformV3, DistinctPlatformResponseV3, Dlc$, DlcItem, DlcItemConfigInfo, DlcItemConfigUpdate, DlcRecord, Downloader$, DownloaderApi, Drm$, DurableEntitlementRevocationConfig, ERROR_CODE_LINK_DELETION_ACCOUNT, ERROR_CODE_TOKEN_EXPIRED, ERROR_LINK_ANOTHER_3RD_PARTY_ACCOUNT, ERROR_USER_BANNED, Eligibilities$, EligibleUser, EmailUpdateRequestV4, EnabledFactorsResponseV4, EncryptedIdentity, Entitlement$, EntitlementDecrement, EntitlementDecrementResult, EntitlementGrant, EntitlementHistoryInfo, EntitlementInfo, EntitlementLootBoxReward, EntitlementOwnership, EntitlementOwnershipArray, EntitlementPagingSlicedResult, EntitlementRevocation, EntitlementRevocationConfig, EntitlementSummary, EntitlementUpdate, EpicGamesDlcSyncRequest, EpicGamesIapConfigInfo, EpicGamesIapConfigRequest, EpicGamesReconcileRequest, EpicGamesReconcileResult, EpicGamesReconcileResultArray, Equ8Config, Error$1 as Error, ErrorEntity, ErrorResponse, ErrorResponseWithConflictedUserPlatformAccounts, Event, EventId, EventLevel, EventPayload, EventRegistry, EventResponse, EventResponseV2, EventType, EventV2, EventV2$, ExportStoreRequest, ExtendedConfig, ExtensionFulfillmentSummary, ExternalPaymentOrderCreate, FailedBanUnbanUserV3, FieldValidationError, FileDiffingStatus, FileManifest, FileUpload$, FileUploadUrlInfo, FilterJson, FixedPeriodRotationConfig, FontConfigs, ForgotPasswordRequestV3, FulfillCodeRequest, Fulfillment$, FulfillmentError, FulfillmentHistoryInfo, FulfillmentHistoryPagingSlicedResult, FulfillmentItem, FulfillmentRequest, FulfillmentResult, FulfillmentScriptContext, FulfillmentScriptCreate, FulfillmentScriptEvalTestRequest, FulfillmentScriptEvalTestResult, FulfillmentScriptInfo, FulfillmentScriptUpdate, FullAppInfo, FullCategoryInfo, FullItemInfo, FullItemPagingSlicedResult, FullSectionInfo, FullViewInfo, GameTokenCodeResponse, GenericQueryPayload, GetAdminUsersResponse, GetLinkHeadlessAccountConflictResponse, GetPublisherUserResponse, GetPublisherUserV3Response, GetUserBanV3Response, GetUserJusticePlatformAccountResponse, GetUserMapping, GetUserMappingV3, GetUserMappingV3Array, GetUsersResponseWithPaginationV3, GlobalStyleConfig, GoogleIapConfigInfo, GoogleIapConfigRequest, GoogleIapReceipt, GoogleReceiptResolveResult, GrantSubscriptionDaysRequest, HierarchicalCategoryInfo, HierarchicalCategoryInfoArray, IDataStatus, IResponse, IResponseError, IResponseWithSync, IUserPlatform, IamHelper, Iap$, IapConsumeHistoryInfo, IapConsumeHistoryPagingSlicedResult, IapItemConfigInfo, IapItemConfigUpdate, IapItemEntry, IapOrderInfo, IapOrderPagingSlicedResult, Image, ImportErrorDetails, ImportStoreError, ImportStoreItemInfo, ImportStoreResult, InGameItemSync, InputValidationData, InputValidationDataPublic, InputValidationDescription, InputValidationHelper, InputValidationUpdatePayload, InputValidations$, InputValidationsApi, InputValidationsPublicResponse, InputValidationsResponse, InviteUserRequestV3, InviteUserRequestV4, InviteUserResponseV3, InvoiceCurrencySummary, InvoiceSummary, Item$, ItemAcquireRequest, ItemAcquireResult, ItemCreate, ItemDynamicDataInfo, ItemId, ItemInfo, ItemInfoArray, ItemNaming, ItemPagingSlicedResult, ItemPurchaseConditionValidateRequest, ItemPurchaseConditionValidateResult, ItemPurchaseConditionValidateResultArray, ItemReturnRequest, ItemRevocation, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, LauncherPageConfig, LegalHelper, LegalPolicyType, LegalReadinessStatusResponse, LinkHeadlessAccountRequest, LinkPlatformAccountRequest, LinkPlatformAccountWithProgressionRequest, LinkRequest, LinkingHistoryResponseWithPaginationV3, ListAssignedUsersV4Response, ListBulkUserBanResponseV3, ListBulkUserResponse, ListDeletionDataResponse, ListEmailAddressRequest, ListPersonalDataResponse, ListRoleV4Response, ListUserInformationResult, ListUserResponseV3, ListUserRolesV4Response, ListUsersWithPlatformAccountsResponse, ListValidUserIdResponseV4, ListViewInfo, Localization, LocalizedPolicyVersionObject, LocalizedPolicyVersions$, LocalizedPolicyVersionsWithNamespace$, LogLevel, LoginErrorCancelled, LoginErrorExpired, LoginErrorParam, LoginErrorUnknown, LoginErrorUnmatchedState, LoginHistoriesResponse, LogoVariantConfig, LootBoxConfig, LootBoxReward, MFAData, MFADataResponse, MFA_DATA_STORAGE_KEY, MachineIdentity, Misc$, MiscApi, MockIapReceipt, ModelCountry, MultipartUploadSummary, MultipartUploadUrl, MultipartUploadedPart, MultipleAgentType, MultipleEventId, MultipleEventLevel, MultipleEventType, MultipleUx, Namespace$, NamespaceCreate, NamespaceInfo, NamespaceInfoArray, NamespacePublisherInfo, NamespaceRole, NamespaceRoleRequest, NamespaceStatusUpdate, NamespaceUpdate, NetflixCertificates, Network, NotificationProcessResult, OAuth20$, OAuth20Extension$, ObsoleteFileManifest, OneTimeLinkingCodeResponse, OneTimeLinkingCodeValidationResponse, OptionBoxConfig, Order, Order$, OrderCreate, OrderCreationOptions, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Overrides, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination, PaginationV3, Paging, PayPalConfig, PaymentAccount, PaymentAccount$, PaymentAccountArray, PaymentApi, PaymentCallbackConfigInfo, PaymentCallbackConfigUpdate, PaymentMerchantConfigInfo, PaymentMethod, PaymentMethodArray, PaymentNotificationInfo, PaymentNotificationPagingSlicedResult, PaymentOrder, PaymentOrderChargeRequest, PaymentOrderChargeStatus, PaymentOrderCreate, PaymentOrderCreateResult, PaymentOrderDetails, PaymentOrderInfo, PaymentOrderNotifySimulation, PaymentOrderPagingSlicedResult, PaymentOrderPaidResult, PaymentOrderRefund, PaymentOrderRefundResult, PaymentOrderSyncResult, PaymentProcessResult, PaymentProviderConfigEdit, PaymentProviderConfigInfo, PaymentProviderConfigPagingSlicedResult, PaymentRequest, PaymentStation$, PaymentTaxConfigEdit, PaymentTaxConfigInfo, PaymentToken, PaymentUrl, PaymentUrlCreate, Permission, PermissionDeleteRequest, PermissionV3, Permissions, PermissionsV3, PersonalData, PingResultResponse, PlatformAccount, PlatformDlcConfigInfo, PlatformDlcConfigUpdate, PlatformDlcEntry, PlatformDomainDeleteRequest, PlatformDomainResponse, PlatformDomainUpdateRequest, PlatformMatchMap, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, PlayerPortalFooterIDsUnion, PlayerPortalHomePageKeys, PlayerPortalHomepageConfig, PlayerPortalHomepageKeys, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, Predicate, PredicateValidateResult, PublicKeyPresignedUrl, PublicThirdPartyPlatformInfo, PublicThirdPartyPlatformInfoArray, PublicUserInformationResponseV3, PublicUserInformationV3, PublicUserResponse, PublicUserResponseV3, PublicUsersResponse, PurchaseCondition, PurchaseConditionUpdate, PurchasedItemCount, ReadyPlayerMe, Recurring, RecurringChargeResult, RedeemHistoryInfo, RedeemHistoryPagingSlicedResult, RedeemRequest, RedeemResult, RedeemableItem, RegionDataItem, RegisteredDomain, ReleaseNoteDto, ReleaseNoteLocalizationDto, ReleaseNoteManifest, RemoveUserRoleV4Request, Request2FAEmailCode, RequestDeleteResponse, RequestHistory, Requirement, ResetPasswordRequest, ResetPasswordRequestV3, RestErrorResponse, RetrieveAcceptedAgreementResponse, RetrieveAcceptedAgreementResponseArray, RetrieveBaseGameResponse, RetrieveBaseGameResponseArray, RetrieveBasePolicyResponse, RetrieveCountryGroupResponse, RetrieveDependencyCompatibilityResponse, RetrieveDependencyLinkResponse, RetrieveDiffCacheResponse, RetrieveLatestDlcResponse, RetrieveLatestDlcResponseArray, RetrieveLocalizedPolicyVersionPublicResponse, RetrieveLocalizedPolicyVersionResponse, RetrievePolicyPublicResponse, RetrievePolicyPublicResponseArray, RetrievePolicyResponse, RetrievePolicyTypeResponse, RetrievePolicyVersionResponse, RetrieveTimeResponse, RetrieveUserAcceptedAgreementResponse, RetrieveUserEligibilitiesIndirectResponse, RetrieveUserEligibilitiesResponse, RetrieveUserEligibilitiesResponseArray, RetrieveUserInfoCacheStatusResponse, RevocationConfigInfo, RevocationConfigUpdate, RevocationHistoryInfo, RevocationHistoryPagingSlicedResult, RevocationList, RevocationRequest, RevocationResult, RevokeCurrency, RevokeEntitlement, RevokeEntry, RevokeItem, RevokeItemSummary, RevokeResult, RevokeUserV4Request, Reward$, RewardCondition, RewardCreate, RewardInfo, RewardItem, RewardPagingSlicedResult, RewardUpdate, RewardsRequest, Role, RoleAdminStatusResponse, RoleAdminStatusResponseV3, RoleCreateRequest, RoleCreateV3Request, RoleManager, RoleManagerV3, RoleManagersRequest, RoleManagersRequestV3, RoleManagersResponse, RoleManagersResponsesV3, RoleMember, RoleMemberV3, RoleMembersRequest, RoleMembersRequestV3, RoleMembersResponse, RoleMembersResponseV3, RoleNamesResponseV3, RoleResponse, RoleResponseV3, RoleResponseWithManagers, RoleResponseWithManagersAndPaginationV3, RoleResponseWithManagersV3, RoleUpdateRequest, RoleUpdateRequestV3, RoleV3, RoleV4Request, RoleV4Response, Roles$, SDKEvents, SDKOptions, SDKRequestConfig, SdkCache, SdkDevice, SearchUsersByPlatformIdResponse, SearchUsersResponse, SearchUsersResponseWithPaginationV3, Section$, SectionCreate, SectionInfo, SectionInfoArray, SectionItem, SectionPagingSlicedResult, SectionUpdate, SendRegisterVerificationCodeRequest, SendVerificationCodeRequest, SendVerificationCodeRequestV3, SendVerificationLinkRequest, ServicePluginConfigInfo, ServicePluginConfigUpdate, SimpleLatestBaseGame, SimpleUserPlatformInfoV3, Slide, SocialLinkConfig, Sso$, SsoPlatformCredentialRequest, SsoPlatformCredentialResponse, SsoSaml20$, StackableEntitlementInfo, StartMultipartUploadRequest, StaticConfigs$, SteamAchievementUpdateRequest, SteamDlcSyncRequest, SteamIapConfig, SteamIapConfigInfo, SteamIapConfigRequest, SteamSyncRequest, Store$, StoreBackupInfo, StoreCreate, StoreInfo, StoreInfoArray, StoreUpdate, StripeConfig, Subscribable, SubscribeRequest, Subscription$, SubscriptionActivityInfo, SubscriptionActivityPagingSlicedResult, SubscriptionChargeStatus, SubscriptionInfo, SubscriptionPagingSlicedResult, SubscriptionStatus, SubscriptionSummary, TWOFA_PAGE, TaxResult, Template, TemplateCompact, TemplateConfig, TemplateInfoConfig, Templates$, TestResult, ThirdPartyCredential$, ThirdPartyLoginPlatformCredentialRequest, ThirdPartyLoginPlatformCredentialResponse, TicketAcquireRequest, TicketAcquireResult, TicketBoothId, TicketDynamicInfo, TicketSaleDecrementRequest, TicketSaleIncrementRequest, TicketSaleIncrementResult, TimeLimitedBalance, TimedOwnership, TokenIntrospectResponse, TokenResponse, TokenResponseV3, TokenThirdPartyLinkStatusResponse, TokenThirdPartyResponse, TokenWithDeviceCookieResponseV3, TradeNotification, Transaction, TransactionAmountDetails, TwitchIapConfigInfo, TwitchIapConfigRequest, TwitchSyncRequest, UnlinkUserPlatformRequest, UpdateBasePolicyRequest, UpdateBasePolicyRequestV2, UpdateBasePolicyResponse, UpdateBuildMetadataRequest, UpdateCountryGroupRequest, UpdateLocalizedPolicyVersionRequest, UpdateLocalizedPolicyVersionResponse, UpdatePermissionScheduleRequest, UpdatePolicyRequest, UpdatePolicyVersionRequest, UpdatePolicyVersionResponse, UpdateUserDeletionStatusRequest, UpdateUserStatusRequest, UpgradeHeadlessAccountRequest, UpgradeHeadlessAccountRequestV4, UpgradeHeadlessAccountV3Request, UpgradeHeadlessAccountWithVerificationCodeRequest, UpgradeHeadlessAccountWithVerificationCodeRequestV3, UpgradeHeadlessAccountWithVerificationCodeRequestV4, UploadBuildManifest, UploadLocalizedPolicyVersionAttachmentResponse, UploadModeCheck, UploadPolicyVersionAttachmentRequest, UploadSummary, UrlHelper, UserAction$, UserActiveBanResponse, UserActiveBanResponseV3, UserActiveBanResponseV4, UserAgreementPolicyVersion, UserApi, UserAuthorizationApi, UserBan, UserBanRequest, UserBanResponse, UserBanResponseV3, UserBaseInfo, UserCreateFromInvitationRequestV3, UserCreateFromInvitationRequestV4, UserCreateRequest, UserCreateRequestV3, UserCreateResponse, UserCreateResponseV3, UserDataUrl, UserDeletionStatusResponse, UserDlc, UserIDsRequest, UserInfoResponse, UserInformation, UserInformationV3, UserInvitationV3, UserLastActivity, UserLinkedPlatform, UserLinkedPlatformV3, UserLinkedPlatformsResponseV3, UserLoginHistoryResponse, UserPasswordUpdateRequest, UserPasswordUpdateV3Request, UserPermissionsResponseV3, UserPermissionsResponseV4, UserPersonalData, UserPersonalDataResponse, UserPlatformInfo, UserPlatforms, UserProfile$, UserProfileAdmin, UserProfileApi, UserProfileBulkRequest, UserProfileCreate, UserProfileInfo, UserProfilePrivateCreate, UserProfilePrivateInfo, UserProfilePrivateUpdate, UserProfilePublicInfo, UserProfilePublicInfoArray, UserProfileStatusUpdate, UserProfileUpdate, UserReportRequest, UserResponse, UserResponseV3, UserResponseV4, UserRevocationListRecord, UserRolesV4Response, UserSearchByPlatformIdResult, UserSearchResult, UserUnbanCreateRequestV3, UserUpdateRequest, UserUpdateRequestV3, UserVerificationRequest, UserVerificationRequestV3, UserWithLinkedPlatformAccounts, UserWithPlatformAccounts, UserZipCode, UserZipCodeUpdate, Users$, UsersV4$, Utility$, Ux, V3ClientUpdateSecretRequest, VALIDATION_ERROR_CODE, ValidUserIdResponseV4, Validate, ValidateableInputField, Validation, ValidationConfig, ValidationDescription, ValidationDetail, ValidationDetailPublic, ValidationErrorEntity, VerificationCodeResponse, Verify2FAParam, VerifyRegistrationCode, VersionChain, VersionNode, View$, ViewCreate, ViewInfo, ViewInfoArray, ViewUpdate, Wallet$, WalletInfo, WalletPagingSlicedResult, WalletRevocationConfig, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblAchievementUpdateRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XblUserAchievements, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|