@resolveio/client-lib-core 21.3.3 → 21.3.6

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.6",
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;
@@ -779,6 +779,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
779
779
  closeAiAssistant(): void;
780
780
  getAiAssistantTopOffset(): number;
781
781
  getAiAssistantHeight(): number;
782
+ getAiAssistantReservedWidth(): number;
782
783
  private resolveAiAssistantAppId;
783
784
  onPushBackButton(): void;
784
785
  onPushReloadButton(): void;
@@ -810,6 +811,15 @@ declare class HomeComponent extends BaseComponent implements OnInit {
810
811
  }
811
812
 
812
813
  type AiTerminalMode = 'openai' | 'codex';
814
+ type AiTerminalMongoAccess = 'read' | 'readWrite';
815
+ interface AiTerminalMongoConfig {
816
+ connectionId?: string;
817
+ connectionString?: string;
818
+ database?: string;
819
+ databases?: string[];
820
+ access?: AiTerminalMongoAccess;
821
+ readonly?: boolean;
822
+ }
813
823
  interface AiTerminalMethodNames {
814
824
  conversationCreate?: string;
815
825
  conversationUpdate?: string;
@@ -840,6 +850,8 @@ interface AiTerminalConfig$1 {
840
850
  maxTokens?: number;
841
851
  profileId?: string;
842
852
  methodNames?: AiTerminalMethodNames;
853
+ mongo?: AiTerminalMongoConfig;
854
+ pageRouterEnabled?: boolean;
843
855
  }
844
856
 
845
857
  type AiTerminalConversationStatus = 'active' | 'archived';
@@ -896,12 +908,114 @@ declare class AiTerminalService {
896
908
  static ɵprov: i0.ɵɵInjectableDeclaration<AiTerminalService>;
897
909
  }
898
910
 
911
+ type AiPageContextMode = 'current' | 'all';
912
+ interface AiPageContext {
913
+ route?: string;
914
+ mode?: AiPageContextMode;
915
+ idClient?: string;
916
+ idApp?: string;
917
+ featureFlags?: Record<string, boolean>;
918
+ metadata?: Record<string, any>;
919
+ }
920
+ interface AiPageRequest {
921
+ message: string;
922
+ context: AiPageContext;
923
+ }
924
+ interface AiPageResult {
925
+ handled: boolean;
926
+ reply?: string;
927
+ error?: string;
928
+ data?: Record<string, any>;
929
+ }
930
+ interface AiPageSchema {
931
+ allowed_fields?: Array<{
932
+ name: string;
933
+ type?: string;
934
+ label?: string;
935
+ enums?: string[];
936
+ }>;
937
+ field_catalog?: Array<{
938
+ field_path: string;
939
+ field_path_name?: string;
940
+ field_type?: string;
941
+ collection_name?: string;
942
+ }>;
943
+ }
944
+ interface AiPageAdapter {
945
+ id: string;
946
+ priority?: number;
947
+ matches(context: AiPageContext): boolean;
948
+ handle(request: AiPageRequest): Promise<AiPageResult>;
949
+ getSchema?: (context: AiPageContext) => Promise<AiPageSchema | null> | AiPageSchema | null;
950
+ getPatchFormat?: (context: AiPageContext) => Promise<string | null> | string | null;
951
+ validatePatch?: (patch: any, context: AiPageContext) => {
952
+ valid: boolean;
953
+ errors?: string[];
954
+ };
955
+ applyPatch?: (patch: any, context: AiPageContext) => Promise<void> | void;
956
+ fieldCatalog?: (context: AiPageContext) => Promise<any> | any;
957
+ }
958
+
959
+ declare class AiPageRouterService {
960
+ private adapters;
961
+ registerAdapter(adapter: AiPageAdapter): () => void;
962
+ unregisterAdapter(adapter: AiPageAdapter): void;
963
+ getAdapter(context: AiPageContext): AiPageAdapter | null;
964
+ handleMessage(request: AiPageRequest): Promise<AiPageResult>;
965
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiPageRouterService, never>;
966
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiPageRouterService>;
967
+ }
968
+
969
+ type AiFormRegistryEntry = {
970
+ id: string;
971
+ form: FormGroup;
972
+ route?: string;
973
+ element?: HTMLElement | null;
974
+ label?: string;
975
+ };
976
+ declare class AiFormRegistryService {
977
+ private forms;
978
+ private counter;
979
+ registerForm(entry: Omit<AiFormRegistryEntry, 'id'>): () => void;
980
+ unregisterForm(entry: AiFormRegistryEntry | string): void;
981
+ getFormsForRoute(route?: string): AiFormRegistryEntry[];
982
+ private normalizeRoute;
983
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiFormRegistryService, never>;
984
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiFormRegistryService>;
985
+ }
986
+
987
+ declare class AiPageFormAdapterService implements AiPageAdapter {
988
+ private router;
989
+ private registry;
990
+ private terminal;
991
+ id: string;
992
+ priority: number;
993
+ constructor(router: AiPageRouterService, registry: AiFormRegistryService, terminal: AiTerminalService);
994
+ matches(_context: AiPageContext): boolean;
995
+ handle(request: AiPageRequest): Promise<AiPageResult>;
996
+ private buildPatchFormat;
997
+ private buildFieldCatalog;
998
+ private walkControls;
999
+ private inferType;
1000
+ private normalizePatchFields;
1001
+ private normalizePatchField;
1002
+ private applyFormPatch;
1003
+ private normalizePath;
1004
+ private buildApplyReply;
1005
+ applyPatch(_patch: any, _context: AiPageContext): void;
1006
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiPageFormAdapterService, never>;
1007
+ static ɵprov: i0.ɵɵInjectableDeclaration<AiPageFormAdapterService>;
1008
+ }
1009
+
899
1010
  type AiTerminalMessagePart = {
900
1011
  text: string;
901
1012
  route?: string;
902
1013
  };
903
1014
  declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
904
1015
  private terminal;
1016
+ private services;
1017
+ private pageRouter;
1018
+ private _pageFormAdapter;
905
1019
  idClient: string;
906
1020
  idApp: string;
907
1021
  title: string;
@@ -910,7 +1024,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
910
1024
  messageLimit: number;
911
1025
  placeholder: string;
912
1026
  singleConversation: boolean;
913
- contextMode: 'current' | 'all';
1027
+ contextMode: 'current' | 'all' | 'auto';
914
1028
  contextRoute: string;
915
1029
  messageScroll?: ElementRef<HTMLDivElement>;
916
1030
  conversations: AiTerminalConversationModel[];
@@ -927,9 +1041,18 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
927
1041
  editingConversationId: string;
928
1042
  editingTitle: string;
929
1043
  private messagePartsCache;
1044
+ private messageContentOverrides;
1045
+ private supportTicketMap;
1046
+ private supportTicketInFlight;
1047
+ private serverMessages;
1048
+ private localMessagesByConversation;
1049
+ private localMessageCounter;
1050
+ private readonly supportTicketStorageKey;
1051
+ private mongoReadCache;
1052
+ private mongoReadInFlight;
930
1053
  private conversationsSub?;
931
1054
  private messagesSub?;
932
- constructor(terminal: AiTerminalService);
1055
+ constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
933
1056
  ngOnInit(): void;
934
1057
  ngOnChanges(changes: SimpleChanges): void;
935
1058
  ngOnDestroy(): void;
@@ -960,6 +1083,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
960
1083
  removePendingFile(index: number): void;
961
1084
  clearComposer(): void;
962
1085
  private resolveConfig;
1086
+ private resolveMongoConfig;
963
1087
  private resolveMode;
964
1088
  private resolveBranchEnabled;
965
1089
  private methodNames;
@@ -971,10 +1095,34 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
971
1095
  private readFileAsBase64;
972
1096
  private afterRunResponse;
973
1097
  private buildMessageContext;
1098
+ private buildPageRouterContext;
1099
+ private refreshMergedMessages;
1100
+ private mergeMessages;
1101
+ private messageTimestamp;
1102
+ private appendLocalMessage;
974
1103
  private ensureConversationId;
975
1104
  private scrollToBottom;
976
1105
  private splitMessageContent;
977
1106
  private isRouteBoundary;
1107
+ private getMessageContent;
1108
+ private loadSupportTicketMap;
1109
+ private saveSupportTicketMap;
1110
+ private applyStoredSupportTicketOverrides;
1111
+ private processSupportTicketDirectives;
1112
+ private extractSupportTicketDirective;
1113
+ private appendSupportTicketLink;
1114
+ private createSupportTicketFromDirective;
1115
+ private applyStoredMongoReadOverrides;
1116
+ private processMongoReadDirectives;
1117
+ private extractMongoReadDirective;
1118
+ private createMongoReadFromDirective;
1119
+ private appendMongoReadResult;
1120
+ private formatMongoReadResult;
1121
+ private formatMongoDocumentSummary;
1122
+ private resolveSupportTicketIssue;
1123
+ private buildSupportTicketPayload;
1124
+ private truncateText;
1125
+ private shouldLinkRoute;
978
1126
  private unsubscribeAll;
979
1127
  static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalComponent, never>;
980
1128
  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 +1155,7 @@ declare class AiAssistantComponent implements OnChanges {
1007
1155
  openRequested: EventEmitter<void>;
1008
1156
  closed: EventEmitter<void>;
1009
1157
  terminal?: AiTerminalComponent;
1010
- contextMode: 'current' | 'all';
1158
+ contextMode: 'current' | 'all' | 'auto';
1011
1159
  private hoverOpened;
1012
1160
  constructor(router: Router);
1013
1161
  ngOnChanges(changes: SimpleChanges): void;
@@ -1041,6 +1189,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
1041
1189
  publicProgram: boolean;
1042
1190
  digitalSign: boolean;
1043
1191
  showSupport: boolean;
1192
+ aiAssistantVisible: boolean;
1044
1193
  aiToggle: EventEmitter<void>;
1045
1194
  user: UserModel;
1046
1195
  collapseShowing: boolean;
@@ -1076,7 +1225,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
1076
1225
  isCustomer(): boolean;
1077
1226
  getWindowWidth(): number;
1078
1227
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
1079
- static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "digitalSign": { "alias": "digitalSign"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; }, { "aiToggle": "aiToggle"; }, never, never, false, never>;
1228
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "digitalSign": { "alias": "digitalSign"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; "aiAssistantVisible": { "alias": "aiAssistantVisible"; "required": false; }; }, { "aiToggle": "aiToggle"; }, never, never, false, never>;
1080
1229
  }
1081
1230
 
1082
1231
  declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnDestroy {
@@ -1188,6 +1337,23 @@ declare class PipeModule {
1188
1337
  static ɵinj: i0.ɵɵInjectorDeclaration<PipeModule>;
1189
1338
  }
1190
1339
 
1340
+ declare class AiFormAutoRegisterDirective implements OnInit, OnDestroy {
1341
+ private formDirective;
1342
+ private registry;
1343
+ private router;
1344
+ private elementRef;
1345
+ aiFormAutoRegister: boolean;
1346
+ aiFormLabel: string;
1347
+ aiFormIgnore: boolean;
1348
+ private unregister?;
1349
+ constructor(formDirective: FormGroupDirective, registry: AiFormRegistryService, router: Router, elementRef: ElementRef<HTMLFormElement>);
1350
+ ngOnInit(): void;
1351
+ ngOnDestroy(): void;
1352
+ private register;
1353
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiFormAutoRegisterDirective, never>;
1354
+ 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>;
1355
+ }
1356
+
1191
1357
  declare class CollapseTableComponent implements OnInit, OnDestroy {
1192
1358
  private _resizeService;
1193
1359
  private _account;
@@ -1210,7 +1376,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1210
1376
 
1211
1377
  declare class CollapseTableModule {
1212
1378
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
1213
- static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i1.FormsModule, typeof i2.CommonModule], [typeof CollapseTableComponent]>;
1379
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule], [typeof CollapseTableComponent]>;
1214
1380
  static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
1215
1381
  }
1216
1382
 
@@ -1229,7 +1395,7 @@ declare class FormButtonComponent extends BaseComponent {
1229
1395
 
1230
1396
  declare class FormButtonModule {
1231
1397
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
1232
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2.CommonModule, typeof i4.NgbTooltipModule], [typeof FormButtonComponent]>;
1398
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2$1.CommonModule, typeof i5.NgbTooltipModule], [typeof FormButtonComponent]>;
1233
1399
  static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
1234
1400
  }
1235
1401
 
@@ -1249,7 +1415,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
1249
1415
 
1250
1416
  declare class ResponsiveButtonGroupModule {
1251
1417
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
1252
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1418
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2$1.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1253
1419
  static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
1254
1420
  }
1255
1421
 
@@ -1264,7 +1430,7 @@ declare class UserRoleComponent extends BaseComponent {
1264
1430
 
1265
1431
  declare class UserRoleModule {
1266
1432
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
1267
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2.CommonModule], [typeof UserRoleComponent]>;
1433
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2$1.CommonModule], [typeof UserRoleComponent]>;
1268
1434
  static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
1269
1435
  }
1270
1436
 
@@ -1350,7 +1516,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
1350
1516
 
1351
1517
  declare class SortTableModule {
1352
1518
  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]>;
1519
+ 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
1520
  static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
1355
1521
  }
1356
1522
 
@@ -1522,7 +1688,7 @@ declare class NgDragDropModule {
1522
1688
 
1523
1689
  declare class SharedModule {
1524
1690
  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]>;
1691
+ 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
1692
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1527
1693
  }
1528
1694
 
@@ -1538,13 +1704,13 @@ declare function rioDatePickerConfigFactory(_account: AccountManagerService, _ap
1538
1704
  };
1539
1705
  declare class CoreServicesModule {
1540
1706
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
1541
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1$1.BrowserAnimationsModule, typeof i2$1.ToastrModule], never>;
1707
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1.BrowserAnimationsModule, typeof i2$2.ToastrModule], never>;
1542
1708
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
1543
1709
  }
1544
1710
 
1545
1711
  declare class CoreShellModule {
1546
1712
  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]>;
1713
+ 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
1714
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
1549
1715
  }
1550
1716
 
@@ -2016,7 +2182,7 @@ declare class DatatableComponent extends BaseComponent {
2016
2182
 
2017
2183
  declare class DatatableModule {
2018
2184
  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]>;
2185
+ 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
2186
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
2021
2187
  }
2022
2188
 
@@ -2065,13 +2231,13 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
2065
2231
 
2066
2232
  declare class FileModule {
2067
2233
  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]>;
2234
+ 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
2235
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
2070
2236
  }
2071
2237
 
2072
2238
  declare class UserSettingsModule {
2073
2239
  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>;
2240
+ 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
2241
  static ɵinj: i0.ɵɵInjectorDeclaration<UserSettingsModule>;
2076
2242
  }
2077
2243
 
@@ -2172,7 +2338,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
2172
2338
 
2173
2339
  declare class DateShortcutModule {
2174
2340
  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]>;
2341
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i10.RioSelectModule], [typeof DateShortcutComponent]>;
2176
2342
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
2177
2343
  }
2178
2344
 
@@ -2226,7 +2392,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
2226
2392
 
2227
2393
  declare class SchedulerModule {
2228
2394
  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]>;
2395
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i5.NgbModule, typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i4.RouterModule], [typeof SchedulerComponent]>;
2230
2396
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
2231
2397
  }
2232
2398
 
@@ -2326,5 +2492,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2326
2492
 
2327
2493
  declare const SuperAdminModulePermission: ModulePermissionModel;
2328
2494
 
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 };
2495
+ 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 };
2496
+ 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 };