@resolveio/client-lib-core 21.0.31 → 21.0.33

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.0.31",
3
+ "version": "21.0.33",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -97,7 +97,7 @@ interface UserModel extends CollectionDocument {
97
97
  active: boolean;
98
98
  phonenumber: string;
99
99
  readonly: boolean;
100
- other: OtherObject;
100
+ other: any;
101
101
  attempts: number;
102
102
  salt: string;
103
103
  hash: string;
@@ -191,6 +191,8 @@ interface UserNotificationModel {
191
191
  type?: UserNotificationTypes;
192
192
  subtype?: UserNotificationSubTypes;
193
193
  data?: UserNotificationConfigModel;
194
+ id_yards?: string[];
195
+ id_users?: string[];
194
196
  [key: string]: any;
195
197
  }
196
198
  interface UserNotificationConfigModel {
@@ -1762,7 +1764,7 @@ interface CanComponentDeactivate {
1762
1764
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
1763
1765
  }
1764
1766
  declare class CanDeactivateGuard {
1765
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
1767
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
1766
1768
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
1767
1769
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1768
1770
  }