@accelbyte/sdk 0.2.0-beta.3 → 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 +5 -1
- package/README.md +4 -1
- 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.node.es.js
CHANGED
|
@@ -9541,7 +9541,8 @@ class FileUploadApi {
|
|
|
9541
9541
|
this.conf = conf;
|
|
9542
9542
|
this.namespace = namespace;
|
|
9543
9543
|
/**
|
|
9544
|
-
* Generate an upload URL. It's valid for 10 minutes
|
|
9544
|
+
* Generate an upload URL. It's valid for 10 minutes.
|
|
9545
|
+
* Returns: URL data
|
|
9545
9546
|
*/
|
|
9546
9547
|
this.generateFolderUploadFileUrl = ({ folder, queryParams }) => {
|
|
9547
9548
|
return this.newInstance().postV1NsFoldersByFolderFiles(folder, queryParams);
|
|
@@ -9662,7 +9663,8 @@ class MiscApi {
|
|
|
9662
9663
|
this.namespace = namespace;
|
|
9663
9664
|
this.cache = cache;
|
|
9664
9665
|
/**
|
|
9665
|
-
* List countries
|
|
9666
|
+
* List countries.
|
|
9667
|
+
* - _Returns_: country code list
|
|
9666
9668
|
*/
|
|
9667
9669
|
this.getCountries = (lang) => {
|
|
9668
9670
|
return this.newInstance().fetchV1NsMiscCountries({ lang });
|
|
@@ -9756,7 +9758,12 @@ class NamespaceApi {
|
|
|
9756
9758
|
this.namespace = namespace;
|
|
9757
9759
|
this.cache = cache;
|
|
9758
9760
|
/**
|
|
9759
|
-
* Get all namespaces
|
|
9761
|
+
* Get all namespaces.
|
|
9762
|
+
*
|
|
9763
|
+
* Other detail info:
|
|
9764
|
+
* - _Required permission_: login user
|
|
9765
|
+
* - _Action code_: 11303
|
|
9766
|
+
* - _Returns_: list of namespaces
|
|
9760
9767
|
*/
|
|
9761
9768
|
this.getNamespaces = (activeOnly) => {
|
|
9762
9769
|
return this.newInstance().fetchV1PublicNamespaces({ activeOnly });
|
|
@@ -10063,25 +10070,31 @@ class UserProfileApi {
|
|
|
10063
10070
|
this.namespace = namespace;
|
|
10064
10071
|
this.cache = cache;
|
|
10065
10072
|
/**
|
|
10066
|
-
* Get my profile
|
|
10073
|
+
* Get my profile
|
|
10074
|
+
*
|
|
10075
|
+
* __Client with user token can get user profile in target namespace__
|
|
10067
10076
|
*/
|
|
10068
10077
|
this.getUsersMeProfiles = () => {
|
|
10069
10078
|
return this.newInstance().fetchV1NsUsersMeProfiles();
|
|
10070
10079
|
};
|
|
10071
10080
|
/**
|
|
10072
|
-
* Create my profile
|
|
10081
|
+
* Create my profile.
|
|
10082
|
+
*
|
|
10083
|
+
* __Client with user token can create user profile in target namespace__
|
|
10073
10084
|
*/
|
|
10074
10085
|
this.createUserMeProfile = (data) => {
|
|
10075
10086
|
return this.newInstance().postV1NsUsersMeProfiles(data);
|
|
10076
10087
|
};
|
|
10077
10088
|
/**
|
|
10078
|
-
* Update my profile
|
|
10089
|
+
* Update my profile.
|
|
10090
|
+
* 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.
|
|
10079
10091
|
*/
|
|
10080
10092
|
this.updateUserMeProfile = (data) => {
|
|
10081
10093
|
return this.newInstance().putV1NsUsersMeProfiles(data);
|
|
10082
10094
|
};
|
|
10083
10095
|
/**
|
|
10084
|
-
* Update partially custom attributes tied to user id
|
|
10096
|
+
* Update partially custom attributes tied to user id.
|
|
10097
|
+
* _Returns_: Updated custom attributes
|
|
10085
10098
|
*/
|
|
10086
10099
|
this.updateUserCustomAttributes = (userId, data) => {
|
|
10087
10100
|
return this.newInstance().putV1NsUsersByUseridProfilesCustomAttributes(userId, data);
|
|
@@ -10150,7 +10163,11 @@ class CachingApi {
|
|
|
10150
10163
|
this.namespace = namespace;
|
|
10151
10164
|
}
|
|
10152
10165
|
/**
|
|
10153
|
-
* This API is used to retrieve detailed diff cache
|
|
10166
|
+
* This API is used to retrieve detailed diff cache.
|
|
10167
|
+
* The response will contains list of diff cache files along with its download url.
|
|
10168
|
+
*
|
|
10169
|
+
* Other detail info:
|
|
10170
|
+
* - _Required permission_: login user
|
|
10154
10171
|
*/
|
|
10155
10172
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
10156
10173
|
return this.newInstance().fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
@@ -10329,13 +10346,16 @@ class DlcApi {
|
|
|
10329
10346
|
this.namespace = namespace;
|
|
10330
10347
|
}
|
|
10331
10348
|
/**
|
|
10332
|
-
* Retrieve the list of DLC available on specific game. Use game's appId to query
|
|
10349
|
+
* Retrieve the list of DLC available on specific game. Use game's appId to query.
|
|
10350
|
+
*
|
|
10351
|
+
* - _Returns_: list of DLC
|
|
10333
10352
|
*/
|
|
10334
10353
|
getLatestDLCByGameAppId(appId) {
|
|
10335
10354
|
return this.newInstance().fetchNsDlcsLatestByGameAppIdByAppid(appId);
|
|
10336
10355
|
}
|
|
10337
10356
|
/**
|
|
10338
|
-
* Retrieve the list of DLC available on specific game. Use DLC's appId to query
|
|
10357
|
+
* Retrieve the list of DLC available on specific game. Use DLC's appId to query.
|
|
10358
|
+
* - _Returns_: appId of game and list of its builds by platformId
|
|
10339
10359
|
*/
|
|
10340
10360
|
getBaseGamesByDlcAppId(dlcAppId) {
|
|
10341
10361
|
return this.newInstance().fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId);
|
|
@@ -10707,20 +10727,30 @@ class DownloaderApi {
|
|
|
10707
10727
|
this.namespace = namespace;
|
|
10708
10728
|
}
|
|
10709
10729
|
/**
|
|
10710
|
-
* This API is used to get simple build manifest that contains list of current build in various platform
|
|
10730
|
+
* This API is used to get simple build manifest that contains list of current build in various platform.
|
|
10731
|
+
* Other detail info:
|
|
10732
|
+
* - _Required permission_: login user
|
|
10733
|
+
* - _Returns_: build manifest
|
|
10711
10734
|
*/
|
|
10712
10735
|
getAvailableBuilds(appId) {
|
|
10713
10736
|
return this.newInstance().fetchNsAvailablebuildsByAppid(appId);
|
|
10714
10737
|
}
|
|
10715
10738
|
/**
|
|
10716
|
-
* This API is used to get build manifest of release version of the application
|
|
10739
|
+
* This API is used to get build manifest of release version of the application.
|
|
10740
|
+
*
|
|
10741
|
+
* Other detail info:
|
|
10742
|
+
* - _Required permission_: login user
|
|
10743
|
+
* - _Returns_: build manifest
|
|
10717
10744
|
*/
|
|
10718
10745
|
getBuildManifest(appId, platformId) {
|
|
10719
10746
|
const axios = Network.create({ ...this.conf, timeout: 1800000 });
|
|
10720
10747
|
return new Downloader$(axios, this.namespace, false).fetchNsV2UpdategameByAppidByPlatformid(appId, platformId);
|
|
10721
10748
|
}
|
|
10722
10749
|
/**
|
|
10723
|
-
* This API is used to retrieve detailed diff cache
|
|
10750
|
+
* This API is used to retrieve detailed diff cache.
|
|
10751
|
+
* The response will contains list of diff cache files along with its download url.
|
|
10752
|
+
*
|
|
10753
|
+
* - _Required permission_: login user
|
|
10724
10754
|
*/
|
|
10725
10755
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
10726
10756
|
return new Caching$(Network.create(this.conf), this.namespace, false).fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
@@ -10858,16 +10888,15 @@ class EventApi {
|
|
|
10858
10888
|
this.namespace = namespace;
|
|
10859
10889
|
this.cache = cache;
|
|
10860
10890
|
/**
|
|
10861
|
-
*
|
|
10862
|
-
*
|
|
10863
|
-
*
|
|
10864
|
-
*
|
|
10865
|
-
*
|
|
10866
|
-
*
|
|
10867
|
-
*
|
|
10868
|
-
*
|
|
10869
|
-
*
|
|
10870
|
-
* <p>Requires a valid user access token</p>
|
|
10891
|
+
* Available Type:
|
|
10892
|
+
* - email
|
|
10893
|
+
* - password
|
|
10894
|
+
* - displayname
|
|
10895
|
+
* - dateofbirth
|
|
10896
|
+
* - country
|
|
10897
|
+
* - language
|
|
10898
|
+
*
|
|
10899
|
+
* Requires a valid user access token
|
|
10871
10900
|
*/
|
|
10872
10901
|
this.getAccountHistoryByUserId = ({ userId, queryParams }) => {
|
|
10873
10902
|
return this.newInstance().fetchEventV2NsUsersByUseridEdithistory(userId, queryParams);
|
|
@@ -10963,22 +10992,22 @@ class DataDeletionApi {
|
|
|
10963
10992
|
this.cache = cache;
|
|
10964
10993
|
}
|
|
10965
10994
|
/**
|
|
10966
|
-
*
|
|
10967
|
-
*
|
|
10995
|
+
* Fetch the status to check whether or not a user's account is on a deletion status
|
|
10996
|
+
* Requires valid user access token
|
|
10968
10997
|
*/
|
|
10969
10998
|
getGdprDeletionStatus(userId) {
|
|
10970
10999
|
return this.newInstance().fetchGdprNsUsersByUseridDeletionsStatus(userId);
|
|
10971
11000
|
}
|
|
10972
11001
|
/**
|
|
10973
|
-
*
|
|
10974
|
-
*
|
|
11002
|
+
* Request an account's deletion
|
|
11003
|
+
* Requires valid user access token and password
|
|
10975
11004
|
*/
|
|
10976
11005
|
requestAccountDeletion({ userId, data }) {
|
|
10977
11006
|
return this.newInstance().postGdprNsUsersByUseridDeletions(userId, data);
|
|
10978
11007
|
}
|
|
10979
11008
|
/**
|
|
10980
|
-
*
|
|
10981
|
-
*
|
|
11009
|
+
* Cancel a deletion request
|
|
11010
|
+
* Requires valid user access token
|
|
10982
11011
|
*/
|
|
10983
11012
|
cancelAccountDeletion(userId) {
|
|
10984
11013
|
return this.newInstance().deleteGdprNsUsersByUseridDeletions(userId);
|
|
@@ -11104,29 +11133,29 @@ class DataRetrievalApi {
|
|
|
11104
11133
|
this.cache = cache;
|
|
11105
11134
|
}
|
|
11106
11135
|
/**
|
|
11107
|
-
*
|
|
11108
|
-
*
|
|
11136
|
+
* Fetch personal data request list
|
|
11137
|
+
* Requires valid user access token
|
|
11109
11138
|
*/
|
|
11110
11139
|
getGdprDataRequestList({ userId, queryParams }) {
|
|
11111
11140
|
return this.newInstance().fetchGdprNsUsersByUseridRequests(userId, queryParams);
|
|
11112
11141
|
}
|
|
11113
11142
|
/**
|
|
11114
|
-
*
|
|
11115
|
-
*
|
|
11143
|
+
* Create a request for personal data download
|
|
11144
|
+
* Requires valid user access token
|
|
11116
11145
|
*/
|
|
11117
11146
|
requestGdprData({ userId, data }) {
|
|
11118
11147
|
return this.newInstance().postGdprNsUsersByUseridRequests(userId, data);
|
|
11119
11148
|
}
|
|
11120
11149
|
/**
|
|
11121
|
-
*
|
|
11122
|
-
*
|
|
11150
|
+
* Cancel the request for personal data dowwnload
|
|
11151
|
+
* Requires valid user access token
|
|
11123
11152
|
*/
|
|
11124
11153
|
cancelGdprDataRequest({ userId, requestDate }) {
|
|
11125
11154
|
return this.newInstance().deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate);
|
|
11126
11155
|
}
|
|
11127
11156
|
/**
|
|
11128
|
-
*
|
|
11129
|
-
*
|
|
11157
|
+
* Create a download URL for personal data request
|
|
11158
|
+
* Requires valid user access token
|
|
11130
11159
|
*/
|
|
11131
11160
|
requestGdprDataDownloadUrl({ userId, requestDate, data }) {
|
|
11132
11161
|
return this.newInstance().postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data);
|
|
@@ -11222,9 +11251,9 @@ class InputValidationsApi {
|
|
|
11222
11251
|
this.namespace = namespace;
|
|
11223
11252
|
this.cache = cache;
|
|
11224
11253
|
/**
|
|
11225
|
-
*
|
|
11226
|
-
*
|
|
11227
|
-
*
|
|
11254
|
+
* No role required
|
|
11255
|
+
* This method is to get list of input validation configuration.
|
|
11256
|
+
* `regex` parameter will be returned if `isCustomRegex` is true. Otherwise, it will be empty.
|
|
11228
11257
|
*
|
|
11229
11258
|
*/
|
|
11230
11259
|
this.getValidations = (languageCode, defaultOnEmpty) => {
|
|
@@ -20191,7 +20220,7 @@ class LoginErrorUnknown extends Error {
|
|
|
20191
20220
|
}
|
|
20192
20221
|
class LoginErrorUnmatchedState extends Error {
|
|
20193
20222
|
}
|
|
20194
|
-
class
|
|
20223
|
+
class UserAuthorizationApi {
|
|
20195
20224
|
/**
|
|
20196
20225
|
* @internal
|
|
20197
20226
|
*/
|
|
@@ -20201,81 +20230,81 @@ class UserAuthorization {
|
|
|
20201
20230
|
this.cache = cache;
|
|
20202
20231
|
this.options = options;
|
|
20203
20232
|
/**
|
|
20204
|
-
*
|
|
20205
|
-
*
|
|
20233
|
+
* This method supports grant type:
|
|
20234
|
+
* - Grant Type == `authorization_code`:
|
|
20206
20235
|
* It generates the user token by given the authorization
|
|
20207
20236
|
* code which generated in "/iam/v3/authenticate" API response. It should also pass
|
|
20208
20237
|
* in the redirect_uri, which should be the same as generating the
|
|
20209
20238
|
* authorization code request.
|
|
20210
|
-
*
|
|
20211
|
-
*
|
|
20239
|
+
*
|
|
20240
|
+
* - Grant Type == `password`:
|
|
20212
20241
|
* The grant type to use for authenticating a user, whether it's by email / username and password combination
|
|
20213
20242
|
* or through platform.
|
|
20214
|
-
*
|
|
20215
|
-
*
|
|
20243
|
+
*
|
|
20244
|
+
* - Grant Type == `refresh_token`:
|
|
20216
20245
|
* Used to get a new access token for a valid refresh token.
|
|
20217
|
-
*
|
|
20218
|
-
*
|
|
20246
|
+
*
|
|
20247
|
+
* - Grant Type == `client_credentials`:
|
|
20219
20248
|
* It generates a token by checking the client credentials provided through Authorization header.
|
|
20220
|
-
*
|
|
20221
|
-
*
|
|
20222
|
-
*
|
|
20223
|
-
*
|
|
20224
|
-
*
|
|
20225
|
-
*
|
|
20226
|
-
*
|
|
20227
|
-
*
|
|
20228
|
-
*
|
|
20229
|
-
*
|
|
20230
|
-
*
|
|
20231
|
-
*
|
|
20232
|
-
*
|
|
20233
|
-
*
|
|
20234
|
-
*
|
|
20235
|
-
*
|
|
20236
|
-
*
|
|
20237
|
-
*
|
|
20238
|
-
*
|
|
20239
|
-
*
|
|
20240
|
-
*
|
|
20241
|
-
*
|
|
20242
|
-
*
|
|
20243
|
-
*
|
|
20244
|
-
*
|
|
20245
|
-
*
|
|
20246
|
-
*
|
|
20247
|
-
*
|
|
20248
|
-
*
|
|
20249
|
-
*
|
|
20250
|
-
*
|
|
20251
|
-
*
|
|
20252
|
-
*
|
|
20253
|
-
*
|
|
20254
|
-
*
|
|
20255
|
-
*
|
|
20256
|
-
*
|
|
20257
|
-
*
|
|
20258
|
-
*
|
|
20259
|
-
*
|
|
20260
|
-
*
|
|
20261
|
-
*
|
|
20262
|
-
*
|
|
20263
|
-
*
|
|
20264
|
-
*
|
|
20265
|
-
*
|
|
20266
|
-
*
|
|
20267
|
-
*
|
|
20268
|
-
*
|
|
20269
|
-
*
|
|
20270
|
-
*
|
|
20271
|
-
*
|
|
20272
|
-
*
|
|
20273
|
-
*
|
|
20274
|
-
*
|
|
20275
|
-
*
|
|
20276
|
-
*
|
|
20277
|
-
*
|
|
20278
|
-
*
|
|
20249
|
+
* ##Access Token Content
|
|
20250
|
+
* Following is the access token’s content:
|
|
20251
|
+
*
|
|
20252
|
+
* -
|
|
20253
|
+
* __namespace__. It is the namespace the token was generated from.
|
|
20254
|
+
*
|
|
20255
|
+
* -
|
|
20256
|
+
* __display_name__. The display name of the sub. It is empty if the token is generated from the client credential
|
|
20257
|
+
*
|
|
20258
|
+
* -
|
|
20259
|
+
* __roles__. The sub’s roles. It is empty if the token is generated from the client credential
|
|
20260
|
+
*
|
|
20261
|
+
* -
|
|
20262
|
+
* __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
|
|
20263
|
+
*
|
|
20264
|
+
* -
|
|
20265
|
+
* __permissions__. The sub or aud’ permissions
|
|
20266
|
+
*
|
|
20267
|
+
* -
|
|
20268
|
+
* __bans__. The sub’s list of bans. It is used by the IAM client for validating the token.
|
|
20269
|
+
*
|
|
20270
|
+
* -
|
|
20271
|
+
* __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:
|
|
20272
|
+
*
|
|
20273
|
+
* - 1: Email Address Verified
|
|
20274
|
+
* - 2: Phone Number Verified
|
|
20275
|
+
* - 4: Anonymous
|
|
20276
|
+
* - 8: Suspicious Login
|
|
20277
|
+
*
|
|
20278
|
+
*
|
|
20279
|
+
* -
|
|
20280
|
+
* __aud__. The aud is the targeted resource server.
|
|
20281
|
+
*
|
|
20282
|
+
* -
|
|
20283
|
+
* __iat__. The time the token issues at. It is in Epoch time format
|
|
20284
|
+
*
|
|
20285
|
+
* -
|
|
20286
|
+
* __exp__. The time the token expires. It is in Epoch time format
|
|
20287
|
+
*
|
|
20288
|
+
* -
|
|
20289
|
+
* __client_id__. The UserID. The sub is omitted if the token is generated from client credential
|
|
20290
|
+
*
|
|
20291
|
+
* -
|
|
20292
|
+
* __scope__. The scope of the access request, expressed as a list of space-delimited, case-sensitive strings
|
|
20293
|
+
*
|
|
20294
|
+
*
|
|
20295
|
+
* ##Bans
|
|
20296
|
+
* The JWT contains user's active bans with its expiry date. List of ban types can be obtained from /bans.
|
|
20297
|
+
* ##Device Cookie Validation
|
|
20298
|
+
* __For grant type "password" only__
|
|
20299
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
20300
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies)
|
|
20301
|
+
* 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.
|
|
20302
|
+
* ##Track Login History
|
|
20303
|
+
* 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".
|
|
20304
|
+
* Align with General Data Protection Regulation in Europe, user login history will be kept within 28 days by default"
|
|
20305
|
+
* ##2FA remember device
|
|
20306
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
20307
|
+
* action code: 10703
|
|
20279
20308
|
*/
|
|
20280
20309
|
this.loginWithAuthorizationCode = async ({ code, codeVerifier }) => {
|
|
20281
20310
|
const deviceId = SdkDevice.getDeviceId();
|
|
@@ -20855,12 +20884,10 @@ class OAuthApi {
|
|
|
20855
20884
|
this.cache = cache;
|
|
20856
20885
|
this.options = options;
|
|
20857
20886
|
/**
|
|
20858
|
-
*
|
|
20859
|
-
*
|
|
20860
|
-
*
|
|
20861
|
-
*
|
|
20862
|
-
* <li>AddTokenToRevocationList to revoke token with TTL</li>
|
|
20863
|
-
* </ul>
|
|
20887
|
+
* This method is used to remove __access_token__, __refresh_token__ from cookie and revoke token from usage.
|
|
20888
|
+
* Supported methods:
|
|
20889
|
+
* - VerifyToken to verify token from header
|
|
20890
|
+
* - AddTokenToRevocationList to revoke token with TTL
|
|
20864
20891
|
*/
|
|
20865
20892
|
this.logout = () => {
|
|
20866
20893
|
const axios = Network.create({
|
|
@@ -20872,8 +20899,8 @@ class OAuthApi {
|
|
|
20872
20899
|
return new OAuth20Extension$(axios, this.namespace, this.cache).postIamV3Logout();
|
|
20873
20900
|
};
|
|
20874
20901
|
/**
|
|
20875
|
-
*
|
|
20876
|
-
*
|
|
20902
|
+
* This method revokes a token.
|
|
20903
|
+
* This method requires authorized requests header with Basic Authentication from client that establish the token.action code: 10706
|
|
20877
20904
|
*/
|
|
20878
20905
|
this.revoke = ({ token }) => {
|
|
20879
20906
|
const axios = Network.create({
|
|
@@ -20887,10 +20914,10 @@ class OAuthApi {
|
|
|
20887
20914
|
return new OAuth20$(axios, this.namespace, this.cache).postIamV3OauthRevoke({ token });
|
|
20888
20915
|
};
|
|
20889
20916
|
/**
|
|
20890
|
-
* Verify 2FA code
|
|
20891
|
-
*
|
|
20892
|
-
*
|
|
20893
|
-
*
|
|
20917
|
+
* Verify 2FA code
|
|
20918
|
+
* This method is used for verifying 2FA code.
|
|
20919
|
+
* ##2FA remember device
|
|
20920
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
20894
20921
|
*
|
|
20895
20922
|
*/
|
|
20896
20923
|
this.verify2FA = async ({ factor, code, mfaToken = null, rememberDevice }) => {
|
|
@@ -20909,27 +20936,26 @@ class OAuthApi {
|
|
|
20909
20936
|
return result.response;
|
|
20910
20937
|
};
|
|
20911
20938
|
/**
|
|
20912
|
-
*
|
|
20939
|
+
* This method get country location based on the request.
|
|
20913
20940
|
*/
|
|
20914
20941
|
this.getCurrentLocationCountry = () => {
|
|
20915
20942
|
return this.newOAuth20Extension().fetchIamV3LocationCountry();
|
|
20916
20943
|
};
|
|
20917
20944
|
/**
|
|
20918
|
-
* Retrieve User Third Party Platform Token
|
|
20919
|
-
*
|
|
20945
|
+
* Retrieve User Third Party Platform Token
|
|
20946
|
+
*
|
|
20920
20947
|
* This method used for retrieving third party platform token for user that login using third party,
|
|
20921
20948
|
* if user have not link requested platform in game namespace, will try to retrieving third party platform token from publisher namespace.
|
|
20922
20949
|
* Passing platform group name or it's member will return same access token that can be used across the platform members.
|
|
20923
|
-
*
|
|
20924
|
-
*
|
|
20925
|
-
*
|
|
20926
|
-
*
|
|
20927
|
-
*
|
|
20928
|
-
*
|
|
20929
|
-
*
|
|
20930
|
-
*
|
|
20931
|
-
*
|
|
20932
|
-
* </ul>
|
|
20950
|
+
*
|
|
20951
|
+
* The third party platform and platform group covered for this is:
|
|
20952
|
+
* - (psn) ps4web
|
|
20953
|
+
* - (psn) ps4
|
|
20954
|
+
* - (psn) ps5
|
|
20955
|
+
* - epicgames
|
|
20956
|
+
* - twitch
|
|
20957
|
+
* - awscognito
|
|
20958
|
+
*
|
|
20933
20959
|
*/
|
|
20934
20960
|
this.getThirdPartyPlatformToken = (userId, platformId) => {
|
|
20935
20961
|
return this.newInstance().fetchV3OauthUsersByUseridPlatformsByPlatformidPlatformToken(userId, platformId);
|
|
@@ -20937,12 +20963,13 @@ class OAuthApi {
|
|
|
20937
20963
|
/**
|
|
20938
20964
|
* This method is being used to authenticate a user account and perform platform link.
|
|
20939
20965
|
* It validates user's email / username and password.
|
|
20940
|
-
* If user already enable 2FA, then invoke
|
|
20966
|
+
* If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
|
|
20941
20967
|
*
|
|
20942
|
-
*
|
|
20968
|
+
* ##Device Cookie Validation
|
|
20943
20969
|
*
|
|
20944
|
-
* Device Cookie is used to protect the user account from brute force login attack,
|
|
20945
|
-
*
|
|
20970
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
20971
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies).
|
|
20972
|
+
* 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.
|
|
20946
20973
|
*
|
|
20947
20974
|
*/
|
|
20948
20975
|
this.authenticateWithLink = (data) => {
|
|
@@ -20968,7 +20995,7 @@ class OAuthApi {
|
|
|
20968
20995
|
/**
|
|
20969
20996
|
* This method is being used to generate user's token by one time link code.
|
|
20970
20997
|
* It require publisher ClientID
|
|
20971
|
-
* It required a code which can be generated from
|
|
20998
|
+
* It required a code which can be generated from __/iam/v3/link/code/request__.
|
|
20972
20999
|
*
|
|
20973
21000
|
*/
|
|
20974
21001
|
exchangeTokenByOneTimeLinkCode(data) {
|
|
@@ -21552,74 +21579,74 @@ class TwoFA {
|
|
|
21552
21579
|
this.namespace = namespace;
|
|
21553
21580
|
this.cache = cache;
|
|
21554
21581
|
/**
|
|
21555
|
-
*
|
|
21556
|
-
* Each code is a one-time code and will be deleted once used
|
|
21557
|
-
*
|
|
21582
|
+
* This method is used to get 8-digits backup codes.
|
|
21583
|
+
* Each code is a one-time code and will be deleted once used.
|
|
21584
|
+
* This method Requires valid user access token
|
|
21558
21585
|
*
|
|
21559
21586
|
*/
|
|
21560
21587
|
this.getBackupCode = () => {
|
|
21561
21588
|
return this.newInstance().fetchV4NsUsersMeMfaBackupCode();
|
|
21562
21589
|
};
|
|
21563
21590
|
/**
|
|
21564
|
-
*
|
|
21565
|
-
*
|
|
21591
|
+
* This method is used to enable 2FA backup codes.
|
|
21592
|
+
* This method Requires valid user access token
|
|
21566
21593
|
*
|
|
21567
21594
|
*/
|
|
21568
21595
|
this.enable2FABackupCodes = () => {
|
|
21569
21596
|
return this.newInstance().postV4NsUsersMeMfaBackupCodeEnable();
|
|
21570
21597
|
};
|
|
21571
21598
|
/**
|
|
21572
|
-
*
|
|
21573
|
-
*
|
|
21599
|
+
* This method is used to enable 2FA backup codes.
|
|
21600
|
+
* This method Requires valid user access token
|
|
21574
21601
|
*
|
|
21575
21602
|
*/
|
|
21576
21603
|
this.generateBackupCodes = () => {
|
|
21577
21604
|
return this.newInstance().postV4NsUsersMeMfaBackupCode();
|
|
21578
21605
|
};
|
|
21579
21606
|
/**
|
|
21580
|
-
*
|
|
21581
|
-
*
|
|
21607
|
+
* This method is used to enable 2FA backup codes.
|
|
21608
|
+
* This method Requires valid user access token
|
|
21582
21609
|
*
|
|
21583
21610
|
*/
|
|
21584
21611
|
this.disableBackupCodes = () => {
|
|
21585
21612
|
return this.newInstance().deleteV4NsUsersMeMfaBackupCodeDisable();
|
|
21586
21613
|
};
|
|
21587
21614
|
/**
|
|
21588
|
-
*
|
|
21589
|
-
*
|
|
21615
|
+
* This method is used to disable 2FA authenticator.
|
|
21616
|
+
* This method Requires valid user access token
|
|
21590
21617
|
*
|
|
21591
21618
|
*/
|
|
21592
21619
|
this.disableAuthenticator = () => {
|
|
21593
21620
|
return this.newInstance().deleteV4NsUsersMeMfaAuthenticatorDisable();
|
|
21594
21621
|
};
|
|
21595
21622
|
/**
|
|
21596
|
-
*
|
|
21597
|
-
*
|
|
21623
|
+
* This method is used to get user enabled factors.
|
|
21624
|
+
* This method Requires valid user access token
|
|
21598
21625
|
*
|
|
21599
21626
|
*/
|
|
21600
21627
|
this.getEnabledMethods = () => {
|
|
21601
21628
|
return this.newInstance().fetchV4NsUsersMeMfaFactor();
|
|
21602
21629
|
};
|
|
21603
21630
|
/**
|
|
21604
|
-
*
|
|
21605
|
-
*
|
|
21631
|
+
* This method is used to make 2FA factor default.
|
|
21632
|
+
* This method Requires valid user access token
|
|
21606
21633
|
*
|
|
21607
21634
|
*/
|
|
21608
21635
|
this.set2FAAsDefault = (factor) => {
|
|
21609
21636
|
return this.newInstance().postV4NsUsersMeMfaFactor({ factor });
|
|
21610
21637
|
};
|
|
21611
21638
|
/**
|
|
21612
|
-
*
|
|
21613
|
-
*
|
|
21639
|
+
* This method is used to enable 2FA authenticator.
|
|
21640
|
+
* This method Requires valid user access token
|
|
21614
21641
|
*
|
|
21615
21642
|
*/
|
|
21616
21643
|
this.enable2FAAuthenticator = (code) => {
|
|
21617
21644
|
return this.newInstance().postV4NsUsersMeMfaAuthenticatorEnable({ code });
|
|
21618
21645
|
};
|
|
21619
21646
|
/**
|
|
21620
|
-
*
|
|
21621
|
-
* A QR code URI is also returned so that frontend can generate QR code image
|
|
21622
|
-
*
|
|
21647
|
+
* This method is used to generate a secret key for 3rd-party authenticator app.
|
|
21648
|
+
* A QR code URI is also returned so that frontend can generate QR code image.
|
|
21649
|
+
* This method Requires valid user access token
|
|
21623
21650
|
*
|
|
21624
21651
|
*/
|
|
21625
21652
|
this.generateSecretKey = () => {
|
|
@@ -22869,55 +22896,52 @@ class UserApi {
|
|
|
22869
22896
|
};
|
|
22870
22897
|
/**
|
|
22871
22898
|
* Required valid user authorization
|
|
22872
|
-
*
|
|
22873
|
-
*
|
|
22874
|
-
*
|
|
22875
|
-
*
|
|
22876
|
-
*
|
|
22877
|
-
*
|
|
22878
|
-
*
|
|
22879
|
-
*
|
|
22880
|
-
*
|
|
22881
|
-
*
|
|
22882
|
-
*
|
|
22883
|
-
*
|
|
22884
|
-
*
|
|
22885
|
-
*
|
|
22886
|
-
*
|
|
22887
|
-
* </li>
|
|
22888
|
-
* </ol>
|
|
22889
|
-
* <p>action code: 10116</p>
|
|
22899
|
+
* The verification code is sent to email address
|
|
22900
|
+
* Available contexts for use :
|
|
22901
|
+
* -
|
|
22902
|
+
* __UserAccountRegistration__
|
|
22903
|
+
* a context type used for verifying email address in user account registration. It returns 409 if the email address already verified.
|
|
22904
|
+
* __It is the default context if the Context field is empty__
|
|
22905
|
+
*
|
|
22906
|
+
* -
|
|
22907
|
+
* __UpdateEmailAddress__
|
|
22908
|
+
* a context type used for verify user before updating email address.(Without email address verified checking)
|
|
22909
|
+
*
|
|
22910
|
+
* - __upgradeHeadlessAccount__
|
|
22911
|
+
* The context is intended to be used whenever the email address wanted to be automatically verified on upgrading a headless account.
|
|
22912
|
+
* If this context used, IAM rejects the request if the email address is already used by others by returning HTTP Status Code 409.
|
|
22913
|
+
* action code: 10116
|
|
22890
22914
|
*
|
|
22891
22915
|
*/
|
|
22892
22916
|
this.requestVerificationCode = (data) => {
|
|
22893
22917
|
return this.newInstance().postV3NsUsersMeCodeRequest(data);
|
|
22894
22918
|
};
|
|
22895
22919
|
/**
|
|
22896
|
-
*
|
|
22897
|
-
*
|
|
22898
|
-
*
|
|
22899
|
-
*
|
|
22900
|
-
*
|
|
22920
|
+
* Will consume code if validateOnly is set false
|
|
22921
|
+
* Required valid user authorization
|
|
22922
|
+
* Redeems a verification code sent to a user to verify the user's contact address is correct
|
|
22923
|
+
* Available ContactType : __email__
|
|
22924
|
+
* action code: 10107
|
|
22901
22925
|
*
|
|
22902
22926
|
*/
|
|
22903
22927
|
this.verifyCode = (data) => {
|
|
22904
22928
|
return this.newInstance().postV3NsUsersMeCodeVerify(data);
|
|
22905
22929
|
};
|
|
22906
22930
|
/**
|
|
22907
|
-
*
|
|
22931
|
+
* If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded
|
|
22908
22932
|
* Require valid user access token.
|
|
22909
|
-
*
|
|
22910
|
-
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
22911
|
-
*
|
|
22912
|
-
* In order to get a verification code for the method, please check the send verification code method
|
|
22913
|
-
*
|
|
22933
|
+
* The method upgrades a headless account by linking the headless account with the email address and the password.
|
|
22934
|
+
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
22935
|
+
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
22936
|
+
* In order to get a verification code for the method, please check the send verification code method.
|
|
22937
|
+
* 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.
|
|
22914
22938
|
* Supported user data fields :
|
|
22915
|
-
*
|
|
22916
|
-
*
|
|
22917
|
-
*
|
|
22918
|
-
*
|
|
22919
|
-
*
|
|
22920
|
-
*
|
|
22939
|
+
*
|
|
22940
|
+
* - displayName
|
|
22941
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
22942
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
22943
|
+
*
|
|
22944
|
+
* action code : 10124
|
|
22921
22945
|
*/
|
|
22922
22946
|
this.upgradeHeadlessAccount = (data) => {
|
|
22923
22947
|
return this.newInstance().postV3NsUsersMeHeadlessCodeVerify(data);
|
|
@@ -22926,54 +22950,53 @@ class UserApi {
|
|
|
22926
22950
|
* Require valid user access token.
|
|
22927
22951
|
* The method upgrades a headless account by linking the headless account with the email address, username, and password.
|
|
22928
22952
|
* By upgrading the headless account into a full account, the user could use the email address, username, and password for using Justice IAM.
|
|
22929
|
-
*
|
|
22953
|
+
*
|
|
22930
22954
|
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
22931
|
-
*
|
|
22932
|
-
* <br>
|
|
22955
|
+
*
|
|
22933
22956
|
* 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.
|
|
22934
22957
|
* Supported user data fields:
|
|
22935
|
-
*
|
|
22936
|
-
*
|
|
22937
|
-
*
|
|
22938
|
-
*
|
|
22939
|
-
*
|
|
22958
|
+
*
|
|
22959
|
+
* - displayName
|
|
22960
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
22961
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
22962
|
+
*
|
|
22940
22963
|
* action code : 10124
|
|
22941
22964
|
*/
|
|
22942
22965
|
this.upgradeHeadlessAccountV4 = (data) => {
|
|
22943
22966
|
return this.newInstance4().postV4NsUsersMeHeadlessCodeVerify(data);
|
|
22944
22967
|
};
|
|
22945
22968
|
/**
|
|
22946
|
-
*
|
|
22947
|
-
*
|
|
22969
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
22970
|
+
* action code: 10128
|
|
22948
22971
|
*/
|
|
22949
22972
|
this.getUserLinkedPlatform = (userId) => {
|
|
22950
22973
|
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
22951
22974
|
};
|
|
22952
22975
|
/**
|
|
22953
22976
|
* Required valid user authorization.
|
|
22954
|
-
*
|
|
22977
|
+
* __Prerequisite:__
|
|
22955
22978
|
* Platform client configuration need to be added to database for specific platformId. Namespace service URL need to be specified (refer to required environment variables).
|
|
22956
|
-
*
|
|
22957
|
-
*
|
|
22958
|
-
*
|
|
22959
|
-
*
|
|
22960
|
-
*
|
|
22961
|
-
*
|
|
22962
|
-
*
|
|
22963
|
-
*
|
|
22964
|
-
*
|
|
22965
|
-
*
|
|
22966
|
-
*
|
|
22967
|
-
*
|
|
22968
|
-
*
|
|
22969
|
-
*
|
|
22970
|
-
*
|
|
22971
|
-
*
|
|
22972
|
-
*
|
|
22973
|
-
*
|
|
22974
|
-
*
|
|
22975
|
-
*
|
|
22976
|
-
*
|
|
22979
|
+
* ##Supported platforms:
|
|
22980
|
+
*
|
|
22981
|
+
* - __steam__: The ticket’s value is the authentication code returned by Steam.
|
|
22982
|
+
* - __steamopenid__: Steam's user authentication method using OpenID 2.0. The ticket's value is URL generated by Steam on web authentication
|
|
22983
|
+
* - __facebook__: The ticket’s value is the authorization code returned by Facebook OAuth
|
|
22984
|
+
* - __google__: The ticket’s value is the authorization code returned by Google OAuth
|
|
22985
|
+
* - __oculus__: The ticket’s value is a string composed of Oculus's user ID and the nonce separated by a colon (:).
|
|
22986
|
+
* - __twitch__: The ticket’s value is the authorization code returned by Twitch OAuth.
|
|
22987
|
+
* - __android__: The ticket's value is the Android’s device ID
|
|
22988
|
+
* - __ios__: The ticket's value is the iOS’s device ID.
|
|
22989
|
+
* - __apple__: The ticket’s value is the authorization code returned by Apple OAuth.
|
|
22990
|
+
* - __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.
|
|
22991
|
+
* - __discord__: The ticket’s value is the authorization code returned by Discord OAuth.
|
|
22992
|
+
* - __ps4web__: The ticket’s value is the authorization code returned by PSN OAuth.
|
|
22993
|
+
* - __xblweb__: The ticket’s value is the authorization code returned by XBox Live OAuth.
|
|
22994
|
+
* - __awscognito__: The ticket’s value is the aws cognito access token (JWT).
|
|
22995
|
+
* - __epicgames__: The ticket’s value is an access-token obtained from Epicgames EOS Account Service.
|
|
22996
|
+
* - __nintendo__: The ticket’s value is the authorization code(id_token) returned by Nintendo OAuth.
|
|
22997
|
+
* - __stadia__: The ticket’s value is a JWT Token, which can be obtained after calling the Stadia SDK's function.
|
|
22998
|
+
*
|
|
22999
|
+
* action code : 10144
|
|
22977
23000
|
*/
|
|
22978
23001
|
this.linkAccountToPlatform = ({ platformId, data }) => {
|
|
22979
23002
|
return this.newInstance().postV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
@@ -22985,7 +23008,7 @@ class UserApi {
|
|
|
22985
23008
|
return this.newInstance().fetchV3NsRequestsByRequestidAsyncStatus(requestId);
|
|
22986
23009
|
};
|
|
22987
23010
|
/**
|
|
22988
|
-
* It is going to be
|
|
23011
|
+
* It is going to be __DEPRECATED__.
|
|
22989
23012
|
* Update Platform Account relation to current User Account.
|
|
22990
23013
|
* Note: Game progression data (statistics, reward, etc) associated with previous User Account will not be
|
|
22991
23014
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
@@ -22996,32 +23019,32 @@ class UserApi {
|
|
|
22996
23019
|
};
|
|
22997
23020
|
/**
|
|
22998
23021
|
* Required valid user authorization.
|
|
22999
|
-
*
|
|
23000
|
-
*
|
|
23001
|
-
*
|
|
23002
|
-
*
|
|
23003
|
-
*
|
|
23004
|
-
*
|
|
23005
|
-
*
|
|
23006
|
-
*
|
|
23007
|
-
*
|
|
23008
|
-
*
|
|
23009
|
-
*
|
|
23010
|
-
*
|
|
23011
|
-
*
|
|
23012
|
-
*
|
|
23013
|
-
*
|
|
23014
|
-
*
|
|
23015
|
-
*
|
|
23016
|
-
*
|
|
23017
|
-
*
|
|
23018
|
-
*
|
|
23019
|
-
*
|
|
23020
|
-
*
|
|
23021
|
-
*
|
|
23022
|
-
*
|
|
23023
|
-
*
|
|
23024
|
-
*
|
|
23022
|
+
* ##Supported platforms:
|
|
23023
|
+
*
|
|
23024
|
+
* - __steam__
|
|
23025
|
+
* - __steamopenid__
|
|
23026
|
+
* - __facebook__
|
|
23027
|
+
* - __google__
|
|
23028
|
+
* - __oculus__
|
|
23029
|
+
* - __twitch__
|
|
23030
|
+
* - __android__
|
|
23031
|
+
* - __ios__
|
|
23032
|
+
* - __apple__
|
|
23033
|
+
* - __device__
|
|
23034
|
+
* - __discord__
|
|
23035
|
+
* - __awscognito__
|
|
23036
|
+
* - __epicgames__
|
|
23037
|
+
* - __nintendo__
|
|
23038
|
+
* - __stadia__
|
|
23039
|
+
*
|
|
23040
|
+
* Unlink user's account from a specific platform. 'justice' platform might have multiple accounts from different namespaces linked.
|
|
23041
|
+
* _platformNamespace_ need to be specified when the platform ID is 'justice'.
|
|
23042
|
+
*
|
|
23043
|
+
* Unlink user's account from justice platform will enable password token grant and password update.
|
|
23044
|
+
*
|
|
23045
|
+
* If you want to unlink user's account in a game namespace, you have to specify _platformNamespace_ to that game namespace.
|
|
23046
|
+
*
|
|
23047
|
+
* action code : 10121
|
|
23025
23048
|
*/
|
|
23026
23049
|
this.unLinkAccountFromPlatform = ({ platformId, data }) => {
|
|
23027
23050
|
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
@@ -23061,65 +23084,63 @@ class UserApi {
|
|
|
23061
23084
|
* If it already been used, will response 409.
|
|
23062
23085
|
*
|
|
23063
23086
|
* If it is available, we will send a verification code to this email address.
|
|
23064
|
-
* This code can be verified by this <a href="#operations-Users-PublicVerifyRegistrationCode">method</a>.
|
|
23065
|
-
*
|
|
23066
23087
|
*/
|
|
23067
23088
|
requestNewUserVerificationCode(data) {
|
|
23068
23089
|
return this.newInstance().postV3NsUsersCodeRequest(data);
|
|
23069
23090
|
}
|
|
23070
23091
|
/**
|
|
23071
23092
|
* Create a new user with unique email address and username.
|
|
23072
|
-
*
|
|
23073
|
-
*
|
|
23093
|
+
*
|
|
23094
|
+
* __Required attributes:__
|
|
23074
23095
|
* - authType: possible value is EMAILPASSWD
|
|
23075
23096
|
* - emailAddress: Please refer to the rule from /v3/public/inputValidations API.
|
|
23076
23097
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
23077
23098
|
* - password: Please refer to the rule from /v3/public/inputValidations API.
|
|
23078
23099
|
* - country: ISO3166-1 alpha-2 two letter, e.g. US.
|
|
23079
23100
|
* - dateOfBirth: YYYY-MM-DD, e.g. 1990-01-01. valid values are between 1905-01-01 until current date.
|
|
23080
|
-
*
|
|
23081
|
-
*
|
|
23101
|
+
*
|
|
23102
|
+
* __Not required attributes:__
|
|
23082
23103
|
* - displayName: Please refer to the rule from /v3/public/inputValidations API.
|
|
23083
|
-
*
|
|
23084
|
-
*
|
|
23104
|
+
*
|
|
23105
|
+
* This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.
|
|
23085
23106
|
*
|
|
23086
23107
|
*/
|
|
23087
23108
|
createUser(data) {
|
|
23088
23109
|
return this.newInstance4().postV4NsUsers(data);
|
|
23089
23110
|
}
|
|
23090
23111
|
/**
|
|
23091
|
-
*
|
|
23092
|
-
*
|
|
23093
|
-
*
|
|
23112
|
+
* This method retrieves platform accounts linked to user.
|
|
23113
|
+
* It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
23114
|
+
* Required valid user authorization.
|
|
23094
23115
|
*/
|
|
23095
23116
|
getUserDistinctLinkedPlatform(userId) {
|
|
23096
23117
|
return this.newInstance().fetchV3NsUsersByUseridDistinctPlatforms(userId);
|
|
23097
23118
|
}
|
|
23098
23119
|
/**
|
|
23099
23120
|
* Required valid user authorization.
|
|
23100
|
-
*
|
|
23121
|
+
* Unlink user's account from for all third platforms.
|
|
23101
23122
|
*/
|
|
23102
23123
|
unLinkAccountFromPlatformDistinct(platformId) {
|
|
23103
23124
|
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformidAll(platformId);
|
|
23104
23125
|
}
|
|
23105
23126
|
/**
|
|
23106
23127
|
* Required valid user authorization
|
|
23107
|
-
*
|
|
23108
|
-
*
|
|
23128
|
+
* The verification link is sent to email address
|
|
23129
|
+
* It will not send request if user email is already verified
|
|
23109
23130
|
*
|
|
23110
23131
|
*/
|
|
23111
23132
|
sendVerificationLink(languageTag) {
|
|
23112
23133
|
return this.newInstance().postIamV3PublicUsersMeVerifyLinkRequest({ languageTag });
|
|
23113
23134
|
}
|
|
23114
23135
|
/**
|
|
23115
|
-
*
|
|
23116
|
-
*
|
|
23136
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
23137
|
+
* action code: 10128
|
|
23117
23138
|
*/
|
|
23118
23139
|
getLinkedAccount(userId) {
|
|
23119
23140
|
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
23120
23141
|
}
|
|
23121
23142
|
/**
|
|
23122
|
-
* Note
|
|
23143
|
+
* Note:
|
|
23123
23144
|
* 1. My account should be full account
|
|
23124
23145
|
* 2. My account not linked to request headless account's third platform.
|
|
23125
23146
|
*/
|
|
@@ -23127,7 +23148,7 @@ class UserApi {
|
|
|
23127
23148
|
return this.newInstance().fetchIamV3PublicUsersMeHeadlessLinkConflict(params);
|
|
23128
23149
|
}
|
|
23129
23150
|
/**
|
|
23130
|
-
* Note
|
|
23151
|
+
* Note:
|
|
23131
23152
|
* 1. My account should be full account
|
|
23132
23153
|
* 2. My account not linked to headless account's third platform.
|
|
23133
23154
|
*/
|
|
@@ -23291,19 +23312,22 @@ class AgreementApi {
|
|
|
23291
23312
|
this.cache = cache;
|
|
23292
23313
|
}
|
|
23293
23314
|
/**
|
|
23294
|
-
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement
|
|
23315
|
+
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement.
|
|
23316
|
+
* - _Required permission_: login user
|
|
23295
23317
|
*/
|
|
23296
23318
|
acceptLegalPolicies(acceptAgreements) {
|
|
23297
23319
|
return this.newInstance().postPublicAgreementsPolicies(acceptAgreements);
|
|
23298
23320
|
}
|
|
23299
23321
|
/**
|
|
23300
|
-
* Retrieve accepted Legal Agreements
|
|
23322
|
+
* Retrieve accepted Legal Agreements.
|
|
23323
|
+
* - _Required permission_: login user
|
|
23301
23324
|
*/
|
|
23302
23325
|
getAgreements() {
|
|
23303
23326
|
return this.newInstance().fetchPublicAgreementsPolicies();
|
|
23304
23327
|
}
|
|
23305
23328
|
/**
|
|
23306
|
-
* Change marketing preference consent
|
|
23329
|
+
* Change marketing preference consent.
|
|
23330
|
+
* - _Required permission_: login user
|
|
23307
23331
|
*/
|
|
23308
23332
|
updateMarketingPreferences(acceptAgreements) {
|
|
23309
23333
|
return this.newInstance().patchPublicAgreementsLocalizedPolicyVersionsPreferences(acceptAgreements);
|
|
@@ -23421,7 +23445,8 @@ class EligibilitiesApi {
|
|
|
23421
23445
|
this.cache = cache;
|
|
23422
23446
|
}
|
|
23423
23447
|
/**
|
|
23424
|
-
* Retrieve the active policies and its conformance status by user
|
|
23448
|
+
* 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:
|
|
23449
|
+
* - _Required permission_: login user
|
|
23425
23450
|
*/
|
|
23426
23451
|
getUserEligibilities() {
|
|
23427
23452
|
return this.newInstance().fetchPublicEligibilitiesNamespacesByNamespace();
|
|
@@ -23529,7 +23554,7 @@ class LocalizedPolicyVersionsApi {
|
|
|
23529
23554
|
this.cache = cache;
|
|
23530
23555
|
}
|
|
23531
23556
|
/**
|
|
23532
|
-
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located
|
|
23557
|
+
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located.Other detail info:
|
|
23533
23558
|
*/
|
|
23534
23559
|
fetchLocalizedPolicyVersionById(localizedPolicyVersionId) {
|
|
23535
23560
|
return this.newInstance().fetchPublicLocalizedPolicyVersionsByLocalizedpolicyversionid(localizedPolicyVersionId);
|
|
@@ -23640,13 +23665,31 @@ class PoliciesApi {
|
|
|
23640
23665
|
this.cache = cache;
|
|
23641
23666
|
}
|
|
23642
23667
|
/**
|
|
23643
|
-
* Retrieve all active latest policies based on a namespace and country
|
|
23644
|
-
|
|
23668
|
+
* Retrieve all active latest policies based on a namespace and country.Other detail info:
|
|
23669
|
+
*
|
|
23670
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
23671
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
23672
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
23673
|
+
* - _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:_
|
|
23674
|
+
*
|
|
23675
|
+
* - Document 1 (default): Region US (default), UA
|
|
23676
|
+
* - Document 2 (default): Region US (default)
|
|
23677
|
+
* - Document 3 (default): Region US (default)
|
|
23678
|
+
* - User: Region UA
|
|
23679
|
+
* - Query: alwaysIncludeDefault: true
|
|
23680
|
+
* - Response: Document 1 (UA), Document 2 (US), Document 3 (US)
|
|
23681
|
+
*/
|
|
23682
|
+
// TODO cpmmented -> docgen fix above to valid HTML
|
|
23645
23683
|
fetchPoliciesByCountry({ countryCode, queryParams }) {
|
|
23646
23684
|
return this.newInstance().fetchPublicPoliciesNamespacesByNamespaceCountriesByCountrycode(countryCode, queryParams);
|
|
23647
23685
|
}
|
|
23648
23686
|
/**
|
|
23649
|
-
* Retrieve all active latest policies based on country from all namespaces
|
|
23687
|
+
* Retrieve all active latest policies based on country from all namespaces.
|
|
23688
|
+
* Other detail info:
|
|
23689
|
+
*
|
|
23690
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
23691
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
23692
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
23650
23693
|
*/
|
|
23651
23694
|
fetchAllPoliciesByCountry({ countryCode, queryParams }) {
|
|
23652
23695
|
return this.newInstance().fetchPublicPoliciesCountriesByCountrycode(countryCode, queryParams);
|
|
@@ -23808,7 +23851,8 @@ class CurrencyApi {
|
|
|
23808
23851
|
this.namespace = namespace;
|
|
23809
23852
|
this.cache = cache;
|
|
23810
23853
|
/**
|
|
23811
|
-
* List currencies of a namespace
|
|
23854
|
+
* List currencies of a namespace.
|
|
23855
|
+
* Returns: Currency List
|
|
23812
23856
|
*/
|
|
23813
23857
|
this.getCurrencies = () => {
|
|
23814
23858
|
return this.newInstance().fetchNsCurrencies();
|
|
@@ -24429,7 +24473,7 @@ class EntitlementApi {
|
|
|
24429
24473
|
this.cache = cache;
|
|
24430
24474
|
}
|
|
24431
24475
|
/**
|
|
24432
|
-
* Get user app entitlement by appId
|
|
24476
|
+
* Get user app entitlement by appId.
|
|
24433
24477
|
*/
|
|
24434
24478
|
getEntitlementByAppId({ userId, appId }) {
|
|
24435
24479
|
return this.newInstance().fetchNsUsersByUseridEntitlementsByAppId(userId, {
|
|
@@ -24437,25 +24481,27 @@ class EntitlementApi {
|
|
|
24437
24481
|
});
|
|
24438
24482
|
}
|
|
24439
24483
|
/**
|
|
24440
|
-
* Query user entitlements for a specific user
|
|
24484
|
+
* Query user entitlements for a specific user.
|
|
24485
|
+
* Returns: entitlement list
|
|
24441
24486
|
*/
|
|
24442
24487
|
getEntitlements({ userId, queryParams }) {
|
|
24443
24488
|
return this.newInstance().fetchNsUsersByUseridEntitlements(userId, queryParams);
|
|
24444
24489
|
}
|
|
24445
24490
|
/**
|
|
24446
|
-
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
24491
|
+
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
24447
24492
|
*/
|
|
24448
24493
|
getEntitlementOwnerShip({ userId, queryParams }) {
|
|
24449
24494
|
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams);
|
|
24450
24495
|
}
|
|
24451
24496
|
/**
|
|
24452
|
-
* Get user entitlement ownership by itemIds
|
|
24497
|
+
* Get user entitlement ownership by itemIds.
|
|
24453
24498
|
*/
|
|
24454
24499
|
getEntitlementByItemIds({ userId, queryParams }) {
|
|
24455
24500
|
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams);
|
|
24456
24501
|
}
|
|
24457
24502
|
/**
|
|
24458
|
-
* 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
|
|
24503
|
+
* 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
|
|
24504
|
+
* Returns: consumed entitlement
|
|
24459
24505
|
*/
|
|
24460
24506
|
claimEntitlement({ userId, entitlementId, data }) {
|
|
24461
24507
|
return this.newInstance().putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data);
|
|
@@ -24558,7 +24604,8 @@ class FulfillmentApi {
|
|
|
24558
24604
|
this.namespace = namespace;
|
|
24559
24605
|
this.cache = cache;
|
|
24560
24606
|
/**
|
|
24561
|
-
* Redeem campaign code
|
|
24607
|
+
* Redeem campaign code.
|
|
24608
|
+
* Returns: fulfillment result
|
|
24562
24609
|
*/
|
|
24563
24610
|
this.redeemCode = ({ userId, data }) => {
|
|
24564
24611
|
return this.newInstance().postNsUsersByUseridFulfillmentCode(userId, data);
|
|
@@ -25113,13 +25160,15 @@ class ItemApi {
|
|
|
25113
25160
|
this.cache = cache;
|
|
25114
25161
|
}
|
|
25115
25162
|
/**
|
|
25116
|
-
* This API is used to get item by appId
|
|
25163
|
+
* This API is used to get item by appId.
|
|
25164
|
+
* Returns: the item with that appId
|
|
25117
25165
|
*/
|
|
25118
25166
|
getItemByAppId({ ...queryParams }) {
|
|
25119
25167
|
return this.newInstance().fetchNsItemsByAppId(queryParams);
|
|
25120
25168
|
}
|
|
25121
25169
|
/**
|
|
25122
|
-
* Get item dynamic data for a published item
|
|
25170
|
+
* Get item dynamic data for a published item.
|
|
25171
|
+
* Returns: item dynamic data
|
|
25123
25172
|
*/
|
|
25124
25173
|
getItemByItemIdDynamic(itemId) {
|
|
25125
25174
|
return this.newInstance().fetchNsItemsByItemidDynamic(itemId);
|
|
@@ -25128,7 +25177,8 @@ class ItemApi {
|
|
|
25128
25177
|
return this.newInstance().fetchNsItemsByCriteria(queryParams);
|
|
25129
25178
|
}
|
|
25130
25179
|
/**
|
|
25131
|
-
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return
|
|
25180
|
+
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return.
|
|
25181
|
+
* Returns: the list of items
|
|
25132
25182
|
*/
|
|
25133
25183
|
getItemsByItemIds({ queryParams }) {
|
|
25134
25184
|
return this.newInstance().fetchNsItemsLocaleByIds(queryParams);
|
|
@@ -25153,13 +25203,15 @@ class ItemApi {
|
|
|
25153
25203
|
return result;
|
|
25154
25204
|
}
|
|
25155
25205
|
/**
|
|
25156
|
-
* This API is used to get an item in locale. If item not exist in specific region, default region item will return
|
|
25206
|
+
* This API is used to get an item in locale. If item not exist in specific region, default region item will return.
|
|
25207
|
+
* Returns: item data
|
|
25157
25208
|
*/
|
|
25158
25209
|
getItemsByItemIdLocale({ itemId, queryParams }) {
|
|
25159
25210
|
return this.newInstance().fetchNsItemsByItemidLocale(itemId, queryParams);
|
|
25160
25211
|
}
|
|
25161
25212
|
/**
|
|
25162
|
-
* This API is used to get an app in locale. If app not exist in specific region, default region app will return
|
|
25213
|
+
* This API is used to get an app in locale. If app not exist in specific region, default region app will return.
|
|
25214
|
+
* Returns: app data
|
|
25163
25215
|
*/
|
|
25164
25216
|
getAppInfoByItemId({ itemId, queryParams }) {
|
|
25165
25217
|
return this.newInstance().fetchNsItemsByItemidAppLocale(itemId, queryParams);
|
|
@@ -25409,25 +25461,30 @@ class OrderApi {
|
|
|
25409
25461
|
this.namespace = namespace;
|
|
25410
25462
|
this.cache = cache;
|
|
25411
25463
|
/**
|
|
25412
|
-
* Query user orders
|
|
25464
|
+
* Query user orders.
|
|
25465
|
+
* Returns: get order
|
|
25413
25466
|
*/
|
|
25414
25467
|
this.getOrderList = ({ userId, queryParams }) => {
|
|
25415
25468
|
return this.newInstance().fetchNsUsersByUseridOrders(userId, queryParams);
|
|
25416
25469
|
};
|
|
25417
25470
|
/**
|
|
25418
|
-
* Get user order
|
|
25471
|
+
* Get user order.
|
|
25472
|
+
* Returns: get order
|
|
25419
25473
|
*/
|
|
25420
25474
|
this.getOrderByOrderNo = ({ userId, orderNo }) => {
|
|
25421
25475
|
return this.newInstance().fetchNsUsersByUseridOrdersByOrderno(userId, orderNo);
|
|
25422
25476
|
};
|
|
25423
25477
|
/**
|
|
25424
|
-
* Cancel user order
|
|
25478
|
+
* Cancel user order.
|
|
25479
|
+
* Returns: cancelled order
|
|
25425
25480
|
*/
|
|
25426
25481
|
this.cancelOrder = ({ userId, orderNo }) => {
|
|
25427
25482
|
return this.newInstance().putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo);
|
|
25428
25483
|
};
|
|
25429
25484
|
/**
|
|
25430
|
-
* Create an order. The result contains the checkout link and payment token.
|
|
25485
|
+
* Create an order. The result contains the checkout link and payment token.
|
|
25486
|
+
* User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.
|
|
25487
|
+
* Returns: created order
|
|
25431
25488
|
*/
|
|
25432
25489
|
this.createOrder = ({ userId, data }) => {
|
|
25433
25490
|
return this.newInstance().postNsUsersByUseridOrders(userId, data);
|
|
@@ -25762,31 +25819,37 @@ class PaymentApi {
|
|
|
25762
25819
|
this.namespace = namespace;
|
|
25763
25820
|
this.cache = cache;
|
|
25764
25821
|
/**
|
|
25765
|
-
* Get payment accounts
|
|
25822
|
+
* Get payment accounts.\
|
|
25823
|
+
* Returns: Payment account list
|
|
25766
25824
|
*/
|
|
25767
25825
|
this.getPaymentAccounts = (userId) => {
|
|
25768
25826
|
return this.newInstance().fetchNsUsersByUseridPaymentAccounts(userId);
|
|
25769
25827
|
};
|
|
25770
25828
|
/**
|
|
25771
|
-
* Delete payment account
|
|
25829
|
+
* Delete payment account.
|
|
25830
|
+
*
|
|
25831
|
+
* Other detail info:
|
|
25772
25832
|
*/
|
|
25773
25833
|
this.deletePaymentAccount = ({ userId, type, id }) => {
|
|
25774
25834
|
return this.newInstance().deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id);
|
|
25775
25835
|
};
|
|
25776
25836
|
/**
|
|
25777
|
-
* Get payment order info
|
|
25837
|
+
* Get payment order info.
|
|
25838
|
+
* Returns: Payment order details
|
|
25778
25839
|
*/
|
|
25779
25840
|
this.getPaymentInfo = (paymentOrderNo) => {
|
|
25780
25841
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo);
|
|
25781
25842
|
};
|
|
25782
25843
|
/**
|
|
25783
|
-
* Do payment(For now, this only support checkout.com)
|
|
25844
|
+
* Do payment(For now, this only support checkout.com).
|
|
25845
|
+
* Returns: Payment process result
|
|
25784
25846
|
*/
|
|
25785
25847
|
this.processPaymentOrder = (paymentOrderNo, data, queryParams) => {
|
|
25786
25848
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams);
|
|
25787
25849
|
};
|
|
25788
25850
|
/**
|
|
25789
|
-
* Get payment provider public config, at current only Strip provide public config
|
|
25851
|
+
* Get payment provider public config, at current only Strip provide public config.
|
|
25852
|
+
* Returns: Public config
|
|
25790
25853
|
*/
|
|
25791
25854
|
this.getPaymentProviderPublicConfig = (paymentProvider, region, sandbox) => {
|
|
25792
25855
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentPublicconfig({
|
|
@@ -25796,19 +25859,22 @@ class PaymentApi {
|
|
|
25796
25859
|
});
|
|
25797
25860
|
};
|
|
25798
25861
|
/**
|
|
25799
|
-
* Check payment order paid status
|
|
25862
|
+
* Check payment order paid status.
|
|
25863
|
+
* Returns: Payment order paid result
|
|
25800
25864
|
*/
|
|
25801
25865
|
this.getPaymentOrderStatus = (paymentOrderNo) => {
|
|
25802
25866
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo);
|
|
25803
25867
|
};
|
|
25804
25868
|
/**
|
|
25805
|
-
* Get payment methods
|
|
25869
|
+
* Get payment methods.
|
|
25870
|
+
* Returns: Payment method list
|
|
25806
25871
|
*/
|
|
25807
25872
|
this.getPaymentMethods = (paymentOrderNo) => {
|
|
25808
25873
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentMethods({ paymentOrderNo });
|
|
25809
25874
|
};
|
|
25810
25875
|
/**
|
|
25811
|
-
* Check and get a payment order's should pay tax
|
|
25876
|
+
* Check and get a payment order's should pay tax.
|
|
25877
|
+
* Returns: tax result
|
|
25812
25878
|
*/
|
|
25813
25879
|
this.getPaymentTax = (paymentProvider, paymentOrderNo, zipCode) => {
|
|
25814
25880
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentTax({
|
|
@@ -25818,7 +25884,8 @@ class PaymentApi {
|
|
|
25818
25884
|
});
|
|
25819
25885
|
};
|
|
25820
25886
|
/**
|
|
25821
|
-
* Get payment url
|
|
25887
|
+
* Get payment url.
|
|
25888
|
+
* Returns: Get payment link
|
|
25822
25889
|
*/
|
|
25823
25890
|
this.createPaymentUrl = (data) => {
|
|
25824
25891
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentLink(data);
|
|
@@ -26076,37 +26143,51 @@ class SubscriptionApi {
|
|
|
26076
26143
|
this.cache = cache;
|
|
26077
26144
|
}
|
|
26078
26145
|
/**
|
|
26079
|
-
* Query user subscriptions
|
|
26146
|
+
* Query user subscriptions.
|
|
26147
|
+
* Returns: paginated subscription
|
|
26080
26148
|
*/
|
|
26081
26149
|
getUserSubscriptions({ userId, queryParams }) {
|
|
26082
26150
|
return this.newInstance().fetchNsUsersByUseridSubscriptions(userId, queryParams);
|
|
26083
26151
|
}
|
|
26084
26152
|
/**
|
|
26085
|
-
* Get user subscription
|
|
26153
|
+
* Get user subscription.
|
|
26154
|
+
* Returns: subscription
|
|
26086
26155
|
*/
|
|
26087
26156
|
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }) {
|
|
26088
26157
|
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId);
|
|
26089
26158
|
}
|
|
26090
26159
|
/**
|
|
26091
|
-
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true
|
|
26160
|
+
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true.
|
|
26161
|
+
* __ACTIVE USER subscription can't do subscribe again.__
|
|
26162
|
+
* __The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.__
|
|
26163
|
+
* User with permission SANDBOX will create sandbox subscription that not real paid.
|
|
26164
|
+
*
|
|
26165
|
+
* Returns: created subscription
|
|
26092
26166
|
*/
|
|
26093
26167
|
createSubscription({ userId, data }) {
|
|
26094
26168
|
return this.newInstance().postNsUsersByUseridSubscriptions(userId, data);
|
|
26095
26169
|
}
|
|
26096
26170
|
/**
|
|
26097
|
-
* Get user subscription billing histories
|
|
26171
|
+
* Get user subscription billing histories.
|
|
26172
|
+
* Returns: paginated subscription history
|
|
26098
26173
|
*/
|
|
26099
26174
|
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }) {
|
|
26100
26175
|
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams);
|
|
26101
26176
|
}
|
|
26102
26177
|
/**
|
|
26103
|
-
* Request to change a subscription billing account, this will guide user to payment station.
|
|
26178
|
+
* Request to change a subscription billing account, this will guide user to payment station.
|
|
26179
|
+
* The actual change will happen at the 0 payment notification successfully handled.
|
|
26180
|
+
* Only ACTIVE USER subscription with real currency billing account can be changed.
|
|
26181
|
+
* Returns: updated subscription
|
|
26104
26182
|
*/
|
|
26105
26183
|
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }) {
|
|
26106
26184
|
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId);
|
|
26107
26185
|
}
|
|
26108
26186
|
/**
|
|
26109
|
-
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
26187
|
+
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
26188
|
+
* __Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.__
|
|
26189
|
+
* Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.
|
|
26190
|
+
* Returns: cancelled subscription
|
|
26110
26191
|
*/
|
|
26111
26192
|
cancelUserSubscription({ userId, subscriptionId, data }) {
|
|
26112
26193
|
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data);
|
|
@@ -26276,13 +26357,19 @@ class WalletApi {
|
|
|
26276
26357
|
this.namespace = namespace;
|
|
26277
26358
|
this.cache = cache;
|
|
26278
26359
|
/**
|
|
26279
|
-
* get my wallet by currency code and namespace
|
|
26360
|
+
* get my wallet by currency code and namespace.
|
|
26361
|
+
*
|
|
26362
|
+
* Returns: wallet info
|
|
26363
|
+
* Path's namespace:
|
|
26364
|
+
* - can be filled with __publisher namespace__ in order to get __publisher user wallet__
|
|
26365
|
+
* - can be filled with __game namespace__ in order to get __game user wallet__
|
|
26280
26366
|
*/
|
|
26281
26367
|
this.getUserMeWallet = (currencyCode) => {
|
|
26282
26368
|
return this.newInstance().fetchNsUsersMeWalletsByCurrencycode(currencyCode);
|
|
26283
26369
|
};
|
|
26284
26370
|
/**
|
|
26285
|
-
*
|
|
26371
|
+
* Get a wallet by currency code.
|
|
26372
|
+
* Returns: wallet info
|
|
26286
26373
|
*/
|
|
26287
26374
|
this.getWalletByUserId = (userId, currencyCode) => {
|
|
26288
26375
|
return this.newInstance().fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode);
|
|
@@ -26318,7 +26405,7 @@ class WalletApi {
|
|
|
26318
26405
|
class ApiFactory {
|
|
26319
26406
|
static userAuthorization(config, options, refreshToken, namespace, overrides) {
|
|
26320
26407
|
const conf = ApiFactory.mergedConfigs(config, overrides);
|
|
26321
|
-
return new
|
|
26408
|
+
return new UserAuthorizationApi(conf, namespace, false, {
|
|
26322
26409
|
clientId: options.clientId,
|
|
26323
26410
|
redirectURI: options.redirectURI,
|
|
26324
26411
|
baseURL: options.baseURL,
|
|
@@ -39764,5 +39851,5 @@ CodeGenUtil.getFormUrlEncodedData = (data) => {
|
|
|
39764
39851
|
return formPayload;
|
|
39765
39852
|
};
|
|
39766
39853
|
|
|
39767
|
-
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, 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, 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, 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, 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, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination$1 as Pagination, PaginationV3, Paging$1 as 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, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, 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, 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$, 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, 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, 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 };
|
|
39854
|
+
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ARCH, Accelbyte, 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, 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, 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, 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, Ownership, OwnershipToken, PLATFORM, PageConfig, PagedRetrieveUserAcceptedAgreementResponse, Pagination$1 as Pagination, PaginationV3, Paging$1 as 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, PlatformReward, PlatformRewardCurrency, PlatformRewardItem, PlatformSubscribeRequest, PlatformUserIdRequest, PlatformUserInformation, PlatformUserInformationV3, PlatformWallet, PlatformWalletConfigInfo, PlatformWalletConfigUpdate, PlayStationDlcSyncMultiServiceLabelsRequest, PlayStationDlcSyncRequest, PlayStationIapConfigInfo, PlayStationMultiServiceLabelsReconcileRequest, PlayStationReconcileRequest, PlayStationReconcileResult, PlayStationReconcileResultArray, PlayerPortalConfigData, PlayerPortalFeatureFlagsConfig, PlayerPortalFooterConfig, PlayerPortalFooterConfigLink, PlayerPortalFooterIDs, 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, 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$, 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, 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, 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 };
|
|
39768
39855
|
//# sourceMappingURL=index.node.es.js.map
|