@cossistant/react 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/README.md +3 -3
- package/hooks/index.d.ts +2 -2
- package/hooks/index.js +2 -2
- package/hooks/private/store/use-store-selector.d.ts.map +1 -1
- package/hooks/private/store/use-store-selector.js +8 -4
- package/hooks/private/store/use-store-selector.js.map +1 -1
- package/hooks/private/use-client-query.js +5 -2
- package/hooks/private/use-client-query.js.map +1 -1
- package/hooks/private/use-grouped-messages.d.ts +27 -2
- package/hooks/private/use-grouped-messages.d.ts.map +1 -1
- package/hooks/private/use-grouped-messages.js +154 -106
- package/hooks/private/use-grouped-messages.js.map +1 -1
- package/hooks/private/use-rest-client.js +2 -1
- package/hooks/private/use-rest-client.js.map +1 -1
- package/hooks/use-conversation-auto-seen.d.ts.map +1 -1
- package/hooks/use-conversation-auto-seen.js +9 -3
- package/hooks/use-conversation-auto-seen.js.map +1 -1
- package/hooks/use-conversation-page.d.ts.map +1 -1
- package/hooks/use-conversation-page.js +13 -3
- package/hooks/use-conversation-page.js.map +1 -1
- package/hooks/use-new-message-sound.d.ts.map +1 -1
- package/hooks/use-new-message-sound.js +2 -2
- package/hooks/use-new-message-sound.js.map +1 -1
- package/hooks/use-typing-sound.d.ts.map +1 -1
- package/hooks/use-typing-sound.js +2 -2
- package/hooks/use-typing-sound.js.map +1 -1
- package/index.d.ts +3 -3
- package/index.js +3 -3
- package/package.json +6 -12
- package/packages/tiny-markdown/src/context/index.d.ts +1 -0
- package/packages/tiny-markdown/src/context/tiny-markdown-context.d.ts +3 -0
- package/packages/tiny-markdown/src/hooks/index.d.ts +4 -0
- package/packages/tiny-markdown/src/hooks/use-caret-position.d.ts +1 -0
- package/packages/tiny-markdown/src/hooks/use-tiny-markdown.d.ts +1 -0
- package/packages/tiny-markdown/src/hooks/use-tiny-mention.d.ts +1 -0
- package/packages/tiny-markdown/src/hooks/use-tiny-shortcuts.d.ts +1 -0
- package/packages/tiny-markdown/src/index.d.ts +4 -0
- package/packages/tiny-markdown/src/types.d.ts +75 -0
- package/packages/tiny-markdown/src/types.d.ts.map +1 -0
- package/packages/tiny-markdown/src/utils/index.d.ts +3 -0
- package/packages/tiny-markdown/src/utils/markdown-parser.d.ts +1 -0
- package/packages/tiny-markdown/src/utils/mention-parser.d.ts +1 -0
- package/packages/tiny-markdown/src/utils/merge-refs.d.ts +1 -0
- package/packages/types/src/api/conversation.d.ts +300 -0
- package/packages/types/src/api/conversation.d.ts.map +1 -1
- package/packages/types/src/api/timeline-item.d.ts +225 -0
- package/packages/types/src/api/timeline-item.d.ts.map +1 -1
- package/packages/types/src/realtime-events.d.ts +228 -3
- package/packages/types/src/realtime-events.d.ts.map +1 -1
- package/packages/types/src/schemas.d.ts +75 -0
- package/packages/types/src/schemas.d.ts.map +1 -1
- package/primitives/avatar/image.d.ts +1 -1
- package/primitives/command-block-utils.d.ts +26 -0
- package/primitives/command-block-utils.d.ts.map +1 -0
- package/primitives/command-block-utils.js +310 -0
- package/primitives/command-block-utils.js.map +1 -0
- package/primitives/index.d.ts +7 -3
- package/primitives/index.js +11 -2
- package/primitives/index.parts.d.ts +6 -2
- package/primitives/index.parts.js +5 -1
- package/primitives/timeline-code-block.d.ts +32 -0
- package/primitives/timeline-code-block.d.ts.map +1 -0
- package/primitives/timeline-code-block.js +66 -0
- package/primitives/timeline-code-block.js.map +1 -0
- package/primitives/timeline-command-block.d.ts +29 -0
- package/primitives/timeline-command-block.d.ts.map +1 -0
- package/primitives/timeline-command-block.js +97 -0
- package/primitives/timeline-command-block.js.map +1 -0
- package/primitives/timeline-item-group.d.ts.map +1 -1
- package/primitives/timeline-item-group.js +5 -15
- package/primitives/timeline-item-group.js.map +1 -1
- package/primitives/timeline-item.d.ts +21 -1
- package/primitives/timeline-item.d.ts.map +1 -1
- package/primitives/timeline-item.js +148 -83
- package/primitives/timeline-item.js.map +1 -1
- package/primitives/timeline-message-layout.d.ts +9 -0
- package/primitives/timeline-message-layout.d.ts.map +1 -0
- package/primitives/timeline-message-layout.js +20 -0
- package/primitives/timeline-message-layout.js.map +1 -0
- package/provider.d.ts.map +1 -1
- package/provider.js +1 -7
- package/provider.js.map +1 -1
- package/realtime/event-filter.js +4 -3
- package/realtime/event-filter.js.map +1 -1
- package/realtime/provider.d.ts +0 -1
- package/realtime/provider.d.ts.map +1 -1
- package/realtime/provider.js +29 -34
- package/realtime/provider.js.map +1 -1
- package/sounds/sound-data.d.ts +6 -0
- package/sounds/sound-data.d.ts.map +1 -0
- package/sounds/sound-data.js +7 -0
- package/sounds/sound-data.js.map +1 -0
- package/styles.css +2 -0
- package/support/components/avatar.js +3 -3
- package/support/components/avatar.js.map +1 -1
- package/support/components/button.d.ts +2 -2
- package/support/components/button.d.ts.map +1 -1
- package/support/components/button.js +1 -0
- package/support/components/button.js.map +1 -1
- package/support/components/conversation-event.d.ts +3 -0
- package/support/components/conversation-event.d.ts.map +1 -1
- package/support/components/conversation-event.js +47 -16
- package/support/components/conversation-event.js.map +1 -1
- package/support/components/conversation-timeline.d.ts.map +1 -1
- package/support/components/conversation-timeline.js +12 -0
- package/support/components/conversation-timeline.js.map +1 -1
- package/support/components/index.d.ts +2 -1
- package/support/components/index.js +2 -1
- package/support/components/timeline-activity-group.d.ts +25 -0
- package/support/components/timeline-activity-group.d.ts.map +1 -0
- package/support/components/timeline-activity-group.js +104 -0
- package/support/components/timeline-activity-group.js.map +1 -0
- package/support/components/timeline-code-block.d.ts +14 -0
- package/support/components/timeline-code-block.d.ts.map +1 -0
- package/support/components/timeline-code-block.js +44 -0
- package/support/components/timeline-code-block.js.map +1 -0
- package/support/components/timeline-command-block.d.ts +12 -0
- package/support/components/timeline-command-block.d.ts.map +1 -0
- package/support/components/timeline-command-block.js +42 -0
- package/support/components/timeline-command-block.js.map +1 -0
- package/support/components/timeline-message-item.d.ts +2 -1
- package/support/components/timeline-message-item.d.ts.map +1 -1
- package/support/components/timeline-message-item.js +23 -3
- package/support/components/timeline-message-item.js.map +1 -1
- package/support/pages/home.js +1 -1
- package/support/pages/home.js.map +1 -1
- package/support/store/support-store.d.ts.map +1 -1
- package/support/store/support-store.js +4 -4
- package/support/store/support-store.js.map +1 -1
- package/support/{support-DmViRaga.css → support-Dc5L__HC.css} +15 -15
- package/support/{support-DmViRaga.css.map → support-Dc5L__HC.css.map} +1 -1
- package/{tailwind.css → support/support.css} +14 -14
- package/support-config.d.ts +31 -4
- package/support-config.d.ts.map +1 -1
- package/support-config.js +52 -4
- package/support-config.js.map +1 -1
- package/support.css +1 -2
- package/utils/metadata-hash.d.ts +1 -1
- package/utils/metadata-hash.js +9 -4
- package/utils/metadata-hash.js.map +1 -1
- package/utils/timeline-item-sender.d.ts +17 -0
- package/utils/timeline-item-sender.d.ts.map +1 -0
- package/utils/timeline-item-sender.js +43 -0
- package/utils/timeline-item-sender.js.map +1 -0
- package/utils/use-render-element.d.ts.map +1 -1
|
@@ -44,6 +44,19 @@ declare const timelineItemPartsSchema: ZodArray<ZodUnion<readonly [ZodObject<{
|
|
|
44
44
|
}>>;
|
|
45
45
|
progressMessage: ZodOptional<ZodString>;
|
|
46
46
|
knowledgeId: ZodOptional<ZodString>;
|
|
47
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
48
|
+
logType: ZodEnum<{
|
|
49
|
+
log: "log";
|
|
50
|
+
customer_facing: "customer_facing";
|
|
51
|
+
decision: "decision";
|
|
52
|
+
}>;
|
|
53
|
+
triggerMessageId: ZodString;
|
|
54
|
+
workflowRunId: ZodString;
|
|
55
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
56
|
+
public: "public";
|
|
57
|
+
private: "private";
|
|
58
|
+
}>>;
|
|
59
|
+
}, $strip>>;
|
|
47
60
|
}, $strip>>;
|
|
48
61
|
}, $loose>>;
|
|
49
62
|
}, $strip>, ZodObject<{
|
|
@@ -58,6 +71,29 @@ declare const timelineItemPartsSchema: ZodArray<ZodUnion<readonly [ZodObject<{
|
|
|
58
71
|
partial: "partial";
|
|
59
72
|
}>;
|
|
60
73
|
errorText: ZodOptional<ZodString>;
|
|
74
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
75
|
+
cossistant: ZodOptional<ZodObject<{
|
|
76
|
+
visibility: ZodOptional<ZodEnum<{
|
|
77
|
+
public: "public";
|
|
78
|
+
private: "private";
|
|
79
|
+
}>>;
|
|
80
|
+
progressMessage: ZodOptional<ZodString>;
|
|
81
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
82
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
83
|
+
logType: ZodEnum<{
|
|
84
|
+
log: "log";
|
|
85
|
+
customer_facing: "customer_facing";
|
|
86
|
+
decision: "decision";
|
|
87
|
+
}>;
|
|
88
|
+
triggerMessageId: ZodString;
|
|
89
|
+
workflowRunId: ZodString;
|
|
90
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
91
|
+
public: "public";
|
|
92
|
+
private: "private";
|
|
93
|
+
}>>;
|
|
94
|
+
}, $strip>>;
|
|
95
|
+
}, $strip>>;
|
|
96
|
+
}, $loose>>;
|
|
61
97
|
providerMetadata: ZodOptional<ZodObject<{
|
|
62
98
|
cossistant: ZodOptional<ZodObject<{
|
|
63
99
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -66,6 +102,19 @@ declare const timelineItemPartsSchema: ZodArray<ZodUnion<readonly [ZodObject<{
|
|
|
66
102
|
}>>;
|
|
67
103
|
progressMessage: ZodOptional<ZodString>;
|
|
68
104
|
knowledgeId: ZodOptional<ZodString>;
|
|
105
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
106
|
+
logType: ZodEnum<{
|
|
107
|
+
log: "log";
|
|
108
|
+
customer_facing: "customer_facing";
|
|
109
|
+
decision: "decision";
|
|
110
|
+
}>;
|
|
111
|
+
triggerMessageId: ZodString;
|
|
112
|
+
workflowRunId: ZodString;
|
|
113
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
114
|
+
public: "public";
|
|
115
|
+
private: "private";
|
|
116
|
+
}>>;
|
|
117
|
+
}, $strip>>;
|
|
69
118
|
}, $strip>>;
|
|
70
119
|
}, $loose>>;
|
|
71
120
|
}, $strip>, ZodObject<{
|
|
@@ -81,6 +130,19 @@ declare const timelineItemPartsSchema: ZodArray<ZodUnion<readonly [ZodObject<{
|
|
|
81
130
|
}>>;
|
|
82
131
|
progressMessage: ZodOptional<ZodString>;
|
|
83
132
|
knowledgeId: ZodOptional<ZodString>;
|
|
133
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
134
|
+
logType: ZodEnum<{
|
|
135
|
+
log: "log";
|
|
136
|
+
customer_facing: "customer_facing";
|
|
137
|
+
decision: "decision";
|
|
138
|
+
}>;
|
|
139
|
+
triggerMessageId: ZodString;
|
|
140
|
+
workflowRunId: ZodString;
|
|
141
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
142
|
+
public: "public";
|
|
143
|
+
private: "private";
|
|
144
|
+
}>>;
|
|
145
|
+
}, $strip>>;
|
|
84
146
|
}, $strip>>;
|
|
85
147
|
}, $loose>>;
|
|
86
148
|
}, $strip>, ZodObject<{
|
|
@@ -97,6 +159,19 @@ declare const timelineItemPartsSchema: ZodArray<ZodUnion<readonly [ZodObject<{
|
|
|
97
159
|
}>>;
|
|
98
160
|
progressMessage: ZodOptional<ZodString>;
|
|
99
161
|
knowledgeId: ZodOptional<ZodString>;
|
|
162
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
163
|
+
logType: ZodEnum<{
|
|
164
|
+
log: "log";
|
|
165
|
+
customer_facing: "customer_facing";
|
|
166
|
+
decision: "decision";
|
|
167
|
+
}>;
|
|
168
|
+
triggerMessageId: ZodString;
|
|
169
|
+
workflowRunId: ZodString;
|
|
170
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
171
|
+
public: "public";
|
|
172
|
+
private: "private";
|
|
173
|
+
}>>;
|
|
174
|
+
}, $strip>>;
|
|
100
175
|
}, $strip>>;
|
|
101
176
|
}, $loose>>;
|
|
102
177
|
}, $strip>, ZodObject<{
|
|
@@ -184,6 +259,19 @@ declare const timelineItemSchema: ZodObject<{
|
|
|
184
259
|
}>>;
|
|
185
260
|
progressMessage: ZodOptional<ZodString>;
|
|
186
261
|
knowledgeId: ZodOptional<ZodString>;
|
|
262
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
263
|
+
logType: ZodEnum<{
|
|
264
|
+
log: "log";
|
|
265
|
+
customer_facing: "customer_facing";
|
|
266
|
+
decision: "decision";
|
|
267
|
+
}>;
|
|
268
|
+
triggerMessageId: ZodString;
|
|
269
|
+
workflowRunId: ZodString;
|
|
270
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
271
|
+
public: "public";
|
|
272
|
+
private: "private";
|
|
273
|
+
}>>;
|
|
274
|
+
}, $strip>>;
|
|
187
275
|
}, $strip>>;
|
|
188
276
|
}, $loose>>;
|
|
189
277
|
}, $strip>, ZodObject<{
|
|
@@ -198,6 +286,29 @@ declare const timelineItemSchema: ZodObject<{
|
|
|
198
286
|
partial: "partial";
|
|
199
287
|
}>;
|
|
200
288
|
errorText: ZodOptional<ZodString>;
|
|
289
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
290
|
+
cossistant: ZodOptional<ZodObject<{
|
|
291
|
+
visibility: ZodOptional<ZodEnum<{
|
|
292
|
+
public: "public";
|
|
293
|
+
private: "private";
|
|
294
|
+
}>>;
|
|
295
|
+
progressMessage: ZodOptional<ZodString>;
|
|
296
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
297
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
298
|
+
logType: ZodEnum<{
|
|
299
|
+
log: "log";
|
|
300
|
+
customer_facing: "customer_facing";
|
|
301
|
+
decision: "decision";
|
|
302
|
+
}>;
|
|
303
|
+
triggerMessageId: ZodString;
|
|
304
|
+
workflowRunId: ZodString;
|
|
305
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
306
|
+
public: "public";
|
|
307
|
+
private: "private";
|
|
308
|
+
}>>;
|
|
309
|
+
}, $strip>>;
|
|
310
|
+
}, $strip>>;
|
|
311
|
+
}, $loose>>;
|
|
201
312
|
providerMetadata: ZodOptional<ZodObject<{
|
|
202
313
|
cossistant: ZodOptional<ZodObject<{
|
|
203
314
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -206,6 +317,19 @@ declare const timelineItemSchema: ZodObject<{
|
|
|
206
317
|
}>>;
|
|
207
318
|
progressMessage: ZodOptional<ZodString>;
|
|
208
319
|
knowledgeId: ZodOptional<ZodString>;
|
|
320
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
321
|
+
logType: ZodEnum<{
|
|
322
|
+
log: "log";
|
|
323
|
+
customer_facing: "customer_facing";
|
|
324
|
+
decision: "decision";
|
|
325
|
+
}>;
|
|
326
|
+
triggerMessageId: ZodString;
|
|
327
|
+
workflowRunId: ZodString;
|
|
328
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
329
|
+
public: "public";
|
|
330
|
+
private: "private";
|
|
331
|
+
}>>;
|
|
332
|
+
}, $strip>>;
|
|
209
333
|
}, $strip>>;
|
|
210
334
|
}, $loose>>;
|
|
211
335
|
}, $strip>, ZodObject<{
|
|
@@ -221,6 +345,19 @@ declare const timelineItemSchema: ZodObject<{
|
|
|
221
345
|
}>>;
|
|
222
346
|
progressMessage: ZodOptional<ZodString>;
|
|
223
347
|
knowledgeId: ZodOptional<ZodString>;
|
|
348
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
349
|
+
logType: ZodEnum<{
|
|
350
|
+
log: "log";
|
|
351
|
+
customer_facing: "customer_facing";
|
|
352
|
+
decision: "decision";
|
|
353
|
+
}>;
|
|
354
|
+
triggerMessageId: ZodString;
|
|
355
|
+
workflowRunId: ZodString;
|
|
356
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
357
|
+
public: "public";
|
|
358
|
+
private: "private";
|
|
359
|
+
}>>;
|
|
360
|
+
}, $strip>>;
|
|
224
361
|
}, $strip>>;
|
|
225
362
|
}, $loose>>;
|
|
226
363
|
}, $strip>, ZodObject<{
|
|
@@ -237,6 +374,19 @@ declare const timelineItemSchema: ZodObject<{
|
|
|
237
374
|
}>>;
|
|
238
375
|
progressMessage: ZodOptional<ZodString>;
|
|
239
376
|
knowledgeId: ZodOptional<ZodString>;
|
|
377
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
378
|
+
logType: ZodEnum<{
|
|
379
|
+
log: "log";
|
|
380
|
+
customer_facing: "customer_facing";
|
|
381
|
+
decision: "decision";
|
|
382
|
+
}>;
|
|
383
|
+
triggerMessageId: ZodString;
|
|
384
|
+
workflowRunId: ZodString;
|
|
385
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
386
|
+
public: "public";
|
|
387
|
+
private: "private";
|
|
388
|
+
}>>;
|
|
389
|
+
}, $strip>>;
|
|
240
390
|
}, $strip>>;
|
|
241
391
|
}, $loose>>;
|
|
242
392
|
}, $strip>, ZodObject<{
|
|
@@ -345,6 +495,19 @@ declare const getConversationTimelineItemsResponseSchema: ZodObject<{
|
|
|
345
495
|
}>>;
|
|
346
496
|
progressMessage: ZodOptional<ZodString>;
|
|
347
497
|
knowledgeId: ZodOptional<ZodString>;
|
|
498
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
499
|
+
logType: ZodEnum<{
|
|
500
|
+
log: "log";
|
|
501
|
+
customer_facing: "customer_facing";
|
|
502
|
+
decision: "decision";
|
|
503
|
+
}>;
|
|
504
|
+
triggerMessageId: ZodString;
|
|
505
|
+
workflowRunId: ZodString;
|
|
506
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
507
|
+
public: "public";
|
|
508
|
+
private: "private";
|
|
509
|
+
}>>;
|
|
510
|
+
}, $strip>>;
|
|
348
511
|
}, $strip>>;
|
|
349
512
|
}, $loose>>;
|
|
350
513
|
}, $strip>, ZodObject<{
|
|
@@ -359,6 +522,29 @@ declare const getConversationTimelineItemsResponseSchema: ZodObject<{
|
|
|
359
522
|
partial: "partial";
|
|
360
523
|
}>;
|
|
361
524
|
errorText: ZodOptional<ZodString>;
|
|
525
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
526
|
+
cossistant: ZodOptional<ZodObject<{
|
|
527
|
+
visibility: ZodOptional<ZodEnum<{
|
|
528
|
+
public: "public";
|
|
529
|
+
private: "private";
|
|
530
|
+
}>>;
|
|
531
|
+
progressMessage: ZodOptional<ZodString>;
|
|
532
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
533
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
534
|
+
logType: ZodEnum<{
|
|
535
|
+
log: "log";
|
|
536
|
+
customer_facing: "customer_facing";
|
|
537
|
+
decision: "decision";
|
|
538
|
+
}>;
|
|
539
|
+
triggerMessageId: ZodString;
|
|
540
|
+
workflowRunId: ZodString;
|
|
541
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
542
|
+
public: "public";
|
|
543
|
+
private: "private";
|
|
544
|
+
}>>;
|
|
545
|
+
}, $strip>>;
|
|
546
|
+
}, $strip>>;
|
|
547
|
+
}, $loose>>;
|
|
362
548
|
providerMetadata: ZodOptional<ZodObject<{
|
|
363
549
|
cossistant: ZodOptional<ZodObject<{
|
|
364
550
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -367,6 +553,19 @@ declare const getConversationTimelineItemsResponseSchema: ZodObject<{
|
|
|
367
553
|
}>>;
|
|
368
554
|
progressMessage: ZodOptional<ZodString>;
|
|
369
555
|
knowledgeId: ZodOptional<ZodString>;
|
|
556
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
557
|
+
logType: ZodEnum<{
|
|
558
|
+
log: "log";
|
|
559
|
+
customer_facing: "customer_facing";
|
|
560
|
+
decision: "decision";
|
|
561
|
+
}>;
|
|
562
|
+
triggerMessageId: ZodString;
|
|
563
|
+
workflowRunId: ZodString;
|
|
564
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
565
|
+
public: "public";
|
|
566
|
+
private: "private";
|
|
567
|
+
}>>;
|
|
568
|
+
}, $strip>>;
|
|
370
569
|
}, $strip>>;
|
|
371
570
|
}, $loose>>;
|
|
372
571
|
}, $strip>, ZodObject<{
|
|
@@ -382,6 +581,19 @@ declare const getConversationTimelineItemsResponseSchema: ZodObject<{
|
|
|
382
581
|
}>>;
|
|
383
582
|
progressMessage: ZodOptional<ZodString>;
|
|
384
583
|
knowledgeId: ZodOptional<ZodString>;
|
|
584
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
585
|
+
logType: ZodEnum<{
|
|
586
|
+
log: "log";
|
|
587
|
+
customer_facing: "customer_facing";
|
|
588
|
+
decision: "decision";
|
|
589
|
+
}>;
|
|
590
|
+
triggerMessageId: ZodString;
|
|
591
|
+
workflowRunId: ZodString;
|
|
592
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
593
|
+
public: "public";
|
|
594
|
+
private: "private";
|
|
595
|
+
}>>;
|
|
596
|
+
}, $strip>>;
|
|
385
597
|
}, $strip>>;
|
|
386
598
|
}, $loose>>;
|
|
387
599
|
}, $strip>, ZodObject<{
|
|
@@ -398,6 +610,19 @@ declare const getConversationTimelineItemsResponseSchema: ZodObject<{
|
|
|
398
610
|
}>>;
|
|
399
611
|
progressMessage: ZodOptional<ZodString>;
|
|
400
612
|
knowledgeId: ZodOptional<ZodString>;
|
|
613
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
614
|
+
logType: ZodEnum<{
|
|
615
|
+
log: "log";
|
|
616
|
+
customer_facing: "customer_facing";
|
|
617
|
+
decision: "decision";
|
|
618
|
+
}>;
|
|
619
|
+
triggerMessageId: ZodString;
|
|
620
|
+
workflowRunId: ZodString;
|
|
621
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
622
|
+
public: "public";
|
|
623
|
+
private: "private";
|
|
624
|
+
}>>;
|
|
625
|
+
}, $strip>>;
|
|
401
626
|
}, $strip>>;
|
|
402
627
|
}, $loose>>;
|
|
403
628
|
}, $strip>, ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timeline-item.d.ts","names":[],"sources":["../../../../../../types/src/api/timeline-item.ts"],"sourcesContent":[],"mappings":";;;;;;;;
|
|
1
|
+
{"version":3,"file":"timeline-item.d.ts","names":[],"sources":["../../../../../../types/src/api/timeline-item.ts"],"sourcesContent":[],"mappings":";;;;;;;;cA+LM,gBAAc;;;;;;;cAsBd,iBAAe;;;;;;;;;cAsFR,yBAAuB,SAAA,mBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsBL,QAAA,EAAA,UAAA;IAAA,QAAA,EAAA,UAAA;IAqDnB,eAAA,EAAkB,iBAAkB;IAEpC,iBAAY,EAAA,mBAAkB;IAC9B,kBAAiB,EAAA,oBAAkB;EASnC,CAAA,CAAA;EACA,WAAA,aAA2B,UAAA,CAAA;EAQ3B,cAAA,aAAgB,UAAW,CAAA;EAE3B,YAAA,aAAiB,UAAG,CAAA;EAgCnB,eAAA,aAAA,UAAA,CAAA;;;;;;;IAAyC,GAAA,EAAA,KAAA;EAAA,CAAA,CAAA;AAetD,CAAA,QAAY,CAAA,CAAA,CAAA,CAAA;AAIC,cA/HA,kBA+HA,EA/HkB,SA8I5B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAfoD,MAAA,aAAA,UAAA,CAAA;EAAA,SAAA,aAAA,UAAA,CAAA;EAiB3C,SAAA,aAAA,UAAA,CAAA;;;;KA3FA,kBAAA,GAAqB,cAAe;KAEpC,YAAA,GAAe,cAAe;KAC9B,iBAAA,GAAoB,cAAe;KASnC,QAAA,GAAW,cAAe;KAC1B,SAAA,GAAY,cAAe;;KAQ3B,gBAAA,GAAmB;;KAEnB,iBAAA,GAAoB;cAgCnB,2CAAyC;;;;KAe1C,mCAAA,GAAsC,cAC1C;cAGK,4CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiB3C,oCAAA,GAAuC,cAC3C"}
|
|
@@ -164,6 +164,19 @@ declare const realtimeSchema: {
|
|
|
164
164
|
}>>;
|
|
165
165
|
progressMessage: ZodOptional<ZodString>;
|
|
166
166
|
knowledgeId: ZodOptional<ZodString>;
|
|
167
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
168
|
+
logType: ZodEnum<{
|
|
169
|
+
log: "log";
|
|
170
|
+
customer_facing: "customer_facing";
|
|
171
|
+
decision: "decision";
|
|
172
|
+
}>;
|
|
173
|
+
triggerMessageId: ZodString;
|
|
174
|
+
workflowRunId: ZodString;
|
|
175
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
176
|
+
public: "public";
|
|
177
|
+
private: "private";
|
|
178
|
+
}>>;
|
|
179
|
+
}, $strip>>;
|
|
167
180
|
}, $strip>>;
|
|
168
181
|
}, $loose>>;
|
|
169
182
|
}, $strip>, ZodObject<{
|
|
@@ -178,6 +191,29 @@ declare const realtimeSchema: {
|
|
|
178
191
|
partial: "partial";
|
|
179
192
|
}>;
|
|
180
193
|
errorText: ZodOptional<ZodString>;
|
|
194
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
195
|
+
cossistant: ZodOptional<ZodObject<{
|
|
196
|
+
visibility: ZodOptional<ZodEnum<{
|
|
197
|
+
public: "public";
|
|
198
|
+
private: "private";
|
|
199
|
+
}>>;
|
|
200
|
+
progressMessage: ZodOptional<ZodString>;
|
|
201
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
202
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
203
|
+
logType: ZodEnum<{
|
|
204
|
+
log: "log";
|
|
205
|
+
customer_facing: "customer_facing";
|
|
206
|
+
decision: "decision";
|
|
207
|
+
}>;
|
|
208
|
+
triggerMessageId: ZodString;
|
|
209
|
+
workflowRunId: ZodString;
|
|
210
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
211
|
+
public: "public";
|
|
212
|
+
private: "private";
|
|
213
|
+
}>>;
|
|
214
|
+
}, $strip>>;
|
|
215
|
+
}, $strip>>;
|
|
216
|
+
}, $loose>>;
|
|
181
217
|
providerMetadata: ZodOptional<ZodObject<{
|
|
182
218
|
cossistant: ZodOptional<ZodObject<{
|
|
183
219
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -186,6 +222,19 @@ declare const realtimeSchema: {
|
|
|
186
222
|
}>>;
|
|
187
223
|
progressMessage: ZodOptional<ZodString>;
|
|
188
224
|
knowledgeId: ZodOptional<ZodString>;
|
|
225
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
226
|
+
logType: ZodEnum<{
|
|
227
|
+
log: "log";
|
|
228
|
+
customer_facing: "customer_facing";
|
|
229
|
+
decision: "decision";
|
|
230
|
+
}>;
|
|
231
|
+
triggerMessageId: ZodString;
|
|
232
|
+
workflowRunId: ZodString;
|
|
233
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
234
|
+
public: "public";
|
|
235
|
+
private: "private";
|
|
236
|
+
}>>;
|
|
237
|
+
}, $strip>>;
|
|
189
238
|
}, $strip>>;
|
|
190
239
|
}, $loose>>;
|
|
191
240
|
}, $strip>, ZodObject<{
|
|
@@ -201,6 +250,19 @@ declare const realtimeSchema: {
|
|
|
201
250
|
}>>;
|
|
202
251
|
progressMessage: ZodOptional<ZodString>;
|
|
203
252
|
knowledgeId: ZodOptional<ZodString>;
|
|
253
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
254
|
+
logType: ZodEnum<{
|
|
255
|
+
log: "log";
|
|
256
|
+
customer_facing: "customer_facing";
|
|
257
|
+
decision: "decision";
|
|
258
|
+
}>;
|
|
259
|
+
triggerMessageId: ZodString;
|
|
260
|
+
workflowRunId: ZodString;
|
|
261
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
262
|
+
public: "public";
|
|
263
|
+
private: "private";
|
|
264
|
+
}>>;
|
|
265
|
+
}, $strip>>;
|
|
204
266
|
}, $strip>>;
|
|
205
267
|
}, $loose>>;
|
|
206
268
|
}, $strip>, ZodObject<{
|
|
@@ -217,6 +279,19 @@ declare const realtimeSchema: {
|
|
|
217
279
|
}>>;
|
|
218
280
|
progressMessage: ZodOptional<ZodString>;
|
|
219
281
|
knowledgeId: ZodOptional<ZodString>;
|
|
282
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
283
|
+
logType: ZodEnum<{
|
|
284
|
+
log: "log";
|
|
285
|
+
customer_facing: "customer_facing";
|
|
286
|
+
decision: "decision";
|
|
287
|
+
}>;
|
|
288
|
+
triggerMessageId: ZodString;
|
|
289
|
+
workflowRunId: ZodString;
|
|
290
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
291
|
+
public: "public";
|
|
292
|
+
private: "private";
|
|
293
|
+
}>>;
|
|
294
|
+
}, $strip>>;
|
|
220
295
|
}, $strip>>;
|
|
221
296
|
}, $loose>>;
|
|
222
297
|
}, $strip>, ZodObject<{
|
|
@@ -281,9 +356,9 @@ declare const realtimeSchema: {
|
|
|
281
356
|
spam: "spam";
|
|
282
357
|
}>;
|
|
283
358
|
priority: ZodEnum<{
|
|
359
|
+
normal: "normal";
|
|
284
360
|
high: "high";
|
|
285
361
|
low: "low";
|
|
286
|
-
normal: "normal";
|
|
287
362
|
urgent: "urgent";
|
|
288
363
|
}>;
|
|
289
364
|
organizationId: ZodString;
|
|
@@ -362,6 +437,19 @@ declare const realtimeSchema: {
|
|
|
362
437
|
}>>;
|
|
363
438
|
progressMessage: ZodOptional<ZodString>;
|
|
364
439
|
knowledgeId: ZodOptional<ZodString>;
|
|
440
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
441
|
+
logType: ZodEnum<{
|
|
442
|
+
log: "log";
|
|
443
|
+
customer_facing: "customer_facing";
|
|
444
|
+
decision: "decision";
|
|
445
|
+
}>;
|
|
446
|
+
triggerMessageId: ZodString;
|
|
447
|
+
workflowRunId: ZodString;
|
|
448
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
449
|
+
public: "public";
|
|
450
|
+
private: "private";
|
|
451
|
+
}>>;
|
|
452
|
+
}, $strip>>;
|
|
365
453
|
}, $strip>>;
|
|
366
454
|
}, $loose>>;
|
|
367
455
|
}, $strip>, ZodObject<{
|
|
@@ -376,6 +464,29 @@ declare const realtimeSchema: {
|
|
|
376
464
|
partial: "partial";
|
|
377
465
|
}>;
|
|
378
466
|
errorText: ZodOptional<ZodString>;
|
|
467
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
468
|
+
cossistant: ZodOptional<ZodObject<{
|
|
469
|
+
visibility: ZodOptional<ZodEnum<{
|
|
470
|
+
public: "public";
|
|
471
|
+
private: "private";
|
|
472
|
+
}>>;
|
|
473
|
+
progressMessage: ZodOptional<ZodString>;
|
|
474
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
475
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
476
|
+
logType: ZodEnum<{
|
|
477
|
+
log: "log";
|
|
478
|
+
customer_facing: "customer_facing";
|
|
479
|
+
decision: "decision";
|
|
480
|
+
}>;
|
|
481
|
+
triggerMessageId: ZodString;
|
|
482
|
+
workflowRunId: ZodString;
|
|
483
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
484
|
+
public: "public";
|
|
485
|
+
private: "private";
|
|
486
|
+
}>>;
|
|
487
|
+
}, $strip>>;
|
|
488
|
+
}, $strip>>;
|
|
489
|
+
}, $loose>>;
|
|
379
490
|
providerMetadata: ZodOptional<ZodObject<{
|
|
380
491
|
cossistant: ZodOptional<ZodObject<{
|
|
381
492
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -384,6 +495,19 @@ declare const realtimeSchema: {
|
|
|
384
495
|
}>>;
|
|
385
496
|
progressMessage: ZodOptional<ZodString>;
|
|
386
497
|
knowledgeId: ZodOptional<ZodString>;
|
|
498
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
499
|
+
logType: ZodEnum<{
|
|
500
|
+
log: "log";
|
|
501
|
+
customer_facing: "customer_facing";
|
|
502
|
+
decision: "decision";
|
|
503
|
+
}>;
|
|
504
|
+
triggerMessageId: ZodString;
|
|
505
|
+
workflowRunId: ZodString;
|
|
506
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
507
|
+
public: "public";
|
|
508
|
+
private: "private";
|
|
509
|
+
}>>;
|
|
510
|
+
}, $strip>>;
|
|
387
511
|
}, $strip>>;
|
|
388
512
|
}, $loose>>;
|
|
389
513
|
}, $strip>, ZodObject<{
|
|
@@ -399,6 +523,19 @@ declare const realtimeSchema: {
|
|
|
399
523
|
}>>;
|
|
400
524
|
progressMessage: ZodOptional<ZodString>;
|
|
401
525
|
knowledgeId: ZodOptional<ZodString>;
|
|
526
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
527
|
+
logType: ZodEnum<{
|
|
528
|
+
log: "log";
|
|
529
|
+
customer_facing: "customer_facing";
|
|
530
|
+
decision: "decision";
|
|
531
|
+
}>;
|
|
532
|
+
triggerMessageId: ZodString;
|
|
533
|
+
workflowRunId: ZodString;
|
|
534
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
535
|
+
public: "public";
|
|
536
|
+
private: "private";
|
|
537
|
+
}>>;
|
|
538
|
+
}, $strip>>;
|
|
402
539
|
}, $strip>>;
|
|
403
540
|
}, $loose>>;
|
|
404
541
|
}, $strip>, ZodObject<{
|
|
@@ -415,6 +552,19 @@ declare const realtimeSchema: {
|
|
|
415
552
|
}>>;
|
|
416
553
|
progressMessage: ZodOptional<ZodString>;
|
|
417
554
|
knowledgeId: ZodOptional<ZodString>;
|
|
555
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
556
|
+
logType: ZodEnum<{
|
|
557
|
+
log: "log";
|
|
558
|
+
customer_facing: "customer_facing";
|
|
559
|
+
decision: "decision";
|
|
560
|
+
}>;
|
|
561
|
+
triggerMessageId: ZodString;
|
|
562
|
+
workflowRunId: ZodString;
|
|
563
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
564
|
+
public: "public";
|
|
565
|
+
private: "private";
|
|
566
|
+
}>>;
|
|
567
|
+
}, $strip>>;
|
|
418
568
|
}, $strip>>;
|
|
419
569
|
}, $loose>>;
|
|
420
570
|
}, $strip>, ZodObject<{
|
|
@@ -508,6 +658,19 @@ declare const realtimeSchema: {
|
|
|
508
658
|
}>>;
|
|
509
659
|
progressMessage: ZodOptional<ZodString>;
|
|
510
660
|
knowledgeId: ZodOptional<ZodString>;
|
|
661
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
662
|
+
logType: ZodEnum<{
|
|
663
|
+
log: "log";
|
|
664
|
+
customer_facing: "customer_facing";
|
|
665
|
+
decision: "decision";
|
|
666
|
+
}>;
|
|
667
|
+
triggerMessageId: ZodString;
|
|
668
|
+
workflowRunId: ZodString;
|
|
669
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
670
|
+
public: "public";
|
|
671
|
+
private: "private";
|
|
672
|
+
}>>;
|
|
673
|
+
}, $strip>>;
|
|
511
674
|
}, $strip>>;
|
|
512
675
|
}, $loose>>;
|
|
513
676
|
}, $strip>, ZodObject<{
|
|
@@ -522,6 +685,29 @@ declare const realtimeSchema: {
|
|
|
522
685
|
partial: "partial";
|
|
523
686
|
}>;
|
|
524
687
|
errorText: ZodOptional<ZodString>;
|
|
688
|
+
callProviderMetadata: ZodOptional<ZodObject<{
|
|
689
|
+
cossistant: ZodOptional<ZodObject<{
|
|
690
|
+
visibility: ZodOptional<ZodEnum<{
|
|
691
|
+
public: "public";
|
|
692
|
+
private: "private";
|
|
693
|
+
}>>;
|
|
694
|
+
progressMessage: ZodOptional<ZodString>;
|
|
695
|
+
knowledgeId: ZodOptional<ZodString>;
|
|
696
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
697
|
+
logType: ZodEnum<{
|
|
698
|
+
log: "log";
|
|
699
|
+
customer_facing: "customer_facing";
|
|
700
|
+
decision: "decision";
|
|
701
|
+
}>;
|
|
702
|
+
triggerMessageId: ZodString;
|
|
703
|
+
workflowRunId: ZodString;
|
|
704
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
705
|
+
public: "public";
|
|
706
|
+
private: "private";
|
|
707
|
+
}>>;
|
|
708
|
+
}, $strip>>;
|
|
709
|
+
}, $strip>>;
|
|
710
|
+
}, $loose>>;
|
|
525
711
|
providerMetadata: ZodOptional<ZodObject<{
|
|
526
712
|
cossistant: ZodOptional<ZodObject<{
|
|
527
713
|
visibility: ZodOptional<ZodEnum<{
|
|
@@ -530,6 +716,19 @@ declare const realtimeSchema: {
|
|
|
530
716
|
}>>;
|
|
531
717
|
progressMessage: ZodOptional<ZodString>;
|
|
532
718
|
knowledgeId: ZodOptional<ZodString>;
|
|
719
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
720
|
+
logType: ZodEnum<{
|
|
721
|
+
log: "log";
|
|
722
|
+
customer_facing: "customer_facing";
|
|
723
|
+
decision: "decision";
|
|
724
|
+
}>;
|
|
725
|
+
triggerMessageId: ZodString;
|
|
726
|
+
workflowRunId: ZodString;
|
|
727
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
728
|
+
public: "public";
|
|
729
|
+
private: "private";
|
|
730
|
+
}>>;
|
|
731
|
+
}, $strip>>;
|
|
533
732
|
}, $strip>>;
|
|
534
733
|
}, $loose>>;
|
|
535
734
|
}, $strip>, ZodObject<{
|
|
@@ -545,6 +744,19 @@ declare const realtimeSchema: {
|
|
|
545
744
|
}>>;
|
|
546
745
|
progressMessage: ZodOptional<ZodString>;
|
|
547
746
|
knowledgeId: ZodOptional<ZodString>;
|
|
747
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
748
|
+
logType: ZodEnum<{
|
|
749
|
+
log: "log";
|
|
750
|
+
customer_facing: "customer_facing";
|
|
751
|
+
decision: "decision";
|
|
752
|
+
}>;
|
|
753
|
+
triggerMessageId: ZodString;
|
|
754
|
+
workflowRunId: ZodString;
|
|
755
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
756
|
+
public: "public";
|
|
757
|
+
private: "private";
|
|
758
|
+
}>>;
|
|
759
|
+
}, $strip>>;
|
|
548
760
|
}, $strip>>;
|
|
549
761
|
}, $loose>>;
|
|
550
762
|
}, $strip>, ZodObject<{
|
|
@@ -561,6 +773,19 @@ declare const realtimeSchema: {
|
|
|
561
773
|
}>>;
|
|
562
774
|
progressMessage: ZodOptional<ZodString>;
|
|
563
775
|
knowledgeId: ZodOptional<ZodString>;
|
|
776
|
+
toolTimeline: ZodOptional<ZodObject<{
|
|
777
|
+
logType: ZodEnum<{
|
|
778
|
+
log: "log";
|
|
779
|
+
customer_facing: "customer_facing";
|
|
780
|
+
decision: "decision";
|
|
781
|
+
}>;
|
|
782
|
+
triggerMessageId: ZodString;
|
|
783
|
+
workflowRunId: ZodString;
|
|
784
|
+
triggerVisibility: ZodOptional<ZodEnum<{
|
|
785
|
+
public: "public";
|
|
786
|
+
private: "private";
|
|
787
|
+
}>>;
|
|
788
|
+
}, $strip>>;
|
|
564
789
|
}, $strip>>;
|
|
565
790
|
}, $loose>>;
|
|
566
791
|
}, $strip>, ZodObject<{
|
|
@@ -738,9 +963,9 @@ declare const realtimeSchema: {
|
|
|
738
963
|
spam: "spam";
|
|
739
964
|
}>>;
|
|
740
965
|
priority: ZodOptional<ZodEnum<{
|
|
966
|
+
normal: "normal";
|
|
741
967
|
high: "high";
|
|
742
968
|
low: "low";
|
|
743
|
-
normal: "normal";
|
|
744
969
|
urgent: "urgent";
|
|
745
970
|
}>>;
|
|
746
971
|
resolvedAt: ZodOptional<ZodNullable<ZodString>>;
|
|
@@ -819,8 +1044,8 @@ declare const realtimeSchema: {
|
|
|
819
1044
|
aiAgentId: ZodString;
|
|
820
1045
|
workflowRunId: ZodString;
|
|
821
1046
|
status: ZodEnum<{
|
|
822
|
-
success: "success";
|
|
823
1047
|
error: "error";
|
|
1048
|
+
success: "success";
|
|
824
1049
|
skipped: "skipped";
|
|
825
1050
|
cancelled: "cancelled";
|
|
826
1051
|
}>;
|