fw-webbuilder 0.0.8 → 0.0.10
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/fesm2022/fw-webbuilder.mjs +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ declare class webBuilderService {
|
|
|
129
129
|
updateProject(id: string, data: any): Promise<any>;
|
|
130
130
|
deleteProject(id: string): Promise<any>;
|
|
131
131
|
getProjects_byFields(query: any, sort: any, page?: number, limit?: number): Promise<any>;
|
|
132
|
+
getTemplates_byFields(query: any, sort: any, page?: number, limit?: number): Promise<any>;
|
|
132
133
|
sortVietnamese(arr: string[]): string[];
|
|
133
134
|
getHeaderFooter(): void;
|
|
134
135
|
connectProject(_id: string): Promise<any>;
|
|
@@ -188,6 +189,7 @@ declare class webBuilderService {
|
|
|
188
189
|
deleteObject(id: string): any;
|
|
189
190
|
deleteObjectClone(object: any): Promise<any>;
|
|
190
191
|
upLoadImage(file: any, oldPath: string, newPath: string, options?: any): Promise<any>;
|
|
192
|
+
upLoadAdminImage(file: any, oldPath: string, newPath: string, options?: any): Promise<any>;
|
|
191
193
|
addCategory(data: any): Promise<any>;
|
|
192
194
|
updateCategory(id: string, data: any): Promise<any>;
|
|
193
195
|
deleteCategory(id: string): Promise<any>;
|