@chase-shao/vue-component-lib 1.2.49 → 1.2.51
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/assets/js/util.d.ts +1 -1
- package/dist/components/data-gen/views/CreateView.vue.d.ts +12 -12
- package/dist/components/data-gen/views/UpdateView.vue.d.ts +12 -12
- package/dist/components/data-gen/widgets/CheckBox.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/FileUpload.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/InputNumber.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/InputText.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/TextArea.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/index.vue.d.ts +5 -5
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +943 -920
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/services/dataGen.d.ts +4 -3
- package/package.json +1 -1
|
@@ -138,8 +138,9 @@ export declare function getApprovers(): Promise<{
|
|
|
138
138
|
value: string;
|
|
139
139
|
}[]>;
|
|
140
140
|
export declare function assignApprover(workflowId: string, email: string): Promise<void>;
|
|
141
|
-
export declare function addComments(workflowId: string, email: string,
|
|
141
|
+
export declare function addComments(workflowId: string, email: string, comments: string): Promise<void>;
|
|
142
142
|
export declare function getCommentsHistory(workflowId: string): Promise<{
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
associator: string;
|
|
144
|
+
comments: string;
|
|
145
|
+
createdAt: string;
|
|
145
146
|
}[]>;
|