@rudderhq/shared 0.7.11 → 0.7.13
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/agent-run.d.ts.map +1 -1
- package/dist/agent-run.js +20 -0
- package/dist/agent-run.js.map +1 -1
- package/dist/agent-run.test.js +1 -0
- package/dist/agent-run.test.js.map +1 -1
- package/dist/config-schema.d.ts +7 -7
- package/dist/constants.d.ts +5 -3
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +3 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/native-mode.d.ts +42 -0
- package/dist/native-mode.d.ts.map +1 -0
- package/dist/native-mode.js +86 -0
- package/dist/native-mode.js.map +1 -0
- package/dist/native-mode.test.d.ts +2 -0
- package/dist/native-mode.test.d.ts.map +1 -0
- package/dist/native-mode.test.js +39 -0
- package/dist/native-mode.test.js.map +1 -0
- package/dist/short-refs.d.ts +1 -1
- package/dist/short-refs.d.ts.map +1 -1
- package/dist/short-refs.js +6 -0
- package/dist/short-refs.js.map +1 -1
- package/dist/short-refs.test.js +14 -0
- package/dist/short-refs.test.js.map +1 -1
- package/dist/types/chat.d.ts +15 -4
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/goal.d.ts +17 -0
- package/dist/types/goal.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +42 -1
- package/dist/types/heartbeat.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/project.d.ts +2 -0
- package/dist/types/project.d.ts.map +1 -1
- package/dist/types/run-intelligence.d.ts +2 -0
- package/dist/types/run-intelligence.d.ts.map +1 -1
- package/dist/validators/agent-issue-creation.d.ts +2 -2
- package/dist/validators/automation.d.ts +16 -16
- package/dist/validators/calendar.d.ts +8 -8
- package/dist/validators/chat.d.ts +300 -300
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +1 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/index.d.ts +1 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/issue.d.ts +4 -4
- package/dist/validators/mcp.d.ts +4 -4
- package/dist/validators/project.d.ts +4 -4
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare const chatMessageRoleSchema: z.ZodEnum<["user", "assistant", "sys
|
|
|
6
6
|
export declare const chatMessageKindSchema: z.ZodEnum<["message", "ask_user", "issue_proposal", "operation_proposal", "system_event"]>;
|
|
7
7
|
export declare const chatMessageStatusSchema: z.ZodEnum<["streaming", "completed", "stopped", "failed", "interrupted"]>;
|
|
8
8
|
export declare const chatContextEntityTypeSchema: z.ZodEnum<["issue", "project", "agent", "goal"]>;
|
|
9
|
-
export declare const chatGenerationStatusSchema: z.ZodEnum<["starting", "active", "running", "tool_busy", "closing", "stop_requested", "stopping", "completed", "failed", "stopped", "aborted", "interrupted_unverified", "control_lost"]>;
|
|
9
|
+
export declare const chatGenerationStatusSchema: z.ZodEnum<["starting", "active", "running", "waiting_for_network", "tool_busy", "closing", "stop_requested", "stopping", "completed", "failed", "stopped", "aborted", "interrupted_unverified", "control_lost"]>;
|
|
10
10
|
export declare const chatGenerationControlStateSchema: z.ZodEnum<["unregistered", "ready", "stopping", "terminal", "control_lost"]>;
|
|
11
11
|
export declare const chatQueueDeliveryIntentSchema: z.ZodEnum<["queue", "steer"]>;
|
|
12
12
|
export declare const chatControlDispositionSchema: z.ZodEnum<["pending", "accepted_current", "acceptance_unknown", "reconciled_current", "continuation_pending", "waiting_safe_boundary", "running_next", "delivered", "stop_requested", "stopping", "stopped", "interrupted_unverified", "cancellation_unverified", "control_lost", "failed_actionable", "cancelled"]>;
|
|
@@ -41,11 +41,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
41
41
|
end: number;
|
|
42
42
|
id: string;
|
|
43
43
|
sourceMessageId: string;
|
|
44
|
+
prefix: string;
|
|
44
45
|
surface: "assistant_body";
|
|
45
46
|
selectedText: string;
|
|
46
47
|
sourceConversationId: string;
|
|
47
48
|
sourceHash: string;
|
|
48
|
-
prefix: string;
|
|
49
49
|
suffix: string;
|
|
50
50
|
attachmentIds: string[];
|
|
51
51
|
comment?: string | null | undefined;
|
|
@@ -54,11 +54,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
54
54
|
end: number;
|
|
55
55
|
id: string;
|
|
56
56
|
sourceMessageId: string;
|
|
57
|
+
prefix: string;
|
|
57
58
|
surface: "assistant_body";
|
|
58
59
|
selectedText: string;
|
|
59
60
|
sourceConversationId: string;
|
|
60
61
|
sourceHash: string;
|
|
61
|
-
prefix: string;
|
|
62
62
|
suffix: string;
|
|
63
63
|
comment?: unknown;
|
|
64
64
|
attachmentIds?: string[] | undefined;
|
|
@@ -87,11 +87,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
87
87
|
generationSeqEnd: number;
|
|
88
88
|
id: string;
|
|
89
89
|
sourceMessageId: string;
|
|
90
|
+
prefix: string;
|
|
90
91
|
surface: "process_transcript";
|
|
91
92
|
selectedText: string;
|
|
92
93
|
sourceConversationId: string;
|
|
93
94
|
sourceHash: string;
|
|
94
|
-
prefix: string;
|
|
95
95
|
suffix: string;
|
|
96
96
|
attachmentIds: string[];
|
|
97
97
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -104,11 +104,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
104
104
|
generationSeqEnd: number;
|
|
105
105
|
id: string;
|
|
106
106
|
sourceMessageId: string;
|
|
107
|
+
prefix: string;
|
|
107
108
|
surface: "process_transcript";
|
|
108
109
|
selectedText: string;
|
|
109
110
|
sourceConversationId: string;
|
|
110
111
|
sourceHash: string;
|
|
111
|
-
prefix: string;
|
|
112
112
|
suffix: string;
|
|
113
113
|
transcriptKind: "assistant" | "thinking";
|
|
114
114
|
comment?: unknown;
|
|
@@ -168,11 +168,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
168
168
|
start: number;
|
|
169
169
|
end: number;
|
|
170
170
|
id: string;
|
|
171
|
+
prefix: string;
|
|
171
172
|
surface: "workspace_file";
|
|
172
173
|
selectedText: string;
|
|
173
174
|
sourceConversationId: string;
|
|
174
175
|
sourceHash: string;
|
|
175
|
-
prefix: string;
|
|
176
176
|
suffix: string;
|
|
177
177
|
attachmentIds: string[];
|
|
178
178
|
sourceFilePath: string;
|
|
@@ -183,11 +183,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
183
183
|
start: number;
|
|
184
184
|
end: number;
|
|
185
185
|
id: string;
|
|
186
|
+
prefix: string;
|
|
186
187
|
surface: "workspace_file";
|
|
187
188
|
selectedText: string;
|
|
188
189
|
sourceConversationId: string;
|
|
189
190
|
sourceHash: string;
|
|
190
|
-
prefix: string;
|
|
191
191
|
suffix: string;
|
|
192
192
|
sourceFilePath: string;
|
|
193
193
|
sourceLibraryEntryId: string | null;
|
|
@@ -212,11 +212,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
212
212
|
start: number;
|
|
213
213
|
end: number;
|
|
214
214
|
id: string;
|
|
215
|
+
prefix: string;
|
|
215
216
|
surface: "local_file";
|
|
216
217
|
selectedText: string;
|
|
217
218
|
sourceConversationId: string;
|
|
218
219
|
sourceHash: string;
|
|
219
|
-
prefix: string;
|
|
220
220
|
suffix: string;
|
|
221
221
|
attachmentIds: string[];
|
|
222
222
|
sourceFilePath: string;
|
|
@@ -226,11 +226,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
226
226
|
start: number;
|
|
227
227
|
end: number;
|
|
228
228
|
id: string;
|
|
229
|
+
prefix: string;
|
|
229
230
|
surface: "local_file";
|
|
230
231
|
selectedText: string;
|
|
231
232
|
sourceConversationId: string;
|
|
232
233
|
sourceHash: string;
|
|
233
|
-
prefix: string;
|
|
234
234
|
suffix: string;
|
|
235
235
|
sourceFilePath: string;
|
|
236
236
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -241,11 +241,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
241
241
|
end: number;
|
|
242
242
|
id: string;
|
|
243
243
|
sourceMessageId: string;
|
|
244
|
+
prefix: string;
|
|
244
245
|
surface: "assistant_body";
|
|
245
246
|
selectedText: string;
|
|
246
247
|
sourceConversationId: string;
|
|
247
248
|
sourceHash: string;
|
|
248
|
-
prefix: string;
|
|
249
249
|
suffix: string;
|
|
250
250
|
attachmentIds: string[];
|
|
251
251
|
comment?: string | null | undefined;
|
|
@@ -257,11 +257,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
257
257
|
generationSeqEnd: number;
|
|
258
258
|
id: string;
|
|
259
259
|
sourceMessageId: string;
|
|
260
|
+
prefix: string;
|
|
260
261
|
surface: "process_transcript";
|
|
261
262
|
selectedText: string;
|
|
262
263
|
sourceConversationId: string;
|
|
263
264
|
sourceHash: string;
|
|
264
|
-
prefix: string;
|
|
265
265
|
suffix: string;
|
|
266
266
|
attachmentIds: string[];
|
|
267
267
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -282,11 +282,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
282
282
|
start: number;
|
|
283
283
|
end: number;
|
|
284
284
|
id: string;
|
|
285
|
+
prefix: string;
|
|
285
286
|
surface: "workspace_file";
|
|
286
287
|
selectedText: string;
|
|
287
288
|
sourceConversationId: string;
|
|
288
289
|
sourceHash: string;
|
|
289
|
-
prefix: string;
|
|
290
290
|
suffix: string;
|
|
291
291
|
attachmentIds: string[];
|
|
292
292
|
sourceFilePath: string;
|
|
@@ -297,11 +297,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
297
297
|
start: number;
|
|
298
298
|
end: number;
|
|
299
299
|
id: string;
|
|
300
|
+
prefix: string;
|
|
300
301
|
surface: "local_file";
|
|
301
302
|
selectedText: string;
|
|
302
303
|
sourceConversationId: string;
|
|
303
304
|
sourceHash: string;
|
|
304
|
-
prefix: string;
|
|
305
305
|
suffix: string;
|
|
306
306
|
attachmentIds: string[];
|
|
307
307
|
sourceFilePath: string;
|
|
@@ -312,11 +312,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
312
312
|
end: number;
|
|
313
313
|
id: string;
|
|
314
314
|
sourceMessageId: string;
|
|
315
|
+
prefix: string;
|
|
315
316
|
surface: "assistant_body";
|
|
316
317
|
selectedText: string;
|
|
317
318
|
sourceConversationId: string;
|
|
318
319
|
sourceHash: string;
|
|
319
|
-
prefix: string;
|
|
320
320
|
suffix: string;
|
|
321
321
|
comment?: unknown;
|
|
322
322
|
attachmentIds?: string[] | undefined;
|
|
@@ -328,11 +328,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
328
328
|
generationSeqEnd: number;
|
|
329
329
|
id: string;
|
|
330
330
|
sourceMessageId: string;
|
|
331
|
+
prefix: string;
|
|
331
332
|
surface: "process_transcript";
|
|
332
333
|
selectedText: string;
|
|
333
334
|
sourceConversationId: string;
|
|
334
335
|
sourceHash: string;
|
|
335
|
-
prefix: string;
|
|
336
336
|
suffix: string;
|
|
337
337
|
transcriptKind: "assistant" | "thinking";
|
|
338
338
|
comment?: unknown;
|
|
@@ -353,11 +353,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
353
353
|
start: number;
|
|
354
354
|
end: number;
|
|
355
355
|
id: string;
|
|
356
|
+
prefix: string;
|
|
356
357
|
surface: "workspace_file";
|
|
357
358
|
selectedText: string;
|
|
358
359
|
sourceConversationId: string;
|
|
359
360
|
sourceHash: string;
|
|
360
|
-
prefix: string;
|
|
361
361
|
suffix: string;
|
|
362
362
|
sourceFilePath: string;
|
|
363
363
|
sourceLibraryEntryId: string | null;
|
|
@@ -368,11 +368,11 @@ export declare const chatInlineAnnotationSchema: z.ZodEffects<z.ZodDiscriminated
|
|
|
368
368
|
start: number;
|
|
369
369
|
end: number;
|
|
370
370
|
id: string;
|
|
371
|
+
prefix: string;
|
|
371
372
|
surface: "local_file";
|
|
372
373
|
selectedText: string;
|
|
373
374
|
sourceConversationId: string;
|
|
374
375
|
sourceHash: string;
|
|
375
|
-
prefix: string;
|
|
376
376
|
suffix: string;
|
|
377
377
|
sourceFilePath: string;
|
|
378
378
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -399,11 +399,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
399
399
|
end: number;
|
|
400
400
|
id: string;
|
|
401
401
|
sourceMessageId: string;
|
|
402
|
+
prefix: string;
|
|
402
403
|
surface: "assistant_body";
|
|
403
404
|
selectedText: string;
|
|
404
405
|
sourceConversationId: string;
|
|
405
406
|
sourceHash: string;
|
|
406
|
-
prefix: string;
|
|
407
407
|
suffix: string;
|
|
408
408
|
attachmentIds: string[];
|
|
409
409
|
comment?: string | null | undefined;
|
|
@@ -413,11 +413,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
413
413
|
end: number;
|
|
414
414
|
id: string;
|
|
415
415
|
sourceMessageId: string;
|
|
416
|
+
prefix: string;
|
|
416
417
|
surface: "assistant_body";
|
|
417
418
|
selectedText: string;
|
|
418
419
|
sourceConversationId: string;
|
|
419
420
|
sourceHash: string;
|
|
420
|
-
prefix: string;
|
|
421
421
|
suffix: string;
|
|
422
422
|
comment?: unknown;
|
|
423
423
|
attachmentIds?: string[] | undefined;
|
|
@@ -449,11 +449,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
449
449
|
generationSeqEnd: number;
|
|
450
450
|
id: string;
|
|
451
451
|
sourceMessageId: string;
|
|
452
|
+
prefix: string;
|
|
452
453
|
surface: "process_transcript";
|
|
453
454
|
selectedText: string;
|
|
454
455
|
sourceConversationId: string;
|
|
455
456
|
sourceHash: string;
|
|
456
|
-
prefix: string;
|
|
457
457
|
suffix: string;
|
|
458
458
|
attachmentIds: string[];
|
|
459
459
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -467,11 +467,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
467
467
|
generationSeqEnd: number;
|
|
468
468
|
id: string;
|
|
469
469
|
sourceMessageId: string;
|
|
470
|
+
prefix: string;
|
|
470
471
|
surface: "process_transcript";
|
|
471
472
|
selectedText: string;
|
|
472
473
|
sourceConversationId: string;
|
|
473
474
|
sourceHash: string;
|
|
474
|
-
prefix: string;
|
|
475
475
|
suffix: string;
|
|
476
476
|
transcriptKind: "assistant" | "thinking";
|
|
477
477
|
comment?: unknown;
|
|
@@ -538,11 +538,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
538
538
|
start: number;
|
|
539
539
|
end: number;
|
|
540
540
|
id: string;
|
|
541
|
+
prefix: string;
|
|
541
542
|
surface: "workspace_file";
|
|
542
543
|
selectedText: string;
|
|
543
544
|
sourceConversationId: string;
|
|
544
545
|
sourceHash: string;
|
|
545
|
-
prefix: string;
|
|
546
546
|
suffix: string;
|
|
547
547
|
attachmentIds: string[];
|
|
548
548
|
sourceFilePath: string;
|
|
@@ -554,11 +554,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
554
554
|
start: number;
|
|
555
555
|
end: number;
|
|
556
556
|
id: string;
|
|
557
|
+
prefix: string;
|
|
557
558
|
surface: "workspace_file";
|
|
558
559
|
selectedText: string;
|
|
559
560
|
sourceConversationId: string;
|
|
560
561
|
sourceHash: string;
|
|
561
|
-
prefix: string;
|
|
562
562
|
suffix: string;
|
|
563
563
|
sourceFilePath: string;
|
|
564
564
|
sourceLibraryEntryId: string | null;
|
|
@@ -586,11 +586,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
586
586
|
start: number;
|
|
587
587
|
end: number;
|
|
588
588
|
id: string;
|
|
589
|
+
prefix: string;
|
|
589
590
|
surface: "local_file";
|
|
590
591
|
selectedText: string;
|
|
591
592
|
sourceConversationId: string;
|
|
592
593
|
sourceHash: string;
|
|
593
|
-
prefix: string;
|
|
594
594
|
suffix: string;
|
|
595
595
|
attachmentIds: string[];
|
|
596
596
|
sourceFilePath: string;
|
|
@@ -601,11 +601,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
601
601
|
start: number;
|
|
602
602
|
end: number;
|
|
603
603
|
id: string;
|
|
604
|
+
prefix: string;
|
|
604
605
|
surface: "local_file";
|
|
605
606
|
selectedText: string;
|
|
606
607
|
sourceConversationId: string;
|
|
607
608
|
sourceHash: string;
|
|
608
|
-
prefix: string;
|
|
609
609
|
suffix: string;
|
|
610
610
|
sourceFilePath: string;
|
|
611
611
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -617,11 +617,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
617
617
|
end: number;
|
|
618
618
|
id: string;
|
|
619
619
|
sourceMessageId: string;
|
|
620
|
+
prefix: string;
|
|
620
621
|
surface: "assistant_body";
|
|
621
622
|
selectedText: string;
|
|
622
623
|
sourceConversationId: string;
|
|
623
624
|
sourceHash: string;
|
|
624
|
-
prefix: string;
|
|
625
625
|
suffix: string;
|
|
626
626
|
attachmentIds: string[];
|
|
627
627
|
comment?: string | null | undefined;
|
|
@@ -634,11 +634,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
634
634
|
generationSeqEnd: number;
|
|
635
635
|
id: string;
|
|
636
636
|
sourceMessageId: string;
|
|
637
|
+
prefix: string;
|
|
637
638
|
surface: "process_transcript";
|
|
638
639
|
selectedText: string;
|
|
639
640
|
sourceConversationId: string;
|
|
640
641
|
sourceHash: string;
|
|
641
|
-
prefix: string;
|
|
642
642
|
suffix: string;
|
|
643
643
|
attachmentIds: string[];
|
|
644
644
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -661,11 +661,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
661
661
|
start: number;
|
|
662
662
|
end: number;
|
|
663
663
|
id: string;
|
|
664
|
+
prefix: string;
|
|
664
665
|
surface: "workspace_file";
|
|
665
666
|
selectedText: string;
|
|
666
667
|
sourceConversationId: string;
|
|
667
668
|
sourceHash: string;
|
|
668
|
-
prefix: string;
|
|
669
669
|
suffix: string;
|
|
670
670
|
attachmentIds: string[];
|
|
671
671
|
sourceFilePath: string;
|
|
@@ -677,11 +677,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
677
677
|
start: number;
|
|
678
678
|
end: number;
|
|
679
679
|
id: string;
|
|
680
|
+
prefix: string;
|
|
680
681
|
surface: "local_file";
|
|
681
682
|
selectedText: string;
|
|
682
683
|
sourceConversationId: string;
|
|
683
684
|
sourceHash: string;
|
|
684
|
-
prefix: string;
|
|
685
685
|
suffix: string;
|
|
686
686
|
attachmentIds: string[];
|
|
687
687
|
sourceFilePath: string;
|
|
@@ -693,11 +693,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
693
693
|
end: number;
|
|
694
694
|
id: string;
|
|
695
695
|
sourceMessageId: string;
|
|
696
|
+
prefix: string;
|
|
696
697
|
surface: "assistant_body";
|
|
697
698
|
selectedText: string;
|
|
698
699
|
sourceConversationId: string;
|
|
699
700
|
sourceHash: string;
|
|
700
|
-
prefix: string;
|
|
701
701
|
suffix: string;
|
|
702
702
|
comment?: unknown;
|
|
703
703
|
attachmentIds?: string[] | undefined;
|
|
@@ -710,11 +710,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
710
710
|
generationSeqEnd: number;
|
|
711
711
|
id: string;
|
|
712
712
|
sourceMessageId: string;
|
|
713
|
+
prefix: string;
|
|
713
714
|
surface: "process_transcript";
|
|
714
715
|
selectedText: string;
|
|
715
716
|
sourceConversationId: string;
|
|
716
717
|
sourceHash: string;
|
|
717
|
-
prefix: string;
|
|
718
718
|
suffix: string;
|
|
719
719
|
transcriptKind: "assistant" | "thinking";
|
|
720
720
|
comment?: unknown;
|
|
@@ -737,11 +737,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
737
737
|
start: number;
|
|
738
738
|
end: number;
|
|
739
739
|
id: string;
|
|
740
|
+
prefix: string;
|
|
740
741
|
surface: "workspace_file";
|
|
741
742
|
selectedText: string;
|
|
742
743
|
sourceConversationId: string;
|
|
743
744
|
sourceHash: string;
|
|
744
|
-
prefix: string;
|
|
745
745
|
suffix: string;
|
|
746
746
|
sourceFilePath: string;
|
|
747
747
|
sourceLibraryEntryId: string | null;
|
|
@@ -753,11 +753,11 @@ export declare const chatInlineAnnotationInputSchema: z.ZodEffects<z.ZodDiscrimi
|
|
|
753
753
|
start: number;
|
|
754
754
|
end: number;
|
|
755
755
|
id: string;
|
|
756
|
+
prefix: string;
|
|
756
757
|
surface: "local_file";
|
|
757
758
|
selectedText: string;
|
|
758
759
|
sourceConversationId: string;
|
|
759
760
|
sourceHash: string;
|
|
760
|
-
prefix: string;
|
|
761
761
|
suffix: string;
|
|
762
762
|
sourceFilePath: string;
|
|
763
763
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -783,11 +783,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
783
783
|
end: number;
|
|
784
784
|
id: string;
|
|
785
785
|
sourceMessageId: string;
|
|
786
|
+
prefix: string;
|
|
786
787
|
surface: "assistant_body";
|
|
787
788
|
selectedText: string;
|
|
788
789
|
sourceConversationId: string;
|
|
789
790
|
sourceHash: string;
|
|
790
|
-
prefix: string;
|
|
791
791
|
suffix: string;
|
|
792
792
|
attachmentIds: string[];
|
|
793
793
|
comment?: string | null | undefined;
|
|
@@ -796,11 +796,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
796
796
|
end: number;
|
|
797
797
|
id: string;
|
|
798
798
|
sourceMessageId: string;
|
|
799
|
+
prefix: string;
|
|
799
800
|
surface: "assistant_body";
|
|
800
801
|
selectedText: string;
|
|
801
802
|
sourceConversationId: string;
|
|
802
803
|
sourceHash: string;
|
|
803
|
-
prefix: string;
|
|
804
804
|
suffix: string;
|
|
805
805
|
comment?: unknown;
|
|
806
806
|
attachmentIds?: string[] | undefined;
|
|
@@ -829,11 +829,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
829
829
|
generationSeqEnd: number;
|
|
830
830
|
id: string;
|
|
831
831
|
sourceMessageId: string;
|
|
832
|
+
prefix: string;
|
|
832
833
|
surface: "process_transcript";
|
|
833
834
|
selectedText: string;
|
|
834
835
|
sourceConversationId: string;
|
|
835
836
|
sourceHash: string;
|
|
836
|
-
prefix: string;
|
|
837
837
|
suffix: string;
|
|
838
838
|
attachmentIds: string[];
|
|
839
839
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -846,11 +846,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
846
846
|
generationSeqEnd: number;
|
|
847
847
|
id: string;
|
|
848
848
|
sourceMessageId: string;
|
|
849
|
+
prefix: string;
|
|
849
850
|
surface: "process_transcript";
|
|
850
851
|
selectedText: string;
|
|
851
852
|
sourceConversationId: string;
|
|
852
853
|
sourceHash: string;
|
|
853
|
-
prefix: string;
|
|
854
854
|
suffix: string;
|
|
855
855
|
transcriptKind: "assistant" | "thinking";
|
|
856
856
|
comment?: unknown;
|
|
@@ -910,11 +910,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
910
910
|
start: number;
|
|
911
911
|
end: number;
|
|
912
912
|
id: string;
|
|
913
|
+
prefix: string;
|
|
913
914
|
surface: "workspace_file";
|
|
914
915
|
selectedText: string;
|
|
915
916
|
sourceConversationId: string;
|
|
916
917
|
sourceHash: string;
|
|
917
|
-
prefix: string;
|
|
918
918
|
suffix: string;
|
|
919
919
|
attachmentIds: string[];
|
|
920
920
|
sourceFilePath: string;
|
|
@@ -925,11 +925,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
925
925
|
start: number;
|
|
926
926
|
end: number;
|
|
927
927
|
id: string;
|
|
928
|
+
prefix: string;
|
|
928
929
|
surface: "workspace_file";
|
|
929
930
|
selectedText: string;
|
|
930
931
|
sourceConversationId: string;
|
|
931
932
|
sourceHash: string;
|
|
932
|
-
prefix: string;
|
|
933
933
|
suffix: string;
|
|
934
934
|
sourceFilePath: string;
|
|
935
935
|
sourceLibraryEntryId: string | null;
|
|
@@ -954,11 +954,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
954
954
|
start: number;
|
|
955
955
|
end: number;
|
|
956
956
|
id: string;
|
|
957
|
+
prefix: string;
|
|
957
958
|
surface: "local_file";
|
|
958
959
|
selectedText: string;
|
|
959
960
|
sourceConversationId: string;
|
|
960
961
|
sourceHash: string;
|
|
961
|
-
prefix: string;
|
|
962
962
|
suffix: string;
|
|
963
963
|
attachmentIds: string[];
|
|
964
964
|
sourceFilePath: string;
|
|
@@ -968,11 +968,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
968
968
|
start: number;
|
|
969
969
|
end: number;
|
|
970
970
|
id: string;
|
|
971
|
+
prefix: string;
|
|
971
972
|
surface: "local_file";
|
|
972
973
|
selectedText: string;
|
|
973
974
|
sourceConversationId: string;
|
|
974
975
|
sourceHash: string;
|
|
975
|
-
prefix: string;
|
|
976
976
|
suffix: string;
|
|
977
977
|
sourceFilePath: string;
|
|
978
978
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -983,11 +983,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
983
983
|
end: number;
|
|
984
984
|
id: string;
|
|
985
985
|
sourceMessageId: string;
|
|
986
|
+
prefix: string;
|
|
986
987
|
surface: "assistant_body";
|
|
987
988
|
selectedText: string;
|
|
988
989
|
sourceConversationId: string;
|
|
989
990
|
sourceHash: string;
|
|
990
|
-
prefix: string;
|
|
991
991
|
suffix: string;
|
|
992
992
|
attachmentIds: string[];
|
|
993
993
|
comment?: string | null | undefined;
|
|
@@ -999,11 +999,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
999
999
|
generationSeqEnd: number;
|
|
1000
1000
|
id: string;
|
|
1001
1001
|
sourceMessageId: string;
|
|
1002
|
+
prefix: string;
|
|
1002
1003
|
surface: "process_transcript";
|
|
1003
1004
|
selectedText: string;
|
|
1004
1005
|
sourceConversationId: string;
|
|
1005
1006
|
sourceHash: string;
|
|
1006
|
-
prefix: string;
|
|
1007
1007
|
suffix: string;
|
|
1008
1008
|
attachmentIds: string[];
|
|
1009
1009
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -1024,11 +1024,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1024
1024
|
start: number;
|
|
1025
1025
|
end: number;
|
|
1026
1026
|
id: string;
|
|
1027
|
+
prefix: string;
|
|
1027
1028
|
surface: "workspace_file";
|
|
1028
1029
|
selectedText: string;
|
|
1029
1030
|
sourceConversationId: string;
|
|
1030
1031
|
sourceHash: string;
|
|
1031
|
-
prefix: string;
|
|
1032
1032
|
suffix: string;
|
|
1033
1033
|
attachmentIds: string[];
|
|
1034
1034
|
sourceFilePath: string;
|
|
@@ -1039,11 +1039,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1039
1039
|
start: number;
|
|
1040
1040
|
end: number;
|
|
1041
1041
|
id: string;
|
|
1042
|
+
prefix: string;
|
|
1042
1043
|
surface: "local_file";
|
|
1043
1044
|
selectedText: string;
|
|
1044
1045
|
sourceConversationId: string;
|
|
1045
1046
|
sourceHash: string;
|
|
1046
|
-
prefix: string;
|
|
1047
1047
|
suffix: string;
|
|
1048
1048
|
attachmentIds: string[];
|
|
1049
1049
|
sourceFilePath: string;
|
|
@@ -1054,11 +1054,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1054
1054
|
end: number;
|
|
1055
1055
|
id: string;
|
|
1056
1056
|
sourceMessageId: string;
|
|
1057
|
+
prefix: string;
|
|
1057
1058
|
surface: "assistant_body";
|
|
1058
1059
|
selectedText: string;
|
|
1059
1060
|
sourceConversationId: string;
|
|
1060
1061
|
sourceHash: string;
|
|
1061
|
-
prefix: string;
|
|
1062
1062
|
suffix: string;
|
|
1063
1063
|
comment?: unknown;
|
|
1064
1064
|
attachmentIds?: string[] | undefined;
|
|
@@ -1070,11 +1070,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1070
1070
|
generationSeqEnd: number;
|
|
1071
1071
|
id: string;
|
|
1072
1072
|
sourceMessageId: string;
|
|
1073
|
+
prefix: string;
|
|
1073
1074
|
surface: "process_transcript";
|
|
1074
1075
|
selectedText: string;
|
|
1075
1076
|
sourceConversationId: string;
|
|
1076
1077
|
sourceHash: string;
|
|
1077
|
-
prefix: string;
|
|
1078
1078
|
suffix: string;
|
|
1079
1079
|
transcriptKind: "assistant" | "thinking";
|
|
1080
1080
|
comment?: unknown;
|
|
@@ -1095,11 +1095,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1095
1095
|
start: number;
|
|
1096
1096
|
end: number;
|
|
1097
1097
|
id: string;
|
|
1098
|
+
prefix: string;
|
|
1098
1099
|
surface: "workspace_file";
|
|
1099
1100
|
selectedText: string;
|
|
1100
1101
|
sourceConversationId: string;
|
|
1101
1102
|
sourceHash: string;
|
|
1102
|
-
prefix: string;
|
|
1103
1103
|
suffix: string;
|
|
1104
1104
|
sourceFilePath: string;
|
|
1105
1105
|
sourceLibraryEntryId: string | null;
|
|
@@ -1110,11 +1110,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1110
1110
|
start: number;
|
|
1111
1111
|
end: number;
|
|
1112
1112
|
id: string;
|
|
1113
|
+
prefix: string;
|
|
1113
1114
|
surface: "local_file";
|
|
1114
1115
|
selectedText: string;
|
|
1115
1116
|
sourceConversationId: string;
|
|
1116
1117
|
sourceHash: string;
|
|
1117
|
-
prefix: string;
|
|
1118
1118
|
suffix: string;
|
|
1119
1119
|
sourceFilePath: string;
|
|
1120
1120
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -1125,11 +1125,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1125
1125
|
end: number;
|
|
1126
1126
|
id: string;
|
|
1127
1127
|
sourceMessageId: string;
|
|
1128
|
+
prefix: string;
|
|
1128
1129
|
surface: "assistant_body";
|
|
1129
1130
|
selectedText: string;
|
|
1130
1131
|
sourceConversationId: string;
|
|
1131
1132
|
sourceHash: string;
|
|
1132
|
-
prefix: string;
|
|
1133
1133
|
suffix: string;
|
|
1134
1134
|
attachmentIds: string[];
|
|
1135
1135
|
comment?: string | null | undefined;
|
|
@@ -1141,11 +1141,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1141
1141
|
generationSeqEnd: number;
|
|
1142
1142
|
id: string;
|
|
1143
1143
|
sourceMessageId: string;
|
|
1144
|
+
prefix: string;
|
|
1144
1145
|
surface: "process_transcript";
|
|
1145
1146
|
selectedText: string;
|
|
1146
1147
|
sourceConversationId: string;
|
|
1147
1148
|
sourceHash: string;
|
|
1148
|
-
prefix: string;
|
|
1149
1149
|
suffix: string;
|
|
1150
1150
|
attachmentIds: string[];
|
|
1151
1151
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -1166,11 +1166,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1166
1166
|
start: number;
|
|
1167
1167
|
end: number;
|
|
1168
1168
|
id: string;
|
|
1169
|
+
prefix: string;
|
|
1169
1170
|
surface: "workspace_file";
|
|
1170
1171
|
selectedText: string;
|
|
1171
1172
|
sourceConversationId: string;
|
|
1172
1173
|
sourceHash: string;
|
|
1173
|
-
prefix: string;
|
|
1174
1174
|
suffix: string;
|
|
1175
1175
|
attachmentIds: string[];
|
|
1176
1176
|
sourceFilePath: string;
|
|
@@ -1181,11 +1181,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1181
1181
|
start: number;
|
|
1182
1182
|
end: number;
|
|
1183
1183
|
id: string;
|
|
1184
|
+
prefix: string;
|
|
1184
1185
|
surface: "local_file";
|
|
1185
1186
|
selectedText: string;
|
|
1186
1187
|
sourceConversationId: string;
|
|
1187
1188
|
sourceHash: string;
|
|
1188
|
-
prefix: string;
|
|
1189
1189
|
suffix: string;
|
|
1190
1190
|
attachmentIds: string[];
|
|
1191
1191
|
sourceFilePath: string;
|
|
@@ -1196,11 +1196,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1196
1196
|
end: number;
|
|
1197
1197
|
id: string;
|
|
1198
1198
|
sourceMessageId: string;
|
|
1199
|
+
prefix: string;
|
|
1199
1200
|
surface: "assistant_body";
|
|
1200
1201
|
selectedText: string;
|
|
1201
1202
|
sourceConversationId: string;
|
|
1202
1203
|
sourceHash: string;
|
|
1203
|
-
prefix: string;
|
|
1204
1204
|
suffix: string;
|
|
1205
1205
|
comment?: unknown;
|
|
1206
1206
|
attachmentIds?: string[] | undefined;
|
|
@@ -1212,11 +1212,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1212
1212
|
generationSeqEnd: number;
|
|
1213
1213
|
id: string;
|
|
1214
1214
|
sourceMessageId: string;
|
|
1215
|
+
prefix: string;
|
|
1215
1216
|
surface: "process_transcript";
|
|
1216
1217
|
selectedText: string;
|
|
1217
1218
|
sourceConversationId: string;
|
|
1218
1219
|
sourceHash: string;
|
|
1219
|
-
prefix: string;
|
|
1220
1220
|
suffix: string;
|
|
1221
1221
|
transcriptKind: "assistant" | "thinking";
|
|
1222
1222
|
comment?: unknown;
|
|
@@ -1237,11 +1237,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1237
1237
|
start: number;
|
|
1238
1238
|
end: number;
|
|
1239
1239
|
id: string;
|
|
1240
|
+
prefix: string;
|
|
1240
1241
|
surface: "workspace_file";
|
|
1241
1242
|
selectedText: string;
|
|
1242
1243
|
sourceConversationId: string;
|
|
1243
1244
|
sourceHash: string;
|
|
1244
|
-
prefix: string;
|
|
1245
1245
|
suffix: string;
|
|
1246
1246
|
sourceFilePath: string;
|
|
1247
1247
|
sourceLibraryEntryId: string | null;
|
|
@@ -1252,11 +1252,11 @@ export declare const chatInlineAnnotationsSchema: z.ZodEffects<z.ZodArray<z.ZodE
|
|
|
1252
1252
|
start: number;
|
|
1253
1253
|
end: number;
|
|
1254
1254
|
id: string;
|
|
1255
|
+
prefix: string;
|
|
1255
1256
|
surface: "local_file";
|
|
1256
1257
|
selectedText: string;
|
|
1257
1258
|
sourceConversationId: string;
|
|
1258
1259
|
sourceHash: string;
|
|
1259
|
-
prefix: string;
|
|
1260
1260
|
suffix: string;
|
|
1261
1261
|
sourceFilePath: string;
|
|
1262
1262
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -1283,11 +1283,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1283
1283
|
end: number;
|
|
1284
1284
|
id: string;
|
|
1285
1285
|
sourceMessageId: string;
|
|
1286
|
+
prefix: string;
|
|
1286
1287
|
surface: "assistant_body";
|
|
1287
1288
|
selectedText: string;
|
|
1288
1289
|
sourceConversationId: string;
|
|
1289
1290
|
sourceHash: string;
|
|
1290
|
-
prefix: string;
|
|
1291
1291
|
suffix: string;
|
|
1292
1292
|
attachmentIds: string[];
|
|
1293
1293
|
comment?: string | null | undefined;
|
|
@@ -1297,11 +1297,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1297
1297
|
end: number;
|
|
1298
1298
|
id: string;
|
|
1299
1299
|
sourceMessageId: string;
|
|
1300
|
+
prefix: string;
|
|
1300
1301
|
surface: "assistant_body";
|
|
1301
1302
|
selectedText: string;
|
|
1302
1303
|
sourceConversationId: string;
|
|
1303
1304
|
sourceHash: string;
|
|
1304
|
-
prefix: string;
|
|
1305
1305
|
suffix: string;
|
|
1306
1306
|
comment?: unknown;
|
|
1307
1307
|
attachmentIds?: string[] | undefined;
|
|
@@ -1333,11 +1333,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1333
1333
|
generationSeqEnd: number;
|
|
1334
1334
|
id: string;
|
|
1335
1335
|
sourceMessageId: string;
|
|
1336
|
+
prefix: string;
|
|
1336
1337
|
surface: "process_transcript";
|
|
1337
1338
|
selectedText: string;
|
|
1338
1339
|
sourceConversationId: string;
|
|
1339
1340
|
sourceHash: string;
|
|
1340
|
-
prefix: string;
|
|
1341
1341
|
suffix: string;
|
|
1342
1342
|
attachmentIds: string[];
|
|
1343
1343
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -1351,11 +1351,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1351
1351
|
generationSeqEnd: number;
|
|
1352
1352
|
id: string;
|
|
1353
1353
|
sourceMessageId: string;
|
|
1354
|
+
prefix: string;
|
|
1354
1355
|
surface: "process_transcript";
|
|
1355
1356
|
selectedText: string;
|
|
1356
1357
|
sourceConversationId: string;
|
|
1357
1358
|
sourceHash: string;
|
|
1358
|
-
prefix: string;
|
|
1359
1359
|
suffix: string;
|
|
1360
1360
|
transcriptKind: "assistant" | "thinking";
|
|
1361
1361
|
comment?: unknown;
|
|
@@ -1422,11 +1422,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1422
1422
|
start: number;
|
|
1423
1423
|
end: number;
|
|
1424
1424
|
id: string;
|
|
1425
|
+
prefix: string;
|
|
1425
1426
|
surface: "workspace_file";
|
|
1426
1427
|
selectedText: string;
|
|
1427
1428
|
sourceConversationId: string;
|
|
1428
1429
|
sourceHash: string;
|
|
1429
|
-
prefix: string;
|
|
1430
1430
|
suffix: string;
|
|
1431
1431
|
attachmentIds: string[];
|
|
1432
1432
|
sourceFilePath: string;
|
|
@@ -1438,11 +1438,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1438
1438
|
start: number;
|
|
1439
1439
|
end: number;
|
|
1440
1440
|
id: string;
|
|
1441
|
+
prefix: string;
|
|
1441
1442
|
surface: "workspace_file";
|
|
1442
1443
|
selectedText: string;
|
|
1443
1444
|
sourceConversationId: string;
|
|
1444
1445
|
sourceHash: string;
|
|
1445
|
-
prefix: string;
|
|
1446
1446
|
suffix: string;
|
|
1447
1447
|
sourceFilePath: string;
|
|
1448
1448
|
sourceLibraryEntryId: string | null;
|
|
@@ -1470,11 +1470,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1470
1470
|
start: number;
|
|
1471
1471
|
end: number;
|
|
1472
1472
|
id: string;
|
|
1473
|
+
prefix: string;
|
|
1473
1474
|
surface: "local_file";
|
|
1474
1475
|
selectedText: string;
|
|
1475
1476
|
sourceConversationId: string;
|
|
1476
1477
|
sourceHash: string;
|
|
1477
|
-
prefix: string;
|
|
1478
1478
|
suffix: string;
|
|
1479
1479
|
attachmentIds: string[];
|
|
1480
1480
|
sourceFilePath: string;
|
|
@@ -1485,11 +1485,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1485
1485
|
start: number;
|
|
1486
1486
|
end: number;
|
|
1487
1487
|
id: string;
|
|
1488
|
+
prefix: string;
|
|
1488
1489
|
surface: "local_file";
|
|
1489
1490
|
selectedText: string;
|
|
1490
1491
|
sourceConversationId: string;
|
|
1491
1492
|
sourceHash: string;
|
|
1492
|
-
prefix: string;
|
|
1493
1493
|
suffix: string;
|
|
1494
1494
|
sourceFilePath: string;
|
|
1495
1495
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -1501,11 +1501,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1501
1501
|
end: number;
|
|
1502
1502
|
id: string;
|
|
1503
1503
|
sourceMessageId: string;
|
|
1504
|
+
prefix: string;
|
|
1504
1505
|
surface: "assistant_body";
|
|
1505
1506
|
selectedText: string;
|
|
1506
1507
|
sourceConversationId: string;
|
|
1507
1508
|
sourceHash: string;
|
|
1508
|
-
prefix: string;
|
|
1509
1509
|
suffix: string;
|
|
1510
1510
|
attachmentIds: string[];
|
|
1511
1511
|
comment?: string | null | undefined;
|
|
@@ -1518,11 +1518,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1518
1518
|
generationSeqEnd: number;
|
|
1519
1519
|
id: string;
|
|
1520
1520
|
sourceMessageId: string;
|
|
1521
|
+
prefix: string;
|
|
1521
1522
|
surface: "process_transcript";
|
|
1522
1523
|
selectedText: string;
|
|
1523
1524
|
sourceConversationId: string;
|
|
1524
1525
|
sourceHash: string;
|
|
1525
|
-
prefix: string;
|
|
1526
1526
|
suffix: string;
|
|
1527
1527
|
attachmentIds: string[];
|
|
1528
1528
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -1545,11 +1545,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1545
1545
|
start: number;
|
|
1546
1546
|
end: number;
|
|
1547
1547
|
id: string;
|
|
1548
|
+
prefix: string;
|
|
1548
1549
|
surface: "workspace_file";
|
|
1549
1550
|
selectedText: string;
|
|
1550
1551
|
sourceConversationId: string;
|
|
1551
1552
|
sourceHash: string;
|
|
1552
|
-
prefix: string;
|
|
1553
1553
|
suffix: string;
|
|
1554
1554
|
attachmentIds: string[];
|
|
1555
1555
|
sourceFilePath: string;
|
|
@@ -1561,11 +1561,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1561
1561
|
start: number;
|
|
1562
1562
|
end: number;
|
|
1563
1563
|
id: string;
|
|
1564
|
+
prefix: string;
|
|
1564
1565
|
surface: "local_file";
|
|
1565
1566
|
selectedText: string;
|
|
1566
1567
|
sourceConversationId: string;
|
|
1567
1568
|
sourceHash: string;
|
|
1568
|
-
prefix: string;
|
|
1569
1569
|
suffix: string;
|
|
1570
1570
|
attachmentIds: string[];
|
|
1571
1571
|
sourceFilePath: string;
|
|
@@ -1577,11 +1577,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1577
1577
|
end: number;
|
|
1578
1578
|
id: string;
|
|
1579
1579
|
sourceMessageId: string;
|
|
1580
|
+
prefix: string;
|
|
1580
1581
|
surface: "assistant_body";
|
|
1581
1582
|
selectedText: string;
|
|
1582
1583
|
sourceConversationId: string;
|
|
1583
1584
|
sourceHash: string;
|
|
1584
|
-
prefix: string;
|
|
1585
1585
|
suffix: string;
|
|
1586
1586
|
comment?: unknown;
|
|
1587
1587
|
attachmentIds?: string[] | undefined;
|
|
@@ -1594,11 +1594,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1594
1594
|
generationSeqEnd: number;
|
|
1595
1595
|
id: string;
|
|
1596
1596
|
sourceMessageId: string;
|
|
1597
|
+
prefix: string;
|
|
1597
1598
|
surface: "process_transcript";
|
|
1598
1599
|
selectedText: string;
|
|
1599
1600
|
sourceConversationId: string;
|
|
1600
1601
|
sourceHash: string;
|
|
1601
|
-
prefix: string;
|
|
1602
1602
|
suffix: string;
|
|
1603
1603
|
transcriptKind: "assistant" | "thinking";
|
|
1604
1604
|
comment?: unknown;
|
|
@@ -1621,11 +1621,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1621
1621
|
start: number;
|
|
1622
1622
|
end: number;
|
|
1623
1623
|
id: string;
|
|
1624
|
+
prefix: string;
|
|
1624
1625
|
surface: "workspace_file";
|
|
1625
1626
|
selectedText: string;
|
|
1626
1627
|
sourceConversationId: string;
|
|
1627
1628
|
sourceHash: string;
|
|
1628
|
-
prefix: string;
|
|
1629
1629
|
suffix: string;
|
|
1630
1630
|
sourceFilePath: string;
|
|
1631
1631
|
sourceLibraryEntryId: string | null;
|
|
@@ -1637,11 +1637,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1637
1637
|
start: number;
|
|
1638
1638
|
end: number;
|
|
1639
1639
|
id: string;
|
|
1640
|
+
prefix: string;
|
|
1640
1641
|
surface: "local_file";
|
|
1641
1642
|
selectedText: string;
|
|
1642
1643
|
sourceConversationId: string;
|
|
1643
1644
|
sourceHash: string;
|
|
1644
|
-
prefix: string;
|
|
1645
1645
|
suffix: string;
|
|
1646
1646
|
sourceFilePath: string;
|
|
1647
1647
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -1653,11 +1653,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1653
1653
|
end: number;
|
|
1654
1654
|
id: string;
|
|
1655
1655
|
sourceMessageId: string;
|
|
1656
|
+
prefix: string;
|
|
1656
1657
|
surface: "assistant_body";
|
|
1657
1658
|
selectedText: string;
|
|
1658
1659
|
sourceConversationId: string;
|
|
1659
1660
|
sourceHash: string;
|
|
1660
|
-
prefix: string;
|
|
1661
1661
|
suffix: string;
|
|
1662
1662
|
attachmentIds: string[];
|
|
1663
1663
|
comment?: string | null | undefined;
|
|
@@ -1670,11 +1670,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1670
1670
|
generationSeqEnd: number;
|
|
1671
1671
|
id: string;
|
|
1672
1672
|
sourceMessageId: string;
|
|
1673
|
+
prefix: string;
|
|
1673
1674
|
surface: "process_transcript";
|
|
1674
1675
|
selectedText: string;
|
|
1675
1676
|
sourceConversationId: string;
|
|
1676
1677
|
sourceHash: string;
|
|
1677
|
-
prefix: string;
|
|
1678
1678
|
suffix: string;
|
|
1679
1679
|
attachmentIds: string[];
|
|
1680
1680
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -1697,11 +1697,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1697
1697
|
start: number;
|
|
1698
1698
|
end: number;
|
|
1699
1699
|
id: string;
|
|
1700
|
+
prefix: string;
|
|
1700
1701
|
surface: "workspace_file";
|
|
1701
1702
|
selectedText: string;
|
|
1702
1703
|
sourceConversationId: string;
|
|
1703
1704
|
sourceHash: string;
|
|
1704
|
-
prefix: string;
|
|
1705
1705
|
suffix: string;
|
|
1706
1706
|
attachmentIds: string[];
|
|
1707
1707
|
sourceFilePath: string;
|
|
@@ -1713,11 +1713,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1713
1713
|
start: number;
|
|
1714
1714
|
end: number;
|
|
1715
1715
|
id: string;
|
|
1716
|
+
prefix: string;
|
|
1716
1717
|
surface: "local_file";
|
|
1717
1718
|
selectedText: string;
|
|
1718
1719
|
sourceConversationId: string;
|
|
1719
1720
|
sourceHash: string;
|
|
1720
|
-
prefix: string;
|
|
1721
1721
|
suffix: string;
|
|
1722
1722
|
attachmentIds: string[];
|
|
1723
1723
|
sourceFilePath: string;
|
|
@@ -1729,11 +1729,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1729
1729
|
end: number;
|
|
1730
1730
|
id: string;
|
|
1731
1731
|
sourceMessageId: string;
|
|
1732
|
+
prefix: string;
|
|
1732
1733
|
surface: "assistant_body";
|
|
1733
1734
|
selectedText: string;
|
|
1734
1735
|
sourceConversationId: string;
|
|
1735
1736
|
sourceHash: string;
|
|
1736
|
-
prefix: string;
|
|
1737
1737
|
suffix: string;
|
|
1738
1738
|
comment?: unknown;
|
|
1739
1739
|
attachmentIds?: string[] | undefined;
|
|
@@ -1746,11 +1746,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1746
1746
|
generationSeqEnd: number;
|
|
1747
1747
|
id: string;
|
|
1748
1748
|
sourceMessageId: string;
|
|
1749
|
+
prefix: string;
|
|
1749
1750
|
surface: "process_transcript";
|
|
1750
1751
|
selectedText: string;
|
|
1751
1752
|
sourceConversationId: string;
|
|
1752
1753
|
sourceHash: string;
|
|
1753
|
-
prefix: string;
|
|
1754
1754
|
suffix: string;
|
|
1755
1755
|
transcriptKind: "assistant" | "thinking";
|
|
1756
1756
|
comment?: unknown;
|
|
@@ -1773,11 +1773,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1773
1773
|
start: number;
|
|
1774
1774
|
end: number;
|
|
1775
1775
|
id: string;
|
|
1776
|
+
prefix: string;
|
|
1776
1777
|
surface: "workspace_file";
|
|
1777
1778
|
selectedText: string;
|
|
1778
1779
|
sourceConversationId: string;
|
|
1779
1780
|
sourceHash: string;
|
|
1780
|
-
prefix: string;
|
|
1781
1781
|
suffix: string;
|
|
1782
1782
|
sourceFilePath: string;
|
|
1783
1783
|
sourceLibraryEntryId: string | null;
|
|
@@ -1789,11 +1789,11 @@ export declare const chatInlineAnnotationsInputSchema: z.ZodEffects<z.ZodArray<z
|
|
|
1789
1789
|
start: number;
|
|
1790
1790
|
end: number;
|
|
1791
1791
|
id: string;
|
|
1792
|
+
prefix: string;
|
|
1792
1793
|
surface: "local_file";
|
|
1793
1794
|
selectedText: string;
|
|
1794
1795
|
sourceConversationId: string;
|
|
1795
1796
|
sourceHash: string;
|
|
1796
|
-
prefix: string;
|
|
1797
1797
|
suffix: string;
|
|
1798
1798
|
sourceFilePath: string;
|
|
1799
1799
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -1972,11 +1972,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1972
1972
|
end: number;
|
|
1973
1973
|
id: string;
|
|
1974
1974
|
sourceMessageId: string;
|
|
1975
|
+
prefix: string;
|
|
1975
1976
|
surface: "assistant_body";
|
|
1976
1977
|
selectedText: string;
|
|
1977
1978
|
sourceConversationId: string;
|
|
1978
1979
|
sourceHash: string;
|
|
1979
|
-
prefix: string;
|
|
1980
1980
|
suffix: string;
|
|
1981
1981
|
attachmentIds: string[];
|
|
1982
1982
|
comment?: string | null | undefined;
|
|
@@ -1986,11 +1986,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1986
1986
|
end: number;
|
|
1987
1987
|
id: string;
|
|
1988
1988
|
sourceMessageId: string;
|
|
1989
|
+
prefix: string;
|
|
1989
1990
|
surface: "assistant_body";
|
|
1990
1991
|
selectedText: string;
|
|
1991
1992
|
sourceConversationId: string;
|
|
1992
1993
|
sourceHash: string;
|
|
1993
|
-
prefix: string;
|
|
1994
1994
|
suffix: string;
|
|
1995
1995
|
comment?: unknown;
|
|
1996
1996
|
attachmentIds?: string[] | undefined;
|
|
@@ -2022,11 +2022,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2022
2022
|
generationSeqEnd: number;
|
|
2023
2023
|
id: string;
|
|
2024
2024
|
sourceMessageId: string;
|
|
2025
|
+
prefix: string;
|
|
2025
2026
|
surface: "process_transcript";
|
|
2026
2027
|
selectedText: string;
|
|
2027
2028
|
sourceConversationId: string;
|
|
2028
2029
|
sourceHash: string;
|
|
2029
|
-
prefix: string;
|
|
2030
2030
|
suffix: string;
|
|
2031
2031
|
attachmentIds: string[];
|
|
2032
2032
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -2040,11 +2040,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2040
2040
|
generationSeqEnd: number;
|
|
2041
2041
|
id: string;
|
|
2042
2042
|
sourceMessageId: string;
|
|
2043
|
+
prefix: string;
|
|
2043
2044
|
surface: "process_transcript";
|
|
2044
2045
|
selectedText: string;
|
|
2045
2046
|
sourceConversationId: string;
|
|
2046
2047
|
sourceHash: string;
|
|
2047
|
-
prefix: string;
|
|
2048
2048
|
suffix: string;
|
|
2049
2049
|
transcriptKind: "assistant" | "thinking";
|
|
2050
2050
|
comment?: unknown;
|
|
@@ -2111,11 +2111,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2111
2111
|
start: number;
|
|
2112
2112
|
end: number;
|
|
2113
2113
|
id: string;
|
|
2114
|
+
prefix: string;
|
|
2114
2115
|
surface: "workspace_file";
|
|
2115
2116
|
selectedText: string;
|
|
2116
2117
|
sourceConversationId: string;
|
|
2117
2118
|
sourceHash: string;
|
|
2118
|
-
prefix: string;
|
|
2119
2119
|
suffix: string;
|
|
2120
2120
|
attachmentIds: string[];
|
|
2121
2121
|
sourceFilePath: string;
|
|
@@ -2127,11 +2127,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2127
2127
|
start: number;
|
|
2128
2128
|
end: number;
|
|
2129
2129
|
id: string;
|
|
2130
|
+
prefix: string;
|
|
2130
2131
|
surface: "workspace_file";
|
|
2131
2132
|
selectedText: string;
|
|
2132
2133
|
sourceConversationId: string;
|
|
2133
2134
|
sourceHash: string;
|
|
2134
|
-
prefix: string;
|
|
2135
2135
|
suffix: string;
|
|
2136
2136
|
sourceFilePath: string;
|
|
2137
2137
|
sourceLibraryEntryId: string | null;
|
|
@@ -2159,11 +2159,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2159
2159
|
start: number;
|
|
2160
2160
|
end: number;
|
|
2161
2161
|
id: string;
|
|
2162
|
+
prefix: string;
|
|
2162
2163
|
surface: "local_file";
|
|
2163
2164
|
selectedText: string;
|
|
2164
2165
|
sourceConversationId: string;
|
|
2165
2166
|
sourceHash: string;
|
|
2166
|
-
prefix: string;
|
|
2167
2167
|
suffix: string;
|
|
2168
2168
|
attachmentIds: string[];
|
|
2169
2169
|
sourceFilePath: string;
|
|
@@ -2174,11 +2174,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2174
2174
|
start: number;
|
|
2175
2175
|
end: number;
|
|
2176
2176
|
id: string;
|
|
2177
|
+
prefix: string;
|
|
2177
2178
|
surface: "local_file";
|
|
2178
2179
|
selectedText: string;
|
|
2179
2180
|
sourceConversationId: string;
|
|
2180
2181
|
sourceHash: string;
|
|
2181
|
-
prefix: string;
|
|
2182
2182
|
suffix: string;
|
|
2183
2183
|
sourceFilePath: string;
|
|
2184
2184
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -2190,11 +2190,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2190
2190
|
end: number;
|
|
2191
2191
|
id: string;
|
|
2192
2192
|
sourceMessageId: string;
|
|
2193
|
+
prefix: string;
|
|
2193
2194
|
surface: "assistant_body";
|
|
2194
2195
|
selectedText: string;
|
|
2195
2196
|
sourceConversationId: string;
|
|
2196
2197
|
sourceHash: string;
|
|
2197
|
-
prefix: string;
|
|
2198
2198
|
suffix: string;
|
|
2199
2199
|
attachmentIds: string[];
|
|
2200
2200
|
comment?: string | null | undefined;
|
|
@@ -2207,11 +2207,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2207
2207
|
generationSeqEnd: number;
|
|
2208
2208
|
id: string;
|
|
2209
2209
|
sourceMessageId: string;
|
|
2210
|
+
prefix: string;
|
|
2210
2211
|
surface: "process_transcript";
|
|
2211
2212
|
selectedText: string;
|
|
2212
2213
|
sourceConversationId: string;
|
|
2213
2214
|
sourceHash: string;
|
|
2214
|
-
prefix: string;
|
|
2215
2215
|
suffix: string;
|
|
2216
2216
|
attachmentIds: string[];
|
|
2217
2217
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -2234,11 +2234,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2234
2234
|
start: number;
|
|
2235
2235
|
end: number;
|
|
2236
2236
|
id: string;
|
|
2237
|
+
prefix: string;
|
|
2237
2238
|
surface: "workspace_file";
|
|
2238
2239
|
selectedText: string;
|
|
2239
2240
|
sourceConversationId: string;
|
|
2240
2241
|
sourceHash: string;
|
|
2241
|
-
prefix: string;
|
|
2242
2242
|
suffix: string;
|
|
2243
2243
|
attachmentIds: string[];
|
|
2244
2244
|
sourceFilePath: string;
|
|
@@ -2250,11 +2250,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2250
2250
|
start: number;
|
|
2251
2251
|
end: number;
|
|
2252
2252
|
id: string;
|
|
2253
|
+
prefix: string;
|
|
2253
2254
|
surface: "local_file";
|
|
2254
2255
|
selectedText: string;
|
|
2255
2256
|
sourceConversationId: string;
|
|
2256
2257
|
sourceHash: string;
|
|
2257
|
-
prefix: string;
|
|
2258
2258
|
suffix: string;
|
|
2259
2259
|
attachmentIds: string[];
|
|
2260
2260
|
sourceFilePath: string;
|
|
@@ -2266,11 +2266,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2266
2266
|
end: number;
|
|
2267
2267
|
id: string;
|
|
2268
2268
|
sourceMessageId: string;
|
|
2269
|
+
prefix: string;
|
|
2269
2270
|
surface: "assistant_body";
|
|
2270
2271
|
selectedText: string;
|
|
2271
2272
|
sourceConversationId: string;
|
|
2272
2273
|
sourceHash: string;
|
|
2273
|
-
prefix: string;
|
|
2274
2274
|
suffix: string;
|
|
2275
2275
|
comment?: unknown;
|
|
2276
2276
|
attachmentIds?: string[] | undefined;
|
|
@@ -2283,11 +2283,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2283
2283
|
generationSeqEnd: number;
|
|
2284
2284
|
id: string;
|
|
2285
2285
|
sourceMessageId: string;
|
|
2286
|
+
prefix: string;
|
|
2286
2287
|
surface: "process_transcript";
|
|
2287
2288
|
selectedText: string;
|
|
2288
2289
|
sourceConversationId: string;
|
|
2289
2290
|
sourceHash: string;
|
|
2290
|
-
prefix: string;
|
|
2291
2291
|
suffix: string;
|
|
2292
2292
|
transcriptKind: "assistant" | "thinking";
|
|
2293
2293
|
comment?: unknown;
|
|
@@ -2310,11 +2310,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2310
2310
|
start: number;
|
|
2311
2311
|
end: number;
|
|
2312
2312
|
id: string;
|
|
2313
|
+
prefix: string;
|
|
2313
2314
|
surface: "workspace_file";
|
|
2314
2315
|
selectedText: string;
|
|
2315
2316
|
sourceConversationId: string;
|
|
2316
2317
|
sourceHash: string;
|
|
2317
|
-
prefix: string;
|
|
2318
2318
|
suffix: string;
|
|
2319
2319
|
sourceFilePath: string;
|
|
2320
2320
|
sourceLibraryEntryId: string | null;
|
|
@@ -2326,11 +2326,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2326
2326
|
start: number;
|
|
2327
2327
|
end: number;
|
|
2328
2328
|
id: string;
|
|
2329
|
+
prefix: string;
|
|
2329
2330
|
surface: "local_file";
|
|
2330
2331
|
selectedText: string;
|
|
2331
2332
|
sourceConversationId: string;
|
|
2332
2333
|
sourceHash: string;
|
|
2333
|
-
prefix: string;
|
|
2334
2334
|
suffix: string;
|
|
2335
2335
|
sourceFilePath: string;
|
|
2336
2336
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -2342,11 +2342,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2342
2342
|
end: number;
|
|
2343
2343
|
id: string;
|
|
2344
2344
|
sourceMessageId: string;
|
|
2345
|
+
prefix: string;
|
|
2345
2346
|
surface: "assistant_body";
|
|
2346
2347
|
selectedText: string;
|
|
2347
2348
|
sourceConversationId: string;
|
|
2348
2349
|
sourceHash: string;
|
|
2349
|
-
prefix: string;
|
|
2350
2350
|
suffix: string;
|
|
2351
2351
|
attachmentIds: string[];
|
|
2352
2352
|
comment?: string | null | undefined;
|
|
@@ -2359,11 +2359,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2359
2359
|
generationSeqEnd: number;
|
|
2360
2360
|
id: string;
|
|
2361
2361
|
sourceMessageId: string;
|
|
2362
|
+
prefix: string;
|
|
2362
2363
|
surface: "process_transcript";
|
|
2363
2364
|
selectedText: string;
|
|
2364
2365
|
sourceConversationId: string;
|
|
2365
2366
|
sourceHash: string;
|
|
2366
|
-
prefix: string;
|
|
2367
2367
|
suffix: string;
|
|
2368
2368
|
attachmentIds: string[];
|
|
2369
2369
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -2386,11 +2386,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2386
2386
|
start: number;
|
|
2387
2387
|
end: number;
|
|
2388
2388
|
id: string;
|
|
2389
|
+
prefix: string;
|
|
2389
2390
|
surface: "workspace_file";
|
|
2390
2391
|
selectedText: string;
|
|
2391
2392
|
sourceConversationId: string;
|
|
2392
2393
|
sourceHash: string;
|
|
2393
|
-
prefix: string;
|
|
2394
2394
|
suffix: string;
|
|
2395
2395
|
attachmentIds: string[];
|
|
2396
2396
|
sourceFilePath: string;
|
|
@@ -2402,11 +2402,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2402
2402
|
start: number;
|
|
2403
2403
|
end: number;
|
|
2404
2404
|
id: string;
|
|
2405
|
+
prefix: string;
|
|
2405
2406
|
surface: "local_file";
|
|
2406
2407
|
selectedText: string;
|
|
2407
2408
|
sourceConversationId: string;
|
|
2408
2409
|
sourceHash: string;
|
|
2409
|
-
prefix: string;
|
|
2410
2410
|
suffix: string;
|
|
2411
2411
|
attachmentIds: string[];
|
|
2412
2412
|
sourceFilePath: string;
|
|
@@ -2418,11 +2418,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2418
2418
|
end: number;
|
|
2419
2419
|
id: string;
|
|
2420
2420
|
sourceMessageId: string;
|
|
2421
|
+
prefix: string;
|
|
2421
2422
|
surface: "assistant_body";
|
|
2422
2423
|
selectedText: string;
|
|
2423
2424
|
sourceConversationId: string;
|
|
2424
2425
|
sourceHash: string;
|
|
2425
|
-
prefix: string;
|
|
2426
2426
|
suffix: string;
|
|
2427
2427
|
comment?: unknown;
|
|
2428
2428
|
attachmentIds?: string[] | undefined;
|
|
@@ -2435,11 +2435,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2435
2435
|
generationSeqEnd: number;
|
|
2436
2436
|
id: string;
|
|
2437
2437
|
sourceMessageId: string;
|
|
2438
|
+
prefix: string;
|
|
2438
2439
|
surface: "process_transcript";
|
|
2439
2440
|
selectedText: string;
|
|
2440
2441
|
sourceConversationId: string;
|
|
2441
2442
|
sourceHash: string;
|
|
2442
|
-
prefix: string;
|
|
2443
2443
|
suffix: string;
|
|
2444
2444
|
transcriptKind: "assistant" | "thinking";
|
|
2445
2445
|
comment?: unknown;
|
|
@@ -2462,11 +2462,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2462
2462
|
start: number;
|
|
2463
2463
|
end: number;
|
|
2464
2464
|
id: string;
|
|
2465
|
+
prefix: string;
|
|
2465
2466
|
surface: "workspace_file";
|
|
2466
2467
|
selectedText: string;
|
|
2467
2468
|
sourceConversationId: string;
|
|
2468
2469
|
sourceHash: string;
|
|
2469
|
-
prefix: string;
|
|
2470
2470
|
suffix: string;
|
|
2471
2471
|
sourceFilePath: string;
|
|
2472
2472
|
sourceLibraryEntryId: string | null;
|
|
@@ -2478,11 +2478,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2478
2478
|
start: number;
|
|
2479
2479
|
end: number;
|
|
2480
2480
|
id: string;
|
|
2481
|
+
prefix: string;
|
|
2481
2482
|
surface: "local_file";
|
|
2482
2483
|
selectedText: string;
|
|
2483
2484
|
sourceConversationId: string;
|
|
2484
2485
|
sourceHash: string;
|
|
2485
|
-
prefix: string;
|
|
2486
2486
|
suffix: string;
|
|
2487
2487
|
sourceFilePath: string;
|
|
2488
2488
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -2502,11 +2502,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2502
2502
|
end: number;
|
|
2503
2503
|
id: string;
|
|
2504
2504
|
sourceMessageId: string;
|
|
2505
|
+
prefix: string;
|
|
2505
2506
|
surface: "assistant_body";
|
|
2506
2507
|
selectedText: string;
|
|
2507
2508
|
sourceConversationId: string;
|
|
2508
2509
|
sourceHash: string;
|
|
2509
|
-
prefix: string;
|
|
2510
2510
|
suffix: string;
|
|
2511
2511
|
attachmentIds: string[];
|
|
2512
2512
|
comment?: string | null | undefined;
|
|
@@ -2519,11 +2519,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2519
2519
|
generationSeqEnd: number;
|
|
2520
2520
|
id: string;
|
|
2521
2521
|
sourceMessageId: string;
|
|
2522
|
+
prefix: string;
|
|
2522
2523
|
surface: "process_transcript";
|
|
2523
2524
|
selectedText: string;
|
|
2524
2525
|
sourceConversationId: string;
|
|
2525
2526
|
sourceHash: string;
|
|
2526
|
-
prefix: string;
|
|
2527
2527
|
suffix: string;
|
|
2528
2528
|
attachmentIds: string[];
|
|
2529
2529
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -2546,11 +2546,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2546
2546
|
start: number;
|
|
2547
2547
|
end: number;
|
|
2548
2548
|
id: string;
|
|
2549
|
+
prefix: string;
|
|
2549
2550
|
surface: "workspace_file";
|
|
2550
2551
|
selectedText: string;
|
|
2551
2552
|
sourceConversationId: string;
|
|
2552
2553
|
sourceHash: string;
|
|
2553
|
-
prefix: string;
|
|
2554
2554
|
suffix: string;
|
|
2555
2555
|
attachmentIds: string[];
|
|
2556
2556
|
sourceFilePath: string;
|
|
@@ -2562,11 +2562,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2562
2562
|
start: number;
|
|
2563
2563
|
end: number;
|
|
2564
2564
|
id: string;
|
|
2565
|
+
prefix: string;
|
|
2565
2566
|
surface: "local_file";
|
|
2566
2567
|
selectedText: string;
|
|
2567
2568
|
sourceConversationId: string;
|
|
2568
2569
|
sourceHash: string;
|
|
2569
|
-
prefix: string;
|
|
2570
2570
|
suffix: string;
|
|
2571
2571
|
attachmentIds: string[];
|
|
2572
2572
|
sourceFilePath: string;
|
|
@@ -2604,11 +2604,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2604
2604
|
end: number;
|
|
2605
2605
|
id: string;
|
|
2606
2606
|
sourceMessageId: string;
|
|
2607
|
+
prefix: string;
|
|
2607
2608
|
surface: "assistant_body";
|
|
2608
2609
|
selectedText: string;
|
|
2609
2610
|
sourceConversationId: string;
|
|
2610
2611
|
sourceHash: string;
|
|
2611
|
-
prefix: string;
|
|
2612
2612
|
suffix: string;
|
|
2613
2613
|
comment?: unknown;
|
|
2614
2614
|
attachmentIds?: string[] | undefined;
|
|
@@ -2621,11 +2621,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2621
2621
|
generationSeqEnd: number;
|
|
2622
2622
|
id: string;
|
|
2623
2623
|
sourceMessageId: string;
|
|
2624
|
+
prefix: string;
|
|
2624
2625
|
surface: "process_transcript";
|
|
2625
2626
|
selectedText: string;
|
|
2626
2627
|
sourceConversationId: string;
|
|
2627
2628
|
sourceHash: string;
|
|
2628
|
-
prefix: string;
|
|
2629
2629
|
suffix: string;
|
|
2630
2630
|
transcriptKind: "assistant" | "thinking";
|
|
2631
2631
|
comment?: unknown;
|
|
@@ -2648,11 +2648,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2648
2648
|
start: number;
|
|
2649
2649
|
end: number;
|
|
2650
2650
|
id: string;
|
|
2651
|
+
prefix: string;
|
|
2651
2652
|
surface: "workspace_file";
|
|
2652
2653
|
selectedText: string;
|
|
2653
2654
|
sourceConversationId: string;
|
|
2654
2655
|
sourceHash: string;
|
|
2655
|
-
prefix: string;
|
|
2656
2656
|
suffix: string;
|
|
2657
2657
|
sourceFilePath: string;
|
|
2658
2658
|
sourceLibraryEntryId: string | null;
|
|
@@ -2664,11 +2664,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2664
2664
|
start: number;
|
|
2665
2665
|
end: number;
|
|
2666
2666
|
id: string;
|
|
2667
|
+
prefix: string;
|
|
2667
2668
|
surface: "local_file";
|
|
2668
2669
|
selectedText: string;
|
|
2669
2670
|
sourceConversationId: string;
|
|
2670
2671
|
sourceHash: string;
|
|
2671
|
-
prefix: string;
|
|
2672
2672
|
suffix: string;
|
|
2673
2673
|
sourceFilePath: string;
|
|
2674
2674
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -2688,11 +2688,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2688
2688
|
end: number;
|
|
2689
2689
|
id: string;
|
|
2690
2690
|
sourceMessageId: string;
|
|
2691
|
+
prefix: string;
|
|
2691
2692
|
surface: "assistant_body";
|
|
2692
2693
|
selectedText: string;
|
|
2693
2694
|
sourceConversationId: string;
|
|
2694
2695
|
sourceHash: string;
|
|
2695
|
-
prefix: string;
|
|
2696
2696
|
suffix: string;
|
|
2697
2697
|
attachmentIds: string[];
|
|
2698
2698
|
comment?: string | null | undefined;
|
|
@@ -2705,11 +2705,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2705
2705
|
generationSeqEnd: number;
|
|
2706
2706
|
id: string;
|
|
2707
2707
|
sourceMessageId: string;
|
|
2708
|
+
prefix: string;
|
|
2708
2709
|
surface: "process_transcript";
|
|
2709
2710
|
selectedText: string;
|
|
2710
2711
|
sourceConversationId: string;
|
|
2711
2712
|
sourceHash: string;
|
|
2712
|
-
prefix: string;
|
|
2713
2713
|
suffix: string;
|
|
2714
2714
|
attachmentIds: string[];
|
|
2715
2715
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -2732,11 +2732,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2732
2732
|
start: number;
|
|
2733
2733
|
end: number;
|
|
2734
2734
|
id: string;
|
|
2735
|
+
prefix: string;
|
|
2735
2736
|
surface: "workspace_file";
|
|
2736
2737
|
selectedText: string;
|
|
2737
2738
|
sourceConversationId: string;
|
|
2738
2739
|
sourceHash: string;
|
|
2739
|
-
prefix: string;
|
|
2740
2740
|
suffix: string;
|
|
2741
2741
|
attachmentIds: string[];
|
|
2742
2742
|
sourceFilePath: string;
|
|
@@ -2748,11 +2748,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2748
2748
|
start: number;
|
|
2749
2749
|
end: number;
|
|
2750
2750
|
id: string;
|
|
2751
|
+
prefix: string;
|
|
2751
2752
|
surface: "local_file";
|
|
2752
2753
|
selectedText: string;
|
|
2753
2754
|
sourceConversationId: string;
|
|
2754
2755
|
sourceHash: string;
|
|
2755
|
-
prefix: string;
|
|
2756
2756
|
suffix: string;
|
|
2757
2757
|
attachmentIds: string[];
|
|
2758
2758
|
sourceFilePath: string;
|
|
@@ -2790,11 +2790,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2790
2790
|
end: number;
|
|
2791
2791
|
id: string;
|
|
2792
2792
|
sourceMessageId: string;
|
|
2793
|
+
prefix: string;
|
|
2793
2794
|
surface: "assistant_body";
|
|
2794
2795
|
selectedText: string;
|
|
2795
2796
|
sourceConversationId: string;
|
|
2796
2797
|
sourceHash: string;
|
|
2797
|
-
prefix: string;
|
|
2798
2798
|
suffix: string;
|
|
2799
2799
|
comment?: unknown;
|
|
2800
2800
|
attachmentIds?: string[] | undefined;
|
|
@@ -2807,11 +2807,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2807
2807
|
generationSeqEnd: number;
|
|
2808
2808
|
id: string;
|
|
2809
2809
|
sourceMessageId: string;
|
|
2810
|
+
prefix: string;
|
|
2810
2811
|
surface: "process_transcript";
|
|
2811
2812
|
selectedText: string;
|
|
2812
2813
|
sourceConversationId: string;
|
|
2813
2814
|
sourceHash: string;
|
|
2814
|
-
prefix: string;
|
|
2815
2815
|
suffix: string;
|
|
2816
2816
|
transcriptKind: "assistant" | "thinking";
|
|
2817
2817
|
comment?: unknown;
|
|
@@ -2834,11 +2834,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2834
2834
|
start: number;
|
|
2835
2835
|
end: number;
|
|
2836
2836
|
id: string;
|
|
2837
|
+
prefix: string;
|
|
2837
2838
|
surface: "workspace_file";
|
|
2838
2839
|
selectedText: string;
|
|
2839
2840
|
sourceConversationId: string;
|
|
2840
2841
|
sourceHash: string;
|
|
2841
|
-
prefix: string;
|
|
2842
2842
|
suffix: string;
|
|
2843
2843
|
sourceFilePath: string;
|
|
2844
2844
|
sourceLibraryEntryId: string | null;
|
|
@@ -2850,11 +2850,11 @@ export declare const createChatFirstTurnSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2850
2850
|
start: number;
|
|
2851
2851
|
end: number;
|
|
2852
2852
|
id: string;
|
|
2853
|
+
prefix: string;
|
|
2853
2854
|
surface: "local_file";
|
|
2854
2855
|
selectedText: string;
|
|
2855
2856
|
sourceConversationId: string;
|
|
2856
2857
|
sourceHash: string;
|
|
2857
|
-
prefix: string;
|
|
2858
2858
|
suffix: string;
|
|
2859
2859
|
sourceFilePath: string;
|
|
2860
2860
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -2976,11 +2976,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2976
2976
|
end: number;
|
|
2977
2977
|
id: string;
|
|
2978
2978
|
sourceMessageId: string;
|
|
2979
|
+
prefix: string;
|
|
2979
2980
|
surface: "assistant_body";
|
|
2980
2981
|
selectedText: string;
|
|
2981
2982
|
sourceConversationId: string;
|
|
2982
2983
|
sourceHash: string;
|
|
2983
|
-
prefix: string;
|
|
2984
2984
|
suffix: string;
|
|
2985
2985
|
attachmentIds: string[];
|
|
2986
2986
|
comment?: string | null | undefined;
|
|
@@ -2990,11 +2990,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2990
2990
|
end: number;
|
|
2991
2991
|
id: string;
|
|
2992
2992
|
sourceMessageId: string;
|
|
2993
|
+
prefix: string;
|
|
2993
2994
|
surface: "assistant_body";
|
|
2994
2995
|
selectedText: string;
|
|
2995
2996
|
sourceConversationId: string;
|
|
2996
2997
|
sourceHash: string;
|
|
2997
|
-
prefix: string;
|
|
2998
2998
|
suffix: string;
|
|
2999
2999
|
comment?: unknown;
|
|
3000
3000
|
attachmentIds?: string[] | undefined;
|
|
@@ -3026,11 +3026,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3026
3026
|
generationSeqEnd: number;
|
|
3027
3027
|
id: string;
|
|
3028
3028
|
sourceMessageId: string;
|
|
3029
|
+
prefix: string;
|
|
3029
3030
|
surface: "process_transcript";
|
|
3030
3031
|
selectedText: string;
|
|
3031
3032
|
sourceConversationId: string;
|
|
3032
3033
|
sourceHash: string;
|
|
3033
|
-
prefix: string;
|
|
3034
3034
|
suffix: string;
|
|
3035
3035
|
attachmentIds: string[];
|
|
3036
3036
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3044,11 +3044,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3044
3044
|
generationSeqEnd: number;
|
|
3045
3045
|
id: string;
|
|
3046
3046
|
sourceMessageId: string;
|
|
3047
|
+
prefix: string;
|
|
3047
3048
|
surface: "process_transcript";
|
|
3048
3049
|
selectedText: string;
|
|
3049
3050
|
sourceConversationId: string;
|
|
3050
3051
|
sourceHash: string;
|
|
3051
|
-
prefix: string;
|
|
3052
3052
|
suffix: string;
|
|
3053
3053
|
transcriptKind: "assistant" | "thinking";
|
|
3054
3054
|
comment?: unknown;
|
|
@@ -3115,11 +3115,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3115
3115
|
start: number;
|
|
3116
3116
|
end: number;
|
|
3117
3117
|
id: string;
|
|
3118
|
+
prefix: string;
|
|
3118
3119
|
surface: "workspace_file";
|
|
3119
3120
|
selectedText: string;
|
|
3120
3121
|
sourceConversationId: string;
|
|
3121
3122
|
sourceHash: string;
|
|
3122
|
-
prefix: string;
|
|
3123
3123
|
suffix: string;
|
|
3124
3124
|
attachmentIds: string[];
|
|
3125
3125
|
sourceFilePath: string;
|
|
@@ -3131,11 +3131,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3131
3131
|
start: number;
|
|
3132
3132
|
end: number;
|
|
3133
3133
|
id: string;
|
|
3134
|
+
prefix: string;
|
|
3134
3135
|
surface: "workspace_file";
|
|
3135
3136
|
selectedText: string;
|
|
3136
3137
|
sourceConversationId: string;
|
|
3137
3138
|
sourceHash: string;
|
|
3138
|
-
prefix: string;
|
|
3139
3139
|
suffix: string;
|
|
3140
3140
|
sourceFilePath: string;
|
|
3141
3141
|
sourceLibraryEntryId: string | null;
|
|
@@ -3163,11 +3163,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3163
3163
|
start: number;
|
|
3164
3164
|
end: number;
|
|
3165
3165
|
id: string;
|
|
3166
|
+
prefix: string;
|
|
3166
3167
|
surface: "local_file";
|
|
3167
3168
|
selectedText: string;
|
|
3168
3169
|
sourceConversationId: string;
|
|
3169
3170
|
sourceHash: string;
|
|
3170
|
-
prefix: string;
|
|
3171
3171
|
suffix: string;
|
|
3172
3172
|
attachmentIds: string[];
|
|
3173
3173
|
sourceFilePath: string;
|
|
@@ -3178,11 +3178,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3178
3178
|
start: number;
|
|
3179
3179
|
end: number;
|
|
3180
3180
|
id: string;
|
|
3181
|
+
prefix: string;
|
|
3181
3182
|
surface: "local_file";
|
|
3182
3183
|
selectedText: string;
|
|
3183
3184
|
sourceConversationId: string;
|
|
3184
3185
|
sourceHash: string;
|
|
3185
|
-
prefix: string;
|
|
3186
3186
|
suffix: string;
|
|
3187
3187
|
sourceFilePath: string;
|
|
3188
3188
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -3194,11 +3194,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3194
3194
|
end: number;
|
|
3195
3195
|
id: string;
|
|
3196
3196
|
sourceMessageId: string;
|
|
3197
|
+
prefix: string;
|
|
3197
3198
|
surface: "assistant_body";
|
|
3198
3199
|
selectedText: string;
|
|
3199
3200
|
sourceConversationId: string;
|
|
3200
3201
|
sourceHash: string;
|
|
3201
|
-
prefix: string;
|
|
3202
3202
|
suffix: string;
|
|
3203
3203
|
attachmentIds: string[];
|
|
3204
3204
|
comment?: string | null | undefined;
|
|
@@ -3211,11 +3211,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3211
3211
|
generationSeqEnd: number;
|
|
3212
3212
|
id: string;
|
|
3213
3213
|
sourceMessageId: string;
|
|
3214
|
+
prefix: string;
|
|
3214
3215
|
surface: "process_transcript";
|
|
3215
3216
|
selectedText: string;
|
|
3216
3217
|
sourceConversationId: string;
|
|
3217
3218
|
sourceHash: string;
|
|
3218
|
-
prefix: string;
|
|
3219
3219
|
suffix: string;
|
|
3220
3220
|
attachmentIds: string[];
|
|
3221
3221
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3238,11 +3238,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3238
3238
|
start: number;
|
|
3239
3239
|
end: number;
|
|
3240
3240
|
id: string;
|
|
3241
|
+
prefix: string;
|
|
3241
3242
|
surface: "workspace_file";
|
|
3242
3243
|
selectedText: string;
|
|
3243
3244
|
sourceConversationId: string;
|
|
3244
3245
|
sourceHash: string;
|
|
3245
|
-
prefix: string;
|
|
3246
3246
|
suffix: string;
|
|
3247
3247
|
attachmentIds: string[];
|
|
3248
3248
|
sourceFilePath: string;
|
|
@@ -3254,11 +3254,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3254
3254
|
start: number;
|
|
3255
3255
|
end: number;
|
|
3256
3256
|
id: string;
|
|
3257
|
+
prefix: string;
|
|
3257
3258
|
surface: "local_file";
|
|
3258
3259
|
selectedText: string;
|
|
3259
3260
|
sourceConversationId: string;
|
|
3260
3261
|
sourceHash: string;
|
|
3261
|
-
prefix: string;
|
|
3262
3262
|
suffix: string;
|
|
3263
3263
|
attachmentIds: string[];
|
|
3264
3264
|
sourceFilePath: string;
|
|
@@ -3270,11 +3270,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3270
3270
|
end: number;
|
|
3271
3271
|
id: string;
|
|
3272
3272
|
sourceMessageId: string;
|
|
3273
|
+
prefix: string;
|
|
3273
3274
|
surface: "assistant_body";
|
|
3274
3275
|
selectedText: string;
|
|
3275
3276
|
sourceConversationId: string;
|
|
3276
3277
|
sourceHash: string;
|
|
3277
|
-
prefix: string;
|
|
3278
3278
|
suffix: string;
|
|
3279
3279
|
comment?: unknown;
|
|
3280
3280
|
attachmentIds?: string[] | undefined;
|
|
@@ -3287,11 +3287,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3287
3287
|
generationSeqEnd: number;
|
|
3288
3288
|
id: string;
|
|
3289
3289
|
sourceMessageId: string;
|
|
3290
|
+
prefix: string;
|
|
3290
3291
|
surface: "process_transcript";
|
|
3291
3292
|
selectedText: string;
|
|
3292
3293
|
sourceConversationId: string;
|
|
3293
3294
|
sourceHash: string;
|
|
3294
|
-
prefix: string;
|
|
3295
3295
|
suffix: string;
|
|
3296
3296
|
transcriptKind: "assistant" | "thinking";
|
|
3297
3297
|
comment?: unknown;
|
|
@@ -3314,11 +3314,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3314
3314
|
start: number;
|
|
3315
3315
|
end: number;
|
|
3316
3316
|
id: string;
|
|
3317
|
+
prefix: string;
|
|
3317
3318
|
surface: "workspace_file";
|
|
3318
3319
|
selectedText: string;
|
|
3319
3320
|
sourceConversationId: string;
|
|
3320
3321
|
sourceHash: string;
|
|
3321
|
-
prefix: string;
|
|
3322
3322
|
suffix: string;
|
|
3323
3323
|
sourceFilePath: string;
|
|
3324
3324
|
sourceLibraryEntryId: string | null;
|
|
@@ -3330,11 +3330,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3330
3330
|
start: number;
|
|
3331
3331
|
end: number;
|
|
3332
3332
|
id: string;
|
|
3333
|
+
prefix: string;
|
|
3333
3334
|
surface: "local_file";
|
|
3334
3335
|
selectedText: string;
|
|
3335
3336
|
sourceConversationId: string;
|
|
3336
3337
|
sourceHash: string;
|
|
3337
|
-
prefix: string;
|
|
3338
3338
|
suffix: string;
|
|
3339
3339
|
sourceFilePath: string;
|
|
3340
3340
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -3346,11 +3346,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3346
3346
|
end: number;
|
|
3347
3347
|
id: string;
|
|
3348
3348
|
sourceMessageId: string;
|
|
3349
|
+
prefix: string;
|
|
3349
3350
|
surface: "assistant_body";
|
|
3350
3351
|
selectedText: string;
|
|
3351
3352
|
sourceConversationId: string;
|
|
3352
3353
|
sourceHash: string;
|
|
3353
|
-
prefix: string;
|
|
3354
3354
|
suffix: string;
|
|
3355
3355
|
attachmentIds: string[];
|
|
3356
3356
|
comment?: string | null | undefined;
|
|
@@ -3363,11 +3363,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3363
3363
|
generationSeqEnd: number;
|
|
3364
3364
|
id: string;
|
|
3365
3365
|
sourceMessageId: string;
|
|
3366
|
+
prefix: string;
|
|
3366
3367
|
surface: "process_transcript";
|
|
3367
3368
|
selectedText: string;
|
|
3368
3369
|
sourceConversationId: string;
|
|
3369
3370
|
sourceHash: string;
|
|
3370
|
-
prefix: string;
|
|
3371
3371
|
suffix: string;
|
|
3372
3372
|
attachmentIds: string[];
|
|
3373
3373
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3390,11 +3390,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3390
3390
|
start: number;
|
|
3391
3391
|
end: number;
|
|
3392
3392
|
id: string;
|
|
3393
|
+
prefix: string;
|
|
3393
3394
|
surface: "workspace_file";
|
|
3394
3395
|
selectedText: string;
|
|
3395
3396
|
sourceConversationId: string;
|
|
3396
3397
|
sourceHash: string;
|
|
3397
|
-
prefix: string;
|
|
3398
3398
|
suffix: string;
|
|
3399
3399
|
attachmentIds: string[];
|
|
3400
3400
|
sourceFilePath: string;
|
|
@@ -3406,11 +3406,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3406
3406
|
start: number;
|
|
3407
3407
|
end: number;
|
|
3408
3408
|
id: string;
|
|
3409
|
+
prefix: string;
|
|
3409
3410
|
surface: "local_file";
|
|
3410
3411
|
selectedText: string;
|
|
3411
3412
|
sourceConversationId: string;
|
|
3412
3413
|
sourceHash: string;
|
|
3413
|
-
prefix: string;
|
|
3414
3414
|
suffix: string;
|
|
3415
3415
|
attachmentIds: string[];
|
|
3416
3416
|
sourceFilePath: string;
|
|
@@ -3422,11 +3422,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3422
3422
|
end: number;
|
|
3423
3423
|
id: string;
|
|
3424
3424
|
sourceMessageId: string;
|
|
3425
|
+
prefix: string;
|
|
3425
3426
|
surface: "assistant_body";
|
|
3426
3427
|
selectedText: string;
|
|
3427
3428
|
sourceConversationId: string;
|
|
3428
3429
|
sourceHash: string;
|
|
3429
|
-
prefix: string;
|
|
3430
3430
|
suffix: string;
|
|
3431
3431
|
comment?: unknown;
|
|
3432
3432
|
attachmentIds?: string[] | undefined;
|
|
@@ -3439,11 +3439,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3439
3439
|
generationSeqEnd: number;
|
|
3440
3440
|
id: string;
|
|
3441
3441
|
sourceMessageId: string;
|
|
3442
|
+
prefix: string;
|
|
3442
3443
|
surface: "process_transcript";
|
|
3443
3444
|
selectedText: string;
|
|
3444
3445
|
sourceConversationId: string;
|
|
3445
3446
|
sourceHash: string;
|
|
3446
|
-
prefix: string;
|
|
3447
3447
|
suffix: string;
|
|
3448
3448
|
transcriptKind: "assistant" | "thinking";
|
|
3449
3449
|
comment?: unknown;
|
|
@@ -3466,11 +3466,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3466
3466
|
start: number;
|
|
3467
3467
|
end: number;
|
|
3468
3468
|
id: string;
|
|
3469
|
+
prefix: string;
|
|
3469
3470
|
surface: "workspace_file";
|
|
3470
3471
|
selectedText: string;
|
|
3471
3472
|
sourceConversationId: string;
|
|
3472
3473
|
sourceHash: string;
|
|
3473
|
-
prefix: string;
|
|
3474
3474
|
suffix: string;
|
|
3475
3475
|
sourceFilePath: string;
|
|
3476
3476
|
sourceLibraryEntryId: string | null;
|
|
@@ -3482,11 +3482,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3482
3482
|
start: number;
|
|
3483
3483
|
end: number;
|
|
3484
3484
|
id: string;
|
|
3485
|
+
prefix: string;
|
|
3485
3486
|
surface: "local_file";
|
|
3486
3487
|
selectedText: string;
|
|
3487
3488
|
sourceConversationId: string;
|
|
3488
3489
|
sourceHash: string;
|
|
3489
|
-
prefix: string;
|
|
3490
3490
|
suffix: string;
|
|
3491
3491
|
sourceFilePath: string;
|
|
3492
3492
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -3507,11 +3507,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3507
3507
|
end: number;
|
|
3508
3508
|
id: string;
|
|
3509
3509
|
sourceMessageId: string;
|
|
3510
|
+
prefix: string;
|
|
3510
3511
|
surface: "assistant_body";
|
|
3511
3512
|
selectedText: string;
|
|
3512
3513
|
sourceConversationId: string;
|
|
3513
3514
|
sourceHash: string;
|
|
3514
|
-
prefix: string;
|
|
3515
3515
|
suffix: string;
|
|
3516
3516
|
attachmentIds: string[];
|
|
3517
3517
|
comment?: string | null | undefined;
|
|
@@ -3524,11 +3524,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3524
3524
|
generationSeqEnd: number;
|
|
3525
3525
|
id: string;
|
|
3526
3526
|
sourceMessageId: string;
|
|
3527
|
+
prefix: string;
|
|
3527
3528
|
surface: "process_transcript";
|
|
3528
3529
|
selectedText: string;
|
|
3529
3530
|
sourceConversationId: string;
|
|
3530
3531
|
sourceHash: string;
|
|
3531
|
-
prefix: string;
|
|
3532
3532
|
suffix: string;
|
|
3533
3533
|
attachmentIds: string[];
|
|
3534
3534
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3551,11 +3551,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3551
3551
|
start: number;
|
|
3552
3552
|
end: number;
|
|
3553
3553
|
id: string;
|
|
3554
|
+
prefix: string;
|
|
3554
3555
|
surface: "workspace_file";
|
|
3555
3556
|
selectedText: string;
|
|
3556
3557
|
sourceConversationId: string;
|
|
3557
3558
|
sourceHash: string;
|
|
3558
|
-
prefix: string;
|
|
3559
3559
|
suffix: string;
|
|
3560
3560
|
attachmentIds: string[];
|
|
3561
3561
|
sourceFilePath: string;
|
|
@@ -3567,11 +3567,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3567
3567
|
start: number;
|
|
3568
3568
|
end: number;
|
|
3569
3569
|
id: string;
|
|
3570
|
+
prefix: string;
|
|
3570
3571
|
surface: "local_file";
|
|
3571
3572
|
selectedText: string;
|
|
3572
3573
|
sourceConversationId: string;
|
|
3573
3574
|
sourceHash: string;
|
|
3574
|
-
prefix: string;
|
|
3575
3575
|
suffix: string;
|
|
3576
3576
|
attachmentIds: string[];
|
|
3577
3577
|
sourceFilePath: string;
|
|
@@ -3590,11 +3590,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3590
3590
|
end: number;
|
|
3591
3591
|
id: string;
|
|
3592
3592
|
sourceMessageId: string;
|
|
3593
|
+
prefix: string;
|
|
3593
3594
|
surface: "assistant_body";
|
|
3594
3595
|
selectedText: string;
|
|
3595
3596
|
sourceConversationId: string;
|
|
3596
3597
|
sourceHash: string;
|
|
3597
|
-
prefix: string;
|
|
3598
3598
|
suffix: string;
|
|
3599
3599
|
comment?: unknown;
|
|
3600
3600
|
attachmentIds?: string[] | undefined;
|
|
@@ -3607,11 +3607,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3607
3607
|
generationSeqEnd: number;
|
|
3608
3608
|
id: string;
|
|
3609
3609
|
sourceMessageId: string;
|
|
3610
|
+
prefix: string;
|
|
3610
3611
|
surface: "process_transcript";
|
|
3611
3612
|
selectedText: string;
|
|
3612
3613
|
sourceConversationId: string;
|
|
3613
3614
|
sourceHash: string;
|
|
3614
|
-
prefix: string;
|
|
3615
3615
|
suffix: string;
|
|
3616
3616
|
transcriptKind: "assistant" | "thinking";
|
|
3617
3617
|
comment?: unknown;
|
|
@@ -3634,11 +3634,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3634
3634
|
start: number;
|
|
3635
3635
|
end: number;
|
|
3636
3636
|
id: string;
|
|
3637
|
+
prefix: string;
|
|
3637
3638
|
surface: "workspace_file";
|
|
3638
3639
|
selectedText: string;
|
|
3639
3640
|
sourceConversationId: string;
|
|
3640
3641
|
sourceHash: string;
|
|
3641
|
-
prefix: string;
|
|
3642
3642
|
suffix: string;
|
|
3643
3643
|
sourceFilePath: string;
|
|
3644
3644
|
sourceLibraryEntryId: string | null;
|
|
@@ -3650,11 +3650,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3650
3650
|
start: number;
|
|
3651
3651
|
end: number;
|
|
3652
3652
|
id: string;
|
|
3653
|
+
prefix: string;
|
|
3653
3654
|
surface: "local_file";
|
|
3654
3655
|
selectedText: string;
|
|
3655
3656
|
sourceConversationId: string;
|
|
3656
3657
|
sourceHash: string;
|
|
3657
|
-
prefix: string;
|
|
3658
3658
|
suffix: string;
|
|
3659
3659
|
sourceFilePath: string;
|
|
3660
3660
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -3673,11 +3673,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3673
3673
|
end: number;
|
|
3674
3674
|
id: string;
|
|
3675
3675
|
sourceMessageId: string;
|
|
3676
|
+
prefix: string;
|
|
3676
3677
|
surface: "assistant_body";
|
|
3677
3678
|
selectedText: string;
|
|
3678
3679
|
sourceConversationId: string;
|
|
3679
3680
|
sourceHash: string;
|
|
3680
|
-
prefix: string;
|
|
3681
3681
|
suffix: string;
|
|
3682
3682
|
attachmentIds: string[];
|
|
3683
3683
|
comment?: string | null | undefined;
|
|
@@ -3690,11 +3690,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3690
3690
|
generationSeqEnd: number;
|
|
3691
3691
|
id: string;
|
|
3692
3692
|
sourceMessageId: string;
|
|
3693
|
+
prefix: string;
|
|
3693
3694
|
surface: "process_transcript";
|
|
3694
3695
|
selectedText: string;
|
|
3695
3696
|
sourceConversationId: string;
|
|
3696
3697
|
sourceHash: string;
|
|
3697
|
-
prefix: string;
|
|
3698
3698
|
suffix: string;
|
|
3699
3699
|
attachmentIds: string[];
|
|
3700
3700
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3717,11 +3717,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3717
3717
|
start: number;
|
|
3718
3718
|
end: number;
|
|
3719
3719
|
id: string;
|
|
3720
|
+
prefix: string;
|
|
3720
3721
|
surface: "workspace_file";
|
|
3721
3722
|
selectedText: string;
|
|
3722
3723
|
sourceConversationId: string;
|
|
3723
3724
|
sourceHash: string;
|
|
3724
|
-
prefix: string;
|
|
3725
3725
|
suffix: string;
|
|
3726
3726
|
attachmentIds: string[];
|
|
3727
3727
|
sourceFilePath: string;
|
|
@@ -3733,11 +3733,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3733
3733
|
start: number;
|
|
3734
3734
|
end: number;
|
|
3735
3735
|
id: string;
|
|
3736
|
+
prefix: string;
|
|
3736
3737
|
surface: "local_file";
|
|
3737
3738
|
selectedText: string;
|
|
3738
3739
|
sourceConversationId: string;
|
|
3739
3740
|
sourceHash: string;
|
|
3740
|
-
prefix: string;
|
|
3741
3741
|
suffix: string;
|
|
3742
3742
|
attachmentIds: string[];
|
|
3743
3743
|
sourceFilePath: string;
|
|
@@ -3756,11 +3756,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3756
3756
|
end: number;
|
|
3757
3757
|
id: string;
|
|
3758
3758
|
sourceMessageId: string;
|
|
3759
|
+
prefix: string;
|
|
3759
3760
|
surface: "assistant_body";
|
|
3760
3761
|
selectedText: string;
|
|
3761
3762
|
sourceConversationId: string;
|
|
3762
3763
|
sourceHash: string;
|
|
3763
|
-
prefix: string;
|
|
3764
3764
|
suffix: string;
|
|
3765
3765
|
comment?: unknown;
|
|
3766
3766
|
attachmentIds?: string[] | undefined;
|
|
@@ -3773,11 +3773,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3773
3773
|
generationSeqEnd: number;
|
|
3774
3774
|
id: string;
|
|
3775
3775
|
sourceMessageId: string;
|
|
3776
|
+
prefix: string;
|
|
3776
3777
|
surface: "process_transcript";
|
|
3777
3778
|
selectedText: string;
|
|
3778
3779
|
sourceConversationId: string;
|
|
3779
3780
|
sourceHash: string;
|
|
3780
|
-
prefix: string;
|
|
3781
3781
|
suffix: string;
|
|
3782
3782
|
transcriptKind: "assistant" | "thinking";
|
|
3783
3783
|
comment?: unknown;
|
|
@@ -3800,11 +3800,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3800
3800
|
start: number;
|
|
3801
3801
|
end: number;
|
|
3802
3802
|
id: string;
|
|
3803
|
+
prefix: string;
|
|
3803
3804
|
surface: "workspace_file";
|
|
3804
3805
|
selectedText: string;
|
|
3805
3806
|
sourceConversationId: string;
|
|
3806
3807
|
sourceHash: string;
|
|
3807
|
-
prefix: string;
|
|
3808
3808
|
suffix: string;
|
|
3809
3809
|
sourceFilePath: string;
|
|
3810
3810
|
sourceLibraryEntryId: string | null;
|
|
@@ -3816,11 +3816,11 @@ export declare const addChatMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3816
3816
|
start: number;
|
|
3817
3817
|
end: number;
|
|
3818
3818
|
id: string;
|
|
3819
|
+
prefix: string;
|
|
3819
3820
|
surface: "local_file";
|
|
3820
3821
|
selectedText: string;
|
|
3821
3822
|
sourceConversationId: string;
|
|
3822
3823
|
sourceHash: string;
|
|
3823
|
-
prefix: string;
|
|
3824
3824
|
suffix: string;
|
|
3825
3825
|
sourceFilePath: string;
|
|
3826
3826
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -3854,11 +3854,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3854
3854
|
end: number;
|
|
3855
3855
|
id: string;
|
|
3856
3856
|
sourceMessageId: string;
|
|
3857
|
+
prefix: string;
|
|
3857
3858
|
surface: "assistant_body";
|
|
3858
3859
|
selectedText: string;
|
|
3859
3860
|
sourceConversationId: string;
|
|
3860
3861
|
sourceHash: string;
|
|
3861
|
-
prefix: string;
|
|
3862
3862
|
suffix: string;
|
|
3863
3863
|
attachmentIds: string[];
|
|
3864
3864
|
comment?: string | null | undefined;
|
|
@@ -3868,11 +3868,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3868
3868
|
end: number;
|
|
3869
3869
|
id: string;
|
|
3870
3870
|
sourceMessageId: string;
|
|
3871
|
+
prefix: string;
|
|
3871
3872
|
surface: "assistant_body";
|
|
3872
3873
|
selectedText: string;
|
|
3873
3874
|
sourceConversationId: string;
|
|
3874
3875
|
sourceHash: string;
|
|
3875
|
-
prefix: string;
|
|
3876
3876
|
suffix: string;
|
|
3877
3877
|
comment?: unknown;
|
|
3878
3878
|
attachmentIds?: string[] | undefined;
|
|
@@ -3904,11 +3904,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3904
3904
|
generationSeqEnd: number;
|
|
3905
3905
|
id: string;
|
|
3906
3906
|
sourceMessageId: string;
|
|
3907
|
+
prefix: string;
|
|
3907
3908
|
surface: "process_transcript";
|
|
3908
3909
|
selectedText: string;
|
|
3909
3910
|
sourceConversationId: string;
|
|
3910
3911
|
sourceHash: string;
|
|
3911
|
-
prefix: string;
|
|
3912
3912
|
suffix: string;
|
|
3913
3913
|
attachmentIds: string[];
|
|
3914
3914
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -3922,11 +3922,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3922
3922
|
generationSeqEnd: number;
|
|
3923
3923
|
id: string;
|
|
3924
3924
|
sourceMessageId: string;
|
|
3925
|
+
prefix: string;
|
|
3925
3926
|
surface: "process_transcript";
|
|
3926
3927
|
selectedText: string;
|
|
3927
3928
|
sourceConversationId: string;
|
|
3928
3929
|
sourceHash: string;
|
|
3929
|
-
prefix: string;
|
|
3930
3930
|
suffix: string;
|
|
3931
3931
|
transcriptKind: "assistant" | "thinking";
|
|
3932
3932
|
comment?: unknown;
|
|
@@ -3993,11 +3993,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3993
3993
|
start: number;
|
|
3994
3994
|
end: number;
|
|
3995
3995
|
id: string;
|
|
3996
|
+
prefix: string;
|
|
3996
3997
|
surface: "workspace_file";
|
|
3997
3998
|
selectedText: string;
|
|
3998
3999
|
sourceConversationId: string;
|
|
3999
4000
|
sourceHash: string;
|
|
4000
|
-
prefix: string;
|
|
4001
4001
|
suffix: string;
|
|
4002
4002
|
attachmentIds: string[];
|
|
4003
4003
|
sourceFilePath: string;
|
|
@@ -4009,11 +4009,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4009
4009
|
start: number;
|
|
4010
4010
|
end: number;
|
|
4011
4011
|
id: string;
|
|
4012
|
+
prefix: string;
|
|
4012
4013
|
surface: "workspace_file";
|
|
4013
4014
|
selectedText: string;
|
|
4014
4015
|
sourceConversationId: string;
|
|
4015
4016
|
sourceHash: string;
|
|
4016
|
-
prefix: string;
|
|
4017
4017
|
suffix: string;
|
|
4018
4018
|
sourceFilePath: string;
|
|
4019
4019
|
sourceLibraryEntryId: string | null;
|
|
@@ -4041,11 +4041,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4041
4041
|
start: number;
|
|
4042
4042
|
end: number;
|
|
4043
4043
|
id: string;
|
|
4044
|
+
prefix: string;
|
|
4044
4045
|
surface: "local_file";
|
|
4045
4046
|
selectedText: string;
|
|
4046
4047
|
sourceConversationId: string;
|
|
4047
4048
|
sourceHash: string;
|
|
4048
|
-
prefix: string;
|
|
4049
4049
|
suffix: string;
|
|
4050
4050
|
attachmentIds: string[];
|
|
4051
4051
|
sourceFilePath: string;
|
|
@@ -4056,11 +4056,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4056
4056
|
start: number;
|
|
4057
4057
|
end: number;
|
|
4058
4058
|
id: string;
|
|
4059
|
+
prefix: string;
|
|
4059
4060
|
surface: "local_file";
|
|
4060
4061
|
selectedText: string;
|
|
4061
4062
|
sourceConversationId: string;
|
|
4062
4063
|
sourceHash: string;
|
|
4063
|
-
prefix: string;
|
|
4064
4064
|
suffix: string;
|
|
4065
4065
|
sourceFilePath: string;
|
|
4066
4066
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4072,11 +4072,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4072
4072
|
end: number;
|
|
4073
4073
|
id: string;
|
|
4074
4074
|
sourceMessageId: string;
|
|
4075
|
+
prefix: string;
|
|
4075
4076
|
surface: "assistant_body";
|
|
4076
4077
|
selectedText: string;
|
|
4077
4078
|
sourceConversationId: string;
|
|
4078
4079
|
sourceHash: string;
|
|
4079
|
-
prefix: string;
|
|
4080
4080
|
suffix: string;
|
|
4081
4081
|
attachmentIds: string[];
|
|
4082
4082
|
comment?: string | null | undefined;
|
|
@@ -4089,11 +4089,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4089
4089
|
generationSeqEnd: number;
|
|
4090
4090
|
id: string;
|
|
4091
4091
|
sourceMessageId: string;
|
|
4092
|
+
prefix: string;
|
|
4092
4093
|
surface: "process_transcript";
|
|
4093
4094
|
selectedText: string;
|
|
4094
4095
|
sourceConversationId: string;
|
|
4095
4096
|
sourceHash: string;
|
|
4096
|
-
prefix: string;
|
|
4097
4097
|
suffix: string;
|
|
4098
4098
|
attachmentIds: string[];
|
|
4099
4099
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -4116,11 +4116,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4116
4116
|
start: number;
|
|
4117
4117
|
end: number;
|
|
4118
4118
|
id: string;
|
|
4119
|
+
prefix: string;
|
|
4119
4120
|
surface: "workspace_file";
|
|
4120
4121
|
selectedText: string;
|
|
4121
4122
|
sourceConversationId: string;
|
|
4122
4123
|
sourceHash: string;
|
|
4123
|
-
prefix: string;
|
|
4124
4124
|
suffix: string;
|
|
4125
4125
|
attachmentIds: string[];
|
|
4126
4126
|
sourceFilePath: string;
|
|
@@ -4132,11 +4132,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4132
4132
|
start: number;
|
|
4133
4133
|
end: number;
|
|
4134
4134
|
id: string;
|
|
4135
|
+
prefix: string;
|
|
4135
4136
|
surface: "local_file";
|
|
4136
4137
|
selectedText: string;
|
|
4137
4138
|
sourceConversationId: string;
|
|
4138
4139
|
sourceHash: string;
|
|
4139
|
-
prefix: string;
|
|
4140
4140
|
suffix: string;
|
|
4141
4141
|
attachmentIds: string[];
|
|
4142
4142
|
sourceFilePath: string;
|
|
@@ -4148,11 +4148,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4148
4148
|
end: number;
|
|
4149
4149
|
id: string;
|
|
4150
4150
|
sourceMessageId: string;
|
|
4151
|
+
prefix: string;
|
|
4151
4152
|
surface: "assistant_body";
|
|
4152
4153
|
selectedText: string;
|
|
4153
4154
|
sourceConversationId: string;
|
|
4154
4155
|
sourceHash: string;
|
|
4155
|
-
prefix: string;
|
|
4156
4156
|
suffix: string;
|
|
4157
4157
|
comment?: unknown;
|
|
4158
4158
|
attachmentIds?: string[] | undefined;
|
|
@@ -4165,11 +4165,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4165
4165
|
generationSeqEnd: number;
|
|
4166
4166
|
id: string;
|
|
4167
4167
|
sourceMessageId: string;
|
|
4168
|
+
prefix: string;
|
|
4168
4169
|
surface: "process_transcript";
|
|
4169
4170
|
selectedText: string;
|
|
4170
4171
|
sourceConversationId: string;
|
|
4171
4172
|
sourceHash: string;
|
|
4172
|
-
prefix: string;
|
|
4173
4173
|
suffix: string;
|
|
4174
4174
|
transcriptKind: "assistant" | "thinking";
|
|
4175
4175
|
comment?: unknown;
|
|
@@ -4192,11 +4192,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4192
4192
|
start: number;
|
|
4193
4193
|
end: number;
|
|
4194
4194
|
id: string;
|
|
4195
|
+
prefix: string;
|
|
4195
4196
|
surface: "workspace_file";
|
|
4196
4197
|
selectedText: string;
|
|
4197
4198
|
sourceConversationId: string;
|
|
4198
4199
|
sourceHash: string;
|
|
4199
|
-
prefix: string;
|
|
4200
4200
|
suffix: string;
|
|
4201
4201
|
sourceFilePath: string;
|
|
4202
4202
|
sourceLibraryEntryId: string | null;
|
|
@@ -4208,11 +4208,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4208
4208
|
start: number;
|
|
4209
4209
|
end: number;
|
|
4210
4210
|
id: string;
|
|
4211
|
+
prefix: string;
|
|
4211
4212
|
surface: "local_file";
|
|
4212
4213
|
selectedText: string;
|
|
4213
4214
|
sourceConversationId: string;
|
|
4214
4215
|
sourceHash: string;
|
|
4215
|
-
prefix: string;
|
|
4216
4216
|
suffix: string;
|
|
4217
4217
|
sourceFilePath: string;
|
|
4218
4218
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4224,11 +4224,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4224
4224
|
end: number;
|
|
4225
4225
|
id: string;
|
|
4226
4226
|
sourceMessageId: string;
|
|
4227
|
+
prefix: string;
|
|
4227
4228
|
surface: "assistant_body";
|
|
4228
4229
|
selectedText: string;
|
|
4229
4230
|
sourceConversationId: string;
|
|
4230
4231
|
sourceHash: string;
|
|
4231
|
-
prefix: string;
|
|
4232
4232
|
suffix: string;
|
|
4233
4233
|
attachmentIds: string[];
|
|
4234
4234
|
comment?: string | null | undefined;
|
|
@@ -4241,11 +4241,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4241
4241
|
generationSeqEnd: number;
|
|
4242
4242
|
id: string;
|
|
4243
4243
|
sourceMessageId: string;
|
|
4244
|
+
prefix: string;
|
|
4244
4245
|
surface: "process_transcript";
|
|
4245
4246
|
selectedText: string;
|
|
4246
4247
|
sourceConversationId: string;
|
|
4247
4248
|
sourceHash: string;
|
|
4248
|
-
prefix: string;
|
|
4249
4249
|
suffix: string;
|
|
4250
4250
|
attachmentIds: string[];
|
|
4251
4251
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -4268,11 +4268,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4268
4268
|
start: number;
|
|
4269
4269
|
end: number;
|
|
4270
4270
|
id: string;
|
|
4271
|
+
prefix: string;
|
|
4271
4272
|
surface: "workspace_file";
|
|
4272
4273
|
selectedText: string;
|
|
4273
4274
|
sourceConversationId: string;
|
|
4274
4275
|
sourceHash: string;
|
|
4275
|
-
prefix: string;
|
|
4276
4276
|
suffix: string;
|
|
4277
4277
|
attachmentIds: string[];
|
|
4278
4278
|
sourceFilePath: string;
|
|
@@ -4284,11 +4284,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4284
4284
|
start: number;
|
|
4285
4285
|
end: number;
|
|
4286
4286
|
id: string;
|
|
4287
|
+
prefix: string;
|
|
4287
4288
|
surface: "local_file";
|
|
4288
4289
|
selectedText: string;
|
|
4289
4290
|
sourceConversationId: string;
|
|
4290
4291
|
sourceHash: string;
|
|
4291
|
-
prefix: string;
|
|
4292
4292
|
suffix: string;
|
|
4293
4293
|
attachmentIds: string[];
|
|
4294
4294
|
sourceFilePath: string;
|
|
@@ -4300,11 +4300,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4300
4300
|
end: number;
|
|
4301
4301
|
id: string;
|
|
4302
4302
|
sourceMessageId: string;
|
|
4303
|
+
prefix: string;
|
|
4303
4304
|
surface: "assistant_body";
|
|
4304
4305
|
selectedText: string;
|
|
4305
4306
|
sourceConversationId: string;
|
|
4306
4307
|
sourceHash: string;
|
|
4307
|
-
prefix: string;
|
|
4308
4308
|
suffix: string;
|
|
4309
4309
|
comment?: unknown;
|
|
4310
4310
|
attachmentIds?: string[] | undefined;
|
|
@@ -4317,11 +4317,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4317
4317
|
generationSeqEnd: number;
|
|
4318
4318
|
id: string;
|
|
4319
4319
|
sourceMessageId: string;
|
|
4320
|
+
prefix: string;
|
|
4320
4321
|
surface: "process_transcript";
|
|
4321
4322
|
selectedText: string;
|
|
4322
4323
|
sourceConversationId: string;
|
|
4323
4324
|
sourceHash: string;
|
|
4324
|
-
prefix: string;
|
|
4325
4325
|
suffix: string;
|
|
4326
4326
|
transcriptKind: "assistant" | "thinking";
|
|
4327
4327
|
comment?: unknown;
|
|
@@ -4344,11 +4344,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4344
4344
|
start: number;
|
|
4345
4345
|
end: number;
|
|
4346
4346
|
id: string;
|
|
4347
|
+
prefix: string;
|
|
4347
4348
|
surface: "workspace_file";
|
|
4348
4349
|
selectedText: string;
|
|
4349
4350
|
sourceConversationId: string;
|
|
4350
4351
|
sourceHash: string;
|
|
4351
|
-
prefix: string;
|
|
4352
4352
|
suffix: string;
|
|
4353
4353
|
sourceFilePath: string;
|
|
4354
4354
|
sourceLibraryEntryId: string | null;
|
|
@@ -4360,11 +4360,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4360
4360
|
start: number;
|
|
4361
4361
|
end: number;
|
|
4362
4362
|
id: string;
|
|
4363
|
+
prefix: string;
|
|
4363
4364
|
surface: "local_file";
|
|
4364
4365
|
selectedText: string;
|
|
4365
4366
|
sourceConversationId: string;
|
|
4366
4367
|
sourceHash: string;
|
|
4367
|
-
prefix: string;
|
|
4368
4368
|
suffix: string;
|
|
4369
4369
|
sourceFilePath: string;
|
|
4370
4370
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4387,11 +4387,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4387
4387
|
end: number;
|
|
4388
4388
|
id: string;
|
|
4389
4389
|
sourceMessageId: string;
|
|
4390
|
+
prefix: string;
|
|
4390
4391
|
surface: "assistant_body";
|
|
4391
4392
|
selectedText: string;
|
|
4392
4393
|
sourceConversationId: string;
|
|
4393
4394
|
sourceHash: string;
|
|
4394
|
-
prefix: string;
|
|
4395
4395
|
suffix: string;
|
|
4396
4396
|
attachmentIds: string[];
|
|
4397
4397
|
comment?: string | null | undefined;
|
|
@@ -4404,11 +4404,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4404
4404
|
generationSeqEnd: number;
|
|
4405
4405
|
id: string;
|
|
4406
4406
|
sourceMessageId: string;
|
|
4407
|
+
prefix: string;
|
|
4407
4408
|
surface: "process_transcript";
|
|
4408
4409
|
selectedText: string;
|
|
4409
4410
|
sourceConversationId: string;
|
|
4410
4411
|
sourceHash: string;
|
|
4411
|
-
prefix: string;
|
|
4412
4412
|
suffix: string;
|
|
4413
4413
|
attachmentIds: string[];
|
|
4414
4414
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -4431,11 +4431,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4431
4431
|
start: number;
|
|
4432
4432
|
end: number;
|
|
4433
4433
|
id: string;
|
|
4434
|
+
prefix: string;
|
|
4434
4435
|
surface: "workspace_file";
|
|
4435
4436
|
selectedText: string;
|
|
4436
4437
|
sourceConversationId: string;
|
|
4437
4438
|
sourceHash: string;
|
|
4438
|
-
prefix: string;
|
|
4439
4439
|
suffix: string;
|
|
4440
4440
|
attachmentIds: string[];
|
|
4441
4441
|
sourceFilePath: string;
|
|
@@ -4447,11 +4447,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4447
4447
|
start: number;
|
|
4448
4448
|
end: number;
|
|
4449
4449
|
id: string;
|
|
4450
|
+
prefix: string;
|
|
4450
4451
|
surface: "local_file";
|
|
4451
4452
|
selectedText: string;
|
|
4452
4453
|
sourceConversationId: string;
|
|
4453
4454
|
sourceHash: string;
|
|
4454
|
-
prefix: string;
|
|
4455
4455
|
suffix: string;
|
|
4456
4456
|
attachmentIds: string[];
|
|
4457
4457
|
sourceFilePath: string;
|
|
@@ -4479,11 +4479,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4479
4479
|
end: number;
|
|
4480
4480
|
id: string;
|
|
4481
4481
|
sourceMessageId: string;
|
|
4482
|
+
prefix: string;
|
|
4482
4483
|
surface: "assistant_body";
|
|
4483
4484
|
selectedText: string;
|
|
4484
4485
|
sourceConversationId: string;
|
|
4485
4486
|
sourceHash: string;
|
|
4486
|
-
prefix: string;
|
|
4487
4487
|
suffix: string;
|
|
4488
4488
|
comment?: unknown;
|
|
4489
4489
|
attachmentIds?: string[] | undefined;
|
|
@@ -4496,11 +4496,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4496
4496
|
generationSeqEnd: number;
|
|
4497
4497
|
id: string;
|
|
4498
4498
|
sourceMessageId: string;
|
|
4499
|
+
prefix: string;
|
|
4499
4500
|
surface: "process_transcript";
|
|
4500
4501
|
selectedText: string;
|
|
4501
4502
|
sourceConversationId: string;
|
|
4502
4503
|
sourceHash: string;
|
|
4503
|
-
prefix: string;
|
|
4504
4504
|
suffix: string;
|
|
4505
4505
|
transcriptKind: "assistant" | "thinking";
|
|
4506
4506
|
comment?: unknown;
|
|
@@ -4523,11 +4523,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4523
4523
|
start: number;
|
|
4524
4524
|
end: number;
|
|
4525
4525
|
id: string;
|
|
4526
|
+
prefix: string;
|
|
4526
4527
|
surface: "workspace_file";
|
|
4527
4528
|
selectedText: string;
|
|
4528
4529
|
sourceConversationId: string;
|
|
4529
4530
|
sourceHash: string;
|
|
4530
|
-
prefix: string;
|
|
4531
4531
|
suffix: string;
|
|
4532
4532
|
sourceFilePath: string;
|
|
4533
4533
|
sourceLibraryEntryId: string | null;
|
|
@@ -4539,11 +4539,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4539
4539
|
start: number;
|
|
4540
4540
|
end: number;
|
|
4541
4541
|
id: string;
|
|
4542
|
+
prefix: string;
|
|
4542
4543
|
surface: "local_file";
|
|
4543
4544
|
selectedText: string;
|
|
4544
4545
|
sourceConversationId: string;
|
|
4545
4546
|
sourceHash: string;
|
|
4546
|
-
prefix: string;
|
|
4547
4547
|
suffix: string;
|
|
4548
4548
|
sourceFilePath: string;
|
|
4549
4549
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4561,11 +4561,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4561
4561
|
end: number;
|
|
4562
4562
|
id: string;
|
|
4563
4563
|
sourceMessageId: string;
|
|
4564
|
+
prefix: string;
|
|
4564
4565
|
surface: "assistant_body";
|
|
4565
4566
|
selectedText: string;
|
|
4566
4567
|
sourceConversationId: string;
|
|
4567
4568
|
sourceHash: string;
|
|
4568
|
-
prefix: string;
|
|
4569
4569
|
suffix: string;
|
|
4570
4570
|
attachmentIds: string[];
|
|
4571
4571
|
comment?: string | null | undefined;
|
|
@@ -4578,11 +4578,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4578
4578
|
generationSeqEnd: number;
|
|
4579
4579
|
id: string;
|
|
4580
4580
|
sourceMessageId: string;
|
|
4581
|
+
prefix: string;
|
|
4581
4582
|
surface: "process_transcript";
|
|
4582
4583
|
selectedText: string;
|
|
4583
4584
|
sourceConversationId: string;
|
|
4584
4585
|
sourceHash: string;
|
|
4585
|
-
prefix: string;
|
|
4586
4586
|
suffix: string;
|
|
4587
4587
|
attachmentIds: string[];
|
|
4588
4588
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -4605,11 +4605,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4605
4605
|
start: number;
|
|
4606
4606
|
end: number;
|
|
4607
4607
|
id: string;
|
|
4608
|
+
prefix: string;
|
|
4608
4609
|
surface: "workspace_file";
|
|
4609
4610
|
selectedText: string;
|
|
4610
4611
|
sourceConversationId: string;
|
|
4611
4612
|
sourceHash: string;
|
|
4612
|
-
prefix: string;
|
|
4613
4613
|
suffix: string;
|
|
4614
4614
|
attachmentIds: string[];
|
|
4615
4615
|
sourceFilePath: string;
|
|
@@ -4621,11 +4621,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4621
4621
|
start: number;
|
|
4622
4622
|
end: number;
|
|
4623
4623
|
id: string;
|
|
4624
|
+
prefix: string;
|
|
4624
4625
|
surface: "local_file";
|
|
4625
4626
|
selectedText: string;
|
|
4626
4627
|
sourceConversationId: string;
|
|
4627
4628
|
sourceHash: string;
|
|
4628
|
-
prefix: string;
|
|
4629
4629
|
suffix: string;
|
|
4630
4630
|
attachmentIds: string[];
|
|
4631
4631
|
sourceFilePath: string;
|
|
@@ -4653,11 +4653,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4653
4653
|
end: number;
|
|
4654
4654
|
id: string;
|
|
4655
4655
|
sourceMessageId: string;
|
|
4656
|
+
prefix: string;
|
|
4656
4657
|
surface: "assistant_body";
|
|
4657
4658
|
selectedText: string;
|
|
4658
4659
|
sourceConversationId: string;
|
|
4659
4660
|
sourceHash: string;
|
|
4660
|
-
prefix: string;
|
|
4661
4661
|
suffix: string;
|
|
4662
4662
|
comment?: unknown;
|
|
4663
4663
|
attachmentIds?: string[] | undefined;
|
|
@@ -4670,11 +4670,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4670
4670
|
generationSeqEnd: number;
|
|
4671
4671
|
id: string;
|
|
4672
4672
|
sourceMessageId: string;
|
|
4673
|
+
prefix: string;
|
|
4673
4674
|
surface: "process_transcript";
|
|
4674
4675
|
selectedText: string;
|
|
4675
4676
|
sourceConversationId: string;
|
|
4676
4677
|
sourceHash: string;
|
|
4677
|
-
prefix: string;
|
|
4678
4678
|
suffix: string;
|
|
4679
4679
|
transcriptKind: "assistant" | "thinking";
|
|
4680
4680
|
comment?: unknown;
|
|
@@ -4697,11 +4697,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4697
4697
|
start: number;
|
|
4698
4698
|
end: number;
|
|
4699
4699
|
id: string;
|
|
4700
|
+
prefix: string;
|
|
4700
4701
|
surface: "workspace_file";
|
|
4701
4702
|
selectedText: string;
|
|
4702
4703
|
sourceConversationId: string;
|
|
4703
4704
|
sourceHash: string;
|
|
4704
|
-
prefix: string;
|
|
4705
4705
|
suffix: string;
|
|
4706
4706
|
sourceFilePath: string;
|
|
4707
4707
|
sourceLibraryEntryId: string | null;
|
|
@@ -4713,11 +4713,11 @@ export declare const chatQueuedMessagePayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4713
4713
|
start: number;
|
|
4714
4714
|
end: number;
|
|
4715
4715
|
id: string;
|
|
4716
|
+
prefix: string;
|
|
4716
4717
|
surface: "local_file";
|
|
4717
4718
|
selectedText: string;
|
|
4718
4719
|
sourceConversationId: string;
|
|
4719
4720
|
sourceHash: string;
|
|
4720
|
-
prefix: string;
|
|
4721
4721
|
suffix: string;
|
|
4722
4722
|
sourceFilePath: string;
|
|
4723
4723
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4754,11 +4754,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4754
4754
|
end: number;
|
|
4755
4755
|
id: string;
|
|
4756
4756
|
sourceMessageId: string;
|
|
4757
|
+
prefix: string;
|
|
4757
4758
|
surface: "assistant_body";
|
|
4758
4759
|
selectedText: string;
|
|
4759
4760
|
sourceConversationId: string;
|
|
4760
4761
|
sourceHash: string;
|
|
4761
|
-
prefix: string;
|
|
4762
4762
|
suffix: string;
|
|
4763
4763
|
attachmentIds: string[];
|
|
4764
4764
|
comment?: string | null | undefined;
|
|
@@ -4768,11 +4768,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4768
4768
|
end: number;
|
|
4769
4769
|
id: string;
|
|
4770
4770
|
sourceMessageId: string;
|
|
4771
|
+
prefix: string;
|
|
4771
4772
|
surface: "assistant_body";
|
|
4772
4773
|
selectedText: string;
|
|
4773
4774
|
sourceConversationId: string;
|
|
4774
4775
|
sourceHash: string;
|
|
4775
|
-
prefix: string;
|
|
4776
4776
|
suffix: string;
|
|
4777
4777
|
comment?: unknown;
|
|
4778
4778
|
attachmentIds?: string[] | undefined;
|
|
@@ -4804,11 +4804,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4804
4804
|
generationSeqEnd: number;
|
|
4805
4805
|
id: string;
|
|
4806
4806
|
sourceMessageId: string;
|
|
4807
|
+
prefix: string;
|
|
4807
4808
|
surface: "process_transcript";
|
|
4808
4809
|
selectedText: string;
|
|
4809
4810
|
sourceConversationId: string;
|
|
4810
4811
|
sourceHash: string;
|
|
4811
|
-
prefix: string;
|
|
4812
4812
|
suffix: string;
|
|
4813
4813
|
attachmentIds: string[];
|
|
4814
4814
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -4822,11 +4822,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4822
4822
|
generationSeqEnd: number;
|
|
4823
4823
|
id: string;
|
|
4824
4824
|
sourceMessageId: string;
|
|
4825
|
+
prefix: string;
|
|
4825
4826
|
surface: "process_transcript";
|
|
4826
4827
|
selectedText: string;
|
|
4827
4828
|
sourceConversationId: string;
|
|
4828
4829
|
sourceHash: string;
|
|
4829
|
-
prefix: string;
|
|
4830
4830
|
suffix: string;
|
|
4831
4831
|
transcriptKind: "assistant" | "thinking";
|
|
4832
4832
|
comment?: unknown;
|
|
@@ -4893,11 +4893,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4893
4893
|
start: number;
|
|
4894
4894
|
end: number;
|
|
4895
4895
|
id: string;
|
|
4896
|
+
prefix: string;
|
|
4896
4897
|
surface: "workspace_file";
|
|
4897
4898
|
selectedText: string;
|
|
4898
4899
|
sourceConversationId: string;
|
|
4899
4900
|
sourceHash: string;
|
|
4900
|
-
prefix: string;
|
|
4901
4901
|
suffix: string;
|
|
4902
4902
|
attachmentIds: string[];
|
|
4903
4903
|
sourceFilePath: string;
|
|
@@ -4909,11 +4909,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4909
4909
|
start: number;
|
|
4910
4910
|
end: number;
|
|
4911
4911
|
id: string;
|
|
4912
|
+
prefix: string;
|
|
4912
4913
|
surface: "workspace_file";
|
|
4913
4914
|
selectedText: string;
|
|
4914
4915
|
sourceConversationId: string;
|
|
4915
4916
|
sourceHash: string;
|
|
4916
|
-
prefix: string;
|
|
4917
4917
|
suffix: string;
|
|
4918
4918
|
sourceFilePath: string;
|
|
4919
4919
|
sourceLibraryEntryId: string | null;
|
|
@@ -4941,11 +4941,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4941
4941
|
start: number;
|
|
4942
4942
|
end: number;
|
|
4943
4943
|
id: string;
|
|
4944
|
+
prefix: string;
|
|
4944
4945
|
surface: "local_file";
|
|
4945
4946
|
selectedText: string;
|
|
4946
4947
|
sourceConversationId: string;
|
|
4947
4948
|
sourceHash: string;
|
|
4948
|
-
prefix: string;
|
|
4949
4949
|
suffix: string;
|
|
4950
4950
|
attachmentIds: string[];
|
|
4951
4951
|
sourceFilePath: string;
|
|
@@ -4956,11 +4956,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4956
4956
|
start: number;
|
|
4957
4957
|
end: number;
|
|
4958
4958
|
id: string;
|
|
4959
|
+
prefix: string;
|
|
4959
4960
|
surface: "local_file";
|
|
4960
4961
|
selectedText: string;
|
|
4961
4962
|
sourceConversationId: string;
|
|
4962
4963
|
sourceHash: string;
|
|
4963
|
-
prefix: string;
|
|
4964
4964
|
suffix: string;
|
|
4965
4965
|
sourceFilePath: string;
|
|
4966
4966
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -4972,11 +4972,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4972
4972
|
end: number;
|
|
4973
4973
|
id: string;
|
|
4974
4974
|
sourceMessageId: string;
|
|
4975
|
+
prefix: string;
|
|
4975
4976
|
surface: "assistant_body";
|
|
4976
4977
|
selectedText: string;
|
|
4977
4978
|
sourceConversationId: string;
|
|
4978
4979
|
sourceHash: string;
|
|
4979
|
-
prefix: string;
|
|
4980
4980
|
suffix: string;
|
|
4981
4981
|
attachmentIds: string[];
|
|
4982
4982
|
comment?: string | null | undefined;
|
|
@@ -4989,11 +4989,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
4989
4989
|
generationSeqEnd: number;
|
|
4990
4990
|
id: string;
|
|
4991
4991
|
sourceMessageId: string;
|
|
4992
|
+
prefix: string;
|
|
4992
4993
|
surface: "process_transcript";
|
|
4993
4994
|
selectedText: string;
|
|
4994
4995
|
sourceConversationId: string;
|
|
4995
4996
|
sourceHash: string;
|
|
4996
|
-
prefix: string;
|
|
4997
4997
|
suffix: string;
|
|
4998
4998
|
attachmentIds: string[];
|
|
4999
4999
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5016,11 +5016,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5016
5016
|
start: number;
|
|
5017
5017
|
end: number;
|
|
5018
5018
|
id: string;
|
|
5019
|
+
prefix: string;
|
|
5019
5020
|
surface: "workspace_file";
|
|
5020
5021
|
selectedText: string;
|
|
5021
5022
|
sourceConversationId: string;
|
|
5022
5023
|
sourceHash: string;
|
|
5023
|
-
prefix: string;
|
|
5024
5024
|
suffix: string;
|
|
5025
5025
|
attachmentIds: string[];
|
|
5026
5026
|
sourceFilePath: string;
|
|
@@ -5032,11 +5032,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5032
5032
|
start: number;
|
|
5033
5033
|
end: number;
|
|
5034
5034
|
id: string;
|
|
5035
|
+
prefix: string;
|
|
5035
5036
|
surface: "local_file";
|
|
5036
5037
|
selectedText: string;
|
|
5037
5038
|
sourceConversationId: string;
|
|
5038
5039
|
sourceHash: string;
|
|
5039
|
-
prefix: string;
|
|
5040
5040
|
suffix: string;
|
|
5041
5041
|
attachmentIds: string[];
|
|
5042
5042
|
sourceFilePath: string;
|
|
@@ -5048,11 +5048,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5048
5048
|
end: number;
|
|
5049
5049
|
id: string;
|
|
5050
5050
|
sourceMessageId: string;
|
|
5051
|
+
prefix: string;
|
|
5051
5052
|
surface: "assistant_body";
|
|
5052
5053
|
selectedText: string;
|
|
5053
5054
|
sourceConversationId: string;
|
|
5054
5055
|
sourceHash: string;
|
|
5055
|
-
prefix: string;
|
|
5056
5056
|
suffix: string;
|
|
5057
5057
|
comment?: unknown;
|
|
5058
5058
|
attachmentIds?: string[] | undefined;
|
|
@@ -5065,11 +5065,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5065
5065
|
generationSeqEnd: number;
|
|
5066
5066
|
id: string;
|
|
5067
5067
|
sourceMessageId: string;
|
|
5068
|
+
prefix: string;
|
|
5068
5069
|
surface: "process_transcript";
|
|
5069
5070
|
selectedText: string;
|
|
5070
5071
|
sourceConversationId: string;
|
|
5071
5072
|
sourceHash: string;
|
|
5072
|
-
prefix: string;
|
|
5073
5073
|
suffix: string;
|
|
5074
5074
|
transcriptKind: "assistant" | "thinking";
|
|
5075
5075
|
comment?: unknown;
|
|
@@ -5092,11 +5092,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5092
5092
|
start: number;
|
|
5093
5093
|
end: number;
|
|
5094
5094
|
id: string;
|
|
5095
|
+
prefix: string;
|
|
5095
5096
|
surface: "workspace_file";
|
|
5096
5097
|
selectedText: string;
|
|
5097
5098
|
sourceConversationId: string;
|
|
5098
5099
|
sourceHash: string;
|
|
5099
|
-
prefix: string;
|
|
5100
5100
|
suffix: string;
|
|
5101
5101
|
sourceFilePath: string;
|
|
5102
5102
|
sourceLibraryEntryId: string | null;
|
|
@@ -5108,11 +5108,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5108
5108
|
start: number;
|
|
5109
5109
|
end: number;
|
|
5110
5110
|
id: string;
|
|
5111
|
+
prefix: string;
|
|
5111
5112
|
surface: "local_file";
|
|
5112
5113
|
selectedText: string;
|
|
5113
5114
|
sourceConversationId: string;
|
|
5114
5115
|
sourceHash: string;
|
|
5115
|
-
prefix: string;
|
|
5116
5116
|
suffix: string;
|
|
5117
5117
|
sourceFilePath: string;
|
|
5118
5118
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -5124,11 +5124,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5124
5124
|
end: number;
|
|
5125
5125
|
id: string;
|
|
5126
5126
|
sourceMessageId: string;
|
|
5127
|
+
prefix: string;
|
|
5127
5128
|
surface: "assistant_body";
|
|
5128
5129
|
selectedText: string;
|
|
5129
5130
|
sourceConversationId: string;
|
|
5130
5131
|
sourceHash: string;
|
|
5131
|
-
prefix: string;
|
|
5132
5132
|
suffix: string;
|
|
5133
5133
|
attachmentIds: string[];
|
|
5134
5134
|
comment?: string | null | undefined;
|
|
@@ -5141,11 +5141,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5141
5141
|
generationSeqEnd: number;
|
|
5142
5142
|
id: string;
|
|
5143
5143
|
sourceMessageId: string;
|
|
5144
|
+
prefix: string;
|
|
5144
5145
|
surface: "process_transcript";
|
|
5145
5146
|
selectedText: string;
|
|
5146
5147
|
sourceConversationId: string;
|
|
5147
5148
|
sourceHash: string;
|
|
5148
|
-
prefix: string;
|
|
5149
5149
|
suffix: string;
|
|
5150
5150
|
attachmentIds: string[];
|
|
5151
5151
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5168,11 +5168,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5168
5168
|
start: number;
|
|
5169
5169
|
end: number;
|
|
5170
5170
|
id: string;
|
|
5171
|
+
prefix: string;
|
|
5171
5172
|
surface: "workspace_file";
|
|
5172
5173
|
selectedText: string;
|
|
5173
5174
|
sourceConversationId: string;
|
|
5174
5175
|
sourceHash: string;
|
|
5175
|
-
prefix: string;
|
|
5176
5176
|
suffix: string;
|
|
5177
5177
|
attachmentIds: string[];
|
|
5178
5178
|
sourceFilePath: string;
|
|
@@ -5184,11 +5184,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5184
5184
|
start: number;
|
|
5185
5185
|
end: number;
|
|
5186
5186
|
id: string;
|
|
5187
|
+
prefix: string;
|
|
5187
5188
|
surface: "local_file";
|
|
5188
5189
|
selectedText: string;
|
|
5189
5190
|
sourceConversationId: string;
|
|
5190
5191
|
sourceHash: string;
|
|
5191
|
-
prefix: string;
|
|
5192
5192
|
suffix: string;
|
|
5193
5193
|
attachmentIds: string[];
|
|
5194
5194
|
sourceFilePath: string;
|
|
@@ -5200,11 +5200,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5200
5200
|
end: number;
|
|
5201
5201
|
id: string;
|
|
5202
5202
|
sourceMessageId: string;
|
|
5203
|
+
prefix: string;
|
|
5203
5204
|
surface: "assistant_body";
|
|
5204
5205
|
selectedText: string;
|
|
5205
5206
|
sourceConversationId: string;
|
|
5206
5207
|
sourceHash: string;
|
|
5207
|
-
prefix: string;
|
|
5208
5208
|
suffix: string;
|
|
5209
5209
|
comment?: unknown;
|
|
5210
5210
|
attachmentIds?: string[] | undefined;
|
|
@@ -5217,11 +5217,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5217
5217
|
generationSeqEnd: number;
|
|
5218
5218
|
id: string;
|
|
5219
5219
|
sourceMessageId: string;
|
|
5220
|
+
prefix: string;
|
|
5220
5221
|
surface: "process_transcript";
|
|
5221
5222
|
selectedText: string;
|
|
5222
5223
|
sourceConversationId: string;
|
|
5223
5224
|
sourceHash: string;
|
|
5224
|
-
prefix: string;
|
|
5225
5225
|
suffix: string;
|
|
5226
5226
|
transcriptKind: "assistant" | "thinking";
|
|
5227
5227
|
comment?: unknown;
|
|
@@ -5244,11 +5244,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5244
5244
|
start: number;
|
|
5245
5245
|
end: number;
|
|
5246
5246
|
id: string;
|
|
5247
|
+
prefix: string;
|
|
5247
5248
|
surface: "workspace_file";
|
|
5248
5249
|
selectedText: string;
|
|
5249
5250
|
sourceConversationId: string;
|
|
5250
5251
|
sourceHash: string;
|
|
5251
|
-
prefix: string;
|
|
5252
5252
|
suffix: string;
|
|
5253
5253
|
sourceFilePath: string;
|
|
5254
5254
|
sourceLibraryEntryId: string | null;
|
|
@@ -5260,11 +5260,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5260
5260
|
start: number;
|
|
5261
5261
|
end: number;
|
|
5262
5262
|
id: string;
|
|
5263
|
+
prefix: string;
|
|
5263
5264
|
surface: "local_file";
|
|
5264
5265
|
selectedText: string;
|
|
5265
5266
|
sourceConversationId: string;
|
|
5266
5267
|
sourceHash: string;
|
|
5267
|
-
prefix: string;
|
|
5268
5268
|
suffix: string;
|
|
5269
5269
|
sourceFilePath: string;
|
|
5270
5270
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -5287,11 +5287,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5287
5287
|
end: number;
|
|
5288
5288
|
id: string;
|
|
5289
5289
|
sourceMessageId: string;
|
|
5290
|
+
prefix: string;
|
|
5290
5291
|
surface: "assistant_body";
|
|
5291
5292
|
selectedText: string;
|
|
5292
5293
|
sourceConversationId: string;
|
|
5293
5294
|
sourceHash: string;
|
|
5294
|
-
prefix: string;
|
|
5295
5295
|
suffix: string;
|
|
5296
5296
|
attachmentIds: string[];
|
|
5297
5297
|
comment?: string | null | undefined;
|
|
@@ -5304,11 +5304,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5304
5304
|
generationSeqEnd: number;
|
|
5305
5305
|
id: string;
|
|
5306
5306
|
sourceMessageId: string;
|
|
5307
|
+
prefix: string;
|
|
5307
5308
|
surface: "process_transcript";
|
|
5308
5309
|
selectedText: string;
|
|
5309
5310
|
sourceConversationId: string;
|
|
5310
5311
|
sourceHash: string;
|
|
5311
|
-
prefix: string;
|
|
5312
5312
|
suffix: string;
|
|
5313
5313
|
attachmentIds: string[];
|
|
5314
5314
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5331,11 +5331,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5331
5331
|
start: number;
|
|
5332
5332
|
end: number;
|
|
5333
5333
|
id: string;
|
|
5334
|
+
prefix: string;
|
|
5334
5335
|
surface: "workspace_file";
|
|
5335
5336
|
selectedText: string;
|
|
5336
5337
|
sourceConversationId: string;
|
|
5337
5338
|
sourceHash: string;
|
|
5338
|
-
prefix: string;
|
|
5339
5339
|
suffix: string;
|
|
5340
5340
|
attachmentIds: string[];
|
|
5341
5341
|
sourceFilePath: string;
|
|
@@ -5347,11 +5347,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5347
5347
|
start: number;
|
|
5348
5348
|
end: number;
|
|
5349
5349
|
id: string;
|
|
5350
|
+
prefix: string;
|
|
5350
5351
|
surface: "local_file";
|
|
5351
5352
|
selectedText: string;
|
|
5352
5353
|
sourceConversationId: string;
|
|
5353
5354
|
sourceHash: string;
|
|
5354
|
-
prefix: string;
|
|
5355
5355
|
suffix: string;
|
|
5356
5356
|
attachmentIds: string[];
|
|
5357
5357
|
sourceFilePath: string;
|
|
@@ -5379,11 +5379,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5379
5379
|
end: number;
|
|
5380
5380
|
id: string;
|
|
5381
5381
|
sourceMessageId: string;
|
|
5382
|
+
prefix: string;
|
|
5382
5383
|
surface: "assistant_body";
|
|
5383
5384
|
selectedText: string;
|
|
5384
5385
|
sourceConversationId: string;
|
|
5385
5386
|
sourceHash: string;
|
|
5386
|
-
prefix: string;
|
|
5387
5387
|
suffix: string;
|
|
5388
5388
|
comment?: unknown;
|
|
5389
5389
|
attachmentIds?: string[] | undefined;
|
|
@@ -5396,11 +5396,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5396
5396
|
generationSeqEnd: number;
|
|
5397
5397
|
id: string;
|
|
5398
5398
|
sourceMessageId: string;
|
|
5399
|
+
prefix: string;
|
|
5399
5400
|
surface: "process_transcript";
|
|
5400
5401
|
selectedText: string;
|
|
5401
5402
|
sourceConversationId: string;
|
|
5402
5403
|
sourceHash: string;
|
|
5403
|
-
prefix: string;
|
|
5404
5404
|
suffix: string;
|
|
5405
5405
|
transcriptKind: "assistant" | "thinking";
|
|
5406
5406
|
comment?: unknown;
|
|
@@ -5423,11 +5423,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5423
5423
|
start: number;
|
|
5424
5424
|
end: number;
|
|
5425
5425
|
id: string;
|
|
5426
|
+
prefix: string;
|
|
5426
5427
|
surface: "workspace_file";
|
|
5427
5428
|
selectedText: string;
|
|
5428
5429
|
sourceConversationId: string;
|
|
5429
5430
|
sourceHash: string;
|
|
5430
|
-
prefix: string;
|
|
5431
5431
|
suffix: string;
|
|
5432
5432
|
sourceFilePath: string;
|
|
5433
5433
|
sourceLibraryEntryId: string | null;
|
|
@@ -5439,11 +5439,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5439
5439
|
start: number;
|
|
5440
5440
|
end: number;
|
|
5441
5441
|
id: string;
|
|
5442
|
+
prefix: string;
|
|
5442
5443
|
surface: "local_file";
|
|
5443
5444
|
selectedText: string;
|
|
5444
5445
|
sourceConversationId: string;
|
|
5445
5446
|
sourceHash: string;
|
|
5446
|
-
prefix: string;
|
|
5447
5447
|
suffix: string;
|
|
5448
5448
|
sourceFilePath: string;
|
|
5449
5449
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -5461,11 +5461,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5461
5461
|
end: number;
|
|
5462
5462
|
id: string;
|
|
5463
5463
|
sourceMessageId: string;
|
|
5464
|
+
prefix: string;
|
|
5464
5465
|
surface: "assistant_body";
|
|
5465
5466
|
selectedText: string;
|
|
5466
5467
|
sourceConversationId: string;
|
|
5467
5468
|
sourceHash: string;
|
|
5468
|
-
prefix: string;
|
|
5469
5469
|
suffix: string;
|
|
5470
5470
|
attachmentIds: string[];
|
|
5471
5471
|
comment?: string | null | undefined;
|
|
@@ -5478,11 +5478,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5478
5478
|
generationSeqEnd: number;
|
|
5479
5479
|
id: string;
|
|
5480
5480
|
sourceMessageId: string;
|
|
5481
|
+
prefix: string;
|
|
5481
5482
|
surface: "process_transcript";
|
|
5482
5483
|
selectedText: string;
|
|
5483
5484
|
sourceConversationId: string;
|
|
5484
5485
|
sourceHash: string;
|
|
5485
|
-
prefix: string;
|
|
5486
5486
|
suffix: string;
|
|
5487
5487
|
attachmentIds: string[];
|
|
5488
5488
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5505,11 +5505,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5505
5505
|
start: number;
|
|
5506
5506
|
end: number;
|
|
5507
5507
|
id: string;
|
|
5508
|
+
prefix: string;
|
|
5508
5509
|
surface: "workspace_file";
|
|
5509
5510
|
selectedText: string;
|
|
5510
5511
|
sourceConversationId: string;
|
|
5511
5512
|
sourceHash: string;
|
|
5512
|
-
prefix: string;
|
|
5513
5513
|
suffix: string;
|
|
5514
5514
|
attachmentIds: string[];
|
|
5515
5515
|
sourceFilePath: string;
|
|
@@ -5521,11 +5521,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5521
5521
|
start: number;
|
|
5522
5522
|
end: number;
|
|
5523
5523
|
id: string;
|
|
5524
|
+
prefix: string;
|
|
5524
5525
|
surface: "local_file";
|
|
5525
5526
|
selectedText: string;
|
|
5526
5527
|
sourceConversationId: string;
|
|
5527
5528
|
sourceHash: string;
|
|
5528
|
-
prefix: string;
|
|
5529
5529
|
suffix: string;
|
|
5530
5530
|
attachmentIds: string[];
|
|
5531
5531
|
sourceFilePath: string;
|
|
@@ -5553,11 +5553,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5553
5553
|
end: number;
|
|
5554
5554
|
id: string;
|
|
5555
5555
|
sourceMessageId: string;
|
|
5556
|
+
prefix: string;
|
|
5556
5557
|
surface: "assistant_body";
|
|
5557
5558
|
selectedText: string;
|
|
5558
5559
|
sourceConversationId: string;
|
|
5559
5560
|
sourceHash: string;
|
|
5560
|
-
prefix: string;
|
|
5561
5561
|
suffix: string;
|
|
5562
5562
|
comment?: unknown;
|
|
5563
5563
|
attachmentIds?: string[] | undefined;
|
|
@@ -5570,11 +5570,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5570
5570
|
generationSeqEnd: number;
|
|
5571
5571
|
id: string;
|
|
5572
5572
|
sourceMessageId: string;
|
|
5573
|
+
prefix: string;
|
|
5573
5574
|
surface: "process_transcript";
|
|
5574
5575
|
selectedText: string;
|
|
5575
5576
|
sourceConversationId: string;
|
|
5576
5577
|
sourceHash: string;
|
|
5577
|
-
prefix: string;
|
|
5578
5578
|
suffix: string;
|
|
5579
5579
|
transcriptKind: "assistant" | "thinking";
|
|
5580
5580
|
comment?: unknown;
|
|
@@ -5597,11 +5597,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5597
5597
|
start: number;
|
|
5598
5598
|
end: number;
|
|
5599
5599
|
id: string;
|
|
5600
|
+
prefix: string;
|
|
5600
5601
|
surface: "workspace_file";
|
|
5601
5602
|
selectedText: string;
|
|
5602
5603
|
sourceConversationId: string;
|
|
5603
5604
|
sourceHash: string;
|
|
5604
|
-
prefix: string;
|
|
5605
5605
|
suffix: string;
|
|
5606
5606
|
sourceFilePath: string;
|
|
5607
5607
|
sourceLibraryEntryId: string | null;
|
|
@@ -5613,11 +5613,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5613
5613
|
start: number;
|
|
5614
5614
|
end: number;
|
|
5615
5615
|
id: string;
|
|
5616
|
+
prefix: string;
|
|
5616
5617
|
surface: "local_file";
|
|
5617
5618
|
selectedText: string;
|
|
5618
5619
|
sourceConversationId: string;
|
|
5619
5620
|
sourceHash: string;
|
|
5620
|
-
prefix: string;
|
|
5621
5621
|
suffix: string;
|
|
5622
5622
|
sourceFilePath: string;
|
|
5623
5623
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -5638,11 +5638,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5638
5638
|
end: number;
|
|
5639
5639
|
id: string;
|
|
5640
5640
|
sourceMessageId: string;
|
|
5641
|
+
prefix: string;
|
|
5641
5642
|
surface: "assistant_body";
|
|
5642
5643
|
selectedText: string;
|
|
5643
5644
|
sourceConversationId: string;
|
|
5644
5645
|
sourceHash: string;
|
|
5645
|
-
prefix: string;
|
|
5646
5646
|
suffix: string;
|
|
5647
5647
|
attachmentIds: string[];
|
|
5648
5648
|
comment?: string | null | undefined;
|
|
@@ -5655,11 +5655,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5655
5655
|
generationSeqEnd: number;
|
|
5656
5656
|
id: string;
|
|
5657
5657
|
sourceMessageId: string;
|
|
5658
|
+
prefix: string;
|
|
5658
5659
|
surface: "process_transcript";
|
|
5659
5660
|
selectedText: string;
|
|
5660
5661
|
sourceConversationId: string;
|
|
5661
5662
|
sourceHash: string;
|
|
5662
|
-
prefix: string;
|
|
5663
5663
|
suffix: string;
|
|
5664
5664
|
attachmentIds: string[];
|
|
5665
5665
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5682,11 +5682,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5682
5682
|
start: number;
|
|
5683
5683
|
end: number;
|
|
5684
5684
|
id: string;
|
|
5685
|
+
prefix: string;
|
|
5685
5686
|
surface: "workspace_file";
|
|
5686
5687
|
selectedText: string;
|
|
5687
5688
|
sourceConversationId: string;
|
|
5688
5689
|
sourceHash: string;
|
|
5689
|
-
prefix: string;
|
|
5690
5690
|
suffix: string;
|
|
5691
5691
|
attachmentIds: string[];
|
|
5692
5692
|
sourceFilePath: string;
|
|
@@ -5698,11 +5698,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5698
5698
|
start: number;
|
|
5699
5699
|
end: number;
|
|
5700
5700
|
id: string;
|
|
5701
|
+
prefix: string;
|
|
5701
5702
|
surface: "local_file";
|
|
5702
5703
|
selectedText: string;
|
|
5703
5704
|
sourceConversationId: string;
|
|
5704
5705
|
sourceHash: string;
|
|
5705
|
-
prefix: string;
|
|
5706
5706
|
suffix: string;
|
|
5707
5707
|
attachmentIds: string[];
|
|
5708
5708
|
sourceFilePath: string;
|
|
@@ -5734,11 +5734,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5734
5734
|
end: number;
|
|
5735
5735
|
id: string;
|
|
5736
5736
|
sourceMessageId: string;
|
|
5737
|
+
prefix: string;
|
|
5737
5738
|
surface: "assistant_body";
|
|
5738
5739
|
selectedText: string;
|
|
5739
5740
|
sourceConversationId: string;
|
|
5740
5741
|
sourceHash: string;
|
|
5741
|
-
prefix: string;
|
|
5742
5742
|
suffix: string;
|
|
5743
5743
|
comment?: unknown;
|
|
5744
5744
|
attachmentIds?: string[] | undefined;
|
|
@@ -5751,11 +5751,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5751
5751
|
generationSeqEnd: number;
|
|
5752
5752
|
id: string;
|
|
5753
5753
|
sourceMessageId: string;
|
|
5754
|
+
prefix: string;
|
|
5754
5755
|
surface: "process_transcript";
|
|
5755
5756
|
selectedText: string;
|
|
5756
5757
|
sourceConversationId: string;
|
|
5757
5758
|
sourceHash: string;
|
|
5758
|
-
prefix: string;
|
|
5759
5759
|
suffix: string;
|
|
5760
5760
|
transcriptKind: "assistant" | "thinking";
|
|
5761
5761
|
comment?: unknown;
|
|
@@ -5778,11 +5778,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5778
5778
|
start: number;
|
|
5779
5779
|
end: number;
|
|
5780
5780
|
id: string;
|
|
5781
|
+
prefix: string;
|
|
5781
5782
|
surface: "workspace_file";
|
|
5782
5783
|
selectedText: string;
|
|
5783
5784
|
sourceConversationId: string;
|
|
5784
5785
|
sourceHash: string;
|
|
5785
|
-
prefix: string;
|
|
5786
5786
|
suffix: string;
|
|
5787
5787
|
sourceFilePath: string;
|
|
5788
5788
|
sourceLibraryEntryId: string | null;
|
|
@@ -5794,11 +5794,11 @@ export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5794
5794
|
start: number;
|
|
5795
5795
|
end: number;
|
|
5796
5796
|
id: string;
|
|
5797
|
+
prefix: string;
|
|
5797
5798
|
surface: "local_file";
|
|
5798
5799
|
selectedText: string;
|
|
5799
5800
|
sourceConversationId: string;
|
|
5800
5801
|
sourceHash: string;
|
|
5801
|
-
prefix: string;
|
|
5802
5802
|
suffix: string;
|
|
5803
5803
|
sourceFilePath: string;
|
|
5804
5804
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -5836,11 +5836,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5836
5836
|
end: number;
|
|
5837
5837
|
id: string;
|
|
5838
5838
|
sourceMessageId: string;
|
|
5839
|
+
prefix: string;
|
|
5839
5840
|
surface: "assistant_body";
|
|
5840
5841
|
selectedText: string;
|
|
5841
5842
|
sourceConversationId: string;
|
|
5842
5843
|
sourceHash: string;
|
|
5843
|
-
prefix: string;
|
|
5844
5844
|
suffix: string;
|
|
5845
5845
|
attachmentIds: string[];
|
|
5846
5846
|
comment?: string | null | undefined;
|
|
@@ -5850,11 +5850,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5850
5850
|
end: number;
|
|
5851
5851
|
id: string;
|
|
5852
5852
|
sourceMessageId: string;
|
|
5853
|
+
prefix: string;
|
|
5853
5854
|
surface: "assistant_body";
|
|
5854
5855
|
selectedText: string;
|
|
5855
5856
|
sourceConversationId: string;
|
|
5856
5857
|
sourceHash: string;
|
|
5857
|
-
prefix: string;
|
|
5858
5858
|
suffix: string;
|
|
5859
5859
|
comment?: unknown;
|
|
5860
5860
|
attachmentIds?: string[] | undefined;
|
|
@@ -5886,11 +5886,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5886
5886
|
generationSeqEnd: number;
|
|
5887
5887
|
id: string;
|
|
5888
5888
|
sourceMessageId: string;
|
|
5889
|
+
prefix: string;
|
|
5889
5890
|
surface: "process_transcript";
|
|
5890
5891
|
selectedText: string;
|
|
5891
5892
|
sourceConversationId: string;
|
|
5892
5893
|
sourceHash: string;
|
|
5893
|
-
prefix: string;
|
|
5894
5894
|
suffix: string;
|
|
5895
5895
|
attachmentIds: string[];
|
|
5896
5896
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -5904,11 +5904,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5904
5904
|
generationSeqEnd: number;
|
|
5905
5905
|
id: string;
|
|
5906
5906
|
sourceMessageId: string;
|
|
5907
|
+
prefix: string;
|
|
5907
5908
|
surface: "process_transcript";
|
|
5908
5909
|
selectedText: string;
|
|
5909
5910
|
sourceConversationId: string;
|
|
5910
5911
|
sourceHash: string;
|
|
5911
|
-
prefix: string;
|
|
5912
5912
|
suffix: string;
|
|
5913
5913
|
transcriptKind: "assistant" | "thinking";
|
|
5914
5914
|
comment?: unknown;
|
|
@@ -5975,11 +5975,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5975
5975
|
start: number;
|
|
5976
5976
|
end: number;
|
|
5977
5977
|
id: string;
|
|
5978
|
+
prefix: string;
|
|
5978
5979
|
surface: "workspace_file";
|
|
5979
5980
|
selectedText: string;
|
|
5980
5981
|
sourceConversationId: string;
|
|
5981
5982
|
sourceHash: string;
|
|
5982
|
-
prefix: string;
|
|
5983
5983
|
suffix: string;
|
|
5984
5984
|
attachmentIds: string[];
|
|
5985
5985
|
sourceFilePath: string;
|
|
@@ -5991,11 +5991,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
5991
5991
|
start: number;
|
|
5992
5992
|
end: number;
|
|
5993
5993
|
id: string;
|
|
5994
|
+
prefix: string;
|
|
5994
5995
|
surface: "workspace_file";
|
|
5995
5996
|
selectedText: string;
|
|
5996
5997
|
sourceConversationId: string;
|
|
5997
5998
|
sourceHash: string;
|
|
5998
|
-
prefix: string;
|
|
5999
5999
|
suffix: string;
|
|
6000
6000
|
sourceFilePath: string;
|
|
6001
6001
|
sourceLibraryEntryId: string | null;
|
|
@@ -6023,11 +6023,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6023
6023
|
start: number;
|
|
6024
6024
|
end: number;
|
|
6025
6025
|
id: string;
|
|
6026
|
+
prefix: string;
|
|
6026
6027
|
surface: "local_file";
|
|
6027
6028
|
selectedText: string;
|
|
6028
6029
|
sourceConversationId: string;
|
|
6029
6030
|
sourceHash: string;
|
|
6030
|
-
prefix: string;
|
|
6031
6031
|
suffix: string;
|
|
6032
6032
|
attachmentIds: string[];
|
|
6033
6033
|
sourceFilePath: string;
|
|
@@ -6038,11 +6038,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6038
6038
|
start: number;
|
|
6039
6039
|
end: number;
|
|
6040
6040
|
id: string;
|
|
6041
|
+
prefix: string;
|
|
6041
6042
|
surface: "local_file";
|
|
6042
6043
|
selectedText: string;
|
|
6043
6044
|
sourceConversationId: string;
|
|
6044
6045
|
sourceHash: string;
|
|
6045
|
-
prefix: string;
|
|
6046
6046
|
suffix: string;
|
|
6047
6047
|
sourceFilePath: string;
|
|
6048
6048
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -6054,11 +6054,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6054
6054
|
end: number;
|
|
6055
6055
|
id: string;
|
|
6056
6056
|
sourceMessageId: string;
|
|
6057
|
+
prefix: string;
|
|
6057
6058
|
surface: "assistant_body";
|
|
6058
6059
|
selectedText: string;
|
|
6059
6060
|
sourceConversationId: string;
|
|
6060
6061
|
sourceHash: string;
|
|
6061
|
-
prefix: string;
|
|
6062
6062
|
suffix: string;
|
|
6063
6063
|
attachmentIds: string[];
|
|
6064
6064
|
comment?: string | null | undefined;
|
|
@@ -6071,11 +6071,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6071
6071
|
generationSeqEnd: number;
|
|
6072
6072
|
id: string;
|
|
6073
6073
|
sourceMessageId: string;
|
|
6074
|
+
prefix: string;
|
|
6074
6075
|
surface: "process_transcript";
|
|
6075
6076
|
selectedText: string;
|
|
6076
6077
|
sourceConversationId: string;
|
|
6077
6078
|
sourceHash: string;
|
|
6078
|
-
prefix: string;
|
|
6079
6079
|
suffix: string;
|
|
6080
6080
|
attachmentIds: string[];
|
|
6081
6081
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -6098,11 +6098,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6098
6098
|
start: number;
|
|
6099
6099
|
end: number;
|
|
6100
6100
|
id: string;
|
|
6101
|
+
prefix: string;
|
|
6101
6102
|
surface: "workspace_file";
|
|
6102
6103
|
selectedText: string;
|
|
6103
6104
|
sourceConversationId: string;
|
|
6104
6105
|
sourceHash: string;
|
|
6105
|
-
prefix: string;
|
|
6106
6106
|
suffix: string;
|
|
6107
6107
|
attachmentIds: string[];
|
|
6108
6108
|
sourceFilePath: string;
|
|
@@ -6114,11 +6114,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6114
6114
|
start: number;
|
|
6115
6115
|
end: number;
|
|
6116
6116
|
id: string;
|
|
6117
|
+
prefix: string;
|
|
6117
6118
|
surface: "local_file";
|
|
6118
6119
|
selectedText: string;
|
|
6119
6120
|
sourceConversationId: string;
|
|
6120
6121
|
sourceHash: string;
|
|
6121
|
-
prefix: string;
|
|
6122
6122
|
suffix: string;
|
|
6123
6123
|
attachmentIds: string[];
|
|
6124
6124
|
sourceFilePath: string;
|
|
@@ -6130,11 +6130,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6130
6130
|
end: number;
|
|
6131
6131
|
id: string;
|
|
6132
6132
|
sourceMessageId: string;
|
|
6133
|
+
prefix: string;
|
|
6133
6134
|
surface: "assistant_body";
|
|
6134
6135
|
selectedText: string;
|
|
6135
6136
|
sourceConversationId: string;
|
|
6136
6137
|
sourceHash: string;
|
|
6137
|
-
prefix: string;
|
|
6138
6138
|
suffix: string;
|
|
6139
6139
|
comment?: unknown;
|
|
6140
6140
|
attachmentIds?: string[] | undefined;
|
|
@@ -6147,11 +6147,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6147
6147
|
generationSeqEnd: number;
|
|
6148
6148
|
id: string;
|
|
6149
6149
|
sourceMessageId: string;
|
|
6150
|
+
prefix: string;
|
|
6150
6151
|
surface: "process_transcript";
|
|
6151
6152
|
selectedText: string;
|
|
6152
6153
|
sourceConversationId: string;
|
|
6153
6154
|
sourceHash: string;
|
|
6154
|
-
prefix: string;
|
|
6155
6155
|
suffix: string;
|
|
6156
6156
|
transcriptKind: "assistant" | "thinking";
|
|
6157
6157
|
comment?: unknown;
|
|
@@ -6174,11 +6174,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6174
6174
|
start: number;
|
|
6175
6175
|
end: number;
|
|
6176
6176
|
id: string;
|
|
6177
|
+
prefix: string;
|
|
6177
6178
|
surface: "workspace_file";
|
|
6178
6179
|
selectedText: string;
|
|
6179
6180
|
sourceConversationId: string;
|
|
6180
6181
|
sourceHash: string;
|
|
6181
|
-
prefix: string;
|
|
6182
6182
|
suffix: string;
|
|
6183
6183
|
sourceFilePath: string;
|
|
6184
6184
|
sourceLibraryEntryId: string | null;
|
|
@@ -6190,11 +6190,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6190
6190
|
start: number;
|
|
6191
6191
|
end: number;
|
|
6192
6192
|
id: string;
|
|
6193
|
+
prefix: string;
|
|
6193
6194
|
surface: "local_file";
|
|
6194
6195
|
selectedText: string;
|
|
6195
6196
|
sourceConversationId: string;
|
|
6196
6197
|
sourceHash: string;
|
|
6197
|
-
prefix: string;
|
|
6198
6198
|
suffix: string;
|
|
6199
6199
|
sourceFilePath: string;
|
|
6200
6200
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -6206,11 +6206,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6206
6206
|
end: number;
|
|
6207
6207
|
id: string;
|
|
6208
6208
|
sourceMessageId: string;
|
|
6209
|
+
prefix: string;
|
|
6209
6210
|
surface: "assistant_body";
|
|
6210
6211
|
selectedText: string;
|
|
6211
6212
|
sourceConversationId: string;
|
|
6212
6213
|
sourceHash: string;
|
|
6213
|
-
prefix: string;
|
|
6214
6214
|
suffix: string;
|
|
6215
6215
|
attachmentIds: string[];
|
|
6216
6216
|
comment?: string | null | undefined;
|
|
@@ -6223,11 +6223,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6223
6223
|
generationSeqEnd: number;
|
|
6224
6224
|
id: string;
|
|
6225
6225
|
sourceMessageId: string;
|
|
6226
|
+
prefix: string;
|
|
6226
6227
|
surface: "process_transcript";
|
|
6227
6228
|
selectedText: string;
|
|
6228
6229
|
sourceConversationId: string;
|
|
6229
6230
|
sourceHash: string;
|
|
6230
|
-
prefix: string;
|
|
6231
6231
|
suffix: string;
|
|
6232
6232
|
attachmentIds: string[];
|
|
6233
6233
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -6250,11 +6250,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6250
6250
|
start: number;
|
|
6251
6251
|
end: number;
|
|
6252
6252
|
id: string;
|
|
6253
|
+
prefix: string;
|
|
6253
6254
|
surface: "workspace_file";
|
|
6254
6255
|
selectedText: string;
|
|
6255
6256
|
sourceConversationId: string;
|
|
6256
6257
|
sourceHash: string;
|
|
6257
|
-
prefix: string;
|
|
6258
6258
|
suffix: string;
|
|
6259
6259
|
attachmentIds: string[];
|
|
6260
6260
|
sourceFilePath: string;
|
|
@@ -6266,11 +6266,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6266
6266
|
start: number;
|
|
6267
6267
|
end: number;
|
|
6268
6268
|
id: string;
|
|
6269
|
+
prefix: string;
|
|
6269
6270
|
surface: "local_file";
|
|
6270
6271
|
selectedText: string;
|
|
6271
6272
|
sourceConversationId: string;
|
|
6272
6273
|
sourceHash: string;
|
|
6273
|
-
prefix: string;
|
|
6274
6274
|
suffix: string;
|
|
6275
6275
|
attachmentIds: string[];
|
|
6276
6276
|
sourceFilePath: string;
|
|
@@ -6282,11 +6282,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6282
6282
|
end: number;
|
|
6283
6283
|
id: string;
|
|
6284
6284
|
sourceMessageId: string;
|
|
6285
|
+
prefix: string;
|
|
6285
6286
|
surface: "assistant_body";
|
|
6286
6287
|
selectedText: string;
|
|
6287
6288
|
sourceConversationId: string;
|
|
6288
6289
|
sourceHash: string;
|
|
6289
|
-
prefix: string;
|
|
6290
6290
|
suffix: string;
|
|
6291
6291
|
comment?: unknown;
|
|
6292
6292
|
attachmentIds?: string[] | undefined;
|
|
@@ -6299,11 +6299,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6299
6299
|
generationSeqEnd: number;
|
|
6300
6300
|
id: string;
|
|
6301
6301
|
sourceMessageId: string;
|
|
6302
|
+
prefix: string;
|
|
6302
6303
|
surface: "process_transcript";
|
|
6303
6304
|
selectedText: string;
|
|
6304
6305
|
sourceConversationId: string;
|
|
6305
6306
|
sourceHash: string;
|
|
6306
|
-
prefix: string;
|
|
6307
6307
|
suffix: string;
|
|
6308
6308
|
transcriptKind: "assistant" | "thinking";
|
|
6309
6309
|
comment?: unknown;
|
|
@@ -6326,11 +6326,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6326
6326
|
start: number;
|
|
6327
6327
|
end: number;
|
|
6328
6328
|
id: string;
|
|
6329
|
+
prefix: string;
|
|
6329
6330
|
surface: "workspace_file";
|
|
6330
6331
|
selectedText: string;
|
|
6331
6332
|
sourceConversationId: string;
|
|
6332
6333
|
sourceHash: string;
|
|
6333
|
-
prefix: string;
|
|
6334
6334
|
suffix: string;
|
|
6335
6335
|
sourceFilePath: string;
|
|
6336
6336
|
sourceLibraryEntryId: string | null;
|
|
@@ -6342,11 +6342,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6342
6342
|
start: number;
|
|
6343
6343
|
end: number;
|
|
6344
6344
|
id: string;
|
|
6345
|
+
prefix: string;
|
|
6345
6346
|
surface: "local_file";
|
|
6346
6347
|
selectedText: string;
|
|
6347
6348
|
sourceConversationId: string;
|
|
6348
6349
|
sourceHash: string;
|
|
6349
|
-
prefix: string;
|
|
6350
6350
|
suffix: string;
|
|
6351
6351
|
sourceFilePath: string;
|
|
6352
6352
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -6375,11 +6375,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6375
6375
|
end: number;
|
|
6376
6376
|
id: string;
|
|
6377
6377
|
sourceMessageId: string;
|
|
6378
|
+
prefix: string;
|
|
6378
6379
|
surface: "assistant_body";
|
|
6379
6380
|
selectedText: string;
|
|
6380
6381
|
sourceConversationId: string;
|
|
6381
6382
|
sourceHash: string;
|
|
6382
|
-
prefix: string;
|
|
6383
6383
|
suffix: string;
|
|
6384
6384
|
attachmentIds: string[];
|
|
6385
6385
|
comment?: string | null | undefined;
|
|
@@ -6392,11 +6392,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6392
6392
|
generationSeqEnd: number;
|
|
6393
6393
|
id: string;
|
|
6394
6394
|
sourceMessageId: string;
|
|
6395
|
+
prefix: string;
|
|
6395
6396
|
surface: "process_transcript";
|
|
6396
6397
|
selectedText: string;
|
|
6397
6398
|
sourceConversationId: string;
|
|
6398
6399
|
sourceHash: string;
|
|
6399
|
-
prefix: string;
|
|
6400
6400
|
suffix: string;
|
|
6401
6401
|
attachmentIds: string[];
|
|
6402
6402
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -6419,11 +6419,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6419
6419
|
start: number;
|
|
6420
6420
|
end: number;
|
|
6421
6421
|
id: string;
|
|
6422
|
+
prefix: string;
|
|
6422
6423
|
surface: "workspace_file";
|
|
6423
6424
|
selectedText: string;
|
|
6424
6425
|
sourceConversationId: string;
|
|
6425
6426
|
sourceHash: string;
|
|
6426
|
-
prefix: string;
|
|
6427
6427
|
suffix: string;
|
|
6428
6428
|
attachmentIds: string[];
|
|
6429
6429
|
sourceFilePath: string;
|
|
@@ -6435,11 +6435,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6435
6435
|
start: number;
|
|
6436
6436
|
end: number;
|
|
6437
6437
|
id: string;
|
|
6438
|
+
prefix: string;
|
|
6438
6439
|
surface: "local_file";
|
|
6439
6440
|
selectedText: string;
|
|
6440
6441
|
sourceConversationId: string;
|
|
6441
6442
|
sourceHash: string;
|
|
6442
|
-
prefix: string;
|
|
6443
6443
|
suffix: string;
|
|
6444
6444
|
attachmentIds: string[];
|
|
6445
6445
|
sourceFilePath: string;
|
|
@@ -6461,11 +6461,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6461
6461
|
end: number;
|
|
6462
6462
|
id: string;
|
|
6463
6463
|
sourceMessageId: string;
|
|
6464
|
+
prefix: string;
|
|
6464
6465
|
surface: "assistant_body";
|
|
6465
6466
|
selectedText: string;
|
|
6466
6467
|
sourceConversationId: string;
|
|
6467
6468
|
sourceHash: string;
|
|
6468
|
-
prefix: string;
|
|
6469
6469
|
suffix: string;
|
|
6470
6470
|
comment?: unknown;
|
|
6471
6471
|
attachmentIds?: string[] | undefined;
|
|
@@ -6478,11 +6478,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6478
6478
|
generationSeqEnd: number;
|
|
6479
6479
|
id: string;
|
|
6480
6480
|
sourceMessageId: string;
|
|
6481
|
+
prefix: string;
|
|
6481
6482
|
surface: "process_transcript";
|
|
6482
6483
|
selectedText: string;
|
|
6483
6484
|
sourceConversationId: string;
|
|
6484
6485
|
sourceHash: string;
|
|
6485
|
-
prefix: string;
|
|
6486
6486
|
suffix: string;
|
|
6487
6487
|
transcriptKind: "assistant" | "thinking";
|
|
6488
6488
|
comment?: unknown;
|
|
@@ -6505,11 +6505,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6505
6505
|
start: number;
|
|
6506
6506
|
end: number;
|
|
6507
6507
|
id: string;
|
|
6508
|
+
prefix: string;
|
|
6508
6509
|
surface: "workspace_file";
|
|
6509
6510
|
selectedText: string;
|
|
6510
6511
|
sourceConversationId: string;
|
|
6511
6512
|
sourceHash: string;
|
|
6512
|
-
prefix: string;
|
|
6513
6513
|
suffix: string;
|
|
6514
6514
|
sourceFilePath: string;
|
|
6515
6515
|
sourceLibraryEntryId: string | null;
|
|
@@ -6521,11 +6521,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6521
6521
|
start: number;
|
|
6522
6522
|
end: number;
|
|
6523
6523
|
id: string;
|
|
6524
|
+
prefix: string;
|
|
6524
6525
|
surface: "local_file";
|
|
6525
6526
|
selectedText: string;
|
|
6526
6527
|
sourceConversationId: string;
|
|
6527
6528
|
sourceHash: string;
|
|
6528
|
-
prefix: string;
|
|
6529
6529
|
suffix: string;
|
|
6530
6530
|
sourceFilePath: string;
|
|
6531
6531
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -6549,11 +6549,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6549
6549
|
end: number;
|
|
6550
6550
|
id: string;
|
|
6551
6551
|
sourceMessageId: string;
|
|
6552
|
+
prefix: string;
|
|
6552
6553
|
surface: "assistant_body";
|
|
6553
6554
|
selectedText: string;
|
|
6554
6555
|
sourceConversationId: string;
|
|
6555
6556
|
sourceHash: string;
|
|
6556
|
-
prefix: string;
|
|
6557
6557
|
suffix: string;
|
|
6558
6558
|
attachmentIds: string[];
|
|
6559
6559
|
comment?: string | null | undefined;
|
|
@@ -6566,11 +6566,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6566
6566
|
generationSeqEnd: number;
|
|
6567
6567
|
id: string;
|
|
6568
6568
|
sourceMessageId: string;
|
|
6569
|
+
prefix: string;
|
|
6569
6570
|
surface: "process_transcript";
|
|
6570
6571
|
selectedText: string;
|
|
6571
6572
|
sourceConversationId: string;
|
|
6572
6573
|
sourceHash: string;
|
|
6573
|
-
prefix: string;
|
|
6574
6574
|
suffix: string;
|
|
6575
6575
|
attachmentIds: string[];
|
|
6576
6576
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -6593,11 +6593,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6593
6593
|
start: number;
|
|
6594
6594
|
end: number;
|
|
6595
6595
|
id: string;
|
|
6596
|
+
prefix: string;
|
|
6596
6597
|
surface: "workspace_file";
|
|
6597
6598
|
selectedText: string;
|
|
6598
6599
|
sourceConversationId: string;
|
|
6599
6600
|
sourceHash: string;
|
|
6600
|
-
prefix: string;
|
|
6601
6601
|
suffix: string;
|
|
6602
6602
|
attachmentIds: string[];
|
|
6603
6603
|
sourceFilePath: string;
|
|
@@ -6609,11 +6609,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6609
6609
|
start: number;
|
|
6610
6610
|
end: number;
|
|
6611
6611
|
id: string;
|
|
6612
|
+
prefix: string;
|
|
6612
6613
|
surface: "local_file";
|
|
6613
6614
|
selectedText: string;
|
|
6614
6615
|
sourceConversationId: string;
|
|
6615
6616
|
sourceHash: string;
|
|
6616
|
-
prefix: string;
|
|
6617
6617
|
suffix: string;
|
|
6618
6618
|
attachmentIds: string[];
|
|
6619
6619
|
sourceFilePath: string;
|
|
@@ -6635,11 +6635,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6635
6635
|
end: number;
|
|
6636
6636
|
id: string;
|
|
6637
6637
|
sourceMessageId: string;
|
|
6638
|
+
prefix: string;
|
|
6638
6639
|
surface: "assistant_body";
|
|
6639
6640
|
selectedText: string;
|
|
6640
6641
|
sourceConversationId: string;
|
|
6641
6642
|
sourceHash: string;
|
|
6642
|
-
prefix: string;
|
|
6643
6643
|
suffix: string;
|
|
6644
6644
|
comment?: unknown;
|
|
6645
6645
|
attachmentIds?: string[] | undefined;
|
|
@@ -6652,11 +6652,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6652
6652
|
generationSeqEnd: number;
|
|
6653
6653
|
id: string;
|
|
6654
6654
|
sourceMessageId: string;
|
|
6655
|
+
prefix: string;
|
|
6655
6656
|
surface: "process_transcript";
|
|
6656
6657
|
selectedText: string;
|
|
6657
6658
|
sourceConversationId: string;
|
|
6658
6659
|
sourceHash: string;
|
|
6659
|
-
prefix: string;
|
|
6660
6660
|
suffix: string;
|
|
6661
6661
|
transcriptKind: "assistant" | "thinking";
|
|
6662
6662
|
comment?: unknown;
|
|
@@ -6679,11 +6679,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6679
6679
|
start: number;
|
|
6680
6680
|
end: number;
|
|
6681
6681
|
id: string;
|
|
6682
|
+
prefix: string;
|
|
6682
6683
|
surface: "workspace_file";
|
|
6683
6684
|
selectedText: string;
|
|
6684
6685
|
sourceConversationId: string;
|
|
6685
6686
|
sourceHash: string;
|
|
6686
|
-
prefix: string;
|
|
6687
6687
|
suffix: string;
|
|
6688
6688
|
sourceFilePath: string;
|
|
6689
6689
|
sourceLibraryEntryId: string | null;
|
|
@@ -6695,11 +6695,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6695
6695
|
start: number;
|
|
6696
6696
|
end: number;
|
|
6697
6697
|
id: string;
|
|
6698
|
+
prefix: string;
|
|
6698
6699
|
surface: "local_file";
|
|
6699
6700
|
selectedText: string;
|
|
6700
6701
|
sourceConversationId: string;
|
|
6701
6702
|
sourceHash: string;
|
|
6702
|
-
prefix: string;
|
|
6703
6703
|
suffix: string;
|
|
6704
6704
|
sourceFilePath: string;
|
|
6705
6705
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -6726,11 +6726,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6726
6726
|
end: number;
|
|
6727
6727
|
id: string;
|
|
6728
6728
|
sourceMessageId: string;
|
|
6729
|
+
prefix: string;
|
|
6729
6730
|
surface: "assistant_body";
|
|
6730
6731
|
selectedText: string;
|
|
6731
6732
|
sourceConversationId: string;
|
|
6732
6733
|
sourceHash: string;
|
|
6733
|
-
prefix: string;
|
|
6734
6734
|
suffix: string;
|
|
6735
6735
|
attachmentIds: string[];
|
|
6736
6736
|
comment?: string | null | undefined;
|
|
@@ -6743,11 +6743,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6743
6743
|
generationSeqEnd: number;
|
|
6744
6744
|
id: string;
|
|
6745
6745
|
sourceMessageId: string;
|
|
6746
|
+
prefix: string;
|
|
6746
6747
|
surface: "process_transcript";
|
|
6747
6748
|
selectedText: string;
|
|
6748
6749
|
sourceConversationId: string;
|
|
6749
6750
|
sourceHash: string;
|
|
6750
|
-
prefix: string;
|
|
6751
6751
|
suffix: string;
|
|
6752
6752
|
attachmentIds: string[];
|
|
6753
6753
|
transcriptKind: "assistant" | "thinking";
|
|
@@ -6770,11 +6770,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6770
6770
|
start: number;
|
|
6771
6771
|
end: number;
|
|
6772
6772
|
id: string;
|
|
6773
|
+
prefix: string;
|
|
6773
6774
|
surface: "workspace_file";
|
|
6774
6775
|
selectedText: string;
|
|
6775
6776
|
sourceConversationId: string;
|
|
6776
6777
|
sourceHash: string;
|
|
6777
|
-
prefix: string;
|
|
6778
6778
|
suffix: string;
|
|
6779
6779
|
attachmentIds: string[];
|
|
6780
6780
|
sourceFilePath: string;
|
|
@@ -6786,11 +6786,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6786
6786
|
start: number;
|
|
6787
6787
|
end: number;
|
|
6788
6788
|
id: string;
|
|
6789
|
+
prefix: string;
|
|
6789
6790
|
surface: "local_file";
|
|
6790
6791
|
selectedText: string;
|
|
6791
6792
|
sourceConversationId: string;
|
|
6792
6793
|
sourceHash: string;
|
|
6793
|
-
prefix: string;
|
|
6794
6794
|
suffix: string;
|
|
6795
6795
|
attachmentIds: string[];
|
|
6796
6796
|
sourceFilePath: string;
|
|
@@ -6815,11 +6815,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6815
6815
|
end: number;
|
|
6816
6816
|
id: string;
|
|
6817
6817
|
sourceMessageId: string;
|
|
6818
|
+
prefix: string;
|
|
6818
6819
|
surface: "assistant_body";
|
|
6819
6820
|
selectedText: string;
|
|
6820
6821
|
sourceConversationId: string;
|
|
6821
6822
|
sourceHash: string;
|
|
6822
|
-
prefix: string;
|
|
6823
6823
|
suffix: string;
|
|
6824
6824
|
comment?: unknown;
|
|
6825
6825
|
attachmentIds?: string[] | undefined;
|
|
@@ -6832,11 +6832,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6832
6832
|
generationSeqEnd: number;
|
|
6833
6833
|
id: string;
|
|
6834
6834
|
sourceMessageId: string;
|
|
6835
|
+
prefix: string;
|
|
6835
6836
|
surface: "process_transcript";
|
|
6836
6837
|
selectedText: string;
|
|
6837
6838
|
sourceConversationId: string;
|
|
6838
6839
|
sourceHash: string;
|
|
6839
|
-
prefix: string;
|
|
6840
6840
|
suffix: string;
|
|
6841
6841
|
transcriptKind: "assistant" | "thinking";
|
|
6842
6842
|
comment?: unknown;
|
|
@@ -6859,11 +6859,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6859
6859
|
start: number;
|
|
6860
6860
|
end: number;
|
|
6861
6861
|
id: string;
|
|
6862
|
+
prefix: string;
|
|
6862
6863
|
surface: "workspace_file";
|
|
6863
6864
|
selectedText: string;
|
|
6864
6865
|
sourceConversationId: string;
|
|
6865
6866
|
sourceHash: string;
|
|
6866
|
-
prefix: string;
|
|
6867
6867
|
suffix: string;
|
|
6868
6868
|
sourceFilePath: string;
|
|
6869
6869
|
sourceLibraryEntryId: string | null;
|
|
@@ -6875,11 +6875,11 @@ export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
|
6875
6875
|
start: number;
|
|
6876
6876
|
end: number;
|
|
6877
6877
|
id: string;
|
|
6878
|
+
prefix: string;
|
|
6878
6879
|
surface: "local_file";
|
|
6879
6880
|
selectedText: string;
|
|
6880
6881
|
sourceConversationId: string;
|
|
6881
6882
|
sourceHash: string;
|
|
6882
|
-
prefix: string;
|
|
6883
6883
|
suffix: string;
|
|
6884
6884
|
sourceFilePath: string;
|
|
6885
6885
|
sourceRenderMode: "text" | "markdown";
|
|
@@ -7422,8 +7422,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
7422
7422
|
outputMode: "track_issue" | "chat_output";
|
|
7423
7423
|
projectId?: string | null | undefined;
|
|
7424
7424
|
instructions?: string | null | undefined;
|
|
7425
|
-
description?: string | null | undefined;
|
|
7426
7425
|
goalId?: string | null | undefined;
|
|
7426
|
+
description?: string | null | undefined;
|
|
7427
7427
|
parentIssueId?: string | null | undefined;
|
|
7428
7428
|
}, {
|
|
7429
7429
|
title: string;
|
|
@@ -7436,8 +7436,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
7436
7436
|
status?: "active" | "paused" | undefined;
|
|
7437
7437
|
projectId?: string | null | undefined;
|
|
7438
7438
|
instructions?: string | null | undefined;
|
|
7439
|
-
description?: string | null | undefined;
|
|
7440
7439
|
goalId?: string | null | undefined;
|
|
7440
|
+
description?: string | null | undefined;
|
|
7441
7441
|
parentIssueId?: string | null | undefined;
|
|
7442
7442
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
7443
7443
|
concurrencyPolicy?: "coalesce_if_active" | "always_enqueue" | "skip_if_active" | undefined;
|
|
@@ -7471,8 +7471,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
7471
7471
|
status?: "active" | "paused" | undefined;
|
|
7472
7472
|
projectId?: string | null | undefined;
|
|
7473
7473
|
instructions?: string | null | undefined;
|
|
7474
|
-
description?: string | null | undefined;
|
|
7475
7474
|
goalId?: string | null | undefined;
|
|
7475
|
+
description?: string | null | undefined;
|
|
7476
7476
|
parentIssueId?: string | null | undefined;
|
|
7477
7477
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
7478
7478
|
concurrencyPolicy?: "coalesce_if_active" | "always_enqueue" | "skip_if_active" | undefined;
|