@accelbyte/sdk 0.1.1-alpha.59 → 0.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/index.browser.es.js +804 -354
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +10161 -10905
- package/dist/index.node.es.js +804 -354
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +836 -363
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/next/pages/index.tsx +15 -14
- package/examples/next/yarn.lock +14 -14
- package/examples/node/index.mjs +13 -12
- package/examples/node/package.json +1 -1
- package/examples/node/yarn.lock +14 -14
- package/examples/vite/package.json +1 -1
- package/examples/vite/src/Sdk.ts +12 -12
- package/examples/vite/yarn.lock +14 -14
- package/package.json +1 -1
- package/examples/next/.env.example +0 -7
- package/examples/node/.env.example +0 -7
- package/examples/vite/.env.example +0 -5
package/dist/index.browser.es.js
CHANGED
|
@@ -2956,7 +2956,7 @@ class FileUpload$ {
|
|
|
2956
2956
|
/**
|
|
2957
2957
|
* 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>
|
|
2958
2958
|
*/
|
|
2959
|
-
|
|
2959
|
+
postV1NsFoldersByFolderFiles(folder, queryParams) {
|
|
2960
2960
|
const params = { ...queryParams };
|
|
2961
2961
|
const url = '/basic/v1/public/namespaces/{namespace}/folders/{folder}/files'
|
|
2962
2962
|
.replace('{namespace}', this.namespace)
|
|
@@ -2967,7 +2967,7 @@ class FileUpload$ {
|
|
|
2967
2967
|
/**
|
|
2968
2968
|
* Generate an upload URL for user content. It's valid for 10 minutes.<br/>There are 2 kinds of storage limitation per user : maximum file count and maximum file size.<br/>The threshold of those limitations is different between upload category that is used.<br/>Other detail info: <ul><li><i>Required permission</i>: resource = <b>"NAMESPACE:{namespace}:USER:{userId}:FILEUPLOAD"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11102</li><li><i>Default maximum file count per user</i>: 10 files</li><li><i>Default maximum file size per user</i>: 104857600 bytes</li><li><i>Returns</i>: URL data</li></ul>
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
postV1NsUsersByUseridFiles(userId, queryParams) {
|
|
2971
2971
|
const params = { category: 'default', ...queryParams };
|
|
2972
2972
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/files'
|
|
2973
2973
|
.replace('{namespace}', this.namespace)
|
|
@@ -5983,7 +5983,7 @@ class FileUploadApi {
|
|
|
5983
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>
|
|
5984
5984
|
*/
|
|
5985
5985
|
this.generateFolderUploadFileUrl = ({ folder, queryParams }) => {
|
|
5986
|
-
return this.newInstance().
|
|
5986
|
+
return this.newInstance().postV1NsFoldersByFolderFiles(folder, queryParams);
|
|
5987
5987
|
};
|
|
5988
5988
|
/**
|
|
5989
5989
|
* Upload the file based on the URL generated by the `generateFolderUploadFileUrl` method
|
|
@@ -6051,7 +6051,7 @@ class Misc$ {
|
|
|
6051
6051
|
/**
|
|
6052
6052
|
* List time zones.<br>Other detail info: <ul><li><i>Returns</i>: time zones</li></ul>
|
|
6053
6053
|
*/
|
|
6054
|
-
|
|
6054
|
+
fetchV1NsMiscTimezones() {
|
|
6055
6055
|
const params = {};
|
|
6056
6056
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/timezones'.replace('{namespace}', this.namespace);
|
|
6057
6057
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6065,7 +6065,7 @@ class Misc$ {
|
|
|
6065
6065
|
/**
|
|
6066
6066
|
* List languages.<br>Other detail info: <ul><li><i>Returns</i>: language list</li></ul>
|
|
6067
6067
|
*/
|
|
6068
|
-
|
|
6068
|
+
fetchV1NsMiscLanguages() {
|
|
6069
6069
|
const params = {};
|
|
6070
6070
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/languages'.replace('{namespace}', this.namespace);
|
|
6071
6071
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6079,7 +6079,7 @@ class Misc$ {
|
|
|
6079
6079
|
/**
|
|
6080
6080
|
* List countries.<br>Other detail info: <ul><li><i>Returns</i>: country code list</li></ul>
|
|
6081
6081
|
*/
|
|
6082
|
-
|
|
6082
|
+
fetchV1NsMiscCountries(queryParams) {
|
|
6083
6083
|
const params = { lang: 'en', ...queryParams };
|
|
6084
6084
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/countries'.replace('{namespace}', this.namespace);
|
|
6085
6085
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6104,10 +6104,10 @@ class MiscApi {
|
|
|
6104
6104
|
* List countries.<br>Other detail info: <ul><li><i>Returns</i>: country code list</li></ul>
|
|
6105
6105
|
*/
|
|
6106
6106
|
this.getCountries = (lang) => {
|
|
6107
|
-
return this.newInstance().
|
|
6107
|
+
return this.newInstance().fetchV1NsMiscCountries({ lang });
|
|
6108
6108
|
};
|
|
6109
6109
|
this.getLanguages = () => {
|
|
6110
|
-
return this.newInstance().
|
|
6110
|
+
return this.newInstance().fetchV1NsMiscLanguages();
|
|
6111
6111
|
};
|
|
6112
6112
|
}
|
|
6113
6113
|
newInstance() {
|
|
@@ -6159,7 +6159,7 @@ class Namespace$ {
|
|
|
6159
6159
|
/**
|
|
6160
6160
|
* Get namespace info related publisher namespace.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:NAMESPACE"</b>, action=2 <b>(READ)</b></li><li><i>Action code</i>: 11305</li><li><i>Returns</i>: Namespace info related publisher namespace</li></ul>
|
|
6161
6161
|
*/
|
|
6162
|
-
|
|
6162
|
+
fetchV1NsPublisher() {
|
|
6163
6163
|
const params = {};
|
|
6164
6164
|
const url = '/basic/v1/public/namespaces/{namespace}/publisher'.replace('{namespace}', this.namespace);
|
|
6165
6165
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6296,7 +6296,7 @@ class UserProfile$ {
|
|
|
6296
6296
|
/**
|
|
6297
6297
|
* Get user public profile by ids.<br>Other detail info: <ul><li><i>Action code</i>: 11405</li><li><i>Returns</i>: user public profiles</li></ul>
|
|
6298
6298
|
*/
|
|
6299
|
-
|
|
6299
|
+
fetchV1NsProfilesPublic(queryParams) {
|
|
6300
6300
|
const params = { ...queryParams };
|
|
6301
6301
|
const url = '/basic/v1/public/namespaces/{namespace}/profiles/public'.replace('{namespace}', this.namespace);
|
|
6302
6302
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6310,7 +6310,7 @@ class UserProfile$ {
|
|
|
6310
6310
|
/**
|
|
6311
6311
|
* Get user public profile by public id.<br>Other detail info: <ul><li><i>Returns</i>: user public profile</li></ul>
|
|
6312
6312
|
*/
|
|
6313
|
-
|
|
6313
|
+
fetchV1NsProfilesPublicByPublicId(queryParams) {
|
|
6314
6314
|
const params = { ...queryParams };
|
|
6315
6315
|
const url = '/basic/v1/public/namespaces/{namespace}/profiles/public/byPublicId'.replace('{namespace}', this.namespace);
|
|
6316
6316
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6324,7 +6324,7 @@ class UserProfile$ {
|
|
|
6324
6324
|
/**
|
|
6325
6325
|
* Get my private custom attributes.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:PROFILE"</b>, action=2 <b>(READ)</b></li><li><i>Returns</i>: custom attributes</li><li><i>Action code</i>: 11403</li></ul>
|
|
6326
6326
|
*/
|
|
6327
|
-
|
|
6327
|
+
fetchV1NsUsersMeProfilesPrivateCustomAttributes() {
|
|
6328
6328
|
const params = {};
|
|
6329
6329
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/privateCustomAttributes'.replace('{namespace}', this.namespace);
|
|
6330
6330
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6338,7 +6338,7 @@ class UserProfile$ {
|
|
|
6338
6338
|
/**
|
|
6339
6339
|
* Update partially private custom attributes tied to me.<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>Request body</i>: allowed format: JSON object</li><li><i>Returns</i>: Updated custom attributes</li></ul>
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
putV1NsUsersMeProfilesPrivateCustomAttributes(data) {
|
|
6342
6342
|
const params = {};
|
|
6343
6343
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/privateCustomAttributes'.replace('{namespace}', this.namespace);
|
|
6344
6344
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -6347,7 +6347,7 @@ class UserProfile$ {
|
|
|
6347
6347
|
/**
|
|
6348
6348
|
* 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>
|
|
6349
6349
|
*/
|
|
6350
|
-
|
|
6350
|
+
fetchV1NsUsersMeProfiles() {
|
|
6351
6351
|
const params = {};
|
|
6352
6352
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
6353
6353
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6361,7 +6361,7 @@ class UserProfile$ {
|
|
|
6361
6361
|
/**
|
|
6362
6362
|
* 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>
|
|
6363
6363
|
*/
|
|
6364
|
-
|
|
6364
|
+
postV1NsUsersMeProfiles(data) {
|
|
6365
6365
|
const params = {};
|
|
6366
6366
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
6367
6367
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -6370,7 +6370,7 @@ class UserProfile$ {
|
|
|
6370
6370
|
/**
|
|
6371
6371
|
* Update my profile.<br>Updates user profile in the target namespace (namespace in the path). 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 endpoint 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>
|
|
6372
6372
|
*/
|
|
6373
|
-
|
|
6373
|
+
putV1NsUsersMeProfiles(data) {
|
|
6374
6374
|
const params = {};
|
|
6375
6375
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
6376
6376
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -6379,7 +6379,7 @@ class UserProfile$ {
|
|
|
6379
6379
|
/**
|
|
6380
6380
|
* Get my zip code.<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>: 11407</li><li><i>Returns</i>: user zip code</li></ul>
|
|
6381
6381
|
*/
|
|
6382
|
-
|
|
6382
|
+
fetchV1NsUsersMeProfilesZipCode() {
|
|
6383
6383
|
const params = {};
|
|
6384
6384
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/zipCode'.replace('{namespace}', this.namespace);
|
|
6385
6385
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -6393,7 +6393,7 @@ class UserProfile$ {
|
|
|
6393
6393
|
/**
|
|
6394
6394
|
* Update my zip code.<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>: 11408</li><li><i>Returns</i>: user zip code</li></ul>
|
|
6395
6395
|
*/
|
|
6396
|
-
|
|
6396
|
+
patchV1NsUsersMeProfilesZipCode(data) {
|
|
6397
6397
|
const params = {};
|
|
6398
6398
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/zipCode'.replace('{namespace}', this.namespace);
|
|
6399
6399
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -6402,7 +6402,7 @@ class UserProfile$ {
|
|
|
6402
6402
|
/**
|
|
6403
6403
|
* Get user profile public info.<br>Other detail info: <ul><li><i>Action code</i>: 11404</li><li><i>Returns</i>: user public profile</li></ul>
|
|
6404
6404
|
*/
|
|
6405
|
-
|
|
6405
|
+
fetchV1NsUsersByUseridProfilesPublic(userId) {
|
|
6406
6406
|
const params = {};
|
|
6407
6407
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/public'
|
|
6408
6408
|
.replace('{namespace}', this.namespace)
|
|
@@ -6418,7 +6418,7 @@ class UserProfile$ {
|
|
|
6418
6418
|
/**
|
|
6419
6419
|
* Get custom attributes info.<br>Other detail info: <ul><li><i>Action code</i>: 11404</li><li><i>Returns</i>: user custom attributes</li></ul>
|
|
6420
6420
|
*/
|
|
6421
|
-
|
|
6421
|
+
fetchV1NsUsersByUseridProfilesCustomAttributes(userId) {
|
|
6422
6422
|
const params = {};
|
|
6423
6423
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes'
|
|
6424
6424
|
.replace('{namespace}', this.namespace)
|
|
@@ -6434,7 +6434,7 @@ class UserProfile$ {
|
|
|
6434
6434
|
/**
|
|
6435
6435
|
* 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>
|
|
6436
6436
|
*/
|
|
6437
|
-
|
|
6437
|
+
putV1NsUsersByUseridProfilesCustomAttributes(userId, data) {
|
|
6438
6438
|
const params = {};
|
|
6439
6439
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes'
|
|
6440
6440
|
.replace('{namespace}', this.namespace)
|
|
@@ -6445,7 +6445,7 @@ class UserProfile$ {
|
|
|
6445
6445
|
/**
|
|
6446
6446
|
* Get user profile.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:USER:{userId}:PROFILE"</b>, action=2 <b>(READ)</b></li><li><i>Action code</i>: 11403</li><li><i>Returns</i>: user profile</li></ul>
|
|
6447
6447
|
*/
|
|
6448
|
-
|
|
6448
|
+
fetchV1NsUsersByUseridProfiles(userId) {
|
|
6449
6449
|
const params = {};
|
|
6450
6450
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
6451
6451
|
.replace('{namespace}', this.namespace)
|
|
@@ -6461,7 +6461,7 @@ class UserProfile$ {
|
|
|
6461
6461
|
/**
|
|
6462
6462
|
* Create user profile.<br>Other detail info: <ul><li><i>Required permission</i>: resource=<b>"NAMESPACE:{namespace}:USER:{userId}:PROFILE"</b>, action=1 <b>(CREATE)</b></li><li><i>Action code</i>: 11401</li><li><i>Language</i> : allowed format: en, en-US</li><li><i>Timezone</i> : IANA time zone, e.g. Asia/Shanghai</li><li><i>Returns</i>: Created user profile</li></ul>
|
|
6463
6463
|
*/
|
|
6464
|
-
|
|
6464
|
+
postV1NsUsersByUseridProfiles(userId, data) {
|
|
6465
6465
|
const params = {};
|
|
6466
6466
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
6467
6467
|
.replace('{namespace}', this.namespace)
|
|
@@ -6472,7 +6472,7 @@ class UserProfile$ {
|
|
|
6472
6472
|
/**
|
|
6473
6473
|
* Update user profile.<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>Language</i> : allowed format: en, en-US</li><li><i>Timezone</i> : IANA time zone, e.g. Asia/Shanghai</li><li><i>Returns</i>: Updated user profile</li></ul>
|
|
6474
6474
|
*/
|
|
6475
|
-
|
|
6475
|
+
putV1NsUsersByUseridProfiles(userId, data) {
|
|
6476
6476
|
const params = {};
|
|
6477
6477
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
6478
6478
|
.replace('{namespace}', this.namespace)
|
|
@@ -6483,7 +6483,7 @@ class UserProfile$ {
|
|
|
6483
6483
|
/**
|
|
6484
6484
|
* Update user profile status.<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>: 11406</li><li><i>Returns</i>: user profile</li></ul>
|
|
6485
6485
|
*/
|
|
6486
|
-
|
|
6486
|
+
patchV1NsUsersByUseridProfilesStatus(userId, data) {
|
|
6487
6487
|
const params = {};
|
|
6488
6488
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/status'
|
|
6489
6489
|
.replace('{namespace}', this.namespace)
|
|
@@ -6505,25 +6505,25 @@ class UserProfileApi {
|
|
|
6505
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>
|
|
6506
6506
|
*/
|
|
6507
6507
|
this.getUsersMeProfiles = () => {
|
|
6508
|
-
return this.newInstance().
|
|
6508
|
+
return this.newInstance().fetchV1NsUsersMeProfiles();
|
|
6509
6509
|
};
|
|
6510
6510
|
/**
|
|
6511
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>
|
|
6512
6512
|
*/
|
|
6513
6513
|
this.createUserMeProfile = (data) => {
|
|
6514
|
-
return this.newInstance().
|
|
6514
|
+
return this.newInstance().postV1NsUsersMeProfiles(data);
|
|
6515
6515
|
};
|
|
6516
6516
|
/**
|
|
6517
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>
|
|
6518
6518
|
*/
|
|
6519
6519
|
this.updateUserMeProfile = (data) => {
|
|
6520
|
-
return this.newInstance().
|
|
6520
|
+
return this.newInstance().putV1NsUsersMeProfiles(data);
|
|
6521
6521
|
};
|
|
6522
6522
|
/**
|
|
6523
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>
|
|
6524
6524
|
*/
|
|
6525
6525
|
this.updateUserCustomAttributes = (userId, data) => {
|
|
6526
|
-
return this.newInstance().
|
|
6526
|
+
return this.newInstance().putV1NsUsersByUseridProfilesCustomAttributes(userId, data);
|
|
6527
6527
|
};
|
|
6528
6528
|
}
|
|
6529
6529
|
newInstance() {
|
|
@@ -6564,7 +6564,7 @@ class Caching$ {
|
|
|
6564
6564
|
/**
|
|
6565
6565
|
* 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>
|
|
6566
6566
|
*/
|
|
6567
|
-
|
|
6567
|
+
fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId) {
|
|
6568
6568
|
const params = {};
|
|
6569
6569
|
const url = '/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}'
|
|
6570
6570
|
.replace('{namespace}', this.namespace)
|
|
@@ -6592,7 +6592,7 @@ class CachingApi {
|
|
|
6592
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>
|
|
6593
6593
|
*/
|
|
6594
6594
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
6595
|
-
return this.newInstance().
|
|
6595
|
+
return this.newInstance().fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
6596
6596
|
}
|
|
6597
6597
|
newInstance() {
|
|
6598
6598
|
// this is expensive to cache, apply "cache: false"
|
|
@@ -6696,7 +6696,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
6696
6696
|
/**
|
|
6697
6697
|
* This API is used to retrieve DLC versions against the game version.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
|
|
6698
6698
|
*/
|
|
6699
|
-
|
|
6699
|
+
fetchNsDlcByBuildidLink(buildId) {
|
|
6700
6700
|
const params = {};
|
|
6701
6701
|
const url = '/buildinfo/public/namespaces/{namespace}/dlc/{buildId}/link'
|
|
6702
6702
|
.replace('{namespace}', this.namespace)
|
|
@@ -6712,7 +6712,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
6712
6712
|
/**
|
|
6713
6713
|
* 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>
|
|
6714
6714
|
*/
|
|
6715
|
-
|
|
6715
|
+
fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId) {
|
|
6716
6716
|
const params = {};
|
|
6717
6717
|
const url = '/buildinfo/public/namespaces/{namespace}/apps/latest/byDLCAppId/{dlcAppId}'
|
|
6718
6718
|
.replace('{namespace}', this.namespace)
|
|
@@ -6728,7 +6728,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
6728
6728
|
/**
|
|
6729
6729
|
* 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>
|
|
6730
6730
|
*/
|
|
6731
|
-
|
|
6731
|
+
fetchNsDlcsLatestByGameAppIdByAppid(appId) {
|
|
6732
6732
|
const params = {};
|
|
6733
6733
|
const url = '/buildinfo/public/namespaces/{namespace}/dlcs/latest/byGameAppId/{appId}'
|
|
6734
6734
|
.replace('{namespace}', this.namespace)
|
|
@@ -6744,7 +6744,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
6744
6744
|
/**
|
|
6745
6745
|
* This API is used to retrieve compatibility of specific DLC versions against the game version.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li></ul>
|
|
6746
6746
|
*/
|
|
6747
|
-
|
|
6747
|
+
fetchNsDlcByBuildidCompatibility(buildId) {
|
|
6748
6748
|
const params = {};
|
|
6749
6749
|
const url = '/buildinfo/public/namespaces/{namespace}/dlc/{buildId}/compatibility'
|
|
6750
6750
|
.replace('{namespace}', this.namespace)
|
|
@@ -6771,13 +6771,13 @@ class DlcApi {
|
|
|
6771
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>
|
|
6772
6772
|
*/
|
|
6773
6773
|
getLatestDLCByGameAppId(appId) {
|
|
6774
|
-
return this.newInstance().
|
|
6774
|
+
return this.newInstance().fetchNsDlcsLatestByGameAppIdByAppid(appId);
|
|
6775
6775
|
}
|
|
6776
6776
|
/**
|
|
6777
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>
|
|
6778
6778
|
*/
|
|
6779
6779
|
getBaseGamesByDlcAppId(dlcAppId) {
|
|
6780
|
-
return this.newInstance().
|
|
6780
|
+
return this.newInstance().fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId);
|
|
6781
6781
|
}
|
|
6782
6782
|
newInstance() {
|
|
6783
6783
|
// this is be expensive to cache, apply "cache: false"
|
|
@@ -7015,7 +7015,7 @@ class Downloader$ {
|
|
|
7015
7015
|
/**
|
|
7016
7016
|
* This API is used to Generate Download URLs for the requested blocks inside the specified buildId.<br/>The download URL generation may returns Signed URL or Public URL, depends on service configurations.<br/>Before processing the URL generation, it will validate the user entitlement first, if not entitled then the request will be refused.<br/><br/>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: Block Download URLs</li></ul>
|
|
7017
7017
|
*/
|
|
7018
|
-
|
|
7018
|
+
postNsBuildsByBuildidBlocksUrls(buildId, data) {
|
|
7019
7019
|
const params = {};
|
|
7020
7020
|
const url = '/buildinfo/public/namespaces/{namespace}/builds/{buildId}/blocks/urls'
|
|
7021
7021
|
.replace('{namespace}', this.namespace)
|
|
@@ -7026,7 +7026,7 @@ class Downloader$ {
|
|
|
7026
7026
|
/**
|
|
7027
7027
|
* This API is used to check whether supplied list of appId has valid buildmanifest and at least one of its build set as latest.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: list of build availability</li></ul>
|
|
7028
7028
|
*/
|
|
7029
|
-
|
|
7029
|
+
fetchNsBulkCheckLatest(queryParams) {
|
|
7030
7030
|
const params = { ...queryParams };
|
|
7031
7031
|
const url = '/buildinfo/public/namespaces/{namespace}/bulkCheckLatest'.replace('{namespace}', this.namespace);
|
|
7032
7032
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -7040,7 +7040,7 @@ class Downloader$ {
|
|
|
7040
7040
|
/**
|
|
7041
7041
|
* This API is used to get build manifest. The binary diff will be calculated in the client side, while obsolete file list will be generated by server side.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: build manifest</li></ul>
|
|
7042
7042
|
*/
|
|
7043
|
-
|
|
7043
|
+
fetchNsV2UpdategameByAppidByVersionByPlatformid(appId, version, platformId) {
|
|
7044
7044
|
const params = {};
|
|
7045
7045
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{version}/{platformId}'
|
|
7046
7046
|
.replace('{namespace}', this.namespace)
|
|
@@ -7058,7 +7058,7 @@ class Downloader$ {
|
|
|
7058
7058
|
/**
|
|
7059
7059
|
* 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>
|
|
7060
7060
|
*/
|
|
7061
|
-
|
|
7061
|
+
fetchNsAvailablebuildsByAppid(appId) {
|
|
7062
7062
|
const params = {};
|
|
7063
7063
|
const url = '/buildinfo/public/namespaces/{namespace}/availablebuilds/{appId}'
|
|
7064
7064
|
.replace('{namespace}', this.namespace)
|
|
@@ -7074,7 +7074,7 @@ class Downloader$ {
|
|
|
7074
7074
|
/**
|
|
7075
7075
|
* This API fetch the diff status between two builds. The diff generated by diff wrapper and saved in the database. Return 404 if no diff found.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: Simple diff status containing where to fetch diff manifest</li></ul>
|
|
7076
7076
|
*/
|
|
7077
|
-
|
|
7077
|
+
fetchNsDiffBySourcebuildidByDestinationbuildid(sourceBuildId, destinationBuildId) {
|
|
7078
7078
|
const params = {};
|
|
7079
7079
|
const url = '/buildinfo/public/namespaces/{namespace}/diff/{sourceBuildId}/{destinationBuildId}'
|
|
7080
7080
|
.replace('{namespace}', this.namespace)
|
|
@@ -7091,7 +7091,7 @@ class Downloader$ {
|
|
|
7091
7091
|
/**
|
|
7092
7092
|
* This API is used to get version history.<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: version chain from specified build</li></ul>
|
|
7093
7093
|
*/
|
|
7094
|
-
|
|
7094
|
+
fetchNsVersionHistory(queryParams) {
|
|
7095
7095
|
const params = { ...queryParams };
|
|
7096
7096
|
const url = '/buildinfo/public/namespaces/{namespace}/versionHistory'.replace('{namespace}', this.namespace);
|
|
7097
7097
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -7105,7 +7105,7 @@ class Downloader$ {
|
|
|
7105
7105
|
/**
|
|
7106
7106
|
* 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>
|
|
7107
7107
|
*/
|
|
7108
|
-
|
|
7108
|
+
fetchNsV2UpdategameByAppidByPlatformid(appId, platformId) {
|
|
7109
7109
|
const params = {};
|
|
7110
7110
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{platformId}'
|
|
7111
7111
|
.replace('{namespace}', this.namespace)
|
|
@@ -7122,7 +7122,7 @@ class Downloader$ {
|
|
|
7122
7122
|
/**
|
|
7123
7123
|
* This API is used to get build manifest of release version of the application. Supply it with source buildId and BuildInfo will output release build and obsolete files list between two version. Only works for builds uploaded with BuildInfo v2<p>Other detail info: <ul><li><i>Required permission</i>: login user</li><li><i>Returns</i>: build manifest</li></ul>
|
|
7124
7124
|
*/
|
|
7125
|
-
|
|
7125
|
+
fetchNsV2UpdategameBuildsByBuildid(buildId) {
|
|
7126
7126
|
const params = {};
|
|
7127
7127
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/builds/{buildId}'
|
|
7128
7128
|
.replace('{namespace}', this.namespace)
|
|
@@ -7149,20 +7149,20 @@ class DownloaderApi {
|
|
|
7149
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>
|
|
7150
7150
|
*/
|
|
7151
7151
|
getAvailableBuilds(appId) {
|
|
7152
|
-
return this.newInstance().
|
|
7152
|
+
return this.newInstance().fetchNsAvailablebuildsByAppid(appId);
|
|
7153
7153
|
}
|
|
7154
7154
|
/**
|
|
7155
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>
|
|
7156
7156
|
*/
|
|
7157
7157
|
getBuildManifest(appId, platformId) {
|
|
7158
7158
|
const axios = Network.create({ ...this.conf, timeout: 1800000 });
|
|
7159
|
-
return new Downloader$(axios, this.namespace, false).
|
|
7159
|
+
return new Downloader$(axios, this.namespace, false).fetchNsV2UpdategameByAppidByPlatformid(appId, platformId);
|
|
7160
7160
|
}
|
|
7161
7161
|
/**
|
|
7162
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>
|
|
7163
7163
|
*/
|
|
7164
7164
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
7165
|
-
return new Caching$(Network.create(this.conf), this.namespace, false).
|
|
7165
|
+
return new Caching$(Network.create(this.conf), this.namespace, false).fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
7166
7166
|
}
|
|
7167
7167
|
/**
|
|
7168
7168
|
* Check which platform is available for the user to download the game
|
|
@@ -7257,7 +7257,7 @@ class EventV2$ {
|
|
|
7257
7257
|
* </ul>
|
|
7258
7258
|
* <p>Requires a valid user access token</p>
|
|
7259
7259
|
*/
|
|
7260
|
-
|
|
7260
|
+
fetchEventV2NsUsersByUseridEdithistory(userId, queryParams) {
|
|
7261
7261
|
const params = { ...queryParams };
|
|
7262
7262
|
const url = '/event/v2/public/namespaces/{namespace}/users/{userId}/edithistory'
|
|
7263
7263
|
.replace('{namespace}', this.namespace)
|
|
@@ -7273,7 +7273,7 @@ class EventV2$ {
|
|
|
7273
7273
|
/**
|
|
7274
7274
|
* <p>Requires valid user access token</p>
|
|
7275
7275
|
*/
|
|
7276
|
-
|
|
7276
|
+
fetchEventV2NsUsersByUseridEvent(userId, queryParams) {
|
|
7277
7277
|
const params = { ...queryParams };
|
|
7278
7278
|
const url = '/event/v2/public/namespaces/{namespace}/users/{userId}/event'
|
|
7279
7279
|
.replace('{namespace}', this.namespace)
|
|
@@ -7309,7 +7309,7 @@ class EventApi {
|
|
|
7309
7309
|
* <p>Requires a valid user access token</p>
|
|
7310
7310
|
*/
|
|
7311
7311
|
this.getAccountHistoryByUserId = ({ userId, queryParams }) => {
|
|
7312
|
-
return this.newInstance().
|
|
7312
|
+
return this.newInstance().fetchEventV2NsUsersByUseridEdithistory(userId, queryParams);
|
|
7313
7313
|
};
|
|
7314
7314
|
}
|
|
7315
7315
|
newInstance() {
|
|
@@ -7352,7 +7352,7 @@ class DataDeletion$ {
|
|
|
7352
7352
|
/**
|
|
7353
7353
|
* <p>Requires valid user access token and password
|
|
7354
7354
|
*/
|
|
7355
|
-
|
|
7355
|
+
postGdprNsUsersByUseridDeletions(userId, data) {
|
|
7356
7356
|
const params = {};
|
|
7357
7357
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions'
|
|
7358
7358
|
.replace('{namespace}', this.namespace)
|
|
@@ -7366,7 +7366,7 @@ class DataDeletion$ {
|
|
|
7366
7366
|
/**
|
|
7367
7367
|
* <p>Requires valid user access token</p>
|
|
7368
7368
|
*/
|
|
7369
|
-
|
|
7369
|
+
deleteGdprNsUsersByUseridDeletions(userId) {
|
|
7370
7370
|
const params = {};
|
|
7371
7371
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions'
|
|
7372
7372
|
.replace('{namespace}', this.namespace)
|
|
@@ -7377,7 +7377,7 @@ class DataDeletion$ {
|
|
|
7377
7377
|
/**
|
|
7378
7378
|
* <p>Requires valid user access token</p>
|
|
7379
7379
|
*/
|
|
7380
|
-
|
|
7380
|
+
fetchGdprNsUsersByUseridDeletionsStatus(userId) {
|
|
7381
7381
|
const params = {};
|
|
7382
7382
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions/status'
|
|
7383
7383
|
.replace('{namespace}', this.namespace)
|
|
@@ -7406,21 +7406,21 @@ class DataDeletionApi {
|
|
|
7406
7406
|
* <p>Requires valid user access token</p>
|
|
7407
7407
|
*/
|
|
7408
7408
|
getGdprDeletionStatus(userId) {
|
|
7409
|
-
return this.newInstance().
|
|
7409
|
+
return this.newInstance().fetchGdprNsUsersByUseridDeletionsStatus(userId);
|
|
7410
7410
|
}
|
|
7411
7411
|
/**
|
|
7412
7412
|
* <p>Request an account's deletion</p>
|
|
7413
7413
|
* <p>Requires valid user access token and password
|
|
7414
7414
|
*/
|
|
7415
7415
|
requestAccountDeletion({ userId, data }) {
|
|
7416
|
-
return this.newInstance().
|
|
7416
|
+
return this.newInstance().postGdprNsUsersByUseridDeletions(userId, data);
|
|
7417
7417
|
}
|
|
7418
7418
|
/**
|
|
7419
7419
|
* <p>Cancel a deletion request</p>
|
|
7420
7420
|
* <p>Requires valid user access token</p>
|
|
7421
7421
|
*/
|
|
7422
7422
|
cancelAccountDeletion(userId) {
|
|
7423
|
-
return this.newInstance().
|
|
7423
|
+
return this.newInstance().deleteGdprNsUsersByUseridDeletions(userId);
|
|
7424
7424
|
}
|
|
7425
7425
|
newInstance() {
|
|
7426
7426
|
return new DataDeletion$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -7477,7 +7477,7 @@ class DataRetrieval$ {
|
|
|
7477
7477
|
/**
|
|
7478
7478
|
* <p>Requires valid user access token</p>
|
|
7479
7479
|
*/
|
|
7480
|
-
|
|
7480
|
+
fetchGdprNsUsersByUseridRequests(userId, queryParams) {
|
|
7481
7481
|
const params = { ...queryParams };
|
|
7482
7482
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests'
|
|
7483
7483
|
.replace('{namespace}', this.namespace)
|
|
@@ -7493,7 +7493,7 @@ class DataRetrieval$ {
|
|
|
7493
7493
|
/**
|
|
7494
7494
|
* <p>Requires valid user access token</p>
|
|
7495
7495
|
*/
|
|
7496
|
-
|
|
7496
|
+
postGdprNsUsersByUseridRequests(userId, data) {
|
|
7497
7497
|
const params = {};
|
|
7498
7498
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests'
|
|
7499
7499
|
.replace('{namespace}', this.namespace)
|
|
@@ -7507,7 +7507,7 @@ class DataRetrieval$ {
|
|
|
7507
7507
|
/**
|
|
7508
7508
|
* <p>Requires valid user access token</p>
|
|
7509
7509
|
*/
|
|
7510
|
-
|
|
7510
|
+
deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate) {
|
|
7511
7511
|
const params = {};
|
|
7512
7512
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}'
|
|
7513
7513
|
.replace('{namespace}', this.namespace)
|
|
@@ -7519,7 +7519,7 @@ class DataRetrieval$ {
|
|
|
7519
7519
|
/**
|
|
7520
7520
|
* <p>Requires valid user access token</p>
|
|
7521
7521
|
*/
|
|
7522
|
-
|
|
7522
|
+
postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data) {
|
|
7523
7523
|
const params = {};
|
|
7524
7524
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}/generate'
|
|
7525
7525
|
.replace('{namespace}', this.namespace)
|
|
@@ -7547,28 +7547,28 @@ class DataRetrievalApi {
|
|
|
7547
7547
|
* <p>Requires valid user access token</p>
|
|
7548
7548
|
*/
|
|
7549
7549
|
getGdprDataRequestList({ userId, queryParams }) {
|
|
7550
|
-
return this.newInstance().
|
|
7550
|
+
return this.newInstance().fetchGdprNsUsersByUseridRequests(userId, queryParams);
|
|
7551
7551
|
}
|
|
7552
7552
|
/**
|
|
7553
7553
|
* <p>Create a request for personal data download</p>
|
|
7554
7554
|
* <p>Requires valid user access token</p>
|
|
7555
7555
|
*/
|
|
7556
7556
|
requestGdprData({ userId, data }) {
|
|
7557
|
-
return this.newInstance().
|
|
7557
|
+
return this.newInstance().postGdprNsUsersByUseridRequests(userId, data);
|
|
7558
7558
|
}
|
|
7559
7559
|
/**
|
|
7560
7560
|
* <p>Cancel the request for personal data dowwnload</p>
|
|
7561
7561
|
* <p>Requires valid user access token</p>
|
|
7562
7562
|
*/
|
|
7563
7563
|
cancelGdprDataRequest({ userId, requestDate }) {
|
|
7564
|
-
return this.newInstance().
|
|
7564
|
+
return this.newInstance().deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate);
|
|
7565
7565
|
}
|
|
7566
7566
|
/**
|
|
7567
7567
|
* <p>Create a download URL for personal data request</p>
|
|
7568
7568
|
* <p>Requires valid user access token</p>
|
|
7569
7569
|
*/
|
|
7570
7570
|
requestGdprDataDownloadUrl({ userId, requestDate, data }) {
|
|
7571
|
-
return this.newInstance().
|
|
7571
|
+
return this.newInstance().postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data);
|
|
7572
7572
|
}
|
|
7573
7573
|
newInstance() {
|
|
7574
7574
|
return new DataRetrieval$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -8112,6 +8112,7 @@ class OAuth20$ {
|
|
|
8112
8112
|
* <li><strong>xblweb</strong>: The platform_token’s value is code returned by xbox after login</li>
|
|
8113
8113
|
* <li><strong>netflix</strong>: The platform_token’s value is GAT (Gamer Access Token) returned by Netflix backend</li>
|
|
8114
8114
|
* <li><strong>snapchat</strong>: The platform_token’s value is the authorization code returned by Snapchat OAuth.</li>
|
|
8115
|
+
* <br><li><strong>for specific generic oauth (OIDC)</strong>: The platform_token’s value should be the same type as created OIDC auth type whether it is auth code, idToken or bearerToken.</li>
|
|
8115
8116
|
* </ul>
|
|
8116
8117
|
* <h2>Account Group</h2>
|
|
8117
8118
|
* <p>Several platforms are grouped under account groups. The accounts on these platforms have the same platform user id.
|
|
@@ -17057,11 +17058,7 @@ class OAuth20Extension$ {
|
|
|
17057
17058
|
return Validate.responseType(() => resultPromise, OneTimeLinkingCodeResponse);
|
|
17058
17059
|
}
|
|
17059
17060
|
/**
|
|
17060
|
-
* <p>This endpoint is being used to validate one time link code.<br>
|
|
17061
|
-
* It require a valid user token.<br>
|
|
17062
|
-
* Should specify the target platform id and current user should already linked to this platform.<br>
|
|
17063
|
-
* Current user should be a headless account.<br>
|
|
17064
|
-
* </p>
|
|
17061
|
+
* <p>This endpoint is being used to validate one time link code.<br></p>
|
|
17065
17062
|
*/
|
|
17066
17063
|
postIamV3LinkCodeValidate(data) {
|
|
17067
17064
|
const params = {};
|
|
@@ -17467,7 +17464,7 @@ class ThirdPartyCredential$ {
|
|
|
17467
17464
|
/**
|
|
17468
17465
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
17469
17466
|
*/
|
|
17470
|
-
|
|
17467
|
+
fetchV3NsPlatformsClientsActive() {
|
|
17471
17468
|
const params = {};
|
|
17472
17469
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/clients/active'.replace('{namespace}', this.namespace);
|
|
17473
17470
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -17481,7 +17478,7 @@ class ThirdPartyCredential$ {
|
|
|
17481
17478
|
/**
|
|
17482
17479
|
* This is the Public API to Get All Active OIDC Platform Credential By Client ID
|
|
17483
17480
|
*/
|
|
17484
|
-
|
|
17481
|
+
fetchV3NsPlatformsClientsOidc(queryParams) {
|
|
17485
17482
|
const params = { ...queryParams };
|
|
17486
17483
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/clients/oidc'.replace('{namespace}', this.namespace);
|
|
17487
17484
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -17506,7 +17503,7 @@ class ThirdPartyCredentialApi {
|
|
|
17506
17503
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
17507
17504
|
*/
|
|
17508
17505
|
this.getThirdPartyPlatformInfo = () => {
|
|
17509
|
-
return this.newInstance().
|
|
17506
|
+
return this.newInstance().fetchV3NsPlatformsClientsActive();
|
|
17510
17507
|
};
|
|
17511
17508
|
}
|
|
17512
17509
|
/**
|
|
@@ -17589,7 +17586,7 @@ const UserResponseV3 = mod.object({
|
|
|
17589
17586
|
bans: mod.array(UserActiveBanResponseV3),
|
|
17590
17587
|
country: mod.string(),
|
|
17591
17588
|
createdAt: mod.string(),
|
|
17592
|
-
dateOfBirth: mod.string(),
|
|
17589
|
+
dateOfBirth: mod.string().nullish(),
|
|
17593
17590
|
deletionStatus: mod.boolean(),
|
|
17594
17591
|
displayName: mod.string(),
|
|
17595
17592
|
emailAddress: mod.string(),
|
|
@@ -17694,7 +17691,7 @@ class UsersV4$ {
|
|
|
17694
17691
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
17695
17692
|
*
|
|
17696
17693
|
*/
|
|
17697
|
-
|
|
17694
|
+
postV4NsTestUsers(data) {
|
|
17698
17695
|
const params = {};
|
|
17699
17696
|
const url = '/iam/v4/public/namespaces/{namespace}/test_users'.replace('{namespace}', this.namespace);
|
|
17700
17697
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -17717,7 +17714,7 @@ class UsersV4$ {
|
|
|
17717
17714
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
17718
17715
|
*
|
|
17719
17716
|
*/
|
|
17720
|
-
|
|
17717
|
+
postV4NsUsers(data) {
|
|
17721
17718
|
const params = {};
|
|
17722
17719
|
const url = '/iam/v4/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
17723
17720
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -17743,7 +17740,7 @@ class UsersV4$ {
|
|
|
17743
17740
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
17744
17741
|
*
|
|
17745
17742
|
*/
|
|
17746
|
-
|
|
17743
|
+
postV4NsUsersInviteByInvitationid(invitationId, data) {
|
|
17747
17744
|
const params = {};
|
|
17748
17745
|
const url = '/iam/v4/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
17749
17746
|
.replace('{namespace}', this.namespace)
|
|
@@ -17760,7 +17757,7 @@ class UsersV4$ {
|
|
|
17760
17757
|
* <br><b>Several case of updating email address</b>
|
|
17761
17758
|
* <p>action code : 10103 </p>
|
|
17762
17759
|
*/
|
|
17763
|
-
|
|
17760
|
+
patchV4NsUsersMe(data) {
|
|
17764
17761
|
const params = {};
|
|
17765
17762
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
17766
17763
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -17771,7 +17768,7 @@ class UsersV4$ {
|
|
|
17771
17768
|
* <p>It requires a verification code from <pre>/users/me/code/request</pre> with <b>UpdateEmailAddress</b> context.</p>
|
|
17772
17769
|
*
|
|
17773
17770
|
*/
|
|
17774
|
-
|
|
17771
|
+
putV4NsUsersMeEmail(data) {
|
|
17775
17772
|
const params = {};
|
|
17776
17773
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/email'.replace('{namespace}', this.namespace);
|
|
17777
17774
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -17794,7 +17791,7 @@ class UsersV4$ {
|
|
|
17794
17791
|
* </ul>
|
|
17795
17792
|
* action code : 10124
|
|
17796
17793
|
*/
|
|
17797
|
-
|
|
17794
|
+
postV4NsUsersMeHeadlessCodeVerify(data) {
|
|
17798
17795
|
const params = {};
|
|
17799
17796
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/headless/code/verify'.replace('{namespace}', this.namespace);
|
|
17800
17797
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -17805,7 +17802,7 @@ class UsersV4$ {
|
|
|
17805
17802
|
* Upgrade headless account to full account without verifying email address. Client does not need to provide verification code which sent to email address.
|
|
17806
17803
|
* <br>action code : 10124 </p>
|
|
17807
17804
|
*/
|
|
17808
|
-
|
|
17805
|
+
postV4NsUsersMeHeadlessVerify(data) {
|
|
17809
17806
|
const params = {};
|
|
17810
17807
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/headless/verify'.replace('{namespace}', this.namespace);
|
|
17811
17808
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -17816,7 +17813,7 @@ class UsersV4$ {
|
|
|
17816
17813
|
* <p>This endpoint Requires valid user access token</p>
|
|
17817
17814
|
*
|
|
17818
17815
|
*/
|
|
17819
|
-
|
|
17816
|
+
deleteV4NsUsersMeMfaAuthenticatorDisable() {
|
|
17820
17817
|
const params = {};
|
|
17821
17818
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/disable'.replace('{namespace}', this.namespace);
|
|
17822
17819
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -17827,7 +17824,7 @@ class UsersV4$ {
|
|
|
17827
17824
|
* <p>This endpoint Requires valid user access token</p>
|
|
17828
17825
|
*
|
|
17829
17826
|
*/
|
|
17830
|
-
|
|
17827
|
+
postV4NsUsersMeMfaAuthenticatorEnable(data) {
|
|
17831
17828
|
const params = {};
|
|
17832
17829
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/enable'.replace('{namespace}', this.namespace);
|
|
17833
17830
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -17842,7 +17839,7 @@ class UsersV4$ {
|
|
|
17842
17839
|
* <p>This endpoint Requires valid user access token</p>
|
|
17843
17840
|
*
|
|
17844
17841
|
*/
|
|
17845
|
-
|
|
17842
|
+
postV4NsUsersMeMfaAuthenticatorKey() {
|
|
17846
17843
|
const params = {};
|
|
17847
17844
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/key'.replace('{namespace}', this.namespace);
|
|
17848
17845
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -17854,7 +17851,7 @@ class UsersV4$ {
|
|
|
17854
17851
|
* <p>This endpoint Requires valid user access token</p>
|
|
17855
17852
|
*
|
|
17856
17853
|
*/
|
|
17857
|
-
|
|
17854
|
+
fetchV4NsUsersMeMfaBackupCode() {
|
|
17858
17855
|
const params = {};
|
|
17859
17856
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode'.replace('{namespace}', this.namespace);
|
|
17860
17857
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -17871,7 +17868,7 @@ class UsersV4$ {
|
|
|
17871
17868
|
* <p>This endpoint Requires valid user access token</p>
|
|
17872
17869
|
*
|
|
17873
17870
|
*/
|
|
17874
|
-
|
|
17871
|
+
postV4NsUsersMeMfaBackupCode() {
|
|
17875
17872
|
const params = {};
|
|
17876
17873
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode'.replace('{namespace}', this.namespace);
|
|
17877
17874
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -17882,7 +17879,7 @@ class UsersV4$ {
|
|
|
17882
17879
|
* <p>This endpoint Requires valid user access token</p>
|
|
17883
17880
|
*
|
|
17884
17881
|
*/
|
|
17885
|
-
|
|
17882
|
+
deleteV4NsUsersMeMfaBackupCodeDisable() {
|
|
17886
17883
|
const params = {};
|
|
17887
17884
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/disable'.replace('{namespace}', this.namespace);
|
|
17888
17885
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -17893,7 +17890,7 @@ class UsersV4$ {
|
|
|
17893
17890
|
* <p>This endpoint Requires valid user access token</p>
|
|
17894
17891
|
*
|
|
17895
17892
|
*/
|
|
17896
|
-
|
|
17893
|
+
fetchV4NsUsersMeMfaBackupCodeDownload() {
|
|
17897
17894
|
const params = {};
|
|
17898
17895
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/download'.replace('{namespace}', this.namespace);
|
|
17899
17896
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -17909,7 +17906,7 @@ class UsersV4$ {
|
|
|
17909
17906
|
* <p>This endpoint Requires valid user access token</p>
|
|
17910
17907
|
*
|
|
17911
17908
|
*/
|
|
17912
|
-
|
|
17909
|
+
postV4NsUsersMeMfaBackupCodeEnable() {
|
|
17913
17910
|
const params = {};
|
|
17914
17911
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/enable'.replace('{namespace}', this.namespace);
|
|
17915
17912
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -17921,7 +17918,7 @@ class UsersV4$ {
|
|
|
17921
17918
|
* <p>This endpoint Requires device_token in cookie</p>
|
|
17922
17919
|
*
|
|
17923
17920
|
*/
|
|
17924
|
-
|
|
17921
|
+
deleteV4NsUsersMeMfaDevice() {
|
|
17925
17922
|
const params = {};
|
|
17926
17923
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/device'.replace('{namespace}', this.namespace);
|
|
17927
17924
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -17932,7 +17929,7 @@ class UsersV4$ {
|
|
|
17932
17929
|
* <p>This endpoint Requires valid user access token</p>
|
|
17933
17930
|
*
|
|
17934
17931
|
*/
|
|
17935
|
-
|
|
17932
|
+
postV4NsUsersMeMfaEmailCode() {
|
|
17936
17933
|
const params = {};
|
|
17937
17934
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/code'.replace('{namespace}', this.namespace);
|
|
17938
17935
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -17943,7 +17940,7 @@ class UsersV4$ {
|
|
|
17943
17940
|
* <p>This endpoint Requires valid user access token</p>
|
|
17944
17941
|
*
|
|
17945
17942
|
*/
|
|
17946
|
-
|
|
17943
|
+
postV4NsUsersMeMfaEmailDisable() {
|
|
17947
17944
|
const params = {};
|
|
17948
17945
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/disable'.replace('{namespace}', this.namespace);
|
|
17949
17946
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -17954,7 +17951,7 @@ class UsersV4$ {
|
|
|
17954
17951
|
* <p>This endpoint Requires valid user access token</p>
|
|
17955
17952
|
*
|
|
17956
17953
|
*/
|
|
17957
|
-
|
|
17954
|
+
postV4NsUsersMeMfaEmailEnable(data) {
|
|
17958
17955
|
const params = {};
|
|
17959
17956
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable'.replace('{namespace}', this.namespace);
|
|
17960
17957
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -17968,7 +17965,7 @@ class UsersV4$ {
|
|
|
17968
17965
|
* <p>This endpoint Requires valid user access token</p>
|
|
17969
17966
|
*
|
|
17970
17967
|
*/
|
|
17971
|
-
|
|
17968
|
+
fetchV4NsUsersMeMfaFactor() {
|
|
17972
17969
|
const params = {};
|
|
17973
17970
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor'.replace('{namespace}', this.namespace);
|
|
17974
17971
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -17984,7 +17981,7 @@ class UsersV4$ {
|
|
|
17984
17981
|
* <p>This endpoint Requires valid user access token</p>
|
|
17985
17982
|
*
|
|
17986
17983
|
*/
|
|
17987
|
-
|
|
17984
|
+
postV4NsUsersMeMfaFactor(data) {
|
|
17988
17985
|
const params = {};
|
|
17989
17986
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor'.replace('{namespace}', this.namespace);
|
|
17990
17987
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -18010,7 +18007,7 @@ class TwoFA {
|
|
|
18010
18007
|
*
|
|
18011
18008
|
*/
|
|
18012
18009
|
this.getBackupCode = () => {
|
|
18013
|
-
return this.newInstance().
|
|
18010
|
+
return this.newInstance().fetchV4NsUsersMeMfaBackupCode();
|
|
18014
18011
|
};
|
|
18015
18012
|
/**
|
|
18016
18013
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -18018,7 +18015,7 @@ class TwoFA {
|
|
|
18018
18015
|
*
|
|
18019
18016
|
*/
|
|
18020
18017
|
this.enable2FABackupCodes = () => {
|
|
18021
|
-
return this.newInstance().
|
|
18018
|
+
return this.newInstance().postV4NsUsersMeMfaBackupCodeEnable();
|
|
18022
18019
|
};
|
|
18023
18020
|
/**
|
|
18024
18021
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -18026,7 +18023,7 @@ class TwoFA {
|
|
|
18026
18023
|
*
|
|
18027
18024
|
*/
|
|
18028
18025
|
this.generateBackupCodes = () => {
|
|
18029
|
-
return this.newInstance().
|
|
18026
|
+
return this.newInstance().postV4NsUsersMeMfaBackupCode();
|
|
18030
18027
|
};
|
|
18031
18028
|
/**
|
|
18032
18029
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -18034,7 +18031,7 @@ class TwoFA {
|
|
|
18034
18031
|
*
|
|
18035
18032
|
*/
|
|
18036
18033
|
this.disableBackupCodes = () => {
|
|
18037
|
-
return this.newInstance().
|
|
18034
|
+
return this.newInstance().deleteV4NsUsersMeMfaBackupCodeDisable();
|
|
18038
18035
|
};
|
|
18039
18036
|
/**
|
|
18040
18037
|
* <p>This method is used to disable 2FA authenticator.</p>
|
|
@@ -18042,7 +18039,7 @@ class TwoFA {
|
|
|
18042
18039
|
*
|
|
18043
18040
|
*/
|
|
18044
18041
|
this.disableAuthenticator = () => {
|
|
18045
|
-
return this.newInstance().
|
|
18042
|
+
return this.newInstance().deleteV4NsUsersMeMfaAuthenticatorDisable();
|
|
18046
18043
|
};
|
|
18047
18044
|
/**
|
|
18048
18045
|
* <p>This method is used to get user enabled factors.</p>
|
|
@@ -18050,7 +18047,7 @@ class TwoFA {
|
|
|
18050
18047
|
*
|
|
18051
18048
|
*/
|
|
18052
18049
|
this.getEnabledMethods = () => {
|
|
18053
|
-
return this.newInstance().
|
|
18050
|
+
return this.newInstance().fetchV4NsUsersMeMfaFactor();
|
|
18054
18051
|
};
|
|
18055
18052
|
/**
|
|
18056
18053
|
* <p>This method is used to make 2FA factor default.</p>
|
|
@@ -18058,7 +18055,7 @@ class TwoFA {
|
|
|
18058
18055
|
*
|
|
18059
18056
|
*/
|
|
18060
18057
|
this.set2FAAsDefault = (factor) => {
|
|
18061
|
-
return this.newInstance().
|
|
18058
|
+
return this.newInstance().postV4NsUsersMeMfaFactor({ factor });
|
|
18062
18059
|
};
|
|
18063
18060
|
/**
|
|
18064
18061
|
* <p>This method is used to enable 2FA authenticator.</p>
|
|
@@ -18066,7 +18063,7 @@ class TwoFA {
|
|
|
18066
18063
|
*
|
|
18067
18064
|
*/
|
|
18068
18065
|
this.enable2FAAuthenticator = (code) => {
|
|
18069
|
-
return this.newInstance().
|
|
18066
|
+
return this.newInstance().postV4NsUsersMeMfaAuthenticatorEnable({ code });
|
|
18070
18067
|
};
|
|
18071
18068
|
/**
|
|
18072
18069
|
* <p>This method is used to generate a secret key for 3rd-party authenticator app.
|
|
@@ -18075,16 +18072,16 @@ class TwoFA {
|
|
|
18075
18072
|
*
|
|
18076
18073
|
*/
|
|
18077
18074
|
this.generateSecretKey = () => {
|
|
18078
|
-
return this.newInstance().
|
|
18075
|
+
return this.newInstance().postV4NsUsersMeMfaAuthenticatorKey();
|
|
18079
18076
|
};
|
|
18080
18077
|
this.requestEmailCode = () => {
|
|
18081
|
-
return this.newInstance().
|
|
18078
|
+
return this.newInstance().postV4NsUsersMeMfaEmailCode();
|
|
18082
18079
|
};
|
|
18083
18080
|
this.enableEmailMethod = (code) => {
|
|
18084
|
-
return this.newInstance().
|
|
18081
|
+
return this.newInstance().postV4NsUsersMeMfaEmailEnable({ code });
|
|
18085
18082
|
};
|
|
18086
18083
|
this.disableEmailMethod = () => {
|
|
18087
|
-
return this.newInstance().
|
|
18084
|
+
return this.newInstance().postV4NsUsersMeMfaEmailDisable();
|
|
18088
18085
|
};
|
|
18089
18086
|
}
|
|
18090
18087
|
newInstance() {
|
|
@@ -18508,7 +18505,7 @@ class Users$ {
|
|
|
18508
18505
|
/**
|
|
18509
18506
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
18510
18507
|
*/
|
|
18511
|
-
|
|
18508
|
+
fetchV3NsAgerestrictionsCountriesByCountrycode(countryCode) {
|
|
18512
18509
|
const params = {};
|
|
18513
18510
|
const url = '/iam/v3/public/namespaces/{namespace}/agerestrictions/countries/{countryCode}'
|
|
18514
18511
|
.replace('{namespace}', this.namespace)
|
|
@@ -18529,7 +18526,7 @@ class Users$ {
|
|
|
18529
18526
|
* <strong>nintendo platform user ID</strong>: NSA ID need to be appended with Environment ID using colon as separator. e.g kmzwa8awaa:dd1
|
|
18530
18527
|
*
|
|
18531
18528
|
*/
|
|
18532
|
-
|
|
18529
|
+
postV3NsPlatformsByPlatformidUsers(platformId, data) {
|
|
18533
18530
|
const params = {};
|
|
18534
18531
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/{platformId}/users'
|
|
18535
18532
|
.replace('{namespace}', this.namespace)
|
|
@@ -18545,7 +18542,7 @@ class Users$ {
|
|
|
18545
18542
|
* <strong>nintendo platform user ID</strong>: NSA ID need to be appended with Environment ID using colon as separator. e.g kmzwa8awaa:dd1
|
|
18546
18543
|
*
|
|
18547
18544
|
*/
|
|
18548
|
-
|
|
18545
|
+
fetchV3NsPlatformsByPlatformidUsersByPlatformuserid(platformId, platformUserId) {
|
|
18549
18546
|
const params = {};
|
|
18550
18547
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/{platformId}/users/{platformUserId}'
|
|
18551
18548
|
.replace('{namespace}', this.namespace)
|
|
@@ -18562,7 +18559,7 @@ class Users$ {
|
|
|
18562
18559
|
/**
|
|
18563
18560
|
* This endpoint is used to get linking status.
|
|
18564
18561
|
*/
|
|
18565
|
-
|
|
18562
|
+
fetchV3NsRequestsByRequestidAsyncStatus(requestId) {
|
|
18566
18563
|
const params = {};
|
|
18567
18564
|
const url = '/iam/v3/public/namespaces/{namespace}/requests/{requestId}/async/status'
|
|
18568
18565
|
.replace('{namespace}', this.namespace)
|
|
@@ -18581,7 +18578,7 @@ class Users$ {
|
|
|
18581
18578
|
* The query length should greater than 1,otherwise will not query the database. The default limit value is 100</p>
|
|
18582
18579
|
* <br>action code : 10132
|
|
18583
18580
|
*/
|
|
18584
|
-
|
|
18581
|
+
fetchV3NsUsers(queryParams) {
|
|
18585
18582
|
const params = { ...queryParams };
|
|
18586
18583
|
const url = '/iam/v3/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
18587
18584
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -18602,7 +18599,7 @@ class Users$ {
|
|
|
18602
18599
|
* <p>Date of Birth format : YYYY-MM-DD, e.g. 2019-04-29.</p>
|
|
18603
18600
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
18604
18601
|
*/
|
|
18605
|
-
|
|
18602
|
+
postV3NsUsers(data) {
|
|
18606
18603
|
const params = {};
|
|
18607
18604
|
const url = '/iam/v3/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
18608
18605
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18621,7 +18618,7 @@ class Users$ {
|
|
|
18621
18618
|
* - Account Not Available : 204 (no content)
|
|
18622
18619
|
*
|
|
18623
18620
|
*/
|
|
18624
|
-
|
|
18621
|
+
fetchV3NsUsersAvailability(queryParams) {
|
|
18625
18622
|
const params = { ...queryParams };
|
|
18626
18623
|
const url = '/iam/v3/public/namespaces/{namespace}/users/availability'.replace('{namespace}', this.namespace);
|
|
18627
18624
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -18641,7 +18638,7 @@ class Users$ {
|
|
|
18641
18638
|
* </ul>
|
|
18642
18639
|
*
|
|
18643
18640
|
*/
|
|
18644
|
-
|
|
18641
|
+
postV3NsUsersBulkBasic(data) {
|
|
18645
18642
|
const params = {};
|
|
18646
18643
|
const url = '/iam/v3/public/namespaces/{namespace}/users/bulk/basic'.replace('{namespace}', this.namespace);
|
|
18647
18644
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18656,7 +18653,7 @@ class Users$ {
|
|
|
18656
18653
|
* This code can be verified by this <a href="#operations-Users-PublicVerifyRegistrationCode">endpoint</a>.
|
|
18657
18654
|
*
|
|
18658
18655
|
*/
|
|
18659
|
-
|
|
18656
|
+
postV3NsUsersCodeRequest(data) {
|
|
18660
18657
|
const params = {};
|
|
18661
18658
|
const url = '/iam/v3/public/namespaces/{namespace}/users/code/request'.replace('{namespace}', this.namespace);
|
|
18662
18659
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18666,7 +18663,7 @@ class Users$ {
|
|
|
18666
18663
|
* <p>Verify the registration code</p>
|
|
18667
18664
|
*
|
|
18668
18665
|
*/
|
|
18669
|
-
|
|
18666
|
+
postV3NsUsersCodeVerify(data) {
|
|
18670
18667
|
const params = {};
|
|
18671
18668
|
const url = '/iam/v3/public/namespaces/{namespace}/users/code/verify'.replace('{namespace}', this.namespace);
|
|
18672
18669
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18680,7 +18677,7 @@ class Users$ {
|
|
|
18680
18677
|
* <p>action code : 10104 </p>
|
|
18681
18678
|
*
|
|
18682
18679
|
*/
|
|
18683
|
-
|
|
18680
|
+
postV3NsUsersForgot(data) {
|
|
18684
18681
|
const params = {};
|
|
18685
18682
|
const url = '/iam/v3/public/namespaces/{namespace}/users/forgot'.replace('{namespace}', this.namespace);
|
|
18686
18683
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18690,7 +18687,7 @@ class Users$ {
|
|
|
18690
18687
|
* Endpoint to validate user invitation. When not found, it could also means the invitation has expired.
|
|
18691
18688
|
*
|
|
18692
18689
|
*/
|
|
18693
|
-
|
|
18690
|
+
fetchV3NsUsersInviteByInvitationid(invitationId) {
|
|
18694
18691
|
const params = {};
|
|
18695
18692
|
const url = '/iam/v3/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
18696
18693
|
.replace('{namespace}', this.namespace)
|
|
@@ -18715,7 +18712,7 @@ class Users$ {
|
|
|
18715
18712
|
* Date of Birth format : YYYY-MM-DD, e.g. 2019-04-29.
|
|
18716
18713
|
*
|
|
18717
18714
|
*/
|
|
18718
|
-
|
|
18715
|
+
postV3NsUsersInviteByInvitationid(invitationId, data) {
|
|
18719
18716
|
const params = {};
|
|
18720
18717
|
const url = '/iam/v3/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
18721
18718
|
.replace('{namespace}', this.namespace)
|
|
@@ -18738,7 +18735,7 @@ class Users$ {
|
|
|
18738
18735
|
* <br>If the client support PATCH method, use [PATCH] /iam/v3/public/namespaces/{namespace}/users/me instead</p><br>
|
|
18739
18736
|
* <p>action code : 10103 </p>
|
|
18740
18737
|
*/
|
|
18741
|
-
|
|
18738
|
+
putV3NsUsersMe(data) {
|
|
18742
18739
|
const params = {};
|
|
18743
18740
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
18744
18741
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -18756,7 +18753,7 @@ class Users$ {
|
|
|
18756
18753
|
* <li>User want to update email address of which have been verified and updated before, { oldEmailAddress, emailAddress} response field will be filled with verified email before. newEmailAddress response field will be filled with newest email address. </li>
|
|
18757
18754
|
* <p>action code : 10103 </p>
|
|
18758
18755
|
*/
|
|
18759
|
-
|
|
18756
|
+
patchV3NsUsersMe(data) {
|
|
18760
18757
|
const params = {};
|
|
18761
18758
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
18762
18759
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -18784,7 +18781,7 @@ class Users$ {
|
|
|
18784
18781
|
* <p>action code: 10116</p>
|
|
18785
18782
|
*
|
|
18786
18783
|
*/
|
|
18787
|
-
|
|
18784
|
+
postV3NsUsersMeCodeRequest(data) {
|
|
18788
18785
|
const params = {};
|
|
18789
18786
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/code/request'.replace('{namespace}', this.namespace);
|
|
18790
18787
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18798,7 +18795,7 @@ class Users$ {
|
|
|
18798
18795
|
* <p>action code: 10107</p>
|
|
18799
18796
|
*
|
|
18800
18797
|
*/
|
|
18801
|
-
|
|
18798
|
+
postV3NsUsersMeCodeVerify(data) {
|
|
18802
18799
|
const params = {};
|
|
18803
18800
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/code/verify'.replace('{namespace}', this.namespace);
|
|
18804
18801
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18820,7 +18817,7 @@ class Users$ {
|
|
|
18820
18817
|
* </ul>
|
|
18821
18818
|
* <br>action code : 10124</p>
|
|
18822
18819
|
*/
|
|
18823
|
-
|
|
18820
|
+
postV3NsUsersMeHeadlessCodeVerify(data) {
|
|
18824
18821
|
const params = {};
|
|
18825
18822
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/headless/code/verify'.replace('{namespace}', this.namespace);
|
|
18826
18823
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18829,7 +18826,7 @@ class Users$ {
|
|
|
18829
18826
|
/**
|
|
18830
18827
|
* <p>Require valid user authorization<br>action code : 10124 </p>
|
|
18831
18828
|
*/
|
|
18832
|
-
|
|
18829
|
+
postV3NsUsersMeHeadlessVerify(data) {
|
|
18833
18830
|
const params = {};
|
|
18834
18831
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/headless/verify'.replace('{namespace}', this.namespace);
|
|
18835
18832
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -18838,7 +18835,7 @@ class Users$ {
|
|
|
18838
18835
|
/**
|
|
18839
18836
|
* Required valid user authorization. <br> action code: 10107
|
|
18840
18837
|
*/
|
|
18841
|
-
|
|
18838
|
+
putV3NsUsersMePassword(data) {
|
|
18842
18839
|
const params = {};
|
|
18843
18840
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/password'.replace('{namespace}', this.namespace);
|
|
18844
18841
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -18848,7 +18845,7 @@ class Users$ {
|
|
|
18848
18845
|
* Create Justice User from Publisher User information. It will check first if Justice User on target namespace already exist.
|
|
18849
18846
|
*
|
|
18850
18847
|
*/
|
|
18851
|
-
|
|
18848
|
+
postV3NsUsersMePlatformsJusticeByTargetnamespace(targetNamespace) {
|
|
18852
18849
|
const params = {};
|
|
18853
18850
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/justice/{targetNamespace}'
|
|
18854
18851
|
.replace('{namespace}', this.namespace)
|
|
@@ -18881,7 +18878,7 @@ class Users$ {
|
|
|
18881
18878
|
* </ul>
|
|
18882
18879
|
* <br>action code : 10144
|
|
18883
18880
|
*/
|
|
18884
|
-
|
|
18881
|
+
postV3NsUsersMePlatformsByPlatformid(platformId, data) {
|
|
18885
18882
|
const params = {};
|
|
18886
18883
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}'
|
|
18887
18884
|
.replace('{namespace}', this.namespace)
|
|
@@ -18920,7 +18917,7 @@ class Users$ {
|
|
|
18920
18917
|
* <br>
|
|
18921
18918
|
* <br>action code : 10121 </p>
|
|
18922
18919
|
*/
|
|
18923
|
-
|
|
18920
|
+
deleteV3NsUsersMePlatformsByPlatformid(platformId, data) {
|
|
18924
18921
|
const params = {};
|
|
18925
18922
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}'
|
|
18926
18923
|
.replace('{namespace}', this.namespace)
|
|
@@ -18932,7 +18929,7 @@ class Users$ {
|
|
|
18932
18929
|
* Required valid user authorization.
|
|
18933
18930
|
* <p>Unlink user's account from for all third platforms. </p>
|
|
18934
18931
|
*/
|
|
18935
|
-
|
|
18932
|
+
deleteV3NsUsersMePlatformsByPlatformidAll(platformId) {
|
|
18936
18933
|
const params = {};
|
|
18937
18934
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/all'
|
|
18938
18935
|
.replace('{namespace}', this.namespace)
|
|
@@ -18970,7 +18967,7 @@ class Users$ {
|
|
|
18970
18967
|
* </ul>
|
|
18971
18968
|
*
|
|
18972
18969
|
*/
|
|
18973
|
-
|
|
18970
|
+
postV3NsUsersMePlatformsByPlatformidForce(platformId, data) {
|
|
18974
18971
|
const params = {};
|
|
18975
18972
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/force'
|
|
18976
18973
|
.replace('{namespace}', this.namespace)
|
|
@@ -18984,7 +18981,7 @@ class Users$ {
|
|
|
18984
18981
|
/**
|
|
18985
18982
|
* This endpoint is used to generate third party login page which will redirected to establish endpoint.
|
|
18986
18983
|
*/
|
|
18987
|
-
|
|
18984
|
+
fetchV3NsUsersMePlatformsByPlatformidWebLink(platformId, queryParams) {
|
|
18988
18985
|
const params = { ...queryParams };
|
|
18989
18986
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link'
|
|
18990
18987
|
.replace('{namespace}', this.namespace)
|
|
@@ -19000,7 +18997,7 @@ class Users$ {
|
|
|
19000
18997
|
/**
|
|
19001
18998
|
* This endpoint is used by third party to redirect the code for the purpose of linking the account third party to IAM account.
|
|
19002
18999
|
*/
|
|
19003
|
-
|
|
19000
|
+
fetchV3NsUsersMePlatformsByPlatformidWebLinkEstablish(platformId, queryParams) {
|
|
19004
19001
|
const params = { ...queryParams };
|
|
19005
19002
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link/establish'
|
|
19006
19003
|
.replace('{namespace}', this.namespace)
|
|
@@ -19016,7 +19013,7 @@ class Users$ {
|
|
|
19016
19013
|
/**
|
|
19017
19014
|
* <p>action code: 10105</p>
|
|
19018
19015
|
*/
|
|
19019
|
-
|
|
19016
|
+
postV3NsUsersReset(data) {
|
|
19020
19017
|
const params = {};
|
|
19021
19018
|
const url = '/iam/v3/public/namespaces/{namespace}/users/reset'.replace('{namespace}', this.namespace);
|
|
19022
19019
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -19025,7 +19022,7 @@ class Users$ {
|
|
|
19025
19022
|
/**
|
|
19026
19023
|
* <p>This endpoint retrieve user attributes. action code: 10129</p>
|
|
19027
19024
|
*/
|
|
19028
|
-
|
|
19025
|
+
fetchV3NsUsersByUserid(userId) {
|
|
19029
19026
|
const params = {};
|
|
19030
19027
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}'.replace('{namespace}', this.namespace).replace('{userId}', userId);
|
|
19031
19028
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -19045,7 +19042,7 @@ class Users$ {
|
|
|
19045
19042
|
* </ul>
|
|
19046
19043
|
*
|
|
19047
19044
|
*/
|
|
19048
|
-
|
|
19045
|
+
fetchV3NsUsersByUseridBans(userId, queryParams) {
|
|
19049
19046
|
const params = { ...queryParams };
|
|
19050
19047
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/bans'
|
|
19051
19048
|
.replace('{namespace}', this.namespace)
|
|
@@ -19063,7 +19060,7 @@ class Users$ {
|
|
|
19063
19060
|
* <br>It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
19064
19061
|
* <br>Required valid user authorization.</p>
|
|
19065
19062
|
*/
|
|
19066
|
-
|
|
19063
|
+
fetchV3NsUsersByUseridDistinctPlatforms(userId) {
|
|
19067
19064
|
const params = {};
|
|
19068
19065
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/distinctPlatforms'
|
|
19069
19066
|
.replace('{namespace}', this.namespace)
|
|
@@ -19080,7 +19077,7 @@ class Users$ {
|
|
|
19080
19077
|
* <p>This endpoint retrieves user info and linked platform accounts.
|
|
19081
19078
|
* Required permissions 'NAMESPACE:{namespace}:INFORMATION:USER:{userId} [READ]'</p>
|
|
19082
19079
|
*/
|
|
19083
|
-
|
|
19080
|
+
fetchV3NsUsersByUseridInformation(userId) {
|
|
19084
19081
|
const params = {};
|
|
19085
19082
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/information'
|
|
19086
19083
|
.replace('{namespace}', this.namespace)
|
|
@@ -19096,7 +19093,7 @@ class Users$ {
|
|
|
19096
19093
|
/**
|
|
19097
19094
|
* Required valid user authorization.<p>Notes for this endpoint: </p> <ul><li>This endpoint retrieve the first page of the data if `after` and `before` parameters is empty.</li><li>The maximum value of the limit is 100 and the minimum value of the limit is 1.</li><li>This endpoint retrieve the next page of the data if we provide `after` parameters with valid Unix timestamp.</li><li>This endpoint retrieve the previous page of the data if we provide `before` parameter with valid data Unix timestamp.</li><ul>
|
|
19098
19095
|
*/
|
|
19099
|
-
|
|
19096
|
+
fetchV3NsUsersByUseridLoginsHistories(userId, queryParams) {
|
|
19100
19097
|
const params = { ...queryParams };
|
|
19101
19098
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/logins/histories'
|
|
19102
19099
|
.replace('{namespace}', this.namespace)
|
|
@@ -19113,7 +19110,7 @@ class Users$ {
|
|
|
19113
19110
|
* <p>This endpoint retrieves platform accounts linked to user. Required valid user authorization.
|
|
19114
19111
|
* <br>action code: 10128 </p>
|
|
19115
19112
|
*/
|
|
19116
|
-
|
|
19113
|
+
fetchV3NsUsersByUseridPlatforms(userId, queryParams) {
|
|
19117
19114
|
const params = { ...queryParams };
|
|
19118
19115
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms'
|
|
19119
19116
|
.replace('{namespace}', this.namespace)
|
|
@@ -19130,7 +19127,7 @@ class Users$ {
|
|
|
19130
19127
|
* This endpoint gets list justice platform account by providing publisher namespace and publisher userID</br>
|
|
19131
19128
|
* <p>Requires valid user access token </p></br>
|
|
19132
19129
|
*/
|
|
19133
|
-
|
|
19130
|
+
fetchV3NsUsersByUseridPlatformsJustice(userId) {
|
|
19134
19131
|
const params = {};
|
|
19135
19132
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/justice'
|
|
19136
19133
|
.replace('{namespace}', this.namespace)
|
|
@@ -19150,7 +19147,7 @@ class Users$ {
|
|
|
19150
19147
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
19151
19148
|
*
|
|
19152
19149
|
*/
|
|
19153
|
-
|
|
19150
|
+
postV3NsUsersByUseridPlatformsLink(userId, data) {
|
|
19154
19151
|
const params = {};
|
|
19155
19152
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/link'
|
|
19156
19153
|
.replace('{namespace}', this.namespace)
|
|
@@ -19164,7 +19161,7 @@ class Users$ {
|
|
|
19164
19161
|
* This endpoint need the same requestID which also used in <a href="#operations-Users-PublicGetAsyncStatus">Get link status</a>.
|
|
19165
19162
|
*
|
|
19166
19163
|
*/
|
|
19167
|
-
|
|
19164
|
+
postV3NsUsersByUseridPlatformsLinkWithProgression(userId, data) {
|
|
19168
19165
|
const params = {};
|
|
19169
19166
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/linkWithProgression'
|
|
19170
19167
|
.replace('{namespace}', this.namespace)
|
|
@@ -19177,7 +19174,7 @@ class Users$ {
|
|
|
19177
19174
|
* <p><strong>Restriction:</strong>
|
|
19178
19175
|
* Path Parameter <strong>namespace</strong> can be provided only with game namespace</p>
|
|
19179
19176
|
*/
|
|
19180
|
-
|
|
19177
|
+
fetchV3NsUsersByUseridPublisher(userId) {
|
|
19181
19178
|
const params = {};
|
|
19182
19179
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/publisher'
|
|
19183
19180
|
.replace('{namespace}', this.namespace)
|
|
@@ -19198,7 +19195,7 @@ class Users$ {
|
|
|
19198
19195
|
* </ul>
|
|
19199
19196
|
*
|
|
19200
19197
|
*/
|
|
19201
|
-
|
|
19198
|
+
postV3NsUsersByUseridValidate(userId, data) {
|
|
19202
19199
|
const params = {};
|
|
19203
19200
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/validate'
|
|
19204
19201
|
.replace('{namespace}', this.namespace)
|
|
@@ -19227,6 +19224,9 @@ class Users$ {
|
|
|
19227
19224
|
* Note:<br>
|
|
19228
19225
|
* 1. My account should be full account
|
|
19229
19226
|
* 2. My account not linked to request headless account's third platform.
|
|
19227
|
+
*
|
|
19228
|
+
* After client resolving the conflict, it will call endpoint <b>/iam/v3/public/users/me/headless/linkWithProgression [POST]</p>
|
|
19229
|
+
*
|
|
19230
19230
|
*/
|
|
19231
19231
|
fetchIamV3PublicUsersMeHeadlessLinkConflict(queryParams) {
|
|
19232
19232
|
const params = { ...queryParams };
|
|
@@ -19302,19 +19302,19 @@ class UserApi {
|
|
|
19302
19302
|
* update current user
|
|
19303
19303
|
*/
|
|
19304
19304
|
this.updateUserMe = (data) => {
|
|
19305
|
-
return this.newInstance().
|
|
19305
|
+
return this.newInstance().patchV3NsUsersMe(data);
|
|
19306
19306
|
};
|
|
19307
19307
|
/**
|
|
19308
19308
|
* update current user's email
|
|
19309
19309
|
*/
|
|
19310
19310
|
this.updateEmailMe = (data) => {
|
|
19311
|
-
return this.newInstance4().
|
|
19311
|
+
return this.newInstance4().putV4NsUsersMeEmail(data);
|
|
19312
19312
|
};
|
|
19313
19313
|
/**
|
|
19314
19314
|
* update current user's password
|
|
19315
19315
|
*/
|
|
19316
19316
|
this.updatePasswordMe = (data) => {
|
|
19317
|
-
return this.newInstance().
|
|
19317
|
+
return this.newInstance().putV3NsUsersMePassword(data);
|
|
19318
19318
|
};
|
|
19319
19319
|
/**
|
|
19320
19320
|
* Required valid user authorization
|
|
@@ -19339,7 +19339,7 @@ class UserApi {
|
|
|
19339
19339
|
*
|
|
19340
19340
|
*/
|
|
19341
19341
|
this.requestVerificationCode = (data) => {
|
|
19342
|
-
return this.newInstance().
|
|
19342
|
+
return this.newInstance().postV3NsUsersMeCodeRequest(data);
|
|
19343
19343
|
};
|
|
19344
19344
|
/**
|
|
19345
19345
|
* <p>Will consume code if validateOnly is set false</p>
|
|
@@ -19350,7 +19350,7 @@ class UserApi {
|
|
|
19350
19350
|
*
|
|
19351
19351
|
*/
|
|
19352
19352
|
this.verifyCode = (data) => {
|
|
19353
|
-
return this.newInstance().
|
|
19353
|
+
return this.newInstance().postV3NsUsersMeCodeVerify(data);
|
|
19354
19354
|
};
|
|
19355
19355
|
/**
|
|
19356
19356
|
* <p>If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded</p>
|
|
@@ -19369,7 +19369,7 @@ class UserApi {
|
|
|
19369
19369
|
* <br>action code : 10124</p>
|
|
19370
19370
|
*/
|
|
19371
19371
|
this.upgradeHeadlessAccount = (data) => {
|
|
19372
|
-
return this.newInstance().
|
|
19372
|
+
return this.newInstance().postV3NsUsersMeHeadlessCodeVerify(data);
|
|
19373
19373
|
};
|
|
19374
19374
|
/**
|
|
19375
19375
|
* Require valid user access token.
|
|
@@ -19389,14 +19389,14 @@ class UserApi {
|
|
|
19389
19389
|
* action code : 10124
|
|
19390
19390
|
*/
|
|
19391
19391
|
this.upgradeHeadlessAccountV4 = (data) => {
|
|
19392
|
-
return this.newInstance4().
|
|
19392
|
+
return this.newInstance4().postV4NsUsersMeHeadlessCodeVerify(data);
|
|
19393
19393
|
};
|
|
19394
19394
|
/**
|
|
19395
19395
|
* <p>This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
19396
19396
|
* <br>action code: 10128 </p>
|
|
19397
19397
|
*/
|
|
19398
19398
|
this.getUserLinkedPlatform = (userId) => {
|
|
19399
|
-
return this.newInstance().
|
|
19399
|
+
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
19400
19400
|
};
|
|
19401
19401
|
/**
|
|
19402
19402
|
* Required valid user authorization.
|
|
@@ -19425,13 +19425,13 @@ class UserApi {
|
|
|
19425
19425
|
* <br>action code : 10144
|
|
19426
19426
|
*/
|
|
19427
19427
|
this.linkAccountToPlatform = ({ platformId, data }) => {
|
|
19428
|
-
return this.newInstance().
|
|
19428
|
+
return this.newInstance().postV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
19429
19429
|
};
|
|
19430
19430
|
/**
|
|
19431
19431
|
* Get the linking status between a third-party platform to a user
|
|
19432
19432
|
*/
|
|
19433
19433
|
this.getLinkRequestStatus = (requestId) => {
|
|
19434
|
-
return this.newInstance().
|
|
19434
|
+
return this.newInstance().fetchV3NsRequestsByRequestidAsyncStatus(requestId);
|
|
19435
19435
|
};
|
|
19436
19436
|
/**
|
|
19437
19437
|
* It is going to be <strong>DEPRECATED</strong>.
|
|
@@ -19441,7 +19441,7 @@ class UserApi {
|
|
|
19441
19441
|
*
|
|
19442
19442
|
*/
|
|
19443
19443
|
this.linkPlatformToUserAccount = ({ userId, data }) => {
|
|
19444
|
-
return this.newInstance().
|
|
19444
|
+
return this.newInstance().postV3NsUsersByUseridPlatformsLink(userId, data);
|
|
19445
19445
|
};
|
|
19446
19446
|
/**
|
|
19447
19447
|
* Required valid user authorization.
|
|
@@ -19473,19 +19473,19 @@ class UserApi {
|
|
|
19473
19473
|
* <br>action code : 10121 </p>
|
|
19474
19474
|
*/
|
|
19475
19475
|
this.unLinkAccountFromPlatform = ({ platformId, data }) => {
|
|
19476
|
-
return this.newInstance().
|
|
19476
|
+
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
19477
19477
|
};
|
|
19478
19478
|
/**
|
|
19479
19479
|
* This method is used to generate third party login page which will redirected to establish method.
|
|
19480
19480
|
*/
|
|
19481
19481
|
this.getThirdPartyURL = ({ platformId, queryParams }) => {
|
|
19482
|
-
return this.newInstance().
|
|
19482
|
+
return this.newInstance().fetchV3NsUsersMePlatformsByPlatformidWebLink(platformId, queryParams);
|
|
19483
19483
|
};
|
|
19484
19484
|
/**
|
|
19485
19485
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
19486
19486
|
*/
|
|
19487
19487
|
this.getAgeRestrictionByCountry = (countryCode) => {
|
|
19488
|
-
return this.newInstance().
|
|
19488
|
+
return this.newInstance().fetchV3NsAgerestrictionsCountriesByCountrycode(countryCode);
|
|
19489
19489
|
};
|
|
19490
19490
|
}
|
|
19491
19491
|
/**
|
|
@@ -19514,7 +19514,7 @@ class UserApi {
|
|
|
19514
19514
|
*
|
|
19515
19515
|
*/
|
|
19516
19516
|
requestNewUserVerificationCode(data) {
|
|
19517
|
-
return this.newInstance().
|
|
19517
|
+
return this.newInstance().postV3NsUsersCodeRequest(data);
|
|
19518
19518
|
}
|
|
19519
19519
|
/**
|
|
19520
19520
|
* Create a new user with unique email address and username.
|
|
@@ -19534,7 +19534,7 @@ class UserApi {
|
|
|
19534
19534
|
*
|
|
19535
19535
|
*/
|
|
19536
19536
|
createUser(data) {
|
|
19537
|
-
return this.newInstance4().
|
|
19537
|
+
return this.newInstance4().postV4NsUsers(data);
|
|
19538
19538
|
}
|
|
19539
19539
|
/**
|
|
19540
19540
|
* <p>This method retrieves platform accounts linked to user.
|
|
@@ -19542,14 +19542,14 @@ class UserApi {
|
|
|
19542
19542
|
* <br>Required valid user authorization.</p>
|
|
19543
19543
|
*/
|
|
19544
19544
|
getUserDistinctLinkedPlatform(userId) {
|
|
19545
|
-
return this.newInstance().
|
|
19545
|
+
return this.newInstance().fetchV3NsUsersByUseridDistinctPlatforms(userId);
|
|
19546
19546
|
}
|
|
19547
19547
|
/**
|
|
19548
19548
|
* Required valid user authorization.
|
|
19549
19549
|
* <p>Unlink user's account from for all third platforms. </p>
|
|
19550
19550
|
*/
|
|
19551
19551
|
unLinkAccountFromPlatformDistinct(platformId) {
|
|
19552
|
-
return this.newInstance().
|
|
19552
|
+
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformidAll(platformId);
|
|
19553
19553
|
}
|
|
19554
19554
|
/**
|
|
19555
19555
|
* Required valid user authorization
|
|
@@ -19565,7 +19565,7 @@ class UserApi {
|
|
|
19565
19565
|
* <br>action code: 10128 </p>
|
|
19566
19566
|
*/
|
|
19567
19567
|
getLinkedAccount(userId) {
|
|
19568
|
-
return this.newInstance().
|
|
19568
|
+
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
19569
19569
|
}
|
|
19570
19570
|
/**
|
|
19571
19571
|
* Note:<br>
|
|
@@ -20145,7 +20145,7 @@ class Templates$ {
|
|
|
20145
20145
|
this.namespace = namespace;
|
|
20146
20146
|
this.cache = cache;
|
|
20147
20147
|
}
|
|
20148
|
-
|
|
20148
|
+
fetchV1NsTemplatesByTemplateConfigs(template) {
|
|
20149
20149
|
const params = {};
|
|
20150
20150
|
const url = '/odin-config/v1/public/namespaces/{namespace}/templates/{template}/configs'
|
|
20151
20151
|
.replace('{namespace}', this.namespace)
|
|
@@ -20158,7 +20158,7 @@ class Templates$ {
|
|
|
20158
20158
|
const cacheKey = url + CodeGenUtil.hashCode(JSON.stringify({ params }));
|
|
20159
20159
|
return SdkCache.withCache(cacheKey, res);
|
|
20160
20160
|
}
|
|
20161
|
-
|
|
20161
|
+
fetchV1NsTemplatesByTemplateConfigsByConfig(template, config) {
|
|
20162
20162
|
const params = {};
|
|
20163
20163
|
const url = '/odin-config/v1/public/namespaces/{namespace}/templates/{template}/configs/{config}'
|
|
20164
20164
|
.replace('{namespace}', this.namespace)
|
|
@@ -20183,13 +20183,13 @@ class PublicTemplateApi {
|
|
|
20183
20183
|
this.namespace = namespace;
|
|
20184
20184
|
this.cache = cache;
|
|
20185
20185
|
this.getTemplateConfigs = (template) => {
|
|
20186
|
-
return this.newInstance().
|
|
20186
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigs(template);
|
|
20187
20187
|
};
|
|
20188
20188
|
this.getTemplateConfig = (template, configId) => {
|
|
20189
|
-
return this.newInstance().
|
|
20189
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigsByConfig(template, configId);
|
|
20190
20190
|
};
|
|
20191
20191
|
this.getDiscoveryTemplateConfigs = () => {
|
|
20192
|
-
return this.newInstance().
|
|
20192
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigs(DISCOVERY_TEMPLATE_NAME);
|
|
20193
20193
|
};
|
|
20194
20194
|
}
|
|
20195
20195
|
newInstance() {
|
|
@@ -20235,7 +20235,7 @@ class Currency$ {
|
|
|
20235
20235
|
/**
|
|
20236
20236
|
* List currencies of a namespace.<br>Other detail info: <ul><li><i>Returns</i>: Currency List</li></ul>
|
|
20237
20237
|
*/
|
|
20238
|
-
|
|
20238
|
+
fetchNsCurrencies(queryParams) {
|
|
20239
20239
|
const params = { ...queryParams };
|
|
20240
20240
|
const url = '/platform/public/namespaces/{namespace}/currencies'.replace('{namespace}', this.namespace);
|
|
20241
20241
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20260,7 +20260,7 @@ class CurrencyApi {
|
|
|
20260
20260
|
* List currencies of a namespace.<br>Other detail info: <ul><li><i>Returns</i>: Currency List</li></ul>
|
|
20261
20261
|
*/
|
|
20262
20262
|
this.getCurrencies = () => {
|
|
20263
|
-
return this.newInstance().
|
|
20263
|
+
return this.newInstance().fetchNsCurrencies();
|
|
20264
20264
|
};
|
|
20265
20265
|
/**
|
|
20266
20266
|
* Get the currencies list and convert into a map of currency code and the currency itself
|
|
@@ -20581,7 +20581,7 @@ class Entitlement$ {
|
|
|
20581
20581
|
/**
|
|
20582
20582
|
* Get my app entitlement ownership by appId.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:ENTITLEMENT", action=2 (READ)</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to get <b>publisher namespace app entitlement ownership</b></li></ul></li></ul>
|
|
20583
20583
|
*/
|
|
20584
|
-
|
|
20584
|
+
fetchNsUsersMeEntitlementsOwnershipByAppId(queryParams) {
|
|
20585
20585
|
const params = { ...queryParams };
|
|
20586
20586
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/byAppId'.replace('{namespace}', this.namespace);
|
|
20587
20587
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20595,7 +20595,7 @@ class Entitlement$ {
|
|
|
20595
20595
|
/**
|
|
20596
20596
|
* Exists any my active entitlement of specified itemIds, skus and appIds<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20597
20597
|
*/
|
|
20598
|
-
|
|
20598
|
+
fetchNsUsersMeEntitlementsOwnershipAny(queryParams) {
|
|
20599
20599
|
const params = { ...queryParams };
|
|
20600
20600
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/any'.replace('{namespace}', this.namespace);
|
|
20601
20601
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20609,7 +20609,7 @@ class Entitlement$ {
|
|
|
20609
20609
|
/**
|
|
20610
20610
|
* Get my entitlement ownership by sku.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:ENTITLEMENT", action=2 (READ)</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to get <b>publisher namespace entitlement ownership by sku</b></li><li>can be filled with <b>game namespace</b> in order to get <b>game namespace entitlement ownership by sku</b></li></ul></li></ul>
|
|
20611
20611
|
*/
|
|
20612
|
-
|
|
20612
|
+
fetchNsUsersMeEntitlementsOwnershipBySku(queryParams) {
|
|
20613
20613
|
const params = { ...queryParams };
|
|
20614
20614
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/bySku'.replace('{namespace}', this.namespace);
|
|
20615
20615
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20623,7 +20623,7 @@ class Entitlement$ {
|
|
|
20623
20623
|
/**
|
|
20624
20624
|
* Get my entitlement ownership by itemId.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:ENTITLEMENT", action=2 (READ)</li><li><i>Path's namespace</i> : <ul><li>can be filled with <b>publisher namespace</b> in order to get <b>publisher namespace entitlement ownership by sku</b></li><li>can be filled with <b>game namespace</b> in order to get <b>game namespace entitlement ownership by sku</b></li></ul></li></ul>
|
|
20625
20625
|
*/
|
|
20626
|
-
|
|
20626
|
+
fetchNsUsersMeEntitlementsOwnershipByItemId(queryParams) {
|
|
20627
20627
|
const params = { ...queryParams };
|
|
20628
20628
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/byItemId'.replace('{namespace}', this.namespace);
|
|
20629
20629
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20666,7 +20666,7 @@ class Entitlement$ {
|
|
|
20666
20666
|
* }
|
|
20667
20667
|
* </code></pre><b>if there's no active entitlement for the specific params, the entitlements section will be omitted</b>.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20668
20668
|
*/
|
|
20669
|
-
|
|
20669
|
+
fetchNsUsersMeEntitlementsOwnershipToken(queryParams) {
|
|
20670
20670
|
const params = { ...queryParams };
|
|
20671
20671
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownershipToken'.replace('{namespace}', this.namespace);
|
|
20672
20672
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -20680,7 +20680,7 @@ class Entitlement$ {
|
|
|
20680
20680
|
/**
|
|
20681
20681
|
* 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>
|
|
20682
20682
|
*/
|
|
20683
|
-
|
|
20683
|
+
fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams) {
|
|
20684
20684
|
const params = { ...queryParams };
|
|
20685
20685
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/any'
|
|
20686
20686
|
.replace('{namespace}', this.namespace)
|
|
@@ -20696,7 +20696,7 @@ class Entitlement$ {
|
|
|
20696
20696
|
/**
|
|
20697
20697
|
* Get user entitlement ownership by itemId.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20698
20698
|
*/
|
|
20699
|
-
|
|
20699
|
+
fetchNsUsersByUseridEntitlementsOwnershipByItemId(userId, queryParams) {
|
|
20700
20700
|
const params = { ...queryParams };
|
|
20701
20701
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byItemId'
|
|
20702
20702
|
.replace('{namespace}', this.namespace)
|
|
@@ -20712,7 +20712,7 @@ class Entitlement$ {
|
|
|
20712
20712
|
/**
|
|
20713
20713
|
* 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>
|
|
20714
20714
|
*/
|
|
20715
|
-
|
|
20715
|
+
fetchNsUsersByUseridEntitlementsByAppId(userId, queryParams) {
|
|
20716
20716
|
const params = { ...queryParams };
|
|
20717
20717
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppId'
|
|
20718
20718
|
.replace('{namespace}', this.namespace)
|
|
@@ -20728,7 +20728,7 @@ class Entitlement$ {
|
|
|
20728
20728
|
/**
|
|
20729
20729
|
* Get user entitlement ownership by sku.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20730
20730
|
*/
|
|
20731
|
-
|
|
20731
|
+
fetchNsUsersByUseridEntitlementsOwnershipBySku(userId, queryParams) {
|
|
20732
20732
|
const params = { ...queryParams };
|
|
20733
20733
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/bySku'
|
|
20734
20734
|
.replace('{namespace}', this.namespace)
|
|
@@ -20744,7 +20744,7 @@ class Entitlement$ {
|
|
|
20744
20744
|
/**
|
|
20745
20745
|
* 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>
|
|
20746
20746
|
*/
|
|
20747
|
-
|
|
20747
|
+
fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams) {
|
|
20748
20748
|
const params = { ...queryParams };
|
|
20749
20749
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byItemIds'
|
|
20750
20750
|
.replace('{namespace}', this.namespace)
|
|
@@ -20760,7 +20760,7 @@ class Entitlement$ {
|
|
|
20760
20760
|
/**
|
|
20761
20761
|
* 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>
|
|
20762
20762
|
*/
|
|
20763
|
-
|
|
20763
|
+
fetchNsUsersByUseridEntitlements(userId, queryParams) {
|
|
20764
20764
|
const params = { limit: 20, ...queryParams };
|
|
20765
20765
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements'
|
|
20766
20766
|
.replace('{namespace}', this.namespace)
|
|
@@ -20776,7 +20776,7 @@ class Entitlement$ {
|
|
|
20776
20776
|
/**
|
|
20777
20777
|
* Get user entitlement by itemId.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20778
20778
|
*/
|
|
20779
|
-
|
|
20779
|
+
fetchNsUsersByUseridEntitlementsByItemId(userId, queryParams) {
|
|
20780
20780
|
const params = { ...queryParams };
|
|
20781
20781
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byItemId'
|
|
20782
20782
|
.replace('{namespace}', this.namespace)
|
|
@@ -20792,7 +20792,7 @@ class Entitlement$ {
|
|
|
20792
20792
|
/**
|
|
20793
20793
|
* Get user entitlement.<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</li></ul>
|
|
20794
20794
|
*/
|
|
20795
|
-
|
|
20795
|
+
fetchNsUsersByUseridEntitlementsByEntitlementid(userId, entitlementId) {
|
|
20796
20796
|
const params = {};
|
|
20797
20797
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/{entitlementId}'
|
|
20798
20798
|
.replace('{namespace}', this.namespace)
|
|
@@ -20809,7 +20809,7 @@ class Entitlement$ {
|
|
|
20809
20809
|
/**
|
|
20810
20810
|
* Get user app entitlement ownership by appId.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20811
20811
|
*/
|
|
20812
|
-
|
|
20812
|
+
fetchNsUsersByUseridEntitlementsOwnershipByAppId(userId, queryParams) {
|
|
20813
20813
|
const params = { ...queryParams };
|
|
20814
20814
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byAppId'
|
|
20815
20815
|
.replace('{namespace}', this.namespace)
|
|
@@ -20825,7 +20825,7 @@ class Entitlement$ {
|
|
|
20825
20825
|
/**
|
|
20826
20826
|
* Get user entitlement by sku.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li></ul>
|
|
20827
20827
|
*/
|
|
20828
|
-
|
|
20828
|
+
fetchNsUsersByUseridEntitlementsBySku(userId, queryParams) {
|
|
20829
20829
|
const params = { ...queryParams };
|
|
20830
20830
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/bySku'
|
|
20831
20831
|
.replace('{namespace}', this.namespace)
|
|
@@ -20841,7 +20841,7 @@ class Entitlement$ {
|
|
|
20841
20841
|
/**
|
|
20842
20842
|
* Query app entitlements by appType.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ENTITLEMENT", action=2 (READ)</li><li><i>Returns</i>: app entitlement pagination</li></ul>
|
|
20843
20843
|
*/
|
|
20844
|
-
|
|
20844
|
+
fetchNsUsersByUseridEntitlementsByAppType(userId, queryParams) {
|
|
20845
20845
|
const params = { limit: 20, ...queryParams };
|
|
20846
20846
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppType'
|
|
20847
20847
|
.replace('{namespace}', this.namespace)
|
|
@@ -20857,7 +20857,7 @@ class Entitlement$ {
|
|
|
20857
20857
|
/**
|
|
20858
20858
|
* 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>
|
|
20859
20859
|
*/
|
|
20860
|
-
|
|
20860
|
+
putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data) {
|
|
20861
20861
|
const params = {};
|
|
20862
20862
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/{entitlementId}/decrement'
|
|
20863
20863
|
.replace('{namespace}', this.namespace)
|
|
@@ -20881,7 +20881,7 @@ class EntitlementApi {
|
|
|
20881
20881
|
* 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>
|
|
20882
20882
|
*/
|
|
20883
20883
|
getEntitlementByAppId({ userId, appId }) {
|
|
20884
|
-
return this.newInstance().
|
|
20884
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsByAppId(userId, {
|
|
20885
20885
|
appId
|
|
20886
20886
|
});
|
|
20887
20887
|
}
|
|
@@ -20889,25 +20889,25 @@ class EntitlementApi {
|
|
|
20889
20889
|
* 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>
|
|
20890
20890
|
*/
|
|
20891
20891
|
getEntitlements({ userId, queryParams }) {
|
|
20892
|
-
return this.newInstance().
|
|
20892
|
+
return this.newInstance().fetchNsUsersByUseridEntitlements(userId, queryParams);
|
|
20893
20893
|
}
|
|
20894
20894
|
/**
|
|
20895
20895
|
* 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>
|
|
20896
20896
|
*/
|
|
20897
20897
|
getEntitlementOwnerShip({ userId, queryParams }) {
|
|
20898
|
-
return this.newInstance().
|
|
20898
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams);
|
|
20899
20899
|
}
|
|
20900
20900
|
/**
|
|
20901
20901
|
* 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>
|
|
20902
20902
|
*/
|
|
20903
20903
|
getEntitlementByItemIds({ userId, queryParams }) {
|
|
20904
|
-
return this.newInstance().
|
|
20904
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams);
|
|
20905
20905
|
}
|
|
20906
20906
|
/**
|
|
20907
20907
|
* 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>
|
|
20908
20908
|
*/
|
|
20909
20909
|
claimEntitlement({ userId, entitlementId, data }) {
|
|
20910
|
-
return this.newInstance().
|
|
20910
|
+
return this.newInstance().putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data);
|
|
20911
20911
|
}
|
|
20912
20912
|
newInstance() {
|
|
20913
20913
|
return new Entitlement$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -20988,7 +20988,7 @@ class Fulfillment$ {
|
|
|
20988
20988
|
/**
|
|
20989
20989
|
* 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>
|
|
20990
20990
|
*/
|
|
20991
|
-
|
|
20991
|
+
postNsUsersByUseridFulfillmentCode(userId, data) {
|
|
20992
20992
|
const params = {};
|
|
20993
20993
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/fulfillment/code'
|
|
20994
20994
|
.replace('{namespace}', this.namespace)
|
|
@@ -21010,7 +21010,7 @@ class FulfillmentApi {
|
|
|
21010
21010
|
* 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>
|
|
21011
21011
|
*/
|
|
21012
21012
|
this.redeemCode = ({ userId, data }) => {
|
|
21013
|
-
return this.newInstance().
|
|
21013
|
+
return this.newInstance().postNsUsersByUseridFulfillmentCode(userId, data);
|
|
21014
21014
|
};
|
|
21015
21015
|
}
|
|
21016
21016
|
newInstance() {
|
|
@@ -21134,7 +21134,7 @@ const Image = mod.object({
|
|
|
21134
21134
|
* This is licensed software from AccelByte Inc, for limitations
|
|
21135
21135
|
* and restrictions contact your company contract manager.
|
|
21136
21136
|
*/
|
|
21137
|
-
const
|
|
21137
|
+
const Predicate = mod.object({
|
|
21138
21138
|
name: mod.string().nullish(),
|
|
21139
21139
|
predicateType: mod.enum(['EntitlementPredicate', 'SeasonPassPredicate', 'SeasonTierPredicate']).nullish(),
|
|
21140
21140
|
comparison: mod
|
|
@@ -21150,7 +21150,7 @@ const PredicateObject = mod.object({
|
|
|
21150
21150
|
* This is licensed software from AccelByte Inc, for limitations
|
|
21151
21151
|
* and restrictions contact your company contract manager.
|
|
21152
21152
|
*/
|
|
21153
|
-
const ConditionGroup = mod.object({ predicates: mod.array(
|
|
21153
|
+
const ConditionGroup = mod.object({ predicates: mod.array(Predicate).nullish(), operator: mod.enum(['and', 'or']).nullish() });
|
|
21154
21154
|
|
|
21155
21155
|
/*
|
|
21156
21156
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
@@ -21426,7 +21426,7 @@ class Item$ {
|
|
|
21426
21426
|
/**
|
|
21427
21427
|
* 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>
|
|
21428
21428
|
*/
|
|
21429
|
-
|
|
21429
|
+
fetchNsItemsByItemidAppLocale(itemId, queryParams) {
|
|
21430
21430
|
const params = { ...queryParams };
|
|
21431
21431
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/app/locale'
|
|
21432
21432
|
.replace('{namespace}', this.namespace)
|
|
@@ -21442,7 +21442,7 @@ class Item$ {
|
|
|
21442
21442
|
/**
|
|
21443
21443
|
* This API is used to get the item by sku.<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 sku</li></ul>
|
|
21444
21444
|
*/
|
|
21445
|
-
|
|
21445
|
+
fetchNsItemsBySku(queryParams) {
|
|
21446
21446
|
const params = { ...queryParams };
|
|
21447
21447
|
const url = '/platform/public/namespaces/{namespace}/items/bySku'.replace('{namespace}', this.namespace);
|
|
21448
21448
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21456,7 +21456,7 @@ class Item$ {
|
|
|
21456
21456
|
/**
|
|
21457
21457
|
* This API is used to search items by keyword in title, description and long description, It's language constrained, also 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>
|
|
21458
21458
|
*/
|
|
21459
|
-
|
|
21459
|
+
fetchNsItemsSearch(queryParams) {
|
|
21460
21460
|
const params = { limit: 20, ...queryParams };
|
|
21461
21461
|
const url = '/platform/public/namespaces/{namespace}/items/search'.replace('{namespace}', this.namespace);
|
|
21462
21462
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21470,7 +21470,7 @@ class Item$ {
|
|
|
21470
21470
|
/**
|
|
21471
21471
|
* 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>
|
|
21472
21472
|
*/
|
|
21473
|
-
|
|
21473
|
+
fetchNsItemsByAppId(queryParams) {
|
|
21474
21474
|
const params = { ...queryParams };
|
|
21475
21475
|
const url = '/platform/public/namespaces/{namespace}/items/byAppId'.replace('{namespace}', this.namespace);
|
|
21476
21476
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21484,7 +21484,7 @@ class Item$ {
|
|
|
21484
21484
|
/**
|
|
21485
21485
|
* 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>
|
|
21486
21486
|
*/
|
|
21487
|
-
|
|
21487
|
+
fetchNsItemsByItemidLocale(itemId, queryParams) {
|
|
21488
21488
|
const params = { ...queryParams };
|
|
21489
21489
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/locale'
|
|
21490
21490
|
.replace('{namespace}', this.namespace)
|
|
@@ -21500,7 +21500,7 @@ class Item$ {
|
|
|
21500
21500
|
/**
|
|
21501
21501
|
* 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>
|
|
21502
21502
|
*/
|
|
21503
|
-
|
|
21503
|
+
fetchNsItemsByCriteria(queryParams) {
|
|
21504
21504
|
const params = { limit: 20, sortBy: 'name:asc,displayOrder:asc', ...queryParams };
|
|
21505
21505
|
const url = '/platform/public/namespaces/{namespace}/items/byCriteria'.replace('{namespace}', this.namespace);
|
|
21506
21506
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21514,7 +21514,7 @@ class Item$ {
|
|
|
21514
21514
|
/**
|
|
21515
21515
|
* Get item dynamic data for a published item.<br>Other detail info: <ul><li><i>Returns</i>: item dynamic data</li></ul>
|
|
21516
21516
|
*/
|
|
21517
|
-
|
|
21517
|
+
fetchNsItemsByItemidDynamic(itemId) {
|
|
21518
21518
|
const params = {};
|
|
21519
21519
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/dynamic'
|
|
21520
21520
|
.replace('{namespace}', this.namespace)
|
|
@@ -21530,7 +21530,7 @@ class Item$ {
|
|
|
21530
21530
|
/**
|
|
21531
21531
|
* This API is used to validate user item purchase condition
|
|
21532
21532
|
*/
|
|
21533
|
-
|
|
21533
|
+
postNsItemsPurchaseConditionsValidate(data) {
|
|
21534
21534
|
const params = {};
|
|
21535
21535
|
const url = '/platform/public/namespaces/{namespace}/items/purchase/conditions/validate'.replace('{namespace}', this.namespace);
|
|
21536
21536
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -21539,7 +21539,7 @@ class Item$ {
|
|
|
21539
21539
|
/**
|
|
21540
21540
|
* This API is used to bulk get locale items. 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 items)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store items)</li><li><i>Returns</i>: the list of items info</li></ul>
|
|
21541
21541
|
*/
|
|
21542
|
-
|
|
21542
|
+
fetchNsItemsLocaleByIds(queryParams) {
|
|
21543
21543
|
const params = { ...queryParams };
|
|
21544
21544
|
const url = '/platform/public/namespaces/{namespace}/items/locale/byIds'.replace('{namespace}', this.namespace);
|
|
21545
21545
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21565,22 +21565,22 @@ class ItemApi {
|
|
|
21565
21565
|
* 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>
|
|
21566
21566
|
*/
|
|
21567
21567
|
getItemByAppId({ ...queryParams }) {
|
|
21568
|
-
return this.newInstance().
|
|
21568
|
+
return this.newInstance().fetchNsItemsByAppId(queryParams);
|
|
21569
21569
|
}
|
|
21570
21570
|
/**
|
|
21571
21571
|
* Get item dynamic data for a published item.<br>Other detail info: <ul><li><i>Returns</i>: item dynamic data</li></ul>
|
|
21572
21572
|
*/
|
|
21573
21573
|
getItemByItemIdDynamic(itemId) {
|
|
21574
|
-
return this.newInstance().
|
|
21574
|
+
return this.newInstance().fetchNsItemsByItemidDynamic(itemId);
|
|
21575
21575
|
}
|
|
21576
21576
|
fetchItemsByCriteria({ queryParams }) {
|
|
21577
|
-
return this.newInstance().
|
|
21577
|
+
return this.newInstance().fetchNsItemsByCriteria(queryParams);
|
|
21578
21578
|
}
|
|
21579
21579
|
/**
|
|
21580
21580
|
* 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>
|
|
21581
21581
|
*/
|
|
21582
21582
|
getItemsByItemIds({ queryParams }) {
|
|
21583
|
-
return this.newInstance().
|
|
21583
|
+
return this.newInstance().fetchNsItemsLocaleByIds(queryParams);
|
|
21584
21584
|
}
|
|
21585
21585
|
/**
|
|
21586
21586
|
* Fetch the items and convert it into a map of `itemId` and its item info
|
|
@@ -21605,19 +21605,19 @@ class ItemApi {
|
|
|
21605
21605
|
* 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>
|
|
21606
21606
|
*/
|
|
21607
21607
|
getItemsByItemIdLocale({ itemId, queryParams }) {
|
|
21608
|
-
return this.newInstance().
|
|
21608
|
+
return this.newInstance().fetchNsItemsByItemidLocale(itemId, queryParams);
|
|
21609
21609
|
}
|
|
21610
21610
|
/**
|
|
21611
21611
|
* 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>
|
|
21612
21612
|
*/
|
|
21613
21613
|
getAppInfoByItemId({ itemId, queryParams }) {
|
|
21614
|
-
return this.newInstance().
|
|
21614
|
+
return this.newInstance().fetchNsItemsByItemidAppLocale(itemId, queryParams);
|
|
21615
21615
|
}
|
|
21616
21616
|
/**
|
|
21617
21617
|
* This API is used to validate user item purchase condition
|
|
21618
21618
|
*/
|
|
21619
21619
|
validatePurchaseCondition(data) {
|
|
21620
|
-
return this.newInstance().
|
|
21620
|
+
return this.newInstance().postNsItemsPurchaseConditionsValidate(data);
|
|
21621
21621
|
}
|
|
21622
21622
|
newInstance() {
|
|
21623
21623
|
return new Item$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -21660,13 +21660,6 @@ const OrderHistoryInfo = mod.object({
|
|
|
21660
21660
|
*/
|
|
21661
21661
|
const OrderHistoryInfoArray = mod.array(OrderHistoryInfo);
|
|
21662
21662
|
|
|
21663
|
-
/*
|
|
21664
|
-
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
21665
|
-
* This is licensed software from AccelByte Inc, for limitations
|
|
21666
|
-
* and restrictions contact your company contract manager.
|
|
21667
|
-
*/
|
|
21668
|
-
const ADtoObjectForOrderCreationOptions = mod.object({ skipPriceValidation: mod.boolean().nullish() });
|
|
21669
|
-
|
|
21670
21663
|
/*
|
|
21671
21664
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
21672
21665
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -21680,6 +21673,13 @@ const CurrencySummary = mod.object({
|
|
|
21680
21673
|
decimals: mod.number().int()
|
|
21681
21674
|
});
|
|
21682
21675
|
|
|
21676
|
+
/*
|
|
21677
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
21678
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
21679
|
+
* and restrictions contact your company contract manager.
|
|
21680
|
+
*/
|
|
21681
|
+
const OrderCreationOptions = mod.object({ skipPriceValidation: mod.boolean().nullish() });
|
|
21682
|
+
|
|
21683
21683
|
/*
|
|
21684
21684
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
21685
21685
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -21695,7 +21695,7 @@ const OrderInfo = mod.object({
|
|
|
21695
21695
|
quantity: mod.number().int(),
|
|
21696
21696
|
price: mod.number().int(),
|
|
21697
21697
|
discountedPrice: mod.number().int(),
|
|
21698
|
-
creationOptions:
|
|
21698
|
+
creationOptions: OrderCreationOptions.nullish(),
|
|
21699
21699
|
paymentProvider: mod.enum(['WALLET', 'XSOLLA', 'ADYEN', 'STRIPE', 'CHECKOUT', 'ALIPAY', 'WXPAY', 'PAYPAL']).nullish(),
|
|
21700
21700
|
paymentMethod: mod.string().nullish(),
|
|
21701
21701
|
tax: mod.number().int().nullish(),
|
|
@@ -21760,7 +21760,7 @@ class Order$ {
|
|
|
21760
21760
|
/**
|
|
21761
21761
|
* 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>
|
|
21762
21762
|
*/
|
|
21763
|
-
|
|
21763
|
+
fetchNsUsersByUseridOrders(userId, queryParams) {
|
|
21764
21764
|
const params = { limit: 20, ...queryParams };
|
|
21765
21765
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders'
|
|
21766
21766
|
.replace('{namespace}', this.namespace)
|
|
@@ -21776,7 +21776,7 @@ class Order$ {
|
|
|
21776
21776
|
/**
|
|
21777
21777
|
* 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>
|
|
21778
21778
|
*/
|
|
21779
|
-
|
|
21779
|
+
postNsUsersByUseridOrders(userId, data) {
|
|
21780
21780
|
const params = {};
|
|
21781
21781
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders'
|
|
21782
21782
|
.replace('{namespace}', this.namespace)
|
|
@@ -21787,7 +21787,7 @@ class Order$ {
|
|
|
21787
21787
|
/**
|
|
21788
21788
|
* 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>
|
|
21789
21789
|
*/
|
|
21790
|
-
|
|
21790
|
+
fetchNsUsersByUseridOrdersByOrderno(userId, orderNo) {
|
|
21791
21791
|
const params = {};
|
|
21792
21792
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}'
|
|
21793
21793
|
.replace('{namespace}', this.namespace)
|
|
@@ -21804,7 +21804,7 @@ class Order$ {
|
|
|
21804
21804
|
/**
|
|
21805
21805
|
* Download user order receipt by orderNo.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ORDER", action=2 (READ)</li><li><i>Returns</i>: order receipt pdf</li></ul>
|
|
21806
21806
|
*/
|
|
21807
|
-
|
|
21807
|
+
fetchNsUsersByUseridOrdersByOrdernoReceiptPdf(userId, orderNo) {
|
|
21808
21808
|
const params = {};
|
|
21809
21809
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/receipt.pdf'
|
|
21810
21810
|
.replace('{namespace}', this.namespace)
|
|
@@ -21821,7 +21821,7 @@ class Order$ {
|
|
|
21821
21821
|
/**
|
|
21822
21822
|
* 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>
|
|
21823
21823
|
*/
|
|
21824
|
-
|
|
21824
|
+
putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo) {
|
|
21825
21825
|
const params = {};
|
|
21826
21826
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/cancel'
|
|
21827
21827
|
.replace('{namespace}', this.namespace)
|
|
@@ -21833,7 +21833,7 @@ class Order$ {
|
|
|
21833
21833
|
/**
|
|
21834
21834
|
* Get user order histories.<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 history</li></ul>
|
|
21835
21835
|
*/
|
|
21836
|
-
|
|
21836
|
+
fetchNsUsersByUseridOrdersByOrdernoHistory(userId, orderNo) {
|
|
21837
21837
|
const params = {};
|
|
21838
21838
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/history'
|
|
21839
21839
|
.replace('{namespace}', this.namespace)
|
|
@@ -21861,25 +21861,25 @@ class OrderApi {
|
|
|
21861
21861
|
* 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>
|
|
21862
21862
|
*/
|
|
21863
21863
|
this.getOrderList = ({ userId, queryParams }) => {
|
|
21864
|
-
return this.newInstance().
|
|
21864
|
+
return this.newInstance().fetchNsUsersByUseridOrders(userId, queryParams);
|
|
21865
21865
|
};
|
|
21866
21866
|
/**
|
|
21867
21867
|
* 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>
|
|
21868
21868
|
*/
|
|
21869
21869
|
this.getOrderByOrderNo = ({ userId, orderNo }) => {
|
|
21870
|
-
return this.newInstance().
|
|
21870
|
+
return this.newInstance().fetchNsUsersByUseridOrdersByOrderno(userId, orderNo);
|
|
21871
21871
|
};
|
|
21872
21872
|
/**
|
|
21873
21873
|
* 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>
|
|
21874
21874
|
*/
|
|
21875
21875
|
this.cancelOrder = ({ userId, orderNo }) => {
|
|
21876
|
-
return this.newInstance().
|
|
21876
|
+
return this.newInstance().putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo);
|
|
21877
21877
|
};
|
|
21878
21878
|
/**
|
|
21879
21879
|
* 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>
|
|
21880
21880
|
*/
|
|
21881
21881
|
this.createOrder = ({ userId, data }) => {
|
|
21882
|
-
return this.newInstance().
|
|
21882
|
+
return this.newInstance().postNsUsersByUseridOrders(userId, data);
|
|
21883
21883
|
};
|
|
21884
21884
|
/**
|
|
21885
21885
|
* Fetch all information needed for a user to check the user's availability to purchase the item
|
|
@@ -21956,7 +21956,7 @@ class PaymentAccount$ {
|
|
|
21956
21956
|
/**
|
|
21957
21957
|
* 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>
|
|
21958
21958
|
*/
|
|
21959
|
-
|
|
21959
|
+
fetchNsUsersByUseridPaymentAccounts(userId) {
|
|
21960
21960
|
const params = {};
|
|
21961
21961
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts'
|
|
21962
21962
|
.replace('{namespace}', this.namespace)
|
|
@@ -21972,7 +21972,7 @@ class PaymentAccount$ {
|
|
|
21972
21972
|
/**
|
|
21973
21973
|
* 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>
|
|
21974
21974
|
*/
|
|
21975
|
-
|
|
21975
|
+
deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id) {
|
|
21976
21976
|
const params = {};
|
|
21977
21977
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts/{type}/{id}'
|
|
21978
21978
|
.replace('{namespace}', this.namespace)
|
|
@@ -22079,7 +22079,7 @@ class PaymentStation$ {
|
|
|
22079
22079
|
/**
|
|
22080
22080
|
* Check payment order paid status.<br>Other detail info: <ul><li><i>Returns</i>: Payment order paid result</li></ul>
|
|
22081
22081
|
*/
|
|
22082
|
-
|
|
22082
|
+
fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo) {
|
|
22083
22083
|
const params = {};
|
|
22084
22084
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/status'
|
|
22085
22085
|
.replace('{namespace}', this.namespace)
|
|
@@ -22095,7 +22095,7 @@ class PaymentStation$ {
|
|
|
22095
22095
|
/**
|
|
22096
22096
|
* Check and get a payment order's should pay tax.<br>Other detail info: <ul><li><i>Returns</i>: tax result</li></ul>
|
|
22097
22097
|
*/
|
|
22098
|
-
|
|
22098
|
+
fetchNsPaymentTax(queryParams) {
|
|
22099
22099
|
const params = { ...queryParams };
|
|
22100
22100
|
const url = '/platform/public/namespaces/{namespace}/payment/tax'.replace('{namespace}', this.namespace);
|
|
22101
22101
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22109,7 +22109,7 @@ class PaymentStation$ {
|
|
|
22109
22109
|
/**
|
|
22110
22110
|
* Do payment(For now, this only support checkout.com).<br>Other detail info: <ul><li><i>Returns</i>: Payment process result</li></ul>
|
|
22111
22111
|
*/
|
|
22112
|
-
|
|
22112
|
+
postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams) {
|
|
22113
22113
|
const params = { paymentProvider: 'CHECKOUT', ...queryParams };
|
|
22114
22114
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/pay'
|
|
22115
22115
|
.replace('{namespace}', this.namespace)
|
|
@@ -22120,7 +22120,7 @@ class PaymentStation$ {
|
|
|
22120
22120
|
/**
|
|
22121
22121
|
* 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>
|
|
22122
22122
|
*/
|
|
22123
|
-
|
|
22123
|
+
fetchNsPaymentPublicconfig(queryParams) {
|
|
22124
22124
|
const params = { ...queryParams };
|
|
22125
22125
|
const url = '/platform/public/namespaces/{namespace}/payment/publicconfig'.replace('{namespace}', this.namespace);
|
|
22126
22126
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22136,7 +22136,7 @@ class PaymentStation$ {
|
|
|
22136
22136
|
*
|
|
22137
22137
|
* When the shopper has completed the payment you will receive a successful AUTHORISATION.</li><li>RECEIVED: Inform the shopper that you've received their order, and are waiting for the payment to clear.</li><li>UNKNOWN: An error occurred during the payment processing.</li><li>FAILED: Shopper paid failed because of various reasons.</li></ul></td></tr><tr><td>reason</td><td>String</td><td>No</td><td>payment status reason</td></tr></table>Other detail info: <ul><li><i>xsolla</i>: parameters 'user_id', 'foreinginvoice', 'invoice_id' and 'status' will be automatically added to the link</li><li><i>adyen</i>: https://docs.adyen.com/developers/checkout/web-sdk</li></ul>
|
|
22138
22138
|
*/
|
|
22139
|
-
|
|
22139
|
+
fetchNsPaymentReturnurl(queryParams) {
|
|
22140
22140
|
const params = { ...queryParams };
|
|
22141
22141
|
const url = '/platform/public/namespaces/{namespace}/payment/returnurl'.replace('{namespace}', this.namespace);
|
|
22142
22142
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22150,7 +22150,7 @@ class PaymentStation$ {
|
|
|
22150
22150
|
/**
|
|
22151
22151
|
* Get payment methods.<br>Other detail info: <ul><li><i>Returns</i>: Payment method list</li></ul>
|
|
22152
22152
|
*/
|
|
22153
|
-
|
|
22153
|
+
fetchNsPaymentMethods(queryParams) {
|
|
22154
22154
|
const params = { ...queryParams };
|
|
22155
22155
|
const url = '/platform/public/namespaces/{namespace}/payment/methods'.replace('{namespace}', this.namespace);
|
|
22156
22156
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22164,7 +22164,7 @@ class PaymentStation$ {
|
|
|
22164
22164
|
/**
|
|
22165
22165
|
* Get payment order info.<br>Other detail info: <ul><li><i>Returns</i>: Payment order details</li></ul>
|
|
22166
22166
|
*/
|
|
22167
|
-
|
|
22167
|
+
fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo) {
|
|
22168
22168
|
const params = {};
|
|
22169
22169
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/info'
|
|
22170
22170
|
.replace('{namespace}', this.namespace)
|
|
@@ -22180,7 +22180,7 @@ class PaymentStation$ {
|
|
|
22180
22180
|
/**
|
|
22181
22181
|
* Get qrcode.<br>Other detail info: <ul><li><i>Returns</i>: QRCode image stream</li></ul>
|
|
22182
22182
|
*/
|
|
22183
|
-
|
|
22183
|
+
fetchNsPaymentQrcode(queryParams) {
|
|
22184
22184
|
const params = { ...queryParams };
|
|
22185
22185
|
const url = '/platform/public/namespaces/{namespace}/payment/qrcode'.replace('{namespace}', this.namespace);
|
|
22186
22186
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22194,7 +22194,7 @@ class PaymentStation$ {
|
|
|
22194
22194
|
/**
|
|
22195
22195
|
* Get payment url.<br>Other detail info: <ul><li><i>Returns</i>: Get payment link</li></ul>
|
|
22196
22196
|
*/
|
|
22197
|
-
|
|
22197
|
+
postNsPaymentLink(data) {
|
|
22198
22198
|
const params = {};
|
|
22199
22199
|
const url = '/platform/public/namespaces/{namespace}/payment/link'.replace('{namespace}', this.namespace);
|
|
22200
22200
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22214,31 +22214,31 @@ class PaymentApi {
|
|
|
22214
22214
|
* 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>
|
|
22215
22215
|
*/
|
|
22216
22216
|
this.getPaymentAccounts = (userId) => {
|
|
22217
|
-
return this.newInstance().
|
|
22217
|
+
return this.newInstance().fetchNsUsersByUseridPaymentAccounts(userId);
|
|
22218
22218
|
};
|
|
22219
22219
|
/**
|
|
22220
22220
|
* 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>
|
|
22221
22221
|
*/
|
|
22222
22222
|
this.deletePaymentAccount = ({ userId, type, id }) => {
|
|
22223
|
-
return this.newInstance().
|
|
22223
|
+
return this.newInstance().deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id);
|
|
22224
22224
|
};
|
|
22225
22225
|
/**
|
|
22226
22226
|
* Get payment order info.<br>Other detail info: <ul><li><i>Returns</i>: Payment order details</li></ul>
|
|
22227
22227
|
*/
|
|
22228
22228
|
this.getPaymentInfo = (paymentOrderNo) => {
|
|
22229
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22229
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo);
|
|
22230
22230
|
};
|
|
22231
22231
|
/**
|
|
22232
22232
|
* Do payment(For now, this only support checkout.com).<br>Other detail info: <ul><li><i>Returns</i>: Payment process result</li></ul>
|
|
22233
22233
|
*/
|
|
22234
22234
|
this.processPaymentOrder = (paymentOrderNo, data, queryParams) => {
|
|
22235
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22235
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams);
|
|
22236
22236
|
};
|
|
22237
22237
|
/**
|
|
22238
22238
|
* 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>
|
|
22239
22239
|
*/
|
|
22240
22240
|
this.getPaymentProviderPublicConfig = (paymentProvider, region, sandbox) => {
|
|
22241
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22241
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentPublicconfig({
|
|
22242
22242
|
paymentProvider,
|
|
22243
22243
|
region,
|
|
22244
22244
|
sandbox
|
|
@@ -22248,19 +22248,19 @@ class PaymentApi {
|
|
|
22248
22248
|
* Check payment order paid status.<br>Other detail info: <ul><li><i>Returns</i>: Payment order paid result</li></ul>
|
|
22249
22249
|
*/
|
|
22250
22250
|
this.getPaymentOrderStatus = (paymentOrderNo) => {
|
|
22251
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22251
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo);
|
|
22252
22252
|
};
|
|
22253
22253
|
/**
|
|
22254
22254
|
* Get payment methods.<br>Other detail info: <ul><li><i>Returns</i>: Payment method list</li></ul>
|
|
22255
22255
|
*/
|
|
22256
22256
|
this.getPaymentMethods = (paymentOrderNo) => {
|
|
22257
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22257
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentMethods({ paymentOrderNo });
|
|
22258
22258
|
};
|
|
22259
22259
|
/**
|
|
22260
22260
|
* Check and get a payment order's should pay tax.<br>Other detail info: <ul><li><i>Returns</i>: tax result</li></ul>
|
|
22261
22261
|
*/
|
|
22262
22262
|
this.getPaymentTax = (paymentProvider, paymentOrderNo, zipCode) => {
|
|
22263
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22263
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentTax({
|
|
22264
22264
|
paymentProvider,
|
|
22265
22265
|
paymentOrderNo,
|
|
22266
22266
|
zipCode
|
|
@@ -22270,7 +22270,7 @@ class PaymentApi {
|
|
|
22270
22270
|
* Get payment url.<br>Other detail info: <ul><li><i>Returns</i>: Get payment link</li></ul>
|
|
22271
22271
|
*/
|
|
22272
22272
|
this.createPaymentUrl = (data) => {
|
|
22273
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
22273
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentLink(data);
|
|
22274
22274
|
};
|
|
22275
22275
|
}
|
|
22276
22276
|
newInstance() {
|
|
@@ -22415,7 +22415,7 @@ class Subscription$ {
|
|
|
22415
22415
|
/**
|
|
22416
22416
|
* 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>
|
|
22417
22417
|
*/
|
|
22418
|
-
|
|
22418
|
+
fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId) {
|
|
22419
22419
|
const params = {};
|
|
22420
22420
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}'
|
|
22421
22421
|
.replace('{namespace}', this.namespace)
|
|
@@ -22432,7 +22432,7 @@ class Subscription$ {
|
|
|
22432
22432
|
/**
|
|
22433
22433
|
* 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>
|
|
22434
22434
|
*/
|
|
22435
|
-
|
|
22435
|
+
fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams) {
|
|
22436
22436
|
const params = { limit: 20, ...queryParams };
|
|
22437
22437
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/history'
|
|
22438
22438
|
.replace('{namespace}', this.namespace)
|
|
@@ -22449,7 +22449,7 @@ class Subscription$ {
|
|
|
22449
22449
|
/**
|
|
22450
22450
|
* Check user subscription subscribable by itemId, ACTIVE USER subscription can't do subscribe again.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:SUBSCRIPTION", action=2 (READ)</li><li><i>Returns</i>: subscribable info</li></ul>
|
|
22451
22451
|
*/
|
|
22452
|
-
|
|
22452
|
+
fetchNsUsersByUseridSubscriptionsSubscribableByItemId(userId, queryParams) {
|
|
22453
22453
|
const params = { ...queryParams };
|
|
22454
22454
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/subscribable/byItemId'
|
|
22455
22455
|
.replace('{namespace}', this.namespace)
|
|
@@ -22465,7 +22465,7 @@ class Subscription$ {
|
|
|
22465
22465
|
/**
|
|
22466
22466
|
* 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>
|
|
22467
22467
|
*/
|
|
22468
|
-
|
|
22468
|
+
fetchNsUsersByUseridSubscriptions(userId, queryParams) {
|
|
22469
22469
|
const params = { limit: 20, ...queryParams };
|
|
22470
22470
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions'
|
|
22471
22471
|
.replace('{namespace}', this.namespace)
|
|
@@ -22481,7 +22481,7 @@ class Subscription$ {
|
|
|
22481
22481
|
/**
|
|
22482
22482
|
* 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>
|
|
22483
22483
|
*/
|
|
22484
|
-
|
|
22484
|
+
postNsUsersByUseridSubscriptions(userId, data) {
|
|
22485
22485
|
const params = {};
|
|
22486
22486
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions'
|
|
22487
22487
|
.replace('{namespace}', this.namespace)
|
|
@@ -22492,7 +22492,7 @@ class Subscription$ {
|
|
|
22492
22492
|
/**
|
|
22493
22493
|
* 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>
|
|
22494
22494
|
*/
|
|
22495
|
-
|
|
22495
|
+
putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data) {
|
|
22496
22496
|
const params = {};
|
|
22497
22497
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/cancel'
|
|
22498
22498
|
.replace('{namespace}', this.namespace)
|
|
@@ -22504,7 +22504,7 @@ class Subscription$ {
|
|
|
22504
22504
|
/**
|
|
22505
22505
|
* 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>
|
|
22506
22506
|
*/
|
|
22507
|
-
|
|
22507
|
+
putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId) {
|
|
22508
22508
|
const params = {};
|
|
22509
22509
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/billingAccount'
|
|
22510
22510
|
.replace('{namespace}', this.namespace)
|
|
@@ -22528,37 +22528,37 @@ class SubscriptionApi {
|
|
|
22528
22528
|
* 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>
|
|
22529
22529
|
*/
|
|
22530
22530
|
getUserSubscriptions({ userId, queryParams }) {
|
|
22531
|
-
return this.newInstance().
|
|
22531
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptions(userId, queryParams);
|
|
22532
22532
|
}
|
|
22533
22533
|
/**
|
|
22534
22534
|
* 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>
|
|
22535
22535
|
*/
|
|
22536
22536
|
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }) {
|
|
22537
|
-
return this.newInstance().
|
|
22537
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId);
|
|
22538
22538
|
}
|
|
22539
22539
|
/**
|
|
22540
22540
|
* 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>
|
|
22541
22541
|
*/
|
|
22542
22542
|
createSubscription({ userId, data }) {
|
|
22543
|
-
return this.newInstance().
|
|
22543
|
+
return this.newInstance().postNsUsersByUseridSubscriptions(userId, data);
|
|
22544
22544
|
}
|
|
22545
22545
|
/**
|
|
22546
22546
|
* 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>
|
|
22547
22547
|
*/
|
|
22548
22548
|
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }) {
|
|
22549
|
-
return this.newInstance().
|
|
22549
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams);
|
|
22550
22550
|
}
|
|
22551
22551
|
/**
|
|
22552
22552
|
* 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>
|
|
22553
22553
|
*/
|
|
22554
22554
|
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }) {
|
|
22555
|
-
return this.newInstance().
|
|
22555
|
+
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId);
|
|
22556
22556
|
}
|
|
22557
22557
|
/**
|
|
22558
22558
|
* 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>
|
|
22559
22559
|
*/
|
|
22560
22560
|
cancelUserSubscription({ userId, subscriptionId, data }) {
|
|
22561
|
-
return this.newInstance().
|
|
22561
|
+
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data);
|
|
22562
22562
|
}
|
|
22563
22563
|
newInstance() {
|
|
22564
22564
|
return new Subscription$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -22667,7 +22667,7 @@ class Wallet$ {
|
|
|
22667
22667
|
/**
|
|
22668
22668
|
* 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>
|
|
22669
22669
|
*/
|
|
22670
|
-
|
|
22670
|
+
fetchNsUsersMeWalletsByCurrencycode(currencyCode) {
|
|
22671
22671
|
const params = {};
|
|
22672
22672
|
const url = '/platform/public/namespaces/{namespace}/users/me/wallets/{currencyCode}'
|
|
22673
22673
|
.replace('{namespace}', this.namespace)
|
|
@@ -22683,7 +22683,7 @@ class Wallet$ {
|
|
|
22683
22683
|
/**
|
|
22684
22684
|
* List wallet transactions by currency code ordered by create time desc.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:WALLET", action=2 (READ)</li><li><i>Returns</i>: currency transaction info</li></ul>
|
|
22685
22685
|
*/
|
|
22686
|
-
|
|
22686
|
+
fetchNsUsersByUseridWalletsByCurrencycodeTransactions(userId, currencyCode, queryParams) {
|
|
22687
22687
|
const params = { limit: 20, ...queryParams };
|
|
22688
22688
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}/transactions'
|
|
22689
22689
|
.replace('{namespace}', this.namespace)
|
|
@@ -22700,7 +22700,7 @@ class Wallet$ {
|
|
|
22700
22700
|
/**
|
|
22701
22701
|
* 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>
|
|
22702
22702
|
*/
|
|
22703
|
-
|
|
22703
|
+
fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode) {
|
|
22704
22704
|
const params = {};
|
|
22705
22705
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}'
|
|
22706
22706
|
.replace('{namespace}', this.namespace)
|
|
@@ -22728,13 +22728,13 @@ class WalletApi {
|
|
|
22728
22728
|
* 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>
|
|
22729
22729
|
*/
|
|
22730
22730
|
this.getUserMeWallet = (currencyCode) => {
|
|
22731
|
-
return this.newInstance().
|
|
22731
|
+
return this.newInstance().fetchNsUsersMeWalletsByCurrencycode(currencyCode);
|
|
22732
22732
|
};
|
|
22733
22733
|
/**
|
|
22734
22734
|
* 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>
|
|
22735
22735
|
*/
|
|
22736
22736
|
this.getWalletByUserId = (userId, currencyCode) => {
|
|
22737
|
-
return this.newInstance().
|
|
22737
|
+
return this.newInstance().fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode);
|
|
22738
22738
|
};
|
|
22739
22739
|
/**
|
|
22740
22740
|
* get a map of wallet represented by its currency code
|
|
@@ -24742,6 +24742,8 @@ const ThirdPartyLoginPlatformCredentialRequest = mod.object({
|
|
|
24742
24742
|
TokenAuthenticationType: mod.string(),
|
|
24743
24743
|
TokenClaimsMapping: mod.record(mod.string()),
|
|
24744
24744
|
TokenEndpoint: mod.string(),
|
|
24745
|
+
UserInfoEndpoint: mod.string(),
|
|
24746
|
+
UserInfoHTTPMethod: mod.string(),
|
|
24745
24747
|
scopes: mod.array(mod.string())
|
|
24746
24748
|
});
|
|
24747
24749
|
|
|
@@ -24776,6 +24778,8 @@ const ThirdPartyLoginPlatformCredentialResponse = mod.object({
|
|
|
24776
24778
|
TokenAuthenticationType: mod.string(),
|
|
24777
24779
|
TokenClaimsMapping: mod.record(mod.string()).nullish(),
|
|
24778
24780
|
TokenEndpoint: mod.string().nullish(),
|
|
24781
|
+
UserInfoEndpoint: mod.string().nullish(),
|
|
24782
|
+
UserInfoHTTPMethod: mod.string().nullish(),
|
|
24779
24783
|
registeredDomains: mod.array(RegisteredDomain),
|
|
24780
24784
|
scopes: mod.array(mod.string()).nullish()
|
|
24781
24785
|
});
|
|
@@ -25186,7 +25190,7 @@ class Category$ {
|
|
|
25186
25190
|
/**
|
|
25187
25191
|
* This API is used to get child categories by category path.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Returns</i>: list of child categories data</li></ul>
|
|
25188
25192
|
*/
|
|
25189
|
-
|
|
25193
|
+
fetchNsCategoriesByCategorypathChildren(categoryPath, queryParams) {
|
|
25190
25194
|
const params = { ...queryParams };
|
|
25191
25195
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}/children'
|
|
25192
25196
|
.replace('{namespace}', this.namespace)
|
|
@@ -25202,7 +25206,7 @@ class Category$ {
|
|
|
25202
25206
|
/**
|
|
25203
25207
|
* This API is used to get category by category path.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1 (CREATE)(user with this permission can view draft store category)</li><li><i>Returns</i>: category data</li></ul>
|
|
25204
25208
|
*/
|
|
25205
|
-
|
|
25209
|
+
fetchNsCategoriesByCategorypath(categoryPath, queryParams) {
|
|
25206
25210
|
const params = { ...queryParams };
|
|
25207
25211
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}'
|
|
25208
25212
|
.replace('{namespace}', this.namespace)
|
|
@@ -25218,7 +25222,7 @@ class Category$ {
|
|
|
25218
25222
|
/**
|
|
25219
25223
|
* This API is used to get root categories.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Returns</i>: root category data</li></ul>
|
|
25220
25224
|
*/
|
|
25221
|
-
|
|
25225
|
+
fetchNsCategories(queryParams) {
|
|
25222
25226
|
const params = { ...queryParams };
|
|
25223
25227
|
const url = '/platform/public/namespaces/{namespace}/categories'.replace('{namespace}', this.namespace);
|
|
25224
25228
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25232,7 +25236,7 @@ class Category$ {
|
|
|
25232
25236
|
/**
|
|
25233
25237
|
* This API is used to get descendant categories by category path.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store category)</li><li><i>Returns</i>: list of descendant categories data</li></ul>
|
|
25234
25238
|
*/
|
|
25235
|
-
|
|
25239
|
+
fetchNsCategoriesByCategorypathDescendants(categoryPath, queryParams) {
|
|
25236
25240
|
const params = { ...queryParams };
|
|
25237
25241
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}/descendants'
|
|
25238
25242
|
.replace('{namespace}', this.namespace)
|
|
@@ -25248,7 +25252,7 @@ class Category$ {
|
|
|
25248
25252
|
/**
|
|
25249
25253
|
* This API is used to download store's structured categories.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store content)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store content)</li><li><i>Returns</i>: structured categories</li></ul>
|
|
25250
25254
|
*/
|
|
25251
|
-
|
|
25255
|
+
fetchNsCategoriesDownload(queryParams) {
|
|
25252
25256
|
const params = { ...queryParams };
|
|
25253
25257
|
const url = '/platform/public/namespaces/{namespace}/categories/download'.replace('{namespace}', this.namespace);
|
|
25254
25258
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25303,7 +25307,7 @@ class Store$ {
|
|
|
25303
25307
|
/**
|
|
25304
25308
|
* This API is used to list all stores in a namespace.<p>Other detail info: <ul><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store)</li><li><i>Returns</i>: the list of stores</li></ul>
|
|
25305
25309
|
*/
|
|
25306
|
-
|
|
25310
|
+
fetchNsStores() {
|
|
25307
25311
|
const params = {};
|
|
25308
25312
|
const url = '/platform/public/namespaces/{namespace}/stores'.replace('{namespace}', this.namespace);
|
|
25309
25313
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25363,7 +25367,7 @@ class Section$ {
|
|
|
25363
25367
|
/**
|
|
25364
25368
|
* This API is used to list active section contents.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:STORE, action=2 (READ)</li><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store sections)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store sections)</li><li><i>Returns</i>: active section contents</li></ul>
|
|
25365
25369
|
*/
|
|
25366
|
-
|
|
25370
|
+
fetchNsUsersByUseridSections(userId, queryParams) {
|
|
25367
25371
|
const params = { ...queryParams };
|
|
25368
25372
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/sections'
|
|
25369
25373
|
.replace('{namespace}', this.namespace)
|
|
@@ -25418,7 +25422,7 @@ class View$ {
|
|
|
25418
25422
|
/**
|
|
25419
25423
|
* This API is used to get all views.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:STORE, action=2 (READ)</li><li><i>Optional permission</i>: resource="PREVIEW", action=1(CREATE) (user with this permission can view draft store views)</li><li><i>Optional permission</i>: resource="SANDBOX", action=1(CREATE) (user with this permission can view draft store views)</li><li><i>Returns</i>: all views</li></ul>
|
|
25420
25424
|
*/
|
|
25421
|
-
|
|
25425
|
+
fetchNsUsersByUseridViews(userId, queryParams) {
|
|
25422
25426
|
const params = { ...queryParams };
|
|
25423
25427
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/views'
|
|
25424
25428
|
.replace('{namespace}', this.namespace)
|
|
@@ -25448,7 +25452,7 @@ class Dlc$ {
|
|
|
25448
25452
|
/**
|
|
25449
25453
|
* Sync steam dlc.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:DLC, action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25450
25454
|
*/
|
|
25451
|
-
|
|
25455
|
+
putNsUsersByUseridDlcSteamSync(userId, data) {
|
|
25452
25456
|
const params = {};
|
|
25453
25457
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/steam/sync'
|
|
25454
25458
|
.replace('{namespace}', this.namespace)
|
|
@@ -25459,7 +25463,7 @@ class Dlc$ {
|
|
|
25459
25463
|
/**
|
|
25460
25464
|
* Sync Xbox inventory's dlc items.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:DLC, action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25461
25465
|
*/
|
|
25462
|
-
|
|
25466
|
+
putNsUsersByUseridDlcXblSync(userId, data) {
|
|
25463
25467
|
const params = {};
|
|
25464
25468
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/xbl/sync'
|
|
25465
25469
|
.replace('{namespace}', this.namespace)
|
|
@@ -25470,7 +25474,7 @@ class Dlc$ {
|
|
|
25470
25474
|
/**
|
|
25471
25475
|
* Synchronize with dlc entitlements in PSN Store.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:DLC, action=4 (UPDATE)</li><li><i>Returns</i>: result of synchronization</li></ul>
|
|
25472
25476
|
*/
|
|
25473
|
-
|
|
25477
|
+
putNsUsersByUseridDlcPsnSync(userId, data) {
|
|
25474
25478
|
const params = {};
|
|
25475
25479
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/psn/sync'
|
|
25476
25480
|
.replace('{namespace}', this.namespace)
|
|
@@ -25481,7 +25485,7 @@ class Dlc$ {
|
|
|
25481
25485
|
/**
|
|
25482
25486
|
* Sync epic games dlc items.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:DLC, action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25483
25487
|
*/
|
|
25484
|
-
|
|
25488
|
+
putNsUsersByUseridDlcEpicgamesSync(userId, data) {
|
|
25485
25489
|
const params = {};
|
|
25486
25490
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/epicgames/sync'
|
|
25487
25491
|
.replace('{namespace}', this.namespace)
|
|
@@ -25492,7 +25496,7 @@ class Dlc$ {
|
|
|
25492
25496
|
/**
|
|
25493
25497
|
* Synchronize with dlc entitlements in PSN Store with multiple service labels.<p>Other detail info: <ul><li><i>Required permission</i>: resource=NAMESPACE:{namespace}:USER:{userId}:DLC, action=4 (UPDATE)</li><li><i>Returns</i>: result of synchronization</li></ul>
|
|
25494
25498
|
*/
|
|
25495
|
-
|
|
25499
|
+
putNsUsersByUseridDlcPsnSyncMultiServiceLabels(userId, data) {
|
|
25496
25500
|
const params = {};
|
|
25497
25501
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/psn/sync/multiServiceLabels'
|
|
25498
25502
|
.replace('{namespace}', this.namespace)
|
|
@@ -25584,7 +25588,7 @@ class Iap$ {
|
|
|
25584
25588
|
/**
|
|
25585
25589
|
* Sync steam inventory's items.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25586
25590
|
*/
|
|
25587
|
-
|
|
25591
|
+
putNsUsersByUseridIapSteamSync(userId, data) {
|
|
25588
25592
|
const params = {};
|
|
25589
25593
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/steam/sync'
|
|
25590
25594
|
.replace('{namespace}', this.namespace)
|
|
@@ -25595,7 +25599,7 @@ class Iap$ {
|
|
|
25595
25599
|
/**
|
|
25596
25600
|
* Verify apple iap receipt and fulfill item.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25597
25601
|
*/
|
|
25598
|
-
|
|
25602
|
+
putNsUsersByUseridIapAppleReceipt(userId, data) {
|
|
25599
25603
|
const params = {};
|
|
25600
25604
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/apple/receipt'
|
|
25601
25605
|
.replace('{namespace}', this.namespace)
|
|
@@ -25606,7 +25610,7 @@ class Iap$ {
|
|
|
25606
25610
|
/**
|
|
25607
25611
|
* Synchronize with entitlements in PSN Store with multiple service labels.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: result of synchronization</li></ul>
|
|
25608
25612
|
*/
|
|
25609
|
-
|
|
25613
|
+
putNsUsersByUseridIapPsnSyncMultiServiceLabels(userId, data) {
|
|
25610
25614
|
const params = {};
|
|
25611
25615
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/psn/sync/multiServiceLabels'
|
|
25612
25616
|
.replace('{namespace}', this.namespace)
|
|
@@ -25617,7 +25621,7 @@ class Iap$ {
|
|
|
25617
25621
|
/**
|
|
25618
25622
|
* Synchronize with entitlements in PSN Store.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: result of synchronization</li></ul>
|
|
25619
25623
|
*/
|
|
25620
|
-
|
|
25624
|
+
putNsUsersByUseridIapPsnSync(userId, data) {
|
|
25621
25625
|
const params = {};
|
|
25622
25626
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/psn/sync'
|
|
25623
25627
|
.replace('{namespace}', this.namespace)
|
|
@@ -25628,7 +25632,7 @@ class Iap$ {
|
|
|
25628
25632
|
/**
|
|
25629
25633
|
* Sync twitch drops entitlements.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25630
25634
|
*/
|
|
25631
|
-
|
|
25635
|
+
putNsUsersByUseridIapTwitchSync(userId, data) {
|
|
25632
25636
|
const params = {};
|
|
25633
25637
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/twitch/sync'
|
|
25634
25638
|
.replace('{namespace}', this.namespace)
|
|
@@ -25639,7 +25643,7 @@ class Iap$ {
|
|
|
25639
25643
|
/**
|
|
25640
25644
|
* Verify google iap receipt and fulfill item.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25641
25645
|
*/
|
|
25642
|
-
|
|
25646
|
+
putNsUsersByUseridIapGoogleReceipt(userId, data) {
|
|
25643
25647
|
const params = {};
|
|
25644
25648
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/google/receipt'
|
|
25645
25649
|
.replace('{namespace}', this.namespace)
|
|
@@ -25650,7 +25654,7 @@ class Iap$ {
|
|
|
25650
25654
|
/**
|
|
25651
25655
|
* Sync Xbox inventory's items.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25652
25656
|
*/
|
|
25653
|
-
|
|
25657
|
+
putNsUsersByUseridIapXblSync(userId, data) {
|
|
25654
25658
|
const params = {};
|
|
25655
25659
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/xbl/sync'
|
|
25656
25660
|
.replace('{namespace}', this.namespace)
|
|
@@ -25661,7 +25665,7 @@ class Iap$ {
|
|
|
25661
25665
|
/**
|
|
25662
25666
|
* Sync epic games inventory's items.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:IAP", action=4 (UPDATE)</li><li><i>Returns</i>: </li></ul>
|
|
25663
25667
|
*/
|
|
25664
|
-
|
|
25668
|
+
putNsUsersByUseridIapEpicgamesSync(userId, data) {
|
|
25665
25669
|
const params = {};
|
|
25666
25670
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/epicgames/sync'
|
|
25667
25671
|
.replace('{namespace}', this.namespace)
|
|
@@ -25736,7 +25740,7 @@ class Reward$ {
|
|
|
25736
25740
|
/**
|
|
25737
25741
|
* This API is used to get reward by reward code.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:REWARD", action=2 (READ)</li><li><i>Returns</i>: reward instance</li></ul>
|
|
25738
25742
|
*/
|
|
25739
|
-
|
|
25743
|
+
fetchNsRewardsByCode(queryParams) {
|
|
25740
25744
|
const params = { ...queryParams };
|
|
25741
25745
|
const url = '/platform/public/namespaces/{namespace}/rewards/byCode'.replace('{namespace}', this.namespace);
|
|
25742
25746
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25750,7 +25754,7 @@ class Reward$ {
|
|
|
25750
25754
|
/**
|
|
25751
25755
|
* This API is used to get reward by reward Id.<br>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:REWARD", action=2 (READ)</li><li><i>Returns</i>: reward instance</li></ul>
|
|
25752
25756
|
*/
|
|
25753
|
-
|
|
25757
|
+
fetchNsRewardsByRewardid(rewardId) {
|
|
25754
25758
|
const params = {};
|
|
25755
25759
|
const url = '/platform/public/namespaces/{namespace}/rewards/{rewardId}'
|
|
25756
25760
|
.replace('{namespace}', this.namespace)
|
|
@@ -25766,7 +25770,7 @@ class Reward$ {
|
|
|
25766
25770
|
/**
|
|
25767
25771
|
* This API is used to query rewards by criteria.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:REWARD", action=2 (READ)</li><li><i>Returns</i>: the list of rewards</li></ul>
|
|
25768
25772
|
*/
|
|
25769
|
-
|
|
25773
|
+
fetchNsRewardsByCriteria(queryParams) {
|
|
25770
25774
|
const params = { limit: 20, sortBy: 'namespace:asc,rewardCode:asc', ...queryParams };
|
|
25771
25775
|
const url = '/platform/public/namespaces/{namespace}/rewards/byCriteria'.replace('{namespace}', this.namespace);
|
|
25772
25776
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -26563,7 +26567,7 @@ const ItemCreate = mod.object({
|
|
|
26563
26567
|
* This is licensed software from AccelByte Inc, for limitations
|
|
26564
26568
|
* and restrictions contact your company contract manager.
|
|
26565
26569
|
*/
|
|
26566
|
-
const
|
|
26570
|
+
const AvailableComparison = mod.object({
|
|
26567
26571
|
comparison: mod
|
|
26568
26572
|
.enum(['is', 'isNot', 'isGreaterThan', 'isGreaterThanOrEqual', 'isLessThan', 'isLessThanOrEqual', 'includes', 'excludes'])
|
|
26569
26573
|
.nullish(),
|
|
@@ -26575,9 +26579,9 @@ const AvailableComparisonObject = mod.object({
|
|
|
26575
26579
|
* This is licensed software from AccelByte Inc, for limitations
|
|
26576
26580
|
* and restrictions contact your company contract manager.
|
|
26577
26581
|
*/
|
|
26578
|
-
const
|
|
26582
|
+
const AvailablePredicate = mod.object({
|
|
26579
26583
|
predicateType: mod.enum(['EntitlementPredicate', 'SeasonPassPredicate', 'SeasonTierPredicate']).nullish(),
|
|
26580
|
-
availableComparisons: mod.array(
|
|
26584
|
+
availableComparisons: mod.array(AvailableComparison).nullish(),
|
|
26581
26585
|
valueType: mod.enum(['List', 'Number', 'String']).nullish(),
|
|
26582
26586
|
showAnyOf: mod.boolean().nullish()
|
|
26583
26587
|
});
|
|
@@ -27315,22 +27319,22 @@ const AchievementInfo = mod.object({
|
|
|
27315
27319
|
* This is licensed software from AccelByte Inc, for limitations
|
|
27316
27320
|
* and restrictions contact your company contract manager.
|
|
27317
27321
|
*/
|
|
27318
|
-
const
|
|
27322
|
+
const XblUserAchievements = mod.object({ achievements: mod.array(AchievementInfo).nullish() });
|
|
27319
27323
|
|
|
27320
27324
|
/*
|
|
27321
27325
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27322
27326
|
* This is licensed software from AccelByte Inc, for limitations
|
|
27323
27327
|
* and restrictions contact your company contract manager.
|
|
27324
27328
|
*/
|
|
27325
|
-
const
|
|
27329
|
+
const Achievement = mod.object({ id: mod.string().nullish(), value: mod.number().int().nullish() });
|
|
27326
27330
|
|
|
27327
27331
|
/*
|
|
27328
27332
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27329
27333
|
* This is licensed software from AccelByte Inc, for limitations
|
|
27330
27334
|
* and restrictions contact your company contract manager.
|
|
27331
27335
|
*/
|
|
27332
|
-
const
|
|
27333
|
-
achievements: mod.array(
|
|
27336
|
+
const XblAchievementUpdateRequest = mod.object({
|
|
27337
|
+
achievements: mod.array(Achievement).nullish(),
|
|
27334
27338
|
serviceConfigId: mod.string().nullish(),
|
|
27335
27339
|
titleId: mod.string().nullish(),
|
|
27336
27340
|
xboxUserId: mod.string().nullish()
|
|
@@ -27341,17 +27345,7 @@ const ADtoObjectForUpdateXboxAchievementCompletePercentageApi = mod.object({
|
|
|
27341
27345
|
* This is licensed software from AccelByte Inc, for limitations
|
|
27342
27346
|
* and restrictions contact your company contract manager.
|
|
27343
27347
|
*/
|
|
27344
|
-
const
|
|
27345
|
-
|
|
27346
|
-
/*
|
|
27347
|
-
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27348
|
-
* This is licensed software from AccelByte Inc, for limitations
|
|
27349
|
-
* and restrictions contact your company contract manager.
|
|
27350
|
-
*/
|
|
27351
|
-
const ADtoObjectForUnlockSteamAchievementApi = mod.object({
|
|
27352
|
-
steamUserId: mod.string().nullish(),
|
|
27353
|
-
achievements: mod.array(SteamAchievementRequest).nullish()
|
|
27354
|
-
});
|
|
27348
|
+
const SteamAchievementUpdateRequest = mod.object({ steamUserId: mod.string().nullish(), achievements: mod.array(Achievement).nullish() });
|
|
27355
27349
|
|
|
27356
27350
|
/*
|
|
27357
27351
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
@@ -27615,6 +27609,70 @@ const IapConsumeHistoryInfo = mod.object({
|
|
|
27615
27609
|
*/
|
|
27616
27610
|
const IapConsumeHistoryPagingSlicedResult = mod.object({ data: mod.array(IapConsumeHistoryInfo), paging: Paging$1.nullish() });
|
|
27617
27611
|
|
|
27612
|
+
/*
|
|
27613
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27614
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
27615
|
+
* and restrictions contact your company contract manager.
|
|
27616
|
+
*/
|
|
27617
|
+
const CreditRevocation = mod.object({
|
|
27618
|
+
walletId: mod.string().nullish(),
|
|
27619
|
+
currencyCode: mod.string().nullish(),
|
|
27620
|
+
balanceOrigin: mod.string().nullish(),
|
|
27621
|
+
amount: mod.number().int().nullish(),
|
|
27622
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
27623
|
+
revocationStrategy: mod.string().nullish(),
|
|
27624
|
+
skipped: mod.boolean().nullish(),
|
|
27625
|
+
reason: mod.string().nullish()
|
|
27626
|
+
});
|
|
27627
|
+
|
|
27628
|
+
/*
|
|
27629
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27630
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
27631
|
+
* and restrictions contact your company contract manager.
|
|
27632
|
+
*/
|
|
27633
|
+
const EntitlementRevocation = mod.object({
|
|
27634
|
+
entitlementId: mod.string().nullish(),
|
|
27635
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
27636
|
+
quantity: mod.number().int().nullish(),
|
|
27637
|
+
itemId: mod.string().nullish(),
|
|
27638
|
+
itemSku: mod.string().nullish(),
|
|
27639
|
+
revocationStrategy: mod.string().nullish(),
|
|
27640
|
+
skipped: mod.boolean().nullish(),
|
|
27641
|
+
reason: mod.string().nullish()
|
|
27642
|
+
});
|
|
27643
|
+
|
|
27644
|
+
/*
|
|
27645
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27646
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
27647
|
+
* and restrictions contact your company contract manager.
|
|
27648
|
+
*/
|
|
27649
|
+
const ItemRevocation = mod.lazy(() => mod.object({
|
|
27650
|
+
itemId: mod.string().nullish(),
|
|
27651
|
+
itemSku: mod.string().nullish(),
|
|
27652
|
+
itemType: mod
|
|
27653
|
+
.enum(['APP', 'COINS', 'INGAMEITEM', 'BUNDLE', 'CODE', 'SUBSCRIPTION', 'SEASON', 'MEDIA', 'OPTIONBOX', 'EXTENSION', 'LOOTBOX'])
|
|
27654
|
+
.nullish(),
|
|
27655
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
27656
|
+
skipped: mod.boolean().nullish(),
|
|
27657
|
+
quantity: mod.number().int().nullish(),
|
|
27658
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
27659
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
27660
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish()
|
|
27661
|
+
}));
|
|
27662
|
+
|
|
27663
|
+
/*
|
|
27664
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27665
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
27666
|
+
* and restrictions contact your company contract manager.
|
|
27667
|
+
*/
|
|
27668
|
+
const RevocationResult = mod.object({
|
|
27669
|
+
id: mod.string(),
|
|
27670
|
+
status: mod.enum(['SUCCESS', 'FAIL']),
|
|
27671
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
27672
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
27673
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish()
|
|
27674
|
+
});
|
|
27675
|
+
|
|
27618
27676
|
/*
|
|
27619
27677
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
27620
27678
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -27647,10 +27705,13 @@ const DlcRecord = mod.object({
|
|
|
27647
27705
|
id: mod.string().nullish(),
|
|
27648
27706
|
obtainedAt: mod.string().nullish(),
|
|
27649
27707
|
rewards: mod.array(PlatformReward).nullish(),
|
|
27650
|
-
status: mod.enum(['REVOKED', 'FULFILLED']).nullish(),
|
|
27708
|
+
status: mod.enum(['REVOKED', 'FULFILLED', 'REVOKE_FAILED']).nullish(),
|
|
27651
27709
|
revokedAt: mod.string().nullish(),
|
|
27710
|
+
transactionId: mod.string().nullish(),
|
|
27652
27711
|
revokeResults: mod.array(RevokeResult).nullish(),
|
|
27653
|
-
|
|
27712
|
+
revocationResult: RevocationResult.nullish(),
|
|
27713
|
+
sources: mod.array(mod.string()).nullish(),
|
|
27714
|
+
version: mod.number().int().nullish()
|
|
27654
27715
|
});
|
|
27655
27716
|
|
|
27656
27717
|
/*
|
|
@@ -27917,7 +27978,7 @@ const Order = mod.object({
|
|
|
27917
27978
|
'DELETED'
|
|
27918
27979
|
])
|
|
27919
27980
|
.nullish(),
|
|
27920
|
-
creationOptions:
|
|
27981
|
+
creationOptions: OrderCreationOptions.nullish(),
|
|
27921
27982
|
sandbox: mod.boolean().nullish(),
|
|
27922
27983
|
itemId: mod.string().nullish(),
|
|
27923
27984
|
quantity: mod.number().int().nullish(),
|
|
@@ -28070,7 +28131,7 @@ const AdminOrderCreate = mod.object({
|
|
|
28070
28131
|
ext: mod.record(mod.any()).nullish(),
|
|
28071
28132
|
sandbox: mod.boolean().nullish(),
|
|
28072
28133
|
platform: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Nintendo', 'Other']).nullish(),
|
|
28073
|
-
options:
|
|
28134
|
+
options: OrderCreationOptions.nullish(),
|
|
28074
28135
|
currencyNamespace: mod.string().nullish()
|
|
28075
28136
|
});
|
|
28076
28137
|
|
|
@@ -28787,6 +28848,135 @@ const PaymentUrlCreate = mod.object({
|
|
|
28787
28848
|
ui: mod.string().nullish()
|
|
28788
28849
|
});
|
|
28789
28850
|
|
|
28851
|
+
/*
|
|
28852
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28853
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28854
|
+
* and restrictions contact your company contract manager.
|
|
28855
|
+
*/
|
|
28856
|
+
const DurableEntitlementRevocationConfig = mod.object({
|
|
28857
|
+
enabled: mod.boolean().nullish(),
|
|
28858
|
+
strategy: mod.enum(['REVOKE_OR_REPORT']).nullish()
|
|
28859
|
+
});
|
|
28860
|
+
|
|
28861
|
+
/*
|
|
28862
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28863
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28864
|
+
* and restrictions contact your company contract manager.
|
|
28865
|
+
*/
|
|
28866
|
+
const EntitlementRevocationConfig = mod.object({ durable: DurableEntitlementRevocationConfig.nullish() });
|
|
28867
|
+
|
|
28868
|
+
/*
|
|
28869
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28870
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28871
|
+
* and restrictions contact your company contract manager.
|
|
28872
|
+
*/
|
|
28873
|
+
const WalletRevocationConfig = mod.object({
|
|
28874
|
+
enabled: mod.boolean().nullish(),
|
|
28875
|
+
strategy: mod.enum(['REVOKE_OR_REPORT', 'ALWAYS_REVOKE']).nullish()
|
|
28876
|
+
});
|
|
28877
|
+
|
|
28878
|
+
/*
|
|
28879
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28880
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28881
|
+
* and restrictions contact your company contract manager.
|
|
28882
|
+
*/
|
|
28883
|
+
const RevocationConfigInfo = mod.object({
|
|
28884
|
+
namespace: mod.string().nullish(),
|
|
28885
|
+
entitlement: EntitlementRevocationConfig.nullish(),
|
|
28886
|
+
wallet: WalletRevocationConfig.nullish()
|
|
28887
|
+
});
|
|
28888
|
+
|
|
28889
|
+
/*
|
|
28890
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28891
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28892
|
+
* and restrictions contact your company contract manager.
|
|
28893
|
+
*/
|
|
28894
|
+
const RevocationConfigUpdate = mod.object({
|
|
28895
|
+
entitlement: EntitlementRevocationConfig.nullish(),
|
|
28896
|
+
wallet: WalletRevocationConfig.nullish()
|
|
28897
|
+
});
|
|
28898
|
+
|
|
28899
|
+
/*
|
|
28900
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28901
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28902
|
+
* and restrictions contact your company contract manager.
|
|
28903
|
+
*/
|
|
28904
|
+
const RevokeCurrency = mod.object({
|
|
28905
|
+
namespace: mod.string().nullish(),
|
|
28906
|
+
currencyCode: mod.string().nullish(),
|
|
28907
|
+
balanceOrigin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish()
|
|
28908
|
+
});
|
|
28909
|
+
|
|
28910
|
+
/*
|
|
28911
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28912
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28913
|
+
* and restrictions contact your company contract manager.
|
|
28914
|
+
*/
|
|
28915
|
+
const RevokeEntitlement = mod.object({ entitlementId: mod.string().nullish() });
|
|
28916
|
+
|
|
28917
|
+
/*
|
|
28918
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28919
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28920
|
+
* and restrictions contact your company contract manager.
|
|
28921
|
+
*/
|
|
28922
|
+
const RevokeItem = mod.object({
|
|
28923
|
+
itemIdentityType: mod.enum(['ITEM_ID', 'ITEM_SKU']).nullish(),
|
|
28924
|
+
itemIdentity: mod.string().nullish(),
|
|
28925
|
+
origin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish()
|
|
28926
|
+
});
|
|
28927
|
+
|
|
28928
|
+
/*
|
|
28929
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28930
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28931
|
+
* and restrictions contact your company contract manager.
|
|
28932
|
+
*/
|
|
28933
|
+
const RevokeEntry = mod.object({
|
|
28934
|
+
type: mod.enum(['ITEM', 'CURRENCY', 'ENTITLEMENT']).nullish(),
|
|
28935
|
+
item: RevokeItem.nullish(),
|
|
28936
|
+
entitlement: RevokeEntitlement.nullish(),
|
|
28937
|
+
currency: RevokeCurrency.nullish(),
|
|
28938
|
+
quantity: mod.number().int().nullish()
|
|
28939
|
+
});
|
|
28940
|
+
|
|
28941
|
+
/*
|
|
28942
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28943
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28944
|
+
* and restrictions contact your company contract manager.
|
|
28945
|
+
*/
|
|
28946
|
+
const RevocationHistoryInfo = mod.object({
|
|
28947
|
+
id: mod.string().nullish(),
|
|
28948
|
+
namespace: mod.string().nullish(),
|
|
28949
|
+
userId: mod.string().nullish(),
|
|
28950
|
+
meta: mod.record(mod.any()).nullish(),
|
|
28951
|
+
source: mod.string().nullish(),
|
|
28952
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
28953
|
+
revokeEntries: mod.array(RevokeEntry).nullish(),
|
|
28954
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
28955
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
28956
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish(),
|
|
28957
|
+
createdAt: mod.string().nullish(),
|
|
28958
|
+
updatedAt: mod.string().nullish()
|
|
28959
|
+
});
|
|
28960
|
+
|
|
28961
|
+
/*
|
|
28962
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28963
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28964
|
+
* and restrictions contact your company contract manager.
|
|
28965
|
+
*/
|
|
28966
|
+
const RevocationHistoryPagingSlicedResult = mod.object({ data: mod.array(RevocationHistoryInfo), paging: Paging$1.nullish() });
|
|
28967
|
+
|
|
28968
|
+
/*
|
|
28969
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28970
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
28971
|
+
* and restrictions contact your company contract manager.
|
|
28972
|
+
*/
|
|
28973
|
+
const RevocationRequest = mod.object({
|
|
28974
|
+
revokeEntries: mod.array(RevokeEntry).nullish(),
|
|
28975
|
+
source: mod.enum(['DLC', 'ORDER', 'OTHER']).nullish(),
|
|
28976
|
+
transactionId: mod.string().nullish(),
|
|
28977
|
+
meta: mod.record(mod.any()).nullish()
|
|
28978
|
+
});
|
|
28979
|
+
|
|
28790
28980
|
/*
|
|
28791
28981
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28792
28982
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -28984,6 +29174,18 @@ const DetailedWalletTransactionPagingSlicedResult = mod.object({
|
|
|
28984
29174
|
*/
|
|
28985
29175
|
const DebitRequest = mod.object({ amount: mod.number().int(), reason: mod.string().nullish() });
|
|
28986
29176
|
|
|
29177
|
+
/*
|
|
29178
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
29179
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
29180
|
+
* and restrictions contact your company contract manager.
|
|
29181
|
+
*/
|
|
29182
|
+
const DebitByCurrencyCodeRequest = mod.object({
|
|
29183
|
+
amount: mod.number().int(),
|
|
29184
|
+
reason: mod.string().nullish(),
|
|
29185
|
+
balanceOrigin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish(),
|
|
29186
|
+
allowOverdraft: mod.boolean().nullish()
|
|
29187
|
+
});
|
|
29188
|
+
|
|
28987
29189
|
/*
|
|
28988
29190
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
28989
29191
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -29047,7 +29249,7 @@ class UserAction$ {
|
|
|
29047
29249
|
/**
|
|
29048
29250
|
* This API is used to report a game user.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:USER:{userId}:ACTION", action=1 (CREATE)</li></ul>
|
|
29049
29251
|
*/
|
|
29050
|
-
|
|
29252
|
+
postV1NsUsersByUseridActionsReport(userId, data) {
|
|
29051
29253
|
const params = {};
|
|
29052
29254
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/actions/report'
|
|
29053
29255
|
.replace('{namespace}', this.namespace)
|
|
@@ -29346,7 +29548,7 @@ class Drm$ {
|
|
|
29346
29548
|
/**
|
|
29347
29549
|
* This API is used to get encrypted userId and machineId for entitled user.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:BUILDINFO", action=2 (READ)</li><li><i>Returns</i>: data field containing encrypted userId and machineId separated by comma</li></ul>
|
|
29348
29550
|
*/
|
|
29349
|
-
|
|
29551
|
+
fetchNsDrmlicenseEncrypt(queryParams) {
|
|
29350
29552
|
const params = { ...queryParams };
|
|
29351
29553
|
const url = '/buildinfo/public/namespaces/{namespace}/drmlicense/encrypt'.replace('{namespace}', this.namespace);
|
|
29352
29554
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -29360,7 +29562,7 @@ class Drm$ {
|
|
|
29360
29562
|
/**
|
|
29361
29563
|
* This API is used to get public key.<p>Other detail info: <ul><li><i>Required permission</i>: resource="NAMESPACE:{namespace}:BUILDINFO", action=2 (READ)</li><li><i>Returns</i>: url to download the key</li></ul>
|
|
29362
29564
|
*/
|
|
29363
|
-
|
|
29565
|
+
fetchNsDrmlicenseRetrievePublicKey() {
|
|
29364
29566
|
const params = {};
|
|
29365
29567
|
const url = '/buildinfo/public/namespaces/{namespace}/drmlicense/retrievePublicKey'.replace('{namespace}', this.namespace);
|
|
29366
29568
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -29781,7 +29983,7 @@ class LocalizedPolicyVersionsWithNamespace$ {
|
|
|
29781
29983
|
/**
|
|
29782
29984
|
* 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>
|
|
29783
29985
|
*/
|
|
29784
|
-
|
|
29986
|
+
fetchNsLocalizedPolicyVersionsByLocalizedpolicyversionid(localizedPolicyVersionId) {
|
|
29785
29987
|
const params = {};
|
|
29786
29988
|
const url = '/agreement/public/namespaces/{namespace}/localized-policy-versions/{localizedPolicyVersionId}'
|
|
29787
29989
|
.replace('{namespace}', this.namespace)
|
|
@@ -30409,7 +30611,7 @@ class StaticConfigs$ {
|
|
|
30409
30611
|
this.namespace = namespace;
|
|
30410
30612
|
this.cache = cache;
|
|
30411
30613
|
}
|
|
30412
|
-
|
|
30614
|
+
fetchV1NsStaticConfigsByConfig(config) {
|
|
30413
30615
|
const params = {};
|
|
30414
30616
|
const url = '/odin-config/v1/public/namespaces/{namespace}/staticConfigs/{config}'
|
|
30415
30617
|
.replace('{namespace}', this.namespace)
|
|
@@ -30449,7 +30651,6 @@ const EligibleUser = UserResponseV4.pick({
|
|
|
30449
30651
|
emailVerified: true,
|
|
30450
30652
|
displayName: true,
|
|
30451
30653
|
country: true,
|
|
30452
|
-
dateOfBirth: true,
|
|
30453
30654
|
emailAddress: true,
|
|
30454
30655
|
bans: true,
|
|
30455
30656
|
username: true,
|
|
@@ -38853,6 +39054,17 @@ mod.enum([
|
|
|
38853
39054
|
CommonValidationErrorType.enum.alreadyUsed
|
|
38854
39055
|
]);
|
|
38855
39056
|
|
|
39057
|
+
/*
|
|
39058
|
+
* Copyright (c) 2020. AccelByte Inc. All Rights Reserved
|
|
39059
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39060
|
+
* and restrictions contact your company contract manager.
|
|
39061
|
+
*/
|
|
39062
|
+
mod.enum([
|
|
39063
|
+
...ValidateLengthErrorType.options,
|
|
39064
|
+
CommonValidationErrorType.enum.invalidFormat,
|
|
39065
|
+
CommonValidationErrorType.enum.alreadyUsed
|
|
39066
|
+
]);
|
|
39067
|
+
|
|
38856
39068
|
/*
|
|
38857
39069
|
* Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
|
|
38858
39070
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -39441,21 +39653,26 @@ const ERROR_CODE_TOKEN_EXPIRED = 10196;
|
|
|
39441
39653
|
const ERROR_USER_BANNED = 10134;
|
|
39442
39654
|
|
|
39443
39655
|
/*
|
|
39444
|
-
* Copyright (c)
|
|
39656
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
39445
39657
|
* This is licensed software from AccelByte Inc, for limitations
|
|
39446
39658
|
* and restrictions contact your company contract manager.
|
|
39447
39659
|
*/
|
|
39448
|
-
|
|
39449
|
-
|
|
39450
|
-
|
|
39451
|
-
|
|
39452
|
-
|
|
39453
|
-
|
|
39454
|
-
|
|
39660
|
+
var BackgroundOverlayType;
|
|
39661
|
+
(function (BackgroundOverlayType) {
|
|
39662
|
+
BackgroundOverlayType["GRADIENT"] = "gradient";
|
|
39663
|
+
BackgroundOverlayType["FULL"] = "full";
|
|
39664
|
+
})(BackgroundOverlayType || (BackgroundOverlayType = {}));
|
|
39665
|
+
const BackgroundOverlay = mod.object({
|
|
39666
|
+
isEnabled: mod.boolean(),
|
|
39667
|
+
type: mod.nativeEnum(BackgroundOverlayType),
|
|
39668
|
+
/** Number between 0-100. The bigger, the more solid the color will be. */
|
|
39669
|
+
opacity: mod.number().min(0).max(100)
|
|
39455
39670
|
});
|
|
39456
39671
|
const LogoVariantConfig = mod.object({
|
|
39457
|
-
|
|
39458
|
-
|
|
39672
|
+
/** The index of the image located in the `companyLogo` inside the discovery configs. */
|
|
39673
|
+
header: mod.number().nullable(),
|
|
39674
|
+
/** The index of the image located in the `companyLogo` inside the discovery configs. */
|
|
39675
|
+
footer: mod.number().nullable()
|
|
39459
39676
|
});
|
|
39460
39677
|
const ColorConfig = mod.object({
|
|
39461
39678
|
hex: mod.string(),
|
|
@@ -39464,21 +39681,7 @@ const ColorConfig = mod.object({
|
|
|
39464
39681
|
g: mod.number(),
|
|
39465
39682
|
b: mod.number(),
|
|
39466
39683
|
a: mod.number()
|
|
39467
|
-
})
|
|
39468
|
-
hsl: mod.object({
|
|
39469
|
-
h: mod.number(),
|
|
39470
|
-
s: mod.number(),
|
|
39471
|
-
l: mod.number(),
|
|
39472
|
-
a: mod.number()
|
|
39473
|
-
}),
|
|
39474
|
-
hsv: mod.object({
|
|
39475
|
-
h: mod.number(),
|
|
39476
|
-
s: mod.number(),
|
|
39477
|
-
v: mod.number(),
|
|
39478
|
-
a: mod.number()
|
|
39479
|
-
}),
|
|
39480
|
-
oldHue: mod.number(),
|
|
39481
|
-
source: mod.string()
|
|
39684
|
+
})
|
|
39482
39685
|
});
|
|
39483
39686
|
const ColorConfigs = mod.object({
|
|
39484
39687
|
background: ColorConfig,
|
|
@@ -39489,13 +39692,51 @@ const ColorConfigs = mod.object({
|
|
|
39489
39692
|
text: ColorConfig
|
|
39490
39693
|
});
|
|
39491
39694
|
const FontConfigs = mod.object({
|
|
39695
|
+
/**
|
|
39696
|
+
* The font-family that will be used for the body. Supported default fonts are as the following:
|
|
39697
|
+
* 'Exo', 'Rubik', 'Roboto', 'Inter', and 'Poppins'.
|
|
39698
|
+
**/
|
|
39492
39699
|
body: mod.string(),
|
|
39493
|
-
|
|
39700
|
+
/** The public URL of the font, if you want to use custom font. */
|
|
39494
39701
|
customBodyFontUrl: mod.string(),
|
|
39702
|
+
/**
|
|
39703
|
+
* The font-family that will be used for the headings (including buttons). Supported default fonts are as the following:
|
|
39704
|
+
* 'Exo', 'Rubik', 'Roboto', 'Inter', and 'Poppins'.
|
|
39705
|
+
**/
|
|
39495
39706
|
title: mod.string(),
|
|
39496
|
-
|
|
39707
|
+
/** The public URL of the font, if you want to use custom font. */
|
|
39497
39708
|
customTitleFontUrl: mod.string()
|
|
39498
39709
|
});
|
|
39710
|
+
const PageConfig = mod.object({
|
|
39711
|
+
templatePreview: mod.string().optional(),
|
|
39712
|
+
/** When enabled, then it will use the styles defined in the `global.colors` and `global.fonts`. */
|
|
39713
|
+
isLocalStyleEnabled: mod.boolean(),
|
|
39714
|
+
global: mod.object({
|
|
39715
|
+
colors: mod.object({
|
|
39716
|
+
primary: ColorConfig,
|
|
39717
|
+
secondary: ColorConfig,
|
|
39718
|
+
text: ColorConfig,
|
|
39719
|
+
overlay: ColorConfig,
|
|
39720
|
+
background: ColorConfig,
|
|
39721
|
+
card: ColorConfig
|
|
39722
|
+
}),
|
|
39723
|
+
fonts: FontConfigs
|
|
39724
|
+
})
|
|
39725
|
+
});
|
|
39726
|
+
|
|
39727
|
+
/*
|
|
39728
|
+
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
|
|
39729
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39730
|
+
* and restrictions contact your company contract manager.
|
|
39731
|
+
*/
|
|
39732
|
+
const CompanyLogo = mod.object({
|
|
39733
|
+
url: mod.string(),
|
|
39734
|
+
name: mod.string()
|
|
39735
|
+
});
|
|
39736
|
+
const CompanyLogoConfig = mod.object({
|
|
39737
|
+
images: mod.array(CompanyLogo),
|
|
39738
|
+
defaultIndex: mod.number()
|
|
39739
|
+
});
|
|
39499
39740
|
const GlobalStyleConfig = mod.object({
|
|
39500
39741
|
global: mod.object({
|
|
39501
39742
|
colors: ColorConfigs,
|
|
@@ -39511,6 +39752,127 @@ const TemplateInfoConfig = mod.object({
|
|
|
39511
39752
|
draft: mod.string(),
|
|
39512
39753
|
published: mod.string()
|
|
39513
39754
|
});
|
|
39755
|
+
var TemplateConfig;
|
|
39756
|
+
(function (TemplateConfig) {
|
|
39757
|
+
TemplateConfig["SINGLE"] = "single-game";
|
|
39758
|
+
TemplateConfig["MULTIPLE"] = "multiple-game";
|
|
39759
|
+
})(TemplateConfig || (TemplateConfig = {}));
|
|
39760
|
+
const PlayerPortalFeatureFlagsConfig = mod.object({
|
|
39761
|
+
/**
|
|
39762
|
+
* Determines whether "Account Overview" menu in Accounts page is visible or not.
|
|
39763
|
+
*
|
|
39764
|
+
* Defaults to `true`.
|
|
39765
|
+
**/
|
|
39766
|
+
isAccountOverviewVisible: mod.boolean().default(true),
|
|
39767
|
+
/**
|
|
39768
|
+
* Determines whether "Change Password" menu in Accounts page and profile dropdown are visible or not.
|
|
39769
|
+
*
|
|
39770
|
+
* Defaults to `true`.
|
|
39771
|
+
**/
|
|
39772
|
+
isChangePasswordVisible: mod.boolean().default(true),
|
|
39773
|
+
/**
|
|
39774
|
+
* Determines whether "Delete Account" menu in Accounts page is visible or not.
|
|
39775
|
+
*
|
|
39776
|
+
* Defaults to `true`.
|
|
39777
|
+
**/
|
|
39778
|
+
isDeleteAccountVisible: mod.boolean().default(true),
|
|
39779
|
+
/**
|
|
39780
|
+
* Determines whether the "Get Launcher" button is visible or not.
|
|
39781
|
+
*
|
|
39782
|
+
* Defaults to `true`.
|
|
39783
|
+
**/
|
|
39784
|
+
isGetLauncherVisible: mod.boolean().default(true),
|
|
39785
|
+
/**
|
|
39786
|
+
* Determines whether "Linked Accounts" menu in Accounts page is visible or not.
|
|
39787
|
+
*
|
|
39788
|
+
* Defaults to `true`.
|
|
39789
|
+
**/
|
|
39790
|
+
isLinkedAccountsVisible: mod.boolean().default(true),
|
|
39791
|
+
/**
|
|
39792
|
+
* Determines whether "My Profile" menu in Accounts page is visible or not.
|
|
39793
|
+
*
|
|
39794
|
+
* Defaults to `true`.
|
|
39795
|
+
**/
|
|
39796
|
+
isMyProfileVisible: mod.boolean().default(true),
|
|
39797
|
+
/**
|
|
39798
|
+
* Determines whether "News" feature is visible or not.
|
|
39799
|
+
*
|
|
39800
|
+
* Defaults to `false`.
|
|
39801
|
+
**/
|
|
39802
|
+
isNewsVisible: mod.boolean().default(false),
|
|
39803
|
+
/**
|
|
39804
|
+
* Determines whether "Notifications" feature is visible or not.
|
|
39805
|
+
*
|
|
39806
|
+
* Defaults to `false`.
|
|
39807
|
+
**/
|
|
39808
|
+
isNotificationsVisible: mod.boolean().default(false),
|
|
39809
|
+
/**
|
|
39810
|
+
* Determines whether "Order History" menu in Accounts page and profile dropdown are visible or not.
|
|
39811
|
+
*
|
|
39812
|
+
* Defaults to `true`.
|
|
39813
|
+
**/
|
|
39814
|
+
isOrderHistoryVisible: mod.boolean().default(true),
|
|
39815
|
+
/**
|
|
39816
|
+
* Determines whether "Payment Methods" menu in Accounts page is visible or not.
|
|
39817
|
+
*
|
|
39818
|
+
* Defaults to `true`.
|
|
39819
|
+
**/
|
|
39820
|
+
isPaymentMethodsVisible: mod.boolean().default(true),
|
|
39821
|
+
/**
|
|
39822
|
+
* Determines whether "Personal Data" menu in Accounts page is visible or not.
|
|
39823
|
+
*
|
|
39824
|
+
* Defaults to `true`.
|
|
39825
|
+
**/
|
|
39826
|
+
isPersonalDataVisible: mod.boolean().default(true),
|
|
39827
|
+
/**
|
|
39828
|
+
* Determines whether "Privacy Records" menu in Accounts page is visible or not.
|
|
39829
|
+
*
|
|
39830
|
+
* Defaults to `true`.
|
|
39831
|
+
**/
|
|
39832
|
+
isPrivacyRecordsVisible: mod.boolean().default(true),
|
|
39833
|
+
/**
|
|
39834
|
+
* Determines whether "Purchased Items" menu in Accounts page is visible or not.
|
|
39835
|
+
*
|
|
39836
|
+
* Defaults to `true`.
|
|
39837
|
+
**/
|
|
39838
|
+
isPurchasedItemsVisible: mod.boolean().default(true),
|
|
39839
|
+
/**
|
|
39840
|
+
* Determines whether "Redeem Code" menu in Accounts page and profile dropdown are visible or not.
|
|
39841
|
+
*
|
|
39842
|
+
* Defaults to `true`.
|
|
39843
|
+
**/
|
|
39844
|
+
isRedeemCodeVisible: mod.boolean().default(true),
|
|
39845
|
+
/**
|
|
39846
|
+
* Determines whether "Store" feature is visible or not.
|
|
39847
|
+
*
|
|
39848
|
+
* Defaults to `true`.
|
|
39849
|
+
**/
|
|
39850
|
+
isStoreVisible: mod.boolean().default(true),
|
|
39851
|
+
/**
|
|
39852
|
+
* Determines whether "Subscriptions" feature is visible or not.
|
|
39853
|
+
*
|
|
39854
|
+
* Defaults to `false`.
|
|
39855
|
+
**/
|
|
39856
|
+
isSubscriptionsVisible: mod.boolean().default(false),
|
|
39857
|
+
/**
|
|
39858
|
+
* Determines whether "Support" feature is visible or not.
|
|
39859
|
+
*
|
|
39860
|
+
* Defaults to `false`.
|
|
39861
|
+
**/
|
|
39862
|
+
isSupportVisible: mod.boolean().default(false),
|
|
39863
|
+
/**
|
|
39864
|
+
* Determines whether "Virtual Currency" feature is visible or not.
|
|
39865
|
+
*
|
|
39866
|
+
* Defaults to `false`.
|
|
39867
|
+
**/
|
|
39868
|
+
isVirtualCurrencyVisible: mod.boolean().default(false),
|
|
39869
|
+
/**
|
|
39870
|
+
* Determines whether the "News" (unreleased) feature is visible or not.
|
|
39871
|
+
*
|
|
39872
|
+
* Defaults to `false`.
|
|
39873
|
+
**/
|
|
39874
|
+
isNewsV2Visible: mod.boolean().default(false)
|
|
39875
|
+
});
|
|
39514
39876
|
const DiscoveryConfigData = mod.object({
|
|
39515
39877
|
ppTemplateInfo: Config.merge(mod.object({
|
|
39516
39878
|
data: TemplateInfoConfig
|
|
@@ -39527,7 +39889,9 @@ const DiscoveryConfigData = mod.object({
|
|
|
39527
39889
|
paymentTemplateInfo: Config.merge(mod.object({
|
|
39528
39890
|
data: TemplateInfoConfig
|
|
39529
39891
|
})),
|
|
39530
|
-
ppFeatureFlags: Config
|
|
39892
|
+
ppFeatureFlags: Config.merge(mod.object({
|
|
39893
|
+
data: PlayerPortalFeatureFlagsConfig
|
|
39894
|
+
})),
|
|
39531
39895
|
launcherFeatureFlags: Config,
|
|
39532
39896
|
loginFeatureFlags: Config,
|
|
39533
39897
|
experimentalFeatureFlags: Config,
|
|
@@ -39557,7 +39921,7 @@ const DiscoveryConfigData = mod.object({
|
|
|
39557
39921
|
})),
|
|
39558
39922
|
templateConfig: Config.merge(mod.object({
|
|
39559
39923
|
data: mod.object({
|
|
39560
|
-
value: mod.
|
|
39924
|
+
value: mod.union([mod.literal(`${TemplateConfig.SINGLE}`), mod.literal(`${TemplateConfig.MULTIPLE}`)])
|
|
39561
39925
|
})
|
|
39562
39926
|
})),
|
|
39563
39927
|
appId: Config.merge(mod.object({
|
|
@@ -39580,11 +39944,97 @@ const DiscoveryConfigData = mod.object({
|
|
|
39580
39944
|
value: mod.string()
|
|
39581
39945
|
})
|
|
39582
39946
|
}))
|
|
39583
|
-
});
|
|
39584
|
-
|
|
39947
|
+
});
|
|
39948
|
+
|
|
39949
|
+
/*
|
|
39950
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
39951
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39952
|
+
* and restrictions contact your company contract manager.
|
|
39953
|
+
*/
|
|
39954
|
+
var PlayerPortalHomePageKeys;
|
|
39955
|
+
(function (PlayerPortalHomePageKeys) {
|
|
39956
|
+
PlayerPortalHomePageKeys["IS_DISABLED"] = "isDisabled";
|
|
39957
|
+
PlayerPortalHomePageKeys["REDIRECTION_URL"] = "redirectionURL";
|
|
39958
|
+
PlayerPortalHomePageKeys["SITE_BRAND_URL"] = "siteBrandURL";
|
|
39959
|
+
})(PlayerPortalHomePageKeys || (PlayerPortalHomePageKeys = {}));
|
|
39960
|
+
const PlayerPortalHomepageConfig = mod.object({
|
|
39585
39961
|
isDisabled: mod.boolean(),
|
|
39586
39962
|
redirectionURL: mod.string(),
|
|
39587
39963
|
siteBrandURL: mod.string()
|
|
39964
|
+
});
|
|
39965
|
+
var PlayerPortalFooterIDs;
|
|
39966
|
+
(function (PlayerPortalFooterIDs) {
|
|
39967
|
+
PlayerPortalFooterIDs["COPYRIGHT"] = "copyright";
|
|
39968
|
+
PlayerPortalFooterIDs["PRIVACY_POLICY"] = "privacyPolicy";
|
|
39969
|
+
PlayerPortalFooterIDs["LEGAL"] = "legal";
|
|
39970
|
+
PlayerPortalFooterIDs["TERMS_OF_USE"] = "termsOfUse";
|
|
39971
|
+
PlayerPortalFooterIDs["ADDITIONAL_1"] = "additional1";
|
|
39972
|
+
PlayerPortalFooterIDs["ADDITIONAL_2"] = "additional2";
|
|
39973
|
+
})(PlayerPortalFooterIDs || (PlayerPortalFooterIDs = {}));
|
|
39974
|
+
const PlayerPortalFooterConfigLink = mod.object({
|
|
39975
|
+
id: mod.string(),
|
|
39976
|
+
name: mod.string(),
|
|
39977
|
+
link: mod.string()
|
|
39978
|
+
});
|
|
39979
|
+
const PlayerPortalFooterConfig = mod.object({
|
|
39980
|
+
links: mod.array(PlayerPortalFooterConfigLink)
|
|
39981
|
+
});
|
|
39982
|
+
var PlayerPortalHomepageKeys;
|
|
39983
|
+
(function (PlayerPortalHomepageKeys) {
|
|
39984
|
+
PlayerPortalHomepageKeys["IS_DISABLED"] = "isDisabled";
|
|
39985
|
+
PlayerPortalHomepageKeys["REDIRECTION_URL"] = "redirectionURL";
|
|
39986
|
+
PlayerPortalHomepageKeys["SITE_BRAND_URL"] = "siteBrandURL";
|
|
39987
|
+
})(PlayerPortalHomepageKeys || (PlayerPortalHomepageKeys = {}));
|
|
39988
|
+
const PlayerPortalConfigData = mod.object({
|
|
39989
|
+
launcherDownloadLink: Config.merge(mod.object({
|
|
39990
|
+
data: mod.object({
|
|
39991
|
+
value: mod.string()
|
|
39992
|
+
})
|
|
39993
|
+
})),
|
|
39994
|
+
metaData: Config.merge(mod.object({
|
|
39995
|
+
data: mod.object({
|
|
39996
|
+
description: mod.string(),
|
|
39997
|
+
image: mod.string(),
|
|
39998
|
+
title: mod.string()
|
|
39999
|
+
})
|
|
40000
|
+
})),
|
|
40001
|
+
pageConfig: Config.merge(mod.object({
|
|
40002
|
+
data: PageConfig
|
|
40003
|
+
})),
|
|
40004
|
+
footer: Config.merge(mod.object({
|
|
40005
|
+
data: mod.object({
|
|
40006
|
+
value: PlayerPortalFooterConfig
|
|
40007
|
+
})
|
|
40008
|
+
})),
|
|
40009
|
+
homepage: Config.merge(mod.object({
|
|
40010
|
+
data: PlayerPortalHomepageConfig
|
|
40011
|
+
})),
|
|
40012
|
+
logoVariant: Config.merge(mod.object({
|
|
40013
|
+
data: LogoVariantConfig
|
|
40014
|
+
}))
|
|
40015
|
+
});
|
|
40016
|
+
|
|
40017
|
+
/*
|
|
40018
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
40019
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
40020
|
+
* and restrictions contact your company contract manager.
|
|
40021
|
+
*/
|
|
40022
|
+
const LauncherPageConfig = PageConfig.extend({
|
|
40023
|
+
loginPage: mod.object({
|
|
40024
|
+
template: mod.string(),
|
|
40025
|
+
background: mod.string(),
|
|
40026
|
+
boxLogo: mod.string(),
|
|
40027
|
+
boxTitle: mod.string(),
|
|
40028
|
+
boxInfo: mod.string(),
|
|
40029
|
+
boxButtonText: mod.string(),
|
|
40030
|
+
backgroundOverlay: BackgroundOverlay
|
|
40031
|
+
}),
|
|
40032
|
+
mainPage: mod.object({
|
|
40033
|
+
gameTitle: mod.string(),
|
|
40034
|
+
background: mod.string(),
|
|
40035
|
+
gameID: mod.string(),
|
|
40036
|
+
backgroundOverlay: BackgroundOverlay
|
|
40037
|
+
})
|
|
39588
40038
|
});
|
|
39589
40039
|
|
|
39590
40040
|
const DisplayedPolicy = mod.object({
|
|
@@ -39634,5 +40084,5 @@ CodeGenUtil.getFormUrlEncodedData = (data) => {
|
|
|
39634
40084
|
return formPayload;
|
|
39635
40085
|
};
|
|
39636
40086
|
|
|
39637
|
-
export { ADtoForUnbanUserApiCall, ADtoForUpdateEqu8ConfigApiCall, ADtoObjectForEqu8UserBanStatus, ADtoObjectForEqu8UserStatus, ADtoObjectForOrderCreationOptions, ADtoObjectForQueryingXboxUserAchievements, ADtoObjectForUnlockSteamAchievementApi, ADtoObjectForUpdateXboxAchievementCompletePercentageApi, ARCH, Accelbyte, AcceptAgreementRequest, AcceptAgreementResponse, AcceptedPoliciesRequest, AccountProgressionInfo, 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, AvailableComparisonObject, AvailablePlatform, AvailablePredicateObject, AvatarSyncRequestV4, BUILDINFO_PLATFORM_ID, 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, CreditSummary, Currency$, CurrencyConfig, CurrencyCreate, CurrencyInfo, CurrencyInfoArray, CurrencySummary, CurrencyUpdate, CurrencyWallet, Customization, DISCOVERY_TEMPLATE_NAME, DataDeletion$, DataRetrieval$, DataRetrievalResponse, 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$, 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, 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, HomepagePPConfig, 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, ItemSnapshot, ItemTypeConfigCreate, ItemTypeConfigInfo, ItemTypeConfigUpdate, ItemUpdate, JwkKey, JwkSet, JwtBanV3, KeyGroupCreate, KeyGroupDynamicInfo, KeyGroupInfo, KeyGroupPagingSlicedResult, KeyGroupUpdate, KeyInfo, KeyPagingSliceResult, 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, OrderGrantInfo, OrderHistoryInfo, OrderHistoryInfoArray, OrderInfo, OrderPagingResult, OrderPagingSlicedResult, OrderRefundCreate, OrderStatistics, OrderStatus, OrderSummary, OrderSyncResult, OrderUpdate, Ownership, OwnershipToken, PLATFORM, 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, PlaystationIapConfigRequest, Policies$, PoliciesApi, PolicyObject, PolicyVersionObject, PolicyVersionWithLocalizedVersionObject, PopulatedItemInfo, PreCheckUploadRequest, PredicateObject, 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, RevocationList, 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$, SteamAchievementRequest, 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, 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, WalletTransactionInfo, WalletTransactionPagingSlicedResult, WebLinkingResponse, WxPayConfigInfo, WxPayConfigRequest, XblDlcSyncRequest, XblIapConfigInfo, XblIapConfigRequest, XblReconcileRequest, XblReconcileResult, XblReconcileResultArray, XboxAchievementRequest, XsollaConfig, XsollaPaywallConfig, XsollaPaywallConfigRequest, ZsyncDiffRequest, ZsyncFileManifest, injectRequestInterceptors, injectResponseInterceptors };
|
|
40087
|
+
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 };
|
|
39638
40088
|
//# sourceMappingURL=index.browser.es.js.map
|