@accelbyte/sdk 0.1.1-alpha.46 → 0.1.1-alpha.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/index.browser.es.js +4 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.es.js +4 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +13 -28
package/dist/index.es.js
CHANGED
|
@@ -21469,7 +21469,10 @@ class UsersV4$ {
|
|
|
21469
21469
|
postV4UsersMeMfaEmailEnable(data) {
|
|
21470
21470
|
const params = {};
|
|
21471
21471
|
const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable'.replace('{namespace}', this.namespace);
|
|
21472
|
-
const resultPromise = this.axiosInstance.post(url, data, {
|
|
21472
|
+
const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
|
|
21473
|
+
...params,
|
|
21474
|
+
headers: { ...params.headers, 'content-type': 'application/x-www-form-urlencoded' }
|
|
21475
|
+
});
|
|
21473
21476
|
return Validate.responseType(() => resultPromise, mod.unknown());
|
|
21474
21477
|
}
|
|
21475
21478
|
/**
|