@resolveio/client-lib-core 21.2.16 → 21.3.0

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.2.16",
3
+ "version": "21.3.0",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -1,14 +1,14 @@
1
1
  import * as rxjs from 'rxjs';
2
2
  import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
3
  import * as i0 from '@angular/core';
4
- import { OnDestroy, OnInit, ElementRef, AfterViewInit, QueryList, ChangeDetectorRef, EventEmitter, PipeTransform, OnChanges, ModuleWithProviders, Renderer2, NgZone } from '@angular/core';
4
+ import { OnDestroy, OnInit, ElementRef, AfterViewInit, OnChanges, EventEmitter, ViewContainerRef, Type, SimpleChanges, QueryList, ChangeDetectorRef, PipeTransform, ModuleWithProviders, Renderer2, NgZone, InjectionToken } from '@angular/core';
5
5
  import { DeviceDetectorService } from 'ngx-device-detector';
6
6
  import * as i1$1 from '@angular/forms';
7
7
  import { FormControl, FormGroup, AbstractControl, FormBuilder } from '@angular/forms';
8
8
  import * as i2 from 'ngx-toastr';
9
9
  import { ToastrService, ActiveToast } from 'ngx-toastr';
10
10
  import * as i3 from '@angular/router';
11
- import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot, Route } from '@angular/router';
11
+ import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
12
12
  import { HttpClient } from '@angular/common/http';
13
13
  import * as i4 from '@ng-bootstrap/ng-bootstrap';
14
14
  import { NgbModal, NgbModalOptions, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
@@ -95,6 +95,8 @@ interface UserModel extends CollectionDocument {
95
95
  username: string;
96
96
  email: string;
97
97
  fullname: string;
98
+ id_client?: string;
99
+ idClient?: string;
98
100
  active: boolean;
99
101
  phonenumber: string;
100
102
  readonly: boolean;
@@ -737,6 +739,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
737
739
  showNavbarModule: boolean;
738
740
  publicProgram: boolean;
739
741
  showSupport: boolean;
742
+ aiAssistantEnabled: boolean;
740
743
  el_navBarMain: ElementRef;
741
744
  el_navBarModule: ElementRef;
742
745
  year: string;
@@ -758,6 +761,8 @@ declare class CoreComponent extends BaseComponent implements OnInit {
758
761
  collapsableMenu: boolean;
759
762
  fontSize: number;
760
763
  openedWindow: boolean;
764
+ aiAssistantOpen: boolean;
765
+ aiAssistantAppId: string;
761
766
  isOffline: boolean;
762
767
  foundUpdate: boolean;
763
768
  orientation: string;
@@ -768,6 +773,9 @@ declare class CoreComponent extends BaseComponent implements OnInit {
768
773
  private isRoleGateEnabled;
769
774
  getNavbarModuleHeight(): any;
770
775
  private updateStandaloneNavigation;
776
+ toggleAiAssistant(): void;
777
+ closeAiAssistant(): void;
778
+ private resolveAiAssistantAppId;
771
779
  onPushBackButton(): void;
772
780
  onPushReloadButton(): void;
773
781
  onPushForwardButton(): void;
@@ -775,7 +783,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
775
783
  closeNav(): void;
776
784
  private isStandaloneMode;
777
785
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
778
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": { "alias": "environment"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "userHasPhoneNumber": { "alias": "userHasPhoneNumber"; "required": false; }; "client": { "alias": "client"; "required": false; }; "showNavbarModule": { "alias": "showNavbarModule"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; }, {}, never, never, false, never>;
786
+ static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": { "alias": "environment"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "userHasPhoneNumber": { "alias": "userHasPhoneNumber"; "required": false; }; "client": { "alias": "client"; "required": false; }; "showNavbarModule": { "alias": "showNavbarModule"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; "aiAssistantEnabled": { "alias": "aiAssistantEnabled"; "required": false; }; }, {}, never, never, false, never>;
779
787
  }
780
788
 
781
789
  declare class HomeComponent extends BaseComponent implements OnInit {
@@ -797,6 +805,49 @@ declare class HomeComponent extends BaseComponent implements OnInit {
797
805
  static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "resolveio-home", never, {}, {}, never, never, false, never>;
798
806
  }
799
807
 
808
+ type AiTerminalConfig = {
809
+ mode?: string;
810
+ model?: string;
811
+ guardrails?: boolean;
812
+ allowUploads?: boolean;
813
+ showAdvanced?: boolean;
814
+ showToolMessages?: boolean;
815
+ deleteFilesAfterRun?: boolean;
816
+ systemPrompt?: string;
817
+ [key: string]: unknown;
818
+ };
819
+ declare class AiAssistantComponent implements AfterViewInit, OnChanges, OnDestroy {
820
+ private router;
821
+ private _terminalComponent?;
822
+ idClient: string;
823
+ idApp: string;
824
+ title: string;
825
+ open: boolean;
826
+ supportTicketRoute: string;
827
+ supportTicketEnabled: boolean;
828
+ config: Partial<AiTerminalConfig> | null;
829
+ closed: EventEmitter<void>;
830
+ terminalHost?: ViewContainerRef;
831
+ terminalComponent: Type<unknown> | null;
832
+ private terminalRef;
833
+ private viewReady;
834
+ constructor(router: Router, _terminalComponent?: Type<unknown>);
835
+ get terminalConfig(): AiTerminalConfig;
836
+ ngAfterViewInit(): void;
837
+ ngOnChanges(changes: SimpleChanges): void;
838
+ ngOnDestroy(): void;
839
+ closePanel(): void;
840
+ openSupportTicket(): void;
841
+ handleBackdropClick(event: MouseEvent): void;
842
+ private buildSupportTicketSummary;
843
+ private syncTerminalInputs;
844
+ private setTerminalInput;
845
+ private sanitizeSummary;
846
+ private truncate;
847
+ static ɵfac: i0.ɵɵFactoryDeclaration<AiAssistantComponent, [null, { optional: true; }]>;
848
+ 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>;
849
+ }
850
+
800
851
  declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
801
852
  private _services;
802
853
  private auth;
@@ -810,6 +861,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
810
861
  publicProgram: boolean;
811
862
  digitalSign: boolean;
812
863
  showSupport: boolean;
864
+ aiToggle: EventEmitter<void>;
813
865
  user: UserModel;
814
866
  collapseShowing: boolean;
815
867
  client: string;
@@ -834,6 +886,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
834
886
  stopScrollLeft(): void;
835
887
  scrollLeftOnce(): void;
836
888
  handleNavLinkClick(event: MouseEvent): void;
889
+ toggleAiAssistant(event?: MouseEvent): void;
837
890
  calculateDropdownsLeft(): boolean;
838
891
  isInRole(role: any): boolean;
839
892
  isSuperAdmin(): any;
@@ -843,7 +896,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
843
896
  isCustomer(): boolean;
844
897
  getWindowWidth(): number;
845
898
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
846
- 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; }; }, {}, never, never, false, never>;
899
+ 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>;
847
900
  }
848
901
 
849
902
  declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnDestroy {
@@ -967,7 +1020,7 @@ declare class CoreServicesModule {
967
1020
 
968
1021
  declare class CoreShellModule {
969
1022
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
970
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2$1.CommonModule, typeof i3.RouterModule, typeof PipeModule, typeof i4.NgbModalModule, typeof CoreServicesModule], [typeof CoreComponent, typeof HomeComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
1023
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2$1.CommonModule, typeof i3.RouterModule, typeof PipeModule, typeof i4.NgbModalModule, typeof CoreServicesModule], [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
971
1024
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
972
1025
  }
973
1026
 
@@ -1842,6 +1895,8 @@ declare class CoreModule {
1842
1895
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
1843
1896
  }
1844
1897
 
1898
+ declare const AI_TERMINAL_COMPONENT: InjectionToken<Type<unknown>>;
1899
+
1845
1900
  declare class AuthGuard {
1846
1901
  private _router;
1847
1902
  private _auth;
@@ -1871,191 +1926,6 @@ declare class CanDeactivateGuard {
1871
1926
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1872
1927
  }
1873
1928
 
1874
- declare class SupportTicketService {
1875
- selectedSupportTicket: BehaviorSubject<string>;
1876
- constructor();
1877
- setSelectedSupportTicket(id: string): void;
1878
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketService, never>;
1879
- static ɵprov: i0.ɵɵInjectableDeclaration<SupportTicketService>;
1880
- }
1881
-
1882
- interface SupportTicketModel extends CollectionDocument {
1883
- type: SupportTicketType;
1884
- priority: SupportTicketPriority;
1885
- issue: string;
1886
- support_ticket_number: number;
1887
- support_ticket_number_string: string;
1888
- status: SupportTicketStatus;
1889
- substatus: SupportTicketSubstatus;
1890
- client: string;
1891
- id_client: string;
1892
- messages: SupportTicketMessageModel[];
1893
- date_created: Date;
1894
- date_created_string: string;
1895
- id_user_created: string;
1896
- user_created: string;
1897
- billable: boolean;
1898
- date_investigation?: Date;
1899
- date_closed?: Date;
1900
- files: string[];
1901
- current_watchers: SupportTicketWatchersModel[];
1902
- client_user: SupportTicketClientUserModel;
1903
- users_assigned: SupportTicketUserAssignedModel[];
1904
- estimated_billable_hours?: number;
1905
- billable_hours?: number;
1906
- bill_description: string;
1907
- tasks: SupportTicketTaskModel[];
1908
- notes: SupportTicketNoteModel[];
1909
- }
1910
- interface SupportTicketClientUserModel {
1911
- id_user: string;
1912
- user: string;
1913
- email: string;
1914
- }
1915
- type SupportTicketPriority = 'High' | 'Low';
1916
- type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
1917
- type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
1918
- type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
1919
- interface SupportTicketMessageModel {
1920
- message: string;
1921
- id_user: string;
1922
- user: string;
1923
- date: Date;
1924
- type: SupportTicketMessageType;
1925
- }
1926
- type SupportTicketMessageType = 'ResolveIO' | 'Client';
1927
- interface SupportTicketWatchersModel {
1928
- user: string;
1929
- id_user: string;
1930
- email: string;
1931
- }
1932
- interface SupportTicketTaskModel {
1933
- description: string;
1934
- completed: boolean;
1935
- id_user: string;
1936
- user: string;
1937
- date_created: Date;
1938
- date_completed?: Date;
1939
- }
1940
- interface SupportTicketNoteModel {
1941
- description: string;
1942
- id_user: string;
1943
- user: string;
1944
- date_created: Date;
1945
- }
1946
- interface SupportTicketUserAssignedModel {
1947
- id_user: string;
1948
- user: string;
1949
- date_created: Date;
1950
- }
1951
-
1952
- declare class SupportTicketComponent extends BaseComponent implements OnInit, OnDestroy {
1953
- private _sts;
1954
- private _services;
1955
- selectedResolveIOSupport$: Subscription;
1956
- menuData: NavbarModel;
1957
- constructor(_sts: SupportTicketService, _services: ProviderService);
1958
- ngOnInit(): void;
1959
- ngOnDestroy(): void;
1960
- selectedResolveIOSupportChanged(id: string): void;
1961
- setResolveIOSupportModuleMenuData(id?: string, st?: SupportTicketModel): void;
1962
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketComponent, never>;
1963
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketComponent, "resolveio-support-ticket", never, {}, {}, never, never, false, never>;
1964
- }
1965
-
1966
- declare class SupportTicketListComponent extends BaseComponent implements OnInit, OnDestroy {
1967
- private _sts;
1968
- private _route;
1969
- private _services;
1970
- route$: Subscription;
1971
- support_tickets: SupportTicketModel;
1972
- subscription$: Subscription[];
1973
- columns: Array<DatatableColumn>;
1974
- tableData: DatatableModel;
1975
- totalItems: number;
1976
- constructor(_sts: SupportTicketService, _route: ActivatedRoute, _services: ProviderService);
1977
- ngOnInit(): void;
1978
- ngOnDestroy(): void;
1979
- onQueryDataChanged(): void;
1980
- queryData(): void;
1981
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketListComponent, never>;
1982
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketListComponent, "resolveio-support-ticket-list", never, {}, {}, never, never, false, never>;
1983
- }
1984
-
1985
- declare class SupportTicketNewComponent extends BaseComponent implements OnInit, OnDestroy {
1986
- private _sts;
1987
- private _cd;
1988
- private _services;
1989
- private _ds;
1990
- fileUpload: any;
1991
- subscription$: Subscription[];
1992
- form: FormGroup;
1993
- disableFormButton: boolean;
1994
- submit: boolean;
1995
- constructor(_sts: SupportTicketService, _cd: ChangeDetectorRef, _services: ProviderService, _ds: DialogService);
1996
- ngOnInit(): void;
1997
- ngOnDestroy(): void;
1998
- canDeactivate(): boolean;
1999
- onTypeChange(): void;
2000
- submitForm(form: any): void;
2001
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketNewComponent, never>;
2002
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketNewComponent, "resolveio-support-ticket-new", never, {}, {}, never, never, false, never>;
2003
- }
2004
-
2005
- declare class SupportTicketDetailComponent extends BaseComponent implements OnInit, OnDestroy {
2006
- private _route;
2007
- private _sts;
2008
- private _services;
2009
- private _ds;
2010
- fileUpload: any;
2011
- subscription$: Subscription[];
2012
- id: string;
2013
- data: SupportTicketModel;
2014
- files: FileModel[];
2015
- constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
2016
- ngOnInit(): void;
2017
- ngOnDestroy(): void;
2018
- onFileAdded(file: FileModel): void;
2019
- onFilesRemoved(file: FileModel): void;
2020
- edit(): void;
2021
- newMessage(): void;
2022
- editMessage(index: any): void;
2023
- deleteMessage(index: any): void;
2024
- isMyMessage(message: any): boolean;
2025
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketDetailComponent, never>;
2026
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketDetailComponent, "resolveio-support-ticket-detail", never, {}, {}, never, never, false, never>;
2027
- }
2028
-
2029
- declare class SupportTicketEditComponent extends BaseComponent implements OnInit, OnDestroy {
2030
- private _route;
2031
- private _sts;
2032
- private _services;
2033
- private _ds;
2034
- fileUpload: any;
2035
- selectType: any;
2036
- id: string;
2037
- data: SupportTicketModel;
2038
- subscription$: Subscription[];
2039
- form: FormGroup;
2040
- disableFormButton: boolean;
2041
- constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
2042
- ngOnInit(): void;
2043
- ngOnDestroy(): void;
2044
- loadForm(): void;
2045
- onTypeChange(): void;
2046
- submitForm(form: any): void;
2047
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketEditComponent, never>;
2048
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketEditComponent, "resolveio-support-ticket-edit", never, {}, {}, never, never, false, never>;
2049
- }
2050
-
2051
- declare class SupportTicketModule {
2052
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketModule, never>;
2053
- static ɵmod: i0.ɵɵNgModuleDeclaration<SupportTicketModule, [typeof SupportTicketComponent, typeof SupportTicketListComponent, typeof SupportTicketNewComponent, typeof SupportTicketDetailComponent, typeof SupportTicketEditComponent], [typeof SharedModule, typeof i3.RouterModule, typeof DatatableModule, typeof FileModule, typeof i4.NgbAccordionModule], never>;
2054
- static ɵinj: i0.ɵɵInjectorDeclaration<SupportTicketModule>;
2055
- }
2056
-
2057
- declare const SupportTicketRouting: ModuleWithProviders<Route>;
2058
-
2059
1929
  declare function type<T>(label: T | ''): T;
2060
1930
 
2061
1931
  declare function round(value: any, precision?: number): number;
@@ -2272,5 +2142,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2272
2142
 
2273
2143
  declare const SuperAdminModulePermission: ModulePermissionModel;
2274
2144
 
2275
- export { AccountManagerService, 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, SupportTicketComponent, SupportTicketDetailComponent, SupportTicketEditComponent, SupportTicketListComponent, SupportTicketModule, SupportTicketNewComponent, SupportTicketRouting, SupportTicketService, 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 };
2276
- export type { ActiveClientSubscriptionModel, 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, SupportTicketClientUserModel, SupportTicketMessageModel, SupportTicketModel, SupportTicketNoteModel, SupportTicketPriority, SupportTicketStatus, SupportTicketSubstatus, SupportTicketTaskModel, SupportTicketType, SupportTicketUserAssignedModel, SupportTicketWatchersModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };
2145
+ export { AI_TERMINAL_COMPONENT, AccountManagerService, AiAssistantComponent, 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 };
2146
+ export type { ActiveClientSubscriptionModel, 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 };