@resolveio/client-lib-core 21.4.20 → 21.4.21

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.4.20",
3
+ "version": "21.4.21",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -88,6 +88,8 @@ interface CollectionDocument {
88
88
  __v?: number;
89
89
  createdAt?: Date;
90
90
  updatedAt?: Date;
91
+ is_sample_data?: boolean;
92
+ rio_sample_data?: boolean;
91
93
  }
92
94
 
93
95
  interface UserModel extends CollectionDocument {
@@ -1894,7 +1896,7 @@ declare class AiTerminalModule {
1894
1896
  }
1895
1897
 
1896
1898
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
1897
- resolveFirstDayOfWeek: () => "M" | "S";
1899
+ resolveFirstDayOfWeek: () => "S" | "M";
1898
1900
  resolveTimezone: () => any;
1899
1901
  };
1900
1902
  declare class CoreServicesModule {
@@ -2466,7 +2468,7 @@ interface CanComponentDeactivate {
2466
2468
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2467
2469
  }
2468
2470
  declare class CanDeactivateGuard {
2469
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2471
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2470
2472
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2471
2473
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2472
2474
  }