@cossistant/core 0.0.32 → 0.1.0
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/ai-sdk-utils.d.ts +33 -3
- package/ai-sdk-utils.d.ts.map +1 -1
- package/ai-sdk-utils.js +85 -21
- package/ai-sdk-utils.js.map +1 -1
- package/client.d.ts +1 -0
- package/client.d.ts.map +1 -1
- package/client.js +5 -0
- package/client.js.map +1 -1
- package/index.d.ts +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
- package/privacy-filter.d.ts.map +1 -1
- package/privacy-filter.js +7 -2
- package/privacy-filter.js.map +1 -1
- package/store/timeline-items-store.d.ts.map +1 -1
- package/types/src/api/conversation.d.ts +383 -8
- package/types/src/api/conversation.d.ts.map +1 -1
- package/types/src/api/timeline-item.d.ts +304 -4
- package/types/src/api/timeline-item.d.ts.map +1 -1
- package/types/src/api/timeline-item.js +14 -1
- package/types/src/api/timeline-item.js.map +1 -1
- package/types/src/realtime-events.d.ts +233 -8
- package/types/src/realtime-events.d.ts.map +1 -1
- package/types/src/schemas.d.ts +77 -2
- package/types/src/schemas.d.ts.map +1 -1
- package/types/src/tool-timeline-policy.js +16 -0
- package/types/src/tool-timeline-policy.js.map +1 -0
- package/utils.d.ts.map +1 -1
|
@@ -42,6 +42,19 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
42
42
|
}>>;
|
|
43
43
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
44
44
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
45
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
46
|
+
logType: z.ZodEnum<{
|
|
47
|
+
customer_facing: "customer_facing";
|
|
48
|
+
log: "log";
|
|
49
|
+
decision: "decision";
|
|
50
|
+
}>;
|
|
51
|
+
triggerMessageId: z.ZodString;
|
|
52
|
+
workflowRunId: z.ZodString;
|
|
53
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
54
|
+
public: "public";
|
|
55
|
+
private: "private";
|
|
56
|
+
}>>;
|
|
57
|
+
}, z.core.$strip>>;
|
|
45
58
|
}, z.core.$strip>>;
|
|
46
59
|
}, z.core.$loose>>;
|
|
47
60
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -56,6 +69,29 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
56
69
|
result: "result";
|
|
57
70
|
}>;
|
|
58
71
|
errorText: z.ZodOptional<z.ZodString>;
|
|
72
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
73
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
74
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
75
|
+
public: "public";
|
|
76
|
+
private: "private";
|
|
77
|
+
}>>;
|
|
78
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
79
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
80
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
81
|
+
logType: z.ZodEnum<{
|
|
82
|
+
customer_facing: "customer_facing";
|
|
83
|
+
log: "log";
|
|
84
|
+
decision: "decision";
|
|
85
|
+
}>;
|
|
86
|
+
triggerMessageId: z.ZodString;
|
|
87
|
+
workflowRunId: z.ZodString;
|
|
88
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
89
|
+
public: "public";
|
|
90
|
+
private: "private";
|
|
91
|
+
}>>;
|
|
92
|
+
}, z.core.$strip>>;
|
|
93
|
+
}, z.core.$strip>>;
|
|
94
|
+
}, z.core.$loose>>;
|
|
59
95
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
60
96
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
61
97
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -64,6 +100,19 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
64
100
|
}>>;
|
|
65
101
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
66
102
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
103
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
104
|
+
logType: z.ZodEnum<{
|
|
105
|
+
customer_facing: "customer_facing";
|
|
106
|
+
log: "log";
|
|
107
|
+
decision: "decision";
|
|
108
|
+
}>;
|
|
109
|
+
triggerMessageId: z.ZodString;
|
|
110
|
+
workflowRunId: z.ZodString;
|
|
111
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
112
|
+
public: "public";
|
|
113
|
+
private: "private";
|
|
114
|
+
}>>;
|
|
115
|
+
}, z.core.$strip>>;
|
|
67
116
|
}, z.core.$strip>>;
|
|
68
117
|
}, z.core.$loose>>;
|
|
69
118
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -79,6 +128,19 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
79
128
|
}>>;
|
|
80
129
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
81
130
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
131
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
132
|
+
logType: z.ZodEnum<{
|
|
133
|
+
customer_facing: "customer_facing";
|
|
134
|
+
log: "log";
|
|
135
|
+
decision: "decision";
|
|
136
|
+
}>;
|
|
137
|
+
triggerMessageId: z.ZodString;
|
|
138
|
+
workflowRunId: z.ZodString;
|
|
139
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
140
|
+
public: "public";
|
|
141
|
+
private: "private";
|
|
142
|
+
}>>;
|
|
143
|
+
}, z.core.$strip>>;
|
|
82
144
|
}, z.core.$strip>>;
|
|
83
145
|
}, z.core.$loose>>;
|
|
84
146
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -95,6 +157,19 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
95
157
|
}>>;
|
|
96
158
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
97
159
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
160
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
161
|
+
logType: z.ZodEnum<{
|
|
162
|
+
customer_facing: "customer_facing";
|
|
163
|
+
log: "log";
|
|
164
|
+
decision: "decision";
|
|
165
|
+
}>;
|
|
166
|
+
triggerMessageId: z.ZodString;
|
|
167
|
+
workflowRunId: z.ZodString;
|
|
168
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
169
|
+
public: "public";
|
|
170
|
+
private: "private";
|
|
171
|
+
}>>;
|
|
172
|
+
}, z.core.$strip>>;
|
|
98
173
|
}, z.core.$strip>>;
|
|
99
174
|
}, z.core.$loose>>;
|
|
100
175
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -116,6 +191,7 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
116
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
117
192
|
type: z.ZodLiteral<"event">;
|
|
118
193
|
eventType: z.ZodEnum<{
|
|
194
|
+
resolved: "resolved";
|
|
119
195
|
assigned: "assigned";
|
|
120
196
|
unassigned: "unassigned";
|
|
121
197
|
participant_requested: "participant_requested";
|
|
@@ -125,7 +201,6 @@ declare const createConversationRequestSchema: z.ZodObject<{
|
|
|
125
201
|
priority_changed: "priority_changed";
|
|
126
202
|
tag_added: "tag_added";
|
|
127
203
|
tag_removed: "tag_removed";
|
|
128
|
-
resolved: "resolved";
|
|
129
204
|
reopened: "reopened";
|
|
130
205
|
visitor_blocked: "visitor_blocked";
|
|
131
206
|
visitor_unblocked: "visitor_unblocked";
|
|
@@ -192,6 +267,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
192
267
|
}>>;
|
|
193
268
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
194
269
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
270
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
271
|
+
logType: z.ZodEnum<{
|
|
272
|
+
customer_facing: "customer_facing";
|
|
273
|
+
log: "log";
|
|
274
|
+
decision: "decision";
|
|
275
|
+
}>;
|
|
276
|
+
triggerMessageId: z.ZodString;
|
|
277
|
+
workflowRunId: z.ZodString;
|
|
278
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
279
|
+
public: "public";
|
|
280
|
+
private: "private";
|
|
281
|
+
}>>;
|
|
282
|
+
}, z.core.$strip>>;
|
|
195
283
|
}, z.core.$strip>>;
|
|
196
284
|
}, z.core.$loose>>;
|
|
197
285
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -206,6 +294,29 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
206
294
|
result: "result";
|
|
207
295
|
}>;
|
|
208
296
|
errorText: z.ZodOptional<z.ZodString>;
|
|
297
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
298
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
299
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
300
|
+
public: "public";
|
|
301
|
+
private: "private";
|
|
302
|
+
}>>;
|
|
303
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
304
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
305
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
306
|
+
logType: z.ZodEnum<{
|
|
307
|
+
customer_facing: "customer_facing";
|
|
308
|
+
log: "log";
|
|
309
|
+
decision: "decision";
|
|
310
|
+
}>;
|
|
311
|
+
triggerMessageId: z.ZodString;
|
|
312
|
+
workflowRunId: z.ZodString;
|
|
313
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
314
|
+
public: "public";
|
|
315
|
+
private: "private";
|
|
316
|
+
}>>;
|
|
317
|
+
}, z.core.$strip>>;
|
|
318
|
+
}, z.core.$strip>>;
|
|
319
|
+
}, z.core.$loose>>;
|
|
209
320
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
210
321
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
211
322
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -214,6 +325,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
214
325
|
}>>;
|
|
215
326
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
216
327
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
328
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
329
|
+
logType: z.ZodEnum<{
|
|
330
|
+
customer_facing: "customer_facing";
|
|
331
|
+
log: "log";
|
|
332
|
+
decision: "decision";
|
|
333
|
+
}>;
|
|
334
|
+
triggerMessageId: z.ZodString;
|
|
335
|
+
workflowRunId: z.ZodString;
|
|
336
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
337
|
+
public: "public";
|
|
338
|
+
private: "private";
|
|
339
|
+
}>>;
|
|
340
|
+
}, z.core.$strip>>;
|
|
217
341
|
}, z.core.$strip>>;
|
|
218
342
|
}, z.core.$loose>>;
|
|
219
343
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -229,6 +353,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
229
353
|
}>>;
|
|
230
354
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
231
355
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
356
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
357
|
+
logType: z.ZodEnum<{
|
|
358
|
+
customer_facing: "customer_facing";
|
|
359
|
+
log: "log";
|
|
360
|
+
decision: "decision";
|
|
361
|
+
}>;
|
|
362
|
+
triggerMessageId: z.ZodString;
|
|
363
|
+
workflowRunId: z.ZodString;
|
|
364
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
365
|
+
public: "public";
|
|
366
|
+
private: "private";
|
|
367
|
+
}>>;
|
|
368
|
+
}, z.core.$strip>>;
|
|
232
369
|
}, z.core.$strip>>;
|
|
233
370
|
}, z.core.$loose>>;
|
|
234
371
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -245,6 +382,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
245
382
|
}>>;
|
|
246
383
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
247
384
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
385
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
386
|
+
logType: z.ZodEnum<{
|
|
387
|
+
customer_facing: "customer_facing";
|
|
388
|
+
log: "log";
|
|
389
|
+
decision: "decision";
|
|
390
|
+
}>;
|
|
391
|
+
triggerMessageId: z.ZodString;
|
|
392
|
+
workflowRunId: z.ZodString;
|
|
393
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
394
|
+
public: "public";
|
|
395
|
+
private: "private";
|
|
396
|
+
}>>;
|
|
397
|
+
}, z.core.$strip>>;
|
|
248
398
|
}, z.core.$strip>>;
|
|
249
399
|
}, z.core.$loose>>;
|
|
250
400
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -266,6 +416,7 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
266
416
|
}, z.core.$strip>, z.ZodObject<{
|
|
267
417
|
type: z.ZodLiteral<"event">;
|
|
268
418
|
eventType: z.ZodEnum<{
|
|
419
|
+
resolved: "resolved";
|
|
269
420
|
assigned: "assigned";
|
|
270
421
|
unassigned: "unassigned";
|
|
271
422
|
participant_requested: "participant_requested";
|
|
@@ -275,7 +426,6 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
275
426
|
priority_changed: "priority_changed";
|
|
276
427
|
tag_added: "tag_added";
|
|
277
428
|
tag_removed: "tag_removed";
|
|
278
|
-
resolved: "resolved";
|
|
279
429
|
reopened: "reopened";
|
|
280
430
|
visitor_blocked: "visitor_blocked";
|
|
281
431
|
visitor_unblocked: "visitor_unblocked";
|
|
@@ -308,8 +458,8 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
308
458
|
visitorId: z.ZodString;
|
|
309
459
|
websiteId: z.ZodString;
|
|
310
460
|
status: z.ZodDefault<z.ZodEnum<{
|
|
311
|
-
resolved: "resolved";
|
|
312
461
|
open: "open";
|
|
462
|
+
resolved: "resolved";
|
|
313
463
|
spam: "spam";
|
|
314
464
|
}>>;
|
|
315
465
|
visitorRating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -354,6 +504,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
354
504
|
}>>;
|
|
355
505
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
356
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>>;
|
|
357
520
|
}, z.core.$strip>>;
|
|
358
521
|
}, z.core.$loose>>;
|
|
359
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -368,6 +531,29 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
368
531
|
result: "result";
|
|
369
532
|
}>;
|
|
370
533
|
errorText: z.ZodOptional<z.ZodString>;
|
|
534
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
535
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
536
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
537
|
+
public: "public";
|
|
538
|
+
private: "private";
|
|
539
|
+
}>>;
|
|
540
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
541
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
542
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
543
|
+
logType: z.ZodEnum<{
|
|
544
|
+
customer_facing: "customer_facing";
|
|
545
|
+
log: "log";
|
|
546
|
+
decision: "decision";
|
|
547
|
+
}>;
|
|
548
|
+
triggerMessageId: z.ZodString;
|
|
549
|
+
workflowRunId: z.ZodString;
|
|
550
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
551
|
+
public: "public";
|
|
552
|
+
private: "private";
|
|
553
|
+
}>>;
|
|
554
|
+
}, z.core.$strip>>;
|
|
555
|
+
}, z.core.$strip>>;
|
|
556
|
+
}, z.core.$loose>>;
|
|
371
557
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
372
558
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
373
559
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -376,6 +562,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
376
562
|
}>>;
|
|
377
563
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
378
564
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
565
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
566
|
+
logType: z.ZodEnum<{
|
|
567
|
+
customer_facing: "customer_facing";
|
|
568
|
+
log: "log";
|
|
569
|
+
decision: "decision";
|
|
570
|
+
}>;
|
|
571
|
+
triggerMessageId: z.ZodString;
|
|
572
|
+
workflowRunId: z.ZodString;
|
|
573
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
574
|
+
public: "public";
|
|
575
|
+
private: "private";
|
|
576
|
+
}>>;
|
|
577
|
+
}, z.core.$strip>>;
|
|
379
578
|
}, z.core.$strip>>;
|
|
380
579
|
}, z.core.$loose>>;
|
|
381
580
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -391,6 +590,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
391
590
|
}>>;
|
|
392
591
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
393
592
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
593
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
594
|
+
logType: z.ZodEnum<{
|
|
595
|
+
customer_facing: "customer_facing";
|
|
596
|
+
log: "log";
|
|
597
|
+
decision: "decision";
|
|
598
|
+
}>;
|
|
599
|
+
triggerMessageId: z.ZodString;
|
|
600
|
+
workflowRunId: z.ZodString;
|
|
601
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
602
|
+
public: "public";
|
|
603
|
+
private: "private";
|
|
604
|
+
}>>;
|
|
605
|
+
}, z.core.$strip>>;
|
|
394
606
|
}, z.core.$strip>>;
|
|
395
607
|
}, z.core.$loose>>;
|
|
396
608
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -407,6 +619,19 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
407
619
|
}>>;
|
|
408
620
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
409
621
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
622
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
623
|
+
logType: z.ZodEnum<{
|
|
624
|
+
customer_facing: "customer_facing";
|
|
625
|
+
log: "log";
|
|
626
|
+
decision: "decision";
|
|
627
|
+
}>;
|
|
628
|
+
triggerMessageId: z.ZodString;
|
|
629
|
+
workflowRunId: z.ZodString;
|
|
630
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
631
|
+
public: "public";
|
|
632
|
+
private: "private";
|
|
633
|
+
}>>;
|
|
634
|
+
}, z.core.$strip>>;
|
|
410
635
|
}, z.core.$strip>>;
|
|
411
636
|
}, z.core.$loose>>;
|
|
412
637
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -428,6 +653,7 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
428
653
|
}, z.core.$strip>, z.ZodObject<{
|
|
429
654
|
type: z.ZodLiteral<"event">;
|
|
430
655
|
eventType: z.ZodEnum<{
|
|
656
|
+
resolved: "resolved";
|
|
431
657
|
assigned: "assigned";
|
|
432
658
|
unassigned: "unassigned";
|
|
433
659
|
participant_requested: "participant_requested";
|
|
@@ -437,7 +663,6 @@ declare const createConversationResponseSchema: z.ZodObject<{
|
|
|
437
663
|
priority_changed: "priority_changed";
|
|
438
664
|
tag_added: "tag_added";
|
|
439
665
|
tag_removed: "tag_removed";
|
|
440
|
-
resolved: "resolved";
|
|
441
666
|
reopened: "reopened";
|
|
442
667
|
visitor_blocked: "visitor_blocked";
|
|
443
668
|
visitor_unblocked: "visitor_unblocked";
|
|
@@ -492,8 +717,8 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
492
717
|
visitorId: z.ZodString;
|
|
493
718
|
websiteId: z.ZodString;
|
|
494
719
|
status: z.ZodDefault<z.ZodEnum<{
|
|
495
|
-
resolved: "resolved";
|
|
496
720
|
open: "open";
|
|
721
|
+
resolved: "resolved";
|
|
497
722
|
spam: "spam";
|
|
498
723
|
}>>;
|
|
499
724
|
visitorRating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -538,6 +763,19 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
538
763
|
}>>;
|
|
539
764
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
540
765
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
766
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
767
|
+
logType: z.ZodEnum<{
|
|
768
|
+
customer_facing: "customer_facing";
|
|
769
|
+
log: "log";
|
|
770
|
+
decision: "decision";
|
|
771
|
+
}>;
|
|
772
|
+
triggerMessageId: z.ZodString;
|
|
773
|
+
workflowRunId: z.ZodString;
|
|
774
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
775
|
+
public: "public";
|
|
776
|
+
private: "private";
|
|
777
|
+
}>>;
|
|
778
|
+
}, z.core.$strip>>;
|
|
541
779
|
}, z.core.$strip>>;
|
|
542
780
|
}, z.core.$loose>>;
|
|
543
781
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -552,6 +790,29 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
552
790
|
result: "result";
|
|
553
791
|
}>;
|
|
554
792
|
errorText: z.ZodOptional<z.ZodString>;
|
|
793
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
794
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
795
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
796
|
+
public: "public";
|
|
797
|
+
private: "private";
|
|
798
|
+
}>>;
|
|
799
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
800
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
801
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
802
|
+
logType: z.ZodEnum<{
|
|
803
|
+
customer_facing: "customer_facing";
|
|
804
|
+
log: "log";
|
|
805
|
+
decision: "decision";
|
|
806
|
+
}>;
|
|
807
|
+
triggerMessageId: z.ZodString;
|
|
808
|
+
workflowRunId: z.ZodString;
|
|
809
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
810
|
+
public: "public";
|
|
811
|
+
private: "private";
|
|
812
|
+
}>>;
|
|
813
|
+
}, z.core.$strip>>;
|
|
814
|
+
}, z.core.$strip>>;
|
|
815
|
+
}, z.core.$loose>>;
|
|
555
816
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
556
817
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
557
818
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -560,6 +821,19 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
560
821
|
}>>;
|
|
561
822
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
562
823
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
824
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
825
|
+
logType: z.ZodEnum<{
|
|
826
|
+
customer_facing: "customer_facing";
|
|
827
|
+
log: "log";
|
|
828
|
+
decision: "decision";
|
|
829
|
+
}>;
|
|
830
|
+
triggerMessageId: z.ZodString;
|
|
831
|
+
workflowRunId: z.ZodString;
|
|
832
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
833
|
+
public: "public";
|
|
834
|
+
private: "private";
|
|
835
|
+
}>>;
|
|
836
|
+
}, z.core.$strip>>;
|
|
563
837
|
}, z.core.$strip>>;
|
|
564
838
|
}, z.core.$loose>>;
|
|
565
839
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -575,6 +849,19 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
575
849
|
}>>;
|
|
576
850
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
577
851
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
852
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
853
|
+
logType: z.ZodEnum<{
|
|
854
|
+
customer_facing: "customer_facing";
|
|
855
|
+
log: "log";
|
|
856
|
+
decision: "decision";
|
|
857
|
+
}>;
|
|
858
|
+
triggerMessageId: z.ZodString;
|
|
859
|
+
workflowRunId: z.ZodString;
|
|
860
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
861
|
+
public: "public";
|
|
862
|
+
private: "private";
|
|
863
|
+
}>>;
|
|
864
|
+
}, z.core.$strip>>;
|
|
578
865
|
}, z.core.$strip>>;
|
|
579
866
|
}, z.core.$loose>>;
|
|
580
867
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -591,6 +878,19 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
591
878
|
}>>;
|
|
592
879
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
593
880
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
881
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
882
|
+
logType: z.ZodEnum<{
|
|
883
|
+
customer_facing: "customer_facing";
|
|
884
|
+
log: "log";
|
|
885
|
+
decision: "decision";
|
|
886
|
+
}>;
|
|
887
|
+
triggerMessageId: z.ZodString;
|
|
888
|
+
workflowRunId: z.ZodString;
|
|
889
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
890
|
+
public: "public";
|
|
891
|
+
private: "private";
|
|
892
|
+
}>>;
|
|
893
|
+
}, z.core.$strip>>;
|
|
594
894
|
}, z.core.$strip>>;
|
|
595
895
|
}, z.core.$loose>>;
|
|
596
896
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -612,6 +912,7 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
612
912
|
}, z.core.$strip>, z.ZodObject<{
|
|
613
913
|
type: z.ZodLiteral<"event">;
|
|
614
914
|
eventType: z.ZodEnum<{
|
|
915
|
+
resolved: "resolved";
|
|
615
916
|
assigned: "assigned";
|
|
616
917
|
unassigned: "unassigned";
|
|
617
918
|
participant_requested: "participant_requested";
|
|
@@ -621,7 +922,6 @@ declare const listConversationsResponseSchema: z.ZodObject<{
|
|
|
621
922
|
priority_changed: "priority_changed";
|
|
622
923
|
tag_added: "tag_added";
|
|
623
924
|
tag_removed: "tag_removed";
|
|
624
|
-
resolved: "resolved";
|
|
625
925
|
reopened: "reopened";
|
|
626
926
|
visitor_blocked: "visitor_blocked";
|
|
627
927
|
visitor_unblocked: "visitor_unblocked";
|
|
@@ -669,8 +969,8 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
669
969
|
visitorId: z.ZodString;
|
|
670
970
|
websiteId: z.ZodString;
|
|
671
971
|
status: z.ZodDefault<z.ZodEnum<{
|
|
672
|
-
resolved: "resolved";
|
|
673
972
|
open: "open";
|
|
973
|
+
resolved: "resolved";
|
|
674
974
|
spam: "spam";
|
|
675
975
|
}>>;
|
|
676
976
|
visitorRating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -715,6 +1015,19 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
715
1015
|
}>>;
|
|
716
1016
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
717
1017
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1018
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1019
|
+
logType: z.ZodEnum<{
|
|
1020
|
+
customer_facing: "customer_facing";
|
|
1021
|
+
log: "log";
|
|
1022
|
+
decision: "decision";
|
|
1023
|
+
}>;
|
|
1024
|
+
triggerMessageId: z.ZodString;
|
|
1025
|
+
workflowRunId: z.ZodString;
|
|
1026
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1027
|
+
public: "public";
|
|
1028
|
+
private: "private";
|
|
1029
|
+
}>>;
|
|
1030
|
+
}, z.core.$strip>>;
|
|
718
1031
|
}, z.core.$strip>>;
|
|
719
1032
|
}, z.core.$loose>>;
|
|
720
1033
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -729,6 +1042,29 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
729
1042
|
result: "result";
|
|
730
1043
|
}>;
|
|
731
1044
|
errorText: z.ZodOptional<z.ZodString>;
|
|
1045
|
+
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
1046
|
+
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1047
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1048
|
+
public: "public";
|
|
1049
|
+
private: "private";
|
|
1050
|
+
}>>;
|
|
1051
|
+
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1054
|
+
logType: z.ZodEnum<{
|
|
1055
|
+
customer_facing: "customer_facing";
|
|
1056
|
+
log: "log";
|
|
1057
|
+
decision: "decision";
|
|
1058
|
+
}>;
|
|
1059
|
+
triggerMessageId: z.ZodString;
|
|
1060
|
+
workflowRunId: z.ZodString;
|
|
1061
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1062
|
+
public: "public";
|
|
1063
|
+
private: "private";
|
|
1064
|
+
}>>;
|
|
1065
|
+
}, z.core.$strip>>;
|
|
1066
|
+
}, z.core.$strip>>;
|
|
1067
|
+
}, z.core.$loose>>;
|
|
732
1068
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
733
1069
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
734
1070
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -737,6 +1073,19 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
737
1073
|
}>>;
|
|
738
1074
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
739
1075
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1076
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1077
|
+
logType: z.ZodEnum<{
|
|
1078
|
+
customer_facing: "customer_facing";
|
|
1079
|
+
log: "log";
|
|
1080
|
+
decision: "decision";
|
|
1081
|
+
}>;
|
|
1082
|
+
triggerMessageId: z.ZodString;
|
|
1083
|
+
workflowRunId: z.ZodString;
|
|
1084
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1085
|
+
public: "public";
|
|
1086
|
+
private: "private";
|
|
1087
|
+
}>>;
|
|
1088
|
+
}, z.core.$strip>>;
|
|
740
1089
|
}, z.core.$strip>>;
|
|
741
1090
|
}, z.core.$loose>>;
|
|
742
1091
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -752,6 +1101,19 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
752
1101
|
}>>;
|
|
753
1102
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
754
1103
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1104
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1105
|
+
logType: z.ZodEnum<{
|
|
1106
|
+
customer_facing: "customer_facing";
|
|
1107
|
+
log: "log";
|
|
1108
|
+
decision: "decision";
|
|
1109
|
+
}>;
|
|
1110
|
+
triggerMessageId: z.ZodString;
|
|
1111
|
+
workflowRunId: z.ZodString;
|
|
1112
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1113
|
+
public: "public";
|
|
1114
|
+
private: "private";
|
|
1115
|
+
}>>;
|
|
1116
|
+
}, z.core.$strip>>;
|
|
755
1117
|
}, z.core.$strip>>;
|
|
756
1118
|
}, z.core.$loose>>;
|
|
757
1119
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -768,6 +1130,19 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
768
1130
|
}>>;
|
|
769
1131
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
770
1132
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
toolTimeline: z.ZodOptional<z.ZodObject<{
|
|
1134
|
+
logType: z.ZodEnum<{
|
|
1135
|
+
customer_facing: "customer_facing";
|
|
1136
|
+
log: "log";
|
|
1137
|
+
decision: "decision";
|
|
1138
|
+
}>;
|
|
1139
|
+
triggerMessageId: z.ZodString;
|
|
1140
|
+
workflowRunId: z.ZodString;
|
|
1141
|
+
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1142
|
+
public: "public";
|
|
1143
|
+
private: "private";
|
|
1144
|
+
}>>;
|
|
1145
|
+
}, z.core.$strip>>;
|
|
771
1146
|
}, z.core.$strip>>;
|
|
772
1147
|
}, z.core.$loose>>;
|
|
773
1148
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -789,6 +1164,7 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
789
1164
|
}, z.core.$strip>, z.ZodObject<{
|
|
790
1165
|
type: z.ZodLiteral<"event">;
|
|
791
1166
|
eventType: z.ZodEnum<{
|
|
1167
|
+
resolved: "resolved";
|
|
792
1168
|
assigned: "assigned";
|
|
793
1169
|
unassigned: "unassigned";
|
|
794
1170
|
participant_requested: "participant_requested";
|
|
@@ -798,7 +1174,6 @@ declare const getConversationResponseSchema: z.ZodObject<{
|
|
|
798
1174
|
priority_changed: "priority_changed";
|
|
799
1175
|
tag_added: "tag_added";
|
|
800
1176
|
tag_removed: "tag_removed";
|
|
801
|
-
resolved: "resolved";
|
|
802
1177
|
reopened: "reopened";
|
|
803
1178
|
visitor_blocked: "visitor_blocked";
|
|
804
1179
|
visitor_unblocked: "visitor_unblocked";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation.d.ts","names":[],"sources":["../../../../../types/src/api/conversation.ts"],"sourcesContent":[],"mappings":";;;cAIa,iCAA+B,CAAA,CAAA;;EAA/B,cAAA,eAAA,YAoBV,CAAA
|
|
1
|
+
{"version":3,"file":"conversation.d.ts","names":[],"sources":["../../../../../types/src/api/conversation.ts"],"sourcesContent":[],"mappings":"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"}
|