fw-webbuilder 0.0.6 → 0.0.7
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 +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -295,6 +295,10 @@ declare class webBuilderService {
|
|
|
295
295
|
* @returns {string} ID đối tượng 24 ký tự hex
|
|
296
296
|
*/
|
|
297
297
|
generateObjectId(): string;
|
|
298
|
+
addAdminCategory(data: any): Promise<any>;
|
|
299
|
+
updateAdminCategory(id: string, data: any): Promise<any>;
|
|
300
|
+
deleteAdminCategory(id: string): Promise<any>;
|
|
301
|
+
getAdminCategories_byFields(query: any, sort: any, page?: number, limit?: number): Promise<any>;
|
|
298
302
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
299
303
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
300
304
|
}
|