@resolveio/client-lib-core 21.4.10 → 21.4.12
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
|
@@ -772,6 +772,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
|
|
|
772
772
|
openedWindow: boolean;
|
|
773
773
|
aiAssistantOpen: boolean;
|
|
774
774
|
aiAssistantAppId: string;
|
|
775
|
+
aiAssistantConfig: Record<string, any> | null;
|
|
775
776
|
currentRoute: string;
|
|
776
777
|
isOffline: boolean;
|
|
777
778
|
foundUpdate: boolean;
|
|
@@ -790,6 +791,9 @@ declare class CoreComponent extends BaseComponent implements OnInit {
|
|
|
790
791
|
getAiAssistantHeight(): number;
|
|
791
792
|
getAiAssistantReservedWidth(): number;
|
|
792
793
|
private resolveAiAssistantAppId;
|
|
794
|
+
private resolveAiAssistantConfig;
|
|
795
|
+
private resolveEnvModelList;
|
|
796
|
+
private normalizeOptionalEnvString;
|
|
793
797
|
onPushBackButton(): void;
|
|
794
798
|
onPushReloadButton(): void;
|
|
795
799
|
onPushForwardButton(): void;
|
|
@@ -855,6 +859,8 @@ interface AiTerminalConfig$1 {
|
|
|
855
859
|
userPromptTemplate?: string;
|
|
856
860
|
responseFormat?: string;
|
|
857
861
|
model?: string;
|
|
862
|
+
fallbackModel?: string;
|
|
863
|
+
fallbackModels?: string[];
|
|
858
864
|
temperature?: number;
|
|
859
865
|
maxTokens?: number;
|
|
860
866
|
profileId?: string;
|
|
@@ -1149,6 +1155,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1149
1155
|
private resolveConfig;
|
|
1150
1156
|
private resolveMongoConfig;
|
|
1151
1157
|
private resolveMode;
|
|
1158
|
+
private resolveCodexPayloadConfig;
|
|
1159
|
+
private resolveCodexFallbackModels;
|
|
1152
1160
|
private resolveBranchEnabled;
|
|
1153
1161
|
private methodNames;
|
|
1154
1162
|
private subscribeConversations;
|
|
@@ -1170,6 +1178,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1170
1178
|
private isLocalMessage;
|
|
1171
1179
|
private isPendingAssistantMessage;
|
|
1172
1180
|
private normalizeMessageContent;
|
|
1181
|
+
private normalizeUsdCurrencyText;
|
|
1173
1182
|
private mergeProgressLists;
|
|
1174
1183
|
private appendLocalMessage;
|
|
1175
1184
|
private removeLocalMessage;
|
|
@@ -1259,6 +1268,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1259
1268
|
type AiTerminalConfig = {
|
|
1260
1269
|
mode?: string;
|
|
1261
1270
|
model?: string;
|
|
1271
|
+
fallbackModel?: string;
|
|
1272
|
+
fallbackModels?: string[];
|
|
1262
1273
|
guardrails?: boolean;
|
|
1263
1274
|
allowUploads?: boolean;
|
|
1264
1275
|
showAdvanced?: boolean;
|
|
@@ -2418,7 +2429,7 @@ interface CanComponentDeactivate {
|
|
|
2418
2429
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2419
2430
|
}
|
|
2420
2431
|
declare class CanDeactivateGuard {
|
|
2421
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2432
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
2422
2433
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2423
2434
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2424
2435
|
}
|