fw-webbuilder 1.1.210 → 1.1.213
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 +2 -1
package/index.d.ts
CHANGED
|
@@ -375,6 +375,8 @@ declare class webBuilderService {
|
|
|
375
375
|
generateAndWait(requestUrl: string): Observable<any>;
|
|
376
376
|
getProjectsByIdUser(query: any, sort: any, page: any, limit: any): Promise<any>;
|
|
377
377
|
updateExpiredAt(id_project: string, expired_at: string): Promise<any>;
|
|
378
|
+
getDashboard(startDate: string, endDate: string): Promise<Object>;
|
|
379
|
+
private getVisitorId;
|
|
378
380
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
379
381
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
380
382
|
}
|
package/package.json
CHANGED