@accelbyte/sdk 0.2.0-beta.2 → 0.2.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +5 -2
- package/dist/index.browser.es.js +400 -313
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +398 -312
- package/dist/index.node.es.js +400 -313
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +400 -313
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/next/yarn.lock +4 -4
- package/examples/node/package.json +1 -1
- package/examples/node/yarn.lock +4 -4
- package/examples/vite/package.json +1 -1
- package/examples/vite/yarn.lock +4 -4
- package/package.json +1 -1
package/dist/index.browser.es.js
CHANGED
|
@@ -5980,7 +5980,8 @@ class FileUploadApi {
|
|
|
5980
5980
|
this.conf = conf;
|
|
5981
5981
|
this.namespace = namespace;
|
|
5982
5982
|
/**
|
|
5983
|
-
* Generate an upload URL. It's valid for 10 minutes
|
|
5983
|
+
* Generate an upload URL. It's valid for 10 minutes.
|
|
5984
|
+
* Returns: URL data
|
|
5984
5985
|
*/
|
|
5985
5986
|
this.generateFolderUploadFileUrl = ({ folder, queryParams }) => {
|
|
5986
5987
|
return this.newInstance().postV1NsFoldersByFolderFiles(folder, queryParams);
|
|
@@ -6101,7 +6102,8 @@ class MiscApi {
|
|
|
6101
6102
|
this.namespace = namespace;
|
|
6102
6103
|
this.cache = cache;
|
|
6103
6104
|
/**
|
|
6104
|
-
* List countries
|
|
6105
|
+
* List countries.
|
|
6106
|
+
* - _Returns_: country code list
|
|
6105
6107
|
*/
|
|
6106
6108
|
this.getCountries = (lang) => {
|
|
6107
6109
|
return this.newInstance().fetchV1NsMiscCountries({ lang });
|
|
@@ -6195,7 +6197,12 @@ class NamespaceApi {
|
|
|
6195
6197
|
this.namespace = namespace;
|
|
6196
6198
|
this.cache = cache;
|
|
6197
6199
|
/**
|
|
6198
|
-
* Get all namespaces
|
|
6200
|
+
* Get all namespaces.
|
|
6201
|
+
*
|
|
6202
|
+
* Other detail info:
|
|
6203
|
+
* - _Required permission_: login user
|
|
6204
|
+
* - _Action code_: 11303
|
|
6205
|
+
* - _Returns_: list of namespaces
|
|
6199
6206
|
*/
|
|
6200
6207
|
this.getNamespaces = (activeOnly) => {
|
|
6201
6208
|
return this.newInstance().fetchV1PublicNamespaces({ activeOnly });
|
|
@@ -6502,25 +6509,31 @@ class UserProfileApi {
|
|
|
6502
6509
|
this.namespace = namespace;
|
|
6503
6510
|
this.cache = cache;
|
|
6504
6511
|
/**
|
|
6505
|
-
* Get my profile
|
|
6512
|
+
* Get my profile
|
|
6513
|
+
*
|
|
6514
|
+
* __Client with user token can get user profile in target namespace__
|
|
6506
6515
|
*/
|
|
6507
6516
|
this.getUsersMeProfiles = () => {
|
|
6508
6517
|
return this.newInstance().fetchV1NsUsersMeProfiles();
|
|
6509
6518
|
};
|
|
6510
6519
|
/**
|
|
6511
|
-
* Create my profile
|
|
6520
|
+
* Create my profile.
|
|
6521
|
+
*
|
|
6522
|
+
* __Client with user token can create user profile in target namespace__
|
|
6512
6523
|
*/
|
|
6513
6524
|
this.createUserMeProfile = (data) => {
|
|
6514
6525
|
return this.newInstance().postV1NsUsersMeProfiles(data);
|
|
6515
6526
|
};
|
|
6516
6527
|
/**
|
|
6517
|
-
* Update my profile
|
|
6528
|
+
* Update my profile.
|
|
6529
|
+
* 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.
|
|
6518
6530
|
*/
|
|
6519
6531
|
this.updateUserMeProfile = (data) => {
|
|
6520
6532
|
return this.newInstance().putV1NsUsersMeProfiles(data);
|
|
6521
6533
|
};
|
|
6522
6534
|
/**
|
|
6523
|
-
* Update partially custom attributes tied to user id
|
|
6535
|
+
* Update partially custom attributes tied to user id.
|
|
6536
|
+
* _Returns_: Updated custom attributes
|
|
6524
6537
|
*/
|
|
6525
6538
|
this.updateUserCustomAttributes = (userId, data) => {
|
|
6526
6539
|
return this.newInstance().putV1NsUsersByUseridProfilesCustomAttributes(userId, data);
|
|
@@ -6589,7 +6602,11 @@ class CachingApi {
|
|
|
6589
6602
|
this.namespace = namespace;
|
|
6590
6603
|
}
|
|
6591
6604
|
/**
|
|
6592
|
-
* This API is used to retrieve detailed diff cache
|
|
6605
|
+
* This API is used to retrieve detailed diff cache.
|
|
6606
|
+
* The response will contains list of diff cache files along with its download url.
|
|
6607
|
+
*
|
|
6608
|
+
* Other detail info:
|
|
6609
|
+
* - _Required permission_: login user
|
|
6593
6610
|
*/
|
|
6594
6611
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
6595
6612
|
return this.newInstance().fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
@@ -6768,13 +6785,16 @@ class DlcApi {
|
|
|
6768
6785
|
this.namespace = namespace;
|
|
6769
6786
|
}
|
|
6770
6787
|
/**
|
|
6771
|
-
* Retrieve the list of DLC available on specific game. Use game's appId to query
|
|
6788
|
+
* Retrieve the list of DLC available on specific game. Use game's appId to query.
|
|
6789
|
+
*
|
|
6790
|
+
* - _Returns_: list of DLC
|
|
6772
6791
|
*/
|
|
6773
6792
|
getLatestDLCByGameAppId(appId) {
|
|
6774
6793
|
return this.newInstance().fetchNsDlcsLatestByGameAppIdByAppid(appId);
|
|
6775
6794
|
}
|
|
6776
6795
|
/**
|
|
6777
|
-
* Retrieve the list of DLC available on specific game. Use DLC's appId to query
|
|
6796
|
+
* Retrieve the list of DLC available on specific game. Use DLC's appId to query.
|
|
6797
|
+
* - _Returns_: appId of game and list of its builds by platformId
|
|
6778
6798
|
*/
|
|
6779
6799
|
getBaseGamesByDlcAppId(dlcAppId) {
|
|
6780
6800
|
return this.newInstance().fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId);
|
|
@@ -7146,20 +7166,30 @@ class DownloaderApi {
|
|
|
7146
7166
|
this.namespace = namespace;
|
|
7147
7167
|
}
|
|
7148
7168
|
/**
|
|
7149
|
-
* This API is used to get simple build manifest that contains list of current build in various platform
|
|
7169
|
+
* This API is used to get simple build manifest that contains list of current build in various platform.
|
|
7170
|
+
* Other detail info:
|
|
7171
|
+
* - _Required permission_: login user
|
|
7172
|
+
* - _Returns_: build manifest
|
|
7150
7173
|
*/
|
|
7151
7174
|
getAvailableBuilds(appId) {
|
|
7152
7175
|
return this.newInstance().fetchNsAvailablebuildsByAppid(appId);
|
|
7153
7176
|
}
|
|
7154
7177
|
/**
|
|
7155
|
-
* This API is used to get build manifest of release version of the application
|
|
7178
|
+
* This API is used to get build manifest of release version of the application.
|
|
7179
|
+
*
|
|
7180
|
+
* Other detail info:
|
|
7181
|
+
* - _Required permission_: login user
|
|
7182
|
+
* - _Returns_: build manifest
|
|
7156
7183
|
*/
|
|
7157
7184
|
getBuildManifest(appId, platformId) {
|
|
7158
7185
|
const axios = Network.create({ ...this.conf, timeout: 1800000 });
|
|
7159
7186
|
return new Downloader$(axios, this.namespace, false).fetchNsV2UpdategameByAppidByPlatformid(appId, platformId);
|
|
7160
7187
|
}
|
|
7161
7188
|
/**
|
|
7162
|
-
* This API is used to retrieve detailed diff cache
|
|
7189
|
+
* This API is used to retrieve detailed diff cache.
|
|
7190
|
+
* The response will contains list of diff cache files along with its download url.
|
|
7191
|
+
*
|
|
7192
|
+
* - _Required permission_: login user
|
|
7163
7193
|
*/
|
|
7164
7194
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
7165
7195
|
return new Caching$(Network.create(this.conf), this.namespace, false).fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
@@ -7297,16 +7327,15 @@ class EventApi {
|
|
|
7297
7327
|
this.namespace = namespace;
|
|
7298
7328
|
this.cache = cache;
|
|
7299
7329
|
/**
|
|
7300
|
-
*
|
|
7301
|
-
*
|
|
7302
|
-
*
|
|
7303
|
-
*
|
|
7304
|
-
*
|
|
7305
|
-
*
|
|
7306
|
-
*
|
|
7307
|
-
*
|
|
7308
|
-
*
|
|
7309
|
-
* <p>Requires a valid user access token</p>
|
|
7330
|
+
* Available Type:
|
|
7331
|
+
* - email
|
|
7332
|
+
* - password
|
|
7333
|
+
* - displayname
|
|
7334
|
+
* - dateofbirth
|
|
7335
|
+
* - country
|
|
7336
|
+
* - language
|
|
7337
|
+
*
|
|
7338
|
+
* Requires a valid user access token
|
|
7310
7339
|
*/
|
|
7311
7340
|
this.getAccountHistoryByUserId = ({ userId, queryParams }) => {
|
|
7312
7341
|
return this.newInstance().fetchEventV2NsUsersByUseridEdithistory(userId, queryParams);
|
|
@@ -7402,22 +7431,22 @@ class DataDeletionApi {
|
|
|
7402
7431
|
this.cache = cache;
|
|
7403
7432
|
}
|
|
7404
7433
|
/**
|
|
7405
|
-
*
|
|
7406
|
-
*
|
|
7434
|
+
* Fetch the status to check whether or not a user's account is on a deletion status
|
|
7435
|
+
* Requires valid user access token
|
|
7407
7436
|
*/
|
|
7408
7437
|
getGdprDeletionStatus(userId) {
|
|
7409
7438
|
return this.newInstance().fetchGdprNsUsersByUseridDeletionsStatus(userId);
|
|
7410
7439
|
}
|
|
7411
7440
|
/**
|
|
7412
|
-
*
|
|
7413
|
-
*
|
|
7441
|
+
* Request an account's deletion
|
|
7442
|
+
* Requires valid user access token and password
|
|
7414
7443
|
*/
|
|
7415
7444
|
requestAccountDeletion({ userId, data }) {
|
|
7416
7445
|
return this.newInstance().postGdprNsUsersByUseridDeletions(userId, data);
|
|
7417
7446
|
}
|
|
7418
7447
|
/**
|
|
7419
|
-
*
|
|
7420
|
-
*
|
|
7448
|
+
* Cancel a deletion request
|
|
7449
|
+
* Requires valid user access token
|
|
7421
7450
|
*/
|
|
7422
7451
|
cancelAccountDeletion(userId) {
|
|
7423
7452
|
return this.newInstance().deleteGdprNsUsersByUseridDeletions(userId);
|
|
@@ -7543,29 +7572,29 @@ class DataRetrievalApi {
|
|
|
7543
7572
|
this.cache = cache;
|
|
7544
7573
|
}
|
|
7545
7574
|
/**
|
|
7546
|
-
*
|
|
7547
|
-
*
|
|
7575
|
+
* Fetch personal data request list
|
|
7576
|
+
* Requires valid user access token
|
|
7548
7577
|
*/
|
|
7549
7578
|
getGdprDataRequestList({ userId, queryParams }) {
|
|
7550
7579
|
return this.newInstance().fetchGdprNsUsersByUseridRequests(userId, queryParams);
|
|
7551
7580
|
}
|
|
7552
7581
|
/**
|
|
7553
|
-
*
|
|
7554
|
-
*
|
|
7582
|
+
* Create a request for personal data download
|
|
7583
|
+
* Requires valid user access token
|
|
7555
7584
|
*/
|
|
7556
7585
|
requestGdprData({ userId, data }) {
|
|
7557
7586
|
return this.newInstance().postGdprNsUsersByUseridRequests(userId, data);
|
|
7558
7587
|
}
|
|
7559
7588
|
/**
|
|
7560
|
-
*
|
|
7561
|
-
*
|
|
7589
|
+
* Cancel the request for personal data dowwnload
|
|
7590
|
+
* Requires valid user access token
|
|
7562
7591
|
*/
|
|
7563
7592
|
cancelGdprDataRequest({ userId, requestDate }) {
|
|
7564
7593
|
return this.newInstance().deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate);
|
|
7565
7594
|
}
|
|
7566
7595
|
/**
|
|
7567
|
-
*
|
|
7568
|
-
*
|
|
7596
|
+
* Create a download URL for personal data request
|
|
7597
|
+
* Requires valid user access token
|
|
7569
7598
|
*/
|
|
7570
7599
|
requestGdprDataDownloadUrl({ userId, requestDate, data }) {
|
|
7571
7600
|
return this.newInstance().postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data);
|
|
@@ -7661,9 +7690,9 @@ class InputValidationsApi {
|
|
|
7661
7690
|
this.namespace = namespace;
|
|
7662
7691
|
this.cache = cache;
|
|
7663
7692
|
/**
|
|
7664
|
-
*
|
|
7665
|
-
*
|
|
7666
|
-
*
|
|
7693
|
+
* No role required
|
|
7694
|
+
* This method is to get list of input validation configuration.
|
|
7695
|
+
* `regex` parameter will be returned if `isCustomRegex` is true. Otherwise, it will be empty.
|
|
7667
7696
|
*
|
|
7668
7697
|
*/
|
|
7669
7698
|
this.getValidations = (languageCode, defaultOnEmpty) => {
|
|
@@ -16639,7 +16668,7 @@ class LoginErrorUnknown extends Error {
|
|
|
16639
16668
|
}
|
|
16640
16669
|
class LoginErrorUnmatchedState extends Error {
|
|
16641
16670
|
}
|
|
16642
|
-
class
|
|
16671
|
+
class UserAuthorizationApi {
|
|
16643
16672
|
/**
|
|
16644
16673
|
* @internal
|
|
16645
16674
|
*/
|
|
@@ -16649,81 +16678,81 @@ class UserAuthorization {
|
|
|
16649
16678
|
this.cache = cache;
|
|
16650
16679
|
this.options = options;
|
|
16651
16680
|
/**
|
|
16652
|
-
*
|
|
16653
|
-
*
|
|
16681
|
+
* This method supports grant type:
|
|
16682
|
+
* - Grant Type == `authorization_code`:
|
|
16654
16683
|
* It generates the user token by given the authorization
|
|
16655
16684
|
* code which generated in "/iam/v3/authenticate" API response. It should also pass
|
|
16656
16685
|
* in the redirect_uri, which should be the same as generating the
|
|
16657
16686
|
* authorization code request.
|
|
16658
|
-
*
|
|
16659
|
-
*
|
|
16687
|
+
*
|
|
16688
|
+
* - Grant Type == `password`:
|
|
16660
16689
|
* The grant type to use for authenticating a user, whether it's by email / username and password combination
|
|
16661
16690
|
* or through platform.
|
|
16662
|
-
*
|
|
16663
|
-
*
|
|
16691
|
+
*
|
|
16692
|
+
* - Grant Type == `refresh_token`:
|
|
16664
16693
|
* Used to get a new access token for a valid refresh token.
|
|
16665
|
-
*
|
|
16666
|
-
*
|
|
16694
|
+
*
|
|
16695
|
+
* - Grant Type == `client_credentials`:
|
|
16667
16696
|
* It generates a token by checking the client credentials provided through Authorization header.
|
|
16668
|
-
*
|
|
16669
|
-
*
|
|
16670
|
-
*
|
|
16671
|
-
*
|
|
16672
|
-
*
|
|
16673
|
-
*
|
|
16674
|
-
*
|
|
16675
|
-
*
|
|
16676
|
-
*
|
|
16677
|
-
*
|
|
16678
|
-
*
|
|
16679
|
-
*
|
|
16680
|
-
*
|
|
16681
|
-
*
|
|
16682
|
-
*
|
|
16683
|
-
*
|
|
16684
|
-
*
|
|
16685
|
-
*
|
|
16686
|
-
*
|
|
16687
|
-
*
|
|
16688
|
-
*
|
|
16689
|
-
*
|
|
16690
|
-
*
|
|
16691
|
-
*
|
|
16692
|
-
*
|
|
16693
|
-
*
|
|
16694
|
-
*
|
|
16695
|
-
*
|
|
16696
|
-
*
|
|
16697
|
-
*
|
|
16698
|
-
*
|
|
16699
|
-
*
|
|
16700
|
-
*
|
|
16701
|
-
*
|
|
16702
|
-
*
|
|
16703
|
-
*
|
|
16704
|
-
*
|
|
16705
|
-
*
|
|
16706
|
-
*
|
|
16707
|
-
*
|
|
16708
|
-
*
|
|
16709
|
-
*
|
|
16710
|
-
*
|
|
16711
|
-
*
|
|
16712
|
-
*
|
|
16713
|
-
*
|
|
16714
|
-
*
|
|
16715
|
-
*
|
|
16716
|
-
*
|
|
16717
|
-
*
|
|
16718
|
-
*
|
|
16719
|
-
*
|
|
16720
|
-
*
|
|
16721
|
-
*
|
|
16722
|
-
*
|
|
16723
|
-
*
|
|
16724
|
-
*
|
|
16725
|
-
*
|
|
16726
|
-
*
|
|
16697
|
+
* ##Access Token Content
|
|
16698
|
+
* Following is the access token’s content:
|
|
16699
|
+
*
|
|
16700
|
+
* -
|
|
16701
|
+
* __namespace__. It is the namespace the token was generated from.
|
|
16702
|
+
*
|
|
16703
|
+
* -
|
|
16704
|
+
* __display_name__. The display name of the sub. It is empty if the token is generated from the client credential
|
|
16705
|
+
*
|
|
16706
|
+
* -
|
|
16707
|
+
* __roles__. The sub’s roles. It is empty if the token is generated from the client credential
|
|
16708
|
+
*
|
|
16709
|
+
* -
|
|
16710
|
+
* __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
|
|
16711
|
+
*
|
|
16712
|
+
* -
|
|
16713
|
+
* __permissions__. The sub or aud’ permissions
|
|
16714
|
+
*
|
|
16715
|
+
* -
|
|
16716
|
+
* __bans__. The sub’s list of bans. It is used by the IAM client for validating the token.
|
|
16717
|
+
*
|
|
16718
|
+
* -
|
|
16719
|
+
* __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:
|
|
16720
|
+
*
|
|
16721
|
+
* - 1: Email Address Verified
|
|
16722
|
+
* - 2: Phone Number Verified
|
|
16723
|
+
* - 4: Anonymous
|
|
16724
|
+
* - 8: Suspicious Login
|
|
16725
|
+
*
|
|
16726
|
+
*
|
|
16727
|
+
* -
|
|
16728
|
+
* __aud__. The aud is the targeted resource server.
|
|
16729
|
+
*
|
|
16730
|
+
* -
|
|
16731
|
+
* __iat__. The time the token issues at. It is in Epoch time format
|
|
16732
|
+
*
|
|
16733
|
+
* -
|
|
16734
|
+
* __exp__. The time the token expires. It is in Epoch time format
|
|
16735
|
+
*
|
|
16736
|
+
* -
|
|
16737
|
+
* __client_id__. The UserID. The sub is omitted if the token is generated from client credential
|
|
16738
|
+
*
|
|
16739
|
+
* -
|
|
16740
|
+
* __scope__. The scope of the access request, expressed as a list of space-delimited, case-sensitive strings
|
|
16741
|
+
*
|
|
16742
|
+
*
|
|
16743
|
+
* ##Bans
|
|
16744
|
+
* The JWT contains user's active bans with its expiry date. List of ban types can be obtained from /bans.
|
|
16745
|
+
* ##Device Cookie Validation
|
|
16746
|
+
* __For grant type "password" only__
|
|
16747
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
16748
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies)
|
|
16749
|
+
* 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.
|
|
16750
|
+
* ##Track Login History
|
|
16751
|
+
* 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".
|
|
16752
|
+
* Align with General Data Protection Regulation in Europe, user login history will be kept within 28 days by default"
|
|
16753
|
+
* ##2FA remember device
|
|
16754
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
16755
|
+
* action code: 10703
|
|
16727
16756
|
*/
|
|
16728
16757
|
this.loginWithAuthorizationCode = async ({ code, codeVerifier }) => {
|
|
16729
16758
|
const deviceId = SdkDevice.getDeviceId();
|
|
@@ -17303,12 +17332,10 @@ class OAuthApi {
|
|
|
17303
17332
|
this.cache = cache;
|
|
17304
17333
|
this.options = options;
|
|
17305
17334
|
/**
|
|
17306
|
-
*
|
|
17307
|
-
*
|
|
17308
|
-
*
|
|
17309
|
-
*
|
|
17310
|
-
* <li>AddTokenToRevocationList to revoke token with TTL</li>
|
|
17311
|
-
* </ul>
|
|
17335
|
+
* This method is used to remove __access_token__, __refresh_token__ from cookie and revoke token from usage.
|
|
17336
|
+
* Supported methods:
|
|
17337
|
+
* - VerifyToken to verify token from header
|
|
17338
|
+
* - AddTokenToRevocationList to revoke token with TTL
|
|
17312
17339
|
*/
|
|
17313
17340
|
this.logout = () => {
|
|
17314
17341
|
const axios = Network.create({
|
|
@@ -17320,8 +17347,8 @@ class OAuthApi {
|
|
|
17320
17347
|
return new OAuth20Extension$(axios, this.namespace, this.cache).postIamV3Logout();
|
|
17321
17348
|
};
|
|
17322
17349
|
/**
|
|
17323
|
-
*
|
|
17324
|
-
*
|
|
17350
|
+
* This method revokes a token.
|
|
17351
|
+
* This method requires authorized requests header with Basic Authentication from client that establish the token.action code: 10706
|
|
17325
17352
|
*/
|
|
17326
17353
|
this.revoke = ({ token }) => {
|
|
17327
17354
|
const axios = Network.create({
|
|
@@ -17335,10 +17362,10 @@ class OAuthApi {
|
|
|
17335
17362
|
return new OAuth20$(axios, this.namespace, this.cache).postIamV3OauthRevoke({ token });
|
|
17336
17363
|
};
|
|
17337
17364
|
/**
|
|
17338
|
-
* Verify 2FA code
|
|
17339
|
-
*
|
|
17340
|
-
*
|
|
17341
|
-
*
|
|
17365
|
+
* Verify 2FA code
|
|
17366
|
+
* This method is used for verifying 2FA code.
|
|
17367
|
+
* ##2FA remember device
|
|
17368
|
+
* To remember device for 2FA, should provide cookie: device_token or header: Device-Token
|
|
17342
17369
|
*
|
|
17343
17370
|
*/
|
|
17344
17371
|
this.verify2FA = async ({ factor, code, mfaToken = null, rememberDevice }) => {
|
|
@@ -17357,27 +17384,26 @@ class OAuthApi {
|
|
|
17357
17384
|
return result.response;
|
|
17358
17385
|
};
|
|
17359
17386
|
/**
|
|
17360
|
-
*
|
|
17387
|
+
* This method get country location based on the request.
|
|
17361
17388
|
*/
|
|
17362
17389
|
this.getCurrentLocationCountry = () => {
|
|
17363
17390
|
return this.newOAuth20Extension().fetchIamV3LocationCountry();
|
|
17364
17391
|
};
|
|
17365
17392
|
/**
|
|
17366
|
-
* Retrieve User Third Party Platform Token
|
|
17367
|
-
*
|
|
17393
|
+
* Retrieve User Third Party Platform Token
|
|
17394
|
+
*
|
|
17368
17395
|
* This method used for retrieving third party platform token for user that login using third party,
|
|
17369
17396
|
* if user have not link requested platform in game namespace, will try to retrieving third party platform token from publisher namespace.
|
|
17370
17397
|
* Passing platform group name or it's member will return same access token that can be used across the platform members.
|
|
17371
|
-
*
|
|
17372
|
-
*
|
|
17373
|
-
*
|
|
17374
|
-
*
|
|
17375
|
-
*
|
|
17376
|
-
*
|
|
17377
|
-
*
|
|
17378
|
-
*
|
|
17379
|
-
*
|
|
17380
|
-
* </ul>
|
|
17398
|
+
*
|
|
17399
|
+
* The third party platform and platform group covered for this is:
|
|
17400
|
+
* - (psn) ps4web
|
|
17401
|
+
* - (psn) ps4
|
|
17402
|
+
* - (psn) ps5
|
|
17403
|
+
* - epicgames
|
|
17404
|
+
* - twitch
|
|
17405
|
+
* - awscognito
|
|
17406
|
+
*
|
|
17381
17407
|
*/
|
|
17382
17408
|
this.getThirdPartyPlatformToken = (userId, platformId) => {
|
|
17383
17409
|
return this.newInstance().fetchV3OauthUsersByUseridPlatformsByPlatformidPlatformToken(userId, platformId);
|
|
@@ -17385,12 +17411,13 @@ class OAuthApi {
|
|
|
17385
17411
|
/**
|
|
17386
17412
|
* This method is being used to authenticate a user account and perform platform link.
|
|
17387
17413
|
* It validates user's email / username and password.
|
|
17388
|
-
* If user already enable 2FA, then invoke
|
|
17414
|
+
* If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
|
|
17389
17415
|
*
|
|
17390
|
-
*
|
|
17416
|
+
* ##Device Cookie Validation
|
|
17391
17417
|
*
|
|
17392
|
-
* Device Cookie is used to protect the user account from brute force login attack,
|
|
17393
|
-
*
|
|
17418
|
+
* Device Cookie is used to protect the user account from brute force login attack,
|
|
17419
|
+
* [more detail from OWASP](https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies).
|
|
17420
|
+
* 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.
|
|
17394
17421
|
*
|
|
17395
17422
|
*/
|
|
17396
17423
|
this.authenticateWithLink = (data) => {
|
|
@@ -17416,7 +17443,7 @@ class OAuthApi {
|
|
|
17416
17443
|
/**
|
|
17417
17444
|
* This method is being used to generate user's token by one time link code.
|
|
17418
17445
|
* It require publisher ClientID
|
|
17419
|
-
* It required a code which can be generated from
|
|
17446
|
+
* It required a code which can be generated from __/iam/v3/link/code/request__.
|
|
17420
17447
|
*
|
|
17421
17448
|
*/
|
|
17422
17449
|
exchangeTokenByOneTimeLinkCode(data) {
|
|
@@ -18000,74 +18027,74 @@ class TwoFA {
|
|
|
18000
18027
|
this.namespace = namespace;
|
|
18001
18028
|
this.cache = cache;
|
|
18002
18029
|
/**
|
|
18003
|
-
*
|
|
18004
|
-
* Each code is a one-time code and will be deleted once used
|
|
18005
|
-
*
|
|
18030
|
+
* This method is used to get 8-digits backup codes.
|
|
18031
|
+
* Each code is a one-time code and will be deleted once used.
|
|
18032
|
+
* This method Requires valid user access token
|
|
18006
18033
|
*
|
|
18007
18034
|
*/
|
|
18008
18035
|
this.getBackupCode = () => {
|
|
18009
18036
|
return this.newInstance().fetchV4NsUsersMeMfaBackupCode();
|
|
18010
18037
|
};
|
|
18011
18038
|
/**
|
|
18012
|
-
*
|
|
18013
|
-
*
|
|
18039
|
+
* This method is used to enable 2FA backup codes.
|
|
18040
|
+
* This method Requires valid user access token
|
|
18014
18041
|
*
|
|
18015
18042
|
*/
|
|
18016
18043
|
this.enable2FABackupCodes = () => {
|
|
18017
18044
|
return this.newInstance().postV4NsUsersMeMfaBackupCodeEnable();
|
|
18018
18045
|
};
|
|
18019
18046
|
/**
|
|
18020
|
-
*
|
|
18021
|
-
*
|
|
18047
|
+
* This method is used to enable 2FA backup codes.
|
|
18048
|
+
* This method Requires valid user access token
|
|
18022
18049
|
*
|
|
18023
18050
|
*/
|
|
18024
18051
|
this.generateBackupCodes = () => {
|
|
18025
18052
|
return this.newInstance().postV4NsUsersMeMfaBackupCode();
|
|
18026
18053
|
};
|
|
18027
18054
|
/**
|
|
18028
|
-
*
|
|
18029
|
-
*
|
|
18055
|
+
* This method is used to enable 2FA backup codes.
|
|
18056
|
+
* This method Requires valid user access token
|
|
18030
18057
|
*
|
|
18031
18058
|
*/
|
|
18032
18059
|
this.disableBackupCodes = () => {
|
|
18033
18060
|
return this.newInstance().deleteV4NsUsersMeMfaBackupCodeDisable();
|
|
18034
18061
|
};
|
|
18035
18062
|
/**
|
|
18036
|
-
*
|
|
18037
|
-
*
|
|
18063
|
+
* This method is used to disable 2FA authenticator.
|
|
18064
|
+
* This method Requires valid user access token
|
|
18038
18065
|
*
|
|
18039
18066
|
*/
|
|
18040
18067
|
this.disableAuthenticator = () => {
|
|
18041
18068
|
return this.newInstance().deleteV4NsUsersMeMfaAuthenticatorDisable();
|
|
18042
18069
|
};
|
|
18043
18070
|
/**
|
|
18044
|
-
*
|
|
18045
|
-
*
|
|
18071
|
+
* This method is used to get user enabled factors.
|
|
18072
|
+
* This method Requires valid user access token
|
|
18046
18073
|
*
|
|
18047
18074
|
*/
|
|
18048
18075
|
this.getEnabledMethods = () => {
|
|
18049
18076
|
return this.newInstance().fetchV4NsUsersMeMfaFactor();
|
|
18050
18077
|
};
|
|
18051
18078
|
/**
|
|
18052
|
-
*
|
|
18053
|
-
*
|
|
18079
|
+
* This method is used to make 2FA factor default.
|
|
18080
|
+
* This method Requires valid user access token
|
|
18054
18081
|
*
|
|
18055
18082
|
*/
|
|
18056
18083
|
this.set2FAAsDefault = (factor) => {
|
|
18057
18084
|
return this.newInstance().postV4NsUsersMeMfaFactor({ factor });
|
|
18058
18085
|
};
|
|
18059
18086
|
/**
|
|
18060
|
-
*
|
|
18061
|
-
*
|
|
18087
|
+
* This method is used to enable 2FA authenticator.
|
|
18088
|
+
* This method Requires valid user access token
|
|
18062
18089
|
*
|
|
18063
18090
|
*/
|
|
18064
18091
|
this.enable2FAAuthenticator = (code) => {
|
|
18065
18092
|
return this.newInstance().postV4NsUsersMeMfaAuthenticatorEnable({ code });
|
|
18066
18093
|
};
|
|
18067
18094
|
/**
|
|
18068
|
-
*
|
|
18069
|
-
* A QR code URI is also returned so that frontend can generate QR code image
|
|
18070
|
-
*
|
|
18095
|
+
* This method is used to generate a secret key for 3rd-party authenticator app.
|
|
18096
|
+
* A QR code URI is also returned so that frontend can generate QR code image.
|
|
18097
|
+
* This method Requires valid user access token
|
|
18071
18098
|
*
|
|
18072
18099
|
*/
|
|
18073
18100
|
this.generateSecretKey = () => {
|
|
@@ -19317,55 +19344,52 @@ class UserApi {
|
|
|
19317
19344
|
};
|
|
19318
19345
|
/**
|
|
19319
19346
|
* Required valid user authorization
|
|
19320
|
-
*
|
|
19321
|
-
*
|
|
19322
|
-
*
|
|
19323
|
-
*
|
|
19324
|
-
*
|
|
19325
|
-
*
|
|
19326
|
-
*
|
|
19327
|
-
*
|
|
19328
|
-
*
|
|
19329
|
-
*
|
|
19330
|
-
*
|
|
19331
|
-
*
|
|
19332
|
-
*
|
|
19333
|
-
*
|
|
19334
|
-
*
|
|
19335
|
-
* </li>
|
|
19336
|
-
* </ol>
|
|
19337
|
-
* <p>action code: 10116</p>
|
|
19347
|
+
* The verification code is sent to email address
|
|
19348
|
+
* Available contexts for use :
|
|
19349
|
+
* -
|
|
19350
|
+
* __UserAccountRegistration__
|
|
19351
|
+
* a context type used for verifying email address in user account registration. It returns 409 if the email address already verified.
|
|
19352
|
+
* __It is the default context if the Context field is empty__
|
|
19353
|
+
*
|
|
19354
|
+
* -
|
|
19355
|
+
* __UpdateEmailAddress__
|
|
19356
|
+
* a context type used for verify user before updating email address.(Without email address verified checking)
|
|
19357
|
+
*
|
|
19358
|
+
* - __upgradeHeadlessAccount__
|
|
19359
|
+
* The context is intended to be used whenever the email address wanted to be automatically verified on upgrading a headless account.
|
|
19360
|
+
* If this context used, IAM rejects the request if the email address is already used by others by returning HTTP Status Code 409.
|
|
19361
|
+
* action code: 10116
|
|
19338
19362
|
*
|
|
19339
19363
|
*/
|
|
19340
19364
|
this.requestVerificationCode = (data) => {
|
|
19341
19365
|
return this.newInstance().postV3NsUsersMeCodeRequest(data);
|
|
19342
19366
|
};
|
|
19343
19367
|
/**
|
|
19344
|
-
*
|
|
19345
|
-
*
|
|
19346
|
-
*
|
|
19347
|
-
*
|
|
19348
|
-
*
|
|
19368
|
+
* Will consume code if validateOnly is set false
|
|
19369
|
+
* Required valid user authorization
|
|
19370
|
+
* Redeems a verification code sent to a user to verify the user's contact address is correct
|
|
19371
|
+
* Available ContactType : __email__
|
|
19372
|
+
* action code: 10107
|
|
19349
19373
|
*
|
|
19350
19374
|
*/
|
|
19351
19375
|
this.verifyCode = (data) => {
|
|
19352
19376
|
return this.newInstance().postV3NsUsersMeCodeVerify(data);
|
|
19353
19377
|
};
|
|
19354
19378
|
/**
|
|
19355
|
-
*
|
|
19379
|
+
* If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded
|
|
19356
19380
|
* Require valid user access token.
|
|
19357
|
-
*
|
|
19358
|
-
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
19359
|
-
*
|
|
19360
|
-
* In order to get a verification code for the method, please check the send verification code method
|
|
19361
|
-
*
|
|
19381
|
+
* The method upgrades a headless account by linking the headless account with the email address and the password.
|
|
19382
|
+
* By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM.
|
|
19383
|
+
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
19384
|
+
* In order to get a verification code for the method, please check the send verification code method.
|
|
19385
|
+
* 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.
|
|
19362
19386
|
* Supported user data fields :
|
|
19363
|
-
*
|
|
19364
|
-
*
|
|
19365
|
-
*
|
|
19366
|
-
*
|
|
19367
|
-
*
|
|
19368
|
-
*
|
|
19387
|
+
*
|
|
19388
|
+
* - displayName
|
|
19389
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
19390
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
19391
|
+
*
|
|
19392
|
+
* action code : 10124
|
|
19369
19393
|
*/
|
|
19370
19394
|
this.upgradeHeadlessAccount = (data) => {
|
|
19371
19395
|
return this.newInstance().postV3NsUsersMeHeadlessCodeVerify(data);
|
|
@@ -19374,54 +19398,53 @@ class UserApi {
|
|
|
19374
19398
|
* Require valid user access token.
|
|
19375
19399
|
* The method upgrades a headless account by linking the headless account with the email address, username, and password.
|
|
19376
19400
|
* By upgrading the headless account into a full account, the user could use the email address, username, and password for using Justice IAM.
|
|
19377
|
-
*
|
|
19401
|
+
*
|
|
19378
19402
|
* The method is a shortcut for upgrading a headless account and verifying the email address in one call.
|
|
19379
|
-
*
|
|
19380
|
-
* <br>
|
|
19403
|
+
*
|
|
19381
19404
|
* 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.
|
|
19382
19405
|
* Supported user data fields:
|
|
19383
|
-
*
|
|
19384
|
-
*
|
|
19385
|
-
*
|
|
19386
|
-
*
|
|
19387
|
-
*
|
|
19406
|
+
*
|
|
19407
|
+
* - displayName
|
|
19408
|
+
* - dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29
|
|
19409
|
+
* - country : format ISO3166-1 alpha-2 two letter, e.g. US
|
|
19410
|
+
*
|
|
19388
19411
|
* action code : 10124
|
|
19389
19412
|
*/
|
|
19390
19413
|
this.upgradeHeadlessAccountV4 = (data) => {
|
|
19391
19414
|
return this.newInstance4().postV4NsUsersMeHeadlessCodeVerify(data);
|
|
19392
19415
|
};
|
|
19393
19416
|
/**
|
|
19394
|
-
*
|
|
19395
|
-
*
|
|
19417
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
19418
|
+
* action code: 10128
|
|
19396
19419
|
*/
|
|
19397
19420
|
this.getUserLinkedPlatform = (userId) => {
|
|
19398
19421
|
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
19399
19422
|
};
|
|
19400
19423
|
/**
|
|
19401
19424
|
* Required valid user authorization.
|
|
19402
|
-
*
|
|
19425
|
+
* __Prerequisite:__
|
|
19403
19426
|
* Platform client configuration need to be added to database for specific platformId. Namespace service URL need to be specified (refer to required environment variables).
|
|
19404
|
-
*
|
|
19405
|
-
*
|
|
19406
|
-
*
|
|
19407
|
-
*
|
|
19408
|
-
*
|
|
19409
|
-
*
|
|
19410
|
-
*
|
|
19411
|
-
*
|
|
19412
|
-
*
|
|
19413
|
-
*
|
|
19414
|
-
*
|
|
19415
|
-
*
|
|
19416
|
-
*
|
|
19417
|
-
*
|
|
19418
|
-
*
|
|
19419
|
-
*
|
|
19420
|
-
*
|
|
19421
|
-
*
|
|
19422
|
-
*
|
|
19423
|
-
*
|
|
19424
|
-
*
|
|
19427
|
+
* ##Supported platforms:
|
|
19428
|
+
*
|
|
19429
|
+
* - __steam__: The ticket’s value is the authentication code returned by Steam.
|
|
19430
|
+
* - __steamopenid__: Steam's user authentication method using OpenID 2.0. The ticket's value is URL generated by Steam on web authentication
|
|
19431
|
+
* - __facebook__: The ticket’s value is the authorization code returned by Facebook OAuth
|
|
19432
|
+
* - __google__: The ticket’s value is the authorization code returned by Google OAuth
|
|
19433
|
+
* - __oculus__: The ticket’s value is a string composed of Oculus's user ID and the nonce separated by a colon (:).
|
|
19434
|
+
* - __twitch__: The ticket’s value is the authorization code returned by Twitch OAuth.
|
|
19435
|
+
* - __android__: The ticket's value is the Android’s device ID
|
|
19436
|
+
* - __ios__: The ticket's value is the iOS’s device ID.
|
|
19437
|
+
* - __apple__: The ticket’s value is the authorization code returned by Apple OAuth.
|
|
19438
|
+
* - __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.
|
|
19439
|
+
* - __discord__: The ticket’s value is the authorization code returned by Discord OAuth.
|
|
19440
|
+
* - __ps4web__: The ticket’s value is the authorization code returned by PSN OAuth.
|
|
19441
|
+
* - __xblweb__: The ticket’s value is the authorization code returned by XBox Live OAuth.
|
|
19442
|
+
* - __awscognito__: The ticket’s value is the aws cognito access token (JWT).
|
|
19443
|
+
* - __epicgames__: The ticket’s value is an access-token obtained from Epicgames EOS Account Service.
|
|
19444
|
+
* - __nintendo__: The ticket’s value is the authorization code(id_token) returned by Nintendo OAuth.
|
|
19445
|
+
* - __stadia__: The ticket’s value is a JWT Token, which can be obtained after calling the Stadia SDK's function.
|
|
19446
|
+
*
|
|
19447
|
+
* action code : 10144
|
|
19425
19448
|
*/
|
|
19426
19449
|
this.linkAccountToPlatform = ({ platformId, data }) => {
|
|
19427
19450
|
return this.newInstance().postV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
@@ -19433,7 +19456,7 @@ class UserApi {
|
|
|
19433
19456
|
return this.newInstance().fetchV3NsRequestsByRequestidAsyncStatus(requestId);
|
|
19434
19457
|
};
|
|
19435
19458
|
/**
|
|
19436
|
-
* It is going to be
|
|
19459
|
+
* It is going to be __DEPRECATED__.
|
|
19437
19460
|
* Update Platform Account relation to current User Account.
|
|
19438
19461
|
* Note: Game progression data (statistics, reward, etc) associated with previous User Account will not be
|
|
19439
19462
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
@@ -19444,32 +19467,32 @@ class UserApi {
|
|
|
19444
19467
|
};
|
|
19445
19468
|
/**
|
|
19446
19469
|
* Required valid user authorization.
|
|
19447
|
-
*
|
|
19448
|
-
*
|
|
19449
|
-
*
|
|
19450
|
-
*
|
|
19451
|
-
*
|
|
19452
|
-
*
|
|
19453
|
-
*
|
|
19454
|
-
*
|
|
19455
|
-
*
|
|
19456
|
-
*
|
|
19457
|
-
*
|
|
19458
|
-
*
|
|
19459
|
-
*
|
|
19460
|
-
*
|
|
19461
|
-
*
|
|
19462
|
-
*
|
|
19463
|
-
*
|
|
19464
|
-
*
|
|
19465
|
-
*
|
|
19466
|
-
*
|
|
19467
|
-
*
|
|
19468
|
-
*
|
|
19469
|
-
*
|
|
19470
|
-
*
|
|
19471
|
-
*
|
|
19472
|
-
*
|
|
19470
|
+
* ##Supported platforms:
|
|
19471
|
+
*
|
|
19472
|
+
* - __steam__
|
|
19473
|
+
* - __steamopenid__
|
|
19474
|
+
* - __facebook__
|
|
19475
|
+
* - __google__
|
|
19476
|
+
* - __oculus__
|
|
19477
|
+
* - __twitch__
|
|
19478
|
+
* - __android__
|
|
19479
|
+
* - __ios__
|
|
19480
|
+
* - __apple__
|
|
19481
|
+
* - __device__
|
|
19482
|
+
* - __discord__
|
|
19483
|
+
* - __awscognito__
|
|
19484
|
+
* - __epicgames__
|
|
19485
|
+
* - __nintendo__
|
|
19486
|
+
* - __stadia__
|
|
19487
|
+
*
|
|
19488
|
+
* Unlink user's account from a specific platform. 'justice' platform might have multiple accounts from different namespaces linked.
|
|
19489
|
+
* _platformNamespace_ need to be specified when the platform ID is 'justice'.
|
|
19490
|
+
*
|
|
19491
|
+
* Unlink user's account from justice platform will enable password token grant and password update.
|
|
19492
|
+
*
|
|
19493
|
+
* If you want to unlink user's account in a game namespace, you have to specify _platformNamespace_ to that game namespace.
|
|
19494
|
+
*
|
|
19495
|
+
* action code : 10121
|
|
19473
19496
|
*/
|
|
19474
19497
|
this.unLinkAccountFromPlatform = ({ platformId, data }) => {
|
|
19475
19498
|
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
@@ -19509,65 +19532,63 @@ class UserApi {
|
|
|
19509
19532
|
* If it already been used, will response 409.
|
|
19510
19533
|
*
|
|
19511
19534
|
* If it is available, we will send a verification code to this email address.
|
|
19512
|
-
* This code can be verified by this <a href="#operations-Users-PublicVerifyRegistrationCode">method</a>.
|
|
19513
|
-
*
|
|
19514
19535
|
*/
|
|
19515
19536
|
requestNewUserVerificationCode(data) {
|
|
19516
19537
|
return this.newInstance().postV3NsUsersCodeRequest(data);
|
|
19517
19538
|
}
|
|
19518
19539
|
/**
|
|
19519
19540
|
* Create a new user with unique email address and username.
|
|
19520
|
-
*
|
|
19521
|
-
*
|
|
19541
|
+
*
|
|
19542
|
+
* __Required attributes:__
|
|
19522
19543
|
* - authType: possible value is EMAILPASSWD
|
|
19523
19544
|
* - emailAddress: Please refer to the rule from /v3/public/inputValidations API.
|
|
19524
19545
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
19525
19546
|
* - password: Please refer to the rule from /v3/public/inputValidations API.
|
|
19526
19547
|
* - country: ISO3166-1 alpha-2 two letter, e.g. US.
|
|
19527
19548
|
* - dateOfBirth: YYYY-MM-DD, e.g. 1990-01-01. valid values are between 1905-01-01 until current date.
|
|
19528
|
-
*
|
|
19529
|
-
*
|
|
19549
|
+
*
|
|
19550
|
+
* __Not required attributes:__
|
|
19530
19551
|
* - displayName: Please refer to the rule from /v3/public/inputValidations API.
|
|
19531
|
-
*
|
|
19532
|
-
*
|
|
19552
|
+
*
|
|
19553
|
+
* This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.
|
|
19533
19554
|
*
|
|
19534
19555
|
*/
|
|
19535
19556
|
createUser(data) {
|
|
19536
19557
|
return this.newInstance4().postV4NsUsers(data);
|
|
19537
19558
|
}
|
|
19538
19559
|
/**
|
|
19539
|
-
*
|
|
19540
|
-
*
|
|
19541
|
-
*
|
|
19560
|
+
* This method retrieves platform accounts linked to user.
|
|
19561
|
+
* It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
19562
|
+
* Required valid user authorization.
|
|
19542
19563
|
*/
|
|
19543
19564
|
getUserDistinctLinkedPlatform(userId) {
|
|
19544
19565
|
return this.newInstance().fetchV3NsUsersByUseridDistinctPlatforms(userId);
|
|
19545
19566
|
}
|
|
19546
19567
|
/**
|
|
19547
19568
|
* Required valid user authorization.
|
|
19548
|
-
*
|
|
19569
|
+
* Unlink user's account from for all third platforms.
|
|
19549
19570
|
*/
|
|
19550
19571
|
unLinkAccountFromPlatformDistinct(platformId) {
|
|
19551
19572
|
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformidAll(platformId);
|
|
19552
19573
|
}
|
|
19553
19574
|
/**
|
|
19554
19575
|
* Required valid user authorization
|
|
19555
|
-
*
|
|
19556
|
-
*
|
|
19576
|
+
* The verification link is sent to email address
|
|
19577
|
+
* It will not send request if user email is already verified
|
|
19557
19578
|
*
|
|
19558
19579
|
*/
|
|
19559
19580
|
sendVerificationLink(languageTag) {
|
|
19560
19581
|
return this.newInstance().postIamV3PublicUsersMeVerifyLinkRequest({ languageTag });
|
|
19561
19582
|
}
|
|
19562
19583
|
/**
|
|
19563
|
-
*
|
|
19564
|
-
*
|
|
19584
|
+
* This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
19585
|
+
* action code: 10128
|
|
19565
19586
|
*/
|
|
19566
19587
|
getLinkedAccount(userId) {
|
|
19567
19588
|
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
19568
19589
|
}
|
|
19569
19590
|
/**
|
|
19570
|
-
* Note
|
|
19591
|
+
* Note:
|
|
19571
19592
|
* 1. My account should be full account
|
|
19572
19593
|
* 2. My account not linked to request headless account's third platform.
|
|
19573
19594
|
*/
|
|
@@ -19575,7 +19596,7 @@ class UserApi {
|
|
|
19575
19596
|
return this.newInstance().fetchIamV3PublicUsersMeHeadlessLinkConflict(params);
|
|
19576
19597
|
}
|
|
19577
19598
|
/**
|
|
19578
|
-
* Note
|
|
19599
|
+
* Note:
|
|
19579
19600
|
* 1. My account should be full account
|
|
19580
19601
|
* 2. My account not linked to headless account's third platform.
|
|
19581
19602
|
*/
|
|
@@ -19739,19 +19760,22 @@ class AgreementApi {
|
|
|
19739
19760
|
this.cache = cache;
|
|
19740
19761
|
}
|
|
19741
19762
|
/**
|
|
19742
|
-
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement
|
|
19763
|
+
* Accepts many legal policy versions all at once. Supply with localized version policy id to accept an agreement.
|
|
19764
|
+
* - _Required permission_: login user
|
|
19743
19765
|
*/
|
|
19744
19766
|
acceptLegalPolicies(acceptAgreements) {
|
|
19745
19767
|
return this.newInstance().postPublicAgreementsPolicies(acceptAgreements);
|
|
19746
19768
|
}
|
|
19747
19769
|
/**
|
|
19748
|
-
* Retrieve accepted Legal Agreements
|
|
19770
|
+
* Retrieve accepted Legal Agreements.
|
|
19771
|
+
* - _Required permission_: login user
|
|
19749
19772
|
*/
|
|
19750
19773
|
getAgreements() {
|
|
19751
19774
|
return this.newInstance().fetchPublicAgreementsPolicies();
|
|
19752
19775
|
}
|
|
19753
19776
|
/**
|
|
19754
|
-
* Change marketing preference consent
|
|
19777
|
+
* Change marketing preference consent.
|
|
19778
|
+
* - _Required permission_: login user
|
|
19755
19779
|
*/
|
|
19756
19780
|
updateMarketingPreferences(acceptAgreements) {
|
|
19757
19781
|
return this.newInstance().patchPublicAgreementsLocalizedPolicyVersionsPreferences(acceptAgreements);
|
|
@@ -19869,7 +19893,8 @@ class EligibilitiesApi {
|
|
|
19869
19893
|
this.cache = cache;
|
|
19870
19894
|
}
|
|
19871
19895
|
/**
|
|
19872
|
-
* Retrieve the active policies and its conformance status by user
|
|
19896
|
+
* 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:
|
|
19897
|
+
* - _Required permission_: login user
|
|
19873
19898
|
*/
|
|
19874
19899
|
getUserEligibilities() {
|
|
19875
19900
|
return this.newInstance().fetchPublicEligibilitiesNamespacesByNamespace();
|
|
@@ -19977,7 +20002,7 @@ class LocalizedPolicyVersionsApi {
|
|
|
19977
20002
|
this.cache = cache;
|
|
19978
20003
|
}
|
|
19979
20004
|
/**
|
|
19980
|
-
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located
|
|
20005
|
+
* Retrieve specific localized policy version including the policy version and base policy version where the localized policy version located.Other detail info:
|
|
19981
20006
|
*/
|
|
19982
20007
|
fetchLocalizedPolicyVersionById(localizedPolicyVersionId) {
|
|
19983
20008
|
return this.newInstance().fetchPublicLocalizedPolicyVersionsByLocalizedpolicyversionid(localizedPolicyVersionId);
|
|
@@ -20088,13 +20113,31 @@ class PoliciesApi {
|
|
|
20088
20113
|
this.cache = cache;
|
|
20089
20114
|
}
|
|
20090
20115
|
/**
|
|
20091
|
-
* Retrieve all active latest policies based on a namespace and country
|
|
20092
|
-
|
|
20116
|
+
* Retrieve all active latest policies based on a namespace and country.Other detail info:
|
|
20117
|
+
*
|
|
20118
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
20119
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
20120
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
20121
|
+
* - _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:_
|
|
20122
|
+
*
|
|
20123
|
+
* - Document 1 (default): Region US (default), UA
|
|
20124
|
+
* - Document 2 (default): Region US (default)
|
|
20125
|
+
* - Document 3 (default): Region US (default)
|
|
20126
|
+
* - User: Region UA
|
|
20127
|
+
* - Query: alwaysIncludeDefault: true
|
|
20128
|
+
* - Response: Document 1 (UA), Document 2 (US), Document 3 (US)
|
|
20129
|
+
*/
|
|
20130
|
+
// TODO cpmmented -> docgen fix above to valid HTML
|
|
20093
20131
|
fetchPoliciesByCountry({ countryCode, queryParams }) {
|
|
20094
20132
|
return this.newInstance().fetchPublicPoliciesNamespacesByNamespaceCountriesByCountrycode(countryCode, queryParams);
|
|
20095
20133
|
}
|
|
20096
20134
|
/**
|
|
20097
|
-
* Retrieve all active latest policies based on country from all namespaces
|
|
20135
|
+
* Retrieve all active latest policies based on country from all namespaces.
|
|
20136
|
+
* Other detail info:
|
|
20137
|
+
*
|
|
20138
|
+
* - _Leave the policyType empty if you want to be responded with all policy type_
|
|
20139
|
+
* - _Fill the tags if you want to filter the responded policy by tags_
|
|
20140
|
+
* - _Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist_
|
|
20098
20141
|
*/
|
|
20099
20142
|
fetchAllPoliciesByCountry({ countryCode, queryParams }) {
|
|
20100
20143
|
return this.newInstance().fetchPublicPoliciesCountriesByCountrycode(countryCode, queryParams);
|
|
@@ -20256,7 +20299,8 @@ class CurrencyApi {
|
|
|
20256
20299
|
this.namespace = namespace;
|
|
20257
20300
|
this.cache = cache;
|
|
20258
20301
|
/**
|
|
20259
|
-
* List currencies of a namespace
|
|
20302
|
+
* List currencies of a namespace.
|
|
20303
|
+
* Returns: Currency List
|
|
20260
20304
|
*/
|
|
20261
20305
|
this.getCurrencies = () => {
|
|
20262
20306
|
return this.newInstance().fetchNsCurrencies();
|
|
@@ -20877,7 +20921,7 @@ class EntitlementApi {
|
|
|
20877
20921
|
this.cache = cache;
|
|
20878
20922
|
}
|
|
20879
20923
|
/**
|
|
20880
|
-
* Get user app entitlement by appId
|
|
20924
|
+
* Get user app entitlement by appId.
|
|
20881
20925
|
*/
|
|
20882
20926
|
getEntitlementByAppId({ userId, appId }) {
|
|
20883
20927
|
return this.newInstance().fetchNsUsersByUseridEntitlementsByAppId(userId, {
|
|
@@ -20885,25 +20929,27 @@ class EntitlementApi {
|
|
|
20885
20929
|
});
|
|
20886
20930
|
}
|
|
20887
20931
|
/**
|
|
20888
|
-
* Query user entitlements for a specific user
|
|
20932
|
+
* Query user entitlements for a specific user.
|
|
20933
|
+
* Returns: entitlement list
|
|
20889
20934
|
*/
|
|
20890
20935
|
getEntitlements({ userId, queryParams }) {
|
|
20891
20936
|
return this.newInstance().fetchNsUsersByUseridEntitlements(userId, queryParams);
|
|
20892
20937
|
}
|
|
20893
20938
|
/**
|
|
20894
|
-
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
20939
|
+
* Exists any user active entitlement of specified itemIds, skus and appIds
|
|
20895
20940
|
*/
|
|
20896
20941
|
getEntitlementOwnerShip({ userId, queryParams }) {
|
|
20897
20942
|
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams);
|
|
20898
20943
|
}
|
|
20899
20944
|
/**
|
|
20900
|
-
* Get user entitlement ownership by itemIds
|
|
20945
|
+
* Get user entitlement ownership by itemIds.
|
|
20901
20946
|
*/
|
|
20902
20947
|
getEntitlementByItemIds({ userId, queryParams }) {
|
|
20903
20948
|
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams);
|
|
20904
20949
|
}
|
|
20905
20950
|
/**
|
|
20906
|
-
* 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
|
|
20951
|
+
* 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
|
|
20952
|
+
* Returns: consumed entitlement
|
|
20907
20953
|
*/
|
|
20908
20954
|
claimEntitlement({ userId, entitlementId, data }) {
|
|
20909
20955
|
return this.newInstance().putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data);
|
|
@@ -21006,7 +21052,8 @@ class FulfillmentApi {
|
|
|
21006
21052
|
this.namespace = namespace;
|
|
21007
21053
|
this.cache = cache;
|
|
21008
21054
|
/**
|
|
21009
|
-
* Redeem campaign code
|
|
21055
|
+
* Redeem campaign code.
|
|
21056
|
+
* Returns: fulfillment result
|
|
21010
21057
|
*/
|
|
21011
21058
|
this.redeemCode = ({ userId, data }) => {
|
|
21012
21059
|
return this.newInstance().postNsUsersByUseridFulfillmentCode(userId, data);
|
|
@@ -21561,13 +21608,15 @@ class ItemApi {
|
|
|
21561
21608
|
this.cache = cache;
|
|
21562
21609
|
}
|
|
21563
21610
|
/**
|
|
21564
|
-
* This API is used to get item by appId
|
|
21611
|
+
* This API is used to get item by appId.
|
|
21612
|
+
* Returns: the item with that appId
|
|
21565
21613
|
*/
|
|
21566
21614
|
getItemByAppId({ ...queryParams }) {
|
|
21567
21615
|
return this.newInstance().fetchNsItemsByAppId(queryParams);
|
|
21568
21616
|
}
|
|
21569
21617
|
/**
|
|
21570
|
-
* Get item dynamic data for a published item
|
|
21618
|
+
* Get item dynamic data for a published item.
|
|
21619
|
+
* Returns: item dynamic data
|
|
21571
21620
|
*/
|
|
21572
21621
|
getItemByItemIdDynamic(itemId) {
|
|
21573
21622
|
return this.newInstance().fetchNsItemsByItemidDynamic(itemId);
|
|
@@ -21576,7 +21625,8 @@ class ItemApi {
|
|
|
21576
21625
|
return this.newInstance().fetchNsItemsByCriteria(queryParams);
|
|
21577
21626
|
}
|
|
21578
21627
|
/**
|
|
21579
|
-
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return
|
|
21628
|
+
* This API is used to query items by criteria within a store. If item not exist in specific region, default region item will return.
|
|
21629
|
+
* Returns: the list of items
|
|
21580
21630
|
*/
|
|
21581
21631
|
getItemsByItemIds({ queryParams }) {
|
|
21582
21632
|
return this.newInstance().fetchNsItemsLocaleByIds(queryParams);
|
|
@@ -21601,13 +21651,15 @@ class ItemApi {
|
|
|
21601
21651
|
return result;
|
|
21602
21652
|
}
|
|
21603
21653
|
/**
|
|
21604
|
-
* This API is used to get an item in locale. If item not exist in specific region, default region item will return
|
|
21654
|
+
* This API is used to get an item in locale. If item not exist in specific region, default region item will return.
|
|
21655
|
+
* Returns: item data
|
|
21605
21656
|
*/
|
|
21606
21657
|
getItemsByItemIdLocale({ itemId, queryParams }) {
|
|
21607
21658
|
return this.newInstance().fetchNsItemsByItemidLocale(itemId, queryParams);
|
|
21608
21659
|
}
|
|
21609
21660
|
/**
|
|
21610
|
-
* This API is used to get an app in locale. If app not exist in specific region, default region app will return
|
|
21661
|
+
* This API is used to get an app in locale. If app not exist in specific region, default region app will return.
|
|
21662
|
+
* Returns: app data
|
|
21611
21663
|
*/
|
|
21612
21664
|
getAppInfoByItemId({ itemId, queryParams }) {
|
|
21613
21665
|
return this.newInstance().fetchNsItemsByItemidAppLocale(itemId, queryParams);
|
|
@@ -21857,25 +21909,30 @@ class OrderApi {
|
|
|
21857
21909
|
this.namespace = namespace;
|
|
21858
21910
|
this.cache = cache;
|
|
21859
21911
|
/**
|
|
21860
|
-
* Query user orders
|
|
21912
|
+
* Query user orders.
|
|
21913
|
+
* Returns: get order
|
|
21861
21914
|
*/
|
|
21862
21915
|
this.getOrderList = ({ userId, queryParams }) => {
|
|
21863
21916
|
return this.newInstance().fetchNsUsersByUseridOrders(userId, queryParams);
|
|
21864
21917
|
};
|
|
21865
21918
|
/**
|
|
21866
|
-
* Get user order
|
|
21919
|
+
* Get user order.
|
|
21920
|
+
* Returns: get order
|
|
21867
21921
|
*/
|
|
21868
21922
|
this.getOrderByOrderNo = ({ userId, orderNo }) => {
|
|
21869
21923
|
return this.newInstance().fetchNsUsersByUseridOrdersByOrderno(userId, orderNo);
|
|
21870
21924
|
};
|
|
21871
21925
|
/**
|
|
21872
|
-
* Cancel user order
|
|
21926
|
+
* Cancel user order.
|
|
21927
|
+
* Returns: cancelled order
|
|
21873
21928
|
*/
|
|
21874
21929
|
this.cancelOrder = ({ userId, orderNo }) => {
|
|
21875
21930
|
return this.newInstance().putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo);
|
|
21876
21931
|
};
|
|
21877
21932
|
/**
|
|
21878
|
-
* Create an order. The result contains the checkout link and payment token.
|
|
21933
|
+
* Create an order. The result contains the checkout link and payment token.
|
|
21934
|
+
* User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.
|
|
21935
|
+
* Returns: created order
|
|
21879
21936
|
*/
|
|
21880
21937
|
this.createOrder = ({ userId, data }) => {
|
|
21881
21938
|
return this.newInstance().postNsUsersByUseridOrders(userId, data);
|
|
@@ -22210,31 +22267,37 @@ class PaymentApi {
|
|
|
22210
22267
|
this.namespace = namespace;
|
|
22211
22268
|
this.cache = cache;
|
|
22212
22269
|
/**
|
|
22213
|
-
* Get payment accounts
|
|
22270
|
+
* Get payment accounts.\
|
|
22271
|
+
* Returns: Payment account list
|
|
22214
22272
|
*/
|
|
22215
22273
|
this.getPaymentAccounts = (userId) => {
|
|
22216
22274
|
return this.newInstance().fetchNsUsersByUseridPaymentAccounts(userId);
|
|
22217
22275
|
};
|
|
22218
22276
|
/**
|
|
22219
|
-
* Delete payment account
|
|
22277
|
+
* Delete payment account.
|
|
22278
|
+
*
|
|
22279
|
+
* Other detail info:
|
|
22220
22280
|
*/
|
|
22221
22281
|
this.deletePaymentAccount = ({ userId, type, id }) => {
|
|
22222
22282
|
return this.newInstance().deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id);
|
|
22223
22283
|
};
|
|
22224
22284
|
/**
|
|
22225
|
-
* Get payment order info
|
|
22285
|
+
* Get payment order info.
|
|
22286
|
+
* Returns: Payment order details
|
|
22226
22287
|
*/
|
|
22227
22288
|
this.getPaymentInfo = (paymentOrderNo) => {
|
|
22228
22289
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo);
|
|
22229
22290
|
};
|
|
22230
22291
|
/**
|
|
22231
|
-
* Do payment(For now, this only support checkout.com)
|
|
22292
|
+
* Do payment(For now, this only support checkout.com).
|
|
22293
|
+
* Returns: Payment process result
|
|
22232
22294
|
*/
|
|
22233
22295
|
this.processPaymentOrder = (paymentOrderNo, data, queryParams) => {
|
|
22234
22296
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams);
|
|
22235
22297
|
};
|
|
22236
22298
|
/**
|
|
22237
|
-
* Get payment provider public config, at current only Strip provide public config
|
|
22299
|
+
* Get payment provider public config, at current only Strip provide public config.
|
|
22300
|
+
* Returns: Public config
|
|
22238
22301
|
*/
|
|
22239
22302
|
this.getPaymentProviderPublicConfig = (paymentProvider, region, sandbox) => {
|
|
22240
22303
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentPublicconfig({
|
|
@@ -22244,19 +22307,22 @@ class PaymentApi {
|
|
|
22244
22307
|
});
|
|
22245
22308
|
};
|
|
22246
22309
|
/**
|
|
22247
|
-
* Check payment order paid status
|
|
22310
|
+
* Check payment order paid status.
|
|
22311
|
+
* Returns: Payment order paid result
|
|
22248
22312
|
*/
|
|
22249
22313
|
this.getPaymentOrderStatus = (paymentOrderNo) => {
|
|
22250
22314
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo);
|
|
22251
22315
|
};
|
|
22252
22316
|
/**
|
|
22253
|
-
* Get payment methods
|
|
22317
|
+
* Get payment methods.
|
|
22318
|
+
* Returns: Payment method list
|
|
22254
22319
|
*/
|
|
22255
22320
|
this.getPaymentMethods = (paymentOrderNo) => {
|
|
22256
22321
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentMethods({ paymentOrderNo });
|
|
22257
22322
|
};
|
|
22258
22323
|
/**
|
|
22259
|
-
* Check and get a payment order's should pay tax
|
|
22324
|
+
* Check and get a payment order's should pay tax.
|
|
22325
|
+
* Returns: tax result
|
|
22260
22326
|
*/
|
|
22261
22327
|
this.getPaymentTax = (paymentProvider, paymentOrderNo, zipCode) => {
|
|
22262
22328
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentTax({
|
|
@@ -22266,7 +22332,8 @@ class PaymentApi {
|
|
|
22266
22332
|
});
|
|
22267
22333
|
};
|
|
22268
22334
|
/**
|
|
22269
|
-
* Get payment url
|
|
22335
|
+
* Get payment url.
|
|
22336
|
+
* Returns: Get payment link
|
|
22270
22337
|
*/
|
|
22271
22338
|
this.createPaymentUrl = (data) => {
|
|
22272
22339
|
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentLink(data);
|
|
@@ -22524,37 +22591,51 @@ class SubscriptionApi {
|
|
|
22524
22591
|
this.cache = cache;
|
|
22525
22592
|
}
|
|
22526
22593
|
/**
|
|
22527
|
-
* Query user subscriptions
|
|
22594
|
+
* Query user subscriptions.
|
|
22595
|
+
* Returns: paginated subscription
|
|
22528
22596
|
*/
|
|
22529
22597
|
getUserSubscriptions({ userId, queryParams }) {
|
|
22530
22598
|
return this.newInstance().fetchNsUsersByUseridSubscriptions(userId, queryParams);
|
|
22531
22599
|
}
|
|
22532
22600
|
/**
|
|
22533
|
-
* Get user subscription
|
|
22601
|
+
* Get user subscription.
|
|
22602
|
+
* Returns: subscription
|
|
22534
22603
|
*/
|
|
22535
22604
|
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }) {
|
|
22536
22605
|
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId);
|
|
22537
22606
|
}
|
|
22538
22607
|
/**
|
|
22539
|
-
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true
|
|
22608
|
+
* Subscribe a subscription. Support both real and virtual payment. Need go through payment flow using the paymentOrderNo if paymentFlowRequired true.
|
|
22609
|
+
* __ACTIVE USER subscription can't do subscribe again.__
|
|
22610
|
+
* __The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.__
|
|
22611
|
+
* User with permission SANDBOX will create sandbox subscription that not real paid.
|
|
22612
|
+
*
|
|
22613
|
+
* Returns: created subscription
|
|
22540
22614
|
*/
|
|
22541
22615
|
createSubscription({ userId, data }) {
|
|
22542
22616
|
return this.newInstance().postNsUsersByUseridSubscriptions(userId, data);
|
|
22543
22617
|
}
|
|
22544
22618
|
/**
|
|
22545
|
-
* Get user subscription billing histories
|
|
22619
|
+
* Get user subscription billing histories.
|
|
22620
|
+
* Returns: paginated subscription history
|
|
22546
22621
|
*/
|
|
22547
22622
|
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }) {
|
|
22548
22623
|
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams);
|
|
22549
22624
|
}
|
|
22550
22625
|
/**
|
|
22551
|
-
* Request to change a subscription billing account, this will guide user to payment station.
|
|
22626
|
+
* Request to change a subscription billing account, this will guide user to payment station.
|
|
22627
|
+
* The actual change will happen at the 0 payment notification successfully handled.
|
|
22628
|
+
* Only ACTIVE USER subscription with real currency billing account can be changed.
|
|
22629
|
+
* Returns: updated subscription
|
|
22552
22630
|
*/
|
|
22553
22631
|
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }) {
|
|
22554
22632
|
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId);
|
|
22555
22633
|
}
|
|
22556
22634
|
/**
|
|
22557
|
-
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
22635
|
+
* Cancel a subscription, only ACTIVE subscription can be cancelled.
|
|
22636
|
+
* __Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.__
|
|
22637
|
+
* Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.
|
|
22638
|
+
* Returns: cancelled subscription
|
|
22558
22639
|
*/
|
|
22559
22640
|
cancelUserSubscription({ userId, subscriptionId, data }) {
|
|
22560
22641
|
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data);
|
|
@@ -22724,13 +22805,19 @@ class WalletApi {
|
|
|
22724
22805
|
this.namespace = namespace;
|
|
22725
22806
|
this.cache = cache;
|
|
22726
22807
|
/**
|
|
22727
|
-
* get my wallet by currency code and namespace
|
|
22808
|
+
* get my wallet by currency code and namespace.
|
|
22809
|
+
*
|
|
22810
|
+
* Returns: wallet info
|
|
22811
|
+
* Path's namespace:
|
|
22812
|
+
* - can be filled with __publisher namespace__ in order to get __publisher user wallet__
|
|
22813
|
+
* - can be filled with __game namespace__ in order to get __game user wallet__
|
|
22728
22814
|
*/
|
|
22729
22815
|
this.getUserMeWallet = (currencyCode) => {
|
|
22730
22816
|
return this.newInstance().fetchNsUsersMeWalletsByCurrencycode(currencyCode);
|
|
22731
22817
|
};
|
|
22732
22818
|
/**
|
|
22733
|
-
*
|
|
22819
|
+
* Get a wallet by currency code.
|
|
22820
|
+
* Returns: wallet info
|
|
22734
22821
|
*/
|
|
22735
22822
|
this.getWalletByUserId = (userId, currencyCode) => {
|
|
22736
22823
|
return this.newInstance().fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode);
|
|
@@ -22766,7 +22853,7 @@ class WalletApi {
|
|
|
22766
22853
|
class ApiFactory {
|
|
22767
22854
|
static userAuthorization(config, options, refreshToken, namespace, overrides) {
|
|
22768
22855
|
const conf = ApiFactory.mergedConfigs(config, overrides);
|
|
22769
|
-
return new
|
|
22856
|
+
return new UserAuthorizationApi(conf, namespace, false, {
|
|
22770
22857
|
clientId: options.clientId,
|
|
22771
22858
|
redirectURI: options.redirectURI,
|
|
22772
22859
|
baseURL: options.baseURL,
|
|
@@ -40083,5 +40170,5 @@ CodeGenUtil.getFormUrlEncodedData = (data) => {
|
|
|
40083
40170
|
return formPayload;
|
|
40084
40171
|
};
|
|
40085
40172
|
|
|
40086
|
-
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 };
|
|
40173
|
+
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 };
|
|
40087
40174
|
//# sourceMappingURL=index.browser.es.js.map
|