gap-nodejs-sdk 1.0.438 → 1.0.439

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.
@@ -38,7 +38,7 @@ export default class SMS extends Base {
38
38
  return __awaiter(this, void 0, void 0, function* () {
39
39
  const response = yield this.client.post({
40
40
  path: sms.SEND_SMS_VERIFY,
41
- query: data
41
+ data: data
42
42
  });
43
43
  return Model.SendSMSVerifyModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
44
44
  });
@@ -48,7 +48,7 @@ export default class SMS extends Base {
48
48
  return __awaiter(this, void 0, void 0, function* () {
49
49
  const response = yield this.client.post({
50
50
  path: sms.SUBMIT_VERIFY_CODE,
51
- query: data
51
+ data: data
52
52
  });
53
53
  return Model.SubmitVerifyCodeModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
54
54
  });