@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/dist/index.js CHANGED
@@ -21488,7 +21488,10 @@ class UsersV4$ {
21488
21488
  postV4UsersMeMfaEmailEnable(data) {
21489
21489
  const params = {};
21490
21490
  const url = '/iam/v4/public/namespaces/{namespace}/users/me/mfa/email/enable'.replace('{namespace}', this.namespace);
21491
- const resultPromise = this.axiosInstance.post(url, data, { params });
21491
+ const resultPromise = this.axiosInstance.post(url, CodeGenUtil.getFormUrlEncodedData(data), {
21492
+ ...params,
21493
+ headers: { ...params.headers, 'content-type': 'application/x-www-form-urlencoded' }
21494
+ });
21492
21495
  return Validate.responseType(() => resultPromise, mod.unknown());
21493
21496
  }
21494
21497
  /**