@rudderhq/shared 0.3.6-canary.2 → 0.3.6-canary.21
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 +4 -0
- package/dist/agent-run.d.ts.map +1 -0
- package/dist/agent-run.js +90 -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 +111 -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 +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +16 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +6 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/project-mentions.d.ts +8 -0
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +41 -0
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +12 -1
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/short-refs.d.ts +10 -0
- package/dist/short-refs.d.ts.map +1 -0
- package/dist/short-refs.js +34 -0
- package/dist/short-refs.js.map +1 -0
- package/dist/short-refs.test.d.ts +2 -0
- package/dist/short-refs.test.d.ts.map +1 -0
- package/dist/short-refs.test.js +23 -0
- package/dist/short-refs.test.js.map +1 -0
- package/dist/types/agent-integration.d.ts +9 -0
- package/dist/types/agent-integration.d.ts.map +1 -1
- package/dist/types/agent.d.ts +3 -0
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/types/chat.d.ts +53 -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/issue.d.ts +1 -0
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/messenger.d.ts +1 -0
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +2 -2
- package/dist/validators/agent-integration.d.ts +60 -3
- package/dist/validators/agent-integration.d.ts.map +1 -1
- package/dist/validators/agent-integration.js +7 -0
- package/dist/validators/agent-integration.js.map +1 -1
- package/dist/validators/agent.d.ts +4 -4
- package/dist/validators/automation.d.ts +9 -9
- package/dist/validators/calendar.d.ts +20 -20
- package/dist/validators/chat.d.ts +227 -46
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +30 -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 +2 -2
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +2 -2
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +2 -2
- package/dist/validators/organization-portability.d.ts +76 -76
- package/dist/validators/organization-skill.d.ts +74 -74
- package/dist/validators/plugin.d.ts +60 -60
- 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;
|
|
@@ -125,12 +125,170 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
125
125
|
export declare const addChatMessageSchema: z.ZodObject<{
|
|
126
126
|
body: z.ZodString;
|
|
127
127
|
editUserMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
128
|
+
queuedMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
128
129
|
}, "strip", z.ZodTypeAny, {
|
|
129
130
|
body: string;
|
|
130
131
|
editUserMessageId?: string | null | undefined;
|
|
132
|
+
queuedMessageId?: string | null | undefined;
|
|
131
133
|
}, {
|
|
132
134
|
body: string;
|
|
133
135
|
editUserMessageId?: string | null | undefined;
|
|
136
|
+
queuedMessageId?: string | null | undefined;
|
|
137
|
+
}>;
|
|
138
|
+
export declare const chatQueuedMessagePayloadSchema: z.ZodObject<{
|
|
139
|
+
body: z.ZodString;
|
|
140
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
141
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
142
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
143
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
144
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
145
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
146
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
147
|
+
}, "strip", z.ZodTypeAny, {
|
|
148
|
+
body: string;
|
|
149
|
+
attachmentIds: string[];
|
|
150
|
+
skillRefs: string[];
|
|
151
|
+
projectId?: string | null | undefined;
|
|
152
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
153
|
+
accessMode?: string | null | undefined;
|
|
154
|
+
model?: string | null | undefined;
|
|
155
|
+
effort?: string | null | undefined;
|
|
156
|
+
}, {
|
|
157
|
+
body: string;
|
|
158
|
+
projectId?: string | null | undefined;
|
|
159
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
160
|
+
attachmentIds?: string[] | undefined;
|
|
161
|
+
skillRefs?: string[] | undefined;
|
|
162
|
+
accessMode?: string | null | undefined;
|
|
163
|
+
model?: string | null | undefined;
|
|
164
|
+
effort?: string | null | undefined;
|
|
165
|
+
}>;
|
|
166
|
+
export declare const createChatQueuedMessageSchema: z.ZodObject<{
|
|
167
|
+
clientMutationId: z.ZodString;
|
|
168
|
+
expectedGenerationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
169
|
+
payload: z.ZodObject<{
|
|
170
|
+
body: z.ZodString;
|
|
171
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
172
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
173
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
174
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
175
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
176
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
177
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
178
|
+
}, "strip", z.ZodTypeAny, {
|
|
179
|
+
body: string;
|
|
180
|
+
attachmentIds: string[];
|
|
181
|
+
skillRefs: string[];
|
|
182
|
+
projectId?: string | null | undefined;
|
|
183
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
184
|
+
accessMode?: string | null | undefined;
|
|
185
|
+
model?: string | null | undefined;
|
|
186
|
+
effort?: string | null | undefined;
|
|
187
|
+
}, {
|
|
188
|
+
body: string;
|
|
189
|
+
projectId?: string | null | undefined;
|
|
190
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
191
|
+
attachmentIds?: string[] | undefined;
|
|
192
|
+
skillRefs?: string[] | undefined;
|
|
193
|
+
accessMode?: string | null | undefined;
|
|
194
|
+
model?: string | null | undefined;
|
|
195
|
+
effort?: string | null | undefined;
|
|
196
|
+
}>;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
clientMutationId: string;
|
|
199
|
+
payload: {
|
|
200
|
+
body: string;
|
|
201
|
+
attachmentIds: string[];
|
|
202
|
+
skillRefs: string[];
|
|
203
|
+
projectId?: string | null | undefined;
|
|
204
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
205
|
+
accessMode?: string | null | undefined;
|
|
206
|
+
model?: string | null | undefined;
|
|
207
|
+
effort?: string | null | undefined;
|
|
208
|
+
};
|
|
209
|
+
expectedGenerationId?: string | null | undefined;
|
|
210
|
+
}, {
|
|
211
|
+
clientMutationId: string;
|
|
212
|
+
payload: {
|
|
213
|
+
body: string;
|
|
214
|
+
projectId?: string | null | undefined;
|
|
215
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
216
|
+
attachmentIds?: string[] | undefined;
|
|
217
|
+
skillRefs?: string[] | undefined;
|
|
218
|
+
accessMode?: string | null | undefined;
|
|
219
|
+
model?: string | null | undefined;
|
|
220
|
+
effort?: string | null | undefined;
|
|
221
|
+
};
|
|
222
|
+
expectedGenerationId?: string | null | undefined;
|
|
223
|
+
}>;
|
|
224
|
+
export declare const updateChatQueuedMessageSchema: z.ZodObject<{
|
|
225
|
+
version: z.ZodNumber;
|
|
226
|
+
payload: z.ZodObject<{
|
|
227
|
+
body: z.ZodString;
|
|
228
|
+
attachmentIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
229
|
+
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
230
|
+
skillRefs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
231
|
+
accessMode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
232
|
+
model: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
233
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
234
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
235
|
+
}, "strip", z.ZodTypeAny, {
|
|
236
|
+
body: string;
|
|
237
|
+
attachmentIds: string[];
|
|
238
|
+
skillRefs: string[];
|
|
239
|
+
projectId?: string | null | undefined;
|
|
240
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
241
|
+
accessMode?: string | null | undefined;
|
|
242
|
+
model?: string | null | undefined;
|
|
243
|
+
effort?: string | null | undefined;
|
|
244
|
+
}, {
|
|
245
|
+
body: string;
|
|
246
|
+
projectId?: string | null | undefined;
|
|
247
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
248
|
+
attachmentIds?: string[] | undefined;
|
|
249
|
+
skillRefs?: string[] | undefined;
|
|
250
|
+
accessMode?: string | null | undefined;
|
|
251
|
+
model?: string | null | undefined;
|
|
252
|
+
effort?: string | null | undefined;
|
|
253
|
+
}>;
|
|
254
|
+
}, "strip", z.ZodTypeAny, {
|
|
255
|
+
payload: {
|
|
256
|
+
body: string;
|
|
257
|
+
attachmentIds: string[];
|
|
258
|
+
skillRefs: string[];
|
|
259
|
+
projectId?: string | null | undefined;
|
|
260
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
261
|
+
accessMode?: string | null | undefined;
|
|
262
|
+
model?: string | null | undefined;
|
|
263
|
+
effort?: string | null | undefined;
|
|
264
|
+
};
|
|
265
|
+
version: number;
|
|
266
|
+
}, {
|
|
267
|
+
payload: {
|
|
268
|
+
body: string;
|
|
269
|
+
projectId?: string | null | undefined;
|
|
270
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
271
|
+
attachmentIds?: string[] | undefined;
|
|
272
|
+
skillRefs?: string[] | undefined;
|
|
273
|
+
accessMode?: string | null | undefined;
|
|
274
|
+
model?: string | null | undefined;
|
|
275
|
+
effort?: string | null | undefined;
|
|
276
|
+
};
|
|
277
|
+
version: number;
|
|
278
|
+
}>;
|
|
279
|
+
export declare const cancelChatQueuedMessageSchema: z.ZodObject<{
|
|
280
|
+
version: z.ZodOptional<z.ZodNumber>;
|
|
281
|
+
}, "strip", z.ZodTypeAny, {
|
|
282
|
+
version?: number | undefined;
|
|
283
|
+
}, {
|
|
284
|
+
version?: number | undefined;
|
|
285
|
+
}>;
|
|
286
|
+
export declare const steerChatQueuedMessageSchema: z.ZodObject<{
|
|
287
|
+
expectedActiveGenerationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
288
|
+
}, "strip", z.ZodTypeAny, {
|
|
289
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
290
|
+
}, {
|
|
291
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
134
292
|
}>;
|
|
135
293
|
export declare const chatAskUserOptionSchema: z.ZodObject<{
|
|
136
294
|
id: z.ZodString;
|
|
@@ -171,49 +329,49 @@ export declare const chatAskUserQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
171
329
|
selectionMode: z.ZodOptional<z.ZodEnum<["single", "multiple"]>>;
|
|
172
330
|
allowFreeform: z.ZodOptional<z.ZodBoolean>;
|
|
173
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
id: string;
|
|
174
333
|
options: {
|
|
175
334
|
id: string;
|
|
176
335
|
label: string;
|
|
177
336
|
description?: string | undefined;
|
|
178
337
|
recommended?: boolean | undefined;
|
|
179
338
|
}[];
|
|
180
|
-
id: string;
|
|
181
339
|
question: string;
|
|
182
340
|
header?: string | undefined;
|
|
183
341
|
selectionMode?: "single" | "multiple" | undefined;
|
|
184
342
|
allowFreeform?: boolean | undefined;
|
|
185
343
|
}, {
|
|
344
|
+
id: string;
|
|
186
345
|
options: {
|
|
187
346
|
id: string;
|
|
188
347
|
label: string;
|
|
189
348
|
description?: string | undefined;
|
|
190
349
|
recommended?: boolean | undefined;
|
|
191
350
|
}[];
|
|
192
|
-
id: string;
|
|
193
351
|
question: string;
|
|
194
352
|
header?: string | undefined;
|
|
195
353
|
selectionMode?: "single" | "multiple" | undefined;
|
|
196
354
|
allowFreeform?: boolean | undefined;
|
|
197
355
|
}>, {
|
|
356
|
+
id: string;
|
|
198
357
|
options: {
|
|
199
358
|
id: string;
|
|
200
359
|
label: string;
|
|
201
360
|
description?: string | undefined;
|
|
202
361
|
recommended?: boolean | undefined;
|
|
203
362
|
}[];
|
|
204
|
-
id: string;
|
|
205
363
|
question: string;
|
|
206
364
|
header?: string | undefined;
|
|
207
365
|
selectionMode?: "single" | "multiple" | undefined;
|
|
208
366
|
allowFreeform?: boolean | undefined;
|
|
209
367
|
}, {
|
|
368
|
+
id: string;
|
|
210
369
|
options: {
|
|
211
370
|
id: string;
|
|
212
371
|
label: string;
|
|
213
372
|
description?: string | undefined;
|
|
214
373
|
recommended?: boolean | undefined;
|
|
215
374
|
}[];
|
|
216
|
-
id: string;
|
|
217
375
|
question: string;
|
|
218
376
|
header?: string | undefined;
|
|
219
377
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -243,49 +401,49 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
243
401
|
selectionMode: z.ZodOptional<z.ZodEnum<["single", "multiple"]>>;
|
|
244
402
|
allowFreeform: z.ZodOptional<z.ZodBoolean>;
|
|
245
403
|
}, "strip", z.ZodTypeAny, {
|
|
404
|
+
id: string;
|
|
246
405
|
options: {
|
|
247
406
|
id: string;
|
|
248
407
|
label: string;
|
|
249
408
|
description?: string | undefined;
|
|
250
409
|
recommended?: boolean | undefined;
|
|
251
410
|
}[];
|
|
252
|
-
id: string;
|
|
253
411
|
question: string;
|
|
254
412
|
header?: string | undefined;
|
|
255
413
|
selectionMode?: "single" | "multiple" | undefined;
|
|
256
414
|
allowFreeform?: boolean | undefined;
|
|
257
415
|
}, {
|
|
416
|
+
id: string;
|
|
258
417
|
options: {
|
|
259
418
|
id: string;
|
|
260
419
|
label: string;
|
|
261
420
|
description?: string | undefined;
|
|
262
421
|
recommended?: boolean | undefined;
|
|
263
422
|
}[];
|
|
264
|
-
id: string;
|
|
265
423
|
question: string;
|
|
266
424
|
header?: string | undefined;
|
|
267
425
|
selectionMode?: "single" | "multiple" | undefined;
|
|
268
426
|
allowFreeform?: boolean | undefined;
|
|
269
427
|
}>, {
|
|
428
|
+
id: string;
|
|
270
429
|
options: {
|
|
271
430
|
id: string;
|
|
272
431
|
label: string;
|
|
273
432
|
description?: string | undefined;
|
|
274
433
|
recommended?: boolean | undefined;
|
|
275
434
|
}[];
|
|
276
|
-
id: string;
|
|
277
435
|
question: string;
|
|
278
436
|
header?: string | undefined;
|
|
279
437
|
selectionMode?: "single" | "multiple" | undefined;
|
|
280
438
|
allowFreeform?: boolean | undefined;
|
|
281
439
|
}, {
|
|
440
|
+
id: string;
|
|
282
441
|
options: {
|
|
283
442
|
id: string;
|
|
284
443
|
label: string;
|
|
285
444
|
description?: string | undefined;
|
|
286
445
|
recommended?: boolean | undefined;
|
|
287
446
|
}[];
|
|
288
|
-
id: string;
|
|
289
447
|
question: string;
|
|
290
448
|
header?: string | undefined;
|
|
291
449
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -293,13 +451,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
293
451
|
}>, "many">;
|
|
294
452
|
}, "strip", z.ZodTypeAny, {
|
|
295
453
|
questions: {
|
|
454
|
+
id: string;
|
|
296
455
|
options: {
|
|
297
456
|
id: string;
|
|
298
457
|
label: string;
|
|
299
458
|
description?: string | undefined;
|
|
300
459
|
recommended?: boolean | undefined;
|
|
301
460
|
}[];
|
|
302
|
-
id: string;
|
|
303
461
|
question: string;
|
|
304
462
|
header?: string | undefined;
|
|
305
463
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -307,13 +465,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
307
465
|
}[];
|
|
308
466
|
}, {
|
|
309
467
|
questions: {
|
|
468
|
+
id: string;
|
|
310
469
|
options: {
|
|
311
470
|
id: string;
|
|
312
471
|
label: string;
|
|
313
472
|
description?: string | undefined;
|
|
314
473
|
recommended?: boolean | undefined;
|
|
315
474
|
}[];
|
|
316
|
-
id: string;
|
|
317
475
|
question: string;
|
|
318
476
|
header?: string | undefined;
|
|
319
477
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -321,13 +479,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
321
479
|
}[];
|
|
322
480
|
}>, {
|
|
323
481
|
questions: {
|
|
482
|
+
id: string;
|
|
324
483
|
options: {
|
|
325
484
|
id: string;
|
|
326
485
|
label: string;
|
|
327
486
|
description?: string | undefined;
|
|
328
487
|
recommended?: boolean | undefined;
|
|
329
488
|
}[];
|
|
330
|
-
id: string;
|
|
331
489
|
question: string;
|
|
332
490
|
header?: string | undefined;
|
|
333
491
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -335,13 +493,13 @@ export declare const chatAskUserRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
335
493
|
}[];
|
|
336
494
|
}, {
|
|
337
495
|
questions: {
|
|
496
|
+
id: string;
|
|
338
497
|
options: {
|
|
339
498
|
id: string;
|
|
340
499
|
label: string;
|
|
341
500
|
description?: string | undefined;
|
|
342
501
|
recommended?: boolean | undefined;
|
|
343
502
|
}[];
|
|
344
|
-
id: string;
|
|
345
503
|
question: string;
|
|
346
504
|
header?: string | undefined;
|
|
347
505
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -355,23 +513,23 @@ export declare const chatRichReferenceSchema: z.ZodUnion<[z.ZodEffects<z.ZodObje
|
|
|
355
513
|
display: z.ZodOptional<z.ZodEnum<["card", "inline"]>>;
|
|
356
514
|
}, "strip", z.ZodTypeAny, {
|
|
357
515
|
type: "issue";
|
|
358
|
-
identifier?: string | undefined;
|
|
359
516
|
issueId?: string | undefined;
|
|
517
|
+
identifier?: string | undefined;
|
|
360
518
|
display?: "inline" | "card" | undefined;
|
|
361
519
|
}, {
|
|
362
520
|
type: "issue";
|
|
363
|
-
identifier?: string | undefined;
|
|
364
521
|
issueId?: string | undefined;
|
|
522
|
+
identifier?: string | undefined;
|
|
365
523
|
display?: "inline" | "card" | undefined;
|
|
366
524
|
}>, {
|
|
367
525
|
type: "issue";
|
|
368
|
-
identifier?: string | undefined;
|
|
369
526
|
issueId?: string | undefined;
|
|
527
|
+
identifier?: string | undefined;
|
|
370
528
|
display?: "inline" | "card" | undefined;
|
|
371
529
|
}, {
|
|
372
530
|
type: "issue";
|
|
373
|
-
identifier?: string | undefined;
|
|
374
531
|
issueId?: string | undefined;
|
|
532
|
+
identifier?: string | undefined;
|
|
375
533
|
display?: "inline" | "card" | undefined;
|
|
376
534
|
}>, z.ZodEffects<z.ZodObject<{
|
|
377
535
|
type: z.ZodLiteral<"issue_comment">;
|
|
@@ -382,26 +540,26 @@ export declare const chatRichReferenceSchema: z.ZodUnion<[z.ZodEffects<z.ZodObje
|
|
|
382
540
|
}, "strip", z.ZodTypeAny, {
|
|
383
541
|
type: "issue_comment";
|
|
384
542
|
commentId: string;
|
|
385
|
-
identifier?: string | undefined;
|
|
386
543
|
issueId?: string | undefined;
|
|
544
|
+
identifier?: string | undefined;
|
|
387
545
|
display?: "inline" | "card" | undefined;
|
|
388
546
|
}, {
|
|
389
547
|
type: "issue_comment";
|
|
390
548
|
commentId: string;
|
|
391
|
-
identifier?: string | undefined;
|
|
392
549
|
issueId?: string | undefined;
|
|
550
|
+
identifier?: string | undefined;
|
|
393
551
|
display?: "inline" | "card" | undefined;
|
|
394
552
|
}>, {
|
|
395
553
|
type: "issue_comment";
|
|
396
554
|
commentId: string;
|
|
397
|
-
identifier?: string | undefined;
|
|
398
555
|
issueId?: string | undefined;
|
|
556
|
+
identifier?: string | undefined;
|
|
399
557
|
display?: "inline" | "card" | undefined;
|
|
400
558
|
}, {
|
|
401
559
|
type: "issue_comment";
|
|
402
560
|
commentId: string;
|
|
403
|
-
identifier?: string | undefined;
|
|
404
561
|
issueId?: string | undefined;
|
|
562
|
+
identifier?: string | undefined;
|
|
405
563
|
display?: "inline" | "card" | undefined;
|
|
406
564
|
}>]>;
|
|
407
565
|
export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
@@ -411,23 +569,23 @@ export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffec
|
|
|
411
569
|
display: z.ZodOptional<z.ZodEnum<["card", "inline"]>>;
|
|
412
570
|
}, "strip", z.ZodTypeAny, {
|
|
413
571
|
type: "issue";
|
|
414
|
-
identifier?: string | undefined;
|
|
415
572
|
issueId?: string | undefined;
|
|
573
|
+
identifier?: string | undefined;
|
|
416
574
|
display?: "inline" | "card" | undefined;
|
|
417
575
|
}, {
|
|
418
576
|
type: "issue";
|
|
419
|
-
identifier?: string | undefined;
|
|
420
577
|
issueId?: string | undefined;
|
|
578
|
+
identifier?: string | undefined;
|
|
421
579
|
display?: "inline" | "card" | undefined;
|
|
422
580
|
}>, {
|
|
423
581
|
type: "issue";
|
|
424
|
-
identifier?: string | undefined;
|
|
425
582
|
issueId?: string | undefined;
|
|
583
|
+
identifier?: string | undefined;
|
|
426
584
|
display?: "inline" | "card" | undefined;
|
|
427
585
|
}, {
|
|
428
586
|
type: "issue";
|
|
429
|
-
identifier?: string | undefined;
|
|
430
587
|
issueId?: string | undefined;
|
|
588
|
+
identifier?: string | undefined;
|
|
431
589
|
display?: "inline" | "card" | undefined;
|
|
432
590
|
}>, z.ZodEffects<z.ZodObject<{
|
|
433
591
|
type: z.ZodLiteral<"issue_comment">;
|
|
@@ -438,49 +596,49 @@ export declare const chatRichReferencesSchema: z.ZodArray<z.ZodUnion<[z.ZodEffec
|
|
|
438
596
|
}, "strip", z.ZodTypeAny, {
|
|
439
597
|
type: "issue_comment";
|
|
440
598
|
commentId: string;
|
|
441
|
-
identifier?: string | undefined;
|
|
442
599
|
issueId?: string | undefined;
|
|
600
|
+
identifier?: string | undefined;
|
|
443
601
|
display?: "inline" | "card" | undefined;
|
|
444
602
|
}, {
|
|
445
603
|
type: "issue_comment";
|
|
446
604
|
commentId: string;
|
|
447
|
-
identifier?: string | undefined;
|
|
448
605
|
issueId?: string | undefined;
|
|
606
|
+
identifier?: string | undefined;
|
|
449
607
|
display?: "inline" | "card" | undefined;
|
|
450
608
|
}>, {
|
|
451
609
|
type: "issue_comment";
|
|
452
610
|
commentId: string;
|
|
453
|
-
identifier?: string | undefined;
|
|
454
611
|
issueId?: string | undefined;
|
|
612
|
+
identifier?: string | undefined;
|
|
455
613
|
display?: "inline" | "card" | undefined;
|
|
456
614
|
}, {
|
|
457
615
|
type: "issue_comment";
|
|
458
616
|
commentId: string;
|
|
459
|
-
identifier?: string | undefined;
|
|
460
617
|
issueId?: string | undefined;
|
|
618
|
+
identifier?: string | undefined;
|
|
461
619
|
display?: "inline" | "card" | undefined;
|
|
462
620
|
}>]>, "many">;
|
|
463
621
|
export declare function chatRichReferencesFromStructuredPayload(payload: unknown): ({
|
|
464
622
|
type: "issue";
|
|
465
|
-
identifier?: string | undefined;
|
|
466
623
|
issueId?: string | undefined;
|
|
624
|
+
identifier?: string | undefined;
|
|
467
625
|
display?: "inline" | "card" | undefined;
|
|
468
626
|
} | {
|
|
469
627
|
type: "issue_comment";
|
|
470
628
|
commentId: string;
|
|
471
|
-
identifier?: string | undefined;
|
|
472
629
|
issueId?: string | undefined;
|
|
630
|
+
identifier?: string | undefined;
|
|
473
631
|
display?: "inline" | "card" | undefined;
|
|
474
632
|
})[];
|
|
475
633
|
export declare function chatAskUserRequestFromStructuredPayload(payload: unknown): {
|
|
476
634
|
questions: {
|
|
635
|
+
id: string;
|
|
477
636
|
options: {
|
|
478
637
|
id: string;
|
|
479
638
|
label: string;
|
|
480
639
|
description?: string | undefined;
|
|
481
640
|
recommended?: boolean | undefined;
|
|
482
641
|
}[];
|
|
483
|
-
id: string;
|
|
484
642
|
question: string;
|
|
485
643
|
header?: string | undefined;
|
|
486
644
|
selectionMode?: "single" | "multiple" | undefined;
|
|
@@ -512,8 +670,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
512
670
|
}, {
|
|
513
671
|
cronExpression: string;
|
|
514
672
|
timezone: string;
|
|
515
|
-
enabled?: boolean | undefined;
|
|
516
673
|
label?: string | null | undefined;
|
|
674
|
+
enabled?: boolean | undefined;
|
|
517
675
|
}>;
|
|
518
676
|
}, "strip", z.ZodTypeAny, {
|
|
519
677
|
schedule: {
|
|
@@ -537,8 +695,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
537
695
|
schedule: {
|
|
538
696
|
cronExpression: string;
|
|
539
697
|
timezone: string;
|
|
540
|
-
enabled?: boolean | undefined;
|
|
541
698
|
label?: string | null | undefined;
|
|
699
|
+
enabled?: boolean | undefined;
|
|
542
700
|
};
|
|
543
701
|
title: string;
|
|
544
702
|
status?: "active" | "paused" | undefined;
|
|
@@ -572,8 +730,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
572
730
|
schedule: {
|
|
573
731
|
cronExpression: string;
|
|
574
732
|
timezone: string;
|
|
575
|
-
enabled?: boolean | undefined;
|
|
576
733
|
label?: string | null | undefined;
|
|
734
|
+
enabled?: boolean | undefined;
|
|
577
735
|
};
|
|
578
736
|
title: string;
|
|
579
737
|
status?: "active" | "paused" | undefined;
|
|
@@ -815,14 +973,14 @@ export declare const chatOperationProposalSchema: z.ZodObject<{
|
|
|
815
973
|
summary: z.ZodString;
|
|
816
974
|
patch: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
817
975
|
}, "strip", z.ZodTypeAny, {
|
|
818
|
-
summary: string;
|
|
819
976
|
targetType: "agent" | "organization";
|
|
820
977
|
targetId: string;
|
|
978
|
+
summary: string;
|
|
821
979
|
patch: Record<string, unknown>;
|
|
822
980
|
}, {
|
|
823
|
-
summary: string;
|
|
824
981
|
targetType: "agent" | "organization";
|
|
825
982
|
targetId: string;
|
|
983
|
+
summary: string;
|
|
826
984
|
patch: Record<string, unknown>;
|
|
827
985
|
}>;
|
|
828
986
|
export declare const resolveChatOperationProposalSchema: z.ZodObject<{
|
|
@@ -862,18 +1020,35 @@ export declare const createMessengerCustomGroupSchema: z.ZodObject<{
|
|
|
862
1020
|
name: string;
|
|
863
1021
|
icon?: string | null | undefined;
|
|
864
1022
|
}>;
|
|
1023
|
+
export declare const createMessengerCustomGroupWithEntriesSchema: z.ZodObject<{
|
|
1024
|
+
name: z.ZodString;
|
|
1025
|
+
icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1026
|
+
} & {
|
|
1027
|
+
threadKeys: z.ZodArray<z.ZodString, "many">;
|
|
1028
|
+
}, "strip", z.ZodTypeAny, {
|
|
1029
|
+
name: string;
|
|
1030
|
+
threadKeys: string[];
|
|
1031
|
+
icon?: string | null | undefined;
|
|
1032
|
+
}, {
|
|
1033
|
+
name: string;
|
|
1034
|
+
threadKeys: string[];
|
|
1035
|
+
icon?: string | null | undefined;
|
|
1036
|
+
}>;
|
|
865
1037
|
export declare const updateMessengerCustomGroupSchema: z.ZodObject<{
|
|
866
1038
|
name: z.ZodOptional<z.ZodString>;
|
|
867
1039
|
icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
868
1040
|
collapsed: z.ZodOptional<z.ZodBoolean>;
|
|
1041
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
869
1042
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
870
1043
|
}, "strip", z.ZodTypeAny, {
|
|
871
1044
|
name?: string | undefined;
|
|
1045
|
+
pinned?: boolean | undefined;
|
|
872
1046
|
icon?: string | null | undefined;
|
|
873
1047
|
collapsed?: boolean | undefined;
|
|
874
1048
|
sortOrder?: number | undefined;
|
|
875
1049
|
}, {
|
|
876
1050
|
name?: string | undefined;
|
|
1051
|
+
pinned?: boolean | undefined;
|
|
877
1052
|
icon?: string | null | undefined;
|
|
878
1053
|
collapsed?: boolean | undefined;
|
|
879
1054
|
sortOrder?: number | undefined;
|
|
@@ -912,10 +1087,16 @@ export type UpdateChatConversation = z.infer<typeof updateChatConversationSchema
|
|
|
912
1087
|
export type AddChatMessage = z.infer<typeof addChatMessageSchema>;
|
|
913
1088
|
export type UpdateMessengerThreadUserState = z.infer<typeof updateMessengerThreadUserStateSchema>;
|
|
914
1089
|
export type CreateMessengerCustomGroup = z.infer<typeof createMessengerCustomGroupSchema>;
|
|
1090
|
+
export type CreateMessengerCustomGroupWithEntries = z.infer<typeof createMessengerCustomGroupWithEntriesSchema>;
|
|
915
1091
|
export type UpdateMessengerCustomGroup = z.infer<typeof updateMessengerCustomGroupSchema>;
|
|
916
1092
|
export type ReorderMessengerCustomGroups = z.infer<typeof reorderMessengerCustomGroupsSchema>;
|
|
917
1093
|
export type AssignMessengerCustomGroupEntry = z.infer<typeof assignMessengerCustomGroupEntrySchema>;
|
|
918
1094
|
export type ReorderMessengerCustomGroupEntries = z.infer<typeof reorderMessengerCustomGroupEntriesSchema>;
|
|
1095
|
+
export type ChatQueuedMessagePayloadInput = z.infer<typeof chatQueuedMessagePayloadSchema>;
|
|
1096
|
+
export type CreateChatQueuedMessage = z.infer<typeof createChatQueuedMessageSchema>;
|
|
1097
|
+
export type UpdateChatQueuedMessage = z.infer<typeof updateChatQueuedMessageSchema>;
|
|
1098
|
+
export type CancelChatQueuedMessage = z.infer<typeof cancelChatQueuedMessageSchema>;
|
|
1099
|
+
export type SteerChatQueuedMessage = z.infer<typeof steerChatQueuedMessageSchema>;
|
|
919
1100
|
export type ChatAskUserOption = z.infer<typeof chatAskUserOptionSchema>;
|
|
920
1101
|
export type ChatAskUserQuestion = z.infer<typeof chatAskUserQuestionSchema>;
|
|
921
1102
|
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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"}
|