@cossistant/types 0.0.32 → 0.0.33
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/api/ai-agent.d.ts.map +1 -1
- package/api/contact.d.ts.map +1 -1
- package/api/conversation.d.ts +375 -0
- package/api/conversation.d.ts.map +1 -1
- package/api/index.d.ts +2 -2
- package/api/link-source.d.ts +4 -4
- package/api/link-source.d.ts.map +1 -1
- package/api/timeline-item.d.ts +478 -1
- package/api/timeline-item.d.ts.map +1 -1
- package/api/timeline-item.js +14 -1
- package/api/timeline-item.js.map +1 -1
- package/index.d.ts +3 -2
- package/index.d.ts.map +1 -1
- package/index.js +2 -1
- package/package.json +1 -1
- package/realtime-events.d.ts +226 -1
- package/realtime-events.d.ts.map +1 -1
- package/schemas.d.ts +75 -0
- package/schemas.d.ts.map +1 -1
- package/tool-timeline-policy.d.ts +13 -0
- package/tool-timeline-policy.d.ts.map +1 -0
- package/tool-timeline-policy.js +24 -0
- package/tool-timeline-policy.js.map +1 -0
- package/trpc/conversation.d.ts +300 -0
- package/trpc/conversation.d.ts.map +1 -1
package/trpc/conversation.d.ts
CHANGED
|
@@ -197,6 +197,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
197
197
|
}>>;
|
|
198
198
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
199
199
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
200
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
201
|
+
logType: z.ZodEnum<{
|
|
202
|
+
customer_facing: "customer_facing";
|
|
203
|
+
log: "log";
|
|
204
|
+
decision: "decision";
|
|
205
|
+
}>;
|
|
206
|
+
triggerMessageId: z.ZodString;
|
|
207
|
+
workflowRunId: z.ZodString;
|
|
208
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
public: "public";
|
|
210
|
+
private: "private";
|
|
211
|
+
}>>;
|
|
212
|
+
}, z.core.$strip>>;
|
|
200
213
|
}, z.core.$strip>>;
|
|
201
214
|
}, z.core.$loose>>;
|
|
202
215
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -211,6 +224,29 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
211
224
|
result: "result";
|
|
212
225
|
}>;
|
|
213
226
|
errorText: z.ZodOptional<z.ZodString>;
|
|
227
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
228
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
229
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
230
|
+
public: "public";
|
|
231
|
+
private: "private";
|
|
232
|
+
}>>;
|
|
233
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
234
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
235
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
236
|
+
logType: z.ZodEnum<{
|
|
237
|
+
customer_facing: "customer_facing";
|
|
238
|
+
log: "log";
|
|
239
|
+
decision: "decision";
|
|
240
|
+
}>;
|
|
241
|
+
triggerMessageId: z.ZodString;
|
|
242
|
+
workflowRunId: z.ZodString;
|
|
243
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
244
|
+
public: "public";
|
|
245
|
+
private: "private";
|
|
246
|
+
}>>;
|
|
247
|
+
}, z.core.$strip>>;
|
|
248
|
+
}, z.core.$strip>>;
|
|
249
|
+
}, z.core.$loose>>;
|
|
214
250
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
215
251
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
216
252
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -219,6 +255,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
219
255
|
}>>;
|
|
220
256
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
221
257
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
258
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
259
|
+
logType: z.ZodEnum<{
|
|
260
|
+
customer_facing: "customer_facing";
|
|
261
|
+
log: "log";
|
|
262
|
+
decision: "decision";
|
|
263
|
+
}>;
|
|
264
|
+
triggerMessageId: z.ZodString;
|
|
265
|
+
workflowRunId: z.ZodString;
|
|
266
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
267
|
+
public: "public";
|
|
268
|
+
private: "private";
|
|
269
|
+
}>>;
|
|
270
|
+
}, z.core.$strip>>;
|
|
222
271
|
}, z.core.$strip>>;
|
|
223
272
|
}, z.core.$loose>>;
|
|
224
273
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -234,6 +283,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
234
283
|
}>>;
|
|
235
284
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
236
285
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
286
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
287
|
+
logType: z.ZodEnum<{
|
|
288
|
+
customer_facing: "customer_facing";
|
|
289
|
+
log: "log";
|
|
290
|
+
decision: "decision";
|
|
291
|
+
}>;
|
|
292
|
+
triggerMessageId: z.ZodString;
|
|
293
|
+
workflowRunId: z.ZodString;
|
|
294
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
295
|
+
public: "public";
|
|
296
|
+
private: "private";
|
|
297
|
+
}>>;
|
|
298
|
+
}, z.core.$strip>>;
|
|
237
299
|
}, z.core.$strip>>;
|
|
238
300
|
}, z.core.$loose>>;
|
|
239
301
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -250,6 +312,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
250
312
|
}>>;
|
|
251
313
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
252
314
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
315
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
316
|
+
logType: z.ZodEnum<{
|
|
317
|
+
customer_facing: "customer_facing";
|
|
318
|
+
log: "log";
|
|
319
|
+
decision: "decision";
|
|
320
|
+
}>;
|
|
321
|
+
triggerMessageId: z.ZodString;
|
|
322
|
+
workflowRunId: z.ZodString;
|
|
323
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
324
|
+
public: "public";
|
|
325
|
+
private: "private";
|
|
326
|
+
}>>;
|
|
327
|
+
}, z.core.$strip>>;
|
|
253
328
|
}, z.core.$strip>>;
|
|
254
329
|
}, z.core.$loose>>;
|
|
255
330
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -343,6 +418,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
343
418
|
}>>;
|
|
344
419
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
345
420
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
421
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
422
|
+
logType: z.ZodEnum<{
|
|
423
|
+
customer_facing: "customer_facing";
|
|
424
|
+
log: "log";
|
|
425
|
+
decision: "decision";
|
|
426
|
+
}>;
|
|
427
|
+
triggerMessageId: z.ZodString;
|
|
428
|
+
workflowRunId: z.ZodString;
|
|
429
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
430
|
+
public: "public";
|
|
431
|
+
private: "private";
|
|
432
|
+
}>>;
|
|
433
|
+
}, z.core.$strip>>;
|
|
346
434
|
}, z.core.$strip>>;
|
|
347
435
|
}, z.core.$loose>>;
|
|
348
436
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -357,6 +445,29 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
357
445
|
result: "result";
|
|
358
446
|
}>;
|
|
359
447
|
errorText: z.ZodOptional<z.ZodString>;
|
|
448
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
449
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
450
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
451
|
+
public: "public";
|
|
452
|
+
private: "private";
|
|
453
|
+
}>>;
|
|
454
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
455
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
456
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
457
|
+
logType: z.ZodEnum<{
|
|
458
|
+
customer_facing: "customer_facing";
|
|
459
|
+
log: "log";
|
|
460
|
+
decision: "decision";
|
|
461
|
+
}>;
|
|
462
|
+
triggerMessageId: z.ZodString;
|
|
463
|
+
workflowRunId: z.ZodString;
|
|
464
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
465
|
+
public: "public";
|
|
466
|
+
private: "private";
|
|
467
|
+
}>>;
|
|
468
|
+
}, z.core.$strip>>;
|
|
469
|
+
}, z.core.$strip>>;
|
|
470
|
+
}, z.core.$loose>>;
|
|
360
471
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
361
472
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
362
473
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -365,6 +476,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
365
476
|
}>>;
|
|
366
477
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
367
478
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
479
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
480
|
+
logType: z.ZodEnum<{
|
|
481
|
+
customer_facing: "customer_facing";
|
|
482
|
+
log: "log";
|
|
483
|
+
decision: "decision";
|
|
484
|
+
}>;
|
|
485
|
+
triggerMessageId: z.ZodString;
|
|
486
|
+
workflowRunId: z.ZodString;
|
|
487
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
488
|
+
public: "public";
|
|
489
|
+
private: "private";
|
|
490
|
+
}>>;
|
|
491
|
+
}, z.core.$strip>>;
|
|
368
492
|
}, z.core.$strip>>;
|
|
369
493
|
}, z.core.$loose>>;
|
|
370
494
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -380,6 +504,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
380
504
|
}>>;
|
|
381
505
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
382
506
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
507
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
508
|
+
logType: z.ZodEnum<{
|
|
509
|
+
customer_facing: "customer_facing";
|
|
510
|
+
log: "log";
|
|
511
|
+
decision: "decision";
|
|
512
|
+
}>;
|
|
513
|
+
triggerMessageId: z.ZodString;
|
|
514
|
+
workflowRunId: z.ZodString;
|
|
515
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
516
|
+
public: "public";
|
|
517
|
+
private: "private";
|
|
518
|
+
}>>;
|
|
519
|
+
}, z.core.$strip>>;
|
|
383
520
|
}, z.core.$strip>>;
|
|
384
521
|
}, z.core.$loose>>;
|
|
385
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -396,6 +533,19 @@ declare const conversationHeaderSchema: z.ZodObject<{
|
|
|
396
533
|
}>>;
|
|
397
534
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
398
535
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
536
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
537
|
+
logType: z.ZodEnum<{
|
|
538
|
+
customer_facing: "customer_facing";
|
|
539
|
+
log: "log";
|
|
540
|
+
decision: "decision";
|
|
541
|
+
}>;
|
|
542
|
+
triggerMessageId: z.ZodString;
|
|
543
|
+
workflowRunId: z.ZodString;
|
|
544
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
545
|
+
public: "public";
|
|
546
|
+
private: "private";
|
|
547
|
+
}>>;
|
|
548
|
+
}, z.core.$strip>>;
|
|
399
549
|
}, z.core.$strip>>;
|
|
400
550
|
}, z.core.$loose>>;
|
|
401
551
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -554,6 +704,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
554
704
|
}>>;
|
|
555
705
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
556
706
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
707
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
708
|
+
logType: z.ZodEnum<{
|
|
709
|
+
customer_facing: "customer_facing";
|
|
710
|
+
log: "log";
|
|
711
|
+
decision: "decision";
|
|
712
|
+
}>;
|
|
713
|
+
triggerMessageId: z.ZodString;
|
|
714
|
+
workflowRunId: z.ZodString;
|
|
715
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
716
|
+
public: "public";
|
|
717
|
+
private: "private";
|
|
718
|
+
}>>;
|
|
719
|
+
}, z.core.$strip>>;
|
|
557
720
|
}, z.core.$strip>>;
|
|
558
721
|
}, z.core.$loose>>;
|
|
559
722
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -568,6 +731,29 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
568
731
|
result: "result";
|
|
569
732
|
}>;
|
|
570
733
|
errorText: z.ZodOptional<z.ZodString>;
|
|
734
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
735
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
736
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
737
|
+
public: "public";
|
|
738
|
+
private: "private";
|
|
739
|
+
}>>;
|
|
740
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
741
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
742
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
743
|
+
logType: z.ZodEnum<{
|
|
744
|
+
customer_facing: "customer_facing";
|
|
745
|
+
log: "log";
|
|
746
|
+
decision: "decision";
|
|
747
|
+
}>;
|
|
748
|
+
triggerMessageId: z.ZodString;
|
|
749
|
+
workflowRunId: z.ZodString;
|
|
750
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
751
|
+
public: "public";
|
|
752
|
+
private: "private";
|
|
753
|
+
}>>;
|
|
754
|
+
}, z.core.$strip>>;
|
|
755
|
+
}, z.core.$strip>>;
|
|
756
|
+
}, z.core.$loose>>;
|
|
571
757
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
572
758
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
573
759
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -576,6 +762,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
576
762
|
}>>;
|
|
577
763
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
578
764
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
765
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
766
|
+
logType: z.ZodEnum<{
|
|
767
|
+
customer_facing: "customer_facing";
|
|
768
|
+
log: "log";
|
|
769
|
+
decision: "decision";
|
|
770
|
+
}>;
|
|
771
|
+
triggerMessageId: z.ZodString;
|
|
772
|
+
workflowRunId: z.ZodString;
|
|
773
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
774
|
+
public: "public";
|
|
775
|
+
private: "private";
|
|
776
|
+
}>>;
|
|
777
|
+
}, z.core.$strip>>;
|
|
579
778
|
}, z.core.$strip>>;
|
|
580
779
|
}, z.core.$loose>>;
|
|
581
780
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -591,6 +790,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
591
790
|
}>>;
|
|
592
791
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
593
792
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
793
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
794
|
+
logType: z.ZodEnum<{
|
|
795
|
+
customer_facing: "customer_facing";
|
|
796
|
+
log: "log";
|
|
797
|
+
decision: "decision";
|
|
798
|
+
}>;
|
|
799
|
+
triggerMessageId: z.ZodString;
|
|
800
|
+
workflowRunId: z.ZodString;
|
|
801
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
802
|
+
public: "public";
|
|
803
|
+
private: "private";
|
|
804
|
+
}>>;
|
|
805
|
+
}, z.core.$strip>>;
|
|
594
806
|
}, z.core.$strip>>;
|
|
595
807
|
}, z.core.$loose>>;
|
|
596
808
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -607,6 +819,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
607
819
|
}>>;
|
|
608
820
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
609
821
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
822
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
823
|
+
logType: z.ZodEnum<{
|
|
824
|
+
customer_facing: "customer_facing";
|
|
825
|
+
log: "log";
|
|
826
|
+
decision: "decision";
|
|
827
|
+
}>;
|
|
828
|
+
triggerMessageId: z.ZodString;
|
|
829
|
+
workflowRunId: z.ZodString;
|
|
830
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
831
|
+
public: "public";
|
|
832
|
+
private: "private";
|
|
833
|
+
}>>;
|
|
834
|
+
}, z.core.$strip>>;
|
|
610
835
|
}, z.core.$strip>>;
|
|
611
836
|
}, z.core.$loose>>;
|
|
612
837
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -700,6 +925,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
700
925
|
}>>;
|
|
701
926
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
702
927
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
928
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
929
|
+
logType: z.ZodEnum<{
|
|
930
|
+
customer_facing: "customer_facing";
|
|
931
|
+
log: "log";
|
|
932
|
+
decision: "decision";
|
|
933
|
+
}>;
|
|
934
|
+
triggerMessageId: z.ZodString;
|
|
935
|
+
workflowRunId: z.ZodString;
|
|
936
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
937
|
+
public: "public";
|
|
938
|
+
private: "private";
|
|
939
|
+
}>>;
|
|
940
|
+
}, z.core.$strip>>;
|
|
703
941
|
}, z.core.$strip>>;
|
|
704
942
|
}, z.core.$loose>>;
|
|
705
943
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -714,6 +952,29 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
714
952
|
result: "result";
|
|
715
953
|
}>;
|
|
716
954
|
errorText: z.ZodOptional<z.ZodString>;
|
|
955
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
956
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
957
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
958
|
+
public: "public";
|
|
959
|
+
private: "private";
|
|
960
|
+
}>>;
|
|
961
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
962
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
963
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
964
|
+
logType: z.ZodEnum<{
|
|
965
|
+
customer_facing: "customer_facing";
|
|
966
|
+
log: "log";
|
|
967
|
+
decision: "decision";
|
|
968
|
+
}>;
|
|
969
|
+
triggerMessageId: z.ZodString;
|
|
970
|
+
workflowRunId: z.ZodString;
|
|
971
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
972
|
+
public: "public";
|
|
973
|
+
private: "private";
|
|
974
|
+
}>>;
|
|
975
|
+
}, z.core.$strip>>;
|
|
976
|
+
}, z.core.$strip>>;
|
|
977
|
+
}, z.core.$loose>>;
|
|
717
978
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
718
979
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
719
980
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -722,6 +983,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
722
983
|
}>>;
|
|
723
984
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
724
985
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
986
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
987
|
+
logType: z.ZodEnum<{
|
|
988
|
+
customer_facing: "customer_facing";
|
|
989
|
+
log: "log";
|
|
990
|
+
decision: "decision";
|
|
991
|
+
}>;
|
|
992
|
+
triggerMessageId: z.ZodString;
|
|
993
|
+
workflowRunId: z.ZodString;
|
|
994
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
995
|
+
public: "public";
|
|
996
|
+
private: "private";
|
|
997
|
+
}>>;
|
|
998
|
+
}, z.core.$strip>>;
|
|
725
999
|
}, z.core.$strip>>;
|
|
726
1000
|
}, z.core.$loose>>;
|
|
727
1001
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -737,6 +1011,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
737
1011
|
}>>;
|
|
738
1012
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
739
1013
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1015
|
+
logType: z.ZodEnum<{
|
|
1016
|
+
customer_facing: "customer_facing";
|
|
1017
|
+
log: "log";
|
|
1018
|
+
decision: "decision";
|
|
1019
|
+
}>;
|
|
1020
|
+
triggerMessageId: z.ZodString;
|
|
1021
|
+
workflowRunId: z.ZodString;
|
|
1022
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1023
|
+
public: "public";
|
|
1024
|
+
private: "private";
|
|
1025
|
+
}>>;
|
|
1026
|
+
}, z.core.$strip>>;
|
|
740
1027
|
}, z.core.$strip>>;
|
|
741
1028
|
}, z.core.$loose>>;
|
|
742
1029
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -753,6 +1040,19 @@ declare const listConversationHeadersResponseSchema: z.ZodObject<{
|
|
|
753
1040
|
}>>;
|
|
754
1041
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
755
1042
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1043
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1044
|
+
logType: z.ZodEnum<{
|
|
1045
|
+
customer_facing: "customer_facing";
|
|
1046
|
+
log: "log";
|
|
1047
|
+
decision: "decision";
|
|
1048
|
+
}>;
|
|
1049
|
+
triggerMessageId: z.ZodString;
|
|
1050
|
+
workflowRunId: z.ZodString;
|
|
1051
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1052
|
+
public: "public";
|
|
1053
|
+
private: "private";
|
|
1054
|
+
}>>;
|
|
1055
|
+
}, z.core.$strip>>;
|
|
756
1056
|
}, z.core.$strip>>;
|
|
757
1057
|
}, z.core.$loose>>;
|
|
758
1058
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation.d.ts","names":[],"sources":["../../src/trpc/conversation.ts"],"sourcesContent":[],"mappings":";;;cAUa,0BAAwB,CAAA,CAAA;;EAAxB,QAAA,EAAA,UAAA;EAMA,IAAA,EAAA,MAAA;AAOb,CAAA,CAAA;AAQa,cAfA,0BA+CX,EA/CqC,CAAA,CAAA,OA+CrC,CAAA;;;;;;cAxCW,6BAA2B,CAAA,CAAA,YAAA,CAAA,CAAA;;;;;cAQ3B,0BAAwB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAA,SAAA,aAAA;EAAA,SAAA,aAAA;EAkCzB,SAAA,eAAA,YAA0B,CAAA;AAItC,CAAA,eAAa,CAAA;KAJD,0BAAA,GAA6B,CAAA,CAAE,aACnC;cAGK,oCAAkC,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlC,0BAAwB,CAAA,CAAA;;;;;IAJU,IAAA,EAAA,MAAA;EAAA,CAAA,CAAA;EAIlC,QAAA,WAAA,CAAA
|
|
1
|
+
{"version":3,"file":"conversation.d.ts","names":[],"sources":["../../src/trpc/conversation.ts"],"sourcesContent":[],"mappings":"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"}
|