@resolveio/client-lib-core 21.6.7 → 21.6.9
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
|
@@ -223,6 +223,7 @@ declare class SocketService {
|
|
|
223
223
|
reconnectInterval: number;
|
|
224
224
|
timeoutInterval: number;
|
|
225
225
|
private timeout;
|
|
226
|
+
private reconnectTimeout;
|
|
226
227
|
readyState: number;
|
|
227
228
|
readyState$: BehaviorSubject<number>;
|
|
228
229
|
private protocols;
|
|
@@ -250,6 +251,7 @@ declare class SocketService {
|
|
|
250
251
|
private onMessageHandler;
|
|
251
252
|
private onErrorHandler;
|
|
252
253
|
private connect;
|
|
254
|
+
private scheduleReconnect;
|
|
253
255
|
private convertUTCDateToLocalDate;
|
|
254
256
|
private clearPongTimeout;
|
|
255
257
|
private recordActivity;
|
|
@@ -1055,6 +1057,10 @@ interface AiTerminalConfig$1 {
|
|
|
1055
1057
|
fallbackModels?: string[];
|
|
1056
1058
|
temperature?: number;
|
|
1057
1059
|
maxTokens?: number;
|
|
1060
|
+
plannerEnabled?: boolean;
|
|
1061
|
+
fastMode?: boolean;
|
|
1062
|
+
runBudgetMs?: number;
|
|
1063
|
+
mongoMaxTimeMs?: number;
|
|
1058
1064
|
profileId?: string;
|
|
1059
1065
|
methodNames?: AiTerminalMethodNames;
|
|
1060
1066
|
mongo?: AiTerminalMongoConfig;
|