@vybestack/llxprt-code 0.1.23 → 0.2.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/README.md +21 -17
- package/dist/package.json +4 -3
- package/dist/src/auth/anthropic-oauth-provider.d.ts +50 -3
- package/dist/src/auth/anthropic-oauth-provider.js +287 -63
- package/dist/src/auth/anthropic-oauth-provider.js.map +1 -1
- package/dist/src/auth/gemini-oauth-provider.d.ts +34 -3
- package/dist/src/auth/gemini-oauth-provider.js +308 -14
- package/dist/src/auth/gemini-oauth-provider.js.map +1 -1
- package/dist/src/auth/migration.d.ts +26 -0
- package/dist/src/auth/migration.js +54 -0
- package/dist/src/auth/migration.js.map +1 -0
- package/dist/src/auth/oauth-manager.d.ts +24 -0
- package/dist/src/auth/oauth-manager.js +179 -14
- package/dist/src/auth/oauth-manager.js.map +1 -1
- package/dist/src/auth/oauth-manager.spec.js +10 -8
- package/dist/src/auth/oauth-manager.spec.js.map +1 -1
- package/dist/src/auth/qwen-oauth-provider.d.ts +59 -3
- package/dist/src/auth/qwen-oauth-provider.js +263 -41
- package/dist/src/auth/qwen-oauth-provider.js.map +1 -1
- package/dist/src/config/config.js +11 -10
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extension.d.ts +1 -1
- package/dist/src/config/extension.js +1 -1
- package/dist/src/gemini.js +33 -11
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/integration-tests/base-url-behavior.integration.test.js +4 -1
- package/dist/src/integration-tests/base-url-behavior.integration.test.js.map +1 -1
- package/dist/src/integration-tests/compression-settings-apply.integration.test.js +85 -332
- package/dist/src/integration-tests/compression-settings-apply.integration.test.js.map +1 -1
- package/dist/src/integration-tests/ephemeral-settings.integration.test.js +5 -16
- package/dist/src/integration-tests/ephemeral-settings.integration.test.js.map +1 -1
- package/dist/src/integration-tests/model-params-isolation.integration.test.js +8 -2
- package/dist/src/integration-tests/model-params-isolation.integration.test.js.map +1 -1
- package/dist/src/integration-tests/modelParams.integration.test.js +4 -1
- package/dist/src/integration-tests/modelParams.integration.test.js.map +1 -1
- package/dist/src/integration-tests/provider-switching.integration.test.js +4 -1
- package/dist/src/integration-tests/provider-switching.integration.test.js.map +1 -1
- package/dist/src/providers/index.d.ts +1 -1
- package/dist/src/providers/logging/LoggingProviderWrapper.test.js +58 -47
- package/dist/src/providers/logging/LoggingProviderWrapper.test.js.map +1 -1
- package/dist/src/providers/logging/multi-provider-logging.integration.test.js +130 -68
- package/dist/src/providers/logging/multi-provider-logging.integration.test.js.map +1 -1
- package/dist/src/providers/logging/performance.test.js +39 -16
- package/dist/src/providers/logging/performance.test.js.map +1 -1
- package/dist/src/providers/provider-gemini-switching.test.js +4 -1
- package/dist/src/providers/provider-gemini-switching.test.js.map +1 -1
- package/dist/src/providers/provider-switching.integration.test.js +12 -3
- package/dist/src/providers/provider-switching.integration.test.js.map +1 -1
- package/dist/src/providers/providerConfigUtils.js +2 -4
- package/dist/src/providers/providerConfigUtils.js.map +1 -1
- package/dist/src/providers/providerManagerInstance.js +24 -49
- package/dist/src/providers/providerManagerInstance.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.js +4 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/storage/ConversationStorage.test.js +10 -7
- package/dist/src/storage/ConversationStorage.test.js.map +1 -1
- package/dist/src/test-utils/mockCommandContext.js +2 -0
- package/dist/src/test-utils/mockCommandContext.js.map +1 -1
- package/dist/src/ui/App.e2e.test.d.ts +6 -0
- package/dist/src/ui/App.e2e.test.js +37 -0
- package/dist/src/ui/App.e2e.test.js.map +1 -0
- package/dist/src/ui/App.js +51 -4
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/commands/authCommand.d.ts +9 -1
- package/dist/src/ui/commands/authCommand.js +109 -31
- package/dist/src/ui/commands/authCommand.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.js +2 -0
- package/dist/src/ui/commands/clearCommand.js.map +1 -1
- package/dist/src/ui/commands/ideCommand.js +26 -0
- package/dist/src/ui/commands/ideCommand.js.map +1 -1
- package/dist/src/ui/commands/keyCommand.js +16 -54
- package/dist/src/ui/commands/keyCommand.js.map +1 -1
- package/dist/src/ui/commands/keyCommand.test.js +3 -3
- package/dist/src/ui/commands/keyCommand.test.js.map +1 -1
- package/dist/src/ui/commands/keyfileCommand.js +42 -32
- package/dist/src/ui/commands/keyfileCommand.js.map +1 -1
- package/dist/src/ui/commands/logoutCommand.d.ts +7 -0
- package/dist/src/ui/commands/logoutCommand.js +70 -0
- package/dist/src/ui/commands/logoutCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.js +16 -0
- package/dist/src/ui/commands/modelCommand.js.map +1 -1
- package/dist/src/ui/commands/profileCommand.js +26 -24
- package/dist/src/ui/commands/profileCommand.js.map +1 -1
- package/dist/src/ui/commands/profileCommand.test.js +15 -16
- package/dist/src/ui/commands/profileCommand.test.js.map +1 -1
- package/dist/src/ui/commands/providerCommand.js +10 -7
- package/dist/src/ui/commands/providerCommand.js.map +1 -1
- package/dist/src/ui/commands/setCommand.js +40 -19
- package/dist/src/ui/commands/setCommand.js.map +1 -1
- package/dist/src/ui/commands/setCommand.test.js +5 -7
- package/dist/src/ui/commands/setCommand.test.js.map +1 -1
- package/dist/src/ui/commands/setupGithubCommand.d.ts +2 -0
- package/dist/src/ui/commands/setupGithubCommand.js +123 -23
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
- package/dist/src/ui/commands/setupGithubCommand.test.js +94 -1
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -1
- package/dist/src/ui/commands/statusCommand.d.ts +7 -0
- package/dist/src/ui/commands/statusCommand.js +71 -0
- package/dist/src/ui/commands/statusCommand.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +1 -0
- package/dist/src/ui/commands/types.js.map +1 -1
- package/dist/src/ui/components/ContextIndicator.ui.test.js +19 -46
- package/dist/src/ui/components/ContextIndicator.ui.test.js.map +1 -1
- package/dist/src/ui/components/Footer.d.ts +1 -1
- package/dist/src/ui/components/Footer.js +7 -7
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/Footer.responsive.test.js +28 -25
- package/dist/src/ui/components/Footer.responsive.test.js.map +1 -1
- package/dist/src/ui/components/OAuthCodeDialog.d.ts +5 -0
- package/dist/src/ui/components/OAuthCodeDialog.js +31 -1
- package/dist/src/ui/components/OAuthCodeDialog.js.map +1 -1
- package/dist/src/ui/components/OAuthCodeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/OAuthCodeDialog.test.js +60 -0
- package/dist/src/ui/components/OAuthCodeDialog.test.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.js +23 -1
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.test.js +58 -2
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +2 -0
- package/dist/src/ui/contexts/SessionContext.js +9 -1
- package/dist/src/ui/contexts/SessionContext.js.map +1 -1
- package/dist/src/ui/contexts/TodoContext.js +2 -2
- package/dist/src/ui/contexts/TodoContext.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js +0 -2
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.test.js +21 -6
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +2 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useAuthCommand.js +6 -5
- package/dist/src/ui/hooks/useAuthCommand.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +47 -63
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useProviderDialog.js +2 -5
- package/dist/src/ui/hooks/useProviderDialog.js.map +1 -1
- package/dist/src/ui/hooks/useToolScheduler.test.js +60 -24
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
- package/dist/src/ui/utils/platformConstants.d.ts +2 -0
- package/dist/src/ui/utils/platformConstants.js +2 -0
- package/dist/src/ui/utils/platformConstants.js.map +1 -1
- package/dist/src/ui/utils/secureInputHandler.js +18 -7
- package/dist/src/ui/utils/secureInputHandler.js.map +1 -1
- package/dist/src/ui/utils/secureInputHandler.test.js +20 -0
- package/dist/src/ui/utils/secureInputHandler.test.js.map +1 -1
- package/dist/src/utils/privacy/ConversationDataRedactor.d.ts +3 -3
- package/dist/src/utils/privacy/ConversationDataRedactor.js +16 -12
- package/dist/src/utils/privacy/ConversationDataRedactor.js.map +1 -1
- package/dist/src/utils/privacy/ConversationDataRedactor.test.js +115 -72
- package/dist/src/utils/privacy/ConversationDataRedactor.test.js.map +1 -1
- package/dist/src/validateNonInterActiveAuth.js +8 -17
- package/dist/src/validateNonInterActiveAuth.js.map +1 -1
- package/dist/src/zed-integration/schema.d.ts +194 -91
- package/dist/src/zed-integration/schema.js +7 -1
- package/dist/src/zed-integration/schema.js.map +1 -1
- package/dist/src/zed-integration/zedIntegration.d.ts +1 -3
- package/dist/src/zed-integration/zedIntegration.js +454 -198
- package/dist/src/zed-integration/zedIntegration.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
@@ -47,6 +47,7 @@ export type EnvVariable = z.infer<typeof envVariableSchema>;
|
|
47
47
|
export type McpServer = z.infer<typeof mcpServerSchema>;
|
48
48
|
export type AgentCapabilities = z.infer<typeof agentCapabilitiesSchema>;
|
49
49
|
export type AuthMethod = z.infer<typeof authMethodSchema>;
|
50
|
+
export type PromptCapabilities = z.infer<typeof promptCapabilitiesSchema>;
|
50
51
|
export type ClientResponse = z.infer<typeof clientResponseSchema>;
|
51
52
|
export type ClientNotification = z.infer<typeof clientNotificationSchema>;
|
52
53
|
export type EmbeddedResourceResource = z.infer<typeof embeddedResourceResourceSchema>;
|
@@ -196,11 +197,11 @@ export declare const planEntrySchema: z.ZodObject<{
|
|
196
197
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
197
198
|
}, "strip", z.ZodTypeAny, {
|
198
199
|
content: string;
|
199
|
-
status: "
|
200
|
+
status: "in_progress" | "completed" | "pending";
|
200
201
|
priority: "high" | "medium" | "low";
|
201
202
|
}, {
|
202
203
|
content: string;
|
203
|
-
status: "
|
204
|
+
status: "in_progress" | "completed" | "pending";
|
204
205
|
priority: "high" | "medium" | "low";
|
205
206
|
}>;
|
206
207
|
export declare const permissionOptionSchema: z.ZodObject<{
|
@@ -312,12 +313,48 @@ export declare const mcpServerSchema: z.ZodObject<{
|
|
312
313
|
value: string;
|
313
314
|
}[];
|
314
315
|
}>;
|
316
|
+
export declare const promptCapabilitiesSchema: z.ZodObject<{
|
317
|
+
audio: z.ZodOptional<z.ZodBoolean>;
|
318
|
+
embeddedContext: z.ZodOptional<z.ZodBoolean>;
|
319
|
+
image: z.ZodOptional<z.ZodBoolean>;
|
320
|
+
}, "strip", z.ZodTypeAny, {
|
321
|
+
audio?: boolean | undefined;
|
322
|
+
image?: boolean | undefined;
|
323
|
+
embeddedContext?: boolean | undefined;
|
324
|
+
}, {
|
325
|
+
audio?: boolean | undefined;
|
326
|
+
image?: boolean | undefined;
|
327
|
+
embeddedContext?: boolean | undefined;
|
328
|
+
}>;
|
315
329
|
export declare const agentCapabilitiesSchema: z.ZodObject<{
|
316
|
-
loadSession: z.ZodBoolean
|
330
|
+
loadSession: z.ZodOptional<z.ZodBoolean>;
|
331
|
+
promptCapabilities: z.ZodOptional<z.ZodObject<{
|
332
|
+
audio: z.ZodOptional<z.ZodBoolean>;
|
333
|
+
embeddedContext: z.ZodOptional<z.ZodBoolean>;
|
334
|
+
image: z.ZodOptional<z.ZodBoolean>;
|
335
|
+
}, "strip", z.ZodTypeAny, {
|
336
|
+
audio?: boolean | undefined;
|
337
|
+
image?: boolean | undefined;
|
338
|
+
embeddedContext?: boolean | undefined;
|
339
|
+
}, {
|
340
|
+
audio?: boolean | undefined;
|
341
|
+
image?: boolean | undefined;
|
342
|
+
embeddedContext?: boolean | undefined;
|
343
|
+
}>>;
|
317
344
|
}, "strip", z.ZodTypeAny, {
|
318
|
-
loadSession
|
345
|
+
loadSession?: boolean | undefined;
|
346
|
+
promptCapabilities?: {
|
347
|
+
audio?: boolean | undefined;
|
348
|
+
image?: boolean | undefined;
|
349
|
+
embeddedContext?: boolean | undefined;
|
350
|
+
} | undefined;
|
319
351
|
}, {
|
320
|
-
loadSession
|
352
|
+
loadSession?: boolean | undefined;
|
353
|
+
promptCapabilities?: {
|
354
|
+
audio?: boolean | undefined;
|
355
|
+
image?: boolean | undefined;
|
356
|
+
embeddedContext?: boolean | undefined;
|
357
|
+
} | undefined;
|
321
358
|
}>;
|
322
359
|
export declare const authMethodSchema: z.ZodObject<{
|
323
360
|
description: z.ZodNullable<z.ZodString>;
|
@@ -519,11 +556,34 @@ export declare const loadSessionRequestSchema: z.ZodObject<{
|
|
519
556
|
}>;
|
520
557
|
export declare const initializeResponseSchema: z.ZodObject<{
|
521
558
|
agentCapabilities: z.ZodObject<{
|
522
|
-
loadSession: z.ZodBoolean
|
559
|
+
loadSession: z.ZodOptional<z.ZodBoolean>;
|
560
|
+
promptCapabilities: z.ZodOptional<z.ZodObject<{
|
561
|
+
audio: z.ZodOptional<z.ZodBoolean>;
|
562
|
+
embeddedContext: z.ZodOptional<z.ZodBoolean>;
|
563
|
+
image: z.ZodOptional<z.ZodBoolean>;
|
564
|
+
}, "strip", z.ZodTypeAny, {
|
565
|
+
audio?: boolean | undefined;
|
566
|
+
image?: boolean | undefined;
|
567
|
+
embeddedContext?: boolean | undefined;
|
568
|
+
}, {
|
569
|
+
audio?: boolean | undefined;
|
570
|
+
image?: boolean | undefined;
|
571
|
+
embeddedContext?: boolean | undefined;
|
572
|
+
}>>;
|
523
573
|
}, "strip", z.ZodTypeAny, {
|
524
|
-
loadSession
|
574
|
+
loadSession?: boolean | undefined;
|
575
|
+
promptCapabilities?: {
|
576
|
+
audio?: boolean | undefined;
|
577
|
+
image?: boolean | undefined;
|
578
|
+
embeddedContext?: boolean | undefined;
|
579
|
+
} | undefined;
|
525
580
|
}, {
|
526
|
-
loadSession
|
581
|
+
loadSession?: boolean | undefined;
|
582
|
+
promptCapabilities?: {
|
583
|
+
audio?: boolean | undefined;
|
584
|
+
image?: boolean | undefined;
|
585
|
+
embeddedContext?: boolean | undefined;
|
586
|
+
} | undefined;
|
527
587
|
}>;
|
528
588
|
authMethods: z.ZodArray<z.ZodObject<{
|
529
589
|
description: z.ZodNullable<z.ZodString>;
|
@@ -541,7 +601,12 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
541
601
|
protocolVersion: z.ZodNumber;
|
542
602
|
}, "strip", z.ZodTypeAny, {
|
543
603
|
agentCapabilities: {
|
544
|
-
loadSession
|
604
|
+
loadSession?: boolean | undefined;
|
605
|
+
promptCapabilities?: {
|
606
|
+
audio?: boolean | undefined;
|
607
|
+
image?: boolean | undefined;
|
608
|
+
embeddedContext?: boolean | undefined;
|
609
|
+
} | undefined;
|
545
610
|
};
|
546
611
|
authMethods: {
|
547
612
|
id: string;
|
@@ -551,7 +616,12 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
551
616
|
protocolVersion: number;
|
552
617
|
}, {
|
553
618
|
agentCapabilities: {
|
554
|
-
loadSession
|
619
|
+
loadSession?: boolean | undefined;
|
620
|
+
promptCapabilities?: {
|
621
|
+
audio?: boolean | undefined;
|
622
|
+
image?: boolean | undefined;
|
623
|
+
embeddedContext?: boolean | undefined;
|
624
|
+
} | undefined;
|
555
625
|
};
|
556
626
|
authMethods: {
|
557
627
|
id: string;
|
@@ -1511,9 +1581,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1511
1581
|
title: z.ZodString;
|
1512
1582
|
toolCallId: z.ZodString;
|
1513
1583
|
}, "strip", z.ZodTypeAny, {
|
1514
|
-
status: "
|
1584
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
1515
1585
|
title: string;
|
1516
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
1586
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
1517
1587
|
toolCallId: string;
|
1518
1588
|
content?: ({
|
1519
1589
|
content: {
|
@@ -1585,9 +1655,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1585
1655
|
}[] | undefined;
|
1586
1656
|
rawInput?: unknown;
|
1587
1657
|
}, {
|
1588
|
-
status: "
|
1658
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
1589
1659
|
title: string;
|
1590
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
1660
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
1591
1661
|
toolCallId: string;
|
1592
1662
|
content?: ({
|
1593
1663
|
content: {
|
@@ -3416,9 +3486,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3416
3486
|
title: z.ZodString;
|
3417
3487
|
toolCallId: z.ZodString;
|
3418
3488
|
}, "strip", z.ZodTypeAny, {
|
3419
|
-
status: "
|
3489
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
3420
3490
|
title: string;
|
3421
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
3491
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
3422
3492
|
toolCallId: string;
|
3423
3493
|
sessionUpdate: "tool_call";
|
3424
3494
|
content?: ({
|
@@ -3491,9 +3561,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3491
3561
|
}[] | undefined;
|
3492
3562
|
rawInput?: unknown;
|
3493
3563
|
}, {
|
3494
|
-
status: "
|
3564
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
3495
3565
|
title: string;
|
3496
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
3566
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
3497
3567
|
toolCallId: string;
|
3498
3568
|
sessionUpdate: "tool_call";
|
3499
3569
|
content?: ({
|
@@ -4005,9 +4075,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4005
4075
|
newText: string;
|
4006
4076
|
oldText: string | null;
|
4007
4077
|
})[] | null | undefined;
|
4008
|
-
status?: "
|
4078
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
4009
4079
|
title?: string | null | undefined;
|
4010
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
4080
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
4011
4081
|
locations?: {
|
4012
4082
|
path: string;
|
4013
4083
|
line?: number | null | undefined;
|
@@ -4080,9 +4150,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4080
4150
|
newText: string;
|
4081
4151
|
oldText: string | null;
|
4082
4152
|
})[] | null | undefined;
|
4083
|
-
status?: "
|
4153
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
4084
4154
|
title?: string | null | undefined;
|
4085
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
4155
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
4086
4156
|
locations?: {
|
4087
4157
|
path: string;
|
4088
4158
|
line?: number | null | undefined;
|
@@ -4095,36 +4165,59 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4095
4165
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
4096
4166
|
}, "strip", z.ZodTypeAny, {
|
4097
4167
|
content: string;
|
4098
|
-
status: "
|
4168
|
+
status: "in_progress" | "completed" | "pending";
|
4099
4169
|
priority: "high" | "medium" | "low";
|
4100
4170
|
}, {
|
4101
4171
|
content: string;
|
4102
|
-
status: "
|
4172
|
+
status: "in_progress" | "completed" | "pending";
|
4103
4173
|
priority: "high" | "medium" | "low";
|
4104
4174
|
}>, "many">;
|
4105
4175
|
sessionUpdate: z.ZodLiteral<"plan">;
|
4106
4176
|
}, "strip", z.ZodTypeAny, {
|
4107
4177
|
entries: {
|
4108
4178
|
content: string;
|
4109
|
-
status: "
|
4179
|
+
status: "in_progress" | "completed" | "pending";
|
4110
4180
|
priority: "high" | "medium" | "low";
|
4111
4181
|
}[];
|
4112
4182
|
sessionUpdate: "plan";
|
4113
4183
|
}, {
|
4114
4184
|
entries: {
|
4115
4185
|
content: string;
|
4116
|
-
status: "
|
4186
|
+
status: "in_progress" | "completed" | "pending";
|
4117
4187
|
priority: "high" | "medium" | "low";
|
4118
4188
|
}[];
|
4119
4189
|
sessionUpdate: "plan";
|
4120
4190
|
}>]>;
|
4121
4191
|
export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
4122
4192
|
agentCapabilities: z.ZodObject<{
|
4123
|
-
loadSession: z.ZodBoolean
|
4193
|
+
loadSession: z.ZodOptional<z.ZodBoolean>;
|
4194
|
+
promptCapabilities: z.ZodOptional<z.ZodObject<{
|
4195
|
+
audio: z.ZodOptional<z.ZodBoolean>;
|
4196
|
+
embeddedContext: z.ZodOptional<z.ZodBoolean>;
|
4197
|
+
image: z.ZodOptional<z.ZodBoolean>;
|
4198
|
+
}, "strip", z.ZodTypeAny, {
|
4199
|
+
audio?: boolean | undefined;
|
4200
|
+
image?: boolean | undefined;
|
4201
|
+
embeddedContext?: boolean | undefined;
|
4202
|
+
}, {
|
4203
|
+
audio?: boolean | undefined;
|
4204
|
+
image?: boolean | undefined;
|
4205
|
+
embeddedContext?: boolean | undefined;
|
4206
|
+
}>>;
|
4124
4207
|
}, "strip", z.ZodTypeAny, {
|
4125
|
-
loadSession
|
4208
|
+
loadSession?: boolean | undefined;
|
4209
|
+
promptCapabilities?: {
|
4210
|
+
audio?: boolean | undefined;
|
4211
|
+
image?: boolean | undefined;
|
4212
|
+
embeddedContext?: boolean | undefined;
|
4213
|
+
} | undefined;
|
4126
4214
|
}, {
|
4127
|
-
loadSession
|
4215
|
+
loadSession?: boolean | undefined;
|
4216
|
+
promptCapabilities?: {
|
4217
|
+
audio?: boolean | undefined;
|
4218
|
+
image?: boolean | undefined;
|
4219
|
+
embeddedContext?: boolean | undefined;
|
4220
|
+
} | undefined;
|
4128
4221
|
}>;
|
4129
4222
|
authMethods: z.ZodArray<z.ZodObject<{
|
4130
4223
|
description: z.ZodNullable<z.ZodString>;
|
@@ -4142,7 +4235,12 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
4142
4235
|
protocolVersion: z.ZodNumber;
|
4143
4236
|
}, "strip", z.ZodTypeAny, {
|
4144
4237
|
agentCapabilities: {
|
4145
|
-
loadSession
|
4238
|
+
loadSession?: boolean | undefined;
|
4239
|
+
promptCapabilities?: {
|
4240
|
+
audio?: boolean | undefined;
|
4241
|
+
image?: boolean | undefined;
|
4242
|
+
embeddedContext?: boolean | undefined;
|
4243
|
+
} | undefined;
|
4146
4244
|
};
|
4147
4245
|
authMethods: {
|
4148
4246
|
id: string;
|
@@ -4152,7 +4250,12 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
4152
4250
|
protocolVersion: number;
|
4153
4251
|
}, {
|
4154
4252
|
agentCapabilities: {
|
4155
|
-
loadSession
|
4253
|
+
loadSession?: boolean | undefined;
|
4254
|
+
promptCapabilities?: {
|
4255
|
+
audio?: boolean | undefined;
|
4256
|
+
image?: boolean | undefined;
|
4257
|
+
embeddedContext?: boolean | undefined;
|
4258
|
+
} | undefined;
|
4156
4259
|
};
|
4157
4260
|
authMethods: {
|
4158
4261
|
id: string;
|
@@ -4561,9 +4664,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4561
4664
|
title: z.ZodString;
|
4562
4665
|
toolCallId: z.ZodString;
|
4563
4666
|
}, "strip", z.ZodTypeAny, {
|
4564
|
-
status: "
|
4667
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
4565
4668
|
title: string;
|
4566
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
4669
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
4567
4670
|
toolCallId: string;
|
4568
4671
|
content?: ({
|
4569
4672
|
content: {
|
@@ -4635,9 +4738,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4635
4738
|
}[] | undefined;
|
4636
4739
|
rawInput?: unknown;
|
4637
4740
|
}, {
|
4638
|
-
status: "
|
4741
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
4639
4742
|
title: string;
|
4640
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
4743
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
4641
4744
|
toolCallId: string;
|
4642
4745
|
content?: ({
|
4643
4746
|
content: {
|
@@ -4717,9 +4820,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4717
4820
|
optionId: string;
|
4718
4821
|
}[];
|
4719
4822
|
toolCall: {
|
4720
|
-
status: "
|
4823
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
4721
4824
|
title: string;
|
4722
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
4825
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
4723
4826
|
toolCallId: string;
|
4724
4827
|
content?: ({
|
4725
4828
|
content: {
|
@@ -4799,9 +4902,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4799
4902
|
optionId: string;
|
4800
4903
|
}[];
|
4801
4904
|
toolCall: {
|
4802
|
-
status: "
|
4905
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
4803
4906
|
title: string;
|
4804
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
4907
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
4805
4908
|
toolCallId: string;
|
4806
4909
|
content?: ({
|
4807
4910
|
content: {
|
@@ -6311,9 +6414,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6311
6414
|
title: z.ZodString;
|
6312
6415
|
toolCallId: z.ZodString;
|
6313
6416
|
}, "strip", z.ZodTypeAny, {
|
6314
|
-
status: "
|
6417
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
6315
6418
|
title: string;
|
6316
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
6419
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
6317
6420
|
toolCallId: string;
|
6318
6421
|
sessionUpdate: "tool_call";
|
6319
6422
|
content?: ({
|
@@ -6386,9 +6489,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6386
6489
|
}[] | undefined;
|
6387
6490
|
rawInput?: unknown;
|
6388
6491
|
}, {
|
6389
|
-
status: "
|
6492
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
6390
6493
|
title: string;
|
6391
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
6494
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
6392
6495
|
toolCallId: string;
|
6393
6496
|
sessionUpdate: "tool_call";
|
6394
6497
|
content?: ({
|
@@ -6900,9 +7003,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6900
7003
|
newText: string;
|
6901
7004
|
oldText: string | null;
|
6902
7005
|
})[] | null | undefined;
|
6903
|
-
status?: "
|
7006
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
6904
7007
|
title?: string | null | undefined;
|
6905
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
7008
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
6906
7009
|
locations?: {
|
6907
7010
|
path: string;
|
6908
7011
|
line?: number | null | undefined;
|
@@ -6975,9 +7078,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6975
7078
|
newText: string;
|
6976
7079
|
oldText: string | null;
|
6977
7080
|
})[] | null | undefined;
|
6978
|
-
status?: "
|
7081
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
6979
7082
|
title?: string | null | undefined;
|
6980
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
7083
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
6981
7084
|
locations?: {
|
6982
7085
|
path: string;
|
6983
7086
|
line?: number | null | undefined;
|
@@ -6990,25 +7093,25 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6990
7093
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
6991
7094
|
}, "strip", z.ZodTypeAny, {
|
6992
7095
|
content: string;
|
6993
|
-
status: "
|
7096
|
+
status: "in_progress" | "completed" | "pending";
|
6994
7097
|
priority: "high" | "medium" | "low";
|
6995
7098
|
}, {
|
6996
7099
|
content: string;
|
6997
|
-
status: "
|
7100
|
+
status: "in_progress" | "completed" | "pending";
|
6998
7101
|
priority: "high" | "medium" | "low";
|
6999
7102
|
}>, "many">;
|
7000
7103
|
sessionUpdate: z.ZodLiteral<"plan">;
|
7001
7104
|
}, "strip", z.ZodTypeAny, {
|
7002
7105
|
entries: {
|
7003
7106
|
content: string;
|
7004
|
-
status: "
|
7107
|
+
status: "in_progress" | "completed" | "pending";
|
7005
7108
|
priority: "high" | "medium" | "low";
|
7006
7109
|
}[];
|
7007
7110
|
sessionUpdate: "plan";
|
7008
7111
|
}, {
|
7009
7112
|
entries: {
|
7010
7113
|
content: string;
|
7011
|
-
status: "
|
7114
|
+
status: "in_progress" | "completed" | "pending";
|
7012
7115
|
priority: "high" | "medium" | "low";
|
7013
7116
|
}[];
|
7014
7117
|
sessionUpdate: "plan";
|
@@ -7190,9 +7293,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7190
7293
|
};
|
7191
7294
|
sessionUpdate: "agent_thought_chunk";
|
7192
7295
|
} | {
|
7193
|
-
status: "
|
7296
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
7194
7297
|
title: string;
|
7195
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
7298
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
7196
7299
|
toolCallId: string;
|
7197
7300
|
sessionUpdate: "tool_call";
|
7198
7301
|
content?: ({
|
@@ -7331,9 +7434,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7331
7434
|
newText: string;
|
7332
7435
|
oldText: string | null;
|
7333
7436
|
})[] | null | undefined;
|
7334
|
-
status?: "
|
7437
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
7335
7438
|
title?: string | null | undefined;
|
7336
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
7439
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
7337
7440
|
locations?: {
|
7338
7441
|
path: string;
|
7339
7442
|
line?: number | null | undefined;
|
@@ -7342,7 +7445,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7342
7445
|
} | {
|
7343
7446
|
entries: {
|
7344
7447
|
content: string;
|
7345
|
-
status: "
|
7448
|
+
status: "in_progress" | "completed" | "pending";
|
7346
7449
|
priority: "high" | "medium" | "low";
|
7347
7450
|
}[];
|
7348
7451
|
sessionUpdate: "plan";
|
@@ -7524,9 +7627,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7524
7627
|
};
|
7525
7628
|
sessionUpdate: "agent_thought_chunk";
|
7526
7629
|
} | {
|
7527
|
-
status: "
|
7630
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
7528
7631
|
title: string;
|
7529
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
7632
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
7530
7633
|
toolCallId: string;
|
7531
7634
|
sessionUpdate: "tool_call";
|
7532
7635
|
content?: ({
|
@@ -7665,9 +7768,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7665
7768
|
newText: string;
|
7666
7769
|
oldText: string | null;
|
7667
7770
|
})[] | null | undefined;
|
7668
|
-
status?: "
|
7771
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
7669
7772
|
title?: string | null | undefined;
|
7670
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
7773
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
7671
7774
|
locations?: {
|
7672
7775
|
path: string;
|
7673
7776
|
line?: number | null | undefined;
|
@@ -7676,7 +7779,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7676
7779
|
} | {
|
7677
7780
|
entries: {
|
7678
7781
|
content: string;
|
7679
|
-
status: "
|
7782
|
+
status: "in_progress" | "completed" | "pending";
|
7680
7783
|
priority: "high" | "medium" | "low";
|
7681
7784
|
}[];
|
7682
7785
|
sessionUpdate: "plan";
|
@@ -8097,9 +8200,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8097
8200
|
title: z.ZodString;
|
8098
8201
|
toolCallId: z.ZodString;
|
8099
8202
|
}, "strip", z.ZodTypeAny, {
|
8100
|
-
status: "
|
8203
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
8101
8204
|
title: string;
|
8102
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
8205
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
8103
8206
|
toolCallId: string;
|
8104
8207
|
content?: ({
|
8105
8208
|
content: {
|
@@ -8171,9 +8274,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8171
8274
|
}[] | undefined;
|
8172
8275
|
rawInput?: unknown;
|
8173
8276
|
}, {
|
8174
|
-
status: "
|
8277
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
8175
8278
|
title: string;
|
8176
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
8279
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
8177
8280
|
toolCallId: string;
|
8178
8281
|
content?: ({
|
8179
8282
|
content: {
|
@@ -8253,9 +8356,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8253
8356
|
optionId: string;
|
8254
8357
|
}[];
|
8255
8358
|
toolCall: {
|
8256
|
-
status: "
|
8359
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
8257
8360
|
title: string;
|
8258
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
8361
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
8259
8362
|
toolCallId: string;
|
8260
8363
|
content?: ({
|
8261
8364
|
content: {
|
@@ -8335,9 +8438,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8335
8438
|
optionId: string;
|
8336
8439
|
}[];
|
8337
8440
|
toolCall: {
|
8338
|
-
status: "
|
8441
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
8339
8442
|
title: string;
|
8340
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
8443
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
8341
8444
|
toolCallId: string;
|
8342
8445
|
content?: ({
|
8343
8446
|
content: {
|
@@ -10306,9 +10409,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10306
10409
|
title: z.ZodString;
|
10307
10410
|
toolCallId: z.ZodString;
|
10308
10411
|
}, "strip", z.ZodTypeAny, {
|
10309
|
-
status: "
|
10412
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
10310
10413
|
title: string;
|
10311
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
10414
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
10312
10415
|
toolCallId: string;
|
10313
10416
|
sessionUpdate: "tool_call";
|
10314
10417
|
content?: ({
|
@@ -10381,9 +10484,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10381
10484
|
}[] | undefined;
|
10382
10485
|
rawInput?: unknown;
|
10383
10486
|
}, {
|
10384
|
-
status: "
|
10487
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
10385
10488
|
title: string;
|
10386
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
10489
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
10387
10490
|
toolCallId: string;
|
10388
10491
|
sessionUpdate: "tool_call";
|
10389
10492
|
content?: ({
|
@@ -10895,9 +10998,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10895
10998
|
newText: string;
|
10896
10999
|
oldText: string | null;
|
10897
11000
|
})[] | null | undefined;
|
10898
|
-
status?: "
|
11001
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
10899
11002
|
title?: string | null | undefined;
|
10900
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
11003
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
10901
11004
|
locations?: {
|
10902
11005
|
path: string;
|
10903
11006
|
line?: number | null | undefined;
|
@@ -10970,9 +11073,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10970
11073
|
newText: string;
|
10971
11074
|
oldText: string | null;
|
10972
11075
|
})[] | null | undefined;
|
10973
|
-
status?: "
|
11076
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
10974
11077
|
title?: string | null | undefined;
|
10975
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
11078
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
10976
11079
|
locations?: {
|
10977
11080
|
path: string;
|
10978
11081
|
line?: number | null | undefined;
|
@@ -10985,25 +11088,25 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10985
11088
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
10986
11089
|
}, "strip", z.ZodTypeAny, {
|
10987
11090
|
content: string;
|
10988
|
-
status: "
|
11091
|
+
status: "in_progress" | "completed" | "pending";
|
10989
11092
|
priority: "high" | "medium" | "low";
|
10990
11093
|
}, {
|
10991
11094
|
content: string;
|
10992
|
-
status: "
|
11095
|
+
status: "in_progress" | "completed" | "pending";
|
10993
11096
|
priority: "high" | "medium" | "low";
|
10994
11097
|
}>, "many">;
|
10995
11098
|
sessionUpdate: z.ZodLiteral<"plan">;
|
10996
11099
|
}, "strip", z.ZodTypeAny, {
|
10997
11100
|
entries: {
|
10998
11101
|
content: string;
|
10999
|
-
status: "
|
11102
|
+
status: "in_progress" | "completed" | "pending";
|
11000
11103
|
priority: "high" | "medium" | "low";
|
11001
11104
|
}[];
|
11002
11105
|
sessionUpdate: "plan";
|
11003
11106
|
}, {
|
11004
11107
|
entries: {
|
11005
11108
|
content: string;
|
11006
|
-
status: "
|
11109
|
+
status: "in_progress" | "completed" | "pending";
|
11007
11110
|
priority: "high" | "medium" | "low";
|
11008
11111
|
}[];
|
11009
11112
|
sessionUpdate: "plan";
|
@@ -11185,9 +11288,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11185
11288
|
};
|
11186
11289
|
sessionUpdate: "agent_thought_chunk";
|
11187
11290
|
} | {
|
11188
|
-
status: "
|
11291
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
11189
11292
|
title: string;
|
11190
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
11293
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
11191
11294
|
toolCallId: string;
|
11192
11295
|
sessionUpdate: "tool_call";
|
11193
11296
|
content?: ({
|
@@ -11326,9 +11429,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11326
11429
|
newText: string;
|
11327
11430
|
oldText: string | null;
|
11328
11431
|
})[] | null | undefined;
|
11329
|
-
status?: "
|
11432
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
11330
11433
|
title?: string | null | undefined;
|
11331
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
11434
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
11332
11435
|
locations?: {
|
11333
11436
|
path: string;
|
11334
11437
|
line?: number | null | undefined;
|
@@ -11337,7 +11440,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11337
11440
|
} | {
|
11338
11441
|
entries: {
|
11339
11442
|
content: string;
|
11340
|
-
status: "
|
11443
|
+
status: "in_progress" | "completed" | "pending";
|
11341
11444
|
priority: "high" | "medium" | "low";
|
11342
11445
|
}[];
|
11343
11446
|
sessionUpdate: "plan";
|
@@ -11519,9 +11622,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11519
11622
|
};
|
11520
11623
|
sessionUpdate: "agent_thought_chunk";
|
11521
11624
|
} | {
|
11522
|
-
status: "
|
11625
|
+
status: "in_progress" | "completed" | "pending" | "failed";
|
11523
11626
|
title: string;
|
11524
|
-
kind: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think"
|
11627
|
+
kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
|
11525
11628
|
toolCallId: string;
|
11526
11629
|
sessionUpdate: "tool_call";
|
11527
11630
|
content?: ({
|
@@ -11660,9 +11763,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11660
11763
|
newText: string;
|
11661
11764
|
oldText: string | null;
|
11662
11765
|
})[] | null | undefined;
|
11663
|
-
status?: "
|
11766
|
+
status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
|
11664
11767
|
title?: string | null | undefined;
|
11665
|
-
kind?: "search" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" |
|
11768
|
+
kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
|
11666
11769
|
locations?: {
|
11667
11770
|
path: string;
|
11668
11771
|
line?: number | null | undefined;
|
@@ -11671,7 +11774,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11671
11774
|
} | {
|
11672
11775
|
entries: {
|
11673
11776
|
content: string;
|
11674
|
-
status: "
|
11777
|
+
status: "in_progress" | "completed" | "pending";
|
11675
11778
|
priority: "high" | "medium" | "low";
|
11676
11779
|
}[];
|
11677
11780
|
sessionUpdate: "plan";
|