@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.node.es.js
CHANGED
|
@@ -2968,7 +2968,7 @@ class FileUpload$ {
|
|
|
2968
2968
|
/**
|
|
2969
2969
|
* 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>
|
|
2970
2970
|
*/
|
|
2971
|
-
|
|
2971
|
+
postV1NsFoldersByFolderFiles(folder, queryParams) {
|
|
2972
2972
|
const params = { ...queryParams };
|
|
2973
2973
|
const url = '/basic/v1/public/namespaces/{namespace}/folders/{folder}/files'
|
|
2974
2974
|
.replace('{namespace}', this.namespace)
|
|
@@ -2979,7 +2979,7 @@ class FileUpload$ {
|
|
|
2979
2979
|
/**
|
|
2980
2980
|
* 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>
|
|
2981
2981
|
*/
|
|
2982
|
-
|
|
2982
|
+
postV1NsUsersByUseridFiles(userId, queryParams) {
|
|
2983
2983
|
const params = { category: 'default', ...queryParams };
|
|
2984
2984
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/files'
|
|
2985
2985
|
.replace('{namespace}', this.namespace)
|
|
@@ -9544,7 +9544,7 @@ class FileUploadApi {
|
|
|
9544
9544
|
* 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>
|
|
9545
9545
|
*/
|
|
9546
9546
|
this.generateFolderUploadFileUrl = ({ folder, queryParams }) => {
|
|
9547
|
-
return this.newInstance().
|
|
9547
|
+
return this.newInstance().postV1NsFoldersByFolderFiles(folder, queryParams);
|
|
9548
9548
|
};
|
|
9549
9549
|
/**
|
|
9550
9550
|
* Upload the file based on the URL generated by the `generateFolderUploadFileUrl` method
|
|
@@ -9612,7 +9612,7 @@ class Misc$ {
|
|
|
9612
9612
|
/**
|
|
9613
9613
|
* List time zones.<br>Other detail info: <ul><li><i>Returns</i>: time zones</li></ul>
|
|
9614
9614
|
*/
|
|
9615
|
-
|
|
9615
|
+
fetchV1NsMiscTimezones() {
|
|
9616
9616
|
const params = {};
|
|
9617
9617
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/timezones'.replace('{namespace}', this.namespace);
|
|
9618
9618
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9626,7 +9626,7 @@ class Misc$ {
|
|
|
9626
9626
|
/**
|
|
9627
9627
|
* List languages.<br>Other detail info: <ul><li><i>Returns</i>: language list</li></ul>
|
|
9628
9628
|
*/
|
|
9629
|
-
|
|
9629
|
+
fetchV1NsMiscLanguages() {
|
|
9630
9630
|
const params = {};
|
|
9631
9631
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/languages'.replace('{namespace}', this.namespace);
|
|
9632
9632
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9640,7 +9640,7 @@ class Misc$ {
|
|
|
9640
9640
|
/**
|
|
9641
9641
|
* List countries.<br>Other detail info: <ul><li><i>Returns</i>: country code list</li></ul>
|
|
9642
9642
|
*/
|
|
9643
|
-
|
|
9643
|
+
fetchV1NsMiscCountries(queryParams) {
|
|
9644
9644
|
const params = { lang: 'en', ...queryParams };
|
|
9645
9645
|
const url = '/basic/v1/public/namespaces/{namespace}/misc/countries'.replace('{namespace}', this.namespace);
|
|
9646
9646
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9665,10 +9665,10 @@ class MiscApi {
|
|
|
9665
9665
|
* List countries.<br>Other detail info: <ul><li><i>Returns</i>: country code list</li></ul>
|
|
9666
9666
|
*/
|
|
9667
9667
|
this.getCountries = (lang) => {
|
|
9668
|
-
return this.newInstance().
|
|
9668
|
+
return this.newInstance().fetchV1NsMiscCountries({ lang });
|
|
9669
9669
|
};
|
|
9670
9670
|
this.getLanguages = () => {
|
|
9671
|
-
return this.newInstance().
|
|
9671
|
+
return this.newInstance().fetchV1NsMiscLanguages();
|
|
9672
9672
|
};
|
|
9673
9673
|
}
|
|
9674
9674
|
newInstance() {
|
|
@@ -9720,7 +9720,7 @@ class Namespace$ {
|
|
|
9720
9720
|
/**
|
|
9721
9721
|
* 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>
|
|
9722
9722
|
*/
|
|
9723
|
-
|
|
9723
|
+
fetchV1NsPublisher() {
|
|
9724
9724
|
const params = {};
|
|
9725
9725
|
const url = '/basic/v1/public/namespaces/{namespace}/publisher'.replace('{namespace}', this.namespace);
|
|
9726
9726
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9857,7 +9857,7 @@ class UserProfile$ {
|
|
|
9857
9857
|
/**
|
|
9858
9858
|
* 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>
|
|
9859
9859
|
*/
|
|
9860
|
-
|
|
9860
|
+
fetchV1NsProfilesPublic(queryParams) {
|
|
9861
9861
|
const params = { ...queryParams };
|
|
9862
9862
|
const url = '/basic/v1/public/namespaces/{namespace}/profiles/public'.replace('{namespace}', this.namespace);
|
|
9863
9863
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9871,7 +9871,7 @@ class UserProfile$ {
|
|
|
9871
9871
|
/**
|
|
9872
9872
|
* Get user public profile by public id.<br>Other detail info: <ul><li><i>Returns</i>: user public profile</li></ul>
|
|
9873
9873
|
*/
|
|
9874
|
-
|
|
9874
|
+
fetchV1NsProfilesPublicByPublicId(queryParams) {
|
|
9875
9875
|
const params = { ...queryParams };
|
|
9876
9876
|
const url = '/basic/v1/public/namespaces/{namespace}/profiles/public/byPublicId'.replace('{namespace}', this.namespace);
|
|
9877
9877
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9885,7 +9885,7 @@ class UserProfile$ {
|
|
|
9885
9885
|
/**
|
|
9886
9886
|
* 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>
|
|
9887
9887
|
*/
|
|
9888
|
-
|
|
9888
|
+
fetchV1NsUsersMeProfilesPrivateCustomAttributes() {
|
|
9889
9889
|
const params = {};
|
|
9890
9890
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/privateCustomAttributes'.replace('{namespace}', this.namespace);
|
|
9891
9891
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9899,7 +9899,7 @@ class UserProfile$ {
|
|
|
9899
9899
|
/**
|
|
9900
9900
|
* 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>
|
|
9901
9901
|
*/
|
|
9902
|
-
|
|
9902
|
+
putV1NsUsersMeProfilesPrivateCustomAttributes(data) {
|
|
9903
9903
|
const params = {};
|
|
9904
9904
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/privateCustomAttributes'.replace('{namespace}', this.namespace);
|
|
9905
9905
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -9908,7 +9908,7 @@ class UserProfile$ {
|
|
|
9908
9908
|
/**
|
|
9909
9909
|
* 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>
|
|
9910
9910
|
*/
|
|
9911
|
-
|
|
9911
|
+
fetchV1NsUsersMeProfiles() {
|
|
9912
9912
|
const params = {};
|
|
9913
9913
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
9914
9914
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9922,7 +9922,7 @@ class UserProfile$ {
|
|
|
9922
9922
|
/**
|
|
9923
9923
|
* 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>
|
|
9924
9924
|
*/
|
|
9925
|
-
|
|
9925
|
+
postV1NsUsersMeProfiles(data) {
|
|
9926
9926
|
const params = {};
|
|
9927
9927
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
9928
9928
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -9931,7 +9931,7 @@ class UserProfile$ {
|
|
|
9931
9931
|
/**
|
|
9932
9932
|
* 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>
|
|
9933
9933
|
*/
|
|
9934
|
-
|
|
9934
|
+
putV1NsUsersMeProfiles(data) {
|
|
9935
9935
|
const params = {};
|
|
9936
9936
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles'.replace('{namespace}', this.namespace);
|
|
9937
9937
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -9940,7 +9940,7 @@ class UserProfile$ {
|
|
|
9940
9940
|
/**
|
|
9941
9941
|
* 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>
|
|
9942
9942
|
*/
|
|
9943
|
-
|
|
9943
|
+
fetchV1NsUsersMeProfilesZipCode() {
|
|
9944
9944
|
const params = {};
|
|
9945
9945
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/zipCode'.replace('{namespace}', this.namespace);
|
|
9946
9946
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -9954,7 +9954,7 @@ class UserProfile$ {
|
|
|
9954
9954
|
/**
|
|
9955
9955
|
* 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>
|
|
9956
9956
|
*/
|
|
9957
|
-
|
|
9957
|
+
patchV1NsUsersMeProfilesZipCode(data) {
|
|
9958
9958
|
const params = {};
|
|
9959
9959
|
const url = '/basic/v1/public/namespaces/{namespace}/users/me/profiles/zipCode'.replace('{namespace}', this.namespace);
|
|
9960
9960
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -9963,7 +9963,7 @@ class UserProfile$ {
|
|
|
9963
9963
|
/**
|
|
9964
9964
|
* 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>
|
|
9965
9965
|
*/
|
|
9966
|
-
|
|
9966
|
+
fetchV1NsUsersByUseridProfilesPublic(userId) {
|
|
9967
9967
|
const params = {};
|
|
9968
9968
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/public'
|
|
9969
9969
|
.replace('{namespace}', this.namespace)
|
|
@@ -9979,7 +9979,7 @@ class UserProfile$ {
|
|
|
9979
9979
|
/**
|
|
9980
9980
|
* 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>
|
|
9981
9981
|
*/
|
|
9982
|
-
|
|
9982
|
+
fetchV1NsUsersByUseridProfilesCustomAttributes(userId) {
|
|
9983
9983
|
const params = {};
|
|
9984
9984
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes'
|
|
9985
9985
|
.replace('{namespace}', this.namespace)
|
|
@@ -9995,7 +9995,7 @@ class UserProfile$ {
|
|
|
9995
9995
|
/**
|
|
9996
9996
|
* 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>
|
|
9997
9997
|
*/
|
|
9998
|
-
|
|
9998
|
+
putV1NsUsersByUseridProfilesCustomAttributes(userId, data) {
|
|
9999
9999
|
const params = {};
|
|
10000
10000
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/customAttributes'
|
|
10001
10001
|
.replace('{namespace}', this.namespace)
|
|
@@ -10006,7 +10006,7 @@ class UserProfile$ {
|
|
|
10006
10006
|
/**
|
|
10007
10007
|
* 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>
|
|
10008
10008
|
*/
|
|
10009
|
-
|
|
10009
|
+
fetchV1NsUsersByUseridProfiles(userId) {
|
|
10010
10010
|
const params = {};
|
|
10011
10011
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
10012
10012
|
.replace('{namespace}', this.namespace)
|
|
@@ -10022,7 +10022,7 @@ class UserProfile$ {
|
|
|
10022
10022
|
/**
|
|
10023
10023
|
* 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>
|
|
10024
10024
|
*/
|
|
10025
|
-
|
|
10025
|
+
postV1NsUsersByUseridProfiles(userId, data) {
|
|
10026
10026
|
const params = {};
|
|
10027
10027
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
10028
10028
|
.replace('{namespace}', this.namespace)
|
|
@@ -10033,7 +10033,7 @@ class UserProfile$ {
|
|
|
10033
10033
|
/**
|
|
10034
10034
|
* 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>
|
|
10035
10035
|
*/
|
|
10036
|
-
|
|
10036
|
+
putV1NsUsersByUseridProfiles(userId, data) {
|
|
10037
10037
|
const params = {};
|
|
10038
10038
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles'
|
|
10039
10039
|
.replace('{namespace}', this.namespace)
|
|
@@ -10044,7 +10044,7 @@ class UserProfile$ {
|
|
|
10044
10044
|
/**
|
|
10045
10045
|
* 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>
|
|
10046
10046
|
*/
|
|
10047
|
-
|
|
10047
|
+
patchV1NsUsersByUseridProfilesStatus(userId, data) {
|
|
10048
10048
|
const params = {};
|
|
10049
10049
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/profiles/status'
|
|
10050
10050
|
.replace('{namespace}', this.namespace)
|
|
@@ -10066,25 +10066,25 @@ class UserProfileApi {
|
|
|
10066
10066
|
* 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>
|
|
10067
10067
|
*/
|
|
10068
10068
|
this.getUsersMeProfiles = () => {
|
|
10069
|
-
return this.newInstance().
|
|
10069
|
+
return this.newInstance().fetchV1NsUsersMeProfiles();
|
|
10070
10070
|
};
|
|
10071
10071
|
/**
|
|
10072
10072
|
* 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>
|
|
10073
10073
|
*/
|
|
10074
10074
|
this.createUserMeProfile = (data) => {
|
|
10075
|
-
return this.newInstance().
|
|
10075
|
+
return this.newInstance().postV1NsUsersMeProfiles(data);
|
|
10076
10076
|
};
|
|
10077
10077
|
/**
|
|
10078
10078
|
* 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>
|
|
10079
10079
|
*/
|
|
10080
10080
|
this.updateUserMeProfile = (data) => {
|
|
10081
|
-
return this.newInstance().
|
|
10081
|
+
return this.newInstance().putV1NsUsersMeProfiles(data);
|
|
10082
10082
|
};
|
|
10083
10083
|
/**
|
|
10084
10084
|
* 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>
|
|
10085
10085
|
*/
|
|
10086
10086
|
this.updateUserCustomAttributes = (userId, data) => {
|
|
10087
|
-
return this.newInstance().
|
|
10087
|
+
return this.newInstance().putV1NsUsersByUseridProfilesCustomAttributes(userId, data);
|
|
10088
10088
|
};
|
|
10089
10089
|
}
|
|
10090
10090
|
newInstance() {
|
|
@@ -10125,7 +10125,7 @@ class Caching$ {
|
|
|
10125
10125
|
/**
|
|
10126
10126
|
* 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>
|
|
10127
10127
|
*/
|
|
10128
|
-
|
|
10128
|
+
fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId) {
|
|
10129
10129
|
const params = {};
|
|
10130
10130
|
const url = '/buildinfo/public/namespaces/{namespace}/diff/cache/source/{sourceBuildId}/dest/{destinationBuildId}'
|
|
10131
10131
|
.replace('{namespace}', this.namespace)
|
|
@@ -10153,7 +10153,7 @@ class CachingApi {
|
|
|
10153
10153
|
* 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>
|
|
10154
10154
|
*/
|
|
10155
10155
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
10156
|
-
return this.newInstance().
|
|
10156
|
+
return this.newInstance().fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
10157
10157
|
}
|
|
10158
10158
|
newInstance() {
|
|
10159
10159
|
// this is expensive to cache, apply "cache: false"
|
|
@@ -10257,7 +10257,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
10257
10257
|
/**
|
|
10258
10258
|
* 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>
|
|
10259
10259
|
*/
|
|
10260
|
-
|
|
10260
|
+
fetchNsDlcByBuildidLink(buildId) {
|
|
10261
10261
|
const params = {};
|
|
10262
10262
|
const url = '/buildinfo/public/namespaces/{namespace}/dlc/{buildId}/link'
|
|
10263
10263
|
.replace('{namespace}', this.namespace)
|
|
@@ -10273,7 +10273,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
10273
10273
|
/**
|
|
10274
10274
|
* 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>
|
|
10275
10275
|
*/
|
|
10276
|
-
|
|
10276
|
+
fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId) {
|
|
10277
10277
|
const params = {};
|
|
10278
10278
|
const url = '/buildinfo/public/namespaces/{namespace}/apps/latest/byDLCAppId/{dlcAppId}'
|
|
10279
10279
|
.replace('{namespace}', this.namespace)
|
|
@@ -10289,7 +10289,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
10289
10289
|
/**
|
|
10290
10290
|
* 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>
|
|
10291
10291
|
*/
|
|
10292
|
-
|
|
10292
|
+
fetchNsDlcsLatestByGameAppIdByAppid(appId) {
|
|
10293
10293
|
const params = {};
|
|
10294
10294
|
const url = '/buildinfo/public/namespaces/{namespace}/dlcs/latest/byGameAppId/{appId}'
|
|
10295
10295
|
.replace('{namespace}', this.namespace)
|
|
@@ -10305,7 +10305,7 @@ let Dlc$$1 = class Dlc$ {
|
|
|
10305
10305
|
/**
|
|
10306
10306
|
* 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>
|
|
10307
10307
|
*/
|
|
10308
|
-
|
|
10308
|
+
fetchNsDlcByBuildidCompatibility(buildId) {
|
|
10309
10309
|
const params = {};
|
|
10310
10310
|
const url = '/buildinfo/public/namespaces/{namespace}/dlc/{buildId}/compatibility'
|
|
10311
10311
|
.replace('{namespace}', this.namespace)
|
|
@@ -10332,13 +10332,13 @@ class DlcApi {
|
|
|
10332
10332
|
* 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>
|
|
10333
10333
|
*/
|
|
10334
10334
|
getLatestDLCByGameAppId(appId) {
|
|
10335
|
-
return this.newInstance().
|
|
10335
|
+
return this.newInstance().fetchNsDlcsLatestByGameAppIdByAppid(appId);
|
|
10336
10336
|
}
|
|
10337
10337
|
/**
|
|
10338
10338
|
* 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>
|
|
10339
10339
|
*/
|
|
10340
10340
|
getBaseGamesByDlcAppId(dlcAppId) {
|
|
10341
|
-
return this.newInstance().
|
|
10341
|
+
return this.newInstance().fetchNsAppsLatestByDlcAppIdByDlcappid(dlcAppId);
|
|
10342
10342
|
}
|
|
10343
10343
|
newInstance() {
|
|
10344
10344
|
// this is be expensive to cache, apply "cache: false"
|
|
@@ -10576,7 +10576,7 @@ class Downloader$ {
|
|
|
10576
10576
|
/**
|
|
10577
10577
|
* 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>
|
|
10578
10578
|
*/
|
|
10579
|
-
|
|
10579
|
+
postNsBuildsByBuildidBlocksUrls(buildId, data) {
|
|
10580
10580
|
const params = {};
|
|
10581
10581
|
const url = '/buildinfo/public/namespaces/{namespace}/builds/{buildId}/blocks/urls'
|
|
10582
10582
|
.replace('{namespace}', this.namespace)
|
|
@@ -10587,7 +10587,7 @@ class Downloader$ {
|
|
|
10587
10587
|
/**
|
|
10588
10588
|
* 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>
|
|
10589
10589
|
*/
|
|
10590
|
-
|
|
10590
|
+
fetchNsBulkCheckLatest(queryParams) {
|
|
10591
10591
|
const params = { ...queryParams };
|
|
10592
10592
|
const url = '/buildinfo/public/namespaces/{namespace}/bulkCheckLatest'.replace('{namespace}', this.namespace);
|
|
10593
10593
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -10601,7 +10601,7 @@ class Downloader$ {
|
|
|
10601
10601
|
/**
|
|
10602
10602
|
* 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>
|
|
10603
10603
|
*/
|
|
10604
|
-
|
|
10604
|
+
fetchNsV2UpdategameByAppidByVersionByPlatformid(appId, version, platformId) {
|
|
10605
10605
|
const params = {};
|
|
10606
10606
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{version}/{platformId}'
|
|
10607
10607
|
.replace('{namespace}', this.namespace)
|
|
@@ -10619,7 +10619,7 @@ class Downloader$ {
|
|
|
10619
10619
|
/**
|
|
10620
10620
|
* 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>
|
|
10621
10621
|
*/
|
|
10622
|
-
|
|
10622
|
+
fetchNsAvailablebuildsByAppid(appId) {
|
|
10623
10623
|
const params = {};
|
|
10624
10624
|
const url = '/buildinfo/public/namespaces/{namespace}/availablebuilds/{appId}'
|
|
10625
10625
|
.replace('{namespace}', this.namespace)
|
|
@@ -10635,7 +10635,7 @@ class Downloader$ {
|
|
|
10635
10635
|
/**
|
|
10636
10636
|
* 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>
|
|
10637
10637
|
*/
|
|
10638
|
-
|
|
10638
|
+
fetchNsDiffBySourcebuildidByDestinationbuildid(sourceBuildId, destinationBuildId) {
|
|
10639
10639
|
const params = {};
|
|
10640
10640
|
const url = '/buildinfo/public/namespaces/{namespace}/diff/{sourceBuildId}/{destinationBuildId}'
|
|
10641
10641
|
.replace('{namespace}', this.namespace)
|
|
@@ -10652,7 +10652,7 @@ class Downloader$ {
|
|
|
10652
10652
|
/**
|
|
10653
10653
|
* 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>
|
|
10654
10654
|
*/
|
|
10655
|
-
|
|
10655
|
+
fetchNsVersionHistory(queryParams) {
|
|
10656
10656
|
const params = { ...queryParams };
|
|
10657
10657
|
const url = '/buildinfo/public/namespaces/{namespace}/versionHistory'.replace('{namespace}', this.namespace);
|
|
10658
10658
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -10666,7 +10666,7 @@ class Downloader$ {
|
|
|
10666
10666
|
/**
|
|
10667
10667
|
* 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>
|
|
10668
10668
|
*/
|
|
10669
|
-
|
|
10669
|
+
fetchNsV2UpdategameByAppidByPlatformid(appId, platformId) {
|
|
10670
10670
|
const params = {};
|
|
10671
10671
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/{appId}/{platformId}'
|
|
10672
10672
|
.replace('{namespace}', this.namespace)
|
|
@@ -10683,7 +10683,7 @@ class Downloader$ {
|
|
|
10683
10683
|
/**
|
|
10684
10684
|
* 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>
|
|
10685
10685
|
*/
|
|
10686
|
-
|
|
10686
|
+
fetchNsV2UpdategameBuildsByBuildid(buildId) {
|
|
10687
10687
|
const params = {};
|
|
10688
10688
|
const url = '/buildinfo/public/namespaces/{namespace}/v2/updategame/builds/{buildId}'
|
|
10689
10689
|
.replace('{namespace}', this.namespace)
|
|
@@ -10710,20 +10710,20 @@ class DownloaderApi {
|
|
|
10710
10710
|
* 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>
|
|
10711
10711
|
*/
|
|
10712
10712
|
getAvailableBuilds(appId) {
|
|
10713
|
-
return this.newInstance().
|
|
10713
|
+
return this.newInstance().fetchNsAvailablebuildsByAppid(appId);
|
|
10714
10714
|
}
|
|
10715
10715
|
/**
|
|
10716
10716
|
* 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>
|
|
10717
10717
|
*/
|
|
10718
10718
|
getBuildManifest(appId, platformId) {
|
|
10719
10719
|
const axios = Network.create({ ...this.conf, timeout: 1800000 });
|
|
10720
|
-
return new Downloader$(axios, this.namespace, false).
|
|
10720
|
+
return new Downloader$(axios, this.namespace, false).fetchNsV2UpdategameByAppidByPlatformid(appId, platformId);
|
|
10721
10721
|
}
|
|
10722
10722
|
/**
|
|
10723
10723
|
* 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>
|
|
10724
10724
|
*/
|
|
10725
10725
|
getDiffCache(sourceBuildId, destinationBuildId) {
|
|
10726
|
-
return new Caching$(Network.create(this.conf), this.namespace, false).
|
|
10726
|
+
return new Caching$(Network.create(this.conf), this.namespace, false).fetchNsDiffCacheSourceBySourcebuildidDestByDestinationbuildid(sourceBuildId, destinationBuildId);
|
|
10727
10727
|
}
|
|
10728
10728
|
/**
|
|
10729
10729
|
* Check which platform is available for the user to download the game
|
|
@@ -10818,7 +10818,7 @@ class EventV2$ {
|
|
|
10818
10818
|
* </ul>
|
|
10819
10819
|
* <p>Requires a valid user access token</p>
|
|
10820
10820
|
*/
|
|
10821
|
-
|
|
10821
|
+
fetchEventV2NsUsersByUseridEdithistory(userId, queryParams) {
|
|
10822
10822
|
const params = { ...queryParams };
|
|
10823
10823
|
const url = '/event/v2/public/namespaces/{namespace}/users/{userId}/edithistory'
|
|
10824
10824
|
.replace('{namespace}', this.namespace)
|
|
@@ -10834,7 +10834,7 @@ class EventV2$ {
|
|
|
10834
10834
|
/**
|
|
10835
10835
|
* <p>Requires valid user access token</p>
|
|
10836
10836
|
*/
|
|
10837
|
-
|
|
10837
|
+
fetchEventV2NsUsersByUseridEvent(userId, queryParams) {
|
|
10838
10838
|
const params = { ...queryParams };
|
|
10839
10839
|
const url = '/event/v2/public/namespaces/{namespace}/users/{userId}/event'
|
|
10840
10840
|
.replace('{namespace}', this.namespace)
|
|
@@ -10870,7 +10870,7 @@ class EventApi {
|
|
|
10870
10870
|
* <p>Requires a valid user access token</p>
|
|
10871
10871
|
*/
|
|
10872
10872
|
this.getAccountHistoryByUserId = ({ userId, queryParams }) => {
|
|
10873
|
-
return this.newInstance().
|
|
10873
|
+
return this.newInstance().fetchEventV2NsUsersByUseridEdithistory(userId, queryParams);
|
|
10874
10874
|
};
|
|
10875
10875
|
}
|
|
10876
10876
|
newInstance() {
|
|
@@ -10913,7 +10913,7 @@ class DataDeletion$ {
|
|
|
10913
10913
|
/**
|
|
10914
10914
|
* <p>Requires valid user access token and password
|
|
10915
10915
|
*/
|
|
10916
|
-
|
|
10916
|
+
postGdprNsUsersByUseridDeletions(userId, data) {
|
|
10917
10917
|
const params = {};
|
|
10918
10918
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions'
|
|
10919
10919
|
.replace('{namespace}', this.namespace)
|
|
@@ -10927,7 +10927,7 @@ class DataDeletion$ {
|
|
|
10927
10927
|
/**
|
|
10928
10928
|
* <p>Requires valid user access token</p>
|
|
10929
10929
|
*/
|
|
10930
|
-
|
|
10930
|
+
deleteGdprNsUsersByUseridDeletions(userId) {
|
|
10931
10931
|
const params = {};
|
|
10932
10932
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions'
|
|
10933
10933
|
.replace('{namespace}', this.namespace)
|
|
@@ -10938,7 +10938,7 @@ class DataDeletion$ {
|
|
|
10938
10938
|
/**
|
|
10939
10939
|
* <p>Requires valid user access token</p>
|
|
10940
10940
|
*/
|
|
10941
|
-
|
|
10941
|
+
fetchGdprNsUsersByUseridDeletionsStatus(userId) {
|
|
10942
10942
|
const params = {};
|
|
10943
10943
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/deletions/status'
|
|
10944
10944
|
.replace('{namespace}', this.namespace)
|
|
@@ -10967,21 +10967,21 @@ class DataDeletionApi {
|
|
|
10967
10967
|
* <p>Requires valid user access token</p>
|
|
10968
10968
|
*/
|
|
10969
10969
|
getGdprDeletionStatus(userId) {
|
|
10970
|
-
return this.newInstance().
|
|
10970
|
+
return this.newInstance().fetchGdprNsUsersByUseridDeletionsStatus(userId);
|
|
10971
10971
|
}
|
|
10972
10972
|
/**
|
|
10973
10973
|
* <p>Request an account's deletion</p>
|
|
10974
10974
|
* <p>Requires valid user access token and password
|
|
10975
10975
|
*/
|
|
10976
10976
|
requestAccountDeletion({ userId, data }) {
|
|
10977
|
-
return this.newInstance().
|
|
10977
|
+
return this.newInstance().postGdprNsUsersByUseridDeletions(userId, data);
|
|
10978
10978
|
}
|
|
10979
10979
|
/**
|
|
10980
10980
|
* <p>Cancel a deletion request</p>
|
|
10981
10981
|
* <p>Requires valid user access token</p>
|
|
10982
10982
|
*/
|
|
10983
10983
|
cancelAccountDeletion(userId) {
|
|
10984
|
-
return this.newInstance().
|
|
10984
|
+
return this.newInstance().deleteGdprNsUsersByUseridDeletions(userId);
|
|
10985
10985
|
}
|
|
10986
10986
|
newInstance() {
|
|
10987
10987
|
return new DataDeletion$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -11038,7 +11038,7 @@ class DataRetrieval$ {
|
|
|
11038
11038
|
/**
|
|
11039
11039
|
* <p>Requires valid user access token</p>
|
|
11040
11040
|
*/
|
|
11041
|
-
|
|
11041
|
+
fetchGdprNsUsersByUseridRequests(userId, queryParams) {
|
|
11042
11042
|
const params = { ...queryParams };
|
|
11043
11043
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests'
|
|
11044
11044
|
.replace('{namespace}', this.namespace)
|
|
@@ -11054,7 +11054,7 @@ class DataRetrieval$ {
|
|
|
11054
11054
|
/**
|
|
11055
11055
|
* <p>Requires valid user access token</p>
|
|
11056
11056
|
*/
|
|
11057
|
-
|
|
11057
|
+
postGdprNsUsersByUseridRequests(userId, data) {
|
|
11058
11058
|
const params = {};
|
|
11059
11059
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests'
|
|
11060
11060
|
.replace('{namespace}', this.namespace)
|
|
@@ -11068,7 +11068,7 @@ class DataRetrieval$ {
|
|
|
11068
11068
|
/**
|
|
11069
11069
|
* <p>Requires valid user access token</p>
|
|
11070
11070
|
*/
|
|
11071
|
-
|
|
11071
|
+
deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate) {
|
|
11072
11072
|
const params = {};
|
|
11073
11073
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}'
|
|
11074
11074
|
.replace('{namespace}', this.namespace)
|
|
@@ -11080,7 +11080,7 @@ class DataRetrieval$ {
|
|
|
11080
11080
|
/**
|
|
11081
11081
|
* <p>Requires valid user access token</p>
|
|
11082
11082
|
*/
|
|
11083
|
-
|
|
11083
|
+
postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data) {
|
|
11084
11084
|
const params = {};
|
|
11085
11085
|
const url = '/gdpr/public/namespaces/{namespace}/users/{userId}/requests/{requestDate}/generate'
|
|
11086
11086
|
.replace('{namespace}', this.namespace)
|
|
@@ -11108,28 +11108,28 @@ class DataRetrievalApi {
|
|
|
11108
11108
|
* <p>Requires valid user access token</p>
|
|
11109
11109
|
*/
|
|
11110
11110
|
getGdprDataRequestList({ userId, queryParams }) {
|
|
11111
|
-
return this.newInstance().
|
|
11111
|
+
return this.newInstance().fetchGdprNsUsersByUseridRequests(userId, queryParams);
|
|
11112
11112
|
}
|
|
11113
11113
|
/**
|
|
11114
11114
|
* <p>Create a request for personal data download</p>
|
|
11115
11115
|
* <p>Requires valid user access token</p>
|
|
11116
11116
|
*/
|
|
11117
11117
|
requestGdprData({ userId, data }) {
|
|
11118
|
-
return this.newInstance().
|
|
11118
|
+
return this.newInstance().postGdprNsUsersByUseridRequests(userId, data);
|
|
11119
11119
|
}
|
|
11120
11120
|
/**
|
|
11121
11121
|
* <p>Cancel the request for personal data dowwnload</p>
|
|
11122
11122
|
* <p>Requires valid user access token</p>
|
|
11123
11123
|
*/
|
|
11124
11124
|
cancelGdprDataRequest({ userId, requestDate }) {
|
|
11125
|
-
return this.newInstance().
|
|
11125
|
+
return this.newInstance().deleteGdprNsUsersByUseridRequestsByRequestdate(userId, requestDate);
|
|
11126
11126
|
}
|
|
11127
11127
|
/**
|
|
11128
11128
|
* <p>Create a download URL for personal data request</p>
|
|
11129
11129
|
* <p>Requires valid user access token</p>
|
|
11130
11130
|
*/
|
|
11131
11131
|
requestGdprDataDownloadUrl({ userId, requestDate, data }) {
|
|
11132
|
-
return this.newInstance().
|
|
11132
|
+
return this.newInstance().postGdprNsUsersByUseridRequestsByRequestdateGenerate(userId, requestDate, data);
|
|
11133
11133
|
}
|
|
11134
11134
|
newInstance() {
|
|
11135
11135
|
return new DataRetrieval$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -11673,6 +11673,7 @@ class OAuth20$ {
|
|
|
11673
11673
|
* <li><strong>xblweb</strong>: The platform_token’s value is code returned by xbox after login</li>
|
|
11674
11674
|
* <li><strong>netflix</strong>: The platform_token’s value is GAT (Gamer Access Token) returned by Netflix backend</li>
|
|
11675
11675
|
* <li><strong>snapchat</strong>: The platform_token’s value is the authorization code returned by Snapchat OAuth.</li>
|
|
11676
|
+
* <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>
|
|
11676
11677
|
* </ul>
|
|
11677
11678
|
* <h2>Account Group</h2>
|
|
11678
11679
|
* <p>Several platforms are grouped under account groups. The accounts on these platforms have the same platform user id.
|
|
@@ -20609,11 +20610,7 @@ class OAuth20Extension$ {
|
|
|
20609
20610
|
return Validate.responseType(() => resultPromise, OneTimeLinkingCodeResponse);
|
|
20610
20611
|
}
|
|
20611
20612
|
/**
|
|
20612
|
-
* <p>This endpoint is being used to validate one time link code.<br>
|
|
20613
|
-
* It require a valid user token.<br>
|
|
20614
|
-
* Should specify the target platform id and current user should already linked to this platform.<br>
|
|
20615
|
-
* Current user should be a headless account.<br>
|
|
20616
|
-
* </p>
|
|
20613
|
+
* <p>This endpoint is being used to validate one time link code.<br></p>
|
|
20617
20614
|
*/
|
|
20618
20615
|
postIamV3LinkCodeValidate(data) {
|
|
20619
20616
|
const params = {};
|
|
@@ -21019,7 +21016,7 @@ class ThirdPartyCredential$ {
|
|
|
21019
21016
|
/**
|
|
21020
21017
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
21021
21018
|
*/
|
|
21022
|
-
|
|
21019
|
+
fetchV3NsPlatformsClientsActive() {
|
|
21023
21020
|
const params = {};
|
|
21024
21021
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/clients/active'.replace('{namespace}', this.namespace);
|
|
21025
21022
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21033,7 +21030,7 @@ class ThirdPartyCredential$ {
|
|
|
21033
21030
|
/**
|
|
21034
21031
|
* This is the Public API to Get All Active OIDC Platform Credential By Client ID
|
|
21035
21032
|
*/
|
|
21036
|
-
|
|
21033
|
+
fetchV3NsPlatformsClientsOidc(queryParams) {
|
|
21037
21034
|
const params = { ...queryParams };
|
|
21038
21035
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/clients/oidc'.replace('{namespace}', this.namespace);
|
|
21039
21036
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21058,7 +21055,7 @@ class ThirdPartyCredentialApi {
|
|
|
21058
21055
|
* This is the Public API to Get All Active 3rd Platform Credential.
|
|
21059
21056
|
*/
|
|
21060
21057
|
this.getThirdPartyPlatformInfo = () => {
|
|
21061
|
-
return this.newInstance().
|
|
21058
|
+
return this.newInstance().fetchV3NsPlatformsClientsActive();
|
|
21062
21059
|
};
|
|
21063
21060
|
}
|
|
21064
21061
|
/**
|
|
@@ -21141,7 +21138,7 @@ const UserResponseV3 = mod.object({
|
|
|
21141
21138
|
bans: mod.array(UserActiveBanResponseV3),
|
|
21142
21139
|
country: mod.string(),
|
|
21143
21140
|
createdAt: mod.string(),
|
|
21144
|
-
dateOfBirth: mod.string(),
|
|
21141
|
+
dateOfBirth: mod.string().nullish(),
|
|
21145
21142
|
deletionStatus: mod.boolean(),
|
|
21146
21143
|
displayName: mod.string(),
|
|
21147
21144
|
emailAddress: mod.string(),
|
|
@@ -21246,7 +21243,7 @@ class UsersV4$ {
|
|
|
21246
21243
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
21247
21244
|
*
|
|
21248
21245
|
*/
|
|
21249
|
-
|
|
21246
|
+
postV4NsTestUsers(data) {
|
|
21250
21247
|
const params = {};
|
|
21251
21248
|
const url = '/iam/v4/public/namespaces/{namespace}/test_users'.replace('{namespace}', this.namespace);
|
|
21252
21249
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -21269,7 +21266,7 @@ class UsersV4$ {
|
|
|
21269
21266
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
21270
21267
|
*
|
|
21271
21268
|
*/
|
|
21272
|
-
|
|
21269
|
+
postV4NsUsers(data) {
|
|
21273
21270
|
const params = {};
|
|
21274
21271
|
const url = '/iam/v4/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
21275
21272
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -21295,7 +21292,7 @@ class UsersV4$ {
|
|
|
21295
21292
|
* - username: Please refer to the rule from /v3/public/inputValidations API.
|
|
21296
21293
|
*
|
|
21297
21294
|
*/
|
|
21298
|
-
|
|
21295
|
+
postV4NsUsersInviteByInvitationid(invitationId, data) {
|
|
21299
21296
|
const params = {};
|
|
21300
21297
|
const url = '/iam/v4/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
21301
21298
|
.replace('{namespace}', this.namespace)
|
|
@@ -21312,7 +21309,7 @@ class UsersV4$ {
|
|
|
21312
21309
|
* <br><b>Several case of updating email address</b>
|
|
21313
21310
|
* <p>action code : 10103 </p>
|
|
21314
21311
|
*/
|
|
21315
|
-
|
|
21312
|
+
patchV4NsUsersMe(data) {
|
|
21316
21313
|
const params = {};
|
|
21317
21314
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
21318
21315
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -21323,7 +21320,7 @@ class UsersV4$ {
|
|
|
21323
21320
|
* <p>It requires a verification code from <pre>/users/me/code/request</pre> with <b>UpdateEmailAddress</b> context.</p>
|
|
21324
21321
|
*
|
|
21325
21322
|
*/
|
|
21326
|
-
|
|
21323
|
+
putV4NsUsersMeEmail(data) {
|
|
21327
21324
|
const params = {};
|
|
21328
21325
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/email'.replace('{namespace}', this.namespace);
|
|
21329
21326
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -21346,7 +21343,7 @@ class UsersV4$ {
|
|
|
21346
21343
|
* </ul>
|
|
21347
21344
|
* action code : 10124
|
|
21348
21345
|
*/
|
|
21349
|
-
|
|
21346
|
+
postV4NsUsersMeHeadlessCodeVerify(data) {
|
|
21350
21347
|
const params = {};
|
|
21351
21348
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/headless/code/verify'.replace('{namespace}', this.namespace);
|
|
21352
21349
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -21357,7 +21354,7 @@ class UsersV4$ {
|
|
|
21357
21354
|
* Upgrade headless account to full account without verifying email address. Client does not need to provide verification code which sent to email address.
|
|
21358
21355
|
* <br>action code : 10124 </p>
|
|
21359
21356
|
*/
|
|
21360
|
-
|
|
21357
|
+
postV4NsUsersMeHeadlessVerify(data) {
|
|
21361
21358
|
const params = {};
|
|
21362
21359
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/headless/verify'.replace('{namespace}', this.namespace);
|
|
21363
21360
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -21368,7 +21365,7 @@ class UsersV4$ {
|
|
|
21368
21365
|
* <p>This endpoint Requires valid user access token</p>
|
|
21369
21366
|
*
|
|
21370
21367
|
*/
|
|
21371
|
-
|
|
21368
|
+
deleteV4NsUsersMeMfaAuthenticatorDisable() {
|
|
21372
21369
|
const params = {};
|
|
21373
21370
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/disable'.replace('{namespace}', this.namespace);
|
|
21374
21371
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -21379,7 +21376,7 @@ class UsersV4$ {
|
|
|
21379
21376
|
* <p>This endpoint Requires valid user access token</p>
|
|
21380
21377
|
*
|
|
21381
21378
|
*/
|
|
21382
|
-
|
|
21379
|
+
postV4NsUsersMeMfaAuthenticatorEnable(data) {
|
|
21383
21380
|
const params = {};
|
|
21384
21381
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/enable'.replace('{namespace}', this.namespace);
|
|
21385
21382
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -21394,7 +21391,7 @@ class UsersV4$ {
|
|
|
21394
21391
|
* <p>This endpoint Requires valid user access token</p>
|
|
21395
21392
|
*
|
|
21396
21393
|
*/
|
|
21397
|
-
|
|
21394
|
+
postV4NsUsersMeMfaAuthenticatorKey() {
|
|
21398
21395
|
const params = {};
|
|
21399
21396
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/authenticator/key'.replace('{namespace}', this.namespace);
|
|
21400
21397
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -21406,7 +21403,7 @@ class UsersV4$ {
|
|
|
21406
21403
|
* <p>This endpoint Requires valid user access token</p>
|
|
21407
21404
|
*
|
|
21408
21405
|
*/
|
|
21409
|
-
|
|
21406
|
+
fetchV4NsUsersMeMfaBackupCode() {
|
|
21410
21407
|
const params = {};
|
|
21411
21408
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode'.replace('{namespace}', this.namespace);
|
|
21412
21409
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21423,7 +21420,7 @@ class UsersV4$ {
|
|
|
21423
21420
|
* <p>This endpoint Requires valid user access token</p>
|
|
21424
21421
|
*
|
|
21425
21422
|
*/
|
|
21426
|
-
|
|
21423
|
+
postV4NsUsersMeMfaBackupCode() {
|
|
21427
21424
|
const params = {};
|
|
21428
21425
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode'.replace('{namespace}', this.namespace);
|
|
21429
21426
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -21434,7 +21431,7 @@ class UsersV4$ {
|
|
|
21434
21431
|
* <p>This endpoint Requires valid user access token</p>
|
|
21435
21432
|
*
|
|
21436
21433
|
*/
|
|
21437
|
-
|
|
21434
|
+
deleteV4NsUsersMeMfaBackupCodeDisable() {
|
|
21438
21435
|
const params = {};
|
|
21439
21436
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/disable'.replace('{namespace}', this.namespace);
|
|
21440
21437
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -21445,7 +21442,7 @@ class UsersV4$ {
|
|
|
21445
21442
|
* <p>This endpoint Requires valid user access token</p>
|
|
21446
21443
|
*
|
|
21447
21444
|
*/
|
|
21448
|
-
|
|
21445
|
+
fetchV4NsUsersMeMfaBackupCodeDownload() {
|
|
21449
21446
|
const params = {};
|
|
21450
21447
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/download'.replace('{namespace}', this.namespace);
|
|
21451
21448
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21461,7 +21458,7 @@ class UsersV4$ {
|
|
|
21461
21458
|
* <p>This endpoint Requires valid user access token</p>
|
|
21462
21459
|
*
|
|
21463
21460
|
*/
|
|
21464
|
-
|
|
21461
|
+
postV4NsUsersMeMfaBackupCodeEnable() {
|
|
21465
21462
|
const params = {};
|
|
21466
21463
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/backupCode/enable'.replace('{namespace}', this.namespace);
|
|
21467
21464
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -21473,7 +21470,7 @@ class UsersV4$ {
|
|
|
21473
21470
|
* <p>This endpoint Requires device_token in cookie</p>
|
|
21474
21471
|
*
|
|
21475
21472
|
*/
|
|
21476
|
-
|
|
21473
|
+
deleteV4NsUsersMeMfaDevice() {
|
|
21477
21474
|
const params = {};
|
|
21478
21475
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/device'.replace('{namespace}', this.namespace);
|
|
21479
21476
|
const resultPromise = this.axiosInstance.delete(url, { params });
|
|
@@ -21484,7 +21481,7 @@ class UsersV4$ {
|
|
|
21484
21481
|
* <p>This endpoint Requires valid user access token</p>
|
|
21485
21482
|
*
|
|
21486
21483
|
*/
|
|
21487
|
-
|
|
21484
|
+
postV4NsUsersMeMfaEmailCode() {
|
|
21488
21485
|
const params = {};
|
|
21489
21486
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/code'.replace('{namespace}', this.namespace);
|
|
21490
21487
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -21495,7 +21492,7 @@ class UsersV4$ {
|
|
|
21495
21492
|
* <p>This endpoint Requires valid user access token</p>
|
|
21496
21493
|
*
|
|
21497
21494
|
*/
|
|
21498
|
-
|
|
21495
|
+
postV4NsUsersMeMfaEmailDisable() {
|
|
21499
21496
|
const params = {};
|
|
21500
21497
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/disable'.replace('{namespace}', this.namespace);
|
|
21501
21498
|
const resultPromise = this.axiosInstance.post(url, null, { params });
|
|
@@ -21506,7 +21503,7 @@ class UsersV4$ {
|
|
|
21506
21503
|
* <p>This endpoint Requires valid user access token</p>
|
|
21507
21504
|
*
|
|
21508
21505
|
*/
|
|
21509
|
-
|
|
21506
|
+
postV4NsUsersMeMfaEmailEnable(data) {
|
|
21510
21507
|
const params = {};
|
|
21511
21508
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable'.replace('{namespace}', this.namespace);
|
|
21512
21509
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -21520,7 +21517,7 @@ class UsersV4$ {
|
|
|
21520
21517
|
* <p>This endpoint Requires valid user access token</p>
|
|
21521
21518
|
*
|
|
21522
21519
|
*/
|
|
21523
|
-
|
|
21520
|
+
fetchV4NsUsersMeMfaFactor() {
|
|
21524
21521
|
const params = {};
|
|
21525
21522
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor'.replace('{namespace}', this.namespace);
|
|
21526
21523
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -21536,7 +21533,7 @@ class UsersV4$ {
|
|
|
21536
21533
|
* <p>This endpoint Requires valid user access token</p>
|
|
21537
21534
|
*
|
|
21538
21535
|
*/
|
|
21539
|
-
|
|
21536
|
+
postV4NsUsersMeMfaFactor(data) {
|
|
21540
21537
|
const params = {};
|
|
21541
21538
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/factor'.replace('{namespace}', this.namespace);
|
|
21542
21539
|
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
@@ -21562,7 +21559,7 @@ class TwoFA {
|
|
|
21562
21559
|
*
|
|
21563
21560
|
*/
|
|
21564
21561
|
this.getBackupCode = () => {
|
|
21565
|
-
return this.newInstance().
|
|
21562
|
+
return this.newInstance().fetchV4NsUsersMeMfaBackupCode();
|
|
21566
21563
|
};
|
|
21567
21564
|
/**
|
|
21568
21565
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -21570,7 +21567,7 @@ class TwoFA {
|
|
|
21570
21567
|
*
|
|
21571
21568
|
*/
|
|
21572
21569
|
this.enable2FABackupCodes = () => {
|
|
21573
|
-
return this.newInstance().
|
|
21570
|
+
return this.newInstance().postV4NsUsersMeMfaBackupCodeEnable();
|
|
21574
21571
|
};
|
|
21575
21572
|
/**
|
|
21576
21573
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -21578,7 +21575,7 @@ class TwoFA {
|
|
|
21578
21575
|
*
|
|
21579
21576
|
*/
|
|
21580
21577
|
this.generateBackupCodes = () => {
|
|
21581
|
-
return this.newInstance().
|
|
21578
|
+
return this.newInstance().postV4NsUsersMeMfaBackupCode();
|
|
21582
21579
|
};
|
|
21583
21580
|
/**
|
|
21584
21581
|
* <p>This method is used to enable 2FA backup codes.</p>
|
|
@@ -21586,7 +21583,7 @@ class TwoFA {
|
|
|
21586
21583
|
*
|
|
21587
21584
|
*/
|
|
21588
21585
|
this.disableBackupCodes = () => {
|
|
21589
|
-
return this.newInstance().
|
|
21586
|
+
return this.newInstance().deleteV4NsUsersMeMfaBackupCodeDisable();
|
|
21590
21587
|
};
|
|
21591
21588
|
/**
|
|
21592
21589
|
* <p>This method is used to disable 2FA authenticator.</p>
|
|
@@ -21594,7 +21591,7 @@ class TwoFA {
|
|
|
21594
21591
|
*
|
|
21595
21592
|
*/
|
|
21596
21593
|
this.disableAuthenticator = () => {
|
|
21597
|
-
return this.newInstance().
|
|
21594
|
+
return this.newInstance().deleteV4NsUsersMeMfaAuthenticatorDisable();
|
|
21598
21595
|
};
|
|
21599
21596
|
/**
|
|
21600
21597
|
* <p>This method is used to get user enabled factors.</p>
|
|
@@ -21602,7 +21599,7 @@ class TwoFA {
|
|
|
21602
21599
|
*
|
|
21603
21600
|
*/
|
|
21604
21601
|
this.getEnabledMethods = () => {
|
|
21605
|
-
return this.newInstance().
|
|
21602
|
+
return this.newInstance().fetchV4NsUsersMeMfaFactor();
|
|
21606
21603
|
};
|
|
21607
21604
|
/**
|
|
21608
21605
|
* <p>This method is used to make 2FA factor default.</p>
|
|
@@ -21610,7 +21607,7 @@ class TwoFA {
|
|
|
21610
21607
|
*
|
|
21611
21608
|
*/
|
|
21612
21609
|
this.set2FAAsDefault = (factor) => {
|
|
21613
|
-
return this.newInstance().
|
|
21610
|
+
return this.newInstance().postV4NsUsersMeMfaFactor({ factor });
|
|
21614
21611
|
};
|
|
21615
21612
|
/**
|
|
21616
21613
|
* <p>This method is used to enable 2FA authenticator.</p>
|
|
@@ -21618,7 +21615,7 @@ class TwoFA {
|
|
|
21618
21615
|
*
|
|
21619
21616
|
*/
|
|
21620
21617
|
this.enable2FAAuthenticator = (code) => {
|
|
21621
|
-
return this.newInstance().
|
|
21618
|
+
return this.newInstance().postV4NsUsersMeMfaAuthenticatorEnable({ code });
|
|
21622
21619
|
};
|
|
21623
21620
|
/**
|
|
21624
21621
|
* <p>This method is used to generate a secret key for 3rd-party authenticator app.
|
|
@@ -21627,16 +21624,16 @@ class TwoFA {
|
|
|
21627
21624
|
*
|
|
21628
21625
|
*/
|
|
21629
21626
|
this.generateSecretKey = () => {
|
|
21630
|
-
return this.newInstance().
|
|
21627
|
+
return this.newInstance().postV4NsUsersMeMfaAuthenticatorKey();
|
|
21631
21628
|
};
|
|
21632
21629
|
this.requestEmailCode = () => {
|
|
21633
|
-
return this.newInstance().
|
|
21630
|
+
return this.newInstance().postV4NsUsersMeMfaEmailCode();
|
|
21634
21631
|
};
|
|
21635
21632
|
this.enableEmailMethod = (code) => {
|
|
21636
|
-
return this.newInstance().
|
|
21633
|
+
return this.newInstance().postV4NsUsersMeMfaEmailEnable({ code });
|
|
21637
21634
|
};
|
|
21638
21635
|
this.disableEmailMethod = () => {
|
|
21639
|
-
return this.newInstance().
|
|
21636
|
+
return this.newInstance().postV4NsUsersMeMfaEmailDisable();
|
|
21640
21637
|
};
|
|
21641
21638
|
}
|
|
21642
21639
|
newInstance() {
|
|
@@ -22060,7 +22057,7 @@ class Users$ {
|
|
|
22060
22057
|
/**
|
|
22061
22058
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
22062
22059
|
*/
|
|
22063
|
-
|
|
22060
|
+
fetchV3NsAgerestrictionsCountriesByCountrycode(countryCode) {
|
|
22064
22061
|
const params = {};
|
|
22065
22062
|
const url = '/iam/v3/public/namespaces/{namespace}/agerestrictions/countries/{countryCode}'
|
|
22066
22063
|
.replace('{namespace}', this.namespace)
|
|
@@ -22081,7 +22078,7 @@ class Users$ {
|
|
|
22081
22078
|
* <strong>nintendo platform user ID</strong>: NSA ID need to be appended with Environment ID using colon as separator. e.g kmzwa8awaa:dd1
|
|
22082
22079
|
*
|
|
22083
22080
|
*/
|
|
22084
|
-
|
|
22081
|
+
postV3NsPlatformsByPlatformidUsers(platformId, data) {
|
|
22085
22082
|
const params = {};
|
|
22086
22083
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/{platformId}/users'
|
|
22087
22084
|
.replace('{namespace}', this.namespace)
|
|
@@ -22097,7 +22094,7 @@ class Users$ {
|
|
|
22097
22094
|
* <strong>nintendo platform user ID</strong>: NSA ID need to be appended with Environment ID using colon as separator. e.g kmzwa8awaa:dd1
|
|
22098
22095
|
*
|
|
22099
22096
|
*/
|
|
22100
|
-
|
|
22097
|
+
fetchV3NsPlatformsByPlatformidUsersByPlatformuserid(platformId, platformUserId) {
|
|
22101
22098
|
const params = {};
|
|
22102
22099
|
const url = '/iam/v3/public/namespaces/{namespace}/platforms/{platformId}/users/{platformUserId}'
|
|
22103
22100
|
.replace('{namespace}', this.namespace)
|
|
@@ -22114,7 +22111,7 @@ class Users$ {
|
|
|
22114
22111
|
/**
|
|
22115
22112
|
* This endpoint is used to get linking status.
|
|
22116
22113
|
*/
|
|
22117
|
-
|
|
22114
|
+
fetchV3NsRequestsByRequestidAsyncStatus(requestId) {
|
|
22118
22115
|
const params = {};
|
|
22119
22116
|
const url = '/iam/v3/public/namespaces/{namespace}/requests/{requestId}/async/status'
|
|
22120
22117
|
.replace('{namespace}', this.namespace)
|
|
@@ -22133,7 +22130,7 @@ class Users$ {
|
|
|
22133
22130
|
* The query length should greater than 1,otherwise will not query the database. The default limit value is 100</p>
|
|
22134
22131
|
* <br>action code : 10132
|
|
22135
22132
|
*/
|
|
22136
|
-
|
|
22133
|
+
fetchV3NsUsers(queryParams) {
|
|
22137
22134
|
const params = { ...queryParams };
|
|
22138
22135
|
const url = '/iam/v3/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
22139
22136
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22154,7 +22151,7 @@ class Users$ {
|
|
|
22154
22151
|
* <p>Date of Birth format : YYYY-MM-DD, e.g. 2019-04-29.</p>
|
|
22155
22152
|
* <p>This endpoint support accepting agreements for the created user. Supply the accepted agreements in acceptedPolicies attribute.</p>
|
|
22156
22153
|
*/
|
|
22157
|
-
|
|
22154
|
+
postV3NsUsers(data) {
|
|
22158
22155
|
const params = {};
|
|
22159
22156
|
const url = '/iam/v3/public/namespaces/{namespace}/users'.replace('{namespace}', this.namespace);
|
|
22160
22157
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22173,7 +22170,7 @@ class Users$ {
|
|
|
22173
22170
|
* - Account Not Available : 204 (no content)
|
|
22174
22171
|
*
|
|
22175
22172
|
*/
|
|
22176
|
-
|
|
22173
|
+
fetchV3NsUsersAvailability(queryParams) {
|
|
22177
22174
|
const params = { ...queryParams };
|
|
22178
22175
|
const url = '/iam/v3/public/namespaces/{namespace}/users/availability'.replace('{namespace}', this.namespace);
|
|
22179
22176
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22193,7 +22190,7 @@ class Users$ {
|
|
|
22193
22190
|
* </ul>
|
|
22194
22191
|
*
|
|
22195
22192
|
*/
|
|
22196
|
-
|
|
22193
|
+
postV3NsUsersBulkBasic(data) {
|
|
22197
22194
|
const params = {};
|
|
22198
22195
|
const url = '/iam/v3/public/namespaces/{namespace}/users/bulk/basic'.replace('{namespace}', this.namespace);
|
|
22199
22196
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22208,7 +22205,7 @@ class Users$ {
|
|
|
22208
22205
|
* This code can be verified by this <a href="#operations-Users-PublicVerifyRegistrationCode">endpoint</a>.
|
|
22209
22206
|
*
|
|
22210
22207
|
*/
|
|
22211
|
-
|
|
22208
|
+
postV3NsUsersCodeRequest(data) {
|
|
22212
22209
|
const params = {};
|
|
22213
22210
|
const url = '/iam/v3/public/namespaces/{namespace}/users/code/request'.replace('{namespace}', this.namespace);
|
|
22214
22211
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22218,7 +22215,7 @@ class Users$ {
|
|
|
22218
22215
|
* <p>Verify the registration code</p>
|
|
22219
22216
|
*
|
|
22220
22217
|
*/
|
|
22221
|
-
|
|
22218
|
+
postV3NsUsersCodeVerify(data) {
|
|
22222
22219
|
const params = {};
|
|
22223
22220
|
const url = '/iam/v3/public/namespaces/{namespace}/users/code/verify'.replace('{namespace}', this.namespace);
|
|
22224
22221
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22232,7 +22229,7 @@ class Users$ {
|
|
|
22232
22229
|
* <p>action code : 10104 </p>
|
|
22233
22230
|
*
|
|
22234
22231
|
*/
|
|
22235
|
-
|
|
22232
|
+
postV3NsUsersForgot(data) {
|
|
22236
22233
|
const params = {};
|
|
22237
22234
|
const url = '/iam/v3/public/namespaces/{namespace}/users/forgot'.replace('{namespace}', this.namespace);
|
|
22238
22235
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22242,7 +22239,7 @@ class Users$ {
|
|
|
22242
22239
|
* Endpoint to validate user invitation. When not found, it could also means the invitation has expired.
|
|
22243
22240
|
*
|
|
22244
22241
|
*/
|
|
22245
|
-
|
|
22242
|
+
fetchV3NsUsersInviteByInvitationid(invitationId) {
|
|
22246
22243
|
const params = {};
|
|
22247
22244
|
const url = '/iam/v3/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
22248
22245
|
.replace('{namespace}', this.namespace)
|
|
@@ -22267,7 +22264,7 @@ class Users$ {
|
|
|
22267
22264
|
* Date of Birth format : YYYY-MM-DD, e.g. 2019-04-29.
|
|
22268
22265
|
*
|
|
22269
22266
|
*/
|
|
22270
|
-
|
|
22267
|
+
postV3NsUsersInviteByInvitationid(invitationId, data) {
|
|
22271
22268
|
const params = {};
|
|
22272
22269
|
const url = '/iam/v3/public/namespaces/{namespace}/users/invite/{invitationId}'
|
|
22273
22270
|
.replace('{namespace}', this.namespace)
|
|
@@ -22290,7 +22287,7 @@ class Users$ {
|
|
|
22290
22287
|
* <br>If the client support PATCH method, use [PATCH] /iam/v3/public/namespaces/{namespace}/users/me instead</p><br>
|
|
22291
22288
|
* <p>action code : 10103 </p>
|
|
22292
22289
|
*/
|
|
22293
|
-
|
|
22290
|
+
putV3NsUsersMe(data) {
|
|
22294
22291
|
const params = {};
|
|
22295
22292
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
22296
22293
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -22308,7 +22305,7 @@ class Users$ {
|
|
|
22308
22305
|
* <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>
|
|
22309
22306
|
* <p>action code : 10103 </p>
|
|
22310
22307
|
*/
|
|
22311
|
-
|
|
22308
|
+
patchV3NsUsersMe(data) {
|
|
22312
22309
|
const params = {};
|
|
22313
22310
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me'.replace('{namespace}', this.namespace);
|
|
22314
22311
|
const resultPromise = this.axiosInstance.patch(url, data, { params });
|
|
@@ -22336,7 +22333,7 @@ class Users$ {
|
|
|
22336
22333
|
* <p>action code: 10116</p>
|
|
22337
22334
|
*
|
|
22338
22335
|
*/
|
|
22339
|
-
|
|
22336
|
+
postV3NsUsersMeCodeRequest(data) {
|
|
22340
22337
|
const params = {};
|
|
22341
22338
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/code/request'.replace('{namespace}', this.namespace);
|
|
22342
22339
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22350,7 +22347,7 @@ class Users$ {
|
|
|
22350
22347
|
* <p>action code: 10107</p>
|
|
22351
22348
|
*
|
|
22352
22349
|
*/
|
|
22353
|
-
|
|
22350
|
+
postV3NsUsersMeCodeVerify(data) {
|
|
22354
22351
|
const params = {};
|
|
22355
22352
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/code/verify'.replace('{namespace}', this.namespace);
|
|
22356
22353
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22372,7 +22369,7 @@ class Users$ {
|
|
|
22372
22369
|
* </ul>
|
|
22373
22370
|
* <br>action code : 10124</p>
|
|
22374
22371
|
*/
|
|
22375
|
-
|
|
22372
|
+
postV3NsUsersMeHeadlessCodeVerify(data) {
|
|
22376
22373
|
const params = {};
|
|
22377
22374
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/headless/code/verify'.replace('{namespace}', this.namespace);
|
|
22378
22375
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22381,7 +22378,7 @@ class Users$ {
|
|
|
22381
22378
|
/**
|
|
22382
22379
|
* <p>Require valid user authorization<br>action code : 10124 </p>
|
|
22383
22380
|
*/
|
|
22384
|
-
|
|
22381
|
+
postV3NsUsersMeHeadlessVerify(data) {
|
|
22385
22382
|
const params = {};
|
|
22386
22383
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/headless/verify'.replace('{namespace}', this.namespace);
|
|
22387
22384
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22390,7 +22387,7 @@ class Users$ {
|
|
|
22390
22387
|
/**
|
|
22391
22388
|
* Required valid user authorization. <br> action code: 10107
|
|
22392
22389
|
*/
|
|
22393
|
-
|
|
22390
|
+
putV3NsUsersMePassword(data) {
|
|
22394
22391
|
const params = {};
|
|
22395
22392
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/password'.replace('{namespace}', this.namespace);
|
|
22396
22393
|
const resultPromise = this.axiosInstance.put(url, data, { params });
|
|
@@ -22400,7 +22397,7 @@ class Users$ {
|
|
|
22400
22397
|
* Create Justice User from Publisher User information. It will check first if Justice User on target namespace already exist.
|
|
22401
22398
|
*
|
|
22402
22399
|
*/
|
|
22403
|
-
|
|
22400
|
+
postV3NsUsersMePlatformsJusticeByTargetnamespace(targetNamespace) {
|
|
22404
22401
|
const params = {};
|
|
22405
22402
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/justice/{targetNamespace}'
|
|
22406
22403
|
.replace('{namespace}', this.namespace)
|
|
@@ -22433,7 +22430,7 @@ class Users$ {
|
|
|
22433
22430
|
* </ul>
|
|
22434
22431
|
* <br>action code : 10144
|
|
22435
22432
|
*/
|
|
22436
|
-
|
|
22433
|
+
postV3NsUsersMePlatformsByPlatformid(platformId, data) {
|
|
22437
22434
|
const params = {};
|
|
22438
22435
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}'
|
|
22439
22436
|
.replace('{namespace}', this.namespace)
|
|
@@ -22472,7 +22469,7 @@ class Users$ {
|
|
|
22472
22469
|
* <br>
|
|
22473
22470
|
* <br>action code : 10121 </p>
|
|
22474
22471
|
*/
|
|
22475
|
-
|
|
22472
|
+
deleteV3NsUsersMePlatformsByPlatformid(platformId, data) {
|
|
22476
22473
|
const params = {};
|
|
22477
22474
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}'
|
|
22478
22475
|
.replace('{namespace}', this.namespace)
|
|
@@ -22484,7 +22481,7 @@ class Users$ {
|
|
|
22484
22481
|
* Required valid user authorization.
|
|
22485
22482
|
* <p>Unlink user's account from for all third platforms. </p>
|
|
22486
22483
|
*/
|
|
22487
|
-
|
|
22484
|
+
deleteV3NsUsersMePlatformsByPlatformidAll(platformId) {
|
|
22488
22485
|
const params = {};
|
|
22489
22486
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/all'
|
|
22490
22487
|
.replace('{namespace}', this.namespace)
|
|
@@ -22522,7 +22519,7 @@ class Users$ {
|
|
|
22522
22519
|
* </ul>
|
|
22523
22520
|
*
|
|
22524
22521
|
*/
|
|
22525
|
-
|
|
22522
|
+
postV3NsUsersMePlatformsByPlatformidForce(platformId, data) {
|
|
22526
22523
|
const params = {};
|
|
22527
22524
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/force'
|
|
22528
22525
|
.replace('{namespace}', this.namespace)
|
|
@@ -22536,7 +22533,7 @@ class Users$ {
|
|
|
22536
22533
|
/**
|
|
22537
22534
|
* This endpoint is used to generate third party login page which will redirected to establish endpoint.
|
|
22538
22535
|
*/
|
|
22539
|
-
|
|
22536
|
+
fetchV3NsUsersMePlatformsByPlatformidWebLink(platformId, queryParams) {
|
|
22540
22537
|
const params = { ...queryParams };
|
|
22541
22538
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link'
|
|
22542
22539
|
.replace('{namespace}', this.namespace)
|
|
@@ -22552,7 +22549,7 @@ class Users$ {
|
|
|
22552
22549
|
/**
|
|
22553
22550
|
* This endpoint is used by third party to redirect the code for the purpose of linking the account third party to IAM account.
|
|
22554
22551
|
*/
|
|
22555
|
-
|
|
22552
|
+
fetchV3NsUsersMePlatformsByPlatformidWebLinkEstablish(platformId, queryParams) {
|
|
22556
22553
|
const params = { ...queryParams };
|
|
22557
22554
|
const url = '/iam/v3/public/namespaces/{namespace}/users/me/platforms/{platformId}/web/link/establish'
|
|
22558
22555
|
.replace('{namespace}', this.namespace)
|
|
@@ -22568,7 +22565,7 @@ class Users$ {
|
|
|
22568
22565
|
/**
|
|
22569
22566
|
* <p>action code: 10105</p>
|
|
22570
22567
|
*/
|
|
22571
|
-
|
|
22568
|
+
postV3NsUsersReset(data) {
|
|
22572
22569
|
const params = {};
|
|
22573
22570
|
const url = '/iam/v3/public/namespaces/{namespace}/users/reset'.replace('{namespace}', this.namespace);
|
|
22574
22571
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -22577,7 +22574,7 @@ class Users$ {
|
|
|
22577
22574
|
/**
|
|
22578
22575
|
* <p>This endpoint retrieve user attributes. action code: 10129</p>
|
|
22579
22576
|
*/
|
|
22580
|
-
|
|
22577
|
+
fetchV3NsUsersByUserid(userId) {
|
|
22581
22578
|
const params = {};
|
|
22582
22579
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}'.replace('{namespace}', this.namespace).replace('{userId}', userId);
|
|
22583
22580
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -22597,7 +22594,7 @@ class Users$ {
|
|
|
22597
22594
|
* </ul>
|
|
22598
22595
|
*
|
|
22599
22596
|
*/
|
|
22600
|
-
|
|
22597
|
+
fetchV3NsUsersByUseridBans(userId, queryParams) {
|
|
22601
22598
|
const params = { ...queryParams };
|
|
22602
22599
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/bans'
|
|
22603
22600
|
.replace('{namespace}', this.namespace)
|
|
@@ -22615,7 +22612,7 @@ class Users$ {
|
|
|
22615
22612
|
* <br>It will query all linked platform accounts and result will be distinct & grouped, same platform we will pick oldest linked one.
|
|
22616
22613
|
* <br>Required valid user authorization.</p>
|
|
22617
22614
|
*/
|
|
22618
|
-
|
|
22615
|
+
fetchV3NsUsersByUseridDistinctPlatforms(userId) {
|
|
22619
22616
|
const params = {};
|
|
22620
22617
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/distinctPlatforms'
|
|
22621
22618
|
.replace('{namespace}', this.namespace)
|
|
@@ -22632,7 +22629,7 @@ class Users$ {
|
|
|
22632
22629
|
* <p>This endpoint retrieves user info and linked platform accounts.
|
|
22633
22630
|
* Required permissions 'NAMESPACE:{namespace}:INFORMATION:USER:{userId} [READ]'</p>
|
|
22634
22631
|
*/
|
|
22635
|
-
|
|
22632
|
+
fetchV3NsUsersByUseridInformation(userId) {
|
|
22636
22633
|
const params = {};
|
|
22637
22634
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/information'
|
|
22638
22635
|
.replace('{namespace}', this.namespace)
|
|
@@ -22648,7 +22645,7 @@ class Users$ {
|
|
|
22648
22645
|
/**
|
|
22649
22646
|
* 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>
|
|
22650
22647
|
*/
|
|
22651
|
-
|
|
22648
|
+
fetchV3NsUsersByUseridLoginsHistories(userId, queryParams) {
|
|
22652
22649
|
const params = { ...queryParams };
|
|
22653
22650
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/logins/histories'
|
|
22654
22651
|
.replace('{namespace}', this.namespace)
|
|
@@ -22665,7 +22662,7 @@ class Users$ {
|
|
|
22665
22662
|
* <p>This endpoint retrieves platform accounts linked to user. Required valid user authorization.
|
|
22666
22663
|
* <br>action code: 10128 </p>
|
|
22667
22664
|
*/
|
|
22668
|
-
|
|
22665
|
+
fetchV3NsUsersByUseridPlatforms(userId, queryParams) {
|
|
22669
22666
|
const params = { ...queryParams };
|
|
22670
22667
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms'
|
|
22671
22668
|
.replace('{namespace}', this.namespace)
|
|
@@ -22682,7 +22679,7 @@ class Users$ {
|
|
|
22682
22679
|
* This endpoint gets list justice platform account by providing publisher namespace and publisher userID</br>
|
|
22683
22680
|
* <p>Requires valid user access token </p></br>
|
|
22684
22681
|
*/
|
|
22685
|
-
|
|
22682
|
+
fetchV3NsUsersByUseridPlatformsJustice(userId) {
|
|
22686
22683
|
const params = {};
|
|
22687
22684
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/justice'
|
|
22688
22685
|
.replace('{namespace}', this.namespace)
|
|
@@ -22702,7 +22699,7 @@ class Users$ {
|
|
|
22702
22699
|
* transferred. If the data is tight to game user ID, the user will have the game progression data.
|
|
22703
22700
|
*
|
|
22704
22701
|
*/
|
|
22705
|
-
|
|
22702
|
+
postV3NsUsersByUseridPlatformsLink(userId, data) {
|
|
22706
22703
|
const params = {};
|
|
22707
22704
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/link'
|
|
22708
22705
|
.replace('{namespace}', this.namespace)
|
|
@@ -22716,7 +22713,7 @@ class Users$ {
|
|
|
22716
22713
|
* This endpoint need the same requestID which also used in <a href="#operations-Users-PublicGetAsyncStatus">Get link status</a>.
|
|
22717
22714
|
*
|
|
22718
22715
|
*/
|
|
22719
|
-
|
|
22716
|
+
postV3NsUsersByUseridPlatformsLinkWithProgression(userId, data) {
|
|
22720
22717
|
const params = {};
|
|
22721
22718
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/platforms/linkWithProgression'
|
|
22722
22719
|
.replace('{namespace}', this.namespace)
|
|
@@ -22729,7 +22726,7 @@ class Users$ {
|
|
|
22729
22726
|
* <p><strong>Restriction:</strong>
|
|
22730
22727
|
* Path Parameter <strong>namespace</strong> can be provided only with game namespace</p>
|
|
22731
22728
|
*/
|
|
22732
|
-
|
|
22729
|
+
fetchV3NsUsersByUseridPublisher(userId) {
|
|
22733
22730
|
const params = {};
|
|
22734
22731
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/publisher'
|
|
22735
22732
|
.replace('{namespace}', this.namespace)
|
|
@@ -22750,7 +22747,7 @@ class Users$ {
|
|
|
22750
22747
|
* </ul>
|
|
22751
22748
|
*
|
|
22752
22749
|
*/
|
|
22753
|
-
|
|
22750
|
+
postV3NsUsersByUseridValidate(userId, data) {
|
|
22754
22751
|
const params = {};
|
|
22755
22752
|
const url = '/iam/v3/public/namespaces/{namespace}/users/{userId}/validate'
|
|
22756
22753
|
.replace('{namespace}', this.namespace)
|
|
@@ -22779,6 +22776,9 @@ class Users$ {
|
|
|
22779
22776
|
* Note:<br>
|
|
22780
22777
|
* 1. My account should be full account
|
|
22781
22778
|
* 2. My account not linked to request headless account's third platform.
|
|
22779
|
+
*
|
|
22780
|
+
* After client resolving the conflict, it will call endpoint <b>/iam/v3/public/users/me/headless/linkWithProgression [POST]</p>
|
|
22781
|
+
*
|
|
22782
22782
|
*/
|
|
22783
22783
|
fetchIamV3PublicUsersMeHeadlessLinkConflict(queryParams) {
|
|
22784
22784
|
const params = { ...queryParams };
|
|
@@ -22854,19 +22854,19 @@ class UserApi {
|
|
|
22854
22854
|
* update current user
|
|
22855
22855
|
*/
|
|
22856
22856
|
this.updateUserMe = (data) => {
|
|
22857
|
-
return this.newInstance().
|
|
22857
|
+
return this.newInstance().patchV3NsUsersMe(data);
|
|
22858
22858
|
};
|
|
22859
22859
|
/**
|
|
22860
22860
|
* update current user's email
|
|
22861
22861
|
*/
|
|
22862
22862
|
this.updateEmailMe = (data) => {
|
|
22863
|
-
return this.newInstance4().
|
|
22863
|
+
return this.newInstance4().putV4NsUsersMeEmail(data);
|
|
22864
22864
|
};
|
|
22865
22865
|
/**
|
|
22866
22866
|
* update current user's password
|
|
22867
22867
|
*/
|
|
22868
22868
|
this.updatePasswordMe = (data) => {
|
|
22869
|
-
return this.newInstance().
|
|
22869
|
+
return this.newInstance().putV3NsUsersMePassword(data);
|
|
22870
22870
|
};
|
|
22871
22871
|
/**
|
|
22872
22872
|
* Required valid user authorization
|
|
@@ -22891,7 +22891,7 @@ class UserApi {
|
|
|
22891
22891
|
*
|
|
22892
22892
|
*/
|
|
22893
22893
|
this.requestVerificationCode = (data) => {
|
|
22894
|
-
return this.newInstance().
|
|
22894
|
+
return this.newInstance().postV3NsUsersMeCodeRequest(data);
|
|
22895
22895
|
};
|
|
22896
22896
|
/**
|
|
22897
22897
|
* <p>Will consume code if validateOnly is set false</p>
|
|
@@ -22902,7 +22902,7 @@ class UserApi {
|
|
|
22902
22902
|
*
|
|
22903
22903
|
*/
|
|
22904
22904
|
this.verifyCode = (data) => {
|
|
22905
|
-
return this.newInstance().
|
|
22905
|
+
return this.newInstance().postV3NsUsersMeCodeVerify(data);
|
|
22906
22906
|
};
|
|
22907
22907
|
/**
|
|
22908
22908
|
* <p>If validateOnly is set false, consume code and upgrade headless account and automatically verified the email address if it is succeeded</p>
|
|
@@ -22921,7 +22921,7 @@ class UserApi {
|
|
|
22921
22921
|
* <br>action code : 10124</p>
|
|
22922
22922
|
*/
|
|
22923
22923
|
this.upgradeHeadlessAccount = (data) => {
|
|
22924
|
-
return this.newInstance().
|
|
22924
|
+
return this.newInstance().postV3NsUsersMeHeadlessCodeVerify(data);
|
|
22925
22925
|
};
|
|
22926
22926
|
/**
|
|
22927
22927
|
* Require valid user access token.
|
|
@@ -22941,14 +22941,14 @@ class UserApi {
|
|
|
22941
22941
|
* action code : 10124
|
|
22942
22942
|
*/
|
|
22943
22943
|
this.upgradeHeadlessAccountV4 = (data) => {
|
|
22944
|
-
return this.newInstance4().
|
|
22944
|
+
return this.newInstance4().postV4NsUsersMeHeadlessCodeVerify(data);
|
|
22945
22945
|
};
|
|
22946
22946
|
/**
|
|
22947
22947
|
* <p>This method retrieves platform accounts linked to user. Required valid user authorization.
|
|
22948
22948
|
* <br>action code: 10128 </p>
|
|
22949
22949
|
*/
|
|
22950
22950
|
this.getUserLinkedPlatform = (userId) => {
|
|
22951
|
-
return this.newInstance().
|
|
22951
|
+
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
22952
22952
|
};
|
|
22953
22953
|
/**
|
|
22954
22954
|
* Required valid user authorization.
|
|
@@ -22977,13 +22977,13 @@ class UserApi {
|
|
|
22977
22977
|
* <br>action code : 10144
|
|
22978
22978
|
*/
|
|
22979
22979
|
this.linkAccountToPlatform = ({ platformId, data }) => {
|
|
22980
|
-
return this.newInstance().
|
|
22980
|
+
return this.newInstance().postV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
22981
22981
|
};
|
|
22982
22982
|
/**
|
|
22983
22983
|
* Get the linking status between a third-party platform to a user
|
|
22984
22984
|
*/
|
|
22985
22985
|
this.getLinkRequestStatus = (requestId) => {
|
|
22986
|
-
return this.newInstance().
|
|
22986
|
+
return this.newInstance().fetchV3NsRequestsByRequestidAsyncStatus(requestId);
|
|
22987
22987
|
};
|
|
22988
22988
|
/**
|
|
22989
22989
|
* It is going to be <strong>DEPRECATED</strong>.
|
|
@@ -22993,7 +22993,7 @@ class UserApi {
|
|
|
22993
22993
|
*
|
|
22994
22994
|
*/
|
|
22995
22995
|
this.linkPlatformToUserAccount = ({ userId, data }) => {
|
|
22996
|
-
return this.newInstance().
|
|
22996
|
+
return this.newInstance().postV3NsUsersByUseridPlatformsLink(userId, data);
|
|
22997
22997
|
};
|
|
22998
22998
|
/**
|
|
22999
22999
|
* Required valid user authorization.
|
|
@@ -23025,19 +23025,19 @@ class UserApi {
|
|
|
23025
23025
|
* <br>action code : 10121 </p>
|
|
23026
23026
|
*/
|
|
23027
23027
|
this.unLinkAccountFromPlatform = ({ platformId, data }) => {
|
|
23028
|
-
return this.newInstance().
|
|
23028
|
+
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformid(platformId, data);
|
|
23029
23029
|
};
|
|
23030
23030
|
/**
|
|
23031
23031
|
* This method is used to generate third party login page which will redirected to establish method.
|
|
23032
23032
|
*/
|
|
23033
23033
|
this.getThirdPartyURL = ({ platformId, queryParams }) => {
|
|
23034
|
-
return this.newInstance().
|
|
23034
|
+
return this.newInstance().fetchV3NsUsersMePlatformsByPlatformidWebLink(platformId, queryParams);
|
|
23035
23035
|
};
|
|
23036
23036
|
/**
|
|
23037
23037
|
* Get age restriction by country code. It will always get by publisher namespace
|
|
23038
23038
|
*/
|
|
23039
23039
|
this.getAgeRestrictionByCountry = (countryCode) => {
|
|
23040
|
-
return this.newInstance().
|
|
23040
|
+
return this.newInstance().fetchV3NsAgerestrictionsCountriesByCountrycode(countryCode);
|
|
23041
23041
|
};
|
|
23042
23042
|
}
|
|
23043
23043
|
/**
|
|
@@ -23066,7 +23066,7 @@ class UserApi {
|
|
|
23066
23066
|
*
|
|
23067
23067
|
*/
|
|
23068
23068
|
requestNewUserVerificationCode(data) {
|
|
23069
|
-
return this.newInstance().
|
|
23069
|
+
return this.newInstance().postV3NsUsersCodeRequest(data);
|
|
23070
23070
|
}
|
|
23071
23071
|
/**
|
|
23072
23072
|
* Create a new user with unique email address and username.
|
|
@@ -23086,7 +23086,7 @@ class UserApi {
|
|
|
23086
23086
|
*
|
|
23087
23087
|
*/
|
|
23088
23088
|
createUser(data) {
|
|
23089
|
-
return this.newInstance4().
|
|
23089
|
+
return this.newInstance4().postV4NsUsers(data);
|
|
23090
23090
|
}
|
|
23091
23091
|
/**
|
|
23092
23092
|
* <p>This method retrieves platform accounts linked to user.
|
|
@@ -23094,14 +23094,14 @@ class UserApi {
|
|
|
23094
23094
|
* <br>Required valid user authorization.</p>
|
|
23095
23095
|
*/
|
|
23096
23096
|
getUserDistinctLinkedPlatform(userId) {
|
|
23097
|
-
return this.newInstance().
|
|
23097
|
+
return this.newInstance().fetchV3NsUsersByUseridDistinctPlatforms(userId);
|
|
23098
23098
|
}
|
|
23099
23099
|
/**
|
|
23100
23100
|
* Required valid user authorization.
|
|
23101
23101
|
* <p>Unlink user's account from for all third platforms. </p>
|
|
23102
23102
|
*/
|
|
23103
23103
|
unLinkAccountFromPlatformDistinct(platformId) {
|
|
23104
|
-
return this.newInstance().
|
|
23104
|
+
return this.newInstance().deleteV3NsUsersMePlatformsByPlatformidAll(platformId);
|
|
23105
23105
|
}
|
|
23106
23106
|
/**
|
|
23107
23107
|
* Required valid user authorization
|
|
@@ -23117,7 +23117,7 @@ class UserApi {
|
|
|
23117
23117
|
* <br>action code: 10128 </p>
|
|
23118
23118
|
*/
|
|
23119
23119
|
getLinkedAccount(userId) {
|
|
23120
|
-
return this.newInstance().
|
|
23120
|
+
return this.newInstance().fetchV3NsUsersByUseridPlatforms(userId);
|
|
23121
23121
|
}
|
|
23122
23122
|
/**
|
|
23123
23123
|
* Note:<br>
|
|
@@ -23697,7 +23697,7 @@ class Templates$ {
|
|
|
23697
23697
|
this.namespace = namespace;
|
|
23698
23698
|
this.cache = cache;
|
|
23699
23699
|
}
|
|
23700
|
-
|
|
23700
|
+
fetchV1NsTemplatesByTemplateConfigs(template) {
|
|
23701
23701
|
const params = {};
|
|
23702
23702
|
const url = '/odin-config/v1/public/namespaces/{namespace}/templates/{template}/configs'
|
|
23703
23703
|
.replace('{namespace}', this.namespace)
|
|
@@ -23710,7 +23710,7 @@ class Templates$ {
|
|
|
23710
23710
|
const cacheKey = url + CodeGenUtil.hashCode(JSON.stringify({ params }));
|
|
23711
23711
|
return SdkCache.withCache(cacheKey, res);
|
|
23712
23712
|
}
|
|
23713
|
-
|
|
23713
|
+
fetchV1NsTemplatesByTemplateConfigsByConfig(template, config) {
|
|
23714
23714
|
const params = {};
|
|
23715
23715
|
const url = '/odin-config/v1/public/namespaces/{namespace}/templates/{template}/configs/{config}'
|
|
23716
23716
|
.replace('{namespace}', this.namespace)
|
|
@@ -23735,13 +23735,13 @@ class PublicTemplateApi {
|
|
|
23735
23735
|
this.namespace = namespace;
|
|
23736
23736
|
this.cache = cache;
|
|
23737
23737
|
this.getTemplateConfigs = (template) => {
|
|
23738
|
-
return this.newInstance().
|
|
23738
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigs(template);
|
|
23739
23739
|
};
|
|
23740
23740
|
this.getTemplateConfig = (template, configId) => {
|
|
23741
|
-
return this.newInstance().
|
|
23741
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigsByConfig(template, configId);
|
|
23742
23742
|
};
|
|
23743
23743
|
this.getDiscoveryTemplateConfigs = () => {
|
|
23744
|
-
return this.newInstance().
|
|
23744
|
+
return this.newInstance().fetchV1NsTemplatesByTemplateConfigs(DISCOVERY_TEMPLATE_NAME);
|
|
23745
23745
|
};
|
|
23746
23746
|
}
|
|
23747
23747
|
newInstance() {
|
|
@@ -23787,7 +23787,7 @@ class Currency$ {
|
|
|
23787
23787
|
/**
|
|
23788
23788
|
* List currencies of a namespace.<br>Other detail info: <ul><li><i>Returns</i>: Currency List</li></ul>
|
|
23789
23789
|
*/
|
|
23790
|
-
|
|
23790
|
+
fetchNsCurrencies(queryParams) {
|
|
23791
23791
|
const params = { ...queryParams };
|
|
23792
23792
|
const url = '/platform/public/namespaces/{namespace}/currencies'.replace('{namespace}', this.namespace);
|
|
23793
23793
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -23812,7 +23812,7 @@ class CurrencyApi {
|
|
|
23812
23812
|
* List currencies of a namespace.<br>Other detail info: <ul><li><i>Returns</i>: Currency List</li></ul>
|
|
23813
23813
|
*/
|
|
23814
23814
|
this.getCurrencies = () => {
|
|
23815
|
-
return this.newInstance().
|
|
23815
|
+
return this.newInstance().fetchNsCurrencies();
|
|
23816
23816
|
};
|
|
23817
23817
|
/**
|
|
23818
23818
|
* Get the currencies list and convert into a map of currency code and the currency itself
|
|
@@ -24133,7 +24133,7 @@ class Entitlement$ {
|
|
|
24133
24133
|
/**
|
|
24134
24134
|
* 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>
|
|
24135
24135
|
*/
|
|
24136
|
-
|
|
24136
|
+
fetchNsUsersMeEntitlementsOwnershipByAppId(queryParams) {
|
|
24137
24137
|
const params = { ...queryParams };
|
|
24138
24138
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/byAppId'.replace('{namespace}', this.namespace);
|
|
24139
24139
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -24147,7 +24147,7 @@ class Entitlement$ {
|
|
|
24147
24147
|
/**
|
|
24148
24148
|
* 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>
|
|
24149
24149
|
*/
|
|
24150
|
-
|
|
24150
|
+
fetchNsUsersMeEntitlementsOwnershipAny(queryParams) {
|
|
24151
24151
|
const params = { ...queryParams };
|
|
24152
24152
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/any'.replace('{namespace}', this.namespace);
|
|
24153
24153
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -24161,7 +24161,7 @@ class Entitlement$ {
|
|
|
24161
24161
|
/**
|
|
24162
24162
|
* 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>
|
|
24163
24163
|
*/
|
|
24164
|
-
|
|
24164
|
+
fetchNsUsersMeEntitlementsOwnershipBySku(queryParams) {
|
|
24165
24165
|
const params = { ...queryParams };
|
|
24166
24166
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/bySku'.replace('{namespace}', this.namespace);
|
|
24167
24167
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -24175,7 +24175,7 @@ class Entitlement$ {
|
|
|
24175
24175
|
/**
|
|
24176
24176
|
* 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>
|
|
24177
24177
|
*/
|
|
24178
|
-
|
|
24178
|
+
fetchNsUsersMeEntitlementsOwnershipByItemId(queryParams) {
|
|
24179
24179
|
const params = { ...queryParams };
|
|
24180
24180
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownership/byItemId'.replace('{namespace}', this.namespace);
|
|
24181
24181
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -24218,7 +24218,7 @@ class Entitlement$ {
|
|
|
24218
24218
|
* }
|
|
24219
24219
|
* </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>
|
|
24220
24220
|
*/
|
|
24221
|
-
|
|
24221
|
+
fetchNsUsersMeEntitlementsOwnershipToken(queryParams) {
|
|
24222
24222
|
const params = { ...queryParams };
|
|
24223
24223
|
const url = '/platform/public/namespaces/{namespace}/users/me/entitlements/ownershipToken'.replace('{namespace}', this.namespace);
|
|
24224
24224
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -24232,7 +24232,7 @@ class Entitlement$ {
|
|
|
24232
24232
|
/**
|
|
24233
24233
|
* 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>
|
|
24234
24234
|
*/
|
|
24235
|
-
|
|
24235
|
+
fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams) {
|
|
24236
24236
|
const params = { ...queryParams };
|
|
24237
24237
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/any'
|
|
24238
24238
|
.replace('{namespace}', this.namespace)
|
|
@@ -24248,7 +24248,7 @@ class Entitlement$ {
|
|
|
24248
24248
|
/**
|
|
24249
24249
|
* 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>
|
|
24250
24250
|
*/
|
|
24251
|
-
|
|
24251
|
+
fetchNsUsersByUseridEntitlementsOwnershipByItemId(userId, queryParams) {
|
|
24252
24252
|
const params = { ...queryParams };
|
|
24253
24253
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byItemId'
|
|
24254
24254
|
.replace('{namespace}', this.namespace)
|
|
@@ -24264,7 +24264,7 @@ class Entitlement$ {
|
|
|
24264
24264
|
/**
|
|
24265
24265
|
* 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>
|
|
24266
24266
|
*/
|
|
24267
|
-
|
|
24267
|
+
fetchNsUsersByUseridEntitlementsByAppId(userId, queryParams) {
|
|
24268
24268
|
const params = { ...queryParams };
|
|
24269
24269
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppId'
|
|
24270
24270
|
.replace('{namespace}', this.namespace)
|
|
@@ -24280,7 +24280,7 @@ class Entitlement$ {
|
|
|
24280
24280
|
/**
|
|
24281
24281
|
* 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>
|
|
24282
24282
|
*/
|
|
24283
|
-
|
|
24283
|
+
fetchNsUsersByUseridEntitlementsOwnershipBySku(userId, queryParams) {
|
|
24284
24284
|
const params = { ...queryParams };
|
|
24285
24285
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/bySku'
|
|
24286
24286
|
.replace('{namespace}', this.namespace)
|
|
@@ -24296,7 +24296,7 @@ class Entitlement$ {
|
|
|
24296
24296
|
/**
|
|
24297
24297
|
* 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>
|
|
24298
24298
|
*/
|
|
24299
|
-
|
|
24299
|
+
fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams) {
|
|
24300
24300
|
const params = { ...queryParams };
|
|
24301
24301
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byItemIds'
|
|
24302
24302
|
.replace('{namespace}', this.namespace)
|
|
@@ -24312,7 +24312,7 @@ class Entitlement$ {
|
|
|
24312
24312
|
/**
|
|
24313
24313
|
* 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>
|
|
24314
24314
|
*/
|
|
24315
|
-
|
|
24315
|
+
fetchNsUsersByUseridEntitlements(userId, queryParams) {
|
|
24316
24316
|
const params = { limit: 20, ...queryParams };
|
|
24317
24317
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements'
|
|
24318
24318
|
.replace('{namespace}', this.namespace)
|
|
@@ -24328,7 +24328,7 @@ class Entitlement$ {
|
|
|
24328
24328
|
/**
|
|
24329
24329
|
* 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>
|
|
24330
24330
|
*/
|
|
24331
|
-
|
|
24331
|
+
fetchNsUsersByUseridEntitlementsByItemId(userId, queryParams) {
|
|
24332
24332
|
const params = { ...queryParams };
|
|
24333
24333
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byItemId'
|
|
24334
24334
|
.replace('{namespace}', this.namespace)
|
|
@@ -24344,7 +24344,7 @@ class Entitlement$ {
|
|
|
24344
24344
|
/**
|
|
24345
24345
|
* 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>
|
|
24346
24346
|
*/
|
|
24347
|
-
|
|
24347
|
+
fetchNsUsersByUseridEntitlementsByEntitlementid(userId, entitlementId) {
|
|
24348
24348
|
const params = {};
|
|
24349
24349
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/{entitlementId}'
|
|
24350
24350
|
.replace('{namespace}', this.namespace)
|
|
@@ -24361,7 +24361,7 @@ class Entitlement$ {
|
|
|
24361
24361
|
/**
|
|
24362
24362
|
* 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>
|
|
24363
24363
|
*/
|
|
24364
|
-
|
|
24364
|
+
fetchNsUsersByUseridEntitlementsOwnershipByAppId(userId, queryParams) {
|
|
24365
24365
|
const params = { ...queryParams };
|
|
24366
24366
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/ownership/byAppId'
|
|
24367
24367
|
.replace('{namespace}', this.namespace)
|
|
@@ -24377,7 +24377,7 @@ class Entitlement$ {
|
|
|
24377
24377
|
/**
|
|
24378
24378
|
* 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>
|
|
24379
24379
|
*/
|
|
24380
|
-
|
|
24380
|
+
fetchNsUsersByUseridEntitlementsBySku(userId, queryParams) {
|
|
24381
24381
|
const params = { ...queryParams };
|
|
24382
24382
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/bySku'
|
|
24383
24383
|
.replace('{namespace}', this.namespace)
|
|
@@ -24393,7 +24393,7 @@ class Entitlement$ {
|
|
|
24393
24393
|
/**
|
|
24394
24394
|
* 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>
|
|
24395
24395
|
*/
|
|
24396
|
-
|
|
24396
|
+
fetchNsUsersByUseridEntitlementsByAppType(userId, queryParams) {
|
|
24397
24397
|
const params = { limit: 20, ...queryParams };
|
|
24398
24398
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/byAppType'
|
|
24399
24399
|
.replace('{namespace}', this.namespace)
|
|
@@ -24409,7 +24409,7 @@ class Entitlement$ {
|
|
|
24409
24409
|
/**
|
|
24410
24410
|
* 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>
|
|
24411
24411
|
*/
|
|
24412
|
-
|
|
24412
|
+
putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data) {
|
|
24413
24413
|
const params = {};
|
|
24414
24414
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/entitlements/{entitlementId}/decrement'
|
|
24415
24415
|
.replace('{namespace}', this.namespace)
|
|
@@ -24433,7 +24433,7 @@ class EntitlementApi {
|
|
|
24433
24433
|
* 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>
|
|
24434
24434
|
*/
|
|
24435
24435
|
getEntitlementByAppId({ userId, appId }) {
|
|
24436
|
-
return this.newInstance().
|
|
24436
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsByAppId(userId, {
|
|
24437
24437
|
appId
|
|
24438
24438
|
});
|
|
24439
24439
|
}
|
|
@@ -24441,25 +24441,25 @@ class EntitlementApi {
|
|
|
24441
24441
|
* 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>
|
|
24442
24442
|
*/
|
|
24443
24443
|
getEntitlements({ userId, queryParams }) {
|
|
24444
|
-
return this.newInstance().
|
|
24444
|
+
return this.newInstance().fetchNsUsersByUseridEntitlements(userId, queryParams);
|
|
24445
24445
|
}
|
|
24446
24446
|
/**
|
|
24447
24447
|
* 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>
|
|
24448
24448
|
*/
|
|
24449
24449
|
getEntitlementOwnerShip({ userId, queryParams }) {
|
|
24450
|
-
return this.newInstance().
|
|
24450
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipAny(userId, queryParams);
|
|
24451
24451
|
}
|
|
24452
24452
|
/**
|
|
24453
24453
|
* 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>
|
|
24454
24454
|
*/
|
|
24455
24455
|
getEntitlementByItemIds({ userId, queryParams }) {
|
|
24456
|
-
return this.newInstance().
|
|
24456
|
+
return this.newInstance().fetchNsUsersByUseridEntitlementsOwnershipByItemIds(userId, queryParams);
|
|
24457
24457
|
}
|
|
24458
24458
|
/**
|
|
24459
24459
|
* 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>
|
|
24460
24460
|
*/
|
|
24461
24461
|
claimEntitlement({ userId, entitlementId, data }) {
|
|
24462
|
-
return this.newInstance().
|
|
24462
|
+
return this.newInstance().putNsUsersByUseridEntitlementsByEntitlementidDecrement(userId, entitlementId, data);
|
|
24463
24463
|
}
|
|
24464
24464
|
newInstance() {
|
|
24465
24465
|
return new Entitlement$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -24540,7 +24540,7 @@ class Fulfillment$ {
|
|
|
24540
24540
|
/**
|
|
24541
24541
|
* 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>
|
|
24542
24542
|
*/
|
|
24543
|
-
|
|
24543
|
+
postNsUsersByUseridFulfillmentCode(userId, data) {
|
|
24544
24544
|
const params = {};
|
|
24545
24545
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/fulfillment/code'
|
|
24546
24546
|
.replace('{namespace}', this.namespace)
|
|
@@ -24562,7 +24562,7 @@ class FulfillmentApi {
|
|
|
24562
24562
|
* 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>
|
|
24563
24563
|
*/
|
|
24564
24564
|
this.redeemCode = ({ userId, data }) => {
|
|
24565
|
-
return this.newInstance().
|
|
24565
|
+
return this.newInstance().postNsUsersByUseridFulfillmentCode(userId, data);
|
|
24566
24566
|
};
|
|
24567
24567
|
}
|
|
24568
24568
|
newInstance() {
|
|
@@ -24686,7 +24686,7 @@ const Image = mod.object({
|
|
|
24686
24686
|
* This is licensed software from AccelByte Inc, for limitations
|
|
24687
24687
|
* and restrictions contact your company contract manager.
|
|
24688
24688
|
*/
|
|
24689
|
-
const
|
|
24689
|
+
const Predicate = mod.object({
|
|
24690
24690
|
name: mod.string().nullish(),
|
|
24691
24691
|
predicateType: mod.enum(['EntitlementPredicate', 'SeasonPassPredicate', 'SeasonTierPredicate']).nullish(),
|
|
24692
24692
|
comparison: mod
|
|
@@ -24702,7 +24702,7 @@ const PredicateObject = mod.object({
|
|
|
24702
24702
|
* This is licensed software from AccelByte Inc, for limitations
|
|
24703
24703
|
* and restrictions contact your company contract manager.
|
|
24704
24704
|
*/
|
|
24705
|
-
const ConditionGroup = mod.object({ predicates: mod.array(
|
|
24705
|
+
const ConditionGroup = mod.object({ predicates: mod.array(Predicate).nullish(), operator: mod.enum(['and', 'or']).nullish() });
|
|
24706
24706
|
|
|
24707
24707
|
/*
|
|
24708
24708
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
@@ -24978,7 +24978,7 @@ class Item$ {
|
|
|
24978
24978
|
/**
|
|
24979
24979
|
* 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>
|
|
24980
24980
|
*/
|
|
24981
|
-
|
|
24981
|
+
fetchNsItemsByItemidAppLocale(itemId, queryParams) {
|
|
24982
24982
|
const params = { ...queryParams };
|
|
24983
24983
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/app/locale'
|
|
24984
24984
|
.replace('{namespace}', this.namespace)
|
|
@@ -24994,7 +24994,7 @@ class Item$ {
|
|
|
24994
24994
|
/**
|
|
24995
24995
|
* 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>
|
|
24996
24996
|
*/
|
|
24997
|
-
|
|
24997
|
+
fetchNsItemsBySku(queryParams) {
|
|
24998
24998
|
const params = { ...queryParams };
|
|
24999
24999
|
const url = '/platform/public/namespaces/{namespace}/items/bySku'.replace('{namespace}', this.namespace);
|
|
25000
25000
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25008,7 +25008,7 @@ class Item$ {
|
|
|
25008
25008
|
/**
|
|
25009
25009
|
* 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>
|
|
25010
25010
|
*/
|
|
25011
|
-
|
|
25011
|
+
fetchNsItemsSearch(queryParams) {
|
|
25012
25012
|
const params = { limit: 20, ...queryParams };
|
|
25013
25013
|
const url = '/platform/public/namespaces/{namespace}/items/search'.replace('{namespace}', this.namespace);
|
|
25014
25014
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25022,7 +25022,7 @@ class Item$ {
|
|
|
25022
25022
|
/**
|
|
25023
25023
|
* 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>
|
|
25024
25024
|
*/
|
|
25025
|
-
|
|
25025
|
+
fetchNsItemsByAppId(queryParams) {
|
|
25026
25026
|
const params = { ...queryParams };
|
|
25027
25027
|
const url = '/platform/public/namespaces/{namespace}/items/byAppId'.replace('{namespace}', this.namespace);
|
|
25028
25028
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25036,7 +25036,7 @@ class Item$ {
|
|
|
25036
25036
|
/**
|
|
25037
25037
|
* 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>
|
|
25038
25038
|
*/
|
|
25039
|
-
|
|
25039
|
+
fetchNsItemsByItemidLocale(itemId, queryParams) {
|
|
25040
25040
|
const params = { ...queryParams };
|
|
25041
25041
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/locale'
|
|
25042
25042
|
.replace('{namespace}', this.namespace)
|
|
@@ -25052,7 +25052,7 @@ class Item$ {
|
|
|
25052
25052
|
/**
|
|
25053
25053
|
* 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>
|
|
25054
25054
|
*/
|
|
25055
|
-
|
|
25055
|
+
fetchNsItemsByCriteria(queryParams) {
|
|
25056
25056
|
const params = { limit: 20, sortBy: 'name:asc,displayOrder:asc', ...queryParams };
|
|
25057
25057
|
const url = '/platform/public/namespaces/{namespace}/items/byCriteria'.replace('{namespace}', this.namespace);
|
|
25058
25058
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25066,7 +25066,7 @@ class Item$ {
|
|
|
25066
25066
|
/**
|
|
25067
25067
|
* Get item dynamic data for a published item.<br>Other detail info: <ul><li><i>Returns</i>: item dynamic data</li></ul>
|
|
25068
25068
|
*/
|
|
25069
|
-
|
|
25069
|
+
fetchNsItemsByItemidDynamic(itemId) {
|
|
25070
25070
|
const params = {};
|
|
25071
25071
|
const url = '/platform/public/namespaces/{namespace}/items/{itemId}/dynamic'
|
|
25072
25072
|
.replace('{namespace}', this.namespace)
|
|
@@ -25082,7 +25082,7 @@ class Item$ {
|
|
|
25082
25082
|
/**
|
|
25083
25083
|
* This API is used to validate user item purchase condition
|
|
25084
25084
|
*/
|
|
25085
|
-
|
|
25085
|
+
postNsItemsPurchaseConditionsValidate(data) {
|
|
25086
25086
|
const params = {};
|
|
25087
25087
|
const url = '/platform/public/namespaces/{namespace}/items/purchase/conditions/validate'.replace('{namespace}', this.namespace);
|
|
25088
25088
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -25091,7 +25091,7 @@ class Item$ {
|
|
|
25091
25091
|
/**
|
|
25092
25092
|
* 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>
|
|
25093
25093
|
*/
|
|
25094
|
-
|
|
25094
|
+
fetchNsItemsLocaleByIds(queryParams) {
|
|
25095
25095
|
const params = { ...queryParams };
|
|
25096
25096
|
const url = '/platform/public/namespaces/{namespace}/items/locale/byIds'.replace('{namespace}', this.namespace);
|
|
25097
25097
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25117,22 +25117,22 @@ class ItemApi {
|
|
|
25117
25117
|
* 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>
|
|
25118
25118
|
*/
|
|
25119
25119
|
getItemByAppId({ ...queryParams }) {
|
|
25120
|
-
return this.newInstance().
|
|
25120
|
+
return this.newInstance().fetchNsItemsByAppId(queryParams);
|
|
25121
25121
|
}
|
|
25122
25122
|
/**
|
|
25123
25123
|
* Get item dynamic data for a published item.<br>Other detail info: <ul><li><i>Returns</i>: item dynamic data</li></ul>
|
|
25124
25124
|
*/
|
|
25125
25125
|
getItemByItemIdDynamic(itemId) {
|
|
25126
|
-
return this.newInstance().
|
|
25126
|
+
return this.newInstance().fetchNsItemsByItemidDynamic(itemId);
|
|
25127
25127
|
}
|
|
25128
25128
|
fetchItemsByCriteria({ queryParams }) {
|
|
25129
|
-
return this.newInstance().
|
|
25129
|
+
return this.newInstance().fetchNsItemsByCriteria(queryParams);
|
|
25130
25130
|
}
|
|
25131
25131
|
/**
|
|
25132
25132
|
* 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>
|
|
25133
25133
|
*/
|
|
25134
25134
|
getItemsByItemIds({ queryParams }) {
|
|
25135
|
-
return this.newInstance().
|
|
25135
|
+
return this.newInstance().fetchNsItemsLocaleByIds(queryParams);
|
|
25136
25136
|
}
|
|
25137
25137
|
/**
|
|
25138
25138
|
* Fetch the items and convert it into a map of `itemId` and its item info
|
|
@@ -25157,19 +25157,19 @@ class ItemApi {
|
|
|
25157
25157
|
* 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>
|
|
25158
25158
|
*/
|
|
25159
25159
|
getItemsByItemIdLocale({ itemId, queryParams }) {
|
|
25160
|
-
return this.newInstance().
|
|
25160
|
+
return this.newInstance().fetchNsItemsByItemidLocale(itemId, queryParams);
|
|
25161
25161
|
}
|
|
25162
25162
|
/**
|
|
25163
25163
|
* 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>
|
|
25164
25164
|
*/
|
|
25165
25165
|
getAppInfoByItemId({ itemId, queryParams }) {
|
|
25166
|
-
return this.newInstance().
|
|
25166
|
+
return this.newInstance().fetchNsItemsByItemidAppLocale(itemId, queryParams);
|
|
25167
25167
|
}
|
|
25168
25168
|
/**
|
|
25169
25169
|
* This API is used to validate user item purchase condition
|
|
25170
25170
|
*/
|
|
25171
25171
|
validatePurchaseCondition(data) {
|
|
25172
|
-
return this.newInstance().
|
|
25172
|
+
return this.newInstance().postNsItemsPurchaseConditionsValidate(data);
|
|
25173
25173
|
}
|
|
25174
25174
|
newInstance() {
|
|
25175
25175
|
return new Item$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -25212,13 +25212,6 @@ const OrderHistoryInfo = mod.object({
|
|
|
25212
25212
|
*/
|
|
25213
25213
|
const OrderHistoryInfoArray = mod.array(OrderHistoryInfo);
|
|
25214
25214
|
|
|
25215
|
-
/*
|
|
25216
|
-
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
25217
|
-
* This is licensed software from AccelByte Inc, for limitations
|
|
25218
|
-
* and restrictions contact your company contract manager.
|
|
25219
|
-
*/
|
|
25220
|
-
const ADtoObjectForOrderCreationOptions = mod.object({ skipPriceValidation: mod.boolean().nullish() });
|
|
25221
|
-
|
|
25222
25215
|
/*
|
|
25223
25216
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
25224
25217
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -25232,6 +25225,13 @@ const CurrencySummary = mod.object({
|
|
|
25232
25225
|
decimals: mod.number().int()
|
|
25233
25226
|
});
|
|
25234
25227
|
|
|
25228
|
+
/*
|
|
25229
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
25230
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
25231
|
+
* and restrictions contact your company contract manager.
|
|
25232
|
+
*/
|
|
25233
|
+
const OrderCreationOptions = mod.object({ skipPriceValidation: mod.boolean().nullish() });
|
|
25234
|
+
|
|
25235
25235
|
/*
|
|
25236
25236
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
25237
25237
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -25247,7 +25247,7 @@ const OrderInfo = mod.object({
|
|
|
25247
25247
|
quantity: mod.number().int(),
|
|
25248
25248
|
price: mod.number().int(),
|
|
25249
25249
|
discountedPrice: mod.number().int(),
|
|
25250
|
-
creationOptions:
|
|
25250
|
+
creationOptions: OrderCreationOptions.nullish(),
|
|
25251
25251
|
paymentProvider: mod.enum(['WALLET', 'XSOLLA', 'ADYEN', 'STRIPE', 'CHECKOUT', 'ALIPAY', 'WXPAY', 'PAYPAL']).nullish(),
|
|
25252
25252
|
paymentMethod: mod.string().nullish(),
|
|
25253
25253
|
tax: mod.number().int().nullish(),
|
|
@@ -25312,7 +25312,7 @@ class Order$ {
|
|
|
25312
25312
|
/**
|
|
25313
25313
|
* 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>
|
|
25314
25314
|
*/
|
|
25315
|
-
|
|
25315
|
+
fetchNsUsersByUseridOrders(userId, queryParams) {
|
|
25316
25316
|
const params = { limit: 20, ...queryParams };
|
|
25317
25317
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders'
|
|
25318
25318
|
.replace('{namespace}', this.namespace)
|
|
@@ -25328,7 +25328,7 @@ class Order$ {
|
|
|
25328
25328
|
/**
|
|
25329
25329
|
* 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>
|
|
25330
25330
|
*/
|
|
25331
|
-
|
|
25331
|
+
postNsUsersByUseridOrders(userId, data) {
|
|
25332
25332
|
const params = {};
|
|
25333
25333
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders'
|
|
25334
25334
|
.replace('{namespace}', this.namespace)
|
|
@@ -25339,7 +25339,7 @@ class Order$ {
|
|
|
25339
25339
|
/**
|
|
25340
25340
|
* 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>
|
|
25341
25341
|
*/
|
|
25342
|
-
|
|
25342
|
+
fetchNsUsersByUseridOrdersByOrderno(userId, orderNo) {
|
|
25343
25343
|
const params = {};
|
|
25344
25344
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}'
|
|
25345
25345
|
.replace('{namespace}', this.namespace)
|
|
@@ -25356,7 +25356,7 @@ class Order$ {
|
|
|
25356
25356
|
/**
|
|
25357
25357
|
* 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>
|
|
25358
25358
|
*/
|
|
25359
|
-
|
|
25359
|
+
fetchNsUsersByUseridOrdersByOrdernoReceiptPdf(userId, orderNo) {
|
|
25360
25360
|
const params = {};
|
|
25361
25361
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/receipt.pdf'
|
|
25362
25362
|
.replace('{namespace}', this.namespace)
|
|
@@ -25373,7 +25373,7 @@ class Order$ {
|
|
|
25373
25373
|
/**
|
|
25374
25374
|
* 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>
|
|
25375
25375
|
*/
|
|
25376
|
-
|
|
25376
|
+
putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo) {
|
|
25377
25377
|
const params = {};
|
|
25378
25378
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/cancel'
|
|
25379
25379
|
.replace('{namespace}', this.namespace)
|
|
@@ -25385,7 +25385,7 @@ class Order$ {
|
|
|
25385
25385
|
/**
|
|
25386
25386
|
* 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>
|
|
25387
25387
|
*/
|
|
25388
|
-
|
|
25388
|
+
fetchNsUsersByUseridOrdersByOrdernoHistory(userId, orderNo) {
|
|
25389
25389
|
const params = {};
|
|
25390
25390
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/orders/{orderNo}/history'
|
|
25391
25391
|
.replace('{namespace}', this.namespace)
|
|
@@ -25413,25 +25413,25 @@ class OrderApi {
|
|
|
25413
25413
|
* 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>
|
|
25414
25414
|
*/
|
|
25415
25415
|
this.getOrderList = ({ userId, queryParams }) => {
|
|
25416
|
-
return this.newInstance().
|
|
25416
|
+
return this.newInstance().fetchNsUsersByUseridOrders(userId, queryParams);
|
|
25417
25417
|
};
|
|
25418
25418
|
/**
|
|
25419
25419
|
* 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>
|
|
25420
25420
|
*/
|
|
25421
25421
|
this.getOrderByOrderNo = ({ userId, orderNo }) => {
|
|
25422
|
-
return this.newInstance().
|
|
25422
|
+
return this.newInstance().fetchNsUsersByUseridOrdersByOrderno(userId, orderNo);
|
|
25423
25423
|
};
|
|
25424
25424
|
/**
|
|
25425
25425
|
* 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>
|
|
25426
25426
|
*/
|
|
25427
25427
|
this.cancelOrder = ({ userId, orderNo }) => {
|
|
25428
|
-
return this.newInstance().
|
|
25428
|
+
return this.newInstance().putNsUsersByUseridOrdersByOrdernoCancel(userId, orderNo);
|
|
25429
25429
|
};
|
|
25430
25430
|
/**
|
|
25431
25431
|
* 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>
|
|
25432
25432
|
*/
|
|
25433
25433
|
this.createOrder = ({ userId, data }) => {
|
|
25434
|
-
return this.newInstance().
|
|
25434
|
+
return this.newInstance().postNsUsersByUseridOrders(userId, data);
|
|
25435
25435
|
};
|
|
25436
25436
|
/**
|
|
25437
25437
|
* Fetch all information needed for a user to check the user's availability to purchase the item
|
|
@@ -25508,7 +25508,7 @@ class PaymentAccount$ {
|
|
|
25508
25508
|
/**
|
|
25509
25509
|
* 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>
|
|
25510
25510
|
*/
|
|
25511
|
-
|
|
25511
|
+
fetchNsUsersByUseridPaymentAccounts(userId) {
|
|
25512
25512
|
const params = {};
|
|
25513
25513
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts'
|
|
25514
25514
|
.replace('{namespace}', this.namespace)
|
|
@@ -25524,7 +25524,7 @@ class PaymentAccount$ {
|
|
|
25524
25524
|
/**
|
|
25525
25525
|
* 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>
|
|
25526
25526
|
*/
|
|
25527
|
-
|
|
25527
|
+
deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id) {
|
|
25528
25528
|
const params = {};
|
|
25529
25529
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/payment/accounts/{type}/{id}'
|
|
25530
25530
|
.replace('{namespace}', this.namespace)
|
|
@@ -25631,7 +25631,7 @@ class PaymentStation$ {
|
|
|
25631
25631
|
/**
|
|
25632
25632
|
* Check payment order paid status.<br>Other detail info: <ul><li><i>Returns</i>: Payment order paid result</li></ul>
|
|
25633
25633
|
*/
|
|
25634
|
-
|
|
25634
|
+
fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo) {
|
|
25635
25635
|
const params = {};
|
|
25636
25636
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/status'
|
|
25637
25637
|
.replace('{namespace}', this.namespace)
|
|
@@ -25647,7 +25647,7 @@ class PaymentStation$ {
|
|
|
25647
25647
|
/**
|
|
25648
25648
|
* Check and get a payment order's should pay tax.<br>Other detail info: <ul><li><i>Returns</i>: tax result</li></ul>
|
|
25649
25649
|
*/
|
|
25650
|
-
|
|
25650
|
+
fetchNsPaymentTax(queryParams) {
|
|
25651
25651
|
const params = { ...queryParams };
|
|
25652
25652
|
const url = '/platform/public/namespaces/{namespace}/payment/tax'.replace('{namespace}', this.namespace);
|
|
25653
25653
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25661,7 +25661,7 @@ class PaymentStation$ {
|
|
|
25661
25661
|
/**
|
|
25662
25662
|
* Do payment(For now, this only support checkout.com).<br>Other detail info: <ul><li><i>Returns</i>: Payment process result</li></ul>
|
|
25663
25663
|
*/
|
|
25664
|
-
|
|
25664
|
+
postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams) {
|
|
25665
25665
|
const params = { paymentProvider: 'CHECKOUT', ...queryParams };
|
|
25666
25666
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/pay'
|
|
25667
25667
|
.replace('{namespace}', this.namespace)
|
|
@@ -25672,7 +25672,7 @@ class PaymentStation$ {
|
|
|
25672
25672
|
/**
|
|
25673
25673
|
* 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>
|
|
25674
25674
|
*/
|
|
25675
|
-
|
|
25675
|
+
fetchNsPaymentPublicconfig(queryParams) {
|
|
25676
25676
|
const params = { ...queryParams };
|
|
25677
25677
|
const url = '/platform/public/namespaces/{namespace}/payment/publicconfig'.replace('{namespace}', this.namespace);
|
|
25678
25678
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25688,7 +25688,7 @@ class PaymentStation$ {
|
|
|
25688
25688
|
*
|
|
25689
25689
|
* 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>
|
|
25690
25690
|
*/
|
|
25691
|
-
|
|
25691
|
+
fetchNsPaymentReturnurl(queryParams) {
|
|
25692
25692
|
const params = { ...queryParams };
|
|
25693
25693
|
const url = '/platform/public/namespaces/{namespace}/payment/returnurl'.replace('{namespace}', this.namespace);
|
|
25694
25694
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25702,7 +25702,7 @@ class PaymentStation$ {
|
|
|
25702
25702
|
/**
|
|
25703
25703
|
* Get payment methods.<br>Other detail info: <ul><li><i>Returns</i>: Payment method list</li></ul>
|
|
25704
25704
|
*/
|
|
25705
|
-
|
|
25705
|
+
fetchNsPaymentMethods(queryParams) {
|
|
25706
25706
|
const params = { ...queryParams };
|
|
25707
25707
|
const url = '/platform/public/namespaces/{namespace}/payment/methods'.replace('{namespace}', this.namespace);
|
|
25708
25708
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25716,7 +25716,7 @@ class PaymentStation$ {
|
|
|
25716
25716
|
/**
|
|
25717
25717
|
* Get payment order info.<br>Other detail info: <ul><li><i>Returns</i>: Payment order details</li></ul>
|
|
25718
25718
|
*/
|
|
25719
|
-
|
|
25719
|
+
fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo) {
|
|
25720
25720
|
const params = {};
|
|
25721
25721
|
const url = '/platform/public/namespaces/{namespace}/payment/orders/{paymentOrderNo}/info'
|
|
25722
25722
|
.replace('{namespace}', this.namespace)
|
|
@@ -25732,7 +25732,7 @@ class PaymentStation$ {
|
|
|
25732
25732
|
/**
|
|
25733
25733
|
* Get qrcode.<br>Other detail info: <ul><li><i>Returns</i>: QRCode image stream</li></ul>
|
|
25734
25734
|
*/
|
|
25735
|
-
|
|
25735
|
+
fetchNsPaymentQrcode(queryParams) {
|
|
25736
25736
|
const params = { ...queryParams };
|
|
25737
25737
|
const url = '/platform/public/namespaces/{namespace}/payment/qrcode'.replace('{namespace}', this.namespace);
|
|
25738
25738
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -25746,7 +25746,7 @@ class PaymentStation$ {
|
|
|
25746
25746
|
/**
|
|
25747
25747
|
* Get payment url.<br>Other detail info: <ul><li><i>Returns</i>: Get payment link</li></ul>
|
|
25748
25748
|
*/
|
|
25749
|
-
|
|
25749
|
+
postNsPaymentLink(data) {
|
|
25750
25750
|
const params = {};
|
|
25751
25751
|
const url = '/platform/public/namespaces/{namespace}/payment/link'.replace('{namespace}', this.namespace);
|
|
25752
25752
|
const resultPromise = this.axiosInstance.post(url, data, { params });
|
|
@@ -25766,31 +25766,31 @@ class PaymentApi {
|
|
|
25766
25766
|
* 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>
|
|
25767
25767
|
*/
|
|
25768
25768
|
this.getPaymentAccounts = (userId) => {
|
|
25769
|
-
return this.newInstance().
|
|
25769
|
+
return this.newInstance().fetchNsUsersByUseridPaymentAccounts(userId);
|
|
25770
25770
|
};
|
|
25771
25771
|
/**
|
|
25772
25772
|
* 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>
|
|
25773
25773
|
*/
|
|
25774
25774
|
this.deletePaymentAccount = ({ userId, type, id }) => {
|
|
25775
|
-
return this.newInstance().
|
|
25775
|
+
return this.newInstance().deleteNsUsersByUseridPaymentAccountsByTypeById(userId, type, id);
|
|
25776
25776
|
};
|
|
25777
25777
|
/**
|
|
25778
25778
|
* Get payment order info.<br>Other detail info: <ul><li><i>Returns</i>: Payment order details</li></ul>
|
|
25779
25779
|
*/
|
|
25780
25780
|
this.getPaymentInfo = (paymentOrderNo) => {
|
|
25781
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25781
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoInfo(paymentOrderNo);
|
|
25782
25782
|
};
|
|
25783
25783
|
/**
|
|
25784
25784
|
* Do payment(For now, this only support checkout.com).<br>Other detail info: <ul><li><i>Returns</i>: Payment process result</li></ul>
|
|
25785
25785
|
*/
|
|
25786
25786
|
this.processPaymentOrder = (paymentOrderNo, data, queryParams) => {
|
|
25787
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25787
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentOrdersByPaymentordernoPay(paymentOrderNo, data, queryParams);
|
|
25788
25788
|
};
|
|
25789
25789
|
/**
|
|
25790
25790
|
* 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>
|
|
25791
25791
|
*/
|
|
25792
25792
|
this.getPaymentProviderPublicConfig = (paymentProvider, region, sandbox) => {
|
|
25793
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25793
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentPublicconfig({
|
|
25794
25794
|
paymentProvider,
|
|
25795
25795
|
region,
|
|
25796
25796
|
sandbox
|
|
@@ -25800,19 +25800,19 @@ class PaymentApi {
|
|
|
25800
25800
|
* Check payment order paid status.<br>Other detail info: <ul><li><i>Returns</i>: Payment order paid result</li></ul>
|
|
25801
25801
|
*/
|
|
25802
25802
|
this.getPaymentOrderStatus = (paymentOrderNo) => {
|
|
25803
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25803
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentOrdersByPaymentordernoStatus(paymentOrderNo);
|
|
25804
25804
|
};
|
|
25805
25805
|
/**
|
|
25806
25806
|
* Get payment methods.<br>Other detail info: <ul><li><i>Returns</i>: Payment method list</li></ul>
|
|
25807
25807
|
*/
|
|
25808
25808
|
this.getPaymentMethods = (paymentOrderNo) => {
|
|
25809
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25809
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentMethods({ paymentOrderNo });
|
|
25810
25810
|
};
|
|
25811
25811
|
/**
|
|
25812
25812
|
* Check and get a payment order's should pay tax.<br>Other detail info: <ul><li><i>Returns</i>: tax result</li></ul>
|
|
25813
25813
|
*/
|
|
25814
25814
|
this.getPaymentTax = (paymentProvider, paymentOrderNo, zipCode) => {
|
|
25815
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25815
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).fetchNsPaymentTax({
|
|
25816
25816
|
paymentProvider,
|
|
25817
25817
|
paymentOrderNo,
|
|
25818
25818
|
zipCode
|
|
@@ -25822,7 +25822,7 @@ class PaymentApi {
|
|
|
25822
25822
|
* Get payment url.<br>Other detail info: <ul><li><i>Returns</i>: Get payment link</li></ul>
|
|
25823
25823
|
*/
|
|
25824
25824
|
this.createPaymentUrl = (data) => {
|
|
25825
|
-
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).
|
|
25825
|
+
return new PaymentStation$(Network.create(this.conf), this.namespace, this.cache).postNsPaymentLink(data);
|
|
25826
25826
|
};
|
|
25827
25827
|
}
|
|
25828
25828
|
newInstance() {
|
|
@@ -25967,7 +25967,7 @@ class Subscription$ {
|
|
|
25967
25967
|
/**
|
|
25968
25968
|
* 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>
|
|
25969
25969
|
*/
|
|
25970
|
-
|
|
25970
|
+
fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId) {
|
|
25971
25971
|
const params = {};
|
|
25972
25972
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}'
|
|
25973
25973
|
.replace('{namespace}', this.namespace)
|
|
@@ -25984,7 +25984,7 @@ class Subscription$ {
|
|
|
25984
25984
|
/**
|
|
25985
25985
|
* 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>
|
|
25986
25986
|
*/
|
|
25987
|
-
|
|
25987
|
+
fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams) {
|
|
25988
25988
|
const params = { limit: 20, ...queryParams };
|
|
25989
25989
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/history'
|
|
25990
25990
|
.replace('{namespace}', this.namespace)
|
|
@@ -26001,7 +26001,7 @@ class Subscription$ {
|
|
|
26001
26001
|
/**
|
|
26002
26002
|
* 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>
|
|
26003
26003
|
*/
|
|
26004
|
-
|
|
26004
|
+
fetchNsUsersByUseridSubscriptionsSubscribableByItemId(userId, queryParams) {
|
|
26005
26005
|
const params = { ...queryParams };
|
|
26006
26006
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/subscribable/byItemId'
|
|
26007
26007
|
.replace('{namespace}', this.namespace)
|
|
@@ -26017,7 +26017,7 @@ class Subscription$ {
|
|
|
26017
26017
|
/**
|
|
26018
26018
|
* 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>
|
|
26019
26019
|
*/
|
|
26020
|
-
|
|
26020
|
+
fetchNsUsersByUseridSubscriptions(userId, queryParams) {
|
|
26021
26021
|
const params = { limit: 20, ...queryParams };
|
|
26022
26022
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions'
|
|
26023
26023
|
.replace('{namespace}', this.namespace)
|
|
@@ -26033,7 +26033,7 @@ class Subscription$ {
|
|
|
26033
26033
|
/**
|
|
26034
26034
|
* 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>
|
|
26035
26035
|
*/
|
|
26036
|
-
|
|
26036
|
+
postNsUsersByUseridSubscriptions(userId, data) {
|
|
26037
26037
|
const params = {};
|
|
26038
26038
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions'
|
|
26039
26039
|
.replace('{namespace}', this.namespace)
|
|
@@ -26044,7 +26044,7 @@ class Subscription$ {
|
|
|
26044
26044
|
/**
|
|
26045
26045
|
* 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>
|
|
26046
26046
|
*/
|
|
26047
|
-
|
|
26047
|
+
putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data) {
|
|
26048
26048
|
const params = {};
|
|
26049
26049
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/cancel'
|
|
26050
26050
|
.replace('{namespace}', this.namespace)
|
|
@@ -26056,7 +26056,7 @@ class Subscription$ {
|
|
|
26056
26056
|
/**
|
|
26057
26057
|
* 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>
|
|
26058
26058
|
*/
|
|
26059
|
-
|
|
26059
|
+
putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId) {
|
|
26060
26060
|
const params = {};
|
|
26061
26061
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/subscriptions/{subscriptionId}/billingAccount'
|
|
26062
26062
|
.replace('{namespace}', this.namespace)
|
|
@@ -26080,37 +26080,37 @@ class SubscriptionApi {
|
|
|
26080
26080
|
* 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>
|
|
26081
26081
|
*/
|
|
26082
26082
|
getUserSubscriptions({ userId, queryParams }) {
|
|
26083
|
-
return this.newInstance().
|
|
26083
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptions(userId, queryParams);
|
|
26084
26084
|
}
|
|
26085
26085
|
/**
|
|
26086
26086
|
* 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>
|
|
26087
26087
|
*/
|
|
26088
26088
|
getUserSubscriptionBySubscriptionId({ userId, subscriptionId }) {
|
|
26089
|
-
return this.newInstance().
|
|
26089
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionid(userId, subscriptionId);
|
|
26090
26090
|
}
|
|
26091
26091
|
/**
|
|
26092
26092
|
* 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>
|
|
26093
26093
|
*/
|
|
26094
26094
|
createSubscription({ userId, data }) {
|
|
26095
|
-
return this.newInstance().
|
|
26095
|
+
return this.newInstance().postNsUsersByUseridSubscriptions(userId, data);
|
|
26096
26096
|
}
|
|
26097
26097
|
/**
|
|
26098
26098
|
* 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>
|
|
26099
26099
|
*/
|
|
26100
26100
|
getUserSubscriptionBillingHistory({ userId, subscriptionId, queryParams }) {
|
|
26101
|
-
return this.newInstance().
|
|
26101
|
+
return this.newInstance().fetchNsUsersByUseridSubscriptionsBySubscriptionidHistory(userId, subscriptionId, queryParams);
|
|
26102
26102
|
}
|
|
26103
26103
|
/**
|
|
26104
26104
|
* 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>
|
|
26105
26105
|
*/
|
|
26106
26106
|
updateUserSubscriptionPaymentMethod({ userId, subscriptionId }) {
|
|
26107
|
-
return this.newInstance().
|
|
26107
|
+
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidBillingAccount(userId, subscriptionId);
|
|
26108
26108
|
}
|
|
26109
26109
|
/**
|
|
26110
26110
|
* 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>
|
|
26111
26111
|
*/
|
|
26112
26112
|
cancelUserSubscription({ userId, subscriptionId, data }) {
|
|
26113
|
-
return this.newInstance().
|
|
26113
|
+
return this.newInstance().putNsUsersByUseridSubscriptionsBySubscriptionidCancel(userId, subscriptionId, data);
|
|
26114
26114
|
}
|
|
26115
26115
|
newInstance() {
|
|
26116
26116
|
return new Subscription$(Network.create(this.conf), this.namespace, this.cache);
|
|
@@ -26219,7 +26219,7 @@ class Wallet$ {
|
|
|
26219
26219
|
/**
|
|
26220
26220
|
* 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>
|
|
26221
26221
|
*/
|
|
26222
|
-
|
|
26222
|
+
fetchNsUsersMeWalletsByCurrencycode(currencyCode) {
|
|
26223
26223
|
const params = {};
|
|
26224
26224
|
const url = '/platform/public/namespaces/{namespace}/users/me/wallets/{currencyCode}'
|
|
26225
26225
|
.replace('{namespace}', this.namespace)
|
|
@@ -26235,7 +26235,7 @@ class Wallet$ {
|
|
|
26235
26235
|
/**
|
|
26236
26236
|
* 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>
|
|
26237
26237
|
*/
|
|
26238
|
-
|
|
26238
|
+
fetchNsUsersByUseridWalletsByCurrencycodeTransactions(userId, currencyCode, queryParams) {
|
|
26239
26239
|
const params = { limit: 20, ...queryParams };
|
|
26240
26240
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}/transactions'
|
|
26241
26241
|
.replace('{namespace}', this.namespace)
|
|
@@ -26252,7 +26252,7 @@ class Wallet$ {
|
|
|
26252
26252
|
/**
|
|
26253
26253
|
* 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>
|
|
26254
26254
|
*/
|
|
26255
|
-
|
|
26255
|
+
fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode) {
|
|
26256
26256
|
const params = {};
|
|
26257
26257
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currencyCode}'
|
|
26258
26258
|
.replace('{namespace}', this.namespace)
|
|
@@ -26280,13 +26280,13 @@ class WalletApi {
|
|
|
26280
26280
|
* 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>
|
|
26281
26281
|
*/
|
|
26282
26282
|
this.getUserMeWallet = (currencyCode) => {
|
|
26283
|
-
return this.newInstance().
|
|
26283
|
+
return this.newInstance().fetchNsUsersMeWalletsByCurrencycode(currencyCode);
|
|
26284
26284
|
};
|
|
26285
26285
|
/**
|
|
26286
26286
|
* 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>
|
|
26287
26287
|
*/
|
|
26288
26288
|
this.getWalletByUserId = (userId, currencyCode) => {
|
|
26289
|
-
return this.newInstance().
|
|
26289
|
+
return this.newInstance().fetchNsUsersByUseridWalletsByCurrencycode(userId, currencyCode);
|
|
26290
26290
|
};
|
|
26291
26291
|
/**
|
|
26292
26292
|
* get a map of wallet represented by its currency code
|
|
@@ -28294,6 +28294,8 @@ const ThirdPartyLoginPlatformCredentialRequest = mod.object({
|
|
|
28294
28294
|
TokenAuthenticationType: mod.string(),
|
|
28295
28295
|
TokenClaimsMapping: mod.record(mod.string()),
|
|
28296
28296
|
TokenEndpoint: mod.string(),
|
|
28297
|
+
UserInfoEndpoint: mod.string(),
|
|
28298
|
+
UserInfoHTTPMethod: mod.string(),
|
|
28297
28299
|
scopes: mod.array(mod.string())
|
|
28298
28300
|
});
|
|
28299
28301
|
|
|
@@ -28328,6 +28330,8 @@ const ThirdPartyLoginPlatformCredentialResponse = mod.object({
|
|
|
28328
28330
|
TokenAuthenticationType: mod.string(),
|
|
28329
28331
|
TokenClaimsMapping: mod.record(mod.string()).nullish(),
|
|
28330
28332
|
TokenEndpoint: mod.string().nullish(),
|
|
28333
|
+
UserInfoEndpoint: mod.string().nullish(),
|
|
28334
|
+
UserInfoHTTPMethod: mod.string().nullish(),
|
|
28331
28335
|
registeredDomains: mod.array(RegisteredDomain),
|
|
28332
28336
|
scopes: mod.array(mod.string()).nullish()
|
|
28333
28337
|
});
|
|
@@ -28738,7 +28742,7 @@ class Category$ {
|
|
|
28738
28742
|
/**
|
|
28739
28743
|
* 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>
|
|
28740
28744
|
*/
|
|
28741
|
-
|
|
28745
|
+
fetchNsCategoriesByCategorypathChildren(categoryPath, queryParams) {
|
|
28742
28746
|
const params = { ...queryParams };
|
|
28743
28747
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}/children'
|
|
28744
28748
|
.replace('{namespace}', this.namespace)
|
|
@@ -28754,7 +28758,7 @@ class Category$ {
|
|
|
28754
28758
|
/**
|
|
28755
28759
|
* 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>
|
|
28756
28760
|
*/
|
|
28757
|
-
|
|
28761
|
+
fetchNsCategoriesByCategorypath(categoryPath, queryParams) {
|
|
28758
28762
|
const params = { ...queryParams };
|
|
28759
28763
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}'
|
|
28760
28764
|
.replace('{namespace}', this.namespace)
|
|
@@ -28770,7 +28774,7 @@ class Category$ {
|
|
|
28770
28774
|
/**
|
|
28771
28775
|
* 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>
|
|
28772
28776
|
*/
|
|
28773
|
-
|
|
28777
|
+
fetchNsCategories(queryParams) {
|
|
28774
28778
|
const params = { ...queryParams };
|
|
28775
28779
|
const url = '/platform/public/namespaces/{namespace}/categories'.replace('{namespace}', this.namespace);
|
|
28776
28780
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -28784,7 +28788,7 @@ class Category$ {
|
|
|
28784
28788
|
/**
|
|
28785
28789
|
* 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>
|
|
28786
28790
|
*/
|
|
28787
|
-
|
|
28791
|
+
fetchNsCategoriesByCategorypathDescendants(categoryPath, queryParams) {
|
|
28788
28792
|
const params = { ...queryParams };
|
|
28789
28793
|
const url = '/platform/public/namespaces/{namespace}/categories/{categoryPath}/descendants'
|
|
28790
28794
|
.replace('{namespace}', this.namespace)
|
|
@@ -28800,7 +28804,7 @@ class Category$ {
|
|
|
28800
28804
|
/**
|
|
28801
28805
|
* 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>
|
|
28802
28806
|
*/
|
|
28803
|
-
|
|
28807
|
+
fetchNsCategoriesDownload(queryParams) {
|
|
28804
28808
|
const params = { ...queryParams };
|
|
28805
28809
|
const url = '/platform/public/namespaces/{namespace}/categories/download'.replace('{namespace}', this.namespace);
|
|
28806
28810
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -28855,7 +28859,7 @@ class Store$ {
|
|
|
28855
28859
|
/**
|
|
28856
28860
|
* 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>
|
|
28857
28861
|
*/
|
|
28858
|
-
|
|
28862
|
+
fetchNsStores() {
|
|
28859
28863
|
const params = {};
|
|
28860
28864
|
const url = '/platform/public/namespaces/{namespace}/stores'.replace('{namespace}', this.namespace);
|
|
28861
28865
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -28915,7 +28919,7 @@ class Section$ {
|
|
|
28915
28919
|
/**
|
|
28916
28920
|
* 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>
|
|
28917
28921
|
*/
|
|
28918
|
-
|
|
28922
|
+
fetchNsUsersByUseridSections(userId, queryParams) {
|
|
28919
28923
|
const params = { ...queryParams };
|
|
28920
28924
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/sections'
|
|
28921
28925
|
.replace('{namespace}', this.namespace)
|
|
@@ -28970,7 +28974,7 @@ class View$ {
|
|
|
28970
28974
|
/**
|
|
28971
28975
|
* 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>
|
|
28972
28976
|
*/
|
|
28973
|
-
|
|
28977
|
+
fetchNsUsersByUseridViews(userId, queryParams) {
|
|
28974
28978
|
const params = { ...queryParams };
|
|
28975
28979
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/views'
|
|
28976
28980
|
.replace('{namespace}', this.namespace)
|
|
@@ -29000,7 +29004,7 @@ class Dlc$ {
|
|
|
29000
29004
|
/**
|
|
29001
29005
|
* 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>
|
|
29002
29006
|
*/
|
|
29003
|
-
|
|
29007
|
+
putNsUsersByUseridDlcSteamSync(userId, data) {
|
|
29004
29008
|
const params = {};
|
|
29005
29009
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/steam/sync'
|
|
29006
29010
|
.replace('{namespace}', this.namespace)
|
|
@@ -29011,7 +29015,7 @@ class Dlc$ {
|
|
|
29011
29015
|
/**
|
|
29012
29016
|
* 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>
|
|
29013
29017
|
*/
|
|
29014
|
-
|
|
29018
|
+
putNsUsersByUseridDlcXblSync(userId, data) {
|
|
29015
29019
|
const params = {};
|
|
29016
29020
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/xbl/sync'
|
|
29017
29021
|
.replace('{namespace}', this.namespace)
|
|
@@ -29022,7 +29026,7 @@ class Dlc$ {
|
|
|
29022
29026
|
/**
|
|
29023
29027
|
* 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>
|
|
29024
29028
|
*/
|
|
29025
|
-
|
|
29029
|
+
putNsUsersByUseridDlcPsnSync(userId, data) {
|
|
29026
29030
|
const params = {};
|
|
29027
29031
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/psn/sync'
|
|
29028
29032
|
.replace('{namespace}', this.namespace)
|
|
@@ -29033,7 +29037,7 @@ class Dlc$ {
|
|
|
29033
29037
|
/**
|
|
29034
29038
|
* 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>
|
|
29035
29039
|
*/
|
|
29036
|
-
|
|
29040
|
+
putNsUsersByUseridDlcEpicgamesSync(userId, data) {
|
|
29037
29041
|
const params = {};
|
|
29038
29042
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/epicgames/sync'
|
|
29039
29043
|
.replace('{namespace}', this.namespace)
|
|
@@ -29044,7 +29048,7 @@ class Dlc$ {
|
|
|
29044
29048
|
/**
|
|
29045
29049
|
* 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>
|
|
29046
29050
|
*/
|
|
29047
|
-
|
|
29051
|
+
putNsUsersByUseridDlcPsnSyncMultiServiceLabels(userId, data) {
|
|
29048
29052
|
const params = {};
|
|
29049
29053
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/dlc/psn/sync/multiServiceLabels'
|
|
29050
29054
|
.replace('{namespace}', this.namespace)
|
|
@@ -29136,7 +29140,7 @@ class Iap$ {
|
|
|
29136
29140
|
/**
|
|
29137
29141
|
* 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>
|
|
29138
29142
|
*/
|
|
29139
|
-
|
|
29143
|
+
putNsUsersByUseridIapSteamSync(userId, data) {
|
|
29140
29144
|
const params = {};
|
|
29141
29145
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/steam/sync'
|
|
29142
29146
|
.replace('{namespace}', this.namespace)
|
|
@@ -29147,7 +29151,7 @@ class Iap$ {
|
|
|
29147
29151
|
/**
|
|
29148
29152
|
* 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>
|
|
29149
29153
|
*/
|
|
29150
|
-
|
|
29154
|
+
putNsUsersByUseridIapAppleReceipt(userId, data) {
|
|
29151
29155
|
const params = {};
|
|
29152
29156
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/apple/receipt'
|
|
29153
29157
|
.replace('{namespace}', this.namespace)
|
|
@@ -29158,7 +29162,7 @@ class Iap$ {
|
|
|
29158
29162
|
/**
|
|
29159
29163
|
* 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>
|
|
29160
29164
|
*/
|
|
29161
|
-
|
|
29165
|
+
putNsUsersByUseridIapPsnSyncMultiServiceLabels(userId, data) {
|
|
29162
29166
|
const params = {};
|
|
29163
29167
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/psn/sync/multiServiceLabels'
|
|
29164
29168
|
.replace('{namespace}', this.namespace)
|
|
@@ -29169,7 +29173,7 @@ class Iap$ {
|
|
|
29169
29173
|
/**
|
|
29170
29174
|
* 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>
|
|
29171
29175
|
*/
|
|
29172
|
-
|
|
29176
|
+
putNsUsersByUseridIapPsnSync(userId, data) {
|
|
29173
29177
|
const params = {};
|
|
29174
29178
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/psn/sync'
|
|
29175
29179
|
.replace('{namespace}', this.namespace)
|
|
@@ -29180,7 +29184,7 @@ class Iap$ {
|
|
|
29180
29184
|
/**
|
|
29181
29185
|
* 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>
|
|
29182
29186
|
*/
|
|
29183
|
-
|
|
29187
|
+
putNsUsersByUseridIapTwitchSync(userId, data) {
|
|
29184
29188
|
const params = {};
|
|
29185
29189
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/twitch/sync'
|
|
29186
29190
|
.replace('{namespace}', this.namespace)
|
|
@@ -29191,7 +29195,7 @@ class Iap$ {
|
|
|
29191
29195
|
/**
|
|
29192
29196
|
* 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>
|
|
29193
29197
|
*/
|
|
29194
|
-
|
|
29198
|
+
putNsUsersByUseridIapGoogleReceipt(userId, data) {
|
|
29195
29199
|
const params = {};
|
|
29196
29200
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/google/receipt'
|
|
29197
29201
|
.replace('{namespace}', this.namespace)
|
|
@@ -29202,7 +29206,7 @@ class Iap$ {
|
|
|
29202
29206
|
/**
|
|
29203
29207
|
* 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>
|
|
29204
29208
|
*/
|
|
29205
|
-
|
|
29209
|
+
putNsUsersByUseridIapXblSync(userId, data) {
|
|
29206
29210
|
const params = {};
|
|
29207
29211
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/xbl/sync'
|
|
29208
29212
|
.replace('{namespace}', this.namespace)
|
|
@@ -29213,7 +29217,7 @@ class Iap$ {
|
|
|
29213
29217
|
/**
|
|
29214
29218
|
* 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>
|
|
29215
29219
|
*/
|
|
29216
|
-
|
|
29220
|
+
putNsUsersByUseridIapEpicgamesSync(userId, data) {
|
|
29217
29221
|
const params = {};
|
|
29218
29222
|
const url = '/platform/public/namespaces/{namespace}/users/{userId}/iap/epicgames/sync'
|
|
29219
29223
|
.replace('{namespace}', this.namespace)
|
|
@@ -29288,7 +29292,7 @@ class Reward$ {
|
|
|
29288
29292
|
/**
|
|
29289
29293
|
* 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>
|
|
29290
29294
|
*/
|
|
29291
|
-
|
|
29295
|
+
fetchNsRewardsByCode(queryParams) {
|
|
29292
29296
|
const params = { ...queryParams };
|
|
29293
29297
|
const url = '/platform/public/namespaces/{namespace}/rewards/byCode'.replace('{namespace}', this.namespace);
|
|
29294
29298
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -29302,7 +29306,7 @@ class Reward$ {
|
|
|
29302
29306
|
/**
|
|
29303
29307
|
* 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>
|
|
29304
29308
|
*/
|
|
29305
|
-
|
|
29309
|
+
fetchNsRewardsByRewardid(rewardId) {
|
|
29306
29310
|
const params = {};
|
|
29307
29311
|
const url = '/platform/public/namespaces/{namespace}/rewards/{rewardId}'
|
|
29308
29312
|
.replace('{namespace}', this.namespace)
|
|
@@ -29318,7 +29322,7 @@ class Reward$ {
|
|
|
29318
29322
|
/**
|
|
29319
29323
|
* 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>
|
|
29320
29324
|
*/
|
|
29321
|
-
|
|
29325
|
+
fetchNsRewardsByCriteria(queryParams) {
|
|
29322
29326
|
const params = { limit: 20, sortBy: 'namespace:asc,rewardCode:asc', ...queryParams };
|
|
29323
29327
|
const url = '/platform/public/namespaces/{namespace}/rewards/byCriteria'.replace('{namespace}', this.namespace);
|
|
29324
29328
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -30115,7 +30119,7 @@ const ItemCreate = mod.object({
|
|
|
30115
30119
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30116
30120
|
* and restrictions contact your company contract manager.
|
|
30117
30121
|
*/
|
|
30118
|
-
const
|
|
30122
|
+
const AvailableComparison = mod.object({
|
|
30119
30123
|
comparison: mod
|
|
30120
30124
|
.enum(['is', 'isNot', 'isGreaterThan', 'isGreaterThanOrEqual', 'isLessThan', 'isLessThanOrEqual', 'includes', 'excludes'])
|
|
30121
30125
|
.nullish(),
|
|
@@ -30127,9 +30131,9 @@ const AvailableComparisonObject = mod.object({
|
|
|
30127
30131
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30128
30132
|
* and restrictions contact your company contract manager.
|
|
30129
30133
|
*/
|
|
30130
|
-
const
|
|
30134
|
+
const AvailablePredicate = mod.object({
|
|
30131
30135
|
predicateType: mod.enum(['EntitlementPredicate', 'SeasonPassPredicate', 'SeasonTierPredicate']).nullish(),
|
|
30132
|
-
availableComparisons: mod.array(
|
|
30136
|
+
availableComparisons: mod.array(AvailableComparison).nullish(),
|
|
30133
30137
|
valueType: mod.enum(['List', 'Number', 'String']).nullish(),
|
|
30134
30138
|
showAnyOf: mod.boolean().nullish()
|
|
30135
30139
|
});
|
|
@@ -30867,22 +30871,22 @@ const AchievementInfo = mod.object({
|
|
|
30867
30871
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30868
30872
|
* and restrictions contact your company contract manager.
|
|
30869
30873
|
*/
|
|
30870
|
-
const
|
|
30874
|
+
const XblUserAchievements = mod.object({ achievements: mod.array(AchievementInfo).nullish() });
|
|
30871
30875
|
|
|
30872
30876
|
/*
|
|
30873
30877
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
30874
30878
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30875
30879
|
* and restrictions contact your company contract manager.
|
|
30876
30880
|
*/
|
|
30877
|
-
const
|
|
30881
|
+
const Achievement = mod.object({ id: mod.string().nullish(), value: mod.number().int().nullish() });
|
|
30878
30882
|
|
|
30879
30883
|
/*
|
|
30880
30884
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
30881
30885
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30882
30886
|
* and restrictions contact your company contract manager.
|
|
30883
30887
|
*/
|
|
30884
|
-
const
|
|
30885
|
-
achievements: mod.array(
|
|
30888
|
+
const XblAchievementUpdateRequest = mod.object({
|
|
30889
|
+
achievements: mod.array(Achievement).nullish(),
|
|
30886
30890
|
serviceConfigId: mod.string().nullish(),
|
|
30887
30891
|
titleId: mod.string().nullish(),
|
|
30888
30892
|
xboxUserId: mod.string().nullish()
|
|
@@ -30893,17 +30897,7 @@ const ADtoObjectForUpdateXboxAchievementCompletePercentageApi = mod.object({
|
|
|
30893
30897
|
* This is licensed software from AccelByte Inc, for limitations
|
|
30894
30898
|
* and restrictions contact your company contract manager.
|
|
30895
30899
|
*/
|
|
30896
|
-
const
|
|
30897
|
-
|
|
30898
|
-
/*
|
|
30899
|
-
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
30900
|
-
* This is licensed software from AccelByte Inc, for limitations
|
|
30901
|
-
* and restrictions contact your company contract manager.
|
|
30902
|
-
*/
|
|
30903
|
-
const ADtoObjectForUnlockSteamAchievementApi = mod.object({
|
|
30904
|
-
steamUserId: mod.string().nullish(),
|
|
30905
|
-
achievements: mod.array(SteamAchievementRequest).nullish()
|
|
30906
|
-
});
|
|
30900
|
+
const SteamAchievementUpdateRequest = mod.object({ steamUserId: mod.string().nullish(), achievements: mod.array(Achievement).nullish() });
|
|
30907
30901
|
|
|
30908
30902
|
/*
|
|
30909
30903
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
@@ -31167,6 +31161,70 @@ const IapConsumeHistoryInfo = mod.object({
|
|
|
31167
31161
|
*/
|
|
31168
31162
|
const IapConsumeHistoryPagingSlicedResult = mod.object({ data: mod.array(IapConsumeHistoryInfo), paging: Paging$1.nullish() });
|
|
31169
31163
|
|
|
31164
|
+
/*
|
|
31165
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
31166
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
31167
|
+
* and restrictions contact your company contract manager.
|
|
31168
|
+
*/
|
|
31169
|
+
const CreditRevocation = mod.object({
|
|
31170
|
+
walletId: mod.string().nullish(),
|
|
31171
|
+
currencyCode: mod.string().nullish(),
|
|
31172
|
+
balanceOrigin: mod.string().nullish(),
|
|
31173
|
+
amount: mod.number().int().nullish(),
|
|
31174
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
31175
|
+
revocationStrategy: mod.string().nullish(),
|
|
31176
|
+
skipped: mod.boolean().nullish(),
|
|
31177
|
+
reason: mod.string().nullish()
|
|
31178
|
+
});
|
|
31179
|
+
|
|
31180
|
+
/*
|
|
31181
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
31182
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
31183
|
+
* and restrictions contact your company contract manager.
|
|
31184
|
+
*/
|
|
31185
|
+
const EntitlementRevocation = mod.object({
|
|
31186
|
+
entitlementId: mod.string().nullish(),
|
|
31187
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
31188
|
+
quantity: mod.number().int().nullish(),
|
|
31189
|
+
itemId: mod.string().nullish(),
|
|
31190
|
+
itemSku: mod.string().nullish(),
|
|
31191
|
+
revocationStrategy: mod.string().nullish(),
|
|
31192
|
+
skipped: mod.boolean().nullish(),
|
|
31193
|
+
reason: mod.string().nullish()
|
|
31194
|
+
});
|
|
31195
|
+
|
|
31196
|
+
/*
|
|
31197
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
31198
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
31199
|
+
* and restrictions contact your company contract manager.
|
|
31200
|
+
*/
|
|
31201
|
+
const ItemRevocation = mod.lazy(() => mod.object({
|
|
31202
|
+
itemId: mod.string().nullish(),
|
|
31203
|
+
itemSku: mod.string().nullish(),
|
|
31204
|
+
itemType: mod
|
|
31205
|
+
.enum(['APP', 'COINS', 'INGAMEITEM', 'BUNDLE', 'CODE', 'SUBSCRIPTION', 'SEASON', 'MEDIA', 'OPTIONBOX', 'EXTENSION', 'LOOTBOX'])
|
|
31206
|
+
.nullish(),
|
|
31207
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
31208
|
+
skipped: mod.boolean().nullish(),
|
|
31209
|
+
quantity: mod.number().int().nullish(),
|
|
31210
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
31211
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
31212
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish()
|
|
31213
|
+
}));
|
|
31214
|
+
|
|
31215
|
+
/*
|
|
31216
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
31217
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
31218
|
+
* and restrictions contact your company contract manager.
|
|
31219
|
+
*/
|
|
31220
|
+
const RevocationResult = mod.object({
|
|
31221
|
+
id: mod.string(),
|
|
31222
|
+
status: mod.enum(['SUCCESS', 'FAIL']),
|
|
31223
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
31224
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
31225
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish()
|
|
31226
|
+
});
|
|
31227
|
+
|
|
31170
31228
|
/*
|
|
31171
31229
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
31172
31230
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -31199,10 +31257,13 @@ const DlcRecord = mod.object({
|
|
|
31199
31257
|
id: mod.string().nullish(),
|
|
31200
31258
|
obtainedAt: mod.string().nullish(),
|
|
31201
31259
|
rewards: mod.array(PlatformReward).nullish(),
|
|
31202
|
-
status: mod.enum(['REVOKED', 'FULFILLED']).nullish(),
|
|
31260
|
+
status: mod.enum(['REVOKED', 'FULFILLED', 'REVOKE_FAILED']).nullish(),
|
|
31203
31261
|
revokedAt: mod.string().nullish(),
|
|
31262
|
+
transactionId: mod.string().nullish(),
|
|
31204
31263
|
revokeResults: mod.array(RevokeResult).nullish(),
|
|
31205
|
-
|
|
31264
|
+
revocationResult: RevocationResult.nullish(),
|
|
31265
|
+
sources: mod.array(mod.string()).nullish(),
|
|
31266
|
+
version: mod.number().int().nullish()
|
|
31206
31267
|
});
|
|
31207
31268
|
|
|
31208
31269
|
/*
|
|
@@ -31469,7 +31530,7 @@ const Order = mod.object({
|
|
|
31469
31530
|
'DELETED'
|
|
31470
31531
|
])
|
|
31471
31532
|
.nullish(),
|
|
31472
|
-
creationOptions:
|
|
31533
|
+
creationOptions: OrderCreationOptions.nullish(),
|
|
31473
31534
|
sandbox: mod.boolean().nullish(),
|
|
31474
31535
|
itemId: mod.string().nullish(),
|
|
31475
31536
|
quantity: mod.number().int().nullish(),
|
|
@@ -31622,7 +31683,7 @@ const AdminOrderCreate = mod.object({
|
|
|
31622
31683
|
ext: mod.record(mod.any()).nullish(),
|
|
31623
31684
|
sandbox: mod.boolean().nullish(),
|
|
31624
31685
|
platform: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Nintendo', 'Other']).nullish(),
|
|
31625
|
-
options:
|
|
31686
|
+
options: OrderCreationOptions.nullish(),
|
|
31626
31687
|
currencyNamespace: mod.string().nullish()
|
|
31627
31688
|
});
|
|
31628
31689
|
|
|
@@ -32339,6 +32400,135 @@ const PaymentUrlCreate = mod.object({
|
|
|
32339
32400
|
ui: mod.string().nullish()
|
|
32340
32401
|
});
|
|
32341
32402
|
|
|
32403
|
+
/*
|
|
32404
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32405
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32406
|
+
* and restrictions contact your company contract manager.
|
|
32407
|
+
*/
|
|
32408
|
+
const DurableEntitlementRevocationConfig = mod.object({
|
|
32409
|
+
enabled: mod.boolean().nullish(),
|
|
32410
|
+
strategy: mod.enum(['REVOKE_OR_REPORT']).nullish()
|
|
32411
|
+
});
|
|
32412
|
+
|
|
32413
|
+
/*
|
|
32414
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32415
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32416
|
+
* and restrictions contact your company contract manager.
|
|
32417
|
+
*/
|
|
32418
|
+
const EntitlementRevocationConfig = mod.object({ durable: DurableEntitlementRevocationConfig.nullish() });
|
|
32419
|
+
|
|
32420
|
+
/*
|
|
32421
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32422
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32423
|
+
* and restrictions contact your company contract manager.
|
|
32424
|
+
*/
|
|
32425
|
+
const WalletRevocationConfig = mod.object({
|
|
32426
|
+
enabled: mod.boolean().nullish(),
|
|
32427
|
+
strategy: mod.enum(['REVOKE_OR_REPORT', 'ALWAYS_REVOKE']).nullish()
|
|
32428
|
+
});
|
|
32429
|
+
|
|
32430
|
+
/*
|
|
32431
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32432
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32433
|
+
* and restrictions contact your company contract manager.
|
|
32434
|
+
*/
|
|
32435
|
+
const RevocationConfigInfo = mod.object({
|
|
32436
|
+
namespace: mod.string().nullish(),
|
|
32437
|
+
entitlement: EntitlementRevocationConfig.nullish(),
|
|
32438
|
+
wallet: WalletRevocationConfig.nullish()
|
|
32439
|
+
});
|
|
32440
|
+
|
|
32441
|
+
/*
|
|
32442
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32443
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32444
|
+
* and restrictions contact your company contract manager.
|
|
32445
|
+
*/
|
|
32446
|
+
const RevocationConfigUpdate = mod.object({
|
|
32447
|
+
entitlement: EntitlementRevocationConfig.nullish(),
|
|
32448
|
+
wallet: WalletRevocationConfig.nullish()
|
|
32449
|
+
});
|
|
32450
|
+
|
|
32451
|
+
/*
|
|
32452
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32453
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32454
|
+
* and restrictions contact your company contract manager.
|
|
32455
|
+
*/
|
|
32456
|
+
const RevokeCurrency = mod.object({
|
|
32457
|
+
namespace: mod.string().nullish(),
|
|
32458
|
+
currencyCode: mod.string().nullish(),
|
|
32459
|
+
balanceOrigin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish()
|
|
32460
|
+
});
|
|
32461
|
+
|
|
32462
|
+
/*
|
|
32463
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32464
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32465
|
+
* and restrictions contact your company contract manager.
|
|
32466
|
+
*/
|
|
32467
|
+
const RevokeEntitlement = mod.object({ entitlementId: mod.string().nullish() });
|
|
32468
|
+
|
|
32469
|
+
/*
|
|
32470
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32471
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32472
|
+
* and restrictions contact your company contract manager.
|
|
32473
|
+
*/
|
|
32474
|
+
const RevokeItem = mod.object({
|
|
32475
|
+
itemIdentityType: mod.enum(['ITEM_ID', 'ITEM_SKU']).nullish(),
|
|
32476
|
+
itemIdentity: mod.string().nullish(),
|
|
32477
|
+
origin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish()
|
|
32478
|
+
});
|
|
32479
|
+
|
|
32480
|
+
/*
|
|
32481
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32482
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32483
|
+
* and restrictions contact your company contract manager.
|
|
32484
|
+
*/
|
|
32485
|
+
const RevokeEntry = mod.object({
|
|
32486
|
+
type: mod.enum(['ITEM', 'CURRENCY', 'ENTITLEMENT']).nullish(),
|
|
32487
|
+
item: RevokeItem.nullish(),
|
|
32488
|
+
entitlement: RevokeEntitlement.nullish(),
|
|
32489
|
+
currency: RevokeCurrency.nullish(),
|
|
32490
|
+
quantity: mod.number().int().nullish()
|
|
32491
|
+
});
|
|
32492
|
+
|
|
32493
|
+
/*
|
|
32494
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32495
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32496
|
+
* and restrictions contact your company contract manager.
|
|
32497
|
+
*/
|
|
32498
|
+
const RevocationHistoryInfo = mod.object({
|
|
32499
|
+
id: mod.string().nullish(),
|
|
32500
|
+
namespace: mod.string().nullish(),
|
|
32501
|
+
userId: mod.string().nullish(),
|
|
32502
|
+
meta: mod.record(mod.any()).nullish(),
|
|
32503
|
+
source: mod.string().nullish(),
|
|
32504
|
+
status: mod.enum(['SUCCESS', 'FAIL']).nullish(),
|
|
32505
|
+
revokeEntries: mod.array(RevokeEntry).nullish(),
|
|
32506
|
+
itemRevocations: mod.array(ItemRevocation).nullish(),
|
|
32507
|
+
creditRevocations: mod.array(CreditRevocation).nullish(),
|
|
32508
|
+
entitlementRevocations: mod.array(EntitlementRevocation).nullish(),
|
|
32509
|
+
createdAt: mod.string().nullish(),
|
|
32510
|
+
updatedAt: mod.string().nullish()
|
|
32511
|
+
});
|
|
32512
|
+
|
|
32513
|
+
/*
|
|
32514
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32515
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32516
|
+
* and restrictions contact your company contract manager.
|
|
32517
|
+
*/
|
|
32518
|
+
const RevocationHistoryPagingSlicedResult = mod.object({ data: mod.array(RevocationHistoryInfo), paging: Paging$1.nullish() });
|
|
32519
|
+
|
|
32520
|
+
/*
|
|
32521
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32522
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32523
|
+
* and restrictions contact your company contract manager.
|
|
32524
|
+
*/
|
|
32525
|
+
const RevocationRequest = mod.object({
|
|
32526
|
+
revokeEntries: mod.array(RevokeEntry).nullish(),
|
|
32527
|
+
source: mod.enum(['DLC', 'ORDER', 'OTHER']).nullish(),
|
|
32528
|
+
transactionId: mod.string().nullish(),
|
|
32529
|
+
meta: mod.record(mod.any()).nullish()
|
|
32530
|
+
});
|
|
32531
|
+
|
|
32342
32532
|
/*
|
|
32343
32533
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32344
32534
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -32536,6 +32726,18 @@ const DetailedWalletTransactionPagingSlicedResult = mod.object({
|
|
|
32536
32726
|
*/
|
|
32537
32727
|
const DebitRequest = mod.object({ amount: mod.number().int(), reason: mod.string().nullish() });
|
|
32538
32728
|
|
|
32729
|
+
/*
|
|
32730
|
+
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32731
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
32732
|
+
* and restrictions contact your company contract manager.
|
|
32733
|
+
*/
|
|
32734
|
+
const DebitByCurrencyCodeRequest = mod.object({
|
|
32735
|
+
amount: mod.number().int(),
|
|
32736
|
+
reason: mod.string().nullish(),
|
|
32737
|
+
balanceOrigin: mod.enum(['Playstation', 'Xbox', 'Steam', 'Epic', 'IOS', 'GooglePlay', 'Twitch', 'Nintendo', 'System', 'Other']).nullish(),
|
|
32738
|
+
allowOverdraft: mod.boolean().nullish()
|
|
32739
|
+
});
|
|
32740
|
+
|
|
32539
32741
|
/*
|
|
32540
32742
|
* Copyright (c) 2022-2023 AccelByte Inc. All Rights Reserved
|
|
32541
32743
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -32599,7 +32801,7 @@ class UserAction$ {
|
|
|
32599
32801
|
/**
|
|
32600
32802
|
* 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>
|
|
32601
32803
|
*/
|
|
32602
|
-
|
|
32804
|
+
postV1NsUsersByUseridActionsReport(userId, data) {
|
|
32603
32805
|
const params = {};
|
|
32604
32806
|
const url = '/basic/v1/public/namespaces/{namespace}/users/{userId}/actions/report'
|
|
32605
32807
|
.replace('{namespace}', this.namespace)
|
|
@@ -32898,7 +33100,7 @@ class Drm$ {
|
|
|
32898
33100
|
/**
|
|
32899
33101
|
* 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>
|
|
32900
33102
|
*/
|
|
32901
|
-
|
|
33103
|
+
fetchNsDrmlicenseEncrypt(queryParams) {
|
|
32902
33104
|
const params = { ...queryParams };
|
|
32903
33105
|
const url = '/buildinfo/public/namespaces/{namespace}/drmlicense/encrypt'.replace('{namespace}', this.namespace);
|
|
32904
33106
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -32912,7 +33114,7 @@ class Drm$ {
|
|
|
32912
33114
|
/**
|
|
32913
33115
|
* 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>
|
|
32914
33116
|
*/
|
|
32915
|
-
|
|
33117
|
+
fetchNsDrmlicenseRetrievePublicKey() {
|
|
32916
33118
|
const params = {};
|
|
32917
33119
|
const url = '/buildinfo/public/namespaces/{namespace}/drmlicense/retrievePublicKey'.replace('{namespace}', this.namespace);
|
|
32918
33120
|
const resultPromise = this.axiosInstance.get(url, { params });
|
|
@@ -33333,7 +33535,7 @@ class LocalizedPolicyVersionsWithNamespace$ {
|
|
|
33333
33535
|
/**
|
|
33334
33536
|
* 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>
|
|
33335
33537
|
*/
|
|
33336
|
-
|
|
33538
|
+
fetchNsLocalizedPolicyVersionsByLocalizedpolicyversionid(localizedPolicyVersionId) {
|
|
33337
33539
|
const params = {};
|
|
33338
33540
|
const url = '/agreement/public/namespaces/{namespace}/localized-policy-versions/{localizedPolicyVersionId}'
|
|
33339
33541
|
.replace('{namespace}', this.namespace)
|
|
@@ -33961,7 +34163,7 @@ class StaticConfigs$ {
|
|
|
33961
34163
|
this.namespace = namespace;
|
|
33962
34164
|
this.cache = cache;
|
|
33963
34165
|
}
|
|
33964
|
-
|
|
34166
|
+
fetchV1NsStaticConfigsByConfig(config) {
|
|
33965
34167
|
const params = {};
|
|
33966
34168
|
const url = '/odin-config/v1/public/namespaces/{namespace}/staticConfigs/{config}'
|
|
33967
34169
|
.replace('{namespace}', this.namespace)
|
|
@@ -34001,7 +34203,6 @@ const EligibleUser = UserResponseV4.pick({
|
|
|
34001
34203
|
emailVerified: true,
|
|
34002
34204
|
displayName: true,
|
|
34003
34205
|
country: true,
|
|
34004
|
-
dateOfBirth: true,
|
|
34005
34206
|
emailAddress: true,
|
|
34006
34207
|
bans: true,
|
|
34007
34208
|
username: true,
|
|
@@ -38534,6 +38735,17 @@ mod.enum([
|
|
|
38534
38735
|
CommonValidationErrorType.enum.alreadyUsed
|
|
38535
38736
|
]);
|
|
38536
38737
|
|
|
38738
|
+
/*
|
|
38739
|
+
* Copyright (c) 2020. AccelByte Inc. All Rights Reserved
|
|
38740
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
38741
|
+
* and restrictions contact your company contract manager.
|
|
38742
|
+
*/
|
|
38743
|
+
mod.enum([
|
|
38744
|
+
...ValidateLengthErrorType.options,
|
|
38745
|
+
CommonValidationErrorType.enum.invalidFormat,
|
|
38746
|
+
CommonValidationErrorType.enum.alreadyUsed
|
|
38747
|
+
]);
|
|
38748
|
+
|
|
38537
38749
|
/*
|
|
38538
38750
|
* Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
|
|
38539
38751
|
* This is licensed software from AccelByte Inc, for limitations
|
|
@@ -39122,21 +39334,26 @@ const ERROR_CODE_TOKEN_EXPIRED = 10196;
|
|
|
39122
39334
|
const ERROR_USER_BANNED = 10134;
|
|
39123
39335
|
|
|
39124
39336
|
/*
|
|
39125
|
-
* Copyright (c)
|
|
39337
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
39126
39338
|
* This is licensed software from AccelByte Inc, for limitations
|
|
39127
39339
|
* and restrictions contact your company contract manager.
|
|
39128
39340
|
*/
|
|
39129
|
-
|
|
39130
|
-
|
|
39131
|
-
|
|
39132
|
-
|
|
39133
|
-
|
|
39134
|
-
|
|
39135
|
-
|
|
39341
|
+
var BackgroundOverlayType;
|
|
39342
|
+
(function (BackgroundOverlayType) {
|
|
39343
|
+
BackgroundOverlayType["GRADIENT"] = "gradient";
|
|
39344
|
+
BackgroundOverlayType["FULL"] = "full";
|
|
39345
|
+
})(BackgroundOverlayType || (BackgroundOverlayType = {}));
|
|
39346
|
+
const BackgroundOverlay = mod.object({
|
|
39347
|
+
isEnabled: mod.boolean(),
|
|
39348
|
+
type: mod.nativeEnum(BackgroundOverlayType),
|
|
39349
|
+
/** Number between 0-100. The bigger, the more solid the color will be. */
|
|
39350
|
+
opacity: mod.number().min(0).max(100)
|
|
39136
39351
|
});
|
|
39137
39352
|
const LogoVariantConfig = mod.object({
|
|
39138
|
-
|
|
39139
|
-
|
|
39353
|
+
/** The index of the image located in the `companyLogo` inside the discovery configs. */
|
|
39354
|
+
header: mod.number().nullable(),
|
|
39355
|
+
/** The index of the image located in the `companyLogo` inside the discovery configs. */
|
|
39356
|
+
footer: mod.number().nullable()
|
|
39140
39357
|
});
|
|
39141
39358
|
const ColorConfig = mod.object({
|
|
39142
39359
|
hex: mod.string(),
|
|
@@ -39145,21 +39362,7 @@ const ColorConfig = mod.object({
|
|
|
39145
39362
|
g: mod.number(),
|
|
39146
39363
|
b: mod.number(),
|
|
39147
39364
|
a: mod.number()
|
|
39148
|
-
})
|
|
39149
|
-
hsl: mod.object({
|
|
39150
|
-
h: mod.number(),
|
|
39151
|
-
s: mod.number(),
|
|
39152
|
-
l: mod.number(),
|
|
39153
|
-
a: mod.number()
|
|
39154
|
-
}),
|
|
39155
|
-
hsv: mod.object({
|
|
39156
|
-
h: mod.number(),
|
|
39157
|
-
s: mod.number(),
|
|
39158
|
-
v: mod.number(),
|
|
39159
|
-
a: mod.number()
|
|
39160
|
-
}),
|
|
39161
|
-
oldHue: mod.number(),
|
|
39162
|
-
source: mod.string()
|
|
39365
|
+
})
|
|
39163
39366
|
});
|
|
39164
39367
|
const ColorConfigs = mod.object({
|
|
39165
39368
|
background: ColorConfig,
|
|
@@ -39170,13 +39373,51 @@ const ColorConfigs = mod.object({
|
|
|
39170
39373
|
text: ColorConfig
|
|
39171
39374
|
});
|
|
39172
39375
|
const FontConfigs = mod.object({
|
|
39376
|
+
/**
|
|
39377
|
+
* The font-family that will be used for the body. Supported default fonts are as the following:
|
|
39378
|
+
* 'Exo', 'Rubik', 'Roboto', 'Inter', and 'Poppins'.
|
|
39379
|
+
**/
|
|
39173
39380
|
body: mod.string(),
|
|
39174
|
-
|
|
39381
|
+
/** The public URL of the font, if you want to use custom font. */
|
|
39175
39382
|
customBodyFontUrl: mod.string(),
|
|
39383
|
+
/**
|
|
39384
|
+
* The font-family that will be used for the headings (including buttons). Supported default fonts are as the following:
|
|
39385
|
+
* 'Exo', 'Rubik', 'Roboto', 'Inter', and 'Poppins'.
|
|
39386
|
+
**/
|
|
39176
39387
|
title: mod.string(),
|
|
39177
|
-
|
|
39388
|
+
/** The public URL of the font, if you want to use custom font. */
|
|
39178
39389
|
customTitleFontUrl: mod.string()
|
|
39179
39390
|
});
|
|
39391
|
+
const PageConfig = mod.object({
|
|
39392
|
+
templatePreview: mod.string().optional(),
|
|
39393
|
+
/** When enabled, then it will use the styles defined in the `global.colors` and `global.fonts`. */
|
|
39394
|
+
isLocalStyleEnabled: mod.boolean(),
|
|
39395
|
+
global: mod.object({
|
|
39396
|
+
colors: mod.object({
|
|
39397
|
+
primary: ColorConfig,
|
|
39398
|
+
secondary: ColorConfig,
|
|
39399
|
+
text: ColorConfig,
|
|
39400
|
+
overlay: ColorConfig,
|
|
39401
|
+
background: ColorConfig,
|
|
39402
|
+
card: ColorConfig
|
|
39403
|
+
}),
|
|
39404
|
+
fonts: FontConfigs
|
|
39405
|
+
})
|
|
39406
|
+
});
|
|
39407
|
+
|
|
39408
|
+
/*
|
|
39409
|
+
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
|
|
39410
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39411
|
+
* and restrictions contact your company contract manager.
|
|
39412
|
+
*/
|
|
39413
|
+
const CompanyLogo = mod.object({
|
|
39414
|
+
url: mod.string(),
|
|
39415
|
+
name: mod.string()
|
|
39416
|
+
});
|
|
39417
|
+
const CompanyLogoConfig = mod.object({
|
|
39418
|
+
images: mod.array(CompanyLogo),
|
|
39419
|
+
defaultIndex: mod.number()
|
|
39420
|
+
});
|
|
39180
39421
|
const GlobalStyleConfig = mod.object({
|
|
39181
39422
|
global: mod.object({
|
|
39182
39423
|
colors: ColorConfigs,
|
|
@@ -39192,6 +39433,127 @@ const TemplateInfoConfig = mod.object({
|
|
|
39192
39433
|
draft: mod.string(),
|
|
39193
39434
|
published: mod.string()
|
|
39194
39435
|
});
|
|
39436
|
+
var TemplateConfig;
|
|
39437
|
+
(function (TemplateConfig) {
|
|
39438
|
+
TemplateConfig["SINGLE"] = "single-game";
|
|
39439
|
+
TemplateConfig["MULTIPLE"] = "multiple-game";
|
|
39440
|
+
})(TemplateConfig || (TemplateConfig = {}));
|
|
39441
|
+
const PlayerPortalFeatureFlagsConfig = mod.object({
|
|
39442
|
+
/**
|
|
39443
|
+
* Determines whether "Account Overview" menu in Accounts page is visible or not.
|
|
39444
|
+
*
|
|
39445
|
+
* Defaults to `true`.
|
|
39446
|
+
**/
|
|
39447
|
+
isAccountOverviewVisible: mod.boolean().default(true),
|
|
39448
|
+
/**
|
|
39449
|
+
* Determines whether "Change Password" menu in Accounts page and profile dropdown are visible or not.
|
|
39450
|
+
*
|
|
39451
|
+
* Defaults to `true`.
|
|
39452
|
+
**/
|
|
39453
|
+
isChangePasswordVisible: mod.boolean().default(true),
|
|
39454
|
+
/**
|
|
39455
|
+
* Determines whether "Delete Account" menu in Accounts page is visible or not.
|
|
39456
|
+
*
|
|
39457
|
+
* Defaults to `true`.
|
|
39458
|
+
**/
|
|
39459
|
+
isDeleteAccountVisible: mod.boolean().default(true),
|
|
39460
|
+
/**
|
|
39461
|
+
* Determines whether the "Get Launcher" button is visible or not.
|
|
39462
|
+
*
|
|
39463
|
+
* Defaults to `true`.
|
|
39464
|
+
**/
|
|
39465
|
+
isGetLauncherVisible: mod.boolean().default(true),
|
|
39466
|
+
/**
|
|
39467
|
+
* Determines whether "Linked Accounts" menu in Accounts page is visible or not.
|
|
39468
|
+
*
|
|
39469
|
+
* Defaults to `true`.
|
|
39470
|
+
**/
|
|
39471
|
+
isLinkedAccountsVisible: mod.boolean().default(true),
|
|
39472
|
+
/**
|
|
39473
|
+
* Determines whether "My Profile" menu in Accounts page is visible or not.
|
|
39474
|
+
*
|
|
39475
|
+
* Defaults to `true`.
|
|
39476
|
+
**/
|
|
39477
|
+
isMyProfileVisible: mod.boolean().default(true),
|
|
39478
|
+
/**
|
|
39479
|
+
* Determines whether "News" feature is visible or not.
|
|
39480
|
+
*
|
|
39481
|
+
* Defaults to `false`.
|
|
39482
|
+
**/
|
|
39483
|
+
isNewsVisible: mod.boolean().default(false),
|
|
39484
|
+
/**
|
|
39485
|
+
* Determines whether "Notifications" feature is visible or not.
|
|
39486
|
+
*
|
|
39487
|
+
* Defaults to `false`.
|
|
39488
|
+
**/
|
|
39489
|
+
isNotificationsVisible: mod.boolean().default(false),
|
|
39490
|
+
/**
|
|
39491
|
+
* Determines whether "Order History" menu in Accounts page and profile dropdown are visible or not.
|
|
39492
|
+
*
|
|
39493
|
+
* Defaults to `true`.
|
|
39494
|
+
**/
|
|
39495
|
+
isOrderHistoryVisible: mod.boolean().default(true),
|
|
39496
|
+
/**
|
|
39497
|
+
* Determines whether "Payment Methods" menu in Accounts page is visible or not.
|
|
39498
|
+
*
|
|
39499
|
+
* Defaults to `true`.
|
|
39500
|
+
**/
|
|
39501
|
+
isPaymentMethodsVisible: mod.boolean().default(true),
|
|
39502
|
+
/**
|
|
39503
|
+
* Determines whether "Personal Data" menu in Accounts page is visible or not.
|
|
39504
|
+
*
|
|
39505
|
+
* Defaults to `true`.
|
|
39506
|
+
**/
|
|
39507
|
+
isPersonalDataVisible: mod.boolean().default(true),
|
|
39508
|
+
/**
|
|
39509
|
+
* Determines whether "Privacy Records" menu in Accounts page is visible or not.
|
|
39510
|
+
*
|
|
39511
|
+
* Defaults to `true`.
|
|
39512
|
+
**/
|
|
39513
|
+
isPrivacyRecordsVisible: mod.boolean().default(true),
|
|
39514
|
+
/**
|
|
39515
|
+
* Determines whether "Purchased Items" menu in Accounts page is visible or not.
|
|
39516
|
+
*
|
|
39517
|
+
* Defaults to `true`.
|
|
39518
|
+
**/
|
|
39519
|
+
isPurchasedItemsVisible: mod.boolean().default(true),
|
|
39520
|
+
/**
|
|
39521
|
+
* Determines whether "Redeem Code" menu in Accounts page and profile dropdown are visible or not.
|
|
39522
|
+
*
|
|
39523
|
+
* Defaults to `true`.
|
|
39524
|
+
**/
|
|
39525
|
+
isRedeemCodeVisible: mod.boolean().default(true),
|
|
39526
|
+
/**
|
|
39527
|
+
* Determines whether "Store" feature is visible or not.
|
|
39528
|
+
*
|
|
39529
|
+
* Defaults to `true`.
|
|
39530
|
+
**/
|
|
39531
|
+
isStoreVisible: mod.boolean().default(true),
|
|
39532
|
+
/**
|
|
39533
|
+
* Determines whether "Subscriptions" feature is visible or not.
|
|
39534
|
+
*
|
|
39535
|
+
* Defaults to `false`.
|
|
39536
|
+
**/
|
|
39537
|
+
isSubscriptionsVisible: mod.boolean().default(false),
|
|
39538
|
+
/**
|
|
39539
|
+
* Determines whether "Support" feature is visible or not.
|
|
39540
|
+
*
|
|
39541
|
+
* Defaults to `false`.
|
|
39542
|
+
**/
|
|
39543
|
+
isSupportVisible: mod.boolean().default(false),
|
|
39544
|
+
/**
|
|
39545
|
+
* Determines whether "Virtual Currency" feature is visible or not.
|
|
39546
|
+
*
|
|
39547
|
+
* Defaults to `false`.
|
|
39548
|
+
**/
|
|
39549
|
+
isVirtualCurrencyVisible: mod.boolean().default(false),
|
|
39550
|
+
/**
|
|
39551
|
+
* Determines whether the "News" (unreleased) feature is visible or not.
|
|
39552
|
+
*
|
|
39553
|
+
* Defaults to `false`.
|
|
39554
|
+
**/
|
|
39555
|
+
isNewsV2Visible: mod.boolean().default(false)
|
|
39556
|
+
});
|
|
39195
39557
|
const DiscoveryConfigData = mod.object({
|
|
39196
39558
|
ppTemplateInfo: Config.merge(mod.object({
|
|
39197
39559
|
data: TemplateInfoConfig
|
|
@@ -39208,7 +39570,9 @@ const DiscoveryConfigData = mod.object({
|
|
|
39208
39570
|
paymentTemplateInfo: Config.merge(mod.object({
|
|
39209
39571
|
data: TemplateInfoConfig
|
|
39210
39572
|
})),
|
|
39211
|
-
ppFeatureFlags: Config
|
|
39573
|
+
ppFeatureFlags: Config.merge(mod.object({
|
|
39574
|
+
data: PlayerPortalFeatureFlagsConfig
|
|
39575
|
+
})),
|
|
39212
39576
|
launcherFeatureFlags: Config,
|
|
39213
39577
|
loginFeatureFlags: Config,
|
|
39214
39578
|
experimentalFeatureFlags: Config,
|
|
@@ -39238,7 +39602,7 @@ const DiscoveryConfigData = mod.object({
|
|
|
39238
39602
|
})),
|
|
39239
39603
|
templateConfig: Config.merge(mod.object({
|
|
39240
39604
|
data: mod.object({
|
|
39241
|
-
value: mod.
|
|
39605
|
+
value: mod.union([mod.literal(`${TemplateConfig.SINGLE}`), mod.literal(`${TemplateConfig.MULTIPLE}`)])
|
|
39242
39606
|
})
|
|
39243
39607
|
})),
|
|
39244
39608
|
appId: Config.merge(mod.object({
|
|
@@ -39261,11 +39625,97 @@ const DiscoveryConfigData = mod.object({
|
|
|
39261
39625
|
value: mod.string()
|
|
39262
39626
|
})
|
|
39263
39627
|
}))
|
|
39264
|
-
});
|
|
39265
|
-
|
|
39628
|
+
});
|
|
39629
|
+
|
|
39630
|
+
/*
|
|
39631
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
39632
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39633
|
+
* and restrictions contact your company contract manager.
|
|
39634
|
+
*/
|
|
39635
|
+
var PlayerPortalHomePageKeys;
|
|
39636
|
+
(function (PlayerPortalHomePageKeys) {
|
|
39637
|
+
PlayerPortalHomePageKeys["IS_DISABLED"] = "isDisabled";
|
|
39638
|
+
PlayerPortalHomePageKeys["REDIRECTION_URL"] = "redirectionURL";
|
|
39639
|
+
PlayerPortalHomePageKeys["SITE_BRAND_URL"] = "siteBrandURL";
|
|
39640
|
+
})(PlayerPortalHomePageKeys || (PlayerPortalHomePageKeys = {}));
|
|
39641
|
+
const PlayerPortalHomepageConfig = mod.object({
|
|
39266
39642
|
isDisabled: mod.boolean(),
|
|
39267
39643
|
redirectionURL: mod.string(),
|
|
39268
39644
|
siteBrandURL: mod.string()
|
|
39645
|
+
});
|
|
39646
|
+
var PlayerPortalFooterIDs;
|
|
39647
|
+
(function (PlayerPortalFooterIDs) {
|
|
39648
|
+
PlayerPortalFooterIDs["COPYRIGHT"] = "copyright";
|
|
39649
|
+
PlayerPortalFooterIDs["PRIVACY_POLICY"] = "privacyPolicy";
|
|
39650
|
+
PlayerPortalFooterIDs["LEGAL"] = "legal";
|
|
39651
|
+
PlayerPortalFooterIDs["TERMS_OF_USE"] = "termsOfUse";
|
|
39652
|
+
PlayerPortalFooterIDs["ADDITIONAL_1"] = "additional1";
|
|
39653
|
+
PlayerPortalFooterIDs["ADDITIONAL_2"] = "additional2";
|
|
39654
|
+
})(PlayerPortalFooterIDs || (PlayerPortalFooterIDs = {}));
|
|
39655
|
+
const PlayerPortalFooterConfigLink = mod.object({
|
|
39656
|
+
id: mod.string(),
|
|
39657
|
+
name: mod.string(),
|
|
39658
|
+
link: mod.string()
|
|
39659
|
+
});
|
|
39660
|
+
const PlayerPortalFooterConfig = mod.object({
|
|
39661
|
+
links: mod.array(PlayerPortalFooterConfigLink)
|
|
39662
|
+
});
|
|
39663
|
+
var PlayerPortalHomepageKeys;
|
|
39664
|
+
(function (PlayerPortalHomepageKeys) {
|
|
39665
|
+
PlayerPortalHomepageKeys["IS_DISABLED"] = "isDisabled";
|
|
39666
|
+
PlayerPortalHomepageKeys["REDIRECTION_URL"] = "redirectionURL";
|
|
39667
|
+
PlayerPortalHomepageKeys["SITE_BRAND_URL"] = "siteBrandURL";
|
|
39668
|
+
})(PlayerPortalHomepageKeys || (PlayerPortalHomepageKeys = {}));
|
|
39669
|
+
const PlayerPortalConfigData = mod.object({
|
|
39670
|
+
launcherDownloadLink: Config.merge(mod.object({
|
|
39671
|
+
data: mod.object({
|
|
39672
|
+
value: mod.string()
|
|
39673
|
+
})
|
|
39674
|
+
})),
|
|
39675
|
+
metaData: Config.merge(mod.object({
|
|
39676
|
+
data: mod.object({
|
|
39677
|
+
description: mod.string(),
|
|
39678
|
+
image: mod.string(),
|
|
39679
|
+
title: mod.string()
|
|
39680
|
+
})
|
|
39681
|
+
})),
|
|
39682
|
+
pageConfig: Config.merge(mod.object({
|
|
39683
|
+
data: PageConfig
|
|
39684
|
+
})),
|
|
39685
|
+
footer: Config.merge(mod.object({
|
|
39686
|
+
data: mod.object({
|
|
39687
|
+
value: PlayerPortalFooterConfig
|
|
39688
|
+
})
|
|
39689
|
+
})),
|
|
39690
|
+
homepage: Config.merge(mod.object({
|
|
39691
|
+
data: PlayerPortalHomepageConfig
|
|
39692
|
+
})),
|
|
39693
|
+
logoVariant: Config.merge(mod.object({
|
|
39694
|
+
data: LogoVariantConfig
|
|
39695
|
+
}))
|
|
39696
|
+
});
|
|
39697
|
+
|
|
39698
|
+
/*
|
|
39699
|
+
* Copyright (c) 2023 AccelByte Inc. All Rights Reserved
|
|
39700
|
+
* This is licensed software from AccelByte Inc, for limitations
|
|
39701
|
+
* and restrictions contact your company contract manager.
|
|
39702
|
+
*/
|
|
39703
|
+
const LauncherPageConfig = PageConfig.extend({
|
|
39704
|
+
loginPage: mod.object({
|
|
39705
|
+
template: mod.string(),
|
|
39706
|
+
background: mod.string(),
|
|
39707
|
+
boxLogo: mod.string(),
|
|
39708
|
+
boxTitle: mod.string(),
|
|
39709
|
+
boxInfo: mod.string(),
|
|
39710
|
+
boxButtonText: mod.string(),
|
|
39711
|
+
backgroundOverlay: BackgroundOverlay
|
|
39712
|
+
}),
|
|
39713
|
+
mainPage: mod.object({
|
|
39714
|
+
gameTitle: mod.string(),
|
|
39715
|
+
background: mod.string(),
|
|
39716
|
+
gameID: mod.string(),
|
|
39717
|
+
backgroundOverlay: BackgroundOverlay
|
|
39718
|
+
})
|
|
39269
39719
|
});
|
|
39270
39720
|
|
|
39271
39721
|
const DisplayedPolicy = mod.object({
|
|
@@ -39315,5 +39765,5 @@ CodeGenUtil.getFormUrlEncodedData = (data) => {
|
|
|
39315
39765
|
return formPayload;
|
|
39316
39766
|
};
|
|
39317
39767
|
|
|
39318
|
-
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 };
|
|
39768
|
+
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 };
|
|
39319
39769
|
//# sourceMappingURL=index.node.es.js.map
|