@resolveio/client-lib-core 21.3.3 → 21.3.5

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.3.3",
3
+ "version": "21.3.5",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -3,21 +3,21 @@ import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
3
  import * as i0 from '@angular/core';
4
4
  import { OnDestroy, OnInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, QueryList, ChangeDetectorRef, PipeTransform, ModuleWithProviders, Renderer2, NgZone } from '@angular/core';
5
5
  import { DeviceDetectorService } from 'ngx-device-detector';
6
- import * as i1 from '@angular/forms';
7
- import { FormControl, FormGroup, AbstractControl, FormBuilder } from '@angular/forms';
8
- import * as i2$1 from 'ngx-toastr';
6
+ import * as i2 from '@angular/forms';
7
+ import { FormControl, FormGroup, AbstractControl, FormBuilder, FormGroupDirective } from '@angular/forms';
8
+ import * as i2$2 from 'ngx-toastr';
9
9
  import { ToastrService, ActiveToast } from 'ngx-toastr';
10
- import * as i3 from '@angular/router';
10
+ import * as i4 from '@angular/router';
11
11
  import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
12
12
  import { HttpClient } from '@angular/common/http';
13
- import * as i4 from '@ng-bootstrap/ng-bootstrap';
13
+ import * as i5 from '@ng-bootstrap/ng-bootstrap';
14
14
  import { NgbModal, NgbModalOptions, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
15
- import * as i2 from '@angular/common';
15
+ import * as i2$1 from '@angular/common';
16
16
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
17
- import * as i9 from '@resolveio/client-lib-rio-select';
17
+ import * as i10 from '@resolveio/client-lib-rio-select';
18
18
  import { StickySelectPreference, RioSelectStickyAdapter } from '@resolveio/client-lib-rio-select';
19
- import * as i14 from '@resolveio/client-lib-date-picker';
20
- import * as i1$1 from '@angular/platform-browser/animations';
19
+ import * as i15 from '@resolveio/client-lib-date-picker';
20
+ import * as i1 from '@angular/platform-browser/animations';
21
21
  import * as i7 from 'ngx-file-drop';
22
22
  import * as i8 from '@resolveio/client-lib-pdf-viewer';
23
23
  import moment from 'moment-timezone';
@@ -626,7 +626,7 @@ interface DialogSelectWithButtonsOptionModel {
626
626
  declare class DialogService {
627
627
  private modalService;
628
628
  constructor(modalService: NgbModal);
629
- openDialog(content: any, options?: NgbModalOptions): i4.NgbModalRef;
629
+ openDialog(content: any, options?: NgbModalOptions): i5.NgbModalRef;
630
630
  notify(msg: string): void;
631
631
  input(title: string, inputFields: DialogInputFieldModel[]): Promise<any>;
632
632
  error(msg: string): void;
@@ -810,6 +810,15 @@ declare class HomeComponent extends BaseComponent implements OnInit {
810
810
  }
811
811
 
812
812
  type AiTerminalMode = 'openai' | 'codex';
813
+ type AiTerminalMongoAccess = 'read' | 'readWrite';
814
+ interface AiTerminalMongoConfig {
815
+ connectionId?: string;
816
+ connectionString?: string;
817
+ database?: string;
818
+ databases?: string[];
819
+ access?: AiTerminalMongoAccess;
820
+ readonly?: boolean;
821
+ }
813
822
  interface AiTerminalMethodNames {
814
823
  conversationCreate?: string;
815
824
  conversationUpdate?: string;
@@ -840,6 +849,8 @@ interface AiTerminalConfig$1 {
840
849
  maxTokens?: number;
841
850
  profileId?: string;
842
851
  methodNames?: AiTerminalMethodNames;
852
+ mongo?: AiTerminalMongoConfig;
853
+ pageRouterEnabled?: boolean;
843
854
  }
844
855
 
845
856
  type AiTerminalConversationStatus = 'active' | 'archived';
@@ -896,12 +907,114 @@ declare class AiTerminalService {
896
907
  static ɵprov: i0.ɵɵInjectableDeclaration<AiTerminalService>;
897
908
  }
898
909
 
910
+ type AiPageContextMode = 'current' | 'all';
911
+ interface AiPageContext {
912
+ route?: string;
913
+ mode?: AiPageContextMode;
914
+ idClient?: string;
915
+ idApp?: string;
916
+ featureFlags?: Record<string, boolean>;
917
+ metadata?: Record<string, any>;
918
+ }
919
+ interface AiPageRequest {
920
+ message: string;
921
+ context: AiPageContext;
922
+ }
923
+ interface AiPageResult {
924
+ handled: boolean;
925
+ reply?: string;
926
+ error?: string;
927
+ data?: Record<string, any>;
928
+ }
929
+ interface AiPageSchema {
930
+ allowed_fields?: Array<{
931
+ name: string;
932
+ type?: string;
933
+ label?: string;
934
+ enums?: string[];
935
+ }>;
936
+ field_catalog?: Array<{
937
+ field_path: string;
938
+ field_path_name?: string;
939
+ field_type?: string;
940
+ collection_name?: string;
941
+ }>;
942
+ }
943
+ interface AiPageAdapter {
944
+ id: string;
945
+ priority?: number;
946
+ matches(context: AiPageContext): boolean;
947
+ handle(request: AiPageRequest): Promise<AiPageResult>;
948
+ getSchema?: (context: AiPageContext) => Promise<AiPageSchema | null> | AiPageSchema | null;
949
+ getPatchFormat?: (context: AiPageContext) => Promise<string | null> | string | null;
950
+ validatePatch?: (patch: any, context: AiPageContext) => {
951
+ valid: boolean;
952
+ errors?: string[];
953
+ };
954
+ applyPatch?: (patch: any, context: AiPageContext) => Promise<void> | void;
955
+ fieldCatalog?: (context: AiPageContext) => Promise<any> | any;
956
+ }
957
+
958
+ declare class AiPageRouterService {
959
+ private adapters;
960
+ registerAdapter(adapter: AiPageAdapter): () => void;
961
+ unregisterAdapter(adapter: AiPageAdapter): void;
962
+ getAdapter(context: AiPageContext): AiPageAdapter | null;
963
+ handleMessage(request: AiPageRequest): Promise<AiPageResult>;
964
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiPageRouterService, never>;
965
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiPageRouterService>;
966
+ }
967
+
968
+ type AiFormRegistryEntry = {
969
+ id: string;
970
+ form: FormGroup;
971
+ route?: string;
972
+ element?: HTMLElement | null;
973
+ label?: string;
974
+ };
975
+ declare class AiFormRegistryService {
976
+ private forms;
977
+ private counter;
978
+ registerForm(entry: Omit<AiFormRegistryEntry, 'id'>): () => void;
979
+ unregisterForm(entry: AiFormRegistryEntry | string): void;
980
+ getFormsForRoute(route?: string): AiFormRegistryEntry[];
981
+ private normalizeRoute;
982
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiFormRegistryService, never>;
983
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiFormRegistryService>;
984
+ }
985
+
986
+ declare class AiPageFormAdapterService implements AiPageAdapter {
987
+ private router;
988
+ private registry;
989
+ private terminal;
990
+ id: string;
991
+ priority: number;
992
+ constructor(router: AiPageRouterService, registry: AiFormRegistryService, terminal: AiTerminalService);
993
+ matches(_context: AiPageContext): boolean;
994
+ handle(request: AiPageRequest): Promise<AiPageResult>;
995
+ private buildPatchFormat;
996
+ private buildFieldCatalog;
997
+ private walkControls;
998
+ private inferType;
999
+ private normalizePatchFields;
1000
+ private normalizePatchField;
1001
+ private applyFormPatch;
1002
+ private normalizePath;
1003
+ private buildApplyReply;
1004
+ applyPatch(_patch: any, _context: AiPageContext): void;
1005
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiPageFormAdapterService, never>;
1006
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiPageFormAdapterService>;
1007
+ }
1008
+
899
1009
  type AiTerminalMessagePart = {
900
1010
  text: string;
901
1011
  route?: string;
902
1012
  };
903
1013
  declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
904
1014
  private terminal;
1015
+ private services;
1016
+ private pageRouter;
1017
+ private _pageFormAdapter;
905
1018
  idClient: string;
906
1019
  idApp: string;
907
1020
  title: string;
@@ -910,7 +1023,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
910
1023
  messageLimit: number;
911
1024
  placeholder: string;
912
1025
  singleConversation: boolean;
913
- contextMode: 'current' | 'all';
1026
+ contextMode: 'current' | 'all' | 'auto';
914
1027
  contextRoute: string;
915
1028
  messageScroll?: ElementRef<HTMLDivElement>;
916
1029
  conversations: AiTerminalConversationModel[];
@@ -927,9 +1040,18 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
927
1040
  editingConversationId: string;
928
1041
  editingTitle: string;
929
1042
  private messagePartsCache;
1043
+ private messageContentOverrides;
1044
+ private supportTicketMap;
1045
+ private supportTicketInFlight;
1046
+ private serverMessages;
1047
+ private localMessagesByConversation;
1048
+ private localMessageCounter;
1049
+ private readonly supportTicketStorageKey;
1050
+ private mongoReadCache;
1051
+ private mongoReadInFlight;
930
1052
  private conversationsSub?;
931
1053
  private messagesSub?;
932
- constructor(terminal: AiTerminalService);
1054
+ constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
933
1055
  ngOnInit(): void;
934
1056
  ngOnChanges(changes: SimpleChanges): void;
935
1057
  ngOnDestroy(): void;
@@ -960,6 +1082,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
960
1082
  removePendingFile(index: number): void;
961
1083
  clearComposer(): void;
962
1084
  private resolveConfig;
1085
+ private resolveMongoConfig;
963
1086
  private resolveMode;
964
1087
  private resolveBranchEnabled;
965
1088
  private methodNames;
@@ -971,10 +1094,34 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
971
1094
  private readFileAsBase64;
972
1095
  private afterRunResponse;
973
1096
  private buildMessageContext;
1097
+ private buildPageRouterContext;
1098
+ private refreshMergedMessages;
1099
+ private mergeMessages;
1100
+ private messageTimestamp;
1101
+ private appendLocalMessage;
974
1102
  private ensureConversationId;
975
1103
  private scrollToBottom;
976
1104
  private splitMessageContent;
977
1105
  private isRouteBoundary;
1106
+ private getMessageContent;
1107
+ private loadSupportTicketMap;
1108
+ private saveSupportTicketMap;
1109
+ private applyStoredSupportTicketOverrides;
1110
+ private processSupportTicketDirectives;
1111
+ private extractSupportTicketDirective;
1112
+ private appendSupportTicketLink;
1113
+ private createSupportTicketFromDirective;
1114
+ private applyStoredMongoReadOverrides;
1115
+ private processMongoReadDirectives;
1116
+ private extractMongoReadDirective;
1117
+ private createMongoReadFromDirective;
1118
+ private appendMongoReadResult;
1119
+ private formatMongoReadResult;
1120
+ private formatMongoDocumentSummary;
1121
+ private resolveSupportTicketIssue;
1122
+ private buildSupportTicketPayload;
1123
+ private truncateText;
1124
+ private shouldLinkRoute;
978
1125
  private unsubscribeAll;
979
1126
  static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalComponent, never>;
980
1127
  static ɵcmp: i0.ɵɵComponentDeclaration<AiTerminalComponent, "rio-ai-terminal", never, { "idClient": { "alias": "idClient"; "required": false; }; "idApp": { "alias": "idApp"; "required": false; }; "title": { "alias": "title"; "required": false; }; "config": { "alias": "config"; "required": false; }; "conversationStatus": { "alias": "conversationStatus"; "required": false; }; "messageLimit": { "alias": "messageLimit"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "singleConversation": { "alias": "singleConversation"; "required": false; }; "contextMode": { "alias": "contextMode"; "required": false; }; "contextRoute": { "alias": "contextRoute"; "required": false; }; }, {}, never, never, false, never>;
@@ -1007,7 +1154,7 @@ declare class AiAssistantComponent implements OnChanges {
1007
1154
  openRequested: EventEmitter<void>;
1008
1155
  closed: EventEmitter<void>;
1009
1156
  terminal?: AiTerminalComponent;
1010
- contextMode: 'current' | 'all';
1157
+ contextMode: 'current' | 'all' | 'auto';
1011
1158
  private hoverOpened;
1012
1159
  constructor(router: Router);
1013
1160
  ngOnChanges(changes: SimpleChanges): void;
@@ -1188,6 +1335,23 @@ declare class PipeModule {
1188
1335
  static ɵinj: i0.ɵɵInjectorDeclaration<PipeModule>;
1189
1336
  }
1190
1337
 
1338
+ declare class AiFormAutoRegisterDirective implements OnInit, OnDestroy {
1339
+ private formDirective;
1340
+ private registry;
1341
+ private router;
1342
+ private elementRef;
1343
+ aiFormAutoRegister: boolean;
1344
+ aiFormLabel: string;
1345
+ aiFormIgnore: boolean;
1346
+ private unregister?;
1347
+ constructor(formDirective: FormGroupDirective, registry: AiFormRegistryService, router: Router, elementRef: ElementRef<HTMLFormElement>);
1348
+ ngOnInit(): void;
1349
+ ngOnDestroy(): void;
1350
+ private register;
1351
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiFormAutoRegisterDirective, never>;
1352
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AiFormAutoRegisterDirective, "form[formGroup]", never, { "aiFormAutoRegister": { "alias": "aiFormAutoRegister"; "required": false; }; "aiFormLabel": { "alias": "aiFormLabel"; "required": false; }; "aiFormIgnore": { "alias": "aiFormIgnore"; "required": false; }; }, {}, never, never, true, never>;
1353
+ }
1354
+
1191
1355
  declare class CollapseTableComponent implements OnInit, OnDestroy {
1192
1356
  private _resizeService;
1193
1357
  private _account;
@@ -1210,7 +1374,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1210
1374
 
1211
1375
  declare class CollapseTableModule {
1212
1376
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
1213
- static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i1.FormsModule, typeof i2.CommonModule], [typeof CollapseTableComponent]>;
1377
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule], [typeof CollapseTableComponent]>;
1214
1378
  static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
1215
1379
  }
1216
1380
 
@@ -1229,7 +1393,7 @@ declare class FormButtonComponent extends BaseComponent {
1229
1393
 
1230
1394
  declare class FormButtonModule {
1231
1395
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
1232
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2.CommonModule, typeof i4.NgbTooltipModule], [typeof FormButtonComponent]>;
1396
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2$1.CommonModule, typeof i5.NgbTooltipModule], [typeof FormButtonComponent]>;
1233
1397
  static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
1234
1398
  }
1235
1399
 
@@ -1249,7 +1413,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
1249
1413
 
1250
1414
  declare class ResponsiveButtonGroupModule {
1251
1415
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
1252
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1416
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2$1.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1253
1417
  static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
1254
1418
  }
1255
1419
 
@@ -1264,7 +1428,7 @@ declare class UserRoleComponent extends BaseComponent {
1264
1428
 
1265
1429
  declare class UserRoleModule {
1266
1430
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
1267
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2.CommonModule], [typeof UserRoleComponent]>;
1431
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2$1.CommonModule], [typeof UserRoleComponent]>;
1268
1432
  static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
1269
1433
  }
1270
1434
 
@@ -1350,7 +1514,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
1350
1514
 
1351
1515
  declare class SortTableModule {
1352
1516
  static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
1353
- static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i1.FormsModule, typeof i2.CommonModule], [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent]>;
1517
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule], [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent]>;
1354
1518
  static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
1355
1519
  }
1356
1520
 
@@ -1522,7 +1686,7 @@ declare class NgDragDropModule {
1522
1686
 
1523
1687
  declare class SharedModule {
1524
1688
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
1525
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.RioSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i14.RioDatePickerModule], [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i4.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i9.RioSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i14.RioDatePickerModule]>;
1689
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof AiFormAutoRegisterDirective, typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i4.RouterModule, typeof i5.NgbModule, typeof i5.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i10.RioSelectModule, typeof SortTableModule, typeof i2$1.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i15.RioDatePickerModule], [typeof AiFormAutoRegisterDirective, typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i4.RouterModule, typeof i5.NgbModule, typeof i5.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i10.RioSelectModule, typeof SortTableModule, typeof i2$1.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i15.RioDatePickerModule]>;
1526
1690
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1527
1691
  }
1528
1692
 
@@ -1538,13 +1702,13 @@ declare function rioDatePickerConfigFactory(_account: AccountManagerService, _ap
1538
1702
  };
1539
1703
  declare class CoreServicesModule {
1540
1704
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
1541
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1$1.BrowserAnimationsModule, typeof i2$1.ToastrModule], never>;
1705
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1.BrowserAnimationsModule, typeof i2$2.ToastrModule], never>;
1542
1706
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
1543
1707
  }
1544
1708
 
1545
1709
  declare class CoreShellModule {
1546
1710
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
1547
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2.CommonModule, typeof i3.RouterModule, typeof PipeModule, typeof i4.NgbModalModule, typeof AiTerminalModule, typeof CoreServicesModule], [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
1711
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2$1.CommonModule, typeof i4.RouterModule, typeof PipeModule, typeof i5.NgbModalModule, typeof AiTerminalModule, typeof CoreServicesModule], [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
1548
1712
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
1549
1713
  }
1550
1714
 
@@ -2016,7 +2180,7 @@ declare class DatatableComponent extends BaseComponent {
2016
2180
 
2017
2181
  declare class DatatableModule {
2018
2182
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
2019
- static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i4.NgbModule, typeof i1.FormsModule, typeof i2.CommonModule, typeof i3.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
2183
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i5.NgbModule, typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i4.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
2020
2184
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
2021
2185
  }
2022
2186
 
@@ -2065,13 +2229,13 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
2065
2229
 
2066
2230
  declare class FileModule {
2067
2231
  static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
2068
- static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof FileUploadComponent], [typeof i2.CommonModule, typeof i1.FormsModule, typeof CollapseTableModule, typeof i4.NgbModule, typeof ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.PdfViewerModule], [typeof FileUploadComponent]>;
2232
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof FileUploadComponent], [typeof i2$1.CommonModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i5.NgbModule, typeof ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.PdfViewerModule], [typeof FileUploadComponent]>;
2069
2233
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
2070
2234
  }
2071
2235
 
2072
2236
  declare class UserSettingsModule {
2073
2237
  static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsModule, never>;
2074
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserSettingsModule, [typeof UserSettingsComponent, typeof UsersSettingsComponent], [typeof SharedModule, typeof i3.RouterModule, typeof DatatableModule, typeof FileModule, typeof i4.NgbAccordionModule, typeof i4.NgbModule], never>;
2238
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserSettingsModule, [typeof UserSettingsComponent, typeof UsersSettingsComponent], [typeof SharedModule, typeof i4.RouterModule, typeof DatatableModule, typeof FileModule, typeof i5.NgbAccordionModule, typeof i5.NgbModule], never>;
2075
2239
  static ɵinj: i0.ɵɵInjectorDeclaration<UserSettingsModule>;
2076
2240
  }
2077
2241
 
@@ -2172,7 +2336,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
2172
2336
 
2173
2337
  declare class DateShortcutModule {
2174
2338
  static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutModule, never>;
2175
- static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i1.FormsModule, typeof i2.CommonModule, typeof i9.RioSelectModule], [typeof DateShortcutComponent]>;
2339
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i10.RioSelectModule], [typeof DateShortcutComponent]>;
2176
2340
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
2177
2341
  }
2178
2342
 
@@ -2226,7 +2390,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
2226
2390
 
2227
2391
  declare class SchedulerModule {
2228
2392
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
2229
- static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i4.NgbModule, typeof i1.FormsModule, typeof i2.CommonModule, typeof i3.RouterModule], [typeof SchedulerComponent]>;
2393
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i5.NgbModule, typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i4.RouterModule], [typeof SchedulerComponent]>;
2230
2394
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
2231
2395
  }
2232
2396
 
@@ -2326,5 +2490,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2326
2490
 
2327
2491
  declare const SuperAdminModulePermission: ModulePermissionModel;
2328
2492
 
2329
- export { AccountManagerService, AiAssistantComponent, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, exportCsv, generateCronStringFromDate, isUpperCase, mergeDeep, momentTz, pad, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2330
- export type { ActiveClientSubscriptionModel, AiTerminalAttachmentModel, AiTerminalConfig$1 as AiTerminalConfig, AiTerminalConversationModel, AiTerminalConversationStatus, AiTerminalMessageModel, AiTerminalMessageRole, AiTerminalMessageUsage, AiTerminalMethodNames, AiTerminalMode, AppStatusModel, CanComponentDeactivate, CollectionDocument, CronJobModel, CsvExportOptions, DatatableColumn, DatatableModel, DialogInputFieldModel, DialogInputFieldSelectOptions, DialogSelectWithButtonsOptionModel, FileModel, LogMethodLatencyModel, ModulePermissionApprovalModel, ModulePermissionModel, ModulePermissionViewModel, NavbarMainTabLinkModel, NavbarMainTabModel, NavbarMainTabType, NavbarModel, NavbarTabModel, OtherObject, PaginationOptions, ScrollEvent, SelectDataLabelModel, Sort, SortDirection, SortDirectionType, SortMongo, Sortable$1 as Sortable, SortableEvent as SortablejsEvent, Options as SortablejsOptions, SubscriptionModel, SubscriptionPubModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };
2493
+ export { AccountManagerService, AiAssistantComponent, AiFormAutoRegisterDirective, AiFormRegistryService, AiPageFormAdapterService, AiPageRouterService, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, exportCsv, generateCronStringFromDate, isUpperCase, mergeDeep, momentTz, pad, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2494
+ export type { ActiveClientSubscriptionModel, AiFormRegistryEntry, AiPageAdapter, AiPageContext, AiPageContextMode, AiPageRequest, AiPageResult, AiPageSchema, AiTerminalAttachmentModel, AiTerminalConfig$1 as AiTerminalConfig, AiTerminalConversationModel, AiTerminalConversationStatus, AiTerminalMessageModel, AiTerminalMessageRole, AiTerminalMessageUsage, AiTerminalMethodNames, AiTerminalMode, AiTerminalMongoAccess, AiTerminalMongoConfig, AppStatusModel, CanComponentDeactivate, CollectionDocument, CronJobModel, CsvExportOptions, DatatableColumn, DatatableModel, DialogInputFieldModel, DialogInputFieldSelectOptions, DialogSelectWithButtonsOptionModel, FileModel, LogMethodLatencyModel, ModulePermissionApprovalModel, ModulePermissionModel, ModulePermissionViewModel, NavbarMainTabLinkModel, NavbarMainTabModel, NavbarMainTabType, NavbarModel, NavbarTabModel, OtherObject, PaginationOptions, ScrollEvent, SelectDataLabelModel, Sort, SortDirection, SortDirectionType, SortMongo, Sortable$1 as Sortable, SortableEvent as SortablejsEvent, Options as SortablejsOptions, SubscriptionModel, SubscriptionPubModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };