@resolveio/client-lib-core 21.6.23 → 21.6.24
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/package.json
CHANGED
|
@@ -309,8 +309,8 @@ declare class OfflineManagerService {
|
|
|
309
309
|
find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
|
|
310
310
|
findOne(collectionName: string, query: Object): any;
|
|
311
311
|
insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
|
|
312
|
-
updateDocument(collectionName: string, data: Object):
|
|
313
|
-
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number):
|
|
312
|
+
updateDocument(collectionName: string, data: Object): 1 | 0;
|
|
313
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
|
|
314
314
|
removeDocument(collectionName: string, id: string): void;
|
|
315
315
|
dropCollection(collectionName: any): void;
|
|
316
316
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
@@ -2613,8 +2613,13 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2613
2613
|
ngOnInit(): void;
|
|
2614
2614
|
ngOnDestroy(): void;
|
|
2615
2615
|
getLogData(): void;
|
|
2616
|
+
private resolveDefaultClientName;
|
|
2617
|
+
private resolveLogsDataMode;
|
|
2618
|
+
private shouldUseLocalLogsOnly;
|
|
2619
|
+
private runLogsQuery;
|
|
2620
|
+
private runLocalLogsQuery;
|
|
2616
2621
|
selectType(type: string): void;
|
|
2617
|
-
icon(type: any): "danger" | "
|
|
2622
|
+
icon(type: any): "danger" | "info" | "success" | "primary" | "secondary";
|
|
2618
2623
|
removeAllLogs(): void;
|
|
2619
2624
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2620
2625
|
createPickerValue(date: Date, secondOverride?: any): {
|
|
@@ -3222,7 +3227,7 @@ interface CanComponentDeactivate {
|
|
|
3222
3227
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3223
3228
|
}
|
|
3224
3229
|
declare class CanDeactivateGuard {
|
|
3225
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3230
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3226
3231
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3227
3232
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3228
3233
|
}
|