@vybestack/llxprt-code 0.1.23-nightly.250904.97906524 → 0.1.23-nightly.250905.67589d14

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.
Files changed (68) hide show
  1. package/dist/package.json +3 -3
  2. package/dist/src/gemini.js +2 -10
  3. package/dist/src/gemini.js.map +1 -1
  4. package/dist/src/generated/git-commit.d.ts +1 -1
  5. package/dist/src/generated/git-commit.js +1 -1
  6. package/dist/src/integration-tests/base-url-behavior.integration.test.js +4 -1
  7. package/dist/src/integration-tests/base-url-behavior.integration.test.js.map +1 -1
  8. package/dist/src/integration-tests/compression-settings-apply.integration.test.js +85 -332
  9. package/dist/src/integration-tests/compression-settings-apply.integration.test.js.map +1 -1
  10. package/dist/src/integration-tests/ephemeral-settings.integration.test.js +5 -16
  11. package/dist/src/integration-tests/ephemeral-settings.integration.test.js.map +1 -1
  12. package/dist/src/integration-tests/model-params-isolation.integration.test.js +8 -2
  13. package/dist/src/integration-tests/model-params-isolation.integration.test.js.map +1 -1
  14. package/dist/src/integration-tests/modelParams.integration.test.js +4 -1
  15. package/dist/src/integration-tests/modelParams.integration.test.js.map +1 -1
  16. package/dist/src/integration-tests/provider-switching.integration.test.js +4 -1
  17. package/dist/src/integration-tests/provider-switching.integration.test.js.map +1 -1
  18. package/dist/src/providers/index.d.ts +1 -1
  19. package/dist/src/providers/logging/LoggingProviderWrapper.test.js +58 -47
  20. package/dist/src/providers/logging/LoggingProviderWrapper.test.js.map +1 -1
  21. package/dist/src/providers/logging/multi-provider-logging.integration.test.js +130 -68
  22. package/dist/src/providers/logging/multi-provider-logging.integration.test.js.map +1 -1
  23. package/dist/src/providers/logging/performance.test.js +38 -15
  24. package/dist/src/providers/logging/performance.test.js.map +1 -1
  25. package/dist/src/providers/provider-gemini-switching.test.js +4 -1
  26. package/dist/src/providers/provider-gemini-switching.test.js.map +1 -1
  27. package/dist/src/providers/provider-switching.integration.test.js +12 -3
  28. package/dist/src/providers/provider-switching.integration.test.js.map +1 -1
  29. package/dist/src/storage/ConversationStorage.test.js +10 -7
  30. package/dist/src/storage/ConversationStorage.test.js.map +1 -1
  31. package/dist/src/test-utils/mockCommandContext.js +2 -0
  32. package/dist/src/test-utils/mockCommandContext.js.map +1 -1
  33. package/dist/src/ui/commands/clearCommand.js +2 -0
  34. package/dist/src/ui/commands/clearCommand.js.map +1 -1
  35. package/dist/src/ui/commands/profileCommand.js +7 -9
  36. package/dist/src/ui/commands/profileCommand.js.map +1 -1
  37. package/dist/src/ui/commands/profileCommand.test.js +10 -11
  38. package/dist/src/ui/commands/profileCommand.test.js.map +1 -1
  39. package/dist/src/ui/commands/providerCommand.js +5 -0
  40. package/dist/src/ui/commands/providerCommand.js.map +1 -1
  41. package/dist/src/ui/commands/setCommand.js +6 -19
  42. package/dist/src/ui/commands/setCommand.js.map +1 -1
  43. package/dist/src/ui/commands/setCommand.test.js +1 -3
  44. package/dist/src/ui/commands/setCommand.test.js.map +1 -1
  45. package/dist/src/ui/commands/types.d.ts +1 -0
  46. package/dist/src/ui/commands/types.js.map +1 -1
  47. package/dist/src/ui/components/ContextIndicator.ui.test.js +14 -41
  48. package/dist/src/ui/components/ContextIndicator.ui.test.js.map +1 -1
  49. package/dist/src/ui/components/Footer.responsive.test.js +16 -16
  50. package/dist/src/ui/components/Footer.responsive.test.js.map +1 -1
  51. package/dist/src/ui/hooks/slashCommandProcessor.js +2 -0
  52. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
  53. package/dist/src/ui/hooks/useAuthCommand.js +6 -5
  54. package/dist/src/ui/hooks/useAuthCommand.js.map +1 -1
  55. package/dist/src/ui/hooks/useGeminiStream.js +31 -57
  56. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
  57. package/dist/src/ui/hooks/useToolScheduler.test.js +60 -24
  58. package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
  59. package/dist/src/utils/privacy/ConversationDataRedactor.d.ts +3 -3
  60. package/dist/src/utils/privacy/ConversationDataRedactor.js +16 -12
  61. package/dist/src/utils/privacy/ConversationDataRedactor.js.map +1 -1
  62. package/dist/src/utils/privacy/ConversationDataRedactor.test.js +115 -72
  63. package/dist/src/utils/privacy/ConversationDataRedactor.test.js.map +1 -1
  64. package/dist/src/validateNonInterActiveAuth.js +8 -17
  65. package/dist/src/validateNonInterActiveAuth.js.map +1 -1
  66. package/dist/src/zed-integration/schema.d.ts +48 -48
  67. package/dist/tsconfig.tsbuildinfo +1 -1
  68. package/package.json +3 -3
@@ -197,11 +197,11 @@ export declare const planEntrySchema: z.ZodObject<{
197
197
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
198
198
  }, "strip", z.ZodTypeAny, {
199
199
  content: string;
200
- status: "pending" | "in_progress" | "completed";
200
+ status: "in_progress" | "completed" | "pending";
201
201
  priority: "high" | "medium" | "low";
202
202
  }, {
203
203
  content: string;
204
- status: "pending" | "in_progress" | "completed";
204
+ status: "in_progress" | "completed" | "pending";
205
205
  priority: "high" | "medium" | "low";
206
206
  }>;
207
207
  export declare const permissionOptionSchema: z.ZodObject<{
@@ -1581,7 +1581,7 @@ export declare const toolCallSchema: z.ZodObject<{
1581
1581
  title: z.ZodString;
1582
1582
  toolCallId: z.ZodString;
1583
1583
  }, "strip", z.ZodTypeAny, {
1584
- status: "pending" | "in_progress" | "completed" | "failed";
1584
+ status: "in_progress" | "completed" | "pending" | "failed";
1585
1585
  title: string;
1586
1586
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
1587
1587
  toolCallId: string;
@@ -1655,7 +1655,7 @@ export declare const toolCallSchema: z.ZodObject<{
1655
1655
  }[] | undefined;
1656
1656
  rawInput?: unknown;
1657
1657
  }, {
1658
- status: "pending" | "in_progress" | "completed" | "failed";
1658
+ status: "in_progress" | "completed" | "pending" | "failed";
1659
1659
  title: string;
1660
1660
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
1661
1661
  toolCallId: string;
@@ -3486,7 +3486,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3486
3486
  title: z.ZodString;
3487
3487
  toolCallId: z.ZodString;
3488
3488
  }, "strip", z.ZodTypeAny, {
3489
- status: "pending" | "in_progress" | "completed" | "failed";
3489
+ status: "in_progress" | "completed" | "pending" | "failed";
3490
3490
  title: string;
3491
3491
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
3492
3492
  toolCallId: string;
@@ -3561,7 +3561,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3561
3561
  }[] | undefined;
3562
3562
  rawInput?: unknown;
3563
3563
  }, {
3564
- status: "pending" | "in_progress" | "completed" | "failed";
3564
+ status: "in_progress" | "completed" | "pending" | "failed";
3565
3565
  title: string;
3566
3566
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
3567
3567
  toolCallId: string;
@@ -4075,7 +4075,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4075
4075
  newText: string;
4076
4076
  oldText: string | null;
4077
4077
  })[] | null | undefined;
4078
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
4078
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
4079
4079
  title?: string | null | undefined;
4080
4080
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
4081
4081
  locations?: {
@@ -4150,7 +4150,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4150
4150
  newText: string;
4151
4151
  oldText: string | null;
4152
4152
  })[] | null | undefined;
4153
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
4153
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
4154
4154
  title?: string | null | undefined;
4155
4155
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
4156
4156
  locations?: {
@@ -4165,25 +4165,25 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4165
4165
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
4166
4166
  }, "strip", z.ZodTypeAny, {
4167
4167
  content: string;
4168
- status: "pending" | "in_progress" | "completed";
4168
+ status: "in_progress" | "completed" | "pending";
4169
4169
  priority: "high" | "medium" | "low";
4170
4170
  }, {
4171
4171
  content: string;
4172
- status: "pending" | "in_progress" | "completed";
4172
+ status: "in_progress" | "completed" | "pending";
4173
4173
  priority: "high" | "medium" | "low";
4174
4174
  }>, "many">;
4175
4175
  sessionUpdate: z.ZodLiteral<"plan">;
4176
4176
  }, "strip", z.ZodTypeAny, {
4177
4177
  entries: {
4178
4178
  content: string;
4179
- status: "pending" | "in_progress" | "completed";
4179
+ status: "in_progress" | "completed" | "pending";
4180
4180
  priority: "high" | "medium" | "low";
4181
4181
  }[];
4182
4182
  sessionUpdate: "plan";
4183
4183
  }, {
4184
4184
  entries: {
4185
4185
  content: string;
4186
- status: "pending" | "in_progress" | "completed";
4186
+ status: "in_progress" | "completed" | "pending";
4187
4187
  priority: "high" | "medium" | "low";
4188
4188
  }[];
4189
4189
  sessionUpdate: "plan";
@@ -4664,7 +4664,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4664
4664
  title: z.ZodString;
4665
4665
  toolCallId: z.ZodString;
4666
4666
  }, "strip", z.ZodTypeAny, {
4667
- status: "pending" | "in_progress" | "completed" | "failed";
4667
+ status: "in_progress" | "completed" | "pending" | "failed";
4668
4668
  title: string;
4669
4669
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
4670
4670
  toolCallId: string;
@@ -4738,7 +4738,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4738
4738
  }[] | undefined;
4739
4739
  rawInput?: unknown;
4740
4740
  }, {
4741
- status: "pending" | "in_progress" | "completed" | "failed";
4741
+ status: "in_progress" | "completed" | "pending" | "failed";
4742
4742
  title: string;
4743
4743
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
4744
4744
  toolCallId: string;
@@ -4820,7 +4820,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4820
4820
  optionId: string;
4821
4821
  }[];
4822
4822
  toolCall: {
4823
- status: "pending" | "in_progress" | "completed" | "failed";
4823
+ status: "in_progress" | "completed" | "pending" | "failed";
4824
4824
  title: string;
4825
4825
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
4826
4826
  toolCallId: string;
@@ -4902,7 +4902,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4902
4902
  optionId: string;
4903
4903
  }[];
4904
4904
  toolCall: {
4905
- status: "pending" | "in_progress" | "completed" | "failed";
4905
+ status: "in_progress" | "completed" | "pending" | "failed";
4906
4906
  title: string;
4907
4907
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
4908
4908
  toolCallId: string;
@@ -6414,7 +6414,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6414
6414
  title: z.ZodString;
6415
6415
  toolCallId: z.ZodString;
6416
6416
  }, "strip", z.ZodTypeAny, {
6417
- status: "pending" | "in_progress" | "completed" | "failed";
6417
+ status: "in_progress" | "completed" | "pending" | "failed";
6418
6418
  title: string;
6419
6419
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
6420
6420
  toolCallId: string;
@@ -6489,7 +6489,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6489
6489
  }[] | undefined;
6490
6490
  rawInput?: unknown;
6491
6491
  }, {
6492
- status: "pending" | "in_progress" | "completed" | "failed";
6492
+ status: "in_progress" | "completed" | "pending" | "failed";
6493
6493
  title: string;
6494
6494
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
6495
6495
  toolCallId: string;
@@ -7003,7 +7003,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7003
7003
  newText: string;
7004
7004
  oldText: string | null;
7005
7005
  })[] | null | undefined;
7006
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
7006
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
7007
7007
  title?: string | null | undefined;
7008
7008
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
7009
7009
  locations?: {
@@ -7078,7 +7078,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7078
7078
  newText: string;
7079
7079
  oldText: string | null;
7080
7080
  })[] | null | undefined;
7081
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
7081
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
7082
7082
  title?: string | null | undefined;
7083
7083
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
7084
7084
  locations?: {
@@ -7093,25 +7093,25 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7093
7093
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
7094
7094
  }, "strip", z.ZodTypeAny, {
7095
7095
  content: string;
7096
- status: "pending" | "in_progress" | "completed";
7096
+ status: "in_progress" | "completed" | "pending";
7097
7097
  priority: "high" | "medium" | "low";
7098
7098
  }, {
7099
7099
  content: string;
7100
- status: "pending" | "in_progress" | "completed";
7100
+ status: "in_progress" | "completed" | "pending";
7101
7101
  priority: "high" | "medium" | "low";
7102
7102
  }>, "many">;
7103
7103
  sessionUpdate: z.ZodLiteral<"plan">;
7104
7104
  }, "strip", z.ZodTypeAny, {
7105
7105
  entries: {
7106
7106
  content: string;
7107
- status: "pending" | "in_progress" | "completed";
7107
+ status: "in_progress" | "completed" | "pending";
7108
7108
  priority: "high" | "medium" | "low";
7109
7109
  }[];
7110
7110
  sessionUpdate: "plan";
7111
7111
  }, {
7112
7112
  entries: {
7113
7113
  content: string;
7114
- status: "pending" | "in_progress" | "completed";
7114
+ status: "in_progress" | "completed" | "pending";
7115
7115
  priority: "high" | "medium" | "low";
7116
7116
  }[];
7117
7117
  sessionUpdate: "plan";
@@ -7293,7 +7293,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7293
7293
  };
7294
7294
  sessionUpdate: "agent_thought_chunk";
7295
7295
  } | {
7296
- status: "pending" | "in_progress" | "completed" | "failed";
7296
+ status: "in_progress" | "completed" | "pending" | "failed";
7297
7297
  title: string;
7298
7298
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
7299
7299
  toolCallId: string;
@@ -7434,7 +7434,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7434
7434
  newText: string;
7435
7435
  oldText: string | null;
7436
7436
  })[] | null | undefined;
7437
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
7437
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
7438
7438
  title?: string | null | undefined;
7439
7439
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
7440
7440
  locations?: {
@@ -7445,7 +7445,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7445
7445
  } | {
7446
7446
  entries: {
7447
7447
  content: string;
7448
- status: "pending" | "in_progress" | "completed";
7448
+ status: "in_progress" | "completed" | "pending";
7449
7449
  priority: "high" | "medium" | "low";
7450
7450
  }[];
7451
7451
  sessionUpdate: "plan";
@@ -7627,7 +7627,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7627
7627
  };
7628
7628
  sessionUpdate: "agent_thought_chunk";
7629
7629
  } | {
7630
- status: "pending" | "in_progress" | "completed" | "failed";
7630
+ status: "in_progress" | "completed" | "pending" | "failed";
7631
7631
  title: string;
7632
7632
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
7633
7633
  toolCallId: string;
@@ -7768,7 +7768,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7768
7768
  newText: string;
7769
7769
  oldText: string | null;
7770
7770
  })[] | null | undefined;
7771
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
7771
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
7772
7772
  title?: string | null | undefined;
7773
7773
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
7774
7774
  locations?: {
@@ -7779,7 +7779,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7779
7779
  } | {
7780
7780
  entries: {
7781
7781
  content: string;
7782
- status: "pending" | "in_progress" | "completed";
7782
+ status: "in_progress" | "completed" | "pending";
7783
7783
  priority: "high" | "medium" | "low";
7784
7784
  }[];
7785
7785
  sessionUpdate: "plan";
@@ -8200,7 +8200,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8200
8200
  title: z.ZodString;
8201
8201
  toolCallId: z.ZodString;
8202
8202
  }, "strip", z.ZodTypeAny, {
8203
- status: "pending" | "in_progress" | "completed" | "failed";
8203
+ status: "in_progress" | "completed" | "pending" | "failed";
8204
8204
  title: string;
8205
8205
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
8206
8206
  toolCallId: string;
@@ -8274,7 +8274,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8274
8274
  }[] | undefined;
8275
8275
  rawInput?: unknown;
8276
8276
  }, {
8277
- status: "pending" | "in_progress" | "completed" | "failed";
8277
+ status: "in_progress" | "completed" | "pending" | "failed";
8278
8278
  title: string;
8279
8279
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
8280
8280
  toolCallId: string;
@@ -8356,7 +8356,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8356
8356
  optionId: string;
8357
8357
  }[];
8358
8358
  toolCall: {
8359
- status: "pending" | "in_progress" | "completed" | "failed";
8359
+ status: "in_progress" | "completed" | "pending" | "failed";
8360
8360
  title: string;
8361
8361
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
8362
8362
  toolCallId: string;
@@ -8438,7 +8438,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8438
8438
  optionId: string;
8439
8439
  }[];
8440
8440
  toolCall: {
8441
- status: "pending" | "in_progress" | "completed" | "failed";
8441
+ status: "in_progress" | "completed" | "pending" | "failed";
8442
8442
  title: string;
8443
8443
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
8444
8444
  toolCallId: string;
@@ -10409,7 +10409,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
10409
10409
  title: z.ZodString;
10410
10410
  toolCallId: z.ZodString;
10411
10411
  }, "strip", z.ZodTypeAny, {
10412
- status: "pending" | "in_progress" | "completed" | "failed";
10412
+ status: "in_progress" | "completed" | "pending" | "failed";
10413
10413
  title: string;
10414
10414
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
10415
10415
  toolCallId: string;
@@ -10484,7 +10484,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
10484
10484
  }[] | undefined;
10485
10485
  rawInput?: unknown;
10486
10486
  }, {
10487
- status: "pending" | "in_progress" | "completed" | "failed";
10487
+ status: "in_progress" | "completed" | "pending" | "failed";
10488
10488
  title: string;
10489
10489
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
10490
10490
  toolCallId: string;
@@ -10998,7 +10998,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
10998
10998
  newText: string;
10999
10999
  oldText: string | null;
11000
11000
  })[] | null | undefined;
11001
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
11001
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
11002
11002
  title?: string | null | undefined;
11003
11003
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
11004
11004
  locations?: {
@@ -11073,7 +11073,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11073
11073
  newText: string;
11074
11074
  oldText: string | null;
11075
11075
  })[] | null | undefined;
11076
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
11076
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
11077
11077
  title?: string | null | undefined;
11078
11078
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
11079
11079
  locations?: {
@@ -11088,25 +11088,25 @@ export declare const agentNotificationSchema: z.ZodObject<{
11088
11088
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
11089
11089
  }, "strip", z.ZodTypeAny, {
11090
11090
  content: string;
11091
- status: "pending" | "in_progress" | "completed";
11091
+ status: "in_progress" | "completed" | "pending";
11092
11092
  priority: "high" | "medium" | "low";
11093
11093
  }, {
11094
11094
  content: string;
11095
- status: "pending" | "in_progress" | "completed";
11095
+ status: "in_progress" | "completed" | "pending";
11096
11096
  priority: "high" | "medium" | "low";
11097
11097
  }>, "many">;
11098
11098
  sessionUpdate: z.ZodLiteral<"plan">;
11099
11099
  }, "strip", z.ZodTypeAny, {
11100
11100
  entries: {
11101
11101
  content: string;
11102
- status: "pending" | "in_progress" | "completed";
11102
+ status: "in_progress" | "completed" | "pending";
11103
11103
  priority: "high" | "medium" | "low";
11104
11104
  }[];
11105
11105
  sessionUpdate: "plan";
11106
11106
  }, {
11107
11107
  entries: {
11108
11108
  content: string;
11109
- status: "pending" | "in_progress" | "completed";
11109
+ status: "in_progress" | "completed" | "pending";
11110
11110
  priority: "high" | "medium" | "low";
11111
11111
  }[];
11112
11112
  sessionUpdate: "plan";
@@ -11288,7 +11288,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11288
11288
  };
11289
11289
  sessionUpdate: "agent_thought_chunk";
11290
11290
  } | {
11291
- status: "pending" | "in_progress" | "completed" | "failed";
11291
+ status: "in_progress" | "completed" | "pending" | "failed";
11292
11292
  title: string;
11293
11293
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
11294
11294
  toolCallId: string;
@@ -11429,7 +11429,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11429
11429
  newText: string;
11430
11430
  oldText: string | null;
11431
11431
  })[] | null | undefined;
11432
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
11432
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
11433
11433
  title?: string | null | undefined;
11434
11434
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
11435
11435
  locations?: {
@@ -11440,7 +11440,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11440
11440
  } | {
11441
11441
  entries: {
11442
11442
  content: string;
11443
- status: "pending" | "in_progress" | "completed";
11443
+ status: "in_progress" | "completed" | "pending";
11444
11444
  priority: "high" | "medium" | "low";
11445
11445
  }[];
11446
11446
  sessionUpdate: "plan";
@@ -11622,7 +11622,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11622
11622
  };
11623
11623
  sessionUpdate: "agent_thought_chunk";
11624
11624
  } | {
11625
- status: "pending" | "in_progress" | "completed" | "failed";
11625
+ status: "in_progress" | "completed" | "pending" | "failed";
11626
11626
  title: string;
11627
11627
  kind: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think";
11628
11628
  toolCallId: string;
@@ -11763,7 +11763,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11763
11763
  newText: string;
11764
11764
  oldText: string | null;
11765
11765
  })[] | null | undefined;
11766
- status?: "pending" | "in_progress" | "completed" | "failed" | null | undefined;
11766
+ status?: "in_progress" | "completed" | "pending" | "failed" | null | undefined;
11767
11767
  title?: string | null | undefined;
11768
11768
  kind?: "search" | "fetch" | "delete" | "move" | "other" | "edit" | "read" | "execute" | "think" | null | undefined;
11769
11769
  locations?: {
@@ -11774,7 +11774,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
11774
11774
  } | {
11775
11775
  entries: {
11776
11776
  content: string;
11777
- status: "pending" | "in_progress" | "completed";
11777
+ status: "in_progress" | "completed" | "pending";
11778
11778
  priority: "high" | "medium" | "low";
11779
11779
  }[];
11780
11780
  sessionUpdate: "plan";