@resolveio/client-lib-core 21.6.24 → 21.6.26

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.24",
3
+ "version": "21.6.26",
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): 1 | 0;
313
- updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
312
+ updateDocument(collectionName: string, data: Object): 0 | 1;
313
+ updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
314
314
  removeDocument(collectionName: string, id: string): void;
315
315
  dropCollection(collectionName: any): void;
316
316
  static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
@@ -2277,7 +2277,7 @@ declare class AiTerminalModule {
2277
2277
  }
2278
2278
 
2279
2279
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
2280
- resolveFirstDayOfWeek: () => "M" | "S";
2280
+ resolveFirstDayOfWeek: () => "S" | "M";
2281
2281
  resolveTimezone: () => any;
2282
2282
  };
2283
2283
  declare class CoreServicesModule {
@@ -2619,7 +2619,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
2619
2619
  private runLogsQuery;
2620
2620
  private runLocalLogsQuery;
2621
2621
  selectType(type: string): void;
2622
- icon(type: any): "danger" | "info" | "success" | "primary" | "secondary";
2622
+ icon(type: any): "danger" | "success" | "info" | "primary" | "secondary";
2623
2623
  removeAllLogs(): void;
2624
2624
  toDate(value: any, isEnd?: boolean): Date;
2625
2625
  createPickerValue(date: Date, secondOverride?: any): {
@@ -3227,7 +3227,7 @@ interface CanComponentDeactivate {
3227
3227
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
3228
3228
  }
3229
3229
  declare class CanDeactivateGuard {
3230
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
3230
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
3231
3231
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
3232
3232
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
3233
3233
  }