@be-link/ecs-cli-nodejs 0.0.37 → 0.0.39

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.
@@ -47,6 +47,7 @@ declare class VzanDataService extends BaseService implements Service.VzanDataCon
47
47
  storeId: string;
48
48
  }): Promise<Service.Response.IGetStoreQrCode>;
49
49
  getAllStoreBasicInfo(): Promise<Service.Response.IGetAllStoreBasicInfo[]>;
50
+ jobSyncVerifyInfoDetails(): Promise<void>;
50
51
  }
51
52
  declare const vzanDataService: VzanDataService;
52
53
  export default vzanDataService;
@@ -85,6 +85,9 @@ class VzanDataService extends service_1.default {
85
85
  async getAllStoreBasicInfo() {
86
86
  return (0, http_1.callApi)(this.getApiUrl(this.getAllStoreBasicInfo));
87
87
  }
88
+ async jobSyncVerifyInfoDetails() {
89
+ return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVerifyInfoDetails));
90
+ }
88
91
  }
89
92
  const vzanDataService = new VzanDataService();
90
93
  exports.default = vzanDataService;
@@ -112,5 +112,6 @@ export declare namespace Service {
112
112
  storeId: string;
113
113
  }): Promise<Response.IGetStoreQrCode>;
114
114
  getAllStoreBasicInfo(): Promise<Response.IGetAllStoreBasicInfo[]>;
115
+ jobSyncVerifyInfoDetails(): Promise<void>;
115
116
  }
116
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.37",
3
+ "version": "0.0.39",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {