@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.6.23",
3
+ "version": "21.6.24",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -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): 0 | 1;
313
- updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
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" | "success" | "info" | "primary" | "secondary";
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 | Observable<boolean> | Promise<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
  }