@resolveio/client-lib-core 21.6.22 → 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,15 +309,15 @@ 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>;
|
|
317
317
|
static ɵprov: i0.ɵɵInjectableDeclaration<OfflineManagerService>;
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
type alertType = 'warning' | 'error' | 'success' | 'info' | 'update';
|
|
320
|
+
type alertType = 'warning' | 'error' | 'danger' | 'success' | 'info' | 'update';
|
|
321
321
|
|
|
322
322
|
declare class AlertService {
|
|
323
323
|
private _toastr;
|
|
@@ -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): "
|
|
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): {
|