@accelbyte/sdk 0.2.0-beta.3 → 0.2.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"NAMESPACE:{namespace}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11101</li><li><i>Returns</i>: URL data</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: country code list</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Action code</i>: 11303</li><li><i>Returns</i>: list of namespaces</li></ul>
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<br><b>Client with user token can get user profile in target namespace</b><br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:PROFILE"</b>, action=2 <b>(READ)</b></li><li><i>Action code</i>: 11403</li><li><i>Returns</i>: user profile</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to get <b>publisher user profile</b></li><li>can be filled with <b>game namespace</b> in order to get <b>game user profile</b></li></ul></li><li><i>Language</i> : allowed format: en, en-US</li><li><i>Timezone</i> : IANA time zone, e.g. Asia/Shanghai</li></ul>
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.<br><b>Client with user token can create user profile in target namespace</b><br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:PROFILE"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11401</li><li><i>Returns</i>: Created user profile</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to create <b>publisher user profile</b></li><li>can be filled with <b>game namespace</b> in order to create <b>game user profile</b></li></ul></li><li><i>Language</i> : allowed format: en, en-US</li><li><i>Country</i> : ISO3166-1 alpha-2 two letter, e.g. US </li><li><i>Timezone</i> : IANA time zone, e.g. Asia/Shanghai</li></ul>
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.<br>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.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:PROFILE"</b>, action=4 <b>(UPDATE)</b></li><li><i>Action code</i>: 11402</li><li><i>Returns</i>: user profile</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to update <b>publisher user profile</b></li><li>can be filled with <b>game namespace</b> in order to update <b>game user profile</b></li></ul></li><li><i>Language</i> : allowed format: en, en-US</li><li><i>Timezone</i> : IANA time zone, e.g. Asia/Shanghai</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:USER:{userId}:PROFILE"</b>, action=4 <b>(UPDATE)</b></li><li><i>Action code</i>: 11402</li><li><i>Request body</i> : allowed format: JSON object</li><li><i>Returns</i>: Updated custom attributes</li></ul>
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.<br/>The response will contains list of diff cache files along with its download url.<br/><br/>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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.<p>Other detail info: <ul><li><i>Returns</i>: list of DLC</li></ul>
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.<p>Other detail info: <ul><li><i>Returns</i>: appId of game and list of its builds by platformId</li></ul>
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.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: build manifest</li></ul>
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.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: build manifest</li></ul>
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.<br/>The response will contains list of diff cache files along with its download url.<br/><br/>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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
- * <p>Available Type: </p>
7301
- * <ul>
7302
- * <li>email</li>
7303
- * <li>password</li>
7304
- * <li>displayname</li>
7305
- * <li>dateofbirth</li>
7306
- * <li>country</li>
7307
- * <li>language</li>
7308
- * </ul>
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
- * <p>Fetch the status to check whether or not a user's account is on a deletion status</p>
7406
- * <p>Requires valid user access token</p>
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
- * <p>Request an account's deletion</p>
7413
- * <p>Requires valid user access token and password
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
- * <p>Cancel a deletion request</p>
7420
- * <p>Requires valid user access token</p>
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
- * <p>Fetch personal data request list</p>
7547
- * <p>Requires valid user access token</p>
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
- * <p>Create a request for personal data download</p>
7554
- * <p>Requires valid user access token</p>
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
- * <p>Cancel the request for personal data dowwnload</p>
7561
- * <p>Requires valid user access token</p>
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
- * <p>Create a download URL for personal data request</p>
7568
- * <p>Requires valid user access token</p>
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
- * <p>No role required</p>
7665
- * <p>This method is to get list of input validation configuration.</p>
7666
- * <p><code>regex</code> parameter will be returned if <code>isCustomRegex</code> is true. Otherwise, it will be empty.</p>
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 UserAuthorization {
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
- * <p>This method supports grant type:</p><ol>
16653
- * <li>Grant Type == <code>authorization_code</code>:<br />
16681
+ * This method supports grant type:
16682
+ * - Grant Type == `authorization_code`:
16654
16683
  * &nbsp;&nbsp;&nbsp; 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
- * </li>
16659
- * <li>Grant Type == <code>password</code>:<br />
16687
+ *
16688
+ * - Grant Type == `password`:
16660
16689
  * &nbsp;&nbsp;&nbsp; The grant type to use for authenticating a user, whether it's by email / username and password combination
16661
16690
  * or through platform.
16662
- * </li>
16663
- * <li>Grant Type == <code>refresh_token</code>:<br />
16691
+ *
16692
+ * - Grant Type == `refresh_token`:
16664
16693
  * &nbsp;&nbsp;&nbsp; Used to get a new access token for a valid refresh token.
16665
- * </li>
16666
- * <li>Grant Type == <code>client_credentials</code>:<br />
16694
+ *
16695
+ * - Grant Type == `client_credentials`:
16667
16696
  * &nbsp;&nbsp;&nbsp; It generates a token by checking the client credentials provided through Authorization header.
16668
- * </li></ol>
16669
- * <h2>Access Token Content</h2>
16670
- * <p>Following is the access token’s content:</p>
16671
- * <ul>
16672
- * <li>
16673
- * <p><strong>namespace</strong>. It is the namespace the token was generated from.</p>
16674
- * </li>
16675
- * <li>
16676
- * <p><strong>display_name</strong>. The display name of the sub. It is empty if the token is generated from the client credential</p>
16677
- * </li>
16678
- * <li>
16679
- * <p><strong>roles</strong>. The sub’s roles. It is empty if the token is generated from the client credential</p>
16680
- * </li>
16681
- * <li>
16682
- * <p><strong>namespace_roles</strong>. The sub’s roles scoped to namespace. Improvement from roles, which make the role scoped to specific namespace instead of global to publisher namespace</p>
16683
- * </li>
16684
- * <li>
16685
- * <p><strong>permissions</strong>. The sub or aud’ permissions</p>
16686
- * </li>
16687
- * <li>
16688
- * <p><strong>bans</strong>. The sub’s list of bans. It is used by the IAM client for validating the token.</p>
16689
- * </li>
16690
- * <li>
16691
- * <p><strong>jflgs</strong>. 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:</p>
16692
- * <ul>
16693
- * <li><p>1: Email Address Verified</p></li>
16694
- * <li><p>2: Phone Number Verified</p></li>
16695
- * <li><p>4: Anonymous</p></li>
16696
- * <li><p>8: Suspicious Login</p></li>
16697
- * </ul>
16698
- * </li>
16699
- * <li>
16700
- * <p><strong>aud</strong>. The aud is the targeted resource server.</p>
16701
- * </li>
16702
- * <li>
16703
- * <p><strong>iat</strong>. The time the token issues at. It is in Epoch time format</p>
16704
- * </li>
16705
- * <li>
16706
- * <p><strong>exp</strong>. The time the token expires. It is in Epoch time format</p>
16707
- * </li>
16708
- * <li>
16709
- * <p><strong>client_id</strong>. The UserID. The sub is omitted if the token is generated from client credential</p>
16710
- * </li>
16711
- * <li>
16712
- * <p><strong>scope</strong>. The scope of the access request, expressed as a list of space-delimited, case-sensitive strings</p>
16713
- * </li>
16714
- * </ul>
16715
- * <h2>Bans</h2>
16716
- * <p>The JWT contains user's active bans with its expiry date. List of ban types can be obtained from /bans.</p>
16717
- * <h2>Device Cookie Validation</h2>
16718
- * <p><i><b>For grant type "password" only</b></i></p>
16719
- * <p>Device Cookie is used to protect the user account from brute force login attack, <a target="_blank" href="https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies">more detail from OWASP<a>.</p>
16720
- * <p>This method will read device cookie from request header <b>Auth-Trust-Id</b>. If device cookie not found, it will generate a new one and set it into response body <b>auth_trust_id</b> when successfully login.</p>
16721
- * <h2>Track Login History</h2>
16722
- * <p>This method will track login history to detect suspicious login activity, please provide <b>Device-Id</b> (alphanumeric) in request header parameter otherwise it will set to "unknown".</p>
16723
- * <p>Align with General Data Protection Regulation in Europe, user login history will be kept within 28 days by default"</p>
16724
- * <h2>2FA remember device</h2>
16725
- * <p>To remember device for 2FA, should provide cookie: device_token or header: Device-Token</p>
16726
- * <p>action code: 10703
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
- * <p>This method is used to remove <b>access_token</b>, <b>refresh_token</b> from cookie and revoke token from usage.</p>
17307
- * <p>Supported methods:</p>
17308
- * <ul>
17309
- * <li>VerifyToken to verify token from header</li>
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
- * <p>This method revokes a token.</p>
17324
- * <p>This method requires authorized requests header with Basic Authentication from client that establish the token.</p><br>action code: 10706
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<br/>
17339
- * <p>This method is used for verifying 2FA code.</p>
17340
- * <h2>2FA remember device</h2>
17341
- * <p>To remember device for 2FA, should provide cookie: device_token or header: Device-Token</p>
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
- * <p>This method get country location based on the request.</p>
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<br/>
17367
- * <p>
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
- * </p>
17372
- * <p>The third party platform and platform group covered for this is:</p>
17373
- * <ul>
17374
- * <li>(psn) ps4web</li>
17375
- * <li>(psn) ps4</li>
17376
- * <li>(psn) ps5</li>
17377
- * <li>epicgames</li>
17378
- * <li>twitch</li>
17379
- * <li>awscognito</li>
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 <i>/mfa/verify</i> using <b>mfa_token</b> from this method response.
17414
+ * If user already enable 2FA, then invoke _/mfa/verify_ using __mfa_token__ from this method response.
17389
17415
  *
17390
- * <h2>Device Cookie Validation</h2>
17416
+ * ##Device Cookie Validation
17391
17417
  *
17392
- * Device Cookie is used to protect the user account from brute force login attack, <a target="_blank" href="https://owasp.org/www-community/Slow_Down_Online_Guessing_Attacks_with_Device_Cookies">more detail from OWASP<a>.
17393
- * This method will read device cookie from cookie <b>auth-trust-id</b>. If device cookie not found, it will generate a new one and set it into cookie when successfully authenticate.
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 <strong>/iam/v3/link/code/request</strong>.<br>
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
- * <p>This method is used to get 8-digits backup codes.
18004
- * Each code is a one-time code and will be deleted once used.</p>
18005
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to enable 2FA backup codes.</p>
18013
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to enable 2FA backup codes.</p>
18021
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to enable 2FA backup codes.</p>
18029
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to disable 2FA authenticator.</p>
18037
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to get user enabled factors.</p>
18045
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to make 2FA factor default.</p>
18053
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to enable 2FA authenticator.</p>
18061
- * <p>This method Requires valid user access token</p>
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
- * <p>This method is used to generate a secret key for 3rd-party authenticator app.
18069
- * A QR code URI is also returned so that frontend can generate QR code image.</p>
18070
- * <p>This method Requires valid user access token</p>
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
- * <p>The verification code is sent to email address</p>
19321
- * <p>Available contexts for use : </p>
19322
- * <ol>
19323
- * <li>
19324
- * <strong>UserAccountRegistration</strong>
19325
- * <p>a context type used for verifying email address in user account registration. It returns 409 if the email address already verified.
19326
- * <strong><em>It is the default context if the Context field is empty</em></strong></p>
19327
- * </li>
19328
- * <li>
19329
- * <strong>UpdateEmailAddress</strong>
19330
- * <p>a context type used for verify user before updating email address.(Without email address verified checking)</p>
19331
- * </li>
19332
- * <li><strong>upgradeHeadlessAccount</strong>
19333
- * <p>The context is intended to be used whenever the email address wanted to be automatically verified on upgrading a headless account.
19334
- * If this context used, IAM rejects the request if the email address is already used by others by returning HTTP Status Code 409.</p>
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
- * <p>Will consume code if validateOnly is set false</p>
19345
- * <p>Required valid user authorization</p>
19346
- * <p>Redeems a verification code sent to a user to verify the user's contact address is correct</p>
19347
- * <p>Available ContactType : <b>email</b></p>
19348
- * <p>action code: 10107</p>
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
- * <p>If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded</p>
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
- * <p>The method upgrades a headless account by linking the headless account with the email address and the password.
19358
- * By upgrading the headless account into a full account, the user could use the email address and password for using Justice IAM. </p>
19359
- * <p>The method is a shortcut for upgrading a headless account and verifying the email address in one call.
19360
- * In order to get a verification code for the method, please check the send verification code method.</p>
19361
- * <p>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.<br/>
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
- * <ul>
19364
- * <li>displayName</li>
19365
- * <li>dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29</li>
19366
- * <li>country : format ISO3166-1 alpha-2 two letter, e.g. US</li>
19367
- * </ul>
19368
- * <br>action code : 10124</p>
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
- * <br>
19401
+ *
19378
19402
  * The method is a shortcut for upgrading a headless account and verifying the email address in one call.
19379
- * In order to get a verification code for the method, please check the <a href="#operations-Users-PublicSendVerificationCodeV3">send verification code method</a>.
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
- * <ul>
19384
- * <li>displayName</li>
19385
- * <li>dateOfBirth : format YYYY-MM-DD, e.g. 2019-04-29</li>
19386
- * <li>country : format ISO3166-1 alpha-2 two letter, e.g. US</li>
19387
- * </ul>
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
- * <p>This method retrieves platform accounts linked to user. Required valid user authorization.
19395
- * <br>action code: 10128 </p>
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
- * <p><br><b>Prerequisite:</b>
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
- * <h2>Supported platforms:</h2>
19405
- * <ul>
19406
- * <li><strong>steam</strong>: The ticket’s value is the authentication code returned by Steam.</li>
19407
- * <li><strong>steamopenid</strong>: Steam's user authentication method using OpenID 2.0. The ticket's value is URL generated by Steam on web authentication</li>
19408
- * <li><strong>facebook</strong>: The ticket’s value is the authorization code returned by Facebook OAuth</li>
19409
- * <li><strong>google</strong>: The ticket’s value is the authorization code returned by Google OAuth</li>
19410
- * <li><strong>oculus</strong>: The ticket’s value is a string composed of Oculus's user ID and the nonce separated by a colon (:).</li>
19411
- * <li><strong>twitch</strong>: The ticket’s value is the authorization code returned by Twitch OAuth.</li>
19412
- * <li><strong>android</strong>: The ticket's value is the Android’s device ID</li>
19413
- * <li><strong>ios</strong>: The ticket's value is the iOS’s device ID.</li>
19414
- * <li><strong>apple</strong>: The ticket’s value is the authorization code returned by Apple OAuth.</li>
19415
- * <li><strong>device</strong>: Every device that doesn't run Android and iOS is categorized as a device platform. The ticket's value is the device’s ID.</li>
19416
- * <li><strong>discord</strong>: The ticket’s value is the authorization code returned by Discord OAuth.</li>
19417
- * <li><strong>ps4web</strong>: The ticket’s value is the authorization code returned by PSN OAuth.</li>
19418
- * <li><strong>xblweb</strong>: The ticket’s value is the authorization code returned by XBox Live OAuth.</li>
19419
- * <li><strong>awscognito</strong>: The ticket’s value is the aws cognito access token (JWT).</li>
19420
- * <li><strong>epicgames</strong>: The ticket’s value is an access-token obtained from Epicgames EOS Account Service.</li>
19421
- * <li><strong>nintendo</strong>: The ticket’s value is the authorization code(id_token) returned by Nintendo OAuth.</li>
19422
- * <li><strong>stadia</strong>: The ticket’s value is a JWT Token, which can be obtained after calling the Stadia SDK's function.</li>
19423
- * </ul>
19424
- * <br>action code : 10144
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 <strong>DEPRECATED</strong>.
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
- * <h2>Supported platforms:</h2>
19448
- * <ul>
19449
- * <li><strong>steam</strong></li>
19450
- * <li><strong>steamopenid</strong></li>
19451
- * <li><strong>facebook</strong></li>
19452
- * <li><strong>google</strong></li>
19453
- * <li><strong>oculus</strong></li>
19454
- * <li><strong>twitch</strong></li>
19455
- * <li><strong>android</strong></li>
19456
- * <li><strong>ios</strong></li>
19457
- * <li><strong>apple</strong></li>
19458
- * <li><strong>device</strong></li>
19459
- * <li><strong>discord</strong></li>
19460
- * <li><strong>awscognito</strong></li>
19461
- * <li><strong>epicgames</strong></li>
19462
- * <li><strong>nintendo</strong></li>
19463
- * <li><strong>stadia</strong></li>
19464
- * </ul>
19465
- * <p>Unlink user's account from a specific platform. 'justice' platform might have multiple accounts from different namespaces linked.
19466
- * <br><i>platformNamespace</i> need to be specified when the platform ID is 'justice'.
19467
- * <br>
19468
- * <br>Unlink user's account from justice platform will enable password token grant and password update.
19469
- * <br>
19470
- * <br>If you want to unlink user's account in a game namespace, you have to specify <i>platformNamespace</i> to that game namespace.
19471
- * <br>
19472
- * <br>action code : 10121 </p>
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
- * <p>
19521
- * <b>Required attributes:</b>
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
- * <br/>
19529
- * <b>Not required attributes:</b>
19549
+ *
19550
+ * __Not required attributes:__
19530
19551
  * - displayName: Please refer to the rule from /v3/public/inputValidations API.
19531
- * </p>
19532
- * <p>This method support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
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
- * <p>This method retrieves platform accounts linked to user.
19540
- * <br>It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
19541
- * <br>Required valid user authorization.</p>
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
- * <p>Unlink user's account from for all third platforms. </p>
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
- * <p>The verification link is sent to email address</p>
19556
- * <p>It will not send request if user email is already verified</p>
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
- * <p>This method retrieves platform accounts linked to user. Required valid user authorization.
19564
- * <br>action code: 10128 </p>
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:<br>
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:<br>
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.<br>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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.<br>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.<br/><br/>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
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.<br>Other detail info: <ul></ul>
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.<br>Other detail info: <ul><li><i>Leave the policyType empty if you want to be responded with all policy type</i></li><li><i>Fill the tags if you want to filter the responded policy by tags</i></li><li><i>Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist</i></li><li><i>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:<ul><li>Document 1 (default): Region US (default), UA</li><li>Document 2 (default): Region US (default)</li><li>Document 3 (default): Region US (default)</li><li>User: Region UA</li><li>Query: alwaysIncludeDefault: true</li><li>Response: Document 1 (UA), Document 2 (US), Document 3 (US)</li></ul>
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.<br>Other detail info: <ul><li><i>Leave the policyType empty if you want to be responded with all policy type</i></li><li><i>Fill the tags if you want to filter the responded policy by tags</i></li><li><i>Fill the defaultOnEmpty with true if you want to be responded with default country-specific policy if your requested country is not exist</i></li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Currency List</li></ul>
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.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
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.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li><li><i>Returns</i>: entitlement list</li></ul>
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<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
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.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
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<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=4 (UPDATE)</li><li><i>Returns</i>: consumed entitlement</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:FULFILLMENT", action=1 (CREATED)</li><li><i>Returns</i>: fulfillment result</li></ul>
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.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Returns</i>: the item with that appId</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: item dynamic data</li></ul>
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.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Returns</i>: the list of items</li></ul>
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.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store item)</li><li><i>Returns</i>: item data</li></ul>
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.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store app)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store app)</li><li><i>Returns</i>: app data</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ORDER", action=2 (READ)</li><li><i>Returns</i>: get order</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ORDER", action=2 (READ)</li><li><i>Returns</i>: get order</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ORDER", action=4 (UPDATE)</li><li><i>Returns</i>: cancelled order</li></ul>
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. User with permission SANDBOX will create sandbox order that not real paid for xsolla/alipay and not validate price for wxpay.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ORDER", action=1 (CREATE)</li><li><i>Optional permission(user with this permission will create sandbox order)</i>: resource="SANDBOX", action=1 (CREATE)</li><li>It will be forbidden while the user is banned: ORDER_INITIATE or ORDER_AND_PAYMENT</li><li><i>Returns</i>: created order</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:PAYMENT:ACCOUNT", action=2 (READ)</li><li><i>Returns</i>: Payment account list</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:PAYMENT:ACCOUNT", action=8 (DELETE)</li><li><i>Returns</i>:</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Payment order details</li></ul>
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).<br>Other detail info: <ul><li><i>Returns</i>: Payment process result</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Public config</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Payment order paid result</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Payment method list</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: tax result</li></ul>
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.<br>Other detail info: <ul><li><i>Returns</i>: Get payment link</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=2 (READ)</li><li><i>Returns</i>: paginated subscription</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=2 (READ)</li><li><i>Returns</i>: subscription</li></ul>
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.<br><b>ACTIVE USER subscription can't do subscribe again.</b><br><b>The next billing date will be X(default 4) hours before the current period ends if correctly subscribed.</b><br>User with permission SANDBOX will create sandbox subscription that not real paid.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=1 (CREATE)</li><li><i>Optional permission(user with this permission will create sandbox subscription)</i>: resource="SANDBOX", action=1 (CREATE)</li><li>It will be forbidden while the user is banned: ORDER_INITIATE or ORDER_AND_PAYMENT</li><li><i>Returns</i>: created subscription</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=2 (READ)</li><li><i>Returns</i>: paginated subscription history</li></ul>
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. The actual change will happen at the 0 payment notification successfully handled.<br>Only ACTIVE USER subscription with real currency billing account can be changed.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=4 (UPDATE)</li><li><i>Returns</i>: updated subscription</li></ul>
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. <b>Ensure successfully cancel, recommend at least 1 day before current period ends, otherwise it may be charging or charged.</b><br>Set immediate true, the subscription will be terminated immediately, otherwise till the end of current billing cycle.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=4 (UPDATE)</li><li><i>Returns</i>: cancelled subscription</li></ul>
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.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:WALLET", action=2 (READ)</li><li><i>Returns</i>: wallet info</li><li><i>Path's namespace</i> : <ul> <li>can be filled with <b>publisher namespace</b> in order to get <b>publisher user wallet</b></li> <li>can be filled with <b>game namespace</b> in order to get <b>game user wallet</b></li> </ul></li></ul>
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
- * get a wallet by currency code.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:WALLET", action=2 (READ)</li><li><i>Returns</i>: wallet info</li></ul>
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 UserAuthorization(conf, namespace, false, {
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