@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;
|