@resolveio/client-lib-core 21.2.15 → 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.15",
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;
@@ -767,6 +772,10 @@ declare class CoreComponent extends BaseComponent implements OnInit {
767
772
  private filterNavTabs;
768
773
  private isRoleGateEnabled;
769
774
  getNavbarModuleHeight(): any;
775
+ private updateStandaloneNavigation;
776
+ toggleAiAssistant(): void;
777
+ closeAiAssistant(): void;
778
+ private resolveAiAssistantAppId;
770
779
  onPushBackButton(): void;
771
780
  onPushReloadButton(): void;
772
781
  onPushForwardButton(): void;
@@ -774,7 +783,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
774
783
  closeNav(): void;
775
784
  private isStandaloneMode;
776
785
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
777
- 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>;
778
787
  }
779
788
 
780
789
  declare class HomeComponent extends BaseComponent implements OnInit {
@@ -796,6 +805,49 @@ declare class HomeComponent extends BaseComponent implements OnInit {
796
805
  static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "resolveio-home", never, {}, {}, never, never, false, never>;
797
806
  }
798
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
+
799
851
  declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
800
852
  private _services;
801
853
  private auth;
@@ -809,6 +861,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
809
861
  publicProgram: boolean;
810
862
  digitalSign: boolean;
811
863
  showSupport: boolean;
864
+ aiToggle: EventEmitter<void>;
812
865
  user: UserModel;
813
866
  collapseShowing: boolean;
814
867
  client: string;
@@ -833,6 +886,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
833
886
  stopScrollLeft(): void;
834
887
  scrollLeftOnce(): void;
835
888
  handleNavLinkClick(event: MouseEvent): void;
889
+ toggleAiAssistant(event?: MouseEvent): void;
836
890
  calculateDropdownsLeft(): boolean;
837
891
  isInRole(role: any): boolean;
838
892
  isSuperAdmin(): any;
@@ -842,7 +896,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
842
896
  isCustomer(): boolean;
843
897
  getWindowWidth(): number;
844
898
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
845
- 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>;
846
900
  }
847
901
 
848
902
  declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnDestroy {
@@ -966,7 +1020,7 @@ declare class CoreServicesModule {
966
1020
 
967
1021
  declare class CoreShellModule {
968
1022
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
969
- 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]>;
970
1024
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
971
1025
  }
972
1026
 
@@ -1841,6 +1895,8 @@ declare class CoreModule {
1841
1895
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
1842
1896
  }
1843
1897
 
1898
+ declare const AI_TERMINAL_COMPONENT: InjectionToken<Type<unknown>>;
1899
+
1844
1900
  declare class AuthGuard {
1845
1901
  private _router;
1846
1902
  private _auth;
@@ -1870,191 +1926,6 @@ declare class CanDeactivateGuard {
1870
1926
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1871
1927
  }
1872
1928
 
1873
- declare class SupportTicketService {
1874
- selectedSupportTicket: BehaviorSubject<string>;
1875
- constructor();
1876
- setSelectedSupportTicket(id: string): void;
1877
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketService, never>;
1878
- static ɵprov: i0.ɵɵInjectableDeclaration<SupportTicketService>;
1879
- }
1880
-
1881
- interface SupportTicketModel extends CollectionDocument {
1882
- type: SupportTicketType;
1883
- priority: SupportTicketPriority;
1884
- issue: string;
1885
- support_ticket_number: number;
1886
- support_ticket_number_string: string;
1887
- status: SupportTicketStatus;
1888
- substatus: SupportTicketSubstatus;
1889
- client: string;
1890
- id_client: string;
1891
- messages: SupportTicketMessageModel[];
1892
- date_created: Date;
1893
- date_created_string: string;
1894
- id_user_created: string;
1895
- user_created: string;
1896
- billable: boolean;
1897
- date_investigation?: Date;
1898
- date_closed?: Date;
1899
- files: string[];
1900
- current_watchers: SupportTicketWatchersModel[];
1901
- client_user: SupportTicketClientUserModel;
1902
- users_assigned: SupportTicketUserAssignedModel[];
1903
- estimated_billable_hours?: number;
1904
- billable_hours?: number;
1905
- bill_description: string;
1906
- tasks: SupportTicketTaskModel[];
1907
- notes: SupportTicketNoteModel[];
1908
- }
1909
- interface SupportTicketClientUserModel {
1910
- id_user: string;
1911
- user: string;
1912
- email: string;
1913
- }
1914
- type SupportTicketPriority = 'High' | 'Low';
1915
- type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
1916
- type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
1917
- type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
1918
- interface SupportTicketMessageModel {
1919
- message: string;
1920
- id_user: string;
1921
- user: string;
1922
- date: Date;
1923
- type: SupportTicketMessageType;
1924
- }
1925
- type SupportTicketMessageType = 'ResolveIO' | 'Client';
1926
- interface SupportTicketWatchersModel {
1927
- user: string;
1928
- id_user: string;
1929
- email: string;
1930
- }
1931
- interface SupportTicketTaskModel {
1932
- description: string;
1933
- completed: boolean;
1934
- id_user: string;
1935
- user: string;
1936
- date_created: Date;
1937
- date_completed?: Date;
1938
- }
1939
- interface SupportTicketNoteModel {
1940
- description: string;
1941
- id_user: string;
1942
- user: string;
1943
- date_created: Date;
1944
- }
1945
- interface SupportTicketUserAssignedModel {
1946
- id_user: string;
1947
- user: string;
1948
- date_created: Date;
1949
- }
1950
-
1951
- declare class SupportTicketComponent extends BaseComponent implements OnInit, OnDestroy {
1952
- private _sts;
1953
- private _services;
1954
- selectedResolveIOSupport$: Subscription;
1955
- menuData: NavbarModel;
1956
- constructor(_sts: SupportTicketService, _services: ProviderService);
1957
- ngOnInit(): void;
1958
- ngOnDestroy(): void;
1959
- selectedResolveIOSupportChanged(id: string): void;
1960
- setResolveIOSupportModuleMenuData(id?: string, st?: SupportTicketModel): void;
1961
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketComponent, never>;
1962
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketComponent, "resolveio-support-ticket", never, {}, {}, never, never, false, never>;
1963
- }
1964
-
1965
- declare class SupportTicketListComponent extends BaseComponent implements OnInit, OnDestroy {
1966
- private _sts;
1967
- private _route;
1968
- private _services;
1969
- route$: Subscription;
1970
- support_tickets: SupportTicketModel;
1971
- subscription$: Subscription[];
1972
- columns: Array<DatatableColumn>;
1973
- tableData: DatatableModel;
1974
- totalItems: number;
1975
- constructor(_sts: SupportTicketService, _route: ActivatedRoute, _services: ProviderService);
1976
- ngOnInit(): void;
1977
- ngOnDestroy(): void;
1978
- onQueryDataChanged(): void;
1979
- queryData(): void;
1980
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketListComponent, never>;
1981
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketListComponent, "resolveio-support-ticket-list", never, {}, {}, never, never, false, never>;
1982
- }
1983
-
1984
- declare class SupportTicketNewComponent extends BaseComponent implements OnInit, OnDestroy {
1985
- private _sts;
1986
- private _cd;
1987
- private _services;
1988
- private _ds;
1989
- fileUpload: any;
1990
- subscription$: Subscription[];
1991
- form: FormGroup;
1992
- disableFormButton: boolean;
1993
- submit: boolean;
1994
- constructor(_sts: SupportTicketService, _cd: ChangeDetectorRef, _services: ProviderService, _ds: DialogService);
1995
- ngOnInit(): void;
1996
- ngOnDestroy(): void;
1997
- canDeactivate(): boolean;
1998
- onTypeChange(): void;
1999
- submitForm(form: any): void;
2000
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketNewComponent, never>;
2001
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketNewComponent, "resolveio-support-ticket-new", never, {}, {}, never, never, false, never>;
2002
- }
2003
-
2004
- declare class SupportTicketDetailComponent extends BaseComponent implements OnInit, OnDestroy {
2005
- private _route;
2006
- private _sts;
2007
- private _services;
2008
- private _ds;
2009
- fileUpload: any;
2010
- subscription$: Subscription[];
2011
- id: string;
2012
- data: SupportTicketModel;
2013
- files: FileModel[];
2014
- constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
2015
- ngOnInit(): void;
2016
- ngOnDestroy(): void;
2017
- onFileAdded(file: FileModel): void;
2018
- onFilesRemoved(file: FileModel): void;
2019
- edit(): void;
2020
- newMessage(): void;
2021
- editMessage(index: any): void;
2022
- deleteMessage(index: any): void;
2023
- isMyMessage(message: any): boolean;
2024
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketDetailComponent, never>;
2025
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketDetailComponent, "resolveio-support-ticket-detail", never, {}, {}, never, never, false, never>;
2026
- }
2027
-
2028
- declare class SupportTicketEditComponent extends BaseComponent implements OnInit, OnDestroy {
2029
- private _route;
2030
- private _sts;
2031
- private _services;
2032
- private _ds;
2033
- fileUpload: any;
2034
- selectType: any;
2035
- id: string;
2036
- data: SupportTicketModel;
2037
- subscription$: Subscription[];
2038
- form: FormGroup;
2039
- disableFormButton: boolean;
2040
- constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
2041
- ngOnInit(): void;
2042
- ngOnDestroy(): void;
2043
- loadForm(): void;
2044
- onTypeChange(): void;
2045
- submitForm(form: any): void;
2046
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketEditComponent, never>;
2047
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketEditComponent, "resolveio-support-ticket-edit", never, {}, {}, never, never, false, never>;
2048
- }
2049
-
2050
- declare class SupportTicketModule {
2051
- static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketModule, never>;
2052
- 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>;
2053
- static ɵinj: i0.ɵɵInjectorDeclaration<SupportTicketModule>;
2054
- }
2055
-
2056
- declare const SupportTicketRouting: ModuleWithProviders<Route>;
2057
-
2058
1929
  declare function type<T>(label: T | ''): T;
2059
1930
 
2060
1931
  declare function round(value: any, precision?: number): number;
@@ -2271,5 +2142,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2271
2142
 
2272
2143
  declare const SuperAdminModulePermission: ModulePermissionModel;
2273
2144
 
2274
- 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 };
2275
- 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 };