gap-nodejs-sdk 1.0.16 → 1.0.17

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.
@@ -1,6 +1,6 @@
1
1
  import { ResponseDataApi } from "src/base_type";
2
2
  import * as InputDataType from "../types";
3
3
  export default abstract class Call {
4
- static sendSms: (data: InputDataType.sendSms) => Promise<ResponseDataApi>;
4
+ static sendSms: (data: InputDataType.SendSms) => Promise<ResponseDataApi>;
5
5
  }
6
6
  //# sourceMappingURL=call.d.ts.map
@@ -1,4 +1,4 @@
1
- export declare type sendSms = {
1
+ export declare type SendSms = {
2
2
  phone: string;
3
3
  type: string;
4
4
  message: string;
@@ -2,6 +2,6 @@ import CallAbstractClass from "../../interface/call";
2
2
  import Base from "../../../base/Base";
3
3
  import * as InputDataType from "../../types";
4
4
  export default class Call extends Base implements CallAbstractClass {
5
- static sendSms(data: InputDataType.sendSms): Promise<any>;
5
+ static sendSms(data: InputDataType.SendSms): Promise<any>;
6
6
  }
7
7
  //# sourceMappingURL=call.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gap-nodejs-sdk",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "GCI App Platform Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",