@junctionpanel/server 0.1.85 → 0.1.86
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/dist/server/client/daemon-client.d.ts +11 -0
- package/dist/server/client/daemon-client.d.ts.map +1 -1
- package/dist/server/client/daemon-client.js +29 -0
- package/dist/server/client/daemon-client.js.map +1 -1
- package/dist/server/server/agent/agent-projections.d.ts.map +1 -1
- package/dist/server/server/agent/agent-projections.js +6 -0
- package/dist/server/server/agent/agent-projections.js.map +1 -1
- package/dist/server/server/session.d.ts +10 -0
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +59 -1
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/server/websocket-server.d.ts +1 -0
- package/dist/server/server/websocket-server.d.ts.map +1 -1
- package/dist/server/server/websocket-server.js +20 -0
- package/dist/server/server/websocket-server.js.map +1 -1
- package/dist/server/server/workspace-read-state-store.d.ts +15 -0
- package/dist/server/server/workspace-read-state-store.d.ts.map +1 -0
- package/dist/server/server/workspace-read-state-store.js +87 -0
- package/dist/server/server/workspace-read-state-store.js.map +1 -0
- package/dist/server/shared/messages.d.ts +682 -0
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +29 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/package.json +2 -2
|
@@ -204,6 +204,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
204
204
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
205
205
|
createdAt: z.ZodString;
|
|
206
206
|
updatedAt: z.ZodString;
|
|
207
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
207
208
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
208
209
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
209
210
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -385,6 +386,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
385
386
|
} | null | undefined;
|
|
386
387
|
} | null | undefined;
|
|
387
388
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
389
|
+
lastTimelineAt?: string | null | undefined;
|
|
388
390
|
pendingPlanReview?: boolean | undefined;
|
|
389
391
|
}, {
|
|
390
392
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -441,6 +443,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
441
443
|
} | null | undefined;
|
|
442
444
|
} | null | undefined;
|
|
443
445
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
446
|
+
lastTimelineAt?: string | null | undefined;
|
|
444
447
|
pendingPlanReview?: boolean | undefined;
|
|
445
448
|
}>;
|
|
446
449
|
export type AgentSnapshotPayload = z.infer<typeof AgentSnapshotPayloadSchema>;
|
|
@@ -2343,6 +2346,29 @@ export declare const ClearAgentAttentionMessageSchema: z.ZodObject<{
|
|
|
2343
2346
|
agentId: string | string[];
|
|
2344
2347
|
type: "clear_agent_attention";
|
|
2345
2348
|
}>;
|
|
2349
|
+
export declare const FetchWorkspaceReadStatesRequestSchema: z.ZodObject<{
|
|
2350
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_request">;
|
|
2351
|
+
requestId: z.ZodString;
|
|
2352
|
+
}, "strip", z.ZodTypeAny, {
|
|
2353
|
+
type: "fetch_workspace_read_states_request";
|
|
2354
|
+
requestId: string;
|
|
2355
|
+
}, {
|
|
2356
|
+
type: "fetch_workspace_read_states_request";
|
|
2357
|
+
requestId: string;
|
|
2358
|
+
}>;
|
|
2359
|
+
export declare const MarkWorkspaceReadMessageSchema: z.ZodObject<{
|
|
2360
|
+
type: z.ZodLiteral<"mark_workspace_read">;
|
|
2361
|
+
cwd: z.ZodString;
|
|
2362
|
+
lastReadAt: z.ZodString;
|
|
2363
|
+
}, "strip", z.ZodTypeAny, {
|
|
2364
|
+
type: "mark_workspace_read";
|
|
2365
|
+
cwd: string;
|
|
2366
|
+
lastReadAt: string;
|
|
2367
|
+
}, {
|
|
2368
|
+
type: "mark_workspace_read";
|
|
2369
|
+
cwd: string;
|
|
2370
|
+
lastReadAt: string;
|
|
2371
|
+
}>;
|
|
2346
2372
|
export declare const ClientHeartbeatMessageSchema: z.ZodObject<{
|
|
2347
2373
|
type: z.ZodLiteral<"client_heartbeat">;
|
|
2348
2374
|
deviceType: z.ZodEnum<["web", "mobile"]>;
|
|
@@ -4324,6 +4350,27 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
4324
4350
|
}, {
|
|
4325
4351
|
agentId: string | string[];
|
|
4326
4352
|
type: "clear_agent_attention";
|
|
4353
|
+
}>, z.ZodObject<{
|
|
4354
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_request">;
|
|
4355
|
+
requestId: z.ZodString;
|
|
4356
|
+
}, "strip", z.ZodTypeAny, {
|
|
4357
|
+
type: "fetch_workspace_read_states_request";
|
|
4358
|
+
requestId: string;
|
|
4359
|
+
}, {
|
|
4360
|
+
type: "fetch_workspace_read_states_request";
|
|
4361
|
+
requestId: string;
|
|
4362
|
+
}>, z.ZodObject<{
|
|
4363
|
+
type: z.ZodLiteral<"mark_workspace_read">;
|
|
4364
|
+
cwd: z.ZodString;
|
|
4365
|
+
lastReadAt: z.ZodString;
|
|
4366
|
+
}, "strip", z.ZodTypeAny, {
|
|
4367
|
+
type: "mark_workspace_read";
|
|
4368
|
+
cwd: string;
|
|
4369
|
+
lastReadAt: string;
|
|
4370
|
+
}, {
|
|
4371
|
+
type: "mark_workspace_read";
|
|
4372
|
+
cwd: string;
|
|
4373
|
+
lastReadAt: string;
|
|
4327
4374
|
}>, z.ZodObject<{
|
|
4328
4375
|
type: z.ZodLiteral<"client_heartbeat">;
|
|
4329
4376
|
deviceType: z.ZodEnum<["web", "mobile"]>;
|
|
@@ -5117,6 +5164,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5117
5164
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5118
5165
|
createdAt: z.ZodString;
|
|
5119
5166
|
updatedAt: z.ZodString;
|
|
5167
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5120
5168
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5121
5169
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
5122
5170
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -5298,6 +5346,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5298
5346
|
} | null | undefined;
|
|
5299
5347
|
} | null | undefined;
|
|
5300
5348
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5349
|
+
lastTimelineAt?: string | null | undefined;
|
|
5301
5350
|
pendingPlanReview?: boolean | undefined;
|
|
5302
5351
|
}, {
|
|
5303
5352
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -5354,6 +5403,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5354
5403
|
} | null | undefined;
|
|
5355
5404
|
} | null | undefined;
|
|
5356
5405
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5406
|
+
lastTimelineAt?: string | null | undefined;
|
|
5357
5407
|
pendingPlanReview?: boolean | undefined;
|
|
5358
5408
|
}>;
|
|
5359
5409
|
} & {
|
|
@@ -5417,6 +5467,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5417
5467
|
} | null | undefined;
|
|
5418
5468
|
} | null | undefined;
|
|
5419
5469
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5470
|
+
lastTimelineAt?: string | null | undefined;
|
|
5420
5471
|
pendingPlanReview?: boolean | undefined;
|
|
5421
5472
|
};
|
|
5422
5473
|
requestId: string;
|
|
@@ -5479,6 +5530,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5479
5530
|
} | null | undefined;
|
|
5480
5531
|
} | null | undefined;
|
|
5481
5532
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5533
|
+
lastTimelineAt?: string | null | undefined;
|
|
5482
5534
|
pendingPlanReview?: boolean | undefined;
|
|
5483
5535
|
};
|
|
5484
5536
|
requestId: string;
|
|
@@ -5509,6 +5561,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5509
5561
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5510
5562
|
createdAt: z.ZodString;
|
|
5511
5563
|
updatedAt: z.ZodString;
|
|
5564
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5512
5565
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5513
5566
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
5514
5567
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -5690,6 +5743,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5690
5743
|
} | null | undefined;
|
|
5691
5744
|
} | null | undefined;
|
|
5692
5745
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5746
|
+
lastTimelineAt?: string | null | undefined;
|
|
5693
5747
|
pendingPlanReview?: boolean | undefined;
|
|
5694
5748
|
}, {
|
|
5695
5749
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -5746,6 +5800,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5746
5800
|
} | null | undefined;
|
|
5747
5801
|
} | null | undefined;
|
|
5748
5802
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5803
|
+
lastTimelineAt?: string | null | undefined;
|
|
5749
5804
|
pendingPlanReview?: boolean | undefined;
|
|
5750
5805
|
}>;
|
|
5751
5806
|
} & {
|
|
@@ -5811,6 +5866,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5811
5866
|
} | null | undefined;
|
|
5812
5867
|
} | null | undefined;
|
|
5813
5868
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5869
|
+
lastTimelineAt?: string | null | undefined;
|
|
5814
5870
|
pendingPlanReview?: boolean | undefined;
|
|
5815
5871
|
};
|
|
5816
5872
|
requestId: string;
|
|
@@ -5873,6 +5929,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5873
5929
|
} | null | undefined;
|
|
5874
5930
|
} | null | undefined;
|
|
5875
5931
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
5932
|
+
lastTimelineAt?: string | null | undefined;
|
|
5876
5933
|
pendingPlanReview?: boolean | undefined;
|
|
5877
5934
|
};
|
|
5878
5935
|
requestId: string;
|
|
@@ -5938,6 +5995,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5938
5995
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5939
5996
|
createdAt: z.ZodString;
|
|
5940
5997
|
updatedAt: z.ZodString;
|
|
5998
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5941
5999
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5942
6000
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
5943
6001
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -6119,6 +6177,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6119
6177
|
} | null | undefined;
|
|
6120
6178
|
} | null | undefined;
|
|
6121
6179
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6180
|
+
lastTimelineAt?: string | null | undefined;
|
|
6122
6181
|
pendingPlanReview?: boolean | undefined;
|
|
6123
6182
|
}, {
|
|
6124
6183
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -6175,6 +6234,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6175
6234
|
} | null | undefined;
|
|
6176
6235
|
} | null | undefined;
|
|
6177
6236
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6237
|
+
lastTimelineAt?: string | null | undefined;
|
|
6178
6238
|
pendingPlanReview?: boolean | undefined;
|
|
6179
6239
|
}>;
|
|
6180
6240
|
} & {
|
|
@@ -6238,6 +6298,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6238
6298
|
} | null | undefined;
|
|
6239
6299
|
} | null | undefined;
|
|
6240
6300
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6301
|
+
lastTimelineAt?: string | null | undefined;
|
|
6241
6302
|
pendingPlanReview?: boolean | undefined;
|
|
6242
6303
|
};
|
|
6243
6304
|
requestId: string;
|
|
@@ -6300,6 +6361,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6300
6361
|
} | null | undefined;
|
|
6301
6362
|
} | null | undefined;
|
|
6302
6363
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6364
|
+
lastTimelineAt?: string | null | undefined;
|
|
6303
6365
|
pendingPlanReview?: boolean | undefined;
|
|
6304
6366
|
};
|
|
6305
6367
|
requestId: string;
|
|
@@ -6328,6 +6390,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6328
6390
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6329
6391
|
createdAt: z.ZodString;
|
|
6330
6392
|
updatedAt: z.ZodString;
|
|
6393
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6331
6394
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
6332
6395
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
6333
6396
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -6509,6 +6572,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6509
6572
|
} | null | undefined;
|
|
6510
6573
|
} | null | undefined;
|
|
6511
6574
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6575
|
+
lastTimelineAt?: string | null | undefined;
|
|
6512
6576
|
pendingPlanReview?: boolean | undefined;
|
|
6513
6577
|
}, {
|
|
6514
6578
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -6565,6 +6629,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6565
6629
|
} | null | undefined;
|
|
6566
6630
|
} | null | undefined;
|
|
6567
6631
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6632
|
+
lastTimelineAt?: string | null | undefined;
|
|
6568
6633
|
pendingPlanReview?: boolean | undefined;
|
|
6569
6634
|
}>;
|
|
6570
6635
|
} & {
|
|
@@ -6630,6 +6695,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6630
6695
|
} | null | undefined;
|
|
6631
6696
|
} | null | undefined;
|
|
6632
6697
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6698
|
+
lastTimelineAt?: string | null | undefined;
|
|
6633
6699
|
pendingPlanReview?: boolean | undefined;
|
|
6634
6700
|
};
|
|
6635
6701
|
requestId: string;
|
|
@@ -6692,6 +6758,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6692
6758
|
} | null | undefined;
|
|
6693
6759
|
} | null | undefined;
|
|
6694
6760
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
6761
|
+
lastTimelineAt?: string | null | undefined;
|
|
6695
6762
|
pendingPlanReview?: boolean | undefined;
|
|
6696
6763
|
};
|
|
6697
6764
|
requestId: string;
|
|
@@ -7096,6 +7163,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7096
7163
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7097
7164
|
createdAt: z.ZodString;
|
|
7098
7165
|
updatedAt: z.ZodString;
|
|
7166
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7099
7167
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
7100
7168
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
7101
7169
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -7277,6 +7345,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7277
7345
|
} | null | undefined;
|
|
7278
7346
|
} | null | undefined;
|
|
7279
7347
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7348
|
+
lastTimelineAt?: string | null | undefined;
|
|
7280
7349
|
pendingPlanReview?: boolean | undefined;
|
|
7281
7350
|
}, {
|
|
7282
7351
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -7333,6 +7402,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7333
7402
|
} | null | undefined;
|
|
7334
7403
|
} | null | undefined;
|
|
7335
7404
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7405
|
+
lastTimelineAt?: string | null | undefined;
|
|
7336
7406
|
pendingPlanReview?: boolean | undefined;
|
|
7337
7407
|
}>;
|
|
7338
7408
|
project: z.ZodObject<{
|
|
@@ -7510,6 +7580,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7510
7580
|
} | null | undefined;
|
|
7511
7581
|
} | null | undefined;
|
|
7512
7582
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7583
|
+
lastTimelineAt?: string | null | undefined;
|
|
7513
7584
|
pendingPlanReview?: boolean | undefined;
|
|
7514
7585
|
};
|
|
7515
7586
|
project: {
|
|
@@ -7595,6 +7666,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7595
7666
|
} | null | undefined;
|
|
7596
7667
|
} | null | undefined;
|
|
7597
7668
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7669
|
+
lastTimelineAt?: string | null | undefined;
|
|
7598
7670
|
pendingPlanReview?: boolean | undefined;
|
|
7599
7671
|
};
|
|
7600
7672
|
project: {
|
|
@@ -7692,6 +7764,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7692
7764
|
} | null | undefined;
|
|
7693
7765
|
} | null | undefined;
|
|
7694
7766
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7767
|
+
lastTimelineAt?: string | null | undefined;
|
|
7695
7768
|
pendingPlanReview?: boolean | undefined;
|
|
7696
7769
|
};
|
|
7697
7770
|
project: {
|
|
@@ -7783,6 +7856,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7783
7856
|
} | null | undefined;
|
|
7784
7857
|
} | null | undefined;
|
|
7785
7858
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
7859
|
+
lastTimelineAt?: string | null | undefined;
|
|
7786
7860
|
pendingPlanReview?: boolean | undefined;
|
|
7787
7861
|
};
|
|
7788
7862
|
project: {
|
|
@@ -8260,6 +8334,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8260
8334
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8261
8335
|
createdAt: z.ZodString;
|
|
8262
8336
|
updatedAt: z.ZodString;
|
|
8337
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8263
8338
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
8264
8339
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
8265
8340
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -8441,6 +8516,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8441
8516
|
} | null | undefined;
|
|
8442
8517
|
} | null | undefined;
|
|
8443
8518
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8519
|
+
lastTimelineAt?: string | null | undefined;
|
|
8444
8520
|
pendingPlanReview?: boolean | undefined;
|
|
8445
8521
|
}, {
|
|
8446
8522
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -8497,6 +8573,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8497
8573
|
} | null | undefined;
|
|
8498
8574
|
} | null | undefined;
|
|
8499
8575
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8576
|
+
lastTimelineAt?: string | null | undefined;
|
|
8500
8577
|
pendingPlanReview?: boolean | undefined;
|
|
8501
8578
|
}>;
|
|
8502
8579
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8557,6 +8634,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8557
8634
|
} | null | undefined;
|
|
8558
8635
|
} | null | undefined;
|
|
8559
8636
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8637
|
+
lastTimelineAt?: string | null | undefined;
|
|
8560
8638
|
pendingPlanReview?: boolean | undefined;
|
|
8561
8639
|
};
|
|
8562
8640
|
}, {
|
|
@@ -8617,6 +8695,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8617
8695
|
} | null | undefined;
|
|
8618
8696
|
} | null | undefined;
|
|
8619
8697
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8698
|
+
lastTimelineAt?: string | null | undefined;
|
|
8620
8699
|
pendingPlanReview?: boolean | undefined;
|
|
8621
8700
|
};
|
|
8622
8701
|
}>;
|
|
@@ -8680,6 +8759,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8680
8759
|
} | null | undefined;
|
|
8681
8760
|
} | null | undefined;
|
|
8682
8761
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8762
|
+
lastTimelineAt?: string | null | undefined;
|
|
8683
8763
|
pendingPlanReview?: boolean | undefined;
|
|
8684
8764
|
};
|
|
8685
8765
|
};
|
|
@@ -8743,6 +8823,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8743
8823
|
} | null | undefined;
|
|
8744
8824
|
} | null | undefined;
|
|
8745
8825
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
8826
|
+
lastTimelineAt?: string | null | undefined;
|
|
8746
8827
|
pendingPlanReview?: boolean | undefined;
|
|
8747
8828
|
};
|
|
8748
8829
|
};
|
|
@@ -8760,6 +8841,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8760
8841
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8761
8842
|
createdAt: z.ZodString;
|
|
8762
8843
|
updatedAt: z.ZodString;
|
|
8844
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8763
8845
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
8764
8846
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
8765
8847
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -8941,6 +9023,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8941
9023
|
} | null | undefined;
|
|
8942
9024
|
} | null | undefined;
|
|
8943
9025
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9026
|
+
lastTimelineAt?: string | null | undefined;
|
|
8944
9027
|
pendingPlanReview?: boolean | undefined;
|
|
8945
9028
|
}, {
|
|
8946
9029
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -8997,6 +9080,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8997
9080
|
} | null | undefined;
|
|
8998
9081
|
} | null | undefined;
|
|
8999
9082
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9083
|
+
lastTimelineAt?: string | null | undefined;
|
|
9000
9084
|
pendingPlanReview?: boolean | undefined;
|
|
9001
9085
|
}>, "many">;
|
|
9002
9086
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9055,6 +9139,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
9055
9139
|
} | null | undefined;
|
|
9056
9140
|
} | null | undefined;
|
|
9057
9141
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9142
|
+
lastTimelineAt?: string | null | undefined;
|
|
9058
9143
|
pendingPlanReview?: boolean | undefined;
|
|
9059
9144
|
}[];
|
|
9060
9145
|
}, {
|
|
@@ -9113,6 +9198,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
9113
9198
|
} | null | undefined;
|
|
9114
9199
|
} | null | undefined;
|
|
9115
9200
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9201
|
+
lastTimelineAt?: string | null | undefined;
|
|
9116
9202
|
pendingPlanReview?: boolean | undefined;
|
|
9117
9203
|
}[];
|
|
9118
9204
|
}>;
|
|
@@ -9174,6 +9260,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
9174
9260
|
} | null | undefined;
|
|
9175
9261
|
} | null | undefined;
|
|
9176
9262
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9263
|
+
lastTimelineAt?: string | null | undefined;
|
|
9177
9264
|
pendingPlanReview?: boolean | undefined;
|
|
9178
9265
|
}[];
|
|
9179
9266
|
};
|
|
@@ -9235,6 +9322,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
9235
9322
|
} | null | undefined;
|
|
9236
9323
|
} | null | undefined;
|
|
9237
9324
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9325
|
+
lastTimelineAt?: string | null | undefined;
|
|
9238
9326
|
pendingPlanReview?: boolean | undefined;
|
|
9239
9327
|
}[];
|
|
9240
9328
|
};
|
|
@@ -9255,6 +9343,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9255
9343
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9256
9344
|
createdAt: z.ZodString;
|
|
9257
9345
|
updatedAt: z.ZodString;
|
|
9346
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9258
9347
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
9259
9348
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
9260
9349
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -9436,6 +9525,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9436
9525
|
} | null | undefined;
|
|
9437
9526
|
} | null | undefined;
|
|
9438
9527
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9528
|
+
lastTimelineAt?: string | null | undefined;
|
|
9439
9529
|
pendingPlanReview?: boolean | undefined;
|
|
9440
9530
|
}, {
|
|
9441
9531
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -9492,6 +9582,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9492
9582
|
} | null | undefined;
|
|
9493
9583
|
} | null | undefined;
|
|
9494
9584
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9585
|
+
lastTimelineAt?: string | null | undefined;
|
|
9495
9586
|
pendingPlanReview?: boolean | undefined;
|
|
9496
9587
|
}>;
|
|
9497
9588
|
project: z.ZodObject<{
|
|
@@ -9668,6 +9759,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9668
9759
|
} | null | undefined;
|
|
9669
9760
|
} | null | undefined;
|
|
9670
9761
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9762
|
+
lastTimelineAt?: string | null | undefined;
|
|
9671
9763
|
pendingPlanReview?: boolean | undefined;
|
|
9672
9764
|
};
|
|
9673
9765
|
project: {
|
|
@@ -9752,6 +9844,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9752
9844
|
} | null | undefined;
|
|
9753
9845
|
} | null | undefined;
|
|
9754
9846
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9847
|
+
lastTimelineAt?: string | null | undefined;
|
|
9755
9848
|
pendingPlanReview?: boolean | undefined;
|
|
9756
9849
|
};
|
|
9757
9850
|
project: {
|
|
@@ -9851,6 +9944,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9851
9944
|
} | null | undefined;
|
|
9852
9945
|
} | null | undefined;
|
|
9853
9946
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
9947
|
+
lastTimelineAt?: string | null | undefined;
|
|
9854
9948
|
pendingPlanReview?: boolean | undefined;
|
|
9855
9949
|
};
|
|
9856
9950
|
project: {
|
|
@@ -9944,6 +10038,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9944
10038
|
} | null | undefined;
|
|
9945
10039
|
} | null | undefined;
|
|
9946
10040
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10041
|
+
lastTimelineAt?: string | null | undefined;
|
|
9947
10042
|
pendingPlanReview?: boolean | undefined;
|
|
9948
10043
|
};
|
|
9949
10044
|
project: {
|
|
@@ -10040,6 +10135,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
10040
10135
|
} | null | undefined;
|
|
10041
10136
|
} | null | undefined;
|
|
10042
10137
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10138
|
+
lastTimelineAt?: string | null | undefined;
|
|
10043
10139
|
pendingPlanReview?: boolean | undefined;
|
|
10044
10140
|
};
|
|
10045
10141
|
project: {
|
|
@@ -10136,6 +10232,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
10136
10232
|
} | null | undefined;
|
|
10137
10233
|
} | null | undefined;
|
|
10138
10234
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10235
|
+
lastTimelineAt?: string | null | undefined;
|
|
10139
10236
|
pendingPlanReview?: boolean | undefined;
|
|
10140
10237
|
};
|
|
10141
10238
|
project: {
|
|
@@ -10188,6 +10285,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10188
10285
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10189
10286
|
createdAt: z.ZodString;
|
|
10190
10287
|
updatedAt: z.ZodString;
|
|
10288
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10191
10289
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
10192
10290
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
10193
10291
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -10369,6 +10467,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10369
10467
|
} | null | undefined;
|
|
10370
10468
|
} | null | undefined;
|
|
10371
10469
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10470
|
+
lastTimelineAt?: string | null | undefined;
|
|
10372
10471
|
pendingPlanReview?: boolean | undefined;
|
|
10373
10472
|
}, {
|
|
10374
10473
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -10425,6 +10524,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10425
10524
|
} | null | undefined;
|
|
10426
10525
|
} | null | undefined;
|
|
10427
10526
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10527
|
+
lastTimelineAt?: string | null | undefined;
|
|
10428
10528
|
pendingPlanReview?: boolean | undefined;
|
|
10429
10529
|
}>>;
|
|
10430
10530
|
project: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -10603,6 +10703,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10603
10703
|
} | null | undefined;
|
|
10604
10704
|
} | null | undefined;
|
|
10605
10705
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10706
|
+
lastTimelineAt?: string | null | undefined;
|
|
10606
10707
|
pendingPlanReview?: boolean | undefined;
|
|
10607
10708
|
} | null;
|
|
10608
10709
|
requestId: string;
|
|
@@ -10689,6 +10790,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10689
10790
|
} | null | undefined;
|
|
10690
10791
|
} | null | undefined;
|
|
10691
10792
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10793
|
+
lastTimelineAt?: string | null | undefined;
|
|
10692
10794
|
pendingPlanReview?: boolean | undefined;
|
|
10693
10795
|
} | null;
|
|
10694
10796
|
requestId: string;
|
|
@@ -10778,6 +10880,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10778
10880
|
} | null | undefined;
|
|
10779
10881
|
} | null | undefined;
|
|
10780
10882
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10883
|
+
lastTimelineAt?: string | null | undefined;
|
|
10781
10884
|
pendingPlanReview?: boolean | undefined;
|
|
10782
10885
|
} | null;
|
|
10783
10886
|
requestId: string;
|
|
@@ -10867,6 +10970,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10867
10970
|
} | null | undefined;
|
|
10868
10971
|
} | null | undefined;
|
|
10869
10972
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
10973
|
+
lastTimelineAt?: string | null | undefined;
|
|
10870
10974
|
pendingPlanReview?: boolean | undefined;
|
|
10871
10975
|
} | null;
|
|
10872
10976
|
requestId: string;
|
|
@@ -10950,6 +11054,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
10950
11054
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10951
11055
|
createdAt: z.ZodString;
|
|
10952
11056
|
updatedAt: z.ZodString;
|
|
11057
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10953
11058
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
10954
11059
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
10955
11060
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -11131,6 +11236,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11131
11236
|
} | null | undefined;
|
|
11132
11237
|
} | null | undefined;
|
|
11133
11238
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11239
|
+
lastTimelineAt?: string | null | undefined;
|
|
11134
11240
|
pendingPlanReview?: boolean | undefined;
|
|
11135
11241
|
}, {
|
|
11136
11242
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -11187,6 +11293,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11187
11293
|
} | null | undefined;
|
|
11188
11294
|
} | null | undefined;
|
|
11189
11295
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11296
|
+
lastTimelineAt?: string | null | undefined;
|
|
11190
11297
|
pendingPlanReview?: boolean | undefined;
|
|
11191
11298
|
}>>>;
|
|
11192
11299
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -11251,6 +11358,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11251
11358
|
} | null | undefined;
|
|
11252
11359
|
} | null | undefined;
|
|
11253
11360
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11361
|
+
lastTimelineAt?: string | null | undefined;
|
|
11254
11362
|
pendingPlanReview?: boolean | undefined;
|
|
11255
11363
|
} | null | undefined;
|
|
11256
11364
|
}, {
|
|
@@ -11314,6 +11422,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11314
11422
|
} | null | undefined;
|
|
11315
11423
|
} | null | undefined;
|
|
11316
11424
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11425
|
+
lastTimelineAt?: string | null | undefined;
|
|
11317
11426
|
pendingPlanReview?: boolean | undefined;
|
|
11318
11427
|
} | null | undefined;
|
|
11319
11428
|
}>;
|
|
@@ -11380,6 +11489,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11380
11489
|
} | null | undefined;
|
|
11381
11490
|
} | null | undefined;
|
|
11382
11491
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11492
|
+
lastTimelineAt?: string | null | undefined;
|
|
11383
11493
|
pendingPlanReview?: boolean | undefined;
|
|
11384
11494
|
} | null | undefined;
|
|
11385
11495
|
};
|
|
@@ -11446,6 +11556,7 @@ export declare const RestoreAgentCheckpointResponseMessageSchema: z.ZodObject<{
|
|
|
11446
11556
|
} | null | undefined;
|
|
11447
11557
|
} | null | undefined;
|
|
11448
11558
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
11559
|
+
lastTimelineAt?: string | null | undefined;
|
|
11449
11560
|
pendingPlanReview?: boolean | undefined;
|
|
11450
11561
|
} | null | undefined;
|
|
11451
11562
|
};
|
|
@@ -12377,6 +12488,77 @@ export declare const ProviderChildThreadsChangedMessageSchema: z.ZodObject<{
|
|
|
12377
12488
|
}[];
|
|
12378
12489
|
};
|
|
12379
12490
|
}>;
|
|
12491
|
+
export declare const FetchWorkspaceReadStatesResponseSchema: z.ZodObject<{
|
|
12492
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_response">;
|
|
12493
|
+
payload: z.ZodObject<{
|
|
12494
|
+
requestId: z.ZodString;
|
|
12495
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
12496
|
+
cwd: z.ZodString;
|
|
12497
|
+
lastReadAt: z.ZodString;
|
|
12498
|
+
}, "strip", z.ZodTypeAny, {
|
|
12499
|
+
cwd: string;
|
|
12500
|
+
lastReadAt: string;
|
|
12501
|
+
}, {
|
|
12502
|
+
cwd: string;
|
|
12503
|
+
lastReadAt: string;
|
|
12504
|
+
}>, "many">;
|
|
12505
|
+
}, "strip", z.ZodTypeAny, {
|
|
12506
|
+
entries: {
|
|
12507
|
+
cwd: string;
|
|
12508
|
+
lastReadAt: string;
|
|
12509
|
+
}[];
|
|
12510
|
+
requestId: string;
|
|
12511
|
+
}, {
|
|
12512
|
+
entries: {
|
|
12513
|
+
cwd: string;
|
|
12514
|
+
lastReadAt: string;
|
|
12515
|
+
}[];
|
|
12516
|
+
requestId: string;
|
|
12517
|
+
}>;
|
|
12518
|
+
}, "strip", z.ZodTypeAny, {
|
|
12519
|
+
type: "fetch_workspace_read_states_response";
|
|
12520
|
+
payload: {
|
|
12521
|
+
entries: {
|
|
12522
|
+
cwd: string;
|
|
12523
|
+
lastReadAt: string;
|
|
12524
|
+
}[];
|
|
12525
|
+
requestId: string;
|
|
12526
|
+
};
|
|
12527
|
+
}, {
|
|
12528
|
+
type: "fetch_workspace_read_states_response";
|
|
12529
|
+
payload: {
|
|
12530
|
+
entries: {
|
|
12531
|
+
cwd: string;
|
|
12532
|
+
lastReadAt: string;
|
|
12533
|
+
}[];
|
|
12534
|
+
requestId: string;
|
|
12535
|
+
};
|
|
12536
|
+
}>;
|
|
12537
|
+
export declare const WorkspaceReadStateUpdatedSchema: z.ZodObject<{
|
|
12538
|
+
type: z.ZodLiteral<"workspace_read_state_updated">;
|
|
12539
|
+
payload: z.ZodObject<{
|
|
12540
|
+
cwd: z.ZodString;
|
|
12541
|
+
lastReadAt: z.ZodString;
|
|
12542
|
+
}, "strip", z.ZodTypeAny, {
|
|
12543
|
+
cwd: string;
|
|
12544
|
+
lastReadAt: string;
|
|
12545
|
+
}, {
|
|
12546
|
+
cwd: string;
|
|
12547
|
+
lastReadAt: string;
|
|
12548
|
+
}>;
|
|
12549
|
+
}, "strip", z.ZodTypeAny, {
|
|
12550
|
+
type: "workspace_read_state_updated";
|
|
12551
|
+
payload: {
|
|
12552
|
+
cwd: string;
|
|
12553
|
+
lastReadAt: string;
|
|
12554
|
+
};
|
|
12555
|
+
}, {
|
|
12556
|
+
type: "workspace_read_state_updated";
|
|
12557
|
+
payload: {
|
|
12558
|
+
cwd: string;
|
|
12559
|
+
lastReadAt: string;
|
|
12560
|
+
};
|
|
12561
|
+
}>;
|
|
12380
12562
|
export declare const AgentTimelineEntryPayloadSchema: z.ZodObject<{
|
|
12381
12563
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
12382
12564
|
item: z.ZodType<AgentTimelineItem, z.ZodTypeDef, unknown>;
|
|
@@ -12843,6 +13025,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12843
13025
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12844
13026
|
createdAt: z.ZodString;
|
|
12845
13027
|
updatedAt: z.ZodString;
|
|
13028
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12846
13029
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
12847
13030
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
12848
13031
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -13024,6 +13207,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13024
13207
|
} | null | undefined;
|
|
13025
13208
|
} | null | undefined;
|
|
13026
13209
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13210
|
+
lastTimelineAt?: string | null | undefined;
|
|
13027
13211
|
pendingPlanReview?: boolean | undefined;
|
|
13028
13212
|
}, {
|
|
13029
13213
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -13080,6 +13264,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13080
13264
|
} | null | undefined;
|
|
13081
13265
|
} | null | undefined;
|
|
13082
13266
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13267
|
+
lastTimelineAt?: string | null | undefined;
|
|
13083
13268
|
pendingPlanReview?: boolean | undefined;
|
|
13084
13269
|
}>>;
|
|
13085
13270
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -13143,6 +13328,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13143
13328
|
} | null | undefined;
|
|
13144
13329
|
} | null | undefined;
|
|
13145
13330
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13331
|
+
lastTimelineAt?: string | null | undefined;
|
|
13146
13332
|
pendingPlanReview?: boolean | undefined;
|
|
13147
13333
|
} | null;
|
|
13148
13334
|
lastMessage: string | null;
|
|
@@ -13205,6 +13391,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13205
13391
|
} | null | undefined;
|
|
13206
13392
|
} | null | undefined;
|
|
13207
13393
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13394
|
+
lastTimelineAt?: string | null | undefined;
|
|
13208
13395
|
pendingPlanReview?: boolean | undefined;
|
|
13209
13396
|
} | null;
|
|
13210
13397
|
lastMessage: string | null;
|
|
@@ -13270,6 +13457,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13270
13457
|
} | null | undefined;
|
|
13271
13458
|
} | null | undefined;
|
|
13272
13459
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13460
|
+
lastTimelineAt?: string | null | undefined;
|
|
13273
13461
|
pendingPlanReview?: boolean | undefined;
|
|
13274
13462
|
} | null;
|
|
13275
13463
|
lastMessage: string | null;
|
|
@@ -13335,6 +13523,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
13335
13523
|
} | null | undefined;
|
|
13336
13524
|
} | null | undefined;
|
|
13337
13525
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
13526
|
+
lastTimelineAt?: string | null | undefined;
|
|
13338
13527
|
pendingPlanReview?: boolean | undefined;
|
|
13339
13528
|
} | null;
|
|
13340
13529
|
lastMessage: string | null;
|
|
@@ -19409,6 +19598,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19409
19598
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19410
19599
|
createdAt: z.ZodString;
|
|
19411
19600
|
updatedAt: z.ZodString;
|
|
19601
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19412
19602
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
19413
19603
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
19414
19604
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -19590,6 +19780,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19590
19780
|
} | null | undefined;
|
|
19591
19781
|
} | null | undefined;
|
|
19592
19782
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
19783
|
+
lastTimelineAt?: string | null | undefined;
|
|
19593
19784
|
pendingPlanReview?: boolean | undefined;
|
|
19594
19785
|
}, {
|
|
19595
19786
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -19646,6 +19837,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19646
19837
|
} | null | undefined;
|
|
19647
19838
|
} | null | undefined;
|
|
19648
19839
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
19840
|
+
lastTimelineAt?: string | null | undefined;
|
|
19649
19841
|
pendingPlanReview?: boolean | undefined;
|
|
19650
19842
|
}>;
|
|
19651
19843
|
project: z.ZodObject<{
|
|
@@ -19823,6 +20015,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19823
20015
|
} | null | undefined;
|
|
19824
20016
|
} | null | undefined;
|
|
19825
20017
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
20018
|
+
lastTimelineAt?: string | null | undefined;
|
|
19826
20019
|
pendingPlanReview?: boolean | undefined;
|
|
19827
20020
|
};
|
|
19828
20021
|
project: {
|
|
@@ -19908,6 +20101,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19908
20101
|
} | null | undefined;
|
|
19909
20102
|
} | null | undefined;
|
|
19910
20103
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
20104
|
+
lastTimelineAt?: string | null | undefined;
|
|
19911
20105
|
pendingPlanReview?: boolean | undefined;
|
|
19912
20106
|
};
|
|
19913
20107
|
project: {
|
|
@@ -20005,6 +20199,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20005
20199
|
} | null | undefined;
|
|
20006
20200
|
} | null | undefined;
|
|
20007
20201
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
20202
|
+
lastTimelineAt?: string | null | undefined;
|
|
20008
20203
|
pendingPlanReview?: boolean | undefined;
|
|
20009
20204
|
};
|
|
20010
20205
|
project: {
|
|
@@ -20096,6 +20291,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20096
20291
|
} | null | undefined;
|
|
20097
20292
|
} | null | undefined;
|
|
20098
20293
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
20294
|
+
lastTimelineAt?: string | null | undefined;
|
|
20099
20295
|
pendingPlanReview?: boolean | undefined;
|
|
20100
20296
|
};
|
|
20101
20297
|
project: {
|
|
@@ -20571,6 +20767,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20571
20767
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20572
20768
|
createdAt: z.ZodString;
|
|
20573
20769
|
updatedAt: z.ZodString;
|
|
20770
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20574
20771
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
20575
20772
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
20576
20773
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -20752,6 +20949,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20752
20949
|
} | null | undefined;
|
|
20753
20950
|
} | null | undefined;
|
|
20754
20951
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
20952
|
+
lastTimelineAt?: string | null | undefined;
|
|
20755
20953
|
pendingPlanReview?: boolean | undefined;
|
|
20756
20954
|
}, {
|
|
20757
20955
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -20808,6 +21006,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20808
21006
|
} | null | undefined;
|
|
20809
21007
|
} | null | undefined;
|
|
20810
21008
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21009
|
+
lastTimelineAt?: string | null | undefined;
|
|
20811
21010
|
pendingPlanReview?: boolean | undefined;
|
|
20812
21011
|
}>;
|
|
20813
21012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20868,6 +21067,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20868
21067
|
} | null | undefined;
|
|
20869
21068
|
} | null | undefined;
|
|
20870
21069
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21070
|
+
lastTimelineAt?: string | null | undefined;
|
|
20871
21071
|
pendingPlanReview?: boolean | undefined;
|
|
20872
21072
|
};
|
|
20873
21073
|
}, {
|
|
@@ -20928,6 +21128,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20928
21128
|
} | null | undefined;
|
|
20929
21129
|
} | null | undefined;
|
|
20930
21130
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21131
|
+
lastTimelineAt?: string | null | undefined;
|
|
20931
21132
|
pendingPlanReview?: boolean | undefined;
|
|
20932
21133
|
};
|
|
20933
21134
|
}>;
|
|
@@ -20991,6 +21192,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20991
21192
|
} | null | undefined;
|
|
20992
21193
|
} | null | undefined;
|
|
20993
21194
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21195
|
+
lastTimelineAt?: string | null | undefined;
|
|
20994
21196
|
pendingPlanReview?: boolean | undefined;
|
|
20995
21197
|
};
|
|
20996
21198
|
};
|
|
@@ -21054,6 +21256,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21054
21256
|
} | null | undefined;
|
|
21055
21257
|
} | null | undefined;
|
|
21056
21258
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21259
|
+
lastTimelineAt?: string | null | undefined;
|
|
21057
21260
|
pendingPlanReview?: boolean | undefined;
|
|
21058
21261
|
};
|
|
21059
21262
|
};
|
|
@@ -21073,6 +21276,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21073
21276
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21074
21277
|
createdAt: z.ZodString;
|
|
21075
21278
|
updatedAt: z.ZodString;
|
|
21279
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21076
21280
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
21077
21281
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
21078
21282
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -21254,6 +21458,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21254
21458
|
} | null | undefined;
|
|
21255
21459
|
} | null | undefined;
|
|
21256
21460
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21461
|
+
lastTimelineAt?: string | null | undefined;
|
|
21257
21462
|
pendingPlanReview?: boolean | undefined;
|
|
21258
21463
|
}, {
|
|
21259
21464
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -21310,6 +21515,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21310
21515
|
} | null | undefined;
|
|
21311
21516
|
} | null | undefined;
|
|
21312
21517
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21518
|
+
lastTimelineAt?: string | null | undefined;
|
|
21313
21519
|
pendingPlanReview?: boolean | undefined;
|
|
21314
21520
|
}>;
|
|
21315
21521
|
project: z.ZodObject<{
|
|
@@ -21486,6 +21692,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21486
21692
|
} | null | undefined;
|
|
21487
21693
|
} | null | undefined;
|
|
21488
21694
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21695
|
+
lastTimelineAt?: string | null | undefined;
|
|
21489
21696
|
pendingPlanReview?: boolean | undefined;
|
|
21490
21697
|
};
|
|
21491
21698
|
project: {
|
|
@@ -21570,6 +21777,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21570
21777
|
} | null | undefined;
|
|
21571
21778
|
} | null | undefined;
|
|
21572
21779
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21780
|
+
lastTimelineAt?: string | null | undefined;
|
|
21573
21781
|
pendingPlanReview?: boolean | undefined;
|
|
21574
21782
|
};
|
|
21575
21783
|
project: {
|
|
@@ -21669,6 +21877,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21669
21877
|
} | null | undefined;
|
|
21670
21878
|
} | null | undefined;
|
|
21671
21879
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21880
|
+
lastTimelineAt?: string | null | undefined;
|
|
21672
21881
|
pendingPlanReview?: boolean | undefined;
|
|
21673
21882
|
};
|
|
21674
21883
|
project: {
|
|
@@ -21762,6 +21971,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21762
21971
|
} | null | undefined;
|
|
21763
21972
|
} | null | undefined;
|
|
21764
21973
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
21974
|
+
lastTimelineAt?: string | null | undefined;
|
|
21765
21975
|
pendingPlanReview?: boolean | undefined;
|
|
21766
21976
|
};
|
|
21767
21977
|
project: {
|
|
@@ -21858,6 +22068,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21858
22068
|
} | null | undefined;
|
|
21859
22069
|
} | null | undefined;
|
|
21860
22070
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22071
|
+
lastTimelineAt?: string | null | undefined;
|
|
21861
22072
|
pendingPlanReview?: boolean | undefined;
|
|
21862
22073
|
};
|
|
21863
22074
|
project: {
|
|
@@ -21954,6 +22165,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21954
22165
|
} | null | undefined;
|
|
21955
22166
|
} | null | undefined;
|
|
21956
22167
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22168
|
+
lastTimelineAt?: string | null | undefined;
|
|
21957
22169
|
pendingPlanReview?: boolean | undefined;
|
|
21958
22170
|
};
|
|
21959
22171
|
project: {
|
|
@@ -22005,6 +22217,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22005
22217
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22006
22218
|
createdAt: z.ZodString;
|
|
22007
22219
|
updatedAt: z.ZodString;
|
|
22220
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22008
22221
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
22009
22222
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
22010
22223
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -22186,6 +22399,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22186
22399
|
} | null | undefined;
|
|
22187
22400
|
} | null | undefined;
|
|
22188
22401
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22402
|
+
lastTimelineAt?: string | null | undefined;
|
|
22189
22403
|
pendingPlanReview?: boolean | undefined;
|
|
22190
22404
|
}, {
|
|
22191
22405
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -22242,6 +22456,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22242
22456
|
} | null | undefined;
|
|
22243
22457
|
} | null | undefined;
|
|
22244
22458
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22459
|
+
lastTimelineAt?: string | null | undefined;
|
|
22245
22460
|
pendingPlanReview?: boolean | undefined;
|
|
22246
22461
|
}>>;
|
|
22247
22462
|
project: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -22420,6 +22635,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22420
22635
|
} | null | undefined;
|
|
22421
22636
|
} | null | undefined;
|
|
22422
22637
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22638
|
+
lastTimelineAt?: string | null | undefined;
|
|
22423
22639
|
pendingPlanReview?: boolean | undefined;
|
|
22424
22640
|
} | null;
|
|
22425
22641
|
requestId: string;
|
|
@@ -22506,6 +22722,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22506
22722
|
} | null | undefined;
|
|
22507
22723
|
} | null | undefined;
|
|
22508
22724
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22725
|
+
lastTimelineAt?: string | null | undefined;
|
|
22509
22726
|
pendingPlanReview?: boolean | undefined;
|
|
22510
22727
|
} | null;
|
|
22511
22728
|
requestId: string;
|
|
@@ -22595,6 +22812,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22595
22812
|
} | null | undefined;
|
|
22596
22813
|
} | null | undefined;
|
|
22597
22814
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22815
|
+
lastTimelineAt?: string | null | undefined;
|
|
22598
22816
|
pendingPlanReview?: boolean | undefined;
|
|
22599
22817
|
} | null;
|
|
22600
22818
|
requestId: string;
|
|
@@ -22684,6 +22902,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22684
22902
|
} | null | undefined;
|
|
22685
22903
|
} | null | undefined;
|
|
22686
22904
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
22905
|
+
lastTimelineAt?: string | null | undefined;
|
|
22687
22906
|
pendingPlanReview?: boolean | undefined;
|
|
22688
22907
|
} | null;
|
|
22689
22908
|
requestId: string;
|
|
@@ -22765,6 +22984,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22765
22984
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22766
22985
|
createdAt: z.ZodString;
|
|
22767
22986
|
updatedAt: z.ZodString;
|
|
22987
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22768
22988
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
22769
22989
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
22770
22990
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -22946,6 +23166,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
22946
23166
|
} | null | undefined;
|
|
22947
23167
|
} | null | undefined;
|
|
22948
23168
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23169
|
+
lastTimelineAt?: string | null | undefined;
|
|
22949
23170
|
pendingPlanReview?: boolean | undefined;
|
|
22950
23171
|
}, {
|
|
22951
23172
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -23002,6 +23223,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23002
23223
|
} | null | undefined;
|
|
23003
23224
|
} | null | undefined;
|
|
23004
23225
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23226
|
+
lastTimelineAt?: string | null | undefined;
|
|
23005
23227
|
pendingPlanReview?: boolean | undefined;
|
|
23006
23228
|
}>>>;
|
|
23007
23229
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23066,6 +23288,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23066
23288
|
} | null | undefined;
|
|
23067
23289
|
} | null | undefined;
|
|
23068
23290
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23291
|
+
lastTimelineAt?: string | null | undefined;
|
|
23069
23292
|
pendingPlanReview?: boolean | undefined;
|
|
23070
23293
|
} | null | undefined;
|
|
23071
23294
|
}, {
|
|
@@ -23129,6 +23352,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23129
23352
|
} | null | undefined;
|
|
23130
23353
|
} | null | undefined;
|
|
23131
23354
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23355
|
+
lastTimelineAt?: string | null | undefined;
|
|
23132
23356
|
pendingPlanReview?: boolean | undefined;
|
|
23133
23357
|
} | null | undefined;
|
|
23134
23358
|
}>;
|
|
@@ -23195,6 +23419,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23195
23419
|
} | null | undefined;
|
|
23196
23420
|
} | null | undefined;
|
|
23197
23421
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23422
|
+
lastTimelineAt?: string | null | undefined;
|
|
23198
23423
|
pendingPlanReview?: boolean | undefined;
|
|
23199
23424
|
} | null | undefined;
|
|
23200
23425
|
};
|
|
@@ -23261,6 +23486,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23261
23486
|
} | null | undefined;
|
|
23262
23487
|
} | null | undefined;
|
|
23263
23488
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
23489
|
+
lastTimelineAt?: string | null | undefined;
|
|
23264
23490
|
pendingPlanReview?: boolean | undefined;
|
|
23265
23491
|
} | null | undefined;
|
|
23266
23492
|
};
|
|
@@ -24189,6 +24415,75 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24189
24415
|
};
|
|
24190
24416
|
}[];
|
|
24191
24417
|
};
|
|
24418
|
+
}>, z.ZodObject<{
|
|
24419
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_response">;
|
|
24420
|
+
payload: z.ZodObject<{
|
|
24421
|
+
requestId: z.ZodString;
|
|
24422
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
24423
|
+
cwd: z.ZodString;
|
|
24424
|
+
lastReadAt: z.ZodString;
|
|
24425
|
+
}, "strip", z.ZodTypeAny, {
|
|
24426
|
+
cwd: string;
|
|
24427
|
+
lastReadAt: string;
|
|
24428
|
+
}, {
|
|
24429
|
+
cwd: string;
|
|
24430
|
+
lastReadAt: string;
|
|
24431
|
+
}>, "many">;
|
|
24432
|
+
}, "strip", z.ZodTypeAny, {
|
|
24433
|
+
entries: {
|
|
24434
|
+
cwd: string;
|
|
24435
|
+
lastReadAt: string;
|
|
24436
|
+
}[];
|
|
24437
|
+
requestId: string;
|
|
24438
|
+
}, {
|
|
24439
|
+
entries: {
|
|
24440
|
+
cwd: string;
|
|
24441
|
+
lastReadAt: string;
|
|
24442
|
+
}[];
|
|
24443
|
+
requestId: string;
|
|
24444
|
+
}>;
|
|
24445
|
+
}, "strip", z.ZodTypeAny, {
|
|
24446
|
+
type: "fetch_workspace_read_states_response";
|
|
24447
|
+
payload: {
|
|
24448
|
+
entries: {
|
|
24449
|
+
cwd: string;
|
|
24450
|
+
lastReadAt: string;
|
|
24451
|
+
}[];
|
|
24452
|
+
requestId: string;
|
|
24453
|
+
};
|
|
24454
|
+
}, {
|
|
24455
|
+
type: "fetch_workspace_read_states_response";
|
|
24456
|
+
payload: {
|
|
24457
|
+
entries: {
|
|
24458
|
+
cwd: string;
|
|
24459
|
+
lastReadAt: string;
|
|
24460
|
+
}[];
|
|
24461
|
+
requestId: string;
|
|
24462
|
+
};
|
|
24463
|
+
}>, z.ZodObject<{
|
|
24464
|
+
type: z.ZodLiteral<"workspace_read_state_updated">;
|
|
24465
|
+
payload: z.ZodObject<{
|
|
24466
|
+
cwd: z.ZodString;
|
|
24467
|
+
lastReadAt: z.ZodString;
|
|
24468
|
+
}, "strip", z.ZodTypeAny, {
|
|
24469
|
+
cwd: string;
|
|
24470
|
+
lastReadAt: string;
|
|
24471
|
+
}, {
|
|
24472
|
+
cwd: string;
|
|
24473
|
+
lastReadAt: string;
|
|
24474
|
+
}>;
|
|
24475
|
+
}, "strip", z.ZodTypeAny, {
|
|
24476
|
+
type: "workspace_read_state_updated";
|
|
24477
|
+
payload: {
|
|
24478
|
+
cwd: string;
|
|
24479
|
+
lastReadAt: string;
|
|
24480
|
+
};
|
|
24481
|
+
}, {
|
|
24482
|
+
type: "workspace_read_state_updated";
|
|
24483
|
+
payload: {
|
|
24484
|
+
cwd: string;
|
|
24485
|
+
lastReadAt: string;
|
|
24486
|
+
};
|
|
24192
24487
|
}>, z.ZodObject<{
|
|
24193
24488
|
type: z.ZodLiteral<"fetch_provider_thread_timeline_response">;
|
|
24194
24489
|
payload: z.ZodObject<{
|
|
@@ -24782,6 +25077,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24782
25077
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24783
25078
|
createdAt: z.ZodString;
|
|
24784
25079
|
updatedAt: z.ZodString;
|
|
25080
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24785
25081
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
24786
25082
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
24787
25083
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -24963,6 +25259,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24963
25259
|
} | null | undefined;
|
|
24964
25260
|
} | null | undefined;
|
|
24965
25261
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25262
|
+
lastTimelineAt?: string | null | undefined;
|
|
24966
25263
|
pendingPlanReview?: boolean | undefined;
|
|
24967
25264
|
}, {
|
|
24968
25265
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -25019,6 +25316,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25019
25316
|
} | null | undefined;
|
|
25020
25317
|
} | null | undefined;
|
|
25021
25318
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25319
|
+
lastTimelineAt?: string | null | undefined;
|
|
25022
25320
|
pendingPlanReview?: boolean | undefined;
|
|
25023
25321
|
}>>;
|
|
25024
25322
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -25082,6 +25380,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25082
25380
|
} | null | undefined;
|
|
25083
25381
|
} | null | undefined;
|
|
25084
25382
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25383
|
+
lastTimelineAt?: string | null | undefined;
|
|
25085
25384
|
pendingPlanReview?: boolean | undefined;
|
|
25086
25385
|
} | null;
|
|
25087
25386
|
lastMessage: string | null;
|
|
@@ -25144,6 +25443,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25144
25443
|
} | null | undefined;
|
|
25145
25444
|
} | null | undefined;
|
|
25146
25445
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25446
|
+
lastTimelineAt?: string | null | undefined;
|
|
25147
25447
|
pendingPlanReview?: boolean | undefined;
|
|
25148
25448
|
} | null;
|
|
25149
25449
|
lastMessage: string | null;
|
|
@@ -25209,6 +25509,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25209
25509
|
} | null | undefined;
|
|
25210
25510
|
} | null | undefined;
|
|
25211
25511
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25512
|
+
lastTimelineAt?: string | null | undefined;
|
|
25212
25513
|
pendingPlanReview?: boolean | undefined;
|
|
25213
25514
|
} | null;
|
|
25214
25515
|
lastMessage: string | null;
|
|
@@ -25274,6 +25575,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25274
25575
|
} | null | undefined;
|
|
25275
25576
|
} | null | undefined;
|
|
25276
25577
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
25578
|
+
lastTimelineAt?: string | null | undefined;
|
|
25277
25579
|
pendingPlanReview?: boolean | undefined;
|
|
25278
25580
|
} | null;
|
|
25279
25581
|
lastMessage: string | null;
|
|
@@ -32757,6 +33059,27 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
32757
33059
|
}, {
|
|
32758
33060
|
agentId: string | string[];
|
|
32759
33061
|
type: "clear_agent_attention";
|
|
33062
|
+
}>, z.ZodObject<{
|
|
33063
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_request">;
|
|
33064
|
+
requestId: z.ZodString;
|
|
33065
|
+
}, "strip", z.ZodTypeAny, {
|
|
33066
|
+
type: "fetch_workspace_read_states_request";
|
|
33067
|
+
requestId: string;
|
|
33068
|
+
}, {
|
|
33069
|
+
type: "fetch_workspace_read_states_request";
|
|
33070
|
+
requestId: string;
|
|
33071
|
+
}>, z.ZodObject<{
|
|
33072
|
+
type: z.ZodLiteral<"mark_workspace_read">;
|
|
33073
|
+
cwd: z.ZodString;
|
|
33074
|
+
lastReadAt: z.ZodString;
|
|
33075
|
+
}, "strip", z.ZodTypeAny, {
|
|
33076
|
+
type: "mark_workspace_read";
|
|
33077
|
+
cwd: string;
|
|
33078
|
+
lastReadAt: string;
|
|
33079
|
+
}, {
|
|
33080
|
+
type: "mark_workspace_read";
|
|
33081
|
+
cwd: string;
|
|
33082
|
+
lastReadAt: string;
|
|
32760
33083
|
}>, z.ZodObject<{
|
|
32761
33084
|
type: z.ZodLiteral<"client_heartbeat">;
|
|
32762
33085
|
deviceType: z.ZodEnum<["web", "mobile"]>;
|
|
@@ -33549,6 +33872,13 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
33549
33872
|
} | {
|
|
33550
33873
|
agentId: string | string[];
|
|
33551
33874
|
type: "clear_agent_attention";
|
|
33875
|
+
} | {
|
|
33876
|
+
type: "fetch_workspace_read_states_request";
|
|
33877
|
+
requestId: string;
|
|
33878
|
+
} | {
|
|
33879
|
+
type: "mark_workspace_read";
|
|
33880
|
+
cwd: string;
|
|
33881
|
+
lastReadAt: string;
|
|
33552
33882
|
} | {
|
|
33553
33883
|
type: "client_heartbeat";
|
|
33554
33884
|
lastActivityAt: string;
|
|
@@ -34090,6 +34420,13 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
34090
34420
|
} | {
|
|
34091
34421
|
agentId: string | string[];
|
|
34092
34422
|
type: "clear_agent_attention";
|
|
34423
|
+
} | {
|
|
34424
|
+
type: "fetch_workspace_read_states_request";
|
|
34425
|
+
requestId: string;
|
|
34426
|
+
} | {
|
|
34427
|
+
type: "mark_workspace_read";
|
|
34428
|
+
cwd: string;
|
|
34429
|
+
lastReadAt: string;
|
|
34093
34430
|
} | {
|
|
34094
34431
|
type: "client_heartbeat";
|
|
34095
34432
|
lastActivityAt: string;
|
|
@@ -34539,6 +34876,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34539
34876
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34540
34877
|
createdAt: z.ZodString;
|
|
34541
34878
|
updatedAt: z.ZodString;
|
|
34879
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34542
34880
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
34543
34881
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
34544
34882
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -34720,6 +35058,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34720
35058
|
} | null | undefined;
|
|
34721
35059
|
} | null | undefined;
|
|
34722
35060
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35061
|
+
lastTimelineAt?: string | null | undefined;
|
|
34723
35062
|
pendingPlanReview?: boolean | undefined;
|
|
34724
35063
|
}, {
|
|
34725
35064
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -34776,6 +35115,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34776
35115
|
} | null | undefined;
|
|
34777
35116
|
} | null | undefined;
|
|
34778
35117
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35118
|
+
lastTimelineAt?: string | null | undefined;
|
|
34779
35119
|
pendingPlanReview?: boolean | undefined;
|
|
34780
35120
|
}>;
|
|
34781
35121
|
project: z.ZodObject<{
|
|
@@ -34953,6 +35293,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34953
35293
|
} | null | undefined;
|
|
34954
35294
|
} | null | undefined;
|
|
34955
35295
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35296
|
+
lastTimelineAt?: string | null | undefined;
|
|
34956
35297
|
pendingPlanReview?: boolean | undefined;
|
|
34957
35298
|
};
|
|
34958
35299
|
project: {
|
|
@@ -35038,6 +35379,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35038
35379
|
} | null | undefined;
|
|
35039
35380
|
} | null | undefined;
|
|
35040
35381
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35382
|
+
lastTimelineAt?: string | null | undefined;
|
|
35041
35383
|
pendingPlanReview?: boolean | undefined;
|
|
35042
35384
|
};
|
|
35043
35385
|
project: {
|
|
@@ -35135,6 +35477,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35135
35477
|
} | null | undefined;
|
|
35136
35478
|
} | null | undefined;
|
|
35137
35479
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35480
|
+
lastTimelineAt?: string | null | undefined;
|
|
35138
35481
|
pendingPlanReview?: boolean | undefined;
|
|
35139
35482
|
};
|
|
35140
35483
|
project: {
|
|
@@ -35226,6 +35569,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35226
35569
|
} | null | undefined;
|
|
35227
35570
|
} | null | undefined;
|
|
35228
35571
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
35572
|
+
lastTimelineAt?: string | null | undefined;
|
|
35229
35573
|
pendingPlanReview?: boolean | undefined;
|
|
35230
35574
|
};
|
|
35231
35575
|
project: {
|
|
@@ -35701,6 +36045,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35701
36045
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35702
36046
|
createdAt: z.ZodString;
|
|
35703
36047
|
updatedAt: z.ZodString;
|
|
36048
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35704
36049
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
35705
36050
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
35706
36051
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -35882,6 +36227,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35882
36227
|
} | null | undefined;
|
|
35883
36228
|
} | null | undefined;
|
|
35884
36229
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36230
|
+
lastTimelineAt?: string | null | undefined;
|
|
35885
36231
|
pendingPlanReview?: boolean | undefined;
|
|
35886
36232
|
}, {
|
|
35887
36233
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -35938,6 +36284,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35938
36284
|
} | null | undefined;
|
|
35939
36285
|
} | null | undefined;
|
|
35940
36286
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36287
|
+
lastTimelineAt?: string | null | undefined;
|
|
35941
36288
|
pendingPlanReview?: boolean | undefined;
|
|
35942
36289
|
}>;
|
|
35943
36290
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35998,6 +36345,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35998
36345
|
} | null | undefined;
|
|
35999
36346
|
} | null | undefined;
|
|
36000
36347
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36348
|
+
lastTimelineAt?: string | null | undefined;
|
|
36001
36349
|
pendingPlanReview?: boolean | undefined;
|
|
36002
36350
|
};
|
|
36003
36351
|
}, {
|
|
@@ -36058,6 +36406,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36058
36406
|
} | null | undefined;
|
|
36059
36407
|
} | null | undefined;
|
|
36060
36408
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36409
|
+
lastTimelineAt?: string | null | undefined;
|
|
36061
36410
|
pendingPlanReview?: boolean | undefined;
|
|
36062
36411
|
};
|
|
36063
36412
|
}>;
|
|
@@ -36121,6 +36470,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36121
36470
|
} | null | undefined;
|
|
36122
36471
|
} | null | undefined;
|
|
36123
36472
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36473
|
+
lastTimelineAt?: string | null | undefined;
|
|
36124
36474
|
pendingPlanReview?: boolean | undefined;
|
|
36125
36475
|
};
|
|
36126
36476
|
};
|
|
@@ -36184,6 +36534,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36184
36534
|
} | null | undefined;
|
|
36185
36535
|
} | null | undefined;
|
|
36186
36536
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36537
|
+
lastTimelineAt?: string | null | undefined;
|
|
36187
36538
|
pendingPlanReview?: boolean | undefined;
|
|
36188
36539
|
};
|
|
36189
36540
|
};
|
|
@@ -36203,6 +36554,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36203
36554
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36204
36555
|
createdAt: z.ZodString;
|
|
36205
36556
|
updatedAt: z.ZodString;
|
|
36557
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36206
36558
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
36207
36559
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
36208
36560
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -36384,6 +36736,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36384
36736
|
} | null | undefined;
|
|
36385
36737
|
} | null | undefined;
|
|
36386
36738
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36739
|
+
lastTimelineAt?: string | null | undefined;
|
|
36387
36740
|
pendingPlanReview?: boolean | undefined;
|
|
36388
36741
|
}, {
|
|
36389
36742
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -36440,6 +36793,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36440
36793
|
} | null | undefined;
|
|
36441
36794
|
} | null | undefined;
|
|
36442
36795
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36796
|
+
lastTimelineAt?: string | null | undefined;
|
|
36443
36797
|
pendingPlanReview?: boolean | undefined;
|
|
36444
36798
|
}>;
|
|
36445
36799
|
project: z.ZodObject<{
|
|
@@ -36616,6 +36970,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36616
36970
|
} | null | undefined;
|
|
36617
36971
|
} | null | undefined;
|
|
36618
36972
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
36973
|
+
lastTimelineAt?: string | null | undefined;
|
|
36619
36974
|
pendingPlanReview?: boolean | undefined;
|
|
36620
36975
|
};
|
|
36621
36976
|
project: {
|
|
@@ -36700,6 +37055,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36700
37055
|
} | null | undefined;
|
|
36701
37056
|
} | null | undefined;
|
|
36702
37057
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37058
|
+
lastTimelineAt?: string | null | undefined;
|
|
36703
37059
|
pendingPlanReview?: boolean | undefined;
|
|
36704
37060
|
};
|
|
36705
37061
|
project: {
|
|
@@ -36799,6 +37155,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36799
37155
|
} | null | undefined;
|
|
36800
37156
|
} | null | undefined;
|
|
36801
37157
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37158
|
+
lastTimelineAt?: string | null | undefined;
|
|
36802
37159
|
pendingPlanReview?: boolean | undefined;
|
|
36803
37160
|
};
|
|
36804
37161
|
project: {
|
|
@@ -36892,6 +37249,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36892
37249
|
} | null | undefined;
|
|
36893
37250
|
} | null | undefined;
|
|
36894
37251
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37252
|
+
lastTimelineAt?: string | null | undefined;
|
|
36895
37253
|
pendingPlanReview?: boolean | undefined;
|
|
36896
37254
|
};
|
|
36897
37255
|
project: {
|
|
@@ -36988,6 +37346,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36988
37346
|
} | null | undefined;
|
|
36989
37347
|
} | null | undefined;
|
|
36990
37348
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37349
|
+
lastTimelineAt?: string | null | undefined;
|
|
36991
37350
|
pendingPlanReview?: boolean | undefined;
|
|
36992
37351
|
};
|
|
36993
37352
|
project: {
|
|
@@ -37084,6 +37443,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37084
37443
|
} | null | undefined;
|
|
37085
37444
|
} | null | undefined;
|
|
37086
37445
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37446
|
+
lastTimelineAt?: string | null | undefined;
|
|
37087
37447
|
pendingPlanReview?: boolean | undefined;
|
|
37088
37448
|
};
|
|
37089
37449
|
project: {
|
|
@@ -37135,6 +37495,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37135
37495
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37136
37496
|
createdAt: z.ZodString;
|
|
37137
37497
|
updatedAt: z.ZodString;
|
|
37498
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37138
37499
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
37139
37500
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
37140
37501
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -37316,6 +37677,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37316
37677
|
} | null | undefined;
|
|
37317
37678
|
} | null | undefined;
|
|
37318
37679
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37680
|
+
lastTimelineAt?: string | null | undefined;
|
|
37319
37681
|
pendingPlanReview?: boolean | undefined;
|
|
37320
37682
|
}, {
|
|
37321
37683
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -37372,6 +37734,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37372
37734
|
} | null | undefined;
|
|
37373
37735
|
} | null | undefined;
|
|
37374
37736
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37737
|
+
lastTimelineAt?: string | null | undefined;
|
|
37375
37738
|
pendingPlanReview?: boolean | undefined;
|
|
37376
37739
|
}>>;
|
|
37377
37740
|
project: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -37550,6 +37913,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37550
37913
|
} | null | undefined;
|
|
37551
37914
|
} | null | undefined;
|
|
37552
37915
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
37916
|
+
lastTimelineAt?: string | null | undefined;
|
|
37553
37917
|
pendingPlanReview?: boolean | undefined;
|
|
37554
37918
|
} | null;
|
|
37555
37919
|
requestId: string;
|
|
@@ -37636,6 +38000,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37636
38000
|
} | null | undefined;
|
|
37637
38001
|
} | null | undefined;
|
|
37638
38002
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38003
|
+
lastTimelineAt?: string | null | undefined;
|
|
37639
38004
|
pendingPlanReview?: boolean | undefined;
|
|
37640
38005
|
} | null;
|
|
37641
38006
|
requestId: string;
|
|
@@ -37725,6 +38090,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37725
38090
|
} | null | undefined;
|
|
37726
38091
|
} | null | undefined;
|
|
37727
38092
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38093
|
+
lastTimelineAt?: string | null | undefined;
|
|
37728
38094
|
pendingPlanReview?: boolean | undefined;
|
|
37729
38095
|
} | null;
|
|
37730
38096
|
requestId: string;
|
|
@@ -37814,6 +38180,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37814
38180
|
} | null | undefined;
|
|
37815
38181
|
} | null | undefined;
|
|
37816
38182
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38183
|
+
lastTimelineAt?: string | null | undefined;
|
|
37817
38184
|
pendingPlanReview?: boolean | undefined;
|
|
37818
38185
|
} | null;
|
|
37819
38186
|
requestId: string;
|
|
@@ -37895,6 +38262,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37895
38262
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37896
38263
|
createdAt: z.ZodString;
|
|
37897
38264
|
updatedAt: z.ZodString;
|
|
38265
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37898
38266
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
37899
38267
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
37900
38268
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -38076,6 +38444,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38076
38444
|
} | null | undefined;
|
|
38077
38445
|
} | null | undefined;
|
|
38078
38446
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38447
|
+
lastTimelineAt?: string | null | undefined;
|
|
38079
38448
|
pendingPlanReview?: boolean | undefined;
|
|
38080
38449
|
}, {
|
|
38081
38450
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -38132,6 +38501,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38132
38501
|
} | null | undefined;
|
|
38133
38502
|
} | null | undefined;
|
|
38134
38503
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38504
|
+
lastTimelineAt?: string | null | undefined;
|
|
38135
38505
|
pendingPlanReview?: boolean | undefined;
|
|
38136
38506
|
}>>>;
|
|
38137
38507
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -38196,6 +38566,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38196
38566
|
} | null | undefined;
|
|
38197
38567
|
} | null | undefined;
|
|
38198
38568
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38569
|
+
lastTimelineAt?: string | null | undefined;
|
|
38199
38570
|
pendingPlanReview?: boolean | undefined;
|
|
38200
38571
|
} | null | undefined;
|
|
38201
38572
|
}, {
|
|
@@ -38259,6 +38630,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38259
38630
|
} | null | undefined;
|
|
38260
38631
|
} | null | undefined;
|
|
38261
38632
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38633
|
+
lastTimelineAt?: string | null | undefined;
|
|
38262
38634
|
pendingPlanReview?: boolean | undefined;
|
|
38263
38635
|
} | null | undefined;
|
|
38264
38636
|
}>;
|
|
@@ -38325,6 +38697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38325
38697
|
} | null | undefined;
|
|
38326
38698
|
} | null | undefined;
|
|
38327
38699
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38700
|
+
lastTimelineAt?: string | null | undefined;
|
|
38328
38701
|
pendingPlanReview?: boolean | undefined;
|
|
38329
38702
|
} | null | undefined;
|
|
38330
38703
|
};
|
|
@@ -38391,6 +38764,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38391
38764
|
} | null | undefined;
|
|
38392
38765
|
} | null | undefined;
|
|
38393
38766
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
38767
|
+
lastTimelineAt?: string | null | undefined;
|
|
38394
38768
|
pendingPlanReview?: boolean | undefined;
|
|
38395
38769
|
} | null | undefined;
|
|
38396
38770
|
};
|
|
@@ -39319,6 +39693,75 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39319
39693
|
};
|
|
39320
39694
|
}[];
|
|
39321
39695
|
};
|
|
39696
|
+
}>, z.ZodObject<{
|
|
39697
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_response">;
|
|
39698
|
+
payload: z.ZodObject<{
|
|
39699
|
+
requestId: z.ZodString;
|
|
39700
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
39701
|
+
cwd: z.ZodString;
|
|
39702
|
+
lastReadAt: z.ZodString;
|
|
39703
|
+
}, "strip", z.ZodTypeAny, {
|
|
39704
|
+
cwd: string;
|
|
39705
|
+
lastReadAt: string;
|
|
39706
|
+
}, {
|
|
39707
|
+
cwd: string;
|
|
39708
|
+
lastReadAt: string;
|
|
39709
|
+
}>, "many">;
|
|
39710
|
+
}, "strip", z.ZodTypeAny, {
|
|
39711
|
+
entries: {
|
|
39712
|
+
cwd: string;
|
|
39713
|
+
lastReadAt: string;
|
|
39714
|
+
}[];
|
|
39715
|
+
requestId: string;
|
|
39716
|
+
}, {
|
|
39717
|
+
entries: {
|
|
39718
|
+
cwd: string;
|
|
39719
|
+
lastReadAt: string;
|
|
39720
|
+
}[];
|
|
39721
|
+
requestId: string;
|
|
39722
|
+
}>;
|
|
39723
|
+
}, "strip", z.ZodTypeAny, {
|
|
39724
|
+
type: "fetch_workspace_read_states_response";
|
|
39725
|
+
payload: {
|
|
39726
|
+
entries: {
|
|
39727
|
+
cwd: string;
|
|
39728
|
+
lastReadAt: string;
|
|
39729
|
+
}[];
|
|
39730
|
+
requestId: string;
|
|
39731
|
+
};
|
|
39732
|
+
}, {
|
|
39733
|
+
type: "fetch_workspace_read_states_response";
|
|
39734
|
+
payload: {
|
|
39735
|
+
entries: {
|
|
39736
|
+
cwd: string;
|
|
39737
|
+
lastReadAt: string;
|
|
39738
|
+
}[];
|
|
39739
|
+
requestId: string;
|
|
39740
|
+
};
|
|
39741
|
+
}>, z.ZodObject<{
|
|
39742
|
+
type: z.ZodLiteral<"workspace_read_state_updated">;
|
|
39743
|
+
payload: z.ZodObject<{
|
|
39744
|
+
cwd: z.ZodString;
|
|
39745
|
+
lastReadAt: z.ZodString;
|
|
39746
|
+
}, "strip", z.ZodTypeAny, {
|
|
39747
|
+
cwd: string;
|
|
39748
|
+
lastReadAt: string;
|
|
39749
|
+
}, {
|
|
39750
|
+
cwd: string;
|
|
39751
|
+
lastReadAt: string;
|
|
39752
|
+
}>;
|
|
39753
|
+
}, "strip", z.ZodTypeAny, {
|
|
39754
|
+
type: "workspace_read_state_updated";
|
|
39755
|
+
payload: {
|
|
39756
|
+
cwd: string;
|
|
39757
|
+
lastReadAt: string;
|
|
39758
|
+
};
|
|
39759
|
+
}, {
|
|
39760
|
+
type: "workspace_read_state_updated";
|
|
39761
|
+
payload: {
|
|
39762
|
+
cwd: string;
|
|
39763
|
+
lastReadAt: string;
|
|
39764
|
+
};
|
|
39322
39765
|
}>, z.ZodObject<{
|
|
39323
39766
|
type: z.ZodLiteral<"fetch_provider_thread_timeline_response">;
|
|
39324
39767
|
payload: z.ZodObject<{
|
|
@@ -39912,6 +40355,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39912
40355
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39913
40356
|
createdAt: z.ZodString;
|
|
39914
40357
|
updatedAt: z.ZodString;
|
|
40358
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39915
40359
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
39916
40360
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
39917
40361
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -40093,6 +40537,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40093
40537
|
} | null | undefined;
|
|
40094
40538
|
} | null | undefined;
|
|
40095
40539
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40540
|
+
lastTimelineAt?: string | null | undefined;
|
|
40096
40541
|
pendingPlanReview?: boolean | undefined;
|
|
40097
40542
|
}, {
|
|
40098
40543
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -40149,6 +40594,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40149
40594
|
} | null | undefined;
|
|
40150
40595
|
} | null | undefined;
|
|
40151
40596
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40597
|
+
lastTimelineAt?: string | null | undefined;
|
|
40152
40598
|
pendingPlanReview?: boolean | undefined;
|
|
40153
40599
|
}>>;
|
|
40154
40600
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -40212,6 +40658,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40212
40658
|
} | null | undefined;
|
|
40213
40659
|
} | null | undefined;
|
|
40214
40660
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40661
|
+
lastTimelineAt?: string | null | undefined;
|
|
40215
40662
|
pendingPlanReview?: boolean | undefined;
|
|
40216
40663
|
} | null;
|
|
40217
40664
|
lastMessage: string | null;
|
|
@@ -40274,6 +40721,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40274
40721
|
} | null | undefined;
|
|
40275
40722
|
} | null | undefined;
|
|
40276
40723
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40724
|
+
lastTimelineAt?: string | null | undefined;
|
|
40277
40725
|
pendingPlanReview?: boolean | undefined;
|
|
40278
40726
|
} | null;
|
|
40279
40727
|
lastMessage: string | null;
|
|
@@ -40339,6 +40787,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40339
40787
|
} | null | undefined;
|
|
40340
40788
|
} | null | undefined;
|
|
40341
40789
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40790
|
+
lastTimelineAt?: string | null | undefined;
|
|
40342
40791
|
pendingPlanReview?: boolean | undefined;
|
|
40343
40792
|
} | null;
|
|
40344
40793
|
lastMessage: string | null;
|
|
@@ -40404,6 +40853,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40404
40853
|
} | null | undefined;
|
|
40405
40854
|
} | null | undefined;
|
|
40406
40855
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
40856
|
+
lastTimelineAt?: string | null | undefined;
|
|
40407
40857
|
pendingPlanReview?: boolean | undefined;
|
|
40408
40858
|
} | null;
|
|
40409
40859
|
lastMessage: string | null;
|
|
@@ -46216,6 +46666,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46216
46666
|
} | null | undefined;
|
|
46217
46667
|
} | null | undefined;
|
|
46218
46668
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
46669
|
+
lastTimelineAt?: string | null | undefined;
|
|
46219
46670
|
pendingPlanReview?: boolean | undefined;
|
|
46220
46671
|
};
|
|
46221
46672
|
project: {
|
|
@@ -46368,6 +46819,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46368
46819
|
} | null | undefined;
|
|
46369
46820
|
} | null | undefined;
|
|
46370
46821
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
46822
|
+
lastTimelineAt?: string | null | undefined;
|
|
46371
46823
|
pendingPlanReview?: boolean | undefined;
|
|
46372
46824
|
};
|
|
46373
46825
|
};
|
|
@@ -46430,6 +46882,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46430
46882
|
} | null | undefined;
|
|
46431
46883
|
} | null | undefined;
|
|
46432
46884
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
46885
|
+
lastTimelineAt?: string | null | undefined;
|
|
46433
46886
|
pendingPlanReview?: boolean | undefined;
|
|
46434
46887
|
};
|
|
46435
46888
|
project: {
|
|
@@ -46526,6 +46979,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46526
46979
|
} | null | undefined;
|
|
46527
46980
|
} | null | undefined;
|
|
46528
46981
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
46982
|
+
lastTimelineAt?: string | null | undefined;
|
|
46529
46983
|
pendingPlanReview?: boolean | undefined;
|
|
46530
46984
|
} | null;
|
|
46531
46985
|
requestId: string;
|
|
@@ -46627,6 +47081,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46627
47081
|
} | null | undefined;
|
|
46628
47082
|
} | null | undefined;
|
|
46629
47083
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
47084
|
+
lastTimelineAt?: string | null | undefined;
|
|
46630
47085
|
pendingPlanReview?: boolean | undefined;
|
|
46631
47086
|
} | null | undefined;
|
|
46632
47087
|
};
|
|
@@ -46731,6 +47186,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46731
47186
|
};
|
|
46732
47187
|
}[];
|
|
46733
47188
|
};
|
|
47189
|
+
} | {
|
|
47190
|
+
type: "fetch_workspace_read_states_response";
|
|
47191
|
+
payload: {
|
|
47192
|
+
entries: {
|
|
47193
|
+
cwd: string;
|
|
47194
|
+
lastReadAt: string;
|
|
47195
|
+
}[];
|
|
47196
|
+
requestId: string;
|
|
47197
|
+
};
|
|
47198
|
+
} | {
|
|
47199
|
+
type: "workspace_read_state_updated";
|
|
47200
|
+
payload: {
|
|
47201
|
+
cwd: string;
|
|
47202
|
+
lastReadAt: string;
|
|
47203
|
+
};
|
|
46734
47204
|
} | {
|
|
46735
47205
|
type: "fetch_provider_thread_timeline_response";
|
|
46736
47206
|
payload: {
|
|
@@ -46862,6 +47332,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46862
47332
|
} | null | undefined;
|
|
46863
47333
|
} | null | undefined;
|
|
46864
47334
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
47335
|
+
lastTimelineAt?: string | null | undefined;
|
|
46865
47336
|
pendingPlanReview?: boolean | undefined;
|
|
46866
47337
|
} | null;
|
|
46867
47338
|
lastMessage: string | null;
|
|
@@ -47982,6 +48453,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
47982
48453
|
} | null | undefined;
|
|
47983
48454
|
} | null | undefined;
|
|
47984
48455
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
48456
|
+
lastTimelineAt?: string | null | undefined;
|
|
47985
48457
|
pendingPlanReview?: boolean | undefined;
|
|
47986
48458
|
};
|
|
47987
48459
|
project: {
|
|
@@ -48134,6 +48606,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48134
48606
|
} | null | undefined;
|
|
48135
48607
|
} | null | undefined;
|
|
48136
48608
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
48609
|
+
lastTimelineAt?: string | null | undefined;
|
|
48137
48610
|
pendingPlanReview?: boolean | undefined;
|
|
48138
48611
|
};
|
|
48139
48612
|
};
|
|
@@ -48196,6 +48669,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48196
48669
|
} | null | undefined;
|
|
48197
48670
|
} | null | undefined;
|
|
48198
48671
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
48672
|
+
lastTimelineAt?: string | null | undefined;
|
|
48199
48673
|
pendingPlanReview?: boolean | undefined;
|
|
48200
48674
|
};
|
|
48201
48675
|
project: {
|
|
@@ -48292,6 +48766,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48292
48766
|
} | null | undefined;
|
|
48293
48767
|
} | null | undefined;
|
|
48294
48768
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
48769
|
+
lastTimelineAt?: string | null | undefined;
|
|
48295
48770
|
pendingPlanReview?: boolean | undefined;
|
|
48296
48771
|
} | null;
|
|
48297
48772
|
requestId: string;
|
|
@@ -48393,6 +48868,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48393
48868
|
} | null | undefined;
|
|
48394
48869
|
} | null | undefined;
|
|
48395
48870
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
48871
|
+
lastTimelineAt?: string | null | undefined;
|
|
48396
48872
|
pendingPlanReview?: boolean | undefined;
|
|
48397
48873
|
} | null | undefined;
|
|
48398
48874
|
};
|
|
@@ -48497,6 +48973,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48497
48973
|
};
|
|
48498
48974
|
}[];
|
|
48499
48975
|
};
|
|
48976
|
+
} | {
|
|
48977
|
+
type: "fetch_workspace_read_states_response";
|
|
48978
|
+
payload: {
|
|
48979
|
+
entries: {
|
|
48980
|
+
cwd: string;
|
|
48981
|
+
lastReadAt: string;
|
|
48982
|
+
}[];
|
|
48983
|
+
requestId: string;
|
|
48984
|
+
};
|
|
48985
|
+
} | {
|
|
48986
|
+
type: "workspace_read_state_updated";
|
|
48987
|
+
payload: {
|
|
48988
|
+
cwd: string;
|
|
48989
|
+
lastReadAt: string;
|
|
48990
|
+
};
|
|
48500
48991
|
} | {
|
|
48501
48992
|
type: "fetch_provider_thread_timeline_response";
|
|
48502
48993
|
payload: {
|
|
@@ -48628,6 +49119,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48628
49119
|
} | null | undefined;
|
|
48629
49120
|
} | null | undefined;
|
|
48630
49121
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
49122
|
+
lastTimelineAt?: string | null | undefined;
|
|
48631
49123
|
pendingPlanReview?: boolean | undefined;
|
|
48632
49124
|
} | null;
|
|
48633
49125
|
lastMessage: string | null;
|
|
@@ -51201,6 +51693,27 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
51201
51693
|
}, {
|
|
51202
51694
|
agentId: string | string[];
|
|
51203
51695
|
type: "clear_agent_attention";
|
|
51696
|
+
}>, z.ZodObject<{
|
|
51697
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_request">;
|
|
51698
|
+
requestId: z.ZodString;
|
|
51699
|
+
}, "strip", z.ZodTypeAny, {
|
|
51700
|
+
type: "fetch_workspace_read_states_request";
|
|
51701
|
+
requestId: string;
|
|
51702
|
+
}, {
|
|
51703
|
+
type: "fetch_workspace_read_states_request";
|
|
51704
|
+
requestId: string;
|
|
51705
|
+
}>, z.ZodObject<{
|
|
51706
|
+
type: z.ZodLiteral<"mark_workspace_read">;
|
|
51707
|
+
cwd: z.ZodString;
|
|
51708
|
+
lastReadAt: z.ZodString;
|
|
51709
|
+
}, "strip", z.ZodTypeAny, {
|
|
51710
|
+
type: "mark_workspace_read";
|
|
51711
|
+
cwd: string;
|
|
51712
|
+
lastReadAt: string;
|
|
51713
|
+
}, {
|
|
51714
|
+
type: "mark_workspace_read";
|
|
51715
|
+
cwd: string;
|
|
51716
|
+
lastReadAt: string;
|
|
51204
51717
|
}>, z.ZodObject<{
|
|
51205
51718
|
type: z.ZodLiteral<"client_heartbeat">;
|
|
51206
51719
|
deviceType: z.ZodEnum<["web", "mobile"]>;
|
|
@@ -51993,6 +52506,13 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
51993
52506
|
} | {
|
|
51994
52507
|
agentId: string | string[];
|
|
51995
52508
|
type: "clear_agent_attention";
|
|
52509
|
+
} | {
|
|
52510
|
+
type: "fetch_workspace_read_states_request";
|
|
52511
|
+
requestId: string;
|
|
52512
|
+
} | {
|
|
52513
|
+
type: "mark_workspace_read";
|
|
52514
|
+
cwd: string;
|
|
52515
|
+
lastReadAt: string;
|
|
51996
52516
|
} | {
|
|
51997
52517
|
type: "client_heartbeat";
|
|
51998
52518
|
lastActivityAt: string;
|
|
@@ -52534,6 +53054,13 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
52534
53054
|
} | {
|
|
52535
53055
|
agentId: string | string[];
|
|
52536
53056
|
type: "clear_agent_attention";
|
|
53057
|
+
} | {
|
|
53058
|
+
type: "fetch_workspace_read_states_request";
|
|
53059
|
+
requestId: string;
|
|
53060
|
+
} | {
|
|
53061
|
+
type: "mark_workspace_read";
|
|
53062
|
+
cwd: string;
|
|
53063
|
+
lastReadAt: string;
|
|
52537
53064
|
} | {
|
|
52538
53065
|
type: "client_heartbeat";
|
|
52539
53066
|
lastActivityAt: string;
|
|
@@ -53050,6 +53577,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53050
53577
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
53051
53578
|
createdAt: z.ZodString;
|
|
53052
53579
|
updatedAt: z.ZodString;
|
|
53580
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
53053
53581
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
53054
53582
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
53055
53583
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -53231,6 +53759,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53231
53759
|
} | null | undefined;
|
|
53232
53760
|
} | null | undefined;
|
|
53233
53761
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
53762
|
+
lastTimelineAt?: string | null | undefined;
|
|
53234
53763
|
pendingPlanReview?: boolean | undefined;
|
|
53235
53764
|
}, {
|
|
53236
53765
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -53287,6 +53816,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53287
53816
|
} | null | undefined;
|
|
53288
53817
|
} | null | undefined;
|
|
53289
53818
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
53819
|
+
lastTimelineAt?: string | null | undefined;
|
|
53290
53820
|
pendingPlanReview?: boolean | undefined;
|
|
53291
53821
|
}>;
|
|
53292
53822
|
project: z.ZodObject<{
|
|
@@ -53464,6 +53994,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53464
53994
|
} | null | undefined;
|
|
53465
53995
|
} | null | undefined;
|
|
53466
53996
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
53997
|
+
lastTimelineAt?: string | null | undefined;
|
|
53467
53998
|
pendingPlanReview?: boolean | undefined;
|
|
53468
53999
|
};
|
|
53469
54000
|
project: {
|
|
@@ -53549,6 +54080,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53549
54080
|
} | null | undefined;
|
|
53550
54081
|
} | null | undefined;
|
|
53551
54082
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
54083
|
+
lastTimelineAt?: string | null | undefined;
|
|
53552
54084
|
pendingPlanReview?: boolean | undefined;
|
|
53553
54085
|
};
|
|
53554
54086
|
project: {
|
|
@@ -53646,6 +54178,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53646
54178
|
} | null | undefined;
|
|
53647
54179
|
} | null | undefined;
|
|
53648
54180
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
54181
|
+
lastTimelineAt?: string | null | undefined;
|
|
53649
54182
|
pendingPlanReview?: boolean | undefined;
|
|
53650
54183
|
};
|
|
53651
54184
|
project: {
|
|
@@ -53737,6 +54270,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53737
54270
|
} | null | undefined;
|
|
53738
54271
|
} | null | undefined;
|
|
53739
54272
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
54273
|
+
lastTimelineAt?: string | null | undefined;
|
|
53740
54274
|
pendingPlanReview?: boolean | undefined;
|
|
53741
54275
|
};
|
|
53742
54276
|
project: {
|
|
@@ -54212,6 +54746,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54212
54746
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54213
54747
|
createdAt: z.ZodString;
|
|
54214
54748
|
updatedAt: z.ZodString;
|
|
54749
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54215
54750
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
54216
54751
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
54217
54752
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -54393,6 +54928,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54393
54928
|
} | null | undefined;
|
|
54394
54929
|
} | null | undefined;
|
|
54395
54930
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
54931
|
+
lastTimelineAt?: string | null | undefined;
|
|
54396
54932
|
pendingPlanReview?: boolean | undefined;
|
|
54397
54933
|
}, {
|
|
54398
54934
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -54449,6 +54985,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54449
54985
|
} | null | undefined;
|
|
54450
54986
|
} | null | undefined;
|
|
54451
54987
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
54988
|
+
lastTimelineAt?: string | null | undefined;
|
|
54452
54989
|
pendingPlanReview?: boolean | undefined;
|
|
54453
54990
|
}>;
|
|
54454
54991
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -54509,6 +55046,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54509
55046
|
} | null | undefined;
|
|
54510
55047
|
} | null | undefined;
|
|
54511
55048
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55049
|
+
lastTimelineAt?: string | null | undefined;
|
|
54512
55050
|
pendingPlanReview?: boolean | undefined;
|
|
54513
55051
|
};
|
|
54514
55052
|
}, {
|
|
@@ -54569,6 +55107,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54569
55107
|
} | null | undefined;
|
|
54570
55108
|
} | null | undefined;
|
|
54571
55109
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55110
|
+
lastTimelineAt?: string | null | undefined;
|
|
54572
55111
|
pendingPlanReview?: boolean | undefined;
|
|
54573
55112
|
};
|
|
54574
55113
|
}>;
|
|
@@ -54632,6 +55171,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54632
55171
|
} | null | undefined;
|
|
54633
55172
|
} | null | undefined;
|
|
54634
55173
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55174
|
+
lastTimelineAt?: string | null | undefined;
|
|
54635
55175
|
pendingPlanReview?: boolean | undefined;
|
|
54636
55176
|
};
|
|
54637
55177
|
};
|
|
@@ -54695,6 +55235,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54695
55235
|
} | null | undefined;
|
|
54696
55236
|
} | null | undefined;
|
|
54697
55237
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55238
|
+
lastTimelineAt?: string | null | undefined;
|
|
54698
55239
|
pendingPlanReview?: boolean | undefined;
|
|
54699
55240
|
};
|
|
54700
55241
|
};
|
|
@@ -54714,6 +55255,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54714
55255
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54715
55256
|
createdAt: z.ZodString;
|
|
54716
55257
|
updatedAt: z.ZodString;
|
|
55258
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54717
55259
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
54718
55260
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
54719
55261
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -54895,6 +55437,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54895
55437
|
} | null | undefined;
|
|
54896
55438
|
} | null | undefined;
|
|
54897
55439
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55440
|
+
lastTimelineAt?: string | null | undefined;
|
|
54898
55441
|
pendingPlanReview?: boolean | undefined;
|
|
54899
55442
|
}, {
|
|
54900
55443
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -54951,6 +55494,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
54951
55494
|
} | null | undefined;
|
|
54952
55495
|
} | null | undefined;
|
|
54953
55496
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55497
|
+
lastTimelineAt?: string | null | undefined;
|
|
54954
55498
|
pendingPlanReview?: boolean | undefined;
|
|
54955
55499
|
}>;
|
|
54956
55500
|
project: z.ZodObject<{
|
|
@@ -55127,6 +55671,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55127
55671
|
} | null | undefined;
|
|
55128
55672
|
} | null | undefined;
|
|
55129
55673
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55674
|
+
lastTimelineAt?: string | null | undefined;
|
|
55130
55675
|
pendingPlanReview?: boolean | undefined;
|
|
55131
55676
|
};
|
|
55132
55677
|
project: {
|
|
@@ -55211,6 +55756,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55211
55756
|
} | null | undefined;
|
|
55212
55757
|
} | null | undefined;
|
|
55213
55758
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55759
|
+
lastTimelineAt?: string | null | undefined;
|
|
55214
55760
|
pendingPlanReview?: boolean | undefined;
|
|
55215
55761
|
};
|
|
55216
55762
|
project: {
|
|
@@ -55310,6 +55856,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55310
55856
|
} | null | undefined;
|
|
55311
55857
|
} | null | undefined;
|
|
55312
55858
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55859
|
+
lastTimelineAt?: string | null | undefined;
|
|
55313
55860
|
pendingPlanReview?: boolean | undefined;
|
|
55314
55861
|
};
|
|
55315
55862
|
project: {
|
|
@@ -55403,6 +55950,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55403
55950
|
} | null | undefined;
|
|
55404
55951
|
} | null | undefined;
|
|
55405
55952
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
55953
|
+
lastTimelineAt?: string | null | undefined;
|
|
55406
55954
|
pendingPlanReview?: boolean | undefined;
|
|
55407
55955
|
};
|
|
55408
55956
|
project: {
|
|
@@ -55499,6 +56047,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55499
56047
|
} | null | undefined;
|
|
55500
56048
|
} | null | undefined;
|
|
55501
56049
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56050
|
+
lastTimelineAt?: string | null | undefined;
|
|
55502
56051
|
pendingPlanReview?: boolean | undefined;
|
|
55503
56052
|
};
|
|
55504
56053
|
project: {
|
|
@@ -55595,6 +56144,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55595
56144
|
} | null | undefined;
|
|
55596
56145
|
} | null | undefined;
|
|
55597
56146
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56147
|
+
lastTimelineAt?: string | null | undefined;
|
|
55598
56148
|
pendingPlanReview?: boolean | undefined;
|
|
55599
56149
|
};
|
|
55600
56150
|
project: {
|
|
@@ -55646,6 +56196,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55646
56196
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
55647
56197
|
createdAt: z.ZodString;
|
|
55648
56198
|
updatedAt: z.ZodString;
|
|
56199
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
55649
56200
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
55650
56201
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
55651
56202
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -55827,6 +56378,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55827
56378
|
} | null | undefined;
|
|
55828
56379
|
} | null | undefined;
|
|
55829
56380
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56381
|
+
lastTimelineAt?: string | null | undefined;
|
|
55830
56382
|
pendingPlanReview?: boolean | undefined;
|
|
55831
56383
|
}, {
|
|
55832
56384
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -55883,6 +56435,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55883
56435
|
} | null | undefined;
|
|
55884
56436
|
} | null | undefined;
|
|
55885
56437
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56438
|
+
lastTimelineAt?: string | null | undefined;
|
|
55886
56439
|
pendingPlanReview?: boolean | undefined;
|
|
55887
56440
|
}>>;
|
|
55888
56441
|
project: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -56061,6 +56614,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56061
56614
|
} | null | undefined;
|
|
56062
56615
|
} | null | undefined;
|
|
56063
56616
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56617
|
+
lastTimelineAt?: string | null | undefined;
|
|
56064
56618
|
pendingPlanReview?: boolean | undefined;
|
|
56065
56619
|
} | null;
|
|
56066
56620
|
requestId: string;
|
|
@@ -56147,6 +56701,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56147
56701
|
} | null | undefined;
|
|
56148
56702
|
} | null | undefined;
|
|
56149
56703
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56704
|
+
lastTimelineAt?: string | null | undefined;
|
|
56150
56705
|
pendingPlanReview?: boolean | undefined;
|
|
56151
56706
|
} | null;
|
|
56152
56707
|
requestId: string;
|
|
@@ -56236,6 +56791,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56236
56791
|
} | null | undefined;
|
|
56237
56792
|
} | null | undefined;
|
|
56238
56793
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56794
|
+
lastTimelineAt?: string | null | undefined;
|
|
56239
56795
|
pendingPlanReview?: boolean | undefined;
|
|
56240
56796
|
} | null;
|
|
56241
56797
|
requestId: string;
|
|
@@ -56325,6 +56881,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56325
56881
|
} | null | undefined;
|
|
56326
56882
|
} | null | undefined;
|
|
56327
56883
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
56884
|
+
lastTimelineAt?: string | null | undefined;
|
|
56328
56885
|
pendingPlanReview?: boolean | undefined;
|
|
56329
56886
|
} | null;
|
|
56330
56887
|
requestId: string;
|
|
@@ -56406,6 +56963,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56406
56963
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
56407
56964
|
createdAt: z.ZodString;
|
|
56408
56965
|
updatedAt: z.ZodString;
|
|
56966
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
56409
56967
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
56410
56968
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
56411
56969
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -56587,6 +57145,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56587
57145
|
} | null | undefined;
|
|
56588
57146
|
} | null | undefined;
|
|
56589
57147
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57148
|
+
lastTimelineAt?: string | null | undefined;
|
|
56590
57149
|
pendingPlanReview?: boolean | undefined;
|
|
56591
57150
|
}, {
|
|
56592
57151
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -56643,6 +57202,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56643
57202
|
} | null | undefined;
|
|
56644
57203
|
} | null | undefined;
|
|
56645
57204
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57205
|
+
lastTimelineAt?: string | null | undefined;
|
|
56646
57206
|
pendingPlanReview?: boolean | undefined;
|
|
56647
57207
|
}>>>;
|
|
56648
57208
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -56707,6 +57267,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56707
57267
|
} | null | undefined;
|
|
56708
57268
|
} | null | undefined;
|
|
56709
57269
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57270
|
+
lastTimelineAt?: string | null | undefined;
|
|
56710
57271
|
pendingPlanReview?: boolean | undefined;
|
|
56711
57272
|
} | null | undefined;
|
|
56712
57273
|
}, {
|
|
@@ -56770,6 +57331,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56770
57331
|
} | null | undefined;
|
|
56771
57332
|
} | null | undefined;
|
|
56772
57333
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57334
|
+
lastTimelineAt?: string | null | undefined;
|
|
56773
57335
|
pendingPlanReview?: boolean | undefined;
|
|
56774
57336
|
} | null | undefined;
|
|
56775
57337
|
}>;
|
|
@@ -56836,6 +57398,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56836
57398
|
} | null | undefined;
|
|
56837
57399
|
} | null | undefined;
|
|
56838
57400
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57401
|
+
lastTimelineAt?: string | null | undefined;
|
|
56839
57402
|
pendingPlanReview?: boolean | undefined;
|
|
56840
57403
|
} | null | undefined;
|
|
56841
57404
|
};
|
|
@@ -56902,6 +57465,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56902
57465
|
} | null | undefined;
|
|
56903
57466
|
} | null | undefined;
|
|
56904
57467
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
57468
|
+
lastTimelineAt?: string | null | undefined;
|
|
56905
57469
|
pendingPlanReview?: boolean | undefined;
|
|
56906
57470
|
} | null | undefined;
|
|
56907
57471
|
};
|
|
@@ -57830,6 +58394,75 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57830
58394
|
};
|
|
57831
58395
|
}[];
|
|
57832
58396
|
};
|
|
58397
|
+
}>, z.ZodObject<{
|
|
58398
|
+
type: z.ZodLiteral<"fetch_workspace_read_states_response">;
|
|
58399
|
+
payload: z.ZodObject<{
|
|
58400
|
+
requestId: z.ZodString;
|
|
58401
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
58402
|
+
cwd: z.ZodString;
|
|
58403
|
+
lastReadAt: z.ZodString;
|
|
58404
|
+
}, "strip", z.ZodTypeAny, {
|
|
58405
|
+
cwd: string;
|
|
58406
|
+
lastReadAt: string;
|
|
58407
|
+
}, {
|
|
58408
|
+
cwd: string;
|
|
58409
|
+
lastReadAt: string;
|
|
58410
|
+
}>, "many">;
|
|
58411
|
+
}, "strip", z.ZodTypeAny, {
|
|
58412
|
+
entries: {
|
|
58413
|
+
cwd: string;
|
|
58414
|
+
lastReadAt: string;
|
|
58415
|
+
}[];
|
|
58416
|
+
requestId: string;
|
|
58417
|
+
}, {
|
|
58418
|
+
entries: {
|
|
58419
|
+
cwd: string;
|
|
58420
|
+
lastReadAt: string;
|
|
58421
|
+
}[];
|
|
58422
|
+
requestId: string;
|
|
58423
|
+
}>;
|
|
58424
|
+
}, "strip", z.ZodTypeAny, {
|
|
58425
|
+
type: "fetch_workspace_read_states_response";
|
|
58426
|
+
payload: {
|
|
58427
|
+
entries: {
|
|
58428
|
+
cwd: string;
|
|
58429
|
+
lastReadAt: string;
|
|
58430
|
+
}[];
|
|
58431
|
+
requestId: string;
|
|
58432
|
+
};
|
|
58433
|
+
}, {
|
|
58434
|
+
type: "fetch_workspace_read_states_response";
|
|
58435
|
+
payload: {
|
|
58436
|
+
entries: {
|
|
58437
|
+
cwd: string;
|
|
58438
|
+
lastReadAt: string;
|
|
58439
|
+
}[];
|
|
58440
|
+
requestId: string;
|
|
58441
|
+
};
|
|
58442
|
+
}>, z.ZodObject<{
|
|
58443
|
+
type: z.ZodLiteral<"workspace_read_state_updated">;
|
|
58444
|
+
payload: z.ZodObject<{
|
|
58445
|
+
cwd: z.ZodString;
|
|
58446
|
+
lastReadAt: z.ZodString;
|
|
58447
|
+
}, "strip", z.ZodTypeAny, {
|
|
58448
|
+
cwd: string;
|
|
58449
|
+
lastReadAt: string;
|
|
58450
|
+
}, {
|
|
58451
|
+
cwd: string;
|
|
58452
|
+
lastReadAt: string;
|
|
58453
|
+
}>;
|
|
58454
|
+
}, "strip", z.ZodTypeAny, {
|
|
58455
|
+
type: "workspace_read_state_updated";
|
|
58456
|
+
payload: {
|
|
58457
|
+
cwd: string;
|
|
58458
|
+
lastReadAt: string;
|
|
58459
|
+
};
|
|
58460
|
+
}, {
|
|
58461
|
+
type: "workspace_read_state_updated";
|
|
58462
|
+
payload: {
|
|
58463
|
+
cwd: string;
|
|
58464
|
+
lastReadAt: string;
|
|
58465
|
+
};
|
|
57833
58466
|
}>, z.ZodObject<{
|
|
57834
58467
|
type: z.ZodLiteral<"fetch_provider_thread_timeline_response">;
|
|
57835
58468
|
payload: z.ZodObject<{
|
|
@@ -58423,6 +59056,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58423
59056
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58424
59057
|
createdAt: z.ZodString;
|
|
58425
59058
|
updatedAt: z.ZodString;
|
|
59059
|
+
lastTimelineAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58426
59060
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
58427
59061
|
status: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
58428
59062
|
capabilities: z.ZodType<AgentCapabilityFlags, z.ZodTypeDef, AgentCapabilityFlags>;
|
|
@@ -58604,6 +59238,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58604
59238
|
} | null | undefined;
|
|
58605
59239
|
} | null | undefined;
|
|
58606
59240
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59241
|
+
lastTimelineAt?: string | null | undefined;
|
|
58607
59242
|
pendingPlanReview?: boolean | undefined;
|
|
58608
59243
|
}, {
|
|
58609
59244
|
status: "initializing" | "idle" | "running" | "error" | "closed";
|
|
@@ -58660,6 +59295,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58660
59295
|
} | null | undefined;
|
|
58661
59296
|
} | null | undefined;
|
|
58662
59297
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59298
|
+
lastTimelineAt?: string | null | undefined;
|
|
58663
59299
|
pendingPlanReview?: boolean | undefined;
|
|
58664
59300
|
}>>;
|
|
58665
59301
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -58723,6 +59359,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58723
59359
|
} | null | undefined;
|
|
58724
59360
|
} | null | undefined;
|
|
58725
59361
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59362
|
+
lastTimelineAt?: string | null | undefined;
|
|
58726
59363
|
pendingPlanReview?: boolean | undefined;
|
|
58727
59364
|
} | null;
|
|
58728
59365
|
lastMessage: string | null;
|
|
@@ -58785,6 +59422,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58785
59422
|
} | null | undefined;
|
|
58786
59423
|
} | null | undefined;
|
|
58787
59424
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59425
|
+
lastTimelineAt?: string | null | undefined;
|
|
58788
59426
|
pendingPlanReview?: boolean | undefined;
|
|
58789
59427
|
} | null;
|
|
58790
59428
|
lastMessage: string | null;
|
|
@@ -58850,6 +59488,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58850
59488
|
} | null | undefined;
|
|
58851
59489
|
} | null | undefined;
|
|
58852
59490
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59491
|
+
lastTimelineAt?: string | null | undefined;
|
|
58853
59492
|
pendingPlanReview?: boolean | undefined;
|
|
58854
59493
|
} | null;
|
|
58855
59494
|
lastMessage: string | null;
|
|
@@ -58915,6 +59554,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58915
59554
|
} | null | undefined;
|
|
58916
59555
|
} | null | undefined;
|
|
58917
59556
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
59557
|
+
lastTimelineAt?: string | null | undefined;
|
|
58918
59558
|
pendingPlanReview?: boolean | undefined;
|
|
58919
59559
|
} | null;
|
|
58920
59560
|
lastMessage: string | null;
|
|
@@ -64727,6 +65367,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64727
65367
|
} | null | undefined;
|
|
64728
65368
|
} | null | undefined;
|
|
64729
65369
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
65370
|
+
lastTimelineAt?: string | null | undefined;
|
|
64730
65371
|
pendingPlanReview?: boolean | undefined;
|
|
64731
65372
|
};
|
|
64732
65373
|
project: {
|
|
@@ -64879,6 +65520,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64879
65520
|
} | null | undefined;
|
|
64880
65521
|
} | null | undefined;
|
|
64881
65522
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
65523
|
+
lastTimelineAt?: string | null | undefined;
|
|
64882
65524
|
pendingPlanReview?: boolean | undefined;
|
|
64883
65525
|
};
|
|
64884
65526
|
};
|
|
@@ -64941,6 +65583,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64941
65583
|
} | null | undefined;
|
|
64942
65584
|
} | null | undefined;
|
|
64943
65585
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
65586
|
+
lastTimelineAt?: string | null | undefined;
|
|
64944
65587
|
pendingPlanReview?: boolean | undefined;
|
|
64945
65588
|
};
|
|
64946
65589
|
project: {
|
|
@@ -65037,6 +65680,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
65037
65680
|
} | null | undefined;
|
|
65038
65681
|
} | null | undefined;
|
|
65039
65682
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
65683
|
+
lastTimelineAt?: string | null | undefined;
|
|
65040
65684
|
pendingPlanReview?: boolean | undefined;
|
|
65041
65685
|
} | null;
|
|
65042
65686
|
requestId: string;
|
|
@@ -65138,6 +65782,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
65138
65782
|
} | null | undefined;
|
|
65139
65783
|
} | null | undefined;
|
|
65140
65784
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
65785
|
+
lastTimelineAt?: string | null | undefined;
|
|
65141
65786
|
pendingPlanReview?: boolean | undefined;
|
|
65142
65787
|
} | null | undefined;
|
|
65143
65788
|
};
|
|
@@ -65242,6 +65887,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
65242
65887
|
};
|
|
65243
65888
|
}[];
|
|
65244
65889
|
};
|
|
65890
|
+
} | {
|
|
65891
|
+
type: "fetch_workspace_read_states_response";
|
|
65892
|
+
payload: {
|
|
65893
|
+
entries: {
|
|
65894
|
+
cwd: string;
|
|
65895
|
+
lastReadAt: string;
|
|
65896
|
+
}[];
|
|
65897
|
+
requestId: string;
|
|
65898
|
+
};
|
|
65899
|
+
} | {
|
|
65900
|
+
type: "workspace_read_state_updated";
|
|
65901
|
+
payload: {
|
|
65902
|
+
cwd: string;
|
|
65903
|
+
lastReadAt: string;
|
|
65904
|
+
};
|
|
65245
65905
|
} | {
|
|
65246
65906
|
type: "fetch_provider_thread_timeline_response";
|
|
65247
65907
|
payload: {
|
|
@@ -65373,6 +66033,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
65373
66033
|
} | null | undefined;
|
|
65374
66034
|
} | null | undefined;
|
|
65375
66035
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
66036
|
+
lastTimelineAt?: string | null | undefined;
|
|
65376
66037
|
pendingPlanReview?: boolean | undefined;
|
|
65377
66038
|
} | null;
|
|
65378
66039
|
lastMessage: string | null;
|
|
@@ -66493,6 +67154,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
66493
67154
|
} | null | undefined;
|
|
66494
67155
|
} | null | undefined;
|
|
66495
67156
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67157
|
+
lastTimelineAt?: string | null | undefined;
|
|
66496
67158
|
pendingPlanReview?: boolean | undefined;
|
|
66497
67159
|
};
|
|
66498
67160
|
project: {
|
|
@@ -66645,6 +67307,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
66645
67307
|
} | null | undefined;
|
|
66646
67308
|
} | null | undefined;
|
|
66647
67309
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67310
|
+
lastTimelineAt?: string | null | undefined;
|
|
66648
67311
|
pendingPlanReview?: boolean | undefined;
|
|
66649
67312
|
};
|
|
66650
67313
|
};
|
|
@@ -66707,6 +67370,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
66707
67370
|
} | null | undefined;
|
|
66708
67371
|
} | null | undefined;
|
|
66709
67372
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67373
|
+
lastTimelineAt?: string | null | undefined;
|
|
66710
67374
|
pendingPlanReview?: boolean | undefined;
|
|
66711
67375
|
};
|
|
66712
67376
|
project: {
|
|
@@ -66803,6 +67467,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
66803
67467
|
} | null | undefined;
|
|
66804
67468
|
} | null | undefined;
|
|
66805
67469
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67470
|
+
lastTimelineAt?: string | null | undefined;
|
|
66806
67471
|
pendingPlanReview?: boolean | undefined;
|
|
66807
67472
|
} | null;
|
|
66808
67473
|
requestId: string;
|
|
@@ -66904,6 +67569,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
66904
67569
|
} | null | undefined;
|
|
66905
67570
|
} | null | undefined;
|
|
66906
67571
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67572
|
+
lastTimelineAt?: string | null | undefined;
|
|
66907
67573
|
pendingPlanReview?: boolean | undefined;
|
|
66908
67574
|
} | null | undefined;
|
|
66909
67575
|
};
|
|
@@ -67008,6 +67674,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
67008
67674
|
};
|
|
67009
67675
|
}[];
|
|
67010
67676
|
};
|
|
67677
|
+
} | {
|
|
67678
|
+
type: "fetch_workspace_read_states_response";
|
|
67679
|
+
payload: {
|
|
67680
|
+
entries: {
|
|
67681
|
+
cwd: string;
|
|
67682
|
+
lastReadAt: string;
|
|
67683
|
+
}[];
|
|
67684
|
+
requestId: string;
|
|
67685
|
+
};
|
|
67686
|
+
} | {
|
|
67687
|
+
type: "workspace_read_state_updated";
|
|
67688
|
+
payload: {
|
|
67689
|
+
cwd: string;
|
|
67690
|
+
lastReadAt: string;
|
|
67691
|
+
};
|
|
67011
67692
|
} | {
|
|
67012
67693
|
type: "fetch_provider_thread_timeline_response";
|
|
67013
67694
|
payload: {
|
|
@@ -67139,6 +67820,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
67139
67820
|
} | null | undefined;
|
|
67140
67821
|
} | null | undefined;
|
|
67141
67822
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
67823
|
+
lastTimelineAt?: string | null | undefined;
|
|
67142
67824
|
pendingPlanReview?: boolean | undefined;
|
|
67143
67825
|
} | null;
|
|
67144
67826
|
lastMessage: string | null;
|