@resolveio/client-lib-core 21.3.0 → 21.3.2
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,23 +1,23 @@
|
|
|
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,
|
|
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
|
|
6
|
+
import * as i1 from '@angular/forms';
|
|
7
7
|
import { FormControl, FormGroup, AbstractControl, FormBuilder } from '@angular/forms';
|
|
8
|
-
import * as i2 from 'ngx-toastr';
|
|
8
|
+
import * as i2$1 from 'ngx-toastr';
|
|
9
9
|
import { ToastrService, ActiveToast } from 'ngx-toastr';
|
|
10
10
|
import * as i3 from '@angular/router';
|
|
11
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';
|
|
15
|
-
import * as i2
|
|
15
|
+
import * as i2 from '@angular/common';
|
|
16
16
|
import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
17
|
-
import * as i1 from '@angular/platform-browser/animations';
|
|
18
17
|
import * as i9 from '@resolveio/client-lib-rio-select';
|
|
19
18
|
import { StickySelectPreference, RioSelectStickyAdapter } from '@resolveio/client-lib-rio-select';
|
|
20
19
|
import * as i14 from '@resolveio/client-lib-date-picker';
|
|
20
|
+
import * as i1$1 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';
|
|
@@ -805,6 +805,163 @@ declare class HomeComponent extends BaseComponent implements OnInit {
|
|
|
805
805
|
static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "resolveio-home", never, {}, {}, never, never, false, never>;
|
|
806
806
|
}
|
|
807
807
|
|
|
808
|
+
type AiTerminalMode = 'openai' | 'codex';
|
|
809
|
+
interface AiTerminalMethodNames {
|
|
810
|
+
conversationCreate?: string;
|
|
811
|
+
conversationUpdate?: string;
|
|
812
|
+
conversationDelete?: string;
|
|
813
|
+
runOpenAI?: string;
|
|
814
|
+
uploadOpenAI?: string;
|
|
815
|
+
runCodex?: string;
|
|
816
|
+
uploadCodex?: string;
|
|
817
|
+
deployTest?: string;
|
|
818
|
+
conversationsPublication?: string;
|
|
819
|
+
messagesPublication?: string;
|
|
820
|
+
}
|
|
821
|
+
interface AiTerminalConfig$1 {
|
|
822
|
+
mode?: AiTerminalMode;
|
|
823
|
+
branchEnabled?: boolean;
|
|
824
|
+
showAdvanced?: boolean;
|
|
825
|
+
showToolMessages?: boolean;
|
|
826
|
+
allowUploads?: boolean;
|
|
827
|
+
maxFileMb?: number;
|
|
828
|
+
maxTotalMb?: number;
|
|
829
|
+
guardrails?: boolean;
|
|
830
|
+
deleteFilesAfterRun?: boolean;
|
|
831
|
+
systemPrompt?: string;
|
|
832
|
+
userPromptTemplate?: string;
|
|
833
|
+
responseFormat?: string;
|
|
834
|
+
model?: string;
|
|
835
|
+
temperature?: number;
|
|
836
|
+
maxTokens?: number;
|
|
837
|
+
profileId?: string;
|
|
838
|
+
methodNames?: AiTerminalMethodNames;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
type AiTerminalConversationStatus = 'active' | 'archived';
|
|
842
|
+
interface AiTerminalConversationModel {
|
|
843
|
+
_id?: string;
|
|
844
|
+
id_client?: string;
|
|
845
|
+
id_app?: string;
|
|
846
|
+
title?: string;
|
|
847
|
+
mode?: AiTerminalMode;
|
|
848
|
+
branch_enabled?: boolean;
|
|
849
|
+
branch_name?: string;
|
|
850
|
+
status?: AiTerminalConversationStatus;
|
|
851
|
+
profile_id?: string;
|
|
852
|
+
metadata?: Record<string, any>;
|
|
853
|
+
last_message_at?: Date;
|
|
854
|
+
last_message_id?: string;
|
|
855
|
+
createdAt?: Date;
|
|
856
|
+
updatedAt?: Date;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
type AiTerminalMessageRole = 'system' | 'user' | 'assistant' | 'tool';
|
|
860
|
+
interface AiTerminalAttachmentModel {
|
|
861
|
+
id?: string;
|
|
862
|
+
name?: string;
|
|
863
|
+
type?: string;
|
|
864
|
+
size?: number;
|
|
865
|
+
local_path?: string;
|
|
866
|
+
}
|
|
867
|
+
interface AiTerminalMessageUsage {
|
|
868
|
+
model?: string;
|
|
869
|
+
input_tokens?: number;
|
|
870
|
+
output_tokens?: number;
|
|
871
|
+
total_tokens?: number;
|
|
872
|
+
cost_estimate?: number;
|
|
873
|
+
}
|
|
874
|
+
interface AiTerminalMessageModel {
|
|
875
|
+
_id?: string;
|
|
876
|
+
id_conversation: string;
|
|
877
|
+
role: AiTerminalMessageRole;
|
|
878
|
+
content: string;
|
|
879
|
+
metadata?: Record<string, any>;
|
|
880
|
+
usage?: AiTerminalMessageUsage;
|
|
881
|
+
attachments?: AiTerminalAttachmentModel[];
|
|
882
|
+
createdAt?: Date;
|
|
883
|
+
updatedAt?: Date;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
declare class AiTerminalService {
|
|
887
|
+
private provider;
|
|
888
|
+
constructor(provider: ProviderService);
|
|
889
|
+
call<T>(method: string, ...parameters: any[]): Promise<T>;
|
|
890
|
+
subscribe<T>(publication: string, ...parameters: any[]): Observable<T>;
|
|
891
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalService, never>;
|
|
892
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AiTerminalService>;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
896
|
+
private terminal;
|
|
897
|
+
idClient: string;
|
|
898
|
+
idApp: string;
|
|
899
|
+
title: string;
|
|
900
|
+
config: AiTerminalConfig$1 | null;
|
|
901
|
+
conversationStatus: AiTerminalConversationStatus;
|
|
902
|
+
messageLimit: number;
|
|
903
|
+
placeholder: string;
|
|
904
|
+
messageScroll?: ElementRef<HTMLDivElement>;
|
|
905
|
+
conversations: AiTerminalConversationModel[];
|
|
906
|
+
messages: AiTerminalMessageModel[];
|
|
907
|
+
activeConversationId: string;
|
|
908
|
+
activeConversation: AiTerminalConversationModel | null;
|
|
909
|
+
messageText: string;
|
|
910
|
+
pendingFiles: File[];
|
|
911
|
+
isSending: boolean;
|
|
912
|
+
isDeployingTest: boolean;
|
|
913
|
+
isLoading: boolean;
|
|
914
|
+
errorMessage: string;
|
|
915
|
+
infoMessage: string;
|
|
916
|
+
editingConversationId: string;
|
|
917
|
+
editingTitle: string;
|
|
918
|
+
private conversationsSub?;
|
|
919
|
+
private messagesSub?;
|
|
920
|
+
constructor(terminal: AiTerminalService);
|
|
921
|
+
ngOnInit(): void;
|
|
922
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
923
|
+
ngOnDestroy(): void;
|
|
924
|
+
isCodexMode(): boolean;
|
|
925
|
+
showAdvanced(): boolean;
|
|
926
|
+
showToolMessages(): boolean;
|
|
927
|
+
allowUploads(): boolean;
|
|
928
|
+
maxFileMb(): number;
|
|
929
|
+
maxTotalMb(): number;
|
|
930
|
+
deleteFilesAfterRun(): boolean;
|
|
931
|
+
totalTokens(): number;
|
|
932
|
+
filteredMessages(): AiTerminalMessageModel[];
|
|
933
|
+
formatFileSize(bytes?: number): string;
|
|
934
|
+
trackByConversation(index: number, convo: AiTerminalConversationModel): string;
|
|
935
|
+
trackByMessage(index: number, message: AiTerminalMessageModel): string;
|
|
936
|
+
createConversation(): Promise<void>;
|
|
937
|
+
setActiveConversation(conversation: AiTerminalConversationModel): void;
|
|
938
|
+
startRename(conversation: AiTerminalConversationModel): void;
|
|
939
|
+
cancelRename(): void;
|
|
940
|
+
saveRename(conversation: AiTerminalConversationModel): Promise<void>;
|
|
941
|
+
deleteConversation(conversation: AiTerminalConversationModel): Promise<void>;
|
|
942
|
+
sendMessage(): Promise<void>;
|
|
943
|
+
deployTest(): Promise<void>;
|
|
944
|
+
handleFileSelect(event: Event): void;
|
|
945
|
+
removePendingFile(index: number): void;
|
|
946
|
+
clearComposer(): void;
|
|
947
|
+
private resolveConfig;
|
|
948
|
+
private resolveMode;
|
|
949
|
+
private resolveBranchEnabled;
|
|
950
|
+
private methodNames;
|
|
951
|
+
private subscribeConversations;
|
|
952
|
+
private filterConversations;
|
|
953
|
+
private ensureActiveConversation;
|
|
954
|
+
private subscribeMessages;
|
|
955
|
+
private uploadPendingFiles;
|
|
956
|
+
private readFileAsBase64;
|
|
957
|
+
private afterRunResponse;
|
|
958
|
+
private ensureConversationId;
|
|
959
|
+
private scrollToBottom;
|
|
960
|
+
private unsubscribeAll;
|
|
961
|
+
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>;
|
|
963
|
+
}
|
|
964
|
+
|
|
808
965
|
type AiTerminalConfig = {
|
|
809
966
|
mode?: string;
|
|
810
967
|
model?: string;
|
|
@@ -816,9 +973,8 @@ type AiTerminalConfig = {
|
|
|
816
973
|
systemPrompt?: string;
|
|
817
974
|
[key: string]: unknown;
|
|
818
975
|
};
|
|
819
|
-
declare class AiAssistantComponent
|
|
976
|
+
declare class AiAssistantComponent {
|
|
820
977
|
private router;
|
|
821
|
-
private _terminalComponent?;
|
|
822
978
|
idClient: string;
|
|
823
979
|
idApp: string;
|
|
824
980
|
title: string;
|
|
@@ -827,24 +983,16 @@ declare class AiAssistantComponent implements AfterViewInit, OnChanges, OnDestro
|
|
|
827
983
|
supportTicketEnabled: boolean;
|
|
828
984
|
config: Partial<AiTerminalConfig> | null;
|
|
829
985
|
closed: EventEmitter<void>;
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
private terminalRef;
|
|
833
|
-
private viewReady;
|
|
834
|
-
constructor(router: Router, _terminalComponent?: Type<unknown>);
|
|
986
|
+
terminal?: AiTerminalComponent;
|
|
987
|
+
constructor(router: Router);
|
|
835
988
|
get terminalConfig(): AiTerminalConfig;
|
|
836
|
-
ngAfterViewInit(): void;
|
|
837
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
838
|
-
ngOnDestroy(): void;
|
|
839
989
|
closePanel(): void;
|
|
840
990
|
openSupportTicket(): void;
|
|
841
991
|
handleBackdropClick(event: MouseEvent): void;
|
|
842
992
|
private buildSupportTicketSummary;
|
|
843
|
-
private syncTerminalInputs;
|
|
844
|
-
private setTerminalInput;
|
|
845
993
|
private sanitizeSummary;
|
|
846
994
|
private truncate;
|
|
847
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AiAssistantComponent,
|
|
995
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AiAssistantComponent, never>;
|
|
848
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>;
|
|
849
997
|
}
|
|
850
998
|
|
|
@@ -1008,73 +1156,6 @@ declare class PipeModule {
|
|
|
1008
1156
|
static ɵinj: i0.ɵɵInjectorDeclaration<PipeModule>;
|
|
1009
1157
|
}
|
|
1010
1158
|
|
|
1011
|
-
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
1012
|
-
resolveFirstDayOfWeek: () => "S" | "M";
|
|
1013
|
-
resolveTimezone: () => any;
|
|
1014
|
-
};
|
|
1015
|
-
declare class CoreServicesModule {
|
|
1016
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
|
|
1017
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1.BrowserAnimationsModule, typeof i2.ToastrModule], never>;
|
|
1018
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
declare class CoreShellModule {
|
|
1022
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
|
|
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]>;
|
|
1024
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
declare class ForgotPasswordComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
1028
|
-
private _route;
|
|
1029
|
-
private _services;
|
|
1030
|
-
private _http;
|
|
1031
|
-
private _ds;
|
|
1032
|
-
serverURL: string;
|
|
1033
|
-
form: FormGroup;
|
|
1034
|
-
user: UserModel;
|
|
1035
|
-
subscription$: Subscription[];
|
|
1036
|
-
token: string;
|
|
1037
|
-
disableFormButton: boolean;
|
|
1038
|
-
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
1039
|
-
ngOnInit(): void;
|
|
1040
|
-
ngOnDestroy(): void;
|
|
1041
|
-
submit(): void;
|
|
1042
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
1043
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "resolveio-forgot-password", never, {}, {}, never, never, false, never>;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
declare class EnrollComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
1047
|
-
private _route;
|
|
1048
|
-
private _services;
|
|
1049
|
-
private _http;
|
|
1050
|
-
private _ds;
|
|
1051
|
-
serverURL: string;
|
|
1052
|
-
form: FormGroup;
|
|
1053
|
-
user: UserModel;
|
|
1054
|
-
subscription$: Subscription[];
|
|
1055
|
-
token: string;
|
|
1056
|
-
disableFormButton: boolean;
|
|
1057
|
-
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
1058
|
-
ngOnInit(): void;
|
|
1059
|
-
ngOnDestroy(): void;
|
|
1060
|
-
submit(): void;
|
|
1061
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EnrollComponent, never>;
|
|
1062
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EnrollComponent, "resolveio-enroll", never, {}, {}, never, never, false, never>;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
declare class Auth365Component extends BaseComponent {
|
|
1066
|
-
private _app;
|
|
1067
|
-
private _route;
|
|
1068
|
-
private _services;
|
|
1069
|
-
private _http;
|
|
1070
|
-
private _ds;
|
|
1071
|
-
private _socket;
|
|
1072
|
-
token: string;
|
|
1073
|
-
constructor(_app: CoreService, _route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService, _socket: SocketManagerService);
|
|
1074
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Auth365Component, never>;
|
|
1075
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Auth365Component, "resolveio-auth365", never, {}, {}, never, never, false, never>;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
1159
|
declare class CollapseTableComponent implements OnInit, OnDestroy {
|
|
1079
1160
|
private _resizeService;
|
|
1080
1161
|
private _account;
|
|
@@ -1097,7 +1178,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
|
|
|
1097
1178
|
|
|
1098
1179
|
declare class CollapseTableModule {
|
|
1099
1180
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
|
|
1100
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i1
|
|
1181
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i1.FormsModule, typeof i2.CommonModule], [typeof CollapseTableComponent]>;
|
|
1101
1182
|
static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
|
|
1102
1183
|
}
|
|
1103
1184
|
|
|
@@ -1116,7 +1197,7 @@ declare class FormButtonComponent extends BaseComponent {
|
|
|
1116
1197
|
|
|
1117
1198
|
declare class FormButtonModule {
|
|
1118
1199
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
|
|
1119
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2
|
|
1200
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2.CommonModule, typeof i4.NgbTooltipModule], [typeof FormButtonComponent]>;
|
|
1120
1201
|
static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
|
|
1121
1202
|
}
|
|
1122
1203
|
|
|
@@ -1136,7 +1217,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
|
|
|
1136
1217
|
|
|
1137
1218
|
declare class ResponsiveButtonGroupModule {
|
|
1138
1219
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
|
|
1139
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2
|
|
1220
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
|
|
1140
1221
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
|
|
1141
1222
|
}
|
|
1142
1223
|
|
|
@@ -1151,7 +1232,7 @@ declare class UserRoleComponent extends BaseComponent {
|
|
|
1151
1232
|
|
|
1152
1233
|
declare class UserRoleModule {
|
|
1153
1234
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
|
|
1154
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2
|
|
1235
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2.CommonModule], [typeof UserRoleComponent]>;
|
|
1155
1236
|
static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
|
|
1156
1237
|
}
|
|
1157
1238
|
|
|
@@ -1237,7 +1318,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1237
1318
|
|
|
1238
1319
|
declare class SortTableModule {
|
|
1239
1320
|
static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
|
|
1240
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i1
|
|
1321
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i1.FormsModule, typeof i2.CommonModule], [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent]>;
|
|
1241
1322
|
static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
|
|
1242
1323
|
}
|
|
1243
1324
|
|
|
@@ -1409,10 +1490,83 @@ declare class NgDragDropModule {
|
|
|
1409
1490
|
|
|
1410
1491
|
declare class SharedModule {
|
|
1411
1492
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
1412
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1
|
|
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]>;
|
|
1413
1494
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
1414
1495
|
}
|
|
1415
1496
|
|
|
1497
|
+
declare class AiTerminalModule {
|
|
1498
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalModule, never>;
|
|
1499
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AiTerminalModule, [typeof AiTerminalComponent], [typeof SharedModule], [typeof AiTerminalComponent]>;
|
|
1500
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AiTerminalModule>;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
1504
|
+
resolveFirstDayOfWeek: () => "S" | "M";
|
|
1505
|
+
resolveTimezone: () => any;
|
|
1506
|
+
};
|
|
1507
|
+
declare class CoreServicesModule {
|
|
1508
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
|
|
1509
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1$1.BrowserAnimationsModule, typeof i2$1.ToastrModule], never>;
|
|
1510
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
declare class CoreShellModule {
|
|
1514
|
+
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]>;
|
|
1516
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
declare class ForgotPasswordComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
1520
|
+
private _route;
|
|
1521
|
+
private _services;
|
|
1522
|
+
private _http;
|
|
1523
|
+
private _ds;
|
|
1524
|
+
serverURL: string;
|
|
1525
|
+
form: FormGroup;
|
|
1526
|
+
user: UserModel;
|
|
1527
|
+
subscription$: Subscription[];
|
|
1528
|
+
token: string;
|
|
1529
|
+
disableFormButton: boolean;
|
|
1530
|
+
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
1531
|
+
ngOnInit(): void;
|
|
1532
|
+
ngOnDestroy(): void;
|
|
1533
|
+
submit(): void;
|
|
1534
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
1535
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "resolveio-forgot-password", never, {}, {}, never, never, false, never>;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
declare class EnrollComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
1539
|
+
private _route;
|
|
1540
|
+
private _services;
|
|
1541
|
+
private _http;
|
|
1542
|
+
private _ds;
|
|
1543
|
+
serverURL: string;
|
|
1544
|
+
form: FormGroup;
|
|
1545
|
+
user: UserModel;
|
|
1546
|
+
subscription$: Subscription[];
|
|
1547
|
+
token: string;
|
|
1548
|
+
disableFormButton: boolean;
|
|
1549
|
+
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
1550
|
+
ngOnInit(): void;
|
|
1551
|
+
ngOnDestroy(): void;
|
|
1552
|
+
submit(): void;
|
|
1553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnrollComponent, never>;
|
|
1554
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EnrollComponent, "resolveio-enroll", never, {}, {}, never, never, false, never>;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
declare class Auth365Component extends BaseComponent {
|
|
1558
|
+
private _app;
|
|
1559
|
+
private _route;
|
|
1560
|
+
private _services;
|
|
1561
|
+
private _http;
|
|
1562
|
+
private _ds;
|
|
1563
|
+
private _socket;
|
|
1564
|
+
token: string;
|
|
1565
|
+
constructor(_app: CoreService, _route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService, _socket: SocketManagerService);
|
|
1566
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Auth365Component, never>;
|
|
1567
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Auth365Component, "resolveio-auth365", never, {}, {}, never, never, false, never>;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1416
1570
|
declare class CoreAuthModule {
|
|
1417
1571
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreAuthModule, never>;
|
|
1418
1572
|
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreAuthModule, [typeof ForgotPasswordComponent, typeof EnrollComponent, typeof Auth365Component], [typeof SharedModule], [typeof ForgotPasswordComponent, typeof EnrollComponent, typeof Auth365Component]>;
|
|
@@ -1830,7 +1984,7 @@ declare class DatatableComponent extends BaseComponent {
|
|
|
1830
1984
|
|
|
1831
1985
|
declare class DatatableModule {
|
|
1832
1986
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
|
|
1833
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i4.NgbModule, typeof i1
|
|
1987
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i4.NgbModule, typeof i1.FormsModule, typeof i2.CommonModule, typeof i3.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
|
|
1834
1988
|
static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
|
|
1835
1989
|
}
|
|
1836
1990
|
|
|
@@ -1879,7 +2033,7 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
|
|
|
1879
2033
|
|
|
1880
2034
|
declare class FileModule {
|
|
1881
2035
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
|
|
1882
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof FileUploadComponent], [typeof i2
|
|
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]>;
|
|
1883
2037
|
static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
|
|
1884
2038
|
}
|
|
1885
2039
|
|
|
@@ -1895,8 +2049,6 @@ declare class CoreModule {
|
|
|
1895
2049
|
static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
|
|
1896
2050
|
}
|
|
1897
2051
|
|
|
1898
|
-
declare const AI_TERMINAL_COMPONENT: InjectionToken<Type<unknown>>;
|
|
1899
|
-
|
|
1900
2052
|
declare class AuthGuard {
|
|
1901
2053
|
private _router;
|
|
1902
2054
|
private _auth;
|
|
@@ -1988,7 +2140,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
|
|
|
1988
2140
|
|
|
1989
2141
|
declare class DateShortcutModule {
|
|
1990
2142
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutModule, never>;
|
|
1991
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i1
|
|
2143
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i1.FormsModule, typeof i2.CommonModule, typeof i9.RioSelectModule], [typeof DateShortcutComponent]>;
|
|
1992
2144
|
static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
|
|
1993
2145
|
}
|
|
1994
2146
|
|
|
@@ -2042,7 +2194,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
|
|
|
2042
2194
|
|
|
2043
2195
|
declare class SchedulerModule {
|
|
2044
2196
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
|
|
2045
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i4.NgbModule, typeof i1
|
|
2197
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i4.NgbModule, typeof i1.FormsModule, typeof i2.CommonModule, typeof i3.RouterModule], [typeof SchedulerComponent]>;
|
|
2046
2198
|
static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
|
|
2047
2199
|
}
|
|
2048
2200
|
|
|
@@ -2142,5 +2294,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
|
|
|
2142
2294
|
|
|
2143
2295
|
declare const SuperAdminModulePermission: ModulePermissionModel;
|
|
2144
2296
|
|
|
2145
|
-
export {
|
|
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 };
|
|
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 };
|