@resolveio/client-lib-core 21.3.2 → 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.2",
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;
@@ -763,6 +763,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
763
763
  openedWindow: boolean;
764
764
  aiAssistantOpen: boolean;
765
765
  aiAssistantAppId: string;
766
+ currentRoute: string;
766
767
  isOffline: boolean;
767
768
  foundUpdate: boolean;
768
769
  orientation: string;
@@ -774,7 +775,10 @@ declare class CoreComponent extends BaseComponent implements OnInit {
774
775
  getNavbarModuleHeight(): any;
775
776
  private updateStandaloneNavigation;
776
777
  toggleAiAssistant(): void;
778
+ openAiAssistant(): void;
777
779
  closeAiAssistant(): void;
780
+ getAiAssistantTopOffset(): number;
781
+ getAiAssistantHeight(): number;
778
782
  private resolveAiAssistantAppId;
779
783
  onPushBackButton(): void;
780
784
  onPushReloadButton(): void;
@@ -806,6 +810,15 @@ declare class HomeComponent extends BaseComponent implements OnInit {
806
810
  }
807
811
 
808
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
+ }
809
822
  interface AiTerminalMethodNames {
810
823
  conversationCreate?: string;
811
824
  conversationUpdate?: string;
@@ -836,6 +849,8 @@ interface AiTerminalConfig$1 {
836
849
  maxTokens?: number;
837
850
  profileId?: string;
838
851
  methodNames?: AiTerminalMethodNames;
852
+ mongo?: AiTerminalMongoConfig;
853
+ pageRouterEnabled?: boolean;
839
854
  }
840
855
 
841
856
  type AiTerminalConversationStatus = 'active' | 'archived';
@@ -892,8 +907,114 @@ declare class AiTerminalService {
892
907
  static ɵprov: i0.ɵɵInjectableDeclaration<AiTerminalService>;
893
908
  }
894
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
+
1009
+ type AiTerminalMessagePart = {
1010
+ text: string;
1011
+ route?: string;
1012
+ };
895
1013
  declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
896
1014
  private terminal;
1015
+ private services;
1016
+ private pageRouter;
1017
+ private _pageFormAdapter;
897
1018
  idClient: string;
898
1019
  idApp: string;
899
1020
  title: string;
@@ -901,6 +1022,9 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
901
1022
  conversationStatus: AiTerminalConversationStatus;
902
1023
  messageLimit: number;
903
1024
  placeholder: string;
1025
+ singleConversation: boolean;
1026
+ contextMode: 'current' | 'all' | 'auto';
1027
+ contextRoute: string;
904
1028
  messageScroll?: ElementRef<HTMLDivElement>;
905
1029
  conversations: AiTerminalConversationModel[];
906
1030
  messages: AiTerminalMessageModel[];
@@ -915,9 +1039,19 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
915
1039
  infoMessage: string;
916
1040
  editingConversationId: string;
917
1041
  editingTitle: string;
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;
918
1052
  private conversationsSub?;
919
1053
  private messagesSub?;
920
- constructor(terminal: AiTerminalService);
1054
+ constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
921
1055
  ngOnInit(): void;
922
1056
  ngOnChanges(changes: SimpleChanges): void;
923
1057
  ngOnDestroy(): void;
@@ -930,6 +1064,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
930
1064
  deleteFilesAfterRun(): boolean;
931
1065
  totalTokens(): number;
932
1066
  filteredMessages(): AiTerminalMessageModel[];
1067
+ messageParts(message: AiTerminalMessageModel): AiTerminalMessagePart[];
1068
+ trackByMessagePart(index: number, part: AiTerminalMessagePart): string;
933
1069
  formatFileSize(bytes?: number): string;
934
1070
  trackByConversation(index: number, convo: AiTerminalConversationModel): string;
935
1071
  trackByMessage(index: number, message: AiTerminalMessageModel): string;
@@ -940,11 +1076,13 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
940
1076
  saveRename(conversation: AiTerminalConversationModel): Promise<void>;
941
1077
  deleteConversation(conversation: AiTerminalConversationModel): Promise<void>;
942
1078
  sendMessage(): Promise<void>;
1079
+ startNewConversation(): Promise<void>;
943
1080
  deployTest(): Promise<void>;
944
1081
  handleFileSelect(event: Event): void;
945
1082
  removePendingFile(index: number): void;
946
1083
  clearComposer(): void;
947
1084
  private resolveConfig;
1085
+ private resolveMongoConfig;
948
1086
  private resolveMode;
949
1087
  private resolveBranchEnabled;
950
1088
  private methodNames;
@@ -955,11 +1093,38 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
955
1093
  private uploadPendingFiles;
956
1094
  private readFileAsBase64;
957
1095
  private afterRunResponse;
1096
+ private buildMessageContext;
1097
+ private buildPageRouterContext;
1098
+ private refreshMergedMessages;
1099
+ private mergeMessages;
1100
+ private messageTimestamp;
1101
+ private appendLocalMessage;
958
1102
  private ensureConversationId;
959
1103
  private scrollToBottom;
1104
+ private splitMessageContent;
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;
960
1125
  private unsubscribeAll;
961
1126
  static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalComponent, never>;
962
- 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; }; }, {}, never, never, false, never>;
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>;
963
1128
  }
964
1129
 
965
1130
  type AiTerminalConfig = {
@@ -973,7 +1138,7 @@ type AiTerminalConfig = {
973
1138
  systemPrompt?: string;
974
1139
  [key: string]: unknown;
975
1140
  };
976
- declare class AiAssistantComponent {
1141
+ declare class AiAssistantComponent implements OnChanges {
977
1142
  private router;
978
1143
  idClient: string;
979
1144
  idApp: string;
@@ -982,18 +1147,32 @@ declare class AiAssistantComponent {
982
1147
  supportTicketRoute: string;
983
1148
  supportTicketEnabled: boolean;
984
1149
  config: Partial<AiTerminalConfig> | null;
1150
+ topOffset: number;
1151
+ panelHeight: number;
1152
+ currentRoute: string;
1153
+ hoverEnabled: boolean;
1154
+ openRequested: EventEmitter<void>;
985
1155
  closed: EventEmitter<void>;
986
1156
  terminal?: AiTerminalComponent;
1157
+ contextMode: 'current' | 'all' | 'auto';
1158
+ private hoverOpened;
987
1159
  constructor(router: Router);
1160
+ ngOnChanges(changes: SimpleChanges): void;
988
1161
  get terminalConfig(): AiTerminalConfig;
989
1162
  closePanel(): void;
1163
+ handleRailClick(event?: MouseEvent): void;
1164
+ handleRailEnter(): void;
1165
+ handleRailLeave(): void;
1166
+ setContextMode(mode: string): void;
1167
+ get contextRouteLabel(): string;
990
1168
  openSupportTicket(): void;
991
1169
  handleBackdropClick(event: MouseEvent): void;
1170
+ private buildSystemPrompt;
992
1171
  private buildSupportTicketSummary;
993
1172
  private sanitizeSummary;
994
1173
  private truncate;
995
1174
  static ɵfac: i0.ɵɵFactoryDeclaration<AiAssistantComponent, never>;
996
- static ɵcmp: i0.ɵɵComponentDeclaration<AiAssistantComponent, "rio-ai-assistant", never, { "idClient": { "alias": "idClient"; "required": false; }; "idApp": { "alias": "idApp"; "required": false; }; "title": { "alias": "title"; "required": false; }; "open": { "alias": "open"; "required": false; }; "supportTicketRoute": { "alias": "supportTicketRoute"; "required": false; }; "supportTicketEnabled": { "alias": "supportTicketEnabled"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "closed": "closed"; }, never, never, false, never>;
1175
+ static ɵcmp: i0.ɵɵComponentDeclaration<AiAssistantComponent, "rio-ai-assistant", never, { "idClient": { "alias": "idClient"; "required": false; }; "idApp": { "alias": "idApp"; "required": false; }; "title": { "alias": "title"; "required": false; }; "open": { "alias": "open"; "required": false; }; "supportTicketRoute": { "alias": "supportTicketRoute"; "required": false; }; "supportTicketEnabled": { "alias": "supportTicketEnabled"; "required": false; }; "config": { "alias": "config"; "required": false; }; "topOffset": { "alias": "topOffset"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "currentRoute": { "alias": "currentRoute"; "required": false; }; "hoverEnabled": { "alias": "hoverEnabled"; "required": false; }; }, { "openRequested": "openRequested"; "closed": "closed"; }, never, never, false, never>;
997
1176
  }
998
1177
 
999
1178
  declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
@@ -1156,6 +1335,23 @@ declare class PipeModule {
1156
1335
  static ɵinj: i0.ɵɵInjectorDeclaration<PipeModule>;
1157
1336
  }
1158
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
+
1159
1355
  declare class CollapseTableComponent implements OnInit, OnDestroy {
1160
1356
  private _resizeService;
1161
1357
  private _account;
@@ -1178,7 +1374,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1178
1374
 
1179
1375
  declare class CollapseTableModule {
1180
1376
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
1181
- 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]>;
1182
1378
  static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
1183
1379
  }
1184
1380
 
@@ -1197,7 +1393,7 @@ declare class FormButtonComponent extends BaseComponent {
1197
1393
 
1198
1394
  declare class FormButtonModule {
1199
1395
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
1200
- 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]>;
1201
1397
  static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
1202
1398
  }
1203
1399
 
@@ -1217,7 +1413,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
1217
1413
 
1218
1414
  declare class ResponsiveButtonGroupModule {
1219
1415
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
1220
- 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]>;
1221
1417
  static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
1222
1418
  }
1223
1419
 
@@ -1232,7 +1428,7 @@ declare class UserRoleComponent extends BaseComponent {
1232
1428
 
1233
1429
  declare class UserRoleModule {
1234
1430
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
1235
- 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]>;
1236
1432
  static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
1237
1433
  }
1238
1434
 
@@ -1318,7 +1514,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
1318
1514
 
1319
1515
  declare class SortTableModule {
1320
1516
  static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
1321
- 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]>;
1322
1518
  static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
1323
1519
  }
1324
1520
 
@@ -1490,7 +1686,7 @@ declare class NgDragDropModule {
1490
1686
 
1491
1687
  declare class SharedModule {
1492
1688
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
1493
- 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]>;
1494
1690
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1495
1691
  }
1496
1692
 
@@ -1506,13 +1702,13 @@ declare function rioDatePickerConfigFactory(_account: AccountManagerService, _ap
1506
1702
  };
1507
1703
  declare class CoreServicesModule {
1508
1704
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
1509
- 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>;
1510
1706
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
1511
1707
  }
1512
1708
 
1513
1709
  declare class CoreShellModule {
1514
1710
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
1515
- 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]>;
1516
1712
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
1517
1713
  }
1518
1714
 
@@ -1984,7 +2180,7 @@ declare class DatatableComponent extends BaseComponent {
1984
2180
 
1985
2181
  declare class DatatableModule {
1986
2182
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
1987
- 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]>;
1988
2184
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
1989
2185
  }
1990
2186
 
@@ -2033,13 +2229,13 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
2033
2229
 
2034
2230
  declare class FileModule {
2035
2231
  static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
2036
- 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]>;
2037
2233
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
2038
2234
  }
2039
2235
 
2040
2236
  declare class UserSettingsModule {
2041
2237
  static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsModule, never>;
2042
- 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>;
2043
2239
  static ɵinj: i0.ɵɵInjectorDeclaration<UserSettingsModule>;
2044
2240
  }
2045
2241
 
@@ -2140,7 +2336,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
2140
2336
 
2141
2337
  declare class DateShortcutModule {
2142
2338
  static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutModule, never>;
2143
- 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]>;
2144
2340
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
2145
2341
  }
2146
2342
 
@@ -2194,7 +2390,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
2194
2390
 
2195
2391
  declare class SchedulerModule {
2196
2392
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
2197
- 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]>;
2198
2394
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
2199
2395
  }
2200
2396
 
@@ -2294,5 +2490,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2294
2490
 
2295
2491
  declare const SuperAdminModulePermission: ModulePermissionModel;
2296
2492
 
2297
- 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 };
2298
- 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 };