@rudderhq/shared 0.3.6-canary.8 → 0.4.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/dist/agent-run.d.ts +6 -0
- package/dist/agent-run.d.ts.map +1 -0
- package/dist/agent-run.js +96 -0
- package/dist/agent-run.js.map +1 -0
- package/dist/agent-run.test.d.ts +2 -0
- package/dist/agent-run.test.d.ts.map +1 -0
- package/dist/agent-run.test.js +196 -0
- package/dist/agent-run.test.js.map +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +1 -0
- package/dist/api.js.map +1 -1
- package/dist/config-schema.d.ts +37 -37
- package/dist/constants.d.ts +17 -9
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +30 -10
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +11 -5
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +12 -12
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/agent-integration.d.ts +13 -0
- package/dist/types/agent-integration.d.ts.map +1 -1
- package/dist/types/chat.d.ts +59 -1
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +24 -1
- package/dist/types/heartbeat.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/messenger.d.ts +1 -0
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/types/plugin.d.ts +8 -8
- package/dist/types/workspace-backup.d.ts +6 -0
- package/dist/types/workspace-backup.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +2 -2
- package/dist/validators/agent-integration.d.ts +2 -2
- package/dist/validators/agent.d.ts +12 -4
- package/dist/validators/agent.d.ts.map +1 -1
- package/dist/validators/agent.js +8 -0
- package/dist/validators/agent.js.map +1 -1
- package/dist/validators/automation.d.ts +17 -9
- package/dist/validators/automation.d.ts.map +1 -1
- package/dist/validators/automation.js +8 -0
- package/dist/validators/automation.js.map +1 -1
- package/dist/validators/calendar.d.ts +20 -20
- package/dist/validators/chat.d.ts +226 -46
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +32 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/cost.d.ts +8 -8
- package/dist/validators/finance.d.ts +12 -12
- package/dist/validators/index.d.ts +1 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +2 -2
- package/dist/validators/issue.d.ts +8 -0
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +8 -0
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +76 -76
- package/dist/validators/organization-skill.d.ts +74 -74
- package/dist/validators/plugin.d.ts +67 -67
- package/dist/validators/plugin.js +12 -12
- package/dist/validators/plugin.js.map +1 -1
- package/dist/validators/secret.d.ts +14 -14
- package/dist/validators/work-product.d.ts +4 -4
- package/package.json +1 -1
|
@@ -10,11 +10,11 @@ export declare const createChatContextLinkSchema: z.ZodObject<{
|
|
|
10
10
|
entityId: z.ZodString;
|
|
11
11
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
entityType: "
|
|
13
|
+
entityType: "issue" | "agent" | "project";
|
|
14
14
|
entityId: string;
|
|
15
15
|
metadata?: Record<string, unknown> | null | undefined;
|
|
16
16
|
}, {
|
|
17
|
-
entityType: "
|
|
17
|
+
entityType: "issue" | "agent" | "project";
|
|
18
18
|
entityId: string;
|
|
19
19
|
metadata?: Record<string, unknown> | null | undefined;
|
|
20
20
|
}>;
|
|
@@ -29,17 +29,17 @@ export declare const createChatConversationSchema: z.ZodObject<{
|
|
|
29
29
|
entityId: z.ZodString;
|
|
30
30
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
-
entityType: "
|
|
32
|
+
entityType: "issue" | "agent" | "project";
|
|
33
33
|
entityId: string;
|
|
34
34
|
metadata?: Record<string, unknown> | null | undefined;
|
|
35
35
|
}, {
|
|
36
|
-
entityType: "
|
|
36
|
+
entityType: "issue" | "agent" | "project";
|
|
37
37
|
entityId: string;
|
|
38
38
|
metadata?: Record<string, unknown> | null | undefined;
|
|
39
39
|
}>, "many">>>;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
contextLinks: {
|
|
42
|
-
entityType: "
|
|
42
|
+
entityType: "issue" | "agent" | "project";
|
|
43
43
|
entityId: string;
|
|
44
44
|
metadata?: Record<string, unknown> | null | undefined;
|
|
45
45
|
}[];
|
|
@@ -55,7 +55,7 @@ export declare const createChatConversationSchema: z.ZodObject<{
|
|
|
55
55
|
issueCreationMode?: "manual_approval" | "auto_create" | undefined;
|
|
56
56
|
planMode?: boolean | undefined;
|
|
57
57
|
contextLinks?: {
|
|
58
|
-
entityType: "
|
|
58
|
+
entityType: "issue" | "agent" | "project";
|
|
59
59
|
entityId: string;
|
|
60
60
|
metadata?: Record<string, unknown> | null | undefined;
|
|
61
61
|
}[] | undefined;
|
|
@@ -78,11 +78,11 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
78
78
|
entityId: z.ZodString;
|
|
79
79
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
entityType: "
|
|
81
|
+
entityType: "issue" | "agent" | "project";
|
|
82
82
|
entityId: string;
|
|
83
83
|
metadata?: Record<string, unknown> | null | undefined;
|
|
84
84
|
}, {
|
|
85
|
-
entityType: "
|
|
85
|
+
entityType: "issue" | "agent" | "project";
|
|
86
86
|
entityId: string;
|
|
87
87
|
metadata?: Record<string, unknown> | null | undefined;
|
|
88
88
|
}>, "many">>>>;
|
|
@@ -99,7 +99,7 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
99
99
|
issueCreationMode?: "manual_approval" | "auto_create" | undefined;
|
|
100
100
|
planMode?: boolean | undefined;
|
|
101
101
|
contextLinks?: {
|
|
102
|
-
entityType: "
|
|
102
|
+
entityType: "issue" | "agent" | "project";
|
|
103
103
|
entityId: string;
|
|
104
104
|
metadata?: Record<string, unknown> | null | undefined;
|
|
105
105
|
}[] | undefined;
|
|
@@ -114,7 +114,7 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
114
114
|
issueCreationMode?: "manual_approval" | "auto_create" | undefined;
|
|
115
115
|
planMode?: boolean | undefined;
|
|
116
116
|
contextLinks?: {
|
|
117
|
-
entityType: "
|
|
117
|
+
entityType: "issue" | "agent" | "project";
|
|
118
118
|
entityId: string;
|
|
119
119
|
metadata?: Record<string, unknown> | null | undefined;
|
|
120
120
|
}[] | undefined;
|
|
@@ -122,15 +122,183 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
122
122
|
primaryIssueId?: string | null | undefined;
|
|
123
123
|
resolvedAt?: string | null | undefined;
|
|
124
124
|
}>;
|
|
125
|
+
export declare const forkChatConversationSchema: z.ZodObject<{
|
|
126
|
+
sourceMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
127
|
+
title: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, "strip", z.ZodTypeAny, {
|
|
129
|
+
title?: string | undefined;
|
|
130
|
+
sourceMessageId?: string | null | undefined;
|
|
131
|
+
}, {
|
|
132
|
+
title?: string | undefined;
|
|
133
|
+
sourceMessageId?: string | null | undefined;
|
|
134
|
+
}>;
|
|
125
135
|
export declare const addChatMessageSchema: z.ZodObject<{
|
|
126
136
|
body: z.ZodString;
|
|
127
137
|
editUserMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
138
|
+
queuedMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
128
139
|
}, "strip", z.ZodTypeAny, {
|
|
129
140
|
body: string;
|
|
130
141
|
editUserMessageId?: string | null | undefined;
|
|
142
|
+
queuedMessageId?: string | null | undefined;
|
|
131
143
|
}, {
|
|
132
144
|
body: string;
|
|
133
145
|
editUserMessageId?: string | null | undefined;
|
|
146
|
+
queuedMessageId?: string | null | undefined;
|
|
147
|
+
}>;
|
|
148
|
+
export declare const chatQueuedMessagePayloadSchema: z.ZodObject<{
|
|
149
|
+
body: z.ZodString;
|
|
150
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
151
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
152
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
153
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
154
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
155
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
156
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
body: string;
|
|
159
|
+
attachmentIds: string[];
|
|
160
|
+
skillRefs: string[];
|
|
161
|
+
projectId?: string | null | undefined;
|
|
162
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
163
|
+
accessMode?: string | null | undefined;
|
|
164
|
+
model?: string | null | undefined;
|
|
165
|
+
effort?: string | null | undefined;
|
|
166
|
+
}, {
|
|
167
|
+
body: string;
|
|
168
|
+
projectId?: string | null | undefined;
|
|
169
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
170
|
+
attachmentIds?: string[] | undefined;
|
|
171
|
+
skillRefs?: string[] | undefined;
|
|
172
|
+
accessMode?: string | null | undefined;
|
|
173
|
+
model?: string | null | undefined;
|
|
174
|
+
effort?: string | null | undefined;
|
|
175
|
+
}>;
|
|
176
|
+
export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
177
|
+
clientMutationId: z.ZodString;
|
|
178
|
+
expectedGenerationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
179
|
+
payload: z.ZodObject<{
|
|
180
|
+
body: z.ZodString;
|
|
181
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
182
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
183
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
184
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
185
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
186
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
187
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
188
|
+
}, "strip", z.ZodTypeAny, {
|
|
189
|
+
body: string;
|
|
190
|
+
attachmentIds: string[];
|
|
191
|
+
skillRefs: string[];
|
|
192
|
+
projectId?: string | null | undefined;
|
|
193
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
194
|
+
accessMode?: string | null | undefined;
|
|
195
|
+
model?: string | null | undefined;
|
|
196
|
+
effort?: string | null | undefined;
|
|
197
|
+
}, {
|
|
198
|
+
body: string;
|
|
199
|
+
projectId?: string | null | undefined;
|
|
200
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
201
|
+
attachmentIds?: string[] | undefined;
|
|
202
|
+
skillRefs?: string[] | undefined;
|
|
203
|
+
accessMode?: string | null | undefined;
|
|
204
|
+
model?: string | null | undefined;
|
|
205
|
+
effort?: string | null | undefined;
|
|
206
|
+
}>;
|
|
207
|
+
}, "strip", z.ZodTypeAny, {
|
|
208
|
+
clientMutationId: string;
|
|
209
|
+
payload: {
|
|
210
|
+
body: string;
|
|
211
|
+
attachmentIds: string[];
|
|
212
|
+
skillRefs: string[];
|
|
213
|
+
projectId?: string | null | undefined;
|
|
214
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
215
|
+
accessMode?: string | null | undefined;
|
|
216
|
+
model?: string | null | undefined;
|
|
217
|
+
effort?: string | null | undefined;
|
|
218
|
+
};
|
|
219
|
+
expectedGenerationId?: string | null | undefined;
|
|
220
|
+
}, {
|
|
221
|
+
clientMutationId: string;
|
|
222
|
+
payload: {
|
|
223
|
+
body: string;
|
|
224
|
+
projectId?: string | null | undefined;
|
|
225
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
226
|
+
attachmentIds?: string[] | undefined;
|
|
227
|
+
skillRefs?: string[] | undefined;
|
|
228
|
+
accessMode?: string | null | undefined;
|
|
229
|
+
model?: string | null | undefined;
|
|
230
|
+
effort?: string | null | undefined;
|
|
231
|
+
};
|
|
232
|
+
expectedGenerationId?: string | null | undefined;
|
|
233
|
+
}>;
|
|
234
|
+
export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
235
|
+
version: z.ZodNumber;
|
|
236
|
+
payload: z.ZodObject<{
|
|
237
|
+
body: z.ZodString;
|
|
238
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
239
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
240
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
241
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
242
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
243
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
244
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
245
|
+
}, "strip", z.ZodTypeAny, {
|
|
246
|
+
body: string;
|
|
247
|
+
attachmentIds: string[];
|
|
248
|
+
skillRefs: string[];
|
|
249
|
+
projectId?: string | null | undefined;
|
|
250
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
251
|
+
accessMode?: string | null | undefined;
|
|
252
|
+
model?: string | null | undefined;
|
|
253
|
+
effort?: string | null | undefined;
|
|
254
|
+
}, {
|
|
255
|
+
body: string;
|
|
256
|
+
projectId?: string | null | undefined;
|
|
257
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
258
|
+
attachmentIds?: string[] | undefined;
|
|
259
|
+
skillRefs?: string[] | undefined;
|
|
260
|
+
accessMode?: string | null | undefined;
|
|
261
|
+
model?: string | null | undefined;
|
|
262
|
+
effort?: string | null | undefined;
|
|
263
|
+
}>;
|
|
264
|
+
}, "strip", z.ZodTypeAny, {
|
|
265
|
+
payload: {
|
|
266
|
+
body: string;
|
|
267
|
+
attachmentIds: string[];
|
|
268
|
+
skillRefs: string[];
|
|
269
|
+
projectId?: string | null | undefined;
|
|
270
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
271
|
+
accessMode?: string | null | undefined;
|
|
272
|
+
model?: string | null | undefined;
|
|
273
|
+
effort?: string | null | undefined;
|
|
274
|
+
};
|
|
275
|
+
version: number;
|
|
276
|
+
}, {
|
|
277
|
+
payload: {
|
|
278
|
+
body: string;
|
|
279
|
+
projectId?: string | null | undefined;
|
|
280
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
281
|
+
attachmentIds?: string[] | undefined;
|
|
282
|
+
skillRefs?: string[] | undefined;
|
|
283
|
+
accessMode?: string | null | undefined;
|
|
284
|
+
model?: string | null | undefined;
|
|
285
|
+
effort?: string | null | undefined;
|
|
286
|
+
};
|
|
287
|
+
version: number;
|
|
288
|
+
}>;
|
|
289
|
+
export declare const cancelChatQueuedMessageSchema: z.ZodObject<{
|
|
290
|
+
version: z.ZodOptional<z.ZodNumber>;
|
|
291
|
+
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
version?: number | undefined;
|
|
293
|
+
}, {
|
|
294
|
+
version?: number | undefined;
|
|
295
|
+
}>;
|
|
296
|
+
export declare const steerChatQueuedMessageSchema: z.ZodObject<{
|
|
297
|
+
expectedActiveGenerationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
298
|
+
}, "strip", z.ZodTypeAny, {
|
|
299
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
300
|
+
}, {
|
|
301
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
134
302
|
}>;
|
|
135
303
|
export declare const chatAskUserOptionSchema: z.ZodObject<{
|
|
136
304
|
id: z.ZodString;
|
|
@@ -171,49 +339,49 @@ export declare const chatAskUserQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
171
339
|
selectionMode: z.ZodOptional<z.ZodEnum<["single", "multiple"]>>;
|
|
172
340
|
allowFreeform: z.ZodOptional<z.ZodBoolean>;
|
|
173
341
|
}, "strip", z.ZodTypeAny, {
|
|
342
|
+
id: string;
|
|
174
343
|
options: {
|
|
175
344
|
id: string;
|
|
176
345
|
label: string;
|
|
177
346
|
description?: string | undefined;
|
|
178
347
|
recommended?: boolean | undefined;
|
|
179
348
|
}[];
|
|
180
|
-
id: string;
|
|
181
349
|
question: string;
|
|
182
350
|
header?: string | undefined;
|
|
183
351
|
selectionMode?: "single" | "multiple" | undefined;
|
|
184
352
|
allowFreeform?: boolean | undefined;
|
|
185
353
|
}, {
|
|
354
|
+
id: string;
|
|
186
355
|
options: {
|
|
187
356
|
id: string;
|
|
188
357
|
label: string;
|
|
189
358
|
description?: string | undefined;
|
|
190
359
|
recommended?: boolean | undefined;
|
|
191
360
|
}[];
|
|
192
|
-
id: string;
|
|
193
361
|
question: string;
|
|
194
362
|
header?: string | undefined;
|
|
195
363
|
selectionMode?: "single" | "multiple" | undefined;
|
|
196
364
|
allowFreeform?: boolean | undefined;
|
|
197
365
|
}>, {
|
|
366
|
+
id: string;
|
|
198
367
|
options: {
|
|
199
368
|
id: string;
|
|
200
369
|
label: string;
|
|
201
370
|
description?: string | undefined;
|
|
202
371
|
recommended?: boolean | undefined;
|
|
203
372
|
}[];
|
|
204
|
-
id: string;
|
|
205
373
|
question: string;
|
|
206
374
|
header?: string | undefined;
|
|
207
375
|
selectionMode?: "single" | "multiple" | undefined;
|
|
208
376
|
allowFreeform?: boolean | undefined;
|
|
209
377
|
}, {
|
|
378
|
+
id: string;
|
|
210
379
|
options: {
|
|
211
380
|
id: string;
|
|
212
381
|
label: string;
|
|
213
382
|
description?: string | undefined;
|
|
214
383
|
recommended?: boolean | undefined;
|
|
215
384
|
}[];
|
|
216
|
-
id: string;
|
|
217
385
|
question: string;
|
|
218
386
|
header?: string | undefined;
|
|
219
387
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -243,49 +411,49 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
243
411
|
selectionMode: z.ZodOptional<z.ZodEnum<["single", "multiple"]>>;
|
|
244
412
|
allowFreeform: z.ZodOptional<z.ZodBoolean>;
|
|
245
413
|
}, "strip", z.ZodTypeAny, {
|
|
414
|
+
id: string;
|
|
246
415
|
options: {
|
|
247
416
|
id: string;
|
|
248
417
|
label: string;
|
|
249
418
|
description?: string | undefined;
|
|
250
419
|
recommended?: boolean | undefined;
|
|
251
420
|
}[];
|
|
252
|
-
id: string;
|
|
253
421
|
question: string;
|
|
254
422
|
header?: string | undefined;
|
|
255
423
|
selectionMode?: "single" | "multiple" | undefined;
|
|
256
424
|
allowFreeform?: boolean | undefined;
|
|
257
425
|
}, {
|
|
426
|
+
id: string;
|
|
258
427
|
options: {
|
|
259
428
|
id: string;
|
|
260
429
|
label: string;
|
|
261
430
|
description?: string | undefined;
|
|
262
431
|
recommended?: boolean | undefined;
|
|
263
432
|
}[];
|
|
264
|
-
id: string;
|
|
265
433
|
question: string;
|
|
266
434
|
header?: string | undefined;
|
|
267
435
|
selectionMode?: "single" | "multiple" | undefined;
|
|
268
436
|
allowFreeform?: boolean | undefined;
|
|
269
437
|
}>, {
|
|
438
|
+
id: string;
|
|
270
439
|
options: {
|
|
271
440
|
id: string;
|
|
272
441
|
label: string;
|
|
273
442
|
description?: string | undefined;
|
|
274
443
|
recommended?: boolean | undefined;
|
|
275
444
|
}[];
|
|
276
|
-
id: string;
|
|
277
445
|
question: string;
|
|
278
446
|
header?: string | undefined;
|
|
279
447
|
selectionMode?: "single" | "multiple" | undefined;
|
|
280
448
|
allowFreeform?: boolean | undefined;
|
|
281
449
|
}, {
|
|
450
|
+
id: string;
|
|
282
451
|
options: {
|
|
283
452
|
id: string;
|
|
284
453
|
label: string;
|
|
285
454
|
description?: string | undefined;
|
|
286
455
|
recommended?: boolean | undefined;
|
|
287
456
|
}[];
|
|
288
|
-
id: string;
|
|
289
457
|
question: string;
|
|
290
458
|
header?: string | undefined;
|
|
291
459
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -293,13 +461,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
293
461
|
}>, "many">;
|
|
294
462
|
}, "strip", z.ZodTypeAny, {
|
|
295
463
|
questions: {
|
|
464
|
+
id: string;
|
|
296
465
|
options: {
|
|
297
466
|
id: string;
|
|
298
467
|
label: string;
|
|
299
468
|
description?: string | undefined;
|
|
300
469
|
recommended?: boolean | undefined;
|
|
301
470
|
}[];
|
|
302
|
-
id: string;
|
|
303
471
|
question: string;
|
|
304
472
|
header?: string | undefined;
|
|
305
473
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -307,13 +475,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
307
475
|
}[];
|
|
308
476
|
}, {
|
|
309
477
|
questions: {
|
|
478
|
+
id: string;
|
|
310
479
|
options: {
|
|
311
480
|
id: string;
|
|
312
481
|
label: string;
|
|
313
482
|
description?: string | undefined;
|
|
314
483
|
recommended?: boolean | undefined;
|
|
315
484
|
}[];
|
|
316
|
-
id: string;
|
|
317
485
|
question: string;
|
|
318
486
|
header?: string | undefined;
|
|
319
487
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -321,13 +489,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
321
489
|
}[];
|
|
322
490
|
}>, {
|
|
323
491
|
questions: {
|
|
492
|
+
id: string;
|
|
324
493
|
options: {
|
|
325
494
|
id: string;
|
|
326
495
|
label: string;
|
|
327
496
|
description?: string | undefined;
|
|
328
497
|
recommended?: boolean | undefined;
|
|
329
498
|
}[];
|
|
330
|
-
id: string;
|
|
331
499
|
question: string;
|
|
332
500
|
header?: string | undefined;
|
|
333
501
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -335,13 +503,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
335
503
|
}[];
|
|
336
504
|
}, {
|
|
337
505
|
questions: {
|
|
506
|
+
id: string;
|
|
338
507
|
options: {
|
|
339
508
|
id: string;
|
|
340
509
|
label: string;
|
|
341
510
|
description?: string | undefined;
|
|
342
511
|
recommended?: boolean | undefined;
|
|
343
512
|
}[];
|
|
344
|
-
id: string;
|
|
345
513
|
question: string;
|
|
346
514
|
header?: string | undefined;
|
|
347
515
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -355,23 +523,23 @@ export declare const chatRichReferenceSchema: z.ZodUnion<[z.ZodEffects<z.ZodObje
|
|
|
355
523
|
display: z.ZodOptional<z.ZodEnum<["card", "inline"]>>;
|
|
356
524
|
}, "strip", z.ZodTypeAny, {
|
|
357
525
|
type: "issue";
|
|
358
|
-
identifier?: string | undefined;
|
|
359
526
|
issueId?: string | undefined;
|
|
527
|
+
identifier?: string | undefined;
|
|
360
528
|
display?: "inline" | "card" | undefined;
|
|
361
529
|
}, {
|
|
362
530
|
type: "issue";
|
|
363
|
-
identifier?: string | undefined;
|
|
364
531
|
issueId?: string | undefined;
|
|
532
|
+
identifier?: string | undefined;
|
|
365
533
|
display?: "inline" | "card" | undefined;
|
|
366
534
|
}>, {
|
|
367
535
|
type: "issue";
|
|
368
|
-
identifier?: string | undefined;
|
|
369
536
|
issueId?: string | undefined;
|
|
537
|
+
identifier?: string | undefined;
|
|
370
538
|
display?: "inline" | "card" | undefined;
|
|
371
539
|
}, {
|
|
372
540
|
type: "issue";
|
|
373
|
-
identifier?: string | undefined;
|
|
374
541
|
issueId?: string | undefined;
|
|
542
|
+
identifier?: string | undefined;
|
|
375
543
|
display?: "inline" | "card" | undefined;
|
|
376
544
|
}>, z.ZodEffects<z.ZodObject<{
|
|
377
545
|
type: z.ZodLiteral<"issue_comment">;
|
|
@@ -382,26 +550,26 @@ export declare const chatRichReferenceSchema: z.ZodUnion<[z.ZodEffects<z.ZodObje
|
|
|
382
550
|
}, "strip", z.ZodTypeAny, {
|
|
383
551
|
type: "issue_comment";
|
|
384
552
|
commentId: string;
|
|
385
|
-
identifier?: string | undefined;
|
|
386
553
|
issueId?: string | undefined;
|
|
554
|
+
identifier?: string | undefined;
|
|
387
555
|
display?: "inline" | "card" | undefined;
|
|
388
556
|
}, {
|
|
389
557
|
type: "issue_comment";
|
|
390
558
|
commentId: string;
|
|
391
|
-
identifier?: string | undefined;
|
|
392
559
|
issueId?: string | undefined;
|
|
560
|
+
identifier?: string | undefined;
|
|
393
561
|
display?: "inline" | "card" | undefined;
|
|
394
562
|
}>, {
|
|
395
563
|
type: "issue_comment";
|
|
396
564
|
commentId: string;
|
|
397
|
-
identifier?: string | undefined;
|
|
398
565
|
issueId?: string | undefined;
|
|
566
|
+
identifier?: string | undefined;
|
|
399
567
|
display?: "inline" | "card" | undefined;
|
|
400
568
|
}, {
|
|
401
569
|
type: "issue_comment";
|
|
402
570
|
commentId: string;
|
|
403
|
-
identifier?: string | undefined;
|
|
404
571
|
issueId?: string | undefined;
|
|
572
|
+
identifier?: string | undefined;
|
|
405
573
|
display?: "inline" | "card" | undefined;
|
|
406
574
|
}>]>;
|
|
407
575
|
export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
@@ -411,23 +579,23 @@ export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffec
|
|
|
411
579
|
display: z.ZodOptional<z.ZodEnum<["card", "inline"]>>;
|
|
412
580
|
}, "strip", z.ZodTypeAny, {
|
|
413
581
|
type: "issue";
|
|
414
|
-
identifier?: string | undefined;
|
|
415
582
|
issueId?: string | undefined;
|
|
583
|
+
identifier?: string | undefined;
|
|
416
584
|
display?: "inline" | "card" | undefined;
|
|
417
585
|
}, {
|
|
418
586
|
type: "issue";
|
|
419
|
-
identifier?: string | undefined;
|
|
420
587
|
issueId?: string | undefined;
|
|
588
|
+
identifier?: string | undefined;
|
|
421
589
|
display?: "inline" | "card" | undefined;
|
|
422
590
|
}>, {
|
|
423
591
|
type: "issue";
|
|
424
|
-
identifier?: string | undefined;
|
|
425
592
|
issueId?: string | undefined;
|
|
593
|
+
identifier?: string | undefined;
|
|
426
594
|
display?: "inline" | "card" | undefined;
|
|
427
595
|
}, {
|
|
428
596
|
type: "issue";
|
|
429
|
-
identifier?: string | undefined;
|
|
430
597
|
issueId?: string | undefined;
|
|
598
|
+
identifier?: string | undefined;
|
|
431
599
|
display?: "inline" | "card" | undefined;
|
|
432
600
|
}>, z.ZodEffects<z.ZodObject<{
|
|
433
601
|
type: z.ZodLiteral<"issue_comment">;
|
|
@@ -438,49 +606,49 @@ export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffec
|
|
|
438
606
|
}, "strip", z.ZodTypeAny, {
|
|
439
607
|
type: "issue_comment";
|
|
440
608
|
commentId: string;
|
|
441
|
-
identifier?: string | undefined;
|
|
442
609
|
issueId?: string | undefined;
|
|
610
|
+
identifier?: string | undefined;
|
|
443
611
|
display?: "inline" | "card" | undefined;
|
|
444
612
|
}, {
|
|
445
613
|
type: "issue_comment";
|
|
446
614
|
commentId: string;
|
|
447
|
-
identifier?: string | undefined;
|
|
448
615
|
issueId?: string | undefined;
|
|
616
|
+
identifier?: string | undefined;
|
|
449
617
|
display?: "inline" | "card" | undefined;
|
|
450
618
|
}>, {
|
|
451
619
|
type: "issue_comment";
|
|
452
620
|
commentId: string;
|
|
453
|
-
identifier?: string | undefined;
|
|
454
621
|
issueId?: string | undefined;
|
|
622
|
+
identifier?: string | undefined;
|
|
455
623
|
display?: "inline" | "card" | undefined;
|
|
456
624
|
}, {
|
|
457
625
|
type: "issue_comment";
|
|
458
626
|
commentId: string;
|
|
459
|
-
identifier?: string | undefined;
|
|
460
627
|
issueId?: string | undefined;
|
|
628
|
+
identifier?: string | undefined;
|
|
461
629
|
display?: "inline" | "card" | undefined;
|
|
462
630
|
}>]>, "many">;
|
|
463
631
|
export declare function chatRichReferencesFromStructuredPayload(payload: unknown): ({
|
|
464
632
|
type: "issue";
|
|
465
|
-
identifier?: string | undefined;
|
|
466
633
|
issueId?: string | undefined;
|
|
634
|
+
identifier?: string | undefined;
|
|
467
635
|
display?: "inline" | "card" | undefined;
|
|
468
636
|
} | {
|
|
469
637
|
type: "issue_comment";
|
|
470
638
|
commentId: string;
|
|
471
|
-
identifier?: string | undefined;
|
|
472
639
|
issueId?: string | undefined;
|
|
640
|
+
identifier?: string | undefined;
|
|
473
641
|
display?: "inline" | "card" | undefined;
|
|
474
642
|
})[];
|
|
475
643
|
export declare function chatAskUserRequestFromStructuredPayload(payload: unknown): {
|
|
476
644
|
questions: {
|
|
645
|
+
id: string;
|
|
477
646
|
options: {
|
|
478
647
|
id: string;
|
|
479
648
|
label: string;
|
|
480
649
|
description?: string | undefined;
|
|
481
650
|
recommended?: boolean | undefined;
|
|
482
651
|
}[];
|
|
483
|
-
id: string;
|
|
484
652
|
question: string;
|
|
485
653
|
header?: string | undefined;
|
|
486
654
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -512,8 +680,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
512
680
|
}, {
|
|
513
681
|
cronExpression: string;
|
|
514
682
|
timezone: string;
|
|
515
|
-
enabled?: boolean | undefined;
|
|
516
683
|
label?: string | null | undefined;
|
|
684
|
+
enabled?: boolean | undefined;
|
|
517
685
|
}>;
|
|
518
686
|
}, "strip", z.ZodTypeAny, {
|
|
519
687
|
schedule: {
|
|
@@ -537,8 +705,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
537
705
|
schedule: {
|
|
538
706
|
cronExpression: string;
|
|
539
707
|
timezone: string;
|
|
540
|
-
enabled?: boolean | undefined;
|
|
541
708
|
label?: string | null | undefined;
|
|
709
|
+
enabled?: boolean | undefined;
|
|
542
710
|
};
|
|
543
711
|
title: string;
|
|
544
712
|
status?: "active" | "paused" | undefined;
|
|
@@ -572,8 +740,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
572
740
|
schedule: {
|
|
573
741
|
cronExpression: string;
|
|
574
742
|
timezone: string;
|
|
575
|
-
enabled?: boolean | undefined;
|
|
576
743
|
label?: string | null | undefined;
|
|
744
|
+
enabled?: boolean | undefined;
|
|
577
745
|
};
|
|
578
746
|
title: string;
|
|
579
747
|
status?: "active" | "paused" | undefined;
|
|
@@ -815,14 +983,14 @@ export declare const chatOperationProposalSchema: z.ZodObject<{
|
|
|
815
983
|
summary: z.ZodString;
|
|
816
984
|
patch: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
817
985
|
}, "strip", z.ZodTypeAny, {
|
|
818
|
-
summary: string;
|
|
819
986
|
targetType: "agent" | "organization";
|
|
820
987
|
targetId: string;
|
|
988
|
+
summary: string;
|
|
821
989
|
patch: Record<string, unknown>;
|
|
822
990
|
}, {
|
|
823
|
-
summary: string;
|
|
824
991
|
targetType: "agent" | "organization";
|
|
825
992
|
targetId: string;
|
|
993
|
+
summary: string;
|
|
826
994
|
patch: Record<string, unknown>;
|
|
827
995
|
}>;
|
|
828
996
|
export declare const resolveChatOperationProposalSchema: z.ZodObject<{
|
|
@@ -867,27 +1035,33 @@ export declare const createMessengerCustomGroupWithEntriesSchema: z.ZodObject<{
|
|
|
867
1035
|
icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
868
1036
|
} & {
|
|
869
1037
|
threadKeys: z.ZodArray<z.ZodString, "many">;
|
|
1038
|
+
autoGenerateName: z.ZodOptional<z.ZodBoolean>;
|
|
870
1039
|
}, "strip", z.ZodTypeAny, {
|
|
871
1040
|
name: string;
|
|
872
1041
|
threadKeys: string[];
|
|
873
1042
|
icon?: string | null | undefined;
|
|
1043
|
+
autoGenerateName?: boolean | undefined;
|
|
874
1044
|
}, {
|
|
875
1045
|
name: string;
|
|
876
1046
|
threadKeys: string[];
|
|
877
1047
|
icon?: string | null | undefined;
|
|
1048
|
+
autoGenerateName?: boolean | undefined;
|
|
878
1049
|
}>;
|
|
879
1050
|
export declare const updateMessengerCustomGroupSchema: z.ZodObject<{
|
|
880
1051
|
name: z.ZodOptional<z.ZodString>;
|
|
881
1052
|
icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
882
1053
|
collapsed: z.ZodOptional<z.ZodBoolean>;
|
|
1054
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
883
1055
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
884
1056
|
}, "strip", z.ZodTypeAny, {
|
|
885
1057
|
name?: string | undefined;
|
|
1058
|
+
pinned?: boolean | undefined;
|
|
886
1059
|
icon?: string | null | undefined;
|
|
887
1060
|
collapsed?: boolean | undefined;
|
|
888
1061
|
sortOrder?: number | undefined;
|
|
889
1062
|
}, {
|
|
890
1063
|
name?: string | undefined;
|
|
1064
|
+
pinned?: boolean | undefined;
|
|
891
1065
|
icon?: string | null | undefined;
|
|
892
1066
|
collapsed?: boolean | undefined;
|
|
893
1067
|
sortOrder?: number | undefined;
|
|
@@ -921,6 +1095,7 @@ export type ChatMessageStatus = z.infer<typeof chatMessageStatusSchema>;
|
|
|
921
1095
|
export type ChatContextEntityType = z.infer<typeof chatContextEntityTypeSchema>;
|
|
922
1096
|
export type CreateChatContextLink = z.infer<typeof createChatContextLinkSchema>;
|
|
923
1097
|
export type CreateChatConversation = z.infer<typeof createChatConversationSchema>;
|
|
1098
|
+
export type ForkChatConversation = z.infer<typeof forkChatConversationSchema>;
|
|
924
1099
|
export type SetChatProjectContext = z.infer<typeof setChatProjectContextSchema>;
|
|
925
1100
|
export type UpdateChatConversation = z.infer<typeof updateChatConversationSchema>;
|
|
926
1101
|
export type AddChatMessage = z.infer<typeof addChatMessageSchema>;
|
|
@@ -931,6 +1106,11 @@ export type UpdateMessengerCustomGroup = z.infer<typeof updateMessengerCustomGro
|
|
|
931
1106
|
export type ReorderMessengerCustomGroups = z.infer<typeof reorderMessengerCustomGroupsSchema>;
|
|
932
1107
|
export type AssignMessengerCustomGroupEntry = z.infer<typeof assignMessengerCustomGroupEntrySchema>;
|
|
933
1108
|
export type ReorderMessengerCustomGroupEntries = z.infer<typeof reorderMessengerCustomGroupEntriesSchema>;
|
|
1109
|
+
export type ChatQueuedMessagePayloadInput = z.infer<typeof chatQueuedMessagePayloadSchema>;
|
|
1110
|
+
export type CreateChatQueuedMessage = z.infer<typeof createChatQueuedMessageSchema>;
|
|
1111
|
+
export type UpdateChatQueuedMessage = z.infer<typeof updateChatQueuedMessageSchema>;
|
|
1112
|
+
export type CancelChatQueuedMessage = z.infer<typeof cancelChatQueuedMessageSchema>;
|
|
1113
|
+
export type SteerChatQueuedMessage = z.infer<typeof steerChatQueuedMessageSchema>;
|
|
934
1114
|
export type ChatAskUserOption = z.infer<typeof chatAskUserOptionSchema>;
|
|
935
1115
|
export type ChatAskUserQuestion = z.infer<typeof chatAskUserQuestionSchema>;
|
|
936
1116
|
export type ChatAskUserRequest = z.infer<typeof chatAskUserRequestSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/validators/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,4BAA4B,+CAAqC,CAAC;AAC/E,eAAO,MAAM,2BAA2B,+CAAoC,CAAC;AAC7E,eAAO,MAAM,qBAAqB,4CAA6B,CAAC;AAChE,eAAO,MAAM,qBAAqB,4FAA6B,CAAC;AAChE,eAAO,MAAM,uBAAuB,2EAAgC,CAAC;AACrE,eAAO,MAAM,2BAA2B,0CAAoC,CAAC;AAE7E,eAAO,MAAM,2BAA2B;;;;;;;;;;;;EAItC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOvC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;EAEtC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAC;AAEL,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/validators/chat.ts"],"names":[],"mappings":"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"}
|