@cossistant/types 0.1.0 → 0.1.2
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/analytics.d.ts +31 -0
- package/analytics.d.ts.map +1 -0
- package/analytics.js +41 -0
- package/analytics.js.map +1 -0
- package/api/ai-agent-capabilities.d.ts +16 -19
- package/api/ai-agent-capabilities.d.ts.map +1 -1
- package/api/ai-agent-capabilities.js +215 -286
- package/api/ai-agent-capabilities.js.map +1 -1
- package/api/ai-agent-defaults.d.ts +6 -0
- package/api/ai-agent-defaults.d.ts.map +1 -0
- package/api/ai-agent-defaults.js +33 -0
- package/api/ai-agent-defaults.js.map +1 -0
- package/api/ai-agent.d.ts +314 -207
- package/api/ai-agent.d.ts.map +1 -1
- package/api/ai-agent.js +175 -111
- package/api/ai-agent.js.map +1 -1
- package/api/conversation.d.ts +79 -56
- package/api/conversation.d.ts.map +1 -1
- package/api/conversation.js +7 -2
- package/api/conversation.js.map +1 -1
- package/api/feedback.d.ts +5 -0
- package/api/feedback.d.ts.map +1 -1
- package/api/feedback.js +2 -0
- package/api/feedback.js.map +1 -1
- package/api/index.d.ts +7 -6
- package/api/index.js +7 -6
- package/api/link-source.d.ts +4 -4
- package/api/link-source.d.ts.map +1 -1
- package/api/link-source.js +1 -1
- package/api/link-source.js.map +1 -1
- package/api/timeline-item.d.ts +79 -67
- package/api/timeline-item.d.ts.map +1 -1
- package/api/timeline-item.js +3 -1
- package/api/timeline-item.js.map +1 -1
- package/api/user.d.ts +1 -1
- package/api/user.d.ts.map +1 -1
- package/api/user.js +2 -2
- package/api/user.js.map +1 -1
- package/api/visitor.d.ts +225 -1
- package/api/visitor.d.ts.map +1 -1
- package/api/visitor.js +142 -1
- package/api/visitor.js.map +1 -1
- package/api/website.d.ts +16 -7
- package/api/website.d.ts.map +1 -1
- package/api/website.js +16 -2
- package/api/website.js.map +1 -1
- package/enums.d.ts +2 -0
- package/enums.d.ts.map +1 -1
- package/enums.js +3 -1
- package/enums.js.map +1 -1
- package/index.d.ts +10 -8
- package/index.d.ts.map +1 -1
- package/index.js +10 -8
- package/package.json +1 -1
- package/realtime-events.d.ts +106 -36
- package/realtime-events.d.ts.map +1 -1
- package/realtime-events.js +6 -2
- package/realtime-events.js.map +1 -1
- package/schemas.d.ts +13 -11
- package/schemas.d.ts.map +1 -1
- package/tool-timeline-policy.d.ts +19 -2
- package/tool-timeline-policy.d.ts.map +1 -1
- package/tool-timeline-policy.js +29 -6
- package/tool-timeline-policy.js.map +1 -1
- package/trpc/conversation-hard-limit.d.ts +30 -0
- package/trpc/conversation-hard-limit.d.ts.map +1 -0
- package/trpc/conversation-hard-limit.js +43 -0
- package/trpc/conversation-hard-limit.js.map +1 -0
- package/trpc/conversation.d.ts +84 -44
- package/trpc/conversation.d.ts.map +1 -1
- package/trpc/conversation.js +6 -0
- package/trpc/conversation.js.map +1 -1
- package/trpc/visitor.d.ts +73 -15
- package/trpc/visitor.d.ts.map +1 -1
- package/trpc/visitor.js +15 -8
- package/trpc/visitor.js.map +1 -1
package/api/timeline-item.d.ts
CHANGED
|
@@ -10,15 +10,15 @@ declare const cossistantToolTimelineMetadataSchema: z.ZodObject<{
|
|
|
10
10
|
triggerMessageId: z.ZodString;
|
|
11
11
|
workflowRunId: z.ZodString;
|
|
12
12
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
13
|
-
private: "private";
|
|
14
13
|
public: "public";
|
|
14
|
+
private: "private";
|
|
15
15
|
}>>;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
17
|
declare const cossistantProviderMetadataSchema: z.ZodOptional<z.ZodObject<{
|
|
18
18
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
19
19
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
20
|
-
private: "private";
|
|
21
20
|
public: "public";
|
|
21
|
+
private: "private";
|
|
22
22
|
}>>;
|
|
23
23
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
24
24
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -31,8 +31,8 @@ declare const cossistantProviderMetadataSchema: z.ZodOptional<z.ZodObject<{
|
|
|
31
31
|
triggerMessageId: z.ZodString;
|
|
32
32
|
workflowRunId: z.ZodString;
|
|
33
33
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
34
|
-
private: "private";
|
|
35
34
|
public: "public";
|
|
35
|
+
private: "private";
|
|
36
36
|
}>>;
|
|
37
37
|
}, z.core.$strip>>;
|
|
38
38
|
}, z.core.$strip>>;
|
|
@@ -55,8 +55,8 @@ declare const reasoningPartSchema: z.ZodObject<{
|
|
|
55
55
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
56
56
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
57
57
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
58
|
-
private: "private";
|
|
59
58
|
public: "public";
|
|
59
|
+
private: "private";
|
|
60
60
|
}>>;
|
|
61
61
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
62
62
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -69,8 +69,8 @@ declare const reasoningPartSchema: z.ZodObject<{
|
|
|
69
69
|
triggerMessageId: z.ZodString;
|
|
70
70
|
workflowRunId: z.ZodString;
|
|
71
71
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
72
|
-
private: "private";
|
|
73
72
|
public: "public";
|
|
73
|
+
private: "private";
|
|
74
74
|
}>>;
|
|
75
75
|
}, z.core.$strip>>;
|
|
76
76
|
}, z.core.$strip>>;
|
|
@@ -96,8 +96,8 @@ declare const toolPartSchema: z.ZodObject<{
|
|
|
96
96
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
97
97
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
98
98
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
99
|
-
private: "private";
|
|
100
99
|
public: "public";
|
|
100
|
+
private: "private";
|
|
101
101
|
}>>;
|
|
102
102
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
103
103
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -110,8 +110,8 @@ declare const toolPartSchema: z.ZodObject<{
|
|
|
110
110
|
triggerMessageId: z.ZodString;
|
|
111
111
|
workflowRunId: z.ZodString;
|
|
112
112
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
113
|
-
private: "private";
|
|
114
113
|
public: "public";
|
|
114
|
+
private: "private";
|
|
115
115
|
}>>;
|
|
116
116
|
}, z.core.$strip>>;
|
|
117
117
|
}, z.core.$strip>>;
|
|
@@ -119,8 +119,8 @@ declare const toolPartSchema: z.ZodObject<{
|
|
|
119
119
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
120
120
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
121
121
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
122
|
-
private: "private";
|
|
123
122
|
public: "public";
|
|
123
|
+
private: "private";
|
|
124
124
|
}>>;
|
|
125
125
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
126
126
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -133,8 +133,8 @@ declare const toolPartSchema: z.ZodObject<{
|
|
|
133
133
|
triggerMessageId: z.ZodString;
|
|
134
134
|
workflowRunId: z.ZodString;
|
|
135
135
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
136
|
-
private: "private";
|
|
137
136
|
public: "public";
|
|
137
|
+
private: "private";
|
|
138
138
|
}>>;
|
|
139
139
|
}, z.core.$strip>>;
|
|
140
140
|
}, z.core.$strip>>;
|
|
@@ -148,8 +148,8 @@ declare const sourceUrlPartSchema: z.ZodObject<{
|
|
|
148
148
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
149
149
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
150
150
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
151
|
-
private: "private";
|
|
152
151
|
public: "public";
|
|
152
|
+
private: "private";
|
|
153
153
|
}>>;
|
|
154
154
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
155
155
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -162,8 +162,8 @@ declare const sourceUrlPartSchema: z.ZodObject<{
|
|
|
162
162
|
triggerMessageId: z.ZodString;
|
|
163
163
|
workflowRunId: z.ZodString;
|
|
164
164
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
165
|
-
private: "private";
|
|
166
165
|
public: "public";
|
|
166
|
+
private: "private";
|
|
167
167
|
}>>;
|
|
168
168
|
}, z.core.$strip>>;
|
|
169
169
|
}, z.core.$strip>>;
|
|
@@ -178,8 +178,8 @@ declare const sourceDocumentPartSchema: z.ZodObject<{
|
|
|
178
178
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
179
179
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
180
180
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
181
|
-
private: "private";
|
|
182
181
|
public: "public";
|
|
182
|
+
private: "private";
|
|
183
183
|
}>>;
|
|
184
184
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
185
185
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -192,8 +192,8 @@ declare const sourceDocumentPartSchema: z.ZodObject<{
|
|
|
192
192
|
triggerMessageId: z.ZodString;
|
|
193
193
|
workflowRunId: z.ZodString;
|
|
194
194
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
195
|
-
private: "private";
|
|
196
195
|
public: "public";
|
|
196
|
+
private: "private";
|
|
197
197
|
}>>;
|
|
198
198
|
}, z.core.$strip>>;
|
|
199
199
|
}, z.core.$strip>>;
|
|
@@ -235,6 +235,8 @@ declare const timelinePartEventSchema: z.ZodObject<{
|
|
|
235
235
|
visitor_blocked: "visitor_blocked";
|
|
236
236
|
visitor_unblocked: "visitor_unblocked";
|
|
237
237
|
visitor_identified: "visitor_identified";
|
|
238
|
+
ai_paused: "ai_paused";
|
|
239
|
+
ai_resumed: "ai_resumed";
|
|
238
240
|
}>;
|
|
239
241
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
240
242
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -267,8 +269,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
267
269
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
268
270
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
269
271
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
270
|
-
private: "private";
|
|
271
272
|
public: "public";
|
|
273
|
+
private: "private";
|
|
272
274
|
}>>;
|
|
273
275
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
274
276
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -281,8 +283,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
281
283
|
triggerMessageId: z.ZodString;
|
|
282
284
|
workflowRunId: z.ZodString;
|
|
283
285
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
284
|
-
private: "private";
|
|
285
286
|
public: "public";
|
|
287
|
+
private: "private";
|
|
286
288
|
}>>;
|
|
287
289
|
}, z.core.$strip>>;
|
|
288
290
|
}, z.core.$strip>>;
|
|
@@ -302,8 +304,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
302
304
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
303
305
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
304
306
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
305
|
-
private: "private";
|
|
306
307
|
public: "public";
|
|
308
|
+
private: "private";
|
|
307
309
|
}>>;
|
|
308
310
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
309
311
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -316,8 +318,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
316
318
|
triggerMessageId: z.ZodString;
|
|
317
319
|
workflowRunId: z.ZodString;
|
|
318
320
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
319
|
-
private: "private";
|
|
320
321
|
public: "public";
|
|
322
|
+
private: "private";
|
|
321
323
|
}>>;
|
|
322
324
|
}, z.core.$strip>>;
|
|
323
325
|
}, z.core.$strip>>;
|
|
@@ -325,8 +327,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
325
327
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
326
328
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
327
329
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
328
|
-
private: "private";
|
|
329
330
|
public: "public";
|
|
331
|
+
private: "private";
|
|
330
332
|
}>>;
|
|
331
333
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
332
334
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -339,8 +341,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
339
341
|
triggerMessageId: z.ZodString;
|
|
340
342
|
workflowRunId: z.ZodString;
|
|
341
343
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
342
|
-
private: "private";
|
|
343
344
|
public: "public";
|
|
345
|
+
private: "private";
|
|
344
346
|
}>>;
|
|
345
347
|
}, z.core.$strip>>;
|
|
346
348
|
}, z.core.$strip>>;
|
|
@@ -353,8 +355,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
353
355
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
354
356
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
355
357
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
356
|
-
private: "private";
|
|
357
358
|
public: "public";
|
|
359
|
+
private: "private";
|
|
358
360
|
}>>;
|
|
359
361
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
360
362
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -367,8 +369,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
367
369
|
triggerMessageId: z.ZodString;
|
|
368
370
|
workflowRunId: z.ZodString;
|
|
369
371
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
370
|
-
private: "private";
|
|
371
372
|
public: "public";
|
|
373
|
+
private: "private";
|
|
372
374
|
}>>;
|
|
373
375
|
}, z.core.$strip>>;
|
|
374
376
|
}, z.core.$strip>>;
|
|
@@ -382,8 +384,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
382
384
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
383
385
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
384
386
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
385
|
-
private: "private";
|
|
386
387
|
public: "public";
|
|
388
|
+
private: "private";
|
|
387
389
|
}>>;
|
|
388
390
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
389
391
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -396,8 +398,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
396
398
|
triggerMessageId: z.ZodString;
|
|
397
399
|
workflowRunId: z.ZodString;
|
|
398
400
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
399
|
-
private: "private";
|
|
400
401
|
public: "public";
|
|
402
|
+
private: "private";
|
|
401
403
|
}>>;
|
|
402
404
|
}, z.core.$strip>>;
|
|
403
405
|
}, z.core.$strip>>;
|
|
@@ -435,6 +437,8 @@ declare const timelineItemPartsSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObje
|
|
|
435
437
|
visitor_blocked: "visitor_blocked";
|
|
436
438
|
visitor_unblocked: "visitor_unblocked";
|
|
437
439
|
visitor_identified: "visitor_identified";
|
|
440
|
+
ai_paused: "ai_paused";
|
|
441
|
+
ai_resumed: "ai_resumed";
|
|
438
442
|
}>;
|
|
439
443
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
440
444
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -454,8 +458,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
454
458
|
conversationId: z.ZodString;
|
|
455
459
|
organizationId: z.ZodString;
|
|
456
460
|
visibility: z.ZodEnum<{
|
|
457
|
-
private: "private";
|
|
458
461
|
public: "public";
|
|
462
|
+
private: "private";
|
|
459
463
|
}>;
|
|
460
464
|
type: z.ZodEnum<{
|
|
461
465
|
message: "message";
|
|
@@ -482,8 +486,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
482
486
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
483
487
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
484
488
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
485
|
-
private: "private";
|
|
486
489
|
public: "public";
|
|
490
|
+
private: "private";
|
|
487
491
|
}>>;
|
|
488
492
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
489
493
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -496,8 +500,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
496
500
|
triggerMessageId: z.ZodString;
|
|
497
501
|
workflowRunId: z.ZodString;
|
|
498
502
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
499
|
-
private: "private";
|
|
500
503
|
public: "public";
|
|
504
|
+
private: "private";
|
|
501
505
|
}>>;
|
|
502
506
|
}, z.core.$strip>>;
|
|
503
507
|
}, z.core.$strip>>;
|
|
@@ -517,8 +521,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
517
521
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
518
522
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
519
523
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
520
|
-
private: "private";
|
|
521
524
|
public: "public";
|
|
525
|
+
private: "private";
|
|
522
526
|
}>>;
|
|
523
527
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
524
528
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -531,8 +535,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
531
535
|
triggerMessageId: z.ZodString;
|
|
532
536
|
workflowRunId: z.ZodString;
|
|
533
537
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
534
|
-
private: "private";
|
|
535
538
|
public: "public";
|
|
539
|
+
private: "private";
|
|
536
540
|
}>>;
|
|
537
541
|
}, z.core.$strip>>;
|
|
538
542
|
}, z.core.$strip>>;
|
|
@@ -540,8 +544,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
540
544
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
541
545
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
542
546
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
543
|
-
private: "private";
|
|
544
547
|
public: "public";
|
|
548
|
+
private: "private";
|
|
545
549
|
}>>;
|
|
546
550
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
547
551
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -554,8 +558,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
554
558
|
triggerMessageId: z.ZodString;
|
|
555
559
|
workflowRunId: z.ZodString;
|
|
556
560
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
557
|
-
private: "private";
|
|
558
561
|
public: "public";
|
|
562
|
+
private: "private";
|
|
559
563
|
}>>;
|
|
560
564
|
}, z.core.$strip>>;
|
|
561
565
|
}, z.core.$strip>>;
|
|
@@ -568,8 +572,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
568
572
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
569
573
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
570
574
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
571
|
-
private: "private";
|
|
572
575
|
public: "public";
|
|
576
|
+
private: "private";
|
|
573
577
|
}>>;
|
|
574
578
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
575
579
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -582,8 +586,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
582
586
|
triggerMessageId: z.ZodString;
|
|
583
587
|
workflowRunId: z.ZodString;
|
|
584
588
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
585
|
-
private: "private";
|
|
586
589
|
public: "public";
|
|
590
|
+
private: "private";
|
|
587
591
|
}>>;
|
|
588
592
|
}, z.core.$strip>>;
|
|
589
593
|
}, z.core.$strip>>;
|
|
@@ -597,8 +601,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
597
601
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
598
602
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
599
603
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
600
|
-
private: "private";
|
|
601
604
|
public: "public";
|
|
605
|
+
private: "private";
|
|
602
606
|
}>>;
|
|
603
607
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
604
608
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -611,8 +615,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
611
615
|
triggerMessageId: z.ZodString;
|
|
612
616
|
workflowRunId: z.ZodString;
|
|
613
617
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
614
|
-
private: "private";
|
|
615
618
|
public: "public";
|
|
619
|
+
private: "private";
|
|
616
620
|
}>>;
|
|
617
621
|
}, z.core.$strip>>;
|
|
618
622
|
}, z.core.$strip>>;
|
|
@@ -650,6 +654,8 @@ declare const timelineItemSchema: z.ZodObject<{
|
|
|
650
654
|
visitor_blocked: "visitor_blocked";
|
|
651
655
|
visitor_unblocked: "visitor_unblocked";
|
|
652
656
|
visitor_identified: "visitor_identified";
|
|
657
|
+
ai_paused: "ai_paused";
|
|
658
|
+
ai_resumed: "ai_resumed";
|
|
653
659
|
}>;
|
|
654
660
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
655
661
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -703,8 +709,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
703
709
|
conversationId: z.ZodString;
|
|
704
710
|
organizationId: z.ZodString;
|
|
705
711
|
visibility: z.ZodEnum<{
|
|
706
|
-
private: "private";
|
|
707
712
|
public: "public";
|
|
713
|
+
private: "private";
|
|
708
714
|
}>;
|
|
709
715
|
type: z.ZodEnum<{
|
|
710
716
|
message: "message";
|
|
@@ -731,8 +737,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
731
737
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
732
738
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
733
739
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
734
|
-
private: "private";
|
|
735
740
|
public: "public";
|
|
741
|
+
private: "private";
|
|
736
742
|
}>>;
|
|
737
743
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
738
744
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -745,8 +751,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
745
751
|
triggerMessageId: z.ZodString;
|
|
746
752
|
workflowRunId: z.ZodString;
|
|
747
753
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
748
|
-
private: "private";
|
|
749
754
|
public: "public";
|
|
755
|
+
private: "private";
|
|
750
756
|
}>>;
|
|
751
757
|
}, z.core.$strip>>;
|
|
752
758
|
}, z.core.$strip>>;
|
|
@@ -766,8 +772,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
766
772
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
767
773
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
768
774
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
769
|
-
private: "private";
|
|
770
775
|
public: "public";
|
|
776
|
+
private: "private";
|
|
771
777
|
}>>;
|
|
772
778
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
773
779
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -780,8 +786,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
780
786
|
triggerMessageId: z.ZodString;
|
|
781
787
|
workflowRunId: z.ZodString;
|
|
782
788
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
783
|
-
private: "private";
|
|
784
789
|
public: "public";
|
|
790
|
+
private: "private";
|
|
785
791
|
}>>;
|
|
786
792
|
}, z.core.$strip>>;
|
|
787
793
|
}, z.core.$strip>>;
|
|
@@ -789,8 +795,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
789
795
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
790
796
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
791
797
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
792
|
-
private: "private";
|
|
793
798
|
public: "public";
|
|
799
|
+
private: "private";
|
|
794
800
|
}>>;
|
|
795
801
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
796
802
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -803,8 +809,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
803
809
|
triggerMessageId: z.ZodString;
|
|
804
810
|
workflowRunId: z.ZodString;
|
|
805
811
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
806
|
-
private: "private";
|
|
807
812
|
public: "public";
|
|
813
|
+
private: "private";
|
|
808
814
|
}>>;
|
|
809
815
|
}, z.core.$strip>>;
|
|
810
816
|
}, z.core.$strip>>;
|
|
@@ -817,8 +823,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
817
823
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
818
824
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
819
825
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
820
|
-
private: "private";
|
|
821
826
|
public: "public";
|
|
827
|
+
private: "private";
|
|
822
828
|
}>>;
|
|
823
829
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
824
830
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -831,8 +837,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
831
837
|
triggerMessageId: z.ZodString;
|
|
832
838
|
workflowRunId: z.ZodString;
|
|
833
839
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
834
|
-
private: "private";
|
|
835
840
|
public: "public";
|
|
841
|
+
private: "private";
|
|
836
842
|
}>>;
|
|
837
843
|
}, z.core.$strip>>;
|
|
838
844
|
}, z.core.$strip>>;
|
|
@@ -846,8 +852,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
846
852
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
847
853
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
848
854
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
849
|
-
private: "private";
|
|
850
855
|
public: "public";
|
|
856
|
+
private: "private";
|
|
851
857
|
}>>;
|
|
852
858
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
853
859
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -860,8 +866,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
860
866
|
triggerMessageId: z.ZodString;
|
|
861
867
|
workflowRunId: z.ZodString;
|
|
862
868
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
863
|
-
private: "private";
|
|
864
869
|
public: "public";
|
|
870
|
+
private: "private";
|
|
865
871
|
}>>;
|
|
866
872
|
}, z.core.$strip>>;
|
|
867
873
|
}, z.core.$strip>>;
|
|
@@ -899,6 +905,8 @@ declare const getConversationTimelineItemsResponseSchema: z.ZodObject<{
|
|
|
899
905
|
visitor_blocked: "visitor_blocked";
|
|
900
906
|
visitor_unblocked: "visitor_unblocked";
|
|
901
907
|
visitor_identified: "visitor_identified";
|
|
908
|
+
ai_paused: "ai_paused";
|
|
909
|
+
ai_resumed: "ai_resumed";
|
|
902
910
|
}>;
|
|
903
911
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
904
912
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -949,8 +957,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
949
957
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
950
958
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
951
959
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
952
|
-
private: "private";
|
|
953
960
|
public: "public";
|
|
961
|
+
private: "private";
|
|
954
962
|
}>>;
|
|
955
963
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
956
964
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -963,8 +971,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
963
971
|
triggerMessageId: z.ZodString;
|
|
964
972
|
workflowRunId: z.ZodString;
|
|
965
973
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
966
|
-
private: "private";
|
|
967
974
|
public: "public";
|
|
975
|
+
private: "private";
|
|
968
976
|
}>>;
|
|
969
977
|
}, z.core.$strip>>;
|
|
970
978
|
}, z.core.$strip>>;
|
|
@@ -984,8 +992,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
984
992
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
985
993
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
986
994
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
987
|
-
private: "private";
|
|
988
995
|
public: "public";
|
|
996
|
+
private: "private";
|
|
989
997
|
}>>;
|
|
990
998
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
991
999
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -998,8 +1006,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
998
1006
|
triggerMessageId: z.ZodString;
|
|
999
1007
|
workflowRunId: z.ZodString;
|
|
1000
1008
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1001
|
-
private: "private";
|
|
1002
1009
|
public: "public";
|
|
1010
|
+
private: "private";
|
|
1003
1011
|
}>>;
|
|
1004
1012
|
}, z.core.$strip>>;
|
|
1005
1013
|
}, z.core.$strip>>;
|
|
@@ -1007,8 +1015,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1007
1015
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1008
1016
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1009
1017
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1010
|
-
private: "private";
|
|
1011
1018
|
public: "public";
|
|
1019
|
+
private: "private";
|
|
1012
1020
|
}>>;
|
|
1013
1021
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1014
1022
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1021,8 +1029,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1021
1029
|
triggerMessageId: z.ZodString;
|
|
1022
1030
|
workflowRunId: z.ZodString;
|
|
1023
1031
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1024
|
-
private: "private";
|
|
1025
1032
|
public: "public";
|
|
1033
|
+
private: "private";
|
|
1026
1034
|
}>>;
|
|
1027
1035
|
}, z.core.$strip>>;
|
|
1028
1036
|
}, z.core.$strip>>;
|
|
@@ -1035,8 +1043,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1035
1043
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1036
1044
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1037
1045
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1038
|
-
private: "private";
|
|
1039
1046
|
public: "public";
|
|
1047
|
+
private: "private";
|
|
1040
1048
|
}>>;
|
|
1041
1049
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1042
1050
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1049,8 +1057,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1049
1057
|
triggerMessageId: z.ZodString;
|
|
1050
1058
|
workflowRunId: z.ZodString;
|
|
1051
1059
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1052
|
-
private: "private";
|
|
1053
1060
|
public: "public";
|
|
1061
|
+
private: "private";
|
|
1054
1062
|
}>>;
|
|
1055
1063
|
}, z.core.$strip>>;
|
|
1056
1064
|
}, z.core.$strip>>;
|
|
@@ -1064,8 +1072,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1064
1072
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1065
1073
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1066
1074
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1067
|
-
private: "private";
|
|
1068
1075
|
public: "public";
|
|
1076
|
+
private: "private";
|
|
1069
1077
|
}>>;
|
|
1070
1078
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1071
1079
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1078,8 +1086,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1078
1086
|
triggerMessageId: z.ZodString;
|
|
1079
1087
|
workflowRunId: z.ZodString;
|
|
1080
1088
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1081
|
-
private: "private";
|
|
1082
1089
|
public: "public";
|
|
1090
|
+
private: "private";
|
|
1083
1091
|
}>>;
|
|
1084
1092
|
}, z.core.$strip>>;
|
|
1085
1093
|
}, z.core.$strip>>;
|
|
@@ -1117,6 +1125,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1117
1125
|
visitor_blocked: "visitor_blocked";
|
|
1118
1126
|
visitor_unblocked: "visitor_unblocked";
|
|
1119
1127
|
visitor_identified: "visitor_identified";
|
|
1128
|
+
ai_paused: "ai_paused";
|
|
1129
|
+
ai_resumed: "ai_resumed";
|
|
1120
1130
|
}>;
|
|
1121
1131
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
1122
1132
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -1132,8 +1142,8 @@ declare const sendTimelineItemRequestSchema: z.ZodObject<{
|
|
|
1132
1142
|
}>;
|
|
1133
1143
|
}, z.core.$strip>]>>>;
|
|
1134
1144
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1135
|
-
private: "private";
|
|
1136
1145
|
public: "public";
|
|
1146
|
+
private: "private";
|
|
1137
1147
|
}>>;
|
|
1138
1148
|
tool: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1139
1149
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1149,8 +1159,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1149
1159
|
conversationId: z.ZodString;
|
|
1150
1160
|
organizationId: z.ZodString;
|
|
1151
1161
|
visibility: z.ZodEnum<{
|
|
1152
|
-
private: "private";
|
|
1153
1162
|
public: "public";
|
|
1163
|
+
private: "private";
|
|
1154
1164
|
}>;
|
|
1155
1165
|
type: z.ZodEnum<{
|
|
1156
1166
|
message: "message";
|
|
@@ -1177,8 +1187,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1177
1187
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1178
1188
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1179
1189
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1180
|
-
private: "private";
|
|
1181
1190
|
public: "public";
|
|
1191
|
+
private: "private";
|
|
1182
1192
|
}>>;
|
|
1183
1193
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1184
1194
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1191,8 +1201,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1191
1201
|
triggerMessageId: z.ZodString;
|
|
1192
1202
|
workflowRunId: z.ZodString;
|
|
1193
1203
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1194
|
-
private: "private";
|
|
1195
1204
|
public: "public";
|
|
1205
|
+
private: "private";
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
}, z.core.$strip>>;
|
|
1198
1208
|
}, z.core.$strip>>;
|
|
@@ -1212,8 +1222,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1212
1222
|
callProviderMetadata: z.ZodOptional<z.ZodObject<{
|
|
1213
1223
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1214
1224
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1215
|
-
private: "private";
|
|
1216
1225
|
public: "public";
|
|
1226
|
+
private: "private";
|
|
1217
1227
|
}>>;
|
|
1218
1228
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1219
1229
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1226,8 +1236,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1226
1236
|
triggerMessageId: z.ZodString;
|
|
1227
1237
|
workflowRunId: z.ZodString;
|
|
1228
1238
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1229
|
-
private: "private";
|
|
1230
1239
|
public: "public";
|
|
1240
|
+
private: "private";
|
|
1231
1241
|
}>>;
|
|
1232
1242
|
}, z.core.$strip>>;
|
|
1233
1243
|
}, z.core.$strip>>;
|
|
@@ -1235,8 +1245,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1235
1245
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1236
1246
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1237
1247
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1238
|
-
private: "private";
|
|
1239
1248
|
public: "public";
|
|
1249
|
+
private: "private";
|
|
1240
1250
|
}>>;
|
|
1241
1251
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1242
1252
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1249,8 +1259,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1249
1259
|
triggerMessageId: z.ZodString;
|
|
1250
1260
|
workflowRunId: z.ZodString;
|
|
1251
1261
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1252
|
-
private: "private";
|
|
1253
1262
|
public: "public";
|
|
1263
|
+
private: "private";
|
|
1254
1264
|
}>>;
|
|
1255
1265
|
}, z.core.$strip>>;
|
|
1256
1266
|
}, z.core.$strip>>;
|
|
@@ -1263,8 +1273,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1263
1273
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1264
1274
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1265
1275
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1266
|
-
private: "private";
|
|
1267
1276
|
public: "public";
|
|
1277
|
+
private: "private";
|
|
1268
1278
|
}>>;
|
|
1269
1279
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1270
1280
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1277,8 +1287,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1277
1287
|
triggerMessageId: z.ZodString;
|
|
1278
1288
|
workflowRunId: z.ZodString;
|
|
1279
1289
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1280
|
-
private: "private";
|
|
1281
1290
|
public: "public";
|
|
1291
|
+
private: "private";
|
|
1282
1292
|
}>>;
|
|
1283
1293
|
}, z.core.$strip>>;
|
|
1284
1294
|
}, z.core.$strip>>;
|
|
@@ -1292,8 +1302,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1292
1302
|
providerMetadata: z.ZodOptional<z.ZodObject<{
|
|
1293
1303
|
cossistant: z.ZodOptional<z.ZodObject<{
|
|
1294
1304
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
1295
|
-
private: "private";
|
|
1296
1305
|
public: "public";
|
|
1306
|
+
private: "private";
|
|
1297
1307
|
}>>;
|
|
1298
1308
|
progressMessage: z.ZodOptional<z.ZodString>;
|
|
1299
1309
|
knowledgeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1306,8 +1316,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1306
1316
|
triggerMessageId: z.ZodString;
|
|
1307
1317
|
workflowRunId: z.ZodString;
|
|
1308
1318
|
triggerVisibility: z.ZodOptional<z.ZodEnum<{
|
|
1309
|
-
private: "private";
|
|
1310
1319
|
public: "public";
|
|
1320
|
+
private: "private";
|
|
1311
1321
|
}>>;
|
|
1312
1322
|
}, z.core.$strip>>;
|
|
1313
1323
|
}, z.core.$strip>>;
|
|
@@ -1345,6 +1355,8 @@ declare const sendTimelineItemResponseSchema: z.ZodObject<{
|
|
|
1345
1355
|
visitor_blocked: "visitor_blocked";
|
|
1346
1356
|
visitor_unblocked: "visitor_unblocked";
|
|
1347
1357
|
visitor_identified: "visitor_identified";
|
|
1358
|
+
ai_paused: "ai_paused";
|
|
1359
|
+
ai_resumed: "ai_resumed";
|
|
1348
1360
|
}>;
|
|
1349
1361
|
actorUserId: z.ZodNullable<z.ZodString>;
|
|
1350
1362
|
actorAiAgentId: z.ZodNullable<z.ZodString>;
|