@resolveio/client-lib-core 21.4.9 → 21.4.11

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.9",
3
+ "version": "21.4.11",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -330,8 +330,8 @@ declare class OfflineManagerService {
330
330
  find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
331
331
  findOne(collectionName: string, query: Object): any;
332
332
  insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
333
- updateDocument(collectionName: string, data: Object): 1 | 0;
334
- updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
333
+ updateDocument(collectionName: string, data: Object): 0 | 1;
334
+ updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
335
335
  removeDocument(collectionName: string, id: string): void;
336
336
  dropCollection(collectionName: any): void;
337
337
  static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
@@ -1170,6 +1170,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1170
1170
  private isLocalMessage;
1171
1171
  private isPendingAssistantMessage;
1172
1172
  private normalizeMessageContent;
1173
+ private normalizeUsdCurrencyText;
1173
1174
  private mergeProgressLists;
1174
1175
  private appendLocalMessage;
1175
1176
  private removeLocalMessage;
@@ -2418,7 +2419,7 @@ interface CanComponentDeactivate {
2418
2419
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2419
2420
  }
2420
2421
  declare class CanDeactivateGuard {
2421
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2422
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2422
2423
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2423
2424
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2424
2425
  }