@lovelybunch/core 1.0.76 → 1.0.77-alpha.1
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/context.d.ts +8 -8
- package/dist/knowledge.d.ts +116 -116
- package/dist/mail.d.ts +8 -8
- package/dist/tasks.d.ts +48 -48
- package/package.json +16 -16
package/dist/context.d.ts
CHANGED
|
@@ -27,22 +27,22 @@ export declare const UpdateContextInputSchema: z.ZodObject<{
|
|
|
27
27
|
type: z.ZodEnum<["role", "agents", "team", "memory"]>;
|
|
28
28
|
content: z.ZodString;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
content: string;
|
|
31
30
|
type: "role" | "agents" | "team" | "memory";
|
|
32
|
-
}, {
|
|
33
31
|
content: string;
|
|
32
|
+
}, {
|
|
34
33
|
type: "role" | "agents" | "team" | "memory";
|
|
34
|
+
content: string;
|
|
35
35
|
}>;
|
|
36
36
|
export type UpdateContextInput = z.infer<typeof UpdateContextInputSchema>;
|
|
37
37
|
export declare const AppendContextInputSchema: z.ZodObject<{
|
|
38
38
|
type: z.ZodEnum<["role", "agents", "team", "memory"]>;
|
|
39
39
|
content: z.ZodString;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
|
-
content: string;
|
|
42
41
|
type: "role" | "agents" | "team" | "memory";
|
|
43
|
-
}, {
|
|
44
42
|
content: string;
|
|
43
|
+
}, {
|
|
45
44
|
type: "role" | "agents" | "team" | "memory";
|
|
45
|
+
content: string;
|
|
46
46
|
}>;
|
|
47
47
|
export type AppendContextInput = z.infer<typeof AppendContextInputSchema>;
|
|
48
48
|
export declare const ReplaceContextSectionInputSchema: z.ZodObject<{
|
|
@@ -118,21 +118,21 @@ export declare const contextSchemas: {
|
|
|
118
118
|
type: z.ZodEnum<["role", "agents", "team", "memory"]>;
|
|
119
119
|
content: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
|
-
content: string;
|
|
122
121
|
type: "role" | "agents" | "team" | "memory";
|
|
123
|
-
}, {
|
|
124
122
|
content: string;
|
|
123
|
+
}, {
|
|
125
124
|
type: "role" | "agents" | "team" | "memory";
|
|
125
|
+
content: string;
|
|
126
126
|
}>;
|
|
127
127
|
AppendContextInputSchema: z.ZodObject<{
|
|
128
128
|
type: z.ZodEnum<["role", "agents", "team", "memory"]>;
|
|
129
129
|
content: z.ZodString;
|
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
-
content: string;
|
|
132
131
|
type: "role" | "agents" | "team" | "memory";
|
|
133
|
-
}, {
|
|
134
132
|
content: string;
|
|
133
|
+
}, {
|
|
135
134
|
type: "role" | "agents" | "team" | "memory";
|
|
135
|
+
content: string;
|
|
136
136
|
}>;
|
|
137
137
|
ReplaceContextSectionInputSchema: z.ZodObject<{
|
|
138
138
|
type: z.ZodEnum<["role", "agents", "team", "memory"]>;
|
package/dist/knowledge.d.ts
CHANGED
|
@@ -145,12 +145,13 @@ export declare const KnowledgeDocumentSchema: z.ZodObject<{
|
|
|
145
145
|
content: z.ZodString;
|
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
147
|
content: string;
|
|
148
|
-
|
|
148
|
+
filename: string;
|
|
149
149
|
metadata: {
|
|
150
150
|
updated: string;
|
|
151
|
-
status?: string | undefined;
|
|
152
|
-
type?: string | undefined;
|
|
153
151
|
tags?: string[] | undefined;
|
|
152
|
+
type?: string | undefined;
|
|
153
|
+
status?: string | undefined;
|
|
154
|
+
summary?: string | undefined;
|
|
154
155
|
version?: string | undefined;
|
|
155
156
|
category?: string | undefined;
|
|
156
157
|
sources?: string[] | undefined;
|
|
@@ -160,19 +161,19 @@ export declare const KnowledgeDocumentSchema: z.ZodObject<{
|
|
|
160
161
|
email?: string | undefined;
|
|
161
162
|
} | undefined;
|
|
162
163
|
audience?: string[] | undefined;
|
|
163
|
-
summary?: string | undefined;
|
|
164
164
|
} & {
|
|
165
165
|
[k: string]: unknown;
|
|
166
166
|
};
|
|
167
|
-
|
|
167
|
+
title: string;
|
|
168
168
|
}, {
|
|
169
169
|
content: string;
|
|
170
|
-
|
|
170
|
+
filename: string;
|
|
171
171
|
metadata: {
|
|
172
172
|
updated: string;
|
|
173
|
-
status?: string | undefined;
|
|
174
|
-
type?: string | undefined;
|
|
175
173
|
tags?: string[] | undefined;
|
|
174
|
+
type?: string | undefined;
|
|
175
|
+
status?: string | undefined;
|
|
176
|
+
summary?: string | undefined;
|
|
176
177
|
version?: string | undefined;
|
|
177
178
|
category?: string | undefined;
|
|
178
179
|
sources?: string[] | undefined;
|
|
@@ -182,11 +183,10 @@ export declare const KnowledgeDocumentSchema: z.ZodObject<{
|
|
|
182
183
|
email?: string | undefined;
|
|
183
184
|
} | undefined;
|
|
184
185
|
audience?: string[] | undefined;
|
|
185
|
-
summary?: string | undefined;
|
|
186
186
|
} & {
|
|
187
187
|
[k: string]: unknown;
|
|
188
188
|
};
|
|
189
|
-
|
|
189
|
+
title: string;
|
|
190
190
|
}>;
|
|
191
191
|
export type KnowledgeDocument = z.infer<typeof KnowledgeDocumentSchema>;
|
|
192
192
|
export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
@@ -263,12 +263,13 @@ export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
|
263
263
|
score: z.ZodOptional<z.ZodNumber>;
|
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
|
265
265
|
content: string;
|
|
266
|
-
|
|
266
|
+
filename: string;
|
|
267
267
|
metadata: {
|
|
268
268
|
updated: string;
|
|
269
|
-
status?: string | undefined;
|
|
270
|
-
type?: string | undefined;
|
|
271
269
|
tags?: string[] | undefined;
|
|
270
|
+
type?: string | undefined;
|
|
271
|
+
status?: string | undefined;
|
|
272
|
+
summary?: string | undefined;
|
|
272
273
|
version?: string | undefined;
|
|
273
274
|
category?: string | undefined;
|
|
274
275
|
sources?: string[] | undefined;
|
|
@@ -278,22 +279,22 @@ export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
|
278
279
|
email?: string | undefined;
|
|
279
280
|
} | undefined;
|
|
280
281
|
audience?: string[] | undefined;
|
|
281
|
-
summary?: string | undefined;
|
|
282
282
|
} & {
|
|
283
283
|
[k: string]: unknown;
|
|
284
284
|
};
|
|
285
|
-
|
|
285
|
+
title: string;
|
|
286
286
|
snippet?: string | undefined;
|
|
287
287
|
matchedIn?: string[] | undefined;
|
|
288
288
|
score?: number | undefined;
|
|
289
289
|
}, {
|
|
290
290
|
content: string;
|
|
291
|
-
|
|
291
|
+
filename: string;
|
|
292
292
|
metadata: {
|
|
293
293
|
updated: string;
|
|
294
|
-
status?: string | undefined;
|
|
295
|
-
type?: string | undefined;
|
|
296
294
|
tags?: string[] | undefined;
|
|
295
|
+
type?: string | undefined;
|
|
296
|
+
status?: string | undefined;
|
|
297
|
+
summary?: string | undefined;
|
|
297
298
|
version?: string | undefined;
|
|
298
299
|
category?: string | undefined;
|
|
299
300
|
sources?: string[] | undefined;
|
|
@@ -303,11 +304,10 @@ export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
|
303
304
|
email?: string | undefined;
|
|
304
305
|
} | undefined;
|
|
305
306
|
audience?: string[] | undefined;
|
|
306
|
-
summary?: string | undefined;
|
|
307
307
|
} & {
|
|
308
308
|
[k: string]: unknown;
|
|
309
309
|
};
|
|
310
|
-
|
|
310
|
+
title: string;
|
|
311
311
|
snippet?: string | undefined;
|
|
312
312
|
matchedIn?: string[] | undefined;
|
|
313
313
|
score?: number | undefined;
|
|
@@ -330,9 +330,10 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
330
330
|
filename: z.ZodOptional<z.ZodString>;
|
|
331
331
|
summary: z.ZodOptional<z.ZodString>;
|
|
332
332
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
333
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
334
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
335
333
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
334
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
335
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
336
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
336
337
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
337
338
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
338
339
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -348,11 +349,11 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
348
349
|
email?: string | undefined;
|
|
349
350
|
}>>>;
|
|
350
351
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
351
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
352
352
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
353
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
354
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355
353
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
354
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
356
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
356
357
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
357
358
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
358
359
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -368,11 +369,11 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
368
369
|
email?: string | undefined;
|
|
369
370
|
}>>>;
|
|
370
371
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
371
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
372
372
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
373
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
374
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
375
373
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
374
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
375
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
376
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
376
377
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
377
378
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
378
379
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -388,15 +389,17 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
388
389
|
email?: string | undefined;
|
|
389
390
|
}>>>;
|
|
390
391
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
391
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
392
392
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
393
393
|
}, "strip", z.ZodTypeAny, {
|
|
394
394
|
content: string;
|
|
395
395
|
title: string;
|
|
396
|
+
summary?: string | undefined;
|
|
397
|
+
filename?: string | undefined;
|
|
396
398
|
metadata?: z.objectOutputType<{
|
|
397
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
398
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
399
399
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
400
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
401
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
402
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
400
403
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
401
404
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
402
405
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -412,17 +415,17 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
412
415
|
email?: string | undefined;
|
|
413
416
|
}>>>;
|
|
414
417
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
415
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
416
418
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
417
|
-
summary?: string | undefined;
|
|
418
|
-
filename?: string | undefined;
|
|
419
419
|
}, {
|
|
420
420
|
content: string;
|
|
421
421
|
title: string;
|
|
422
|
+
summary?: string | undefined;
|
|
423
|
+
filename?: string | undefined;
|
|
422
424
|
metadata?: z.objectInputType<{
|
|
423
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
424
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
425
425
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
426
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
427
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
428
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
426
429
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
427
430
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
428
431
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -438,10 +441,7 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
438
441
|
email?: string | undefined;
|
|
439
442
|
}>>>;
|
|
440
443
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
441
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
442
444
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
443
|
-
summary?: string | undefined;
|
|
444
|
-
filename?: string | undefined;
|
|
445
445
|
}>;
|
|
446
446
|
export type CreateKnowledgeInput = z.infer<typeof CreateKnowledgeInputSchema>;
|
|
447
447
|
export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
@@ -450,9 +450,10 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
450
450
|
title: z.ZodOptional<z.ZodString>;
|
|
451
451
|
summary: z.ZodOptional<z.ZodString>;
|
|
452
452
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
453
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
454
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
455
453
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
454
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
455
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
456
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
456
457
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
457
458
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
458
459
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -468,11 +469,11 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
468
469
|
email?: string | undefined;
|
|
469
470
|
}>>>;
|
|
470
471
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
471
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
472
472
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
473
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
474
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
475
473
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
474
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
475
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
476
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
476
477
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
477
478
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
478
479
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -488,11 +489,11 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
488
489
|
email?: string | undefined;
|
|
489
490
|
}>>>;
|
|
490
491
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
491
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
492
492
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
493
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
494
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
495
493
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
494
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
495
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
496
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
496
497
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
497
498
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
498
499
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -508,16 +509,16 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
508
509
|
email?: string | undefined;
|
|
509
510
|
}>>>;
|
|
510
511
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
511
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
512
512
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
513
513
|
}, "strip", z.ZodTypeAny, {
|
|
514
514
|
content: string;
|
|
515
515
|
filename: string;
|
|
516
|
-
|
|
516
|
+
summary?: string | undefined;
|
|
517
517
|
metadata?: z.objectOutputType<{
|
|
518
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
519
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
520
518
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
519
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
520
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
521
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
521
522
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
522
523
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
523
524
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -533,17 +534,17 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
533
534
|
email?: string | undefined;
|
|
534
535
|
}>>>;
|
|
535
536
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
536
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
537
537
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
538
|
-
|
|
538
|
+
title?: string | undefined;
|
|
539
539
|
}, {
|
|
540
540
|
content: string;
|
|
541
541
|
filename: string;
|
|
542
|
-
|
|
542
|
+
summary?: string | undefined;
|
|
543
543
|
metadata?: z.objectInputType<{
|
|
544
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
545
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
546
544
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
545
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
546
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
547
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
547
548
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
548
549
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
549
550
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -559,9 +560,8 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
559
560
|
email?: string | undefined;
|
|
560
561
|
}>>>;
|
|
561
562
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
562
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
563
563
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
564
|
-
|
|
564
|
+
title?: string | undefined;
|
|
565
565
|
}>;
|
|
566
566
|
export type UpdateKnowledgeInput = z.infer<typeof UpdateKnowledgeInputSchema>;
|
|
567
567
|
/**
|
|
@@ -729,12 +729,13 @@ export declare const knowledgeSchemas: {
|
|
|
729
729
|
content: z.ZodString;
|
|
730
730
|
}, "strip", z.ZodTypeAny, {
|
|
731
731
|
content: string;
|
|
732
|
-
|
|
732
|
+
filename: string;
|
|
733
733
|
metadata: {
|
|
734
734
|
updated: string;
|
|
735
|
-
status?: string | undefined;
|
|
736
|
-
type?: string | undefined;
|
|
737
735
|
tags?: string[] | undefined;
|
|
736
|
+
type?: string | undefined;
|
|
737
|
+
status?: string | undefined;
|
|
738
|
+
summary?: string | undefined;
|
|
738
739
|
version?: string | undefined;
|
|
739
740
|
category?: string | undefined;
|
|
740
741
|
sources?: string[] | undefined;
|
|
@@ -744,19 +745,19 @@ export declare const knowledgeSchemas: {
|
|
|
744
745
|
email?: string | undefined;
|
|
745
746
|
} | undefined;
|
|
746
747
|
audience?: string[] | undefined;
|
|
747
|
-
summary?: string | undefined;
|
|
748
748
|
} & {
|
|
749
749
|
[k: string]: unknown;
|
|
750
750
|
};
|
|
751
|
-
|
|
751
|
+
title: string;
|
|
752
752
|
}, {
|
|
753
753
|
content: string;
|
|
754
|
-
|
|
754
|
+
filename: string;
|
|
755
755
|
metadata: {
|
|
756
756
|
updated: string;
|
|
757
|
-
status?: string | undefined;
|
|
758
|
-
type?: string | undefined;
|
|
759
757
|
tags?: string[] | undefined;
|
|
758
|
+
type?: string | undefined;
|
|
759
|
+
status?: string | undefined;
|
|
760
|
+
summary?: string | undefined;
|
|
760
761
|
version?: string | undefined;
|
|
761
762
|
category?: string | undefined;
|
|
762
763
|
sources?: string[] | undefined;
|
|
@@ -766,11 +767,10 @@ export declare const knowledgeSchemas: {
|
|
|
766
767
|
email?: string | undefined;
|
|
767
768
|
} | undefined;
|
|
768
769
|
audience?: string[] | undefined;
|
|
769
|
-
summary?: string | undefined;
|
|
770
770
|
} & {
|
|
771
771
|
[k: string]: unknown;
|
|
772
772
|
};
|
|
773
|
-
|
|
773
|
+
title: string;
|
|
774
774
|
}>;
|
|
775
775
|
KnowledgeSearchResultSchema: z.ZodObject<{
|
|
776
776
|
filename: z.ZodString;
|
|
@@ -846,12 +846,13 @@ export declare const knowledgeSchemas: {
|
|
|
846
846
|
score: z.ZodOptional<z.ZodNumber>;
|
|
847
847
|
}, "strip", z.ZodTypeAny, {
|
|
848
848
|
content: string;
|
|
849
|
-
|
|
849
|
+
filename: string;
|
|
850
850
|
metadata: {
|
|
851
851
|
updated: string;
|
|
852
|
-
status?: string | undefined;
|
|
853
|
-
type?: string | undefined;
|
|
854
852
|
tags?: string[] | undefined;
|
|
853
|
+
type?: string | undefined;
|
|
854
|
+
status?: string | undefined;
|
|
855
|
+
summary?: string | undefined;
|
|
855
856
|
version?: string | undefined;
|
|
856
857
|
category?: string | undefined;
|
|
857
858
|
sources?: string[] | undefined;
|
|
@@ -861,22 +862,22 @@ export declare const knowledgeSchemas: {
|
|
|
861
862
|
email?: string | undefined;
|
|
862
863
|
} | undefined;
|
|
863
864
|
audience?: string[] | undefined;
|
|
864
|
-
summary?: string | undefined;
|
|
865
865
|
} & {
|
|
866
866
|
[k: string]: unknown;
|
|
867
867
|
};
|
|
868
|
-
|
|
868
|
+
title: string;
|
|
869
869
|
snippet?: string | undefined;
|
|
870
870
|
matchedIn?: string[] | undefined;
|
|
871
871
|
score?: number | undefined;
|
|
872
872
|
}, {
|
|
873
873
|
content: string;
|
|
874
|
-
|
|
874
|
+
filename: string;
|
|
875
875
|
metadata: {
|
|
876
876
|
updated: string;
|
|
877
|
-
status?: string | undefined;
|
|
878
|
-
type?: string | undefined;
|
|
879
877
|
tags?: string[] | undefined;
|
|
878
|
+
type?: string | undefined;
|
|
879
|
+
status?: string | undefined;
|
|
880
|
+
summary?: string | undefined;
|
|
880
881
|
version?: string | undefined;
|
|
881
882
|
category?: string | undefined;
|
|
882
883
|
sources?: string[] | undefined;
|
|
@@ -886,11 +887,10 @@ export declare const knowledgeSchemas: {
|
|
|
886
887
|
email?: string | undefined;
|
|
887
888
|
} | undefined;
|
|
888
889
|
audience?: string[] | undefined;
|
|
889
|
-
summary?: string | undefined;
|
|
890
890
|
} & {
|
|
891
891
|
[k: string]: unknown;
|
|
892
892
|
};
|
|
893
|
-
|
|
893
|
+
title: string;
|
|
894
894
|
snippet?: string | undefined;
|
|
895
895
|
matchedIn?: string[] | undefined;
|
|
896
896
|
score?: number | undefined;
|
|
@@ -911,9 +911,10 @@ export declare const knowledgeSchemas: {
|
|
|
911
911
|
filename: z.ZodOptional<z.ZodString>;
|
|
912
912
|
summary: z.ZodOptional<z.ZodString>;
|
|
913
913
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
914
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
915
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
916
914
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
915
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
916
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
917
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
917
918
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
918
919
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
919
920
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -929,11 +930,11 @@ export declare const knowledgeSchemas: {
|
|
|
929
930
|
email?: string | undefined;
|
|
930
931
|
}>>>;
|
|
931
932
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
932
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
933
933
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
934
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
935
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
936
934
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
935
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
936
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
937
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
937
938
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
938
939
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
939
940
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -949,11 +950,11 @@ export declare const knowledgeSchemas: {
|
|
|
949
950
|
email?: string | undefined;
|
|
950
951
|
}>>>;
|
|
951
952
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
952
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
953
953
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
954
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
955
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
956
954
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
955
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
956
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
957
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
957
958
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
958
959
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
959
960
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -969,15 +970,17 @@ export declare const knowledgeSchemas: {
|
|
|
969
970
|
email?: string | undefined;
|
|
970
971
|
}>>>;
|
|
971
972
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
972
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
973
973
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
974
974
|
}, "strip", z.ZodTypeAny, {
|
|
975
975
|
content: string;
|
|
976
976
|
title: string;
|
|
977
|
+
summary?: string | undefined;
|
|
978
|
+
filename?: string | undefined;
|
|
977
979
|
metadata?: z.objectOutputType<{
|
|
978
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
979
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
980
980
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
981
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
982
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
983
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
981
984
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
982
985
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
983
986
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -993,17 +996,17 @@ export declare const knowledgeSchemas: {
|
|
|
993
996
|
email?: string | undefined;
|
|
994
997
|
}>>>;
|
|
995
998
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
996
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
997
999
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
998
|
-
summary?: string | undefined;
|
|
999
|
-
filename?: string | undefined;
|
|
1000
1000
|
}, {
|
|
1001
1001
|
content: string;
|
|
1002
1002
|
title: string;
|
|
1003
|
+
summary?: string | undefined;
|
|
1004
|
+
filename?: string | undefined;
|
|
1003
1005
|
metadata?: z.objectInputType<{
|
|
1004
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1005
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1006
1006
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1007
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1008
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1009
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1007
1010
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1008
1011
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1009
1012
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1019,10 +1022,7 @@ export declare const knowledgeSchemas: {
|
|
|
1019
1022
|
email?: string | undefined;
|
|
1020
1023
|
}>>>;
|
|
1021
1024
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1022
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1023
1025
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1024
|
-
summary?: string | undefined;
|
|
1025
|
-
filename?: string | undefined;
|
|
1026
1026
|
}>;
|
|
1027
1027
|
UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
1028
1028
|
filename: z.ZodString;
|
|
@@ -1030,9 +1030,10 @@ export declare const knowledgeSchemas: {
|
|
|
1030
1030
|
title: z.ZodOptional<z.ZodString>;
|
|
1031
1031
|
summary: z.ZodOptional<z.ZodString>;
|
|
1032
1032
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1033
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1034
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1035
1033
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1034
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1035
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1036
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1036
1037
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1037
1038
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1038
1039
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1048,11 +1049,11 @@ export declare const knowledgeSchemas: {
|
|
|
1048
1049
|
email?: string | undefined;
|
|
1049
1050
|
}>>>;
|
|
1050
1051
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1051
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1052
1052
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1053
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1054
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1055
1053
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1054
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1055
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1056
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1056
1057
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1057
1058
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1058
1059
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1068,11 +1069,11 @@ export declare const knowledgeSchemas: {
|
|
|
1068
1069
|
email?: string | undefined;
|
|
1069
1070
|
}>>>;
|
|
1070
1071
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1071
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1072
1072
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1073
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1074
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1075
1073
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1074
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1075
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1076
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1076
1077
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1077
1078
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1078
1079
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1088,16 +1089,16 @@ export declare const knowledgeSchemas: {
|
|
|
1088
1089
|
email?: string | undefined;
|
|
1089
1090
|
}>>>;
|
|
1090
1091
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1091
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1092
1092
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1093
1093
|
}, "strip", z.ZodTypeAny, {
|
|
1094
1094
|
content: string;
|
|
1095
1095
|
filename: string;
|
|
1096
|
-
|
|
1096
|
+
summary?: string | undefined;
|
|
1097
1097
|
metadata?: z.objectOutputType<{
|
|
1098
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1099
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1100
1098
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1099
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1100
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1101
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1101
1102
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1102
1103
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1103
1104
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1113,17 +1114,17 @@ export declare const knowledgeSchemas: {
|
|
|
1113
1114
|
email?: string | undefined;
|
|
1114
1115
|
}>>>;
|
|
1115
1116
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1116
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1117
1117
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1118
|
-
|
|
1118
|
+
title?: string | undefined;
|
|
1119
1119
|
}, {
|
|
1120
1120
|
content: string;
|
|
1121
1121
|
filename: string;
|
|
1122
|
-
|
|
1122
|
+
summary?: string | undefined;
|
|
1123
1123
|
metadata?: z.objectInputType<{
|
|
1124
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1125
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1126
1124
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1125
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1126
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1127
|
+
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1127
1128
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1128
1129
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1129
1130
|
sources: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1139,9 +1140,8 @@ export declare const knowledgeSchemas: {
|
|
|
1139
1140
|
email?: string | undefined;
|
|
1140
1141
|
}>>>;
|
|
1141
1142
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1142
|
-
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1143
1143
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1144
|
-
|
|
1144
|
+
title?: string | undefined;
|
|
1145
1145
|
}>;
|
|
1146
1146
|
};
|
|
1147
1147
|
export declare const knowledgeJsonSchemas: {
|
package/dist/mail.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export declare const MailMessageSchema: z.ZodObject<{
|
|
|
55
55
|
processing: z.ZodOptional<z.ZodBoolean>;
|
|
56
56
|
processingStartedAt: z.ZodOptional<z.ZodString>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
+
subject: string;
|
|
58
59
|
content: string;
|
|
59
60
|
id: string;
|
|
60
61
|
emailId: string;
|
|
@@ -62,7 +63,6 @@ export declare const MailMessageSchema: z.ZodObject<{
|
|
|
62
63
|
to: string[];
|
|
63
64
|
cc: string[];
|
|
64
65
|
bcc: string[];
|
|
65
|
-
subject: string;
|
|
66
66
|
messageId: string;
|
|
67
67
|
attachments: {
|
|
68
68
|
filename: string;
|
|
@@ -77,11 +77,11 @@ export declare const MailMessageSchema: z.ZodObject<{
|
|
|
77
77
|
processing?: boolean | undefined;
|
|
78
78
|
processingStartedAt?: string | undefined;
|
|
79
79
|
}, {
|
|
80
|
+
subject: string;
|
|
80
81
|
id: string;
|
|
81
82
|
emailId: string;
|
|
82
83
|
from: string;
|
|
83
84
|
to: string[];
|
|
84
|
-
subject: string;
|
|
85
85
|
messageId: string;
|
|
86
86
|
receivedAt: string;
|
|
87
87
|
folder: "inbox" | "read" | "sent";
|
|
@@ -129,13 +129,13 @@ export declare const SaveMailInputSchema: z.ZodObject<{
|
|
|
129
129
|
receivedAt: z.ZodOptional<z.ZodString>;
|
|
130
130
|
content: z.ZodDefault<z.ZodString>;
|
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
subject: string;
|
|
132
133
|
content: string;
|
|
133
134
|
emailId: string;
|
|
134
135
|
from: string;
|
|
135
136
|
to: string[];
|
|
136
137
|
cc: string[];
|
|
137
138
|
bcc: string[];
|
|
138
|
-
subject: string;
|
|
139
139
|
messageId: string;
|
|
140
140
|
attachments: {
|
|
141
141
|
filename: string;
|
|
@@ -149,10 +149,10 @@ export declare const SaveMailInputSchema: z.ZodObject<{
|
|
|
149
149
|
emailId: string;
|
|
150
150
|
from: string;
|
|
151
151
|
to: string[];
|
|
152
|
+
subject?: string | undefined;
|
|
152
153
|
content?: string | undefined;
|
|
153
154
|
cc?: string[] | undefined;
|
|
154
155
|
bcc?: string[] | undefined;
|
|
155
|
-
subject?: string | undefined;
|
|
156
156
|
messageId?: string | undefined;
|
|
157
157
|
attachments?: {
|
|
158
158
|
filename: string;
|
|
@@ -285,6 +285,7 @@ export declare const mailSchemas: {
|
|
|
285
285
|
processing: z.ZodOptional<z.ZodBoolean>;
|
|
286
286
|
processingStartedAt: z.ZodOptional<z.ZodString>;
|
|
287
287
|
}, "strip", z.ZodTypeAny, {
|
|
288
|
+
subject: string;
|
|
288
289
|
content: string;
|
|
289
290
|
id: string;
|
|
290
291
|
emailId: string;
|
|
@@ -292,7 +293,6 @@ export declare const mailSchemas: {
|
|
|
292
293
|
to: string[];
|
|
293
294
|
cc: string[];
|
|
294
295
|
bcc: string[];
|
|
295
|
-
subject: string;
|
|
296
296
|
messageId: string;
|
|
297
297
|
attachments: {
|
|
298
298
|
filename: string;
|
|
@@ -307,11 +307,11 @@ export declare const mailSchemas: {
|
|
|
307
307
|
processing?: boolean | undefined;
|
|
308
308
|
processingStartedAt?: string | undefined;
|
|
309
309
|
}, {
|
|
310
|
+
subject: string;
|
|
310
311
|
id: string;
|
|
311
312
|
emailId: string;
|
|
312
313
|
from: string;
|
|
313
314
|
to: string[];
|
|
314
|
-
subject: string;
|
|
315
315
|
messageId: string;
|
|
316
316
|
receivedAt: string;
|
|
317
317
|
folder: "inbox" | "read" | "sent";
|
|
@@ -359,13 +359,13 @@ export declare const mailSchemas: {
|
|
|
359
359
|
receivedAt: z.ZodOptional<z.ZodString>;
|
|
360
360
|
content: z.ZodDefault<z.ZodString>;
|
|
361
361
|
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
subject: string;
|
|
362
363
|
content: string;
|
|
363
364
|
emailId: string;
|
|
364
365
|
from: string;
|
|
365
366
|
to: string[];
|
|
366
367
|
cc: string[];
|
|
367
368
|
bcc: string[];
|
|
368
|
-
subject: string;
|
|
369
369
|
messageId: string;
|
|
370
370
|
attachments: {
|
|
371
371
|
filename: string;
|
|
@@ -379,10 +379,10 @@ export declare const mailSchemas: {
|
|
|
379
379
|
emailId: string;
|
|
380
380
|
from: string;
|
|
381
381
|
to: string[];
|
|
382
|
+
subject?: string | undefined;
|
|
382
383
|
content?: string | undefined;
|
|
383
384
|
cc?: string[] | undefined;
|
|
384
385
|
bcc?: string[] | undefined;
|
|
385
|
-
subject?: string | undefined;
|
|
386
386
|
messageId?: string | undefined;
|
|
387
387
|
attachments?: {
|
|
388
388
|
filename: string;
|
package/dist/tasks.d.ts
CHANGED
|
@@ -10,13 +10,13 @@ export declare const AuthorSchema: z.ZodObject<{
|
|
|
10
10
|
role: z.ZodOptional<z.ZodString>;
|
|
11
11
|
type: z.ZodEnum<["human", "agent"]>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
type: "
|
|
13
|
+
type: "agent" | "human";
|
|
14
14
|
name: string;
|
|
15
15
|
id: string;
|
|
16
16
|
role?: string | undefined;
|
|
17
17
|
email?: string | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
type: "
|
|
19
|
+
type: "agent" | "human";
|
|
20
20
|
name: string;
|
|
21
21
|
id: string;
|
|
22
22
|
role?: string | undefined;
|
|
@@ -31,19 +31,19 @@ export declare const TaskFiltersSchema: z.ZodObject<{
|
|
|
31
31
|
search: z.ZodOptional<z.ZodString>;
|
|
32
32
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
|
-
|
|
34
|
+
tags?: string[] | undefined;
|
|
35
35
|
search?: string | undefined;
|
|
36
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
37
|
+
limit?: number | undefined;
|
|
36
38
|
author?: string | undefined;
|
|
37
|
-
tags?: string[] | undefined;
|
|
38
39
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
39
|
-
limit?: number | undefined;
|
|
40
40
|
}, {
|
|
41
|
-
|
|
41
|
+
tags?: string[] | undefined;
|
|
42
42
|
search?: string | undefined;
|
|
43
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
44
|
+
limit?: number | undefined;
|
|
43
45
|
author?: string | undefined;
|
|
44
|
-
tags?: string[] | undefined;
|
|
45
46
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
46
|
-
limit?: number | undefined;
|
|
47
47
|
}>;
|
|
48
48
|
export type TaskFilters = z.infer<typeof TaskFiltersSchema>;
|
|
49
49
|
export declare const PlanStepInputSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -78,13 +78,13 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
78
78
|
role: z.ZodOptional<z.ZodString>;
|
|
79
79
|
type: z.ZodEnum<["human", "agent"]>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
type: "
|
|
81
|
+
type: "agent" | "human";
|
|
82
82
|
name: string;
|
|
83
83
|
id: string;
|
|
84
84
|
role?: string | undefined;
|
|
85
85
|
email?: string | undefined;
|
|
86
86
|
}, {
|
|
87
|
-
type: "
|
|
87
|
+
type: "agent" | "human";
|
|
88
88
|
name: string;
|
|
89
89
|
id: string;
|
|
90
90
|
role?: string | undefined;
|
|
@@ -128,10 +128,10 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
128
128
|
}>>;
|
|
129
129
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
+
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
131
132
|
content: string;
|
|
132
|
-
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
133
133
|
author?: {
|
|
134
|
-
type: "
|
|
134
|
+
type: "agent" | "human";
|
|
135
135
|
name: string;
|
|
136
136
|
id: string;
|
|
137
137
|
role?: string | undefined;
|
|
@@ -155,9 +155,9 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
155
155
|
productSpecRef?: string | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
content: string;
|
|
158
|
-
status?: "
|
|
158
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
159
159
|
author?: {
|
|
160
|
-
type: "
|
|
160
|
+
type: "agent" | "human";
|
|
161
161
|
name: string;
|
|
162
162
|
id: string;
|
|
163
163
|
role?: string | undefined;
|
|
@@ -180,10 +180,10 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
180
180
|
})[] | undefined;
|
|
181
181
|
productSpecRef?: string | undefined;
|
|
182
182
|
}>, {
|
|
183
|
+
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
183
184
|
content: string;
|
|
184
|
-
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
185
185
|
author?: {
|
|
186
|
-
type: "
|
|
186
|
+
type: "agent" | "human";
|
|
187
187
|
name: string;
|
|
188
188
|
id: string;
|
|
189
189
|
role?: string | undefined;
|
|
@@ -207,9 +207,9 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
207
207
|
productSpecRef?: string | undefined;
|
|
208
208
|
}, {
|
|
209
209
|
content: string;
|
|
210
|
-
status?: "
|
|
210
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
211
211
|
author?: {
|
|
212
|
-
type: "
|
|
212
|
+
type: "agent" | "human";
|
|
213
213
|
name: string;
|
|
214
214
|
id: string;
|
|
215
215
|
role?: string | undefined;
|
|
@@ -276,8 +276,8 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
276
276
|
}>>;
|
|
277
277
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
278
278
|
}, "strip", z.ZodTypeAny, {
|
|
279
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
279
280
|
content?: string | undefined;
|
|
280
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
281
281
|
metadata?: {
|
|
282
282
|
tags?: string[] | undefined;
|
|
283
283
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -295,8 +295,8 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
295
295
|
})[] | undefined;
|
|
296
296
|
productSpecRef?: string | undefined;
|
|
297
297
|
}, {
|
|
298
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
298
299
|
content?: string | undefined;
|
|
299
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
300
300
|
metadata?: {
|
|
301
301
|
tags?: string[] | undefined;
|
|
302
302
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -314,8 +314,8 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
314
314
|
})[] | undefined;
|
|
315
315
|
productSpecRef?: string | undefined;
|
|
316
316
|
}>, {
|
|
317
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
317
318
|
content?: string | undefined;
|
|
318
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
319
319
|
metadata?: {
|
|
320
320
|
tags?: string[] | undefined;
|
|
321
321
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -333,8 +333,8 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
333
333
|
})[] | undefined;
|
|
334
334
|
productSpecRef?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
336
337
|
content?: string | undefined;
|
|
337
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
338
338
|
metadata?: {
|
|
339
339
|
tags?: string[] | undefined;
|
|
340
340
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -415,15 +415,15 @@ export declare const UpdatePlanStepInputSchema: z.ZodObject<{
|
|
|
415
415
|
output: z.ZodOptional<z.ZodString>;
|
|
416
416
|
error: z.ZodOptional<z.ZodString>;
|
|
417
417
|
}, "strip", z.ZodTypeAny, {
|
|
418
|
-
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
419
418
|
error?: string | undefined;
|
|
419
|
+
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
420
420
|
description?: string | undefined;
|
|
421
421
|
command?: string | undefined;
|
|
422
422
|
expectedOutcome?: string | undefined;
|
|
423
423
|
output?: string | undefined;
|
|
424
424
|
}, {
|
|
425
|
-
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
426
425
|
error?: string | undefined;
|
|
426
|
+
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
427
427
|
description?: string | undefined;
|
|
428
428
|
command?: string | undefined;
|
|
429
429
|
expectedOutcome?: string | undefined;
|
|
@@ -453,13 +453,13 @@ export declare const taskSchemas: {
|
|
|
453
453
|
role: z.ZodOptional<z.ZodString>;
|
|
454
454
|
type: z.ZodEnum<["human", "agent"]>;
|
|
455
455
|
}, "strip", z.ZodTypeAny, {
|
|
456
|
-
type: "
|
|
456
|
+
type: "agent" | "human";
|
|
457
457
|
name: string;
|
|
458
458
|
id: string;
|
|
459
459
|
role?: string | undefined;
|
|
460
460
|
email?: string | undefined;
|
|
461
461
|
}, {
|
|
462
|
-
type: "
|
|
462
|
+
type: "agent" | "human";
|
|
463
463
|
name: string;
|
|
464
464
|
id: string;
|
|
465
465
|
role?: string | undefined;
|
|
@@ -473,19 +473,19 @@ export declare const taskSchemas: {
|
|
|
473
473
|
search: z.ZodOptional<z.ZodString>;
|
|
474
474
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
|
-
|
|
476
|
+
tags?: string[] | undefined;
|
|
477
477
|
search?: string | undefined;
|
|
478
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
479
|
+
limit?: number | undefined;
|
|
478
480
|
author?: string | undefined;
|
|
479
|
-
tags?: string[] | undefined;
|
|
480
481
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
481
|
-
limit?: number | undefined;
|
|
482
482
|
}, {
|
|
483
|
-
|
|
483
|
+
tags?: string[] | undefined;
|
|
484
484
|
search?: string | undefined;
|
|
485
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
486
|
+
limit?: number | undefined;
|
|
485
487
|
author?: string | undefined;
|
|
486
|
-
tags?: string[] | undefined;
|
|
487
488
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
488
|
-
limit?: number | undefined;
|
|
489
489
|
}>;
|
|
490
490
|
StepStatusSchema: z.ZodEnum<["pending", "active", "done", "failed", "skipped"]>;
|
|
491
491
|
PlanStepInputSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -519,13 +519,13 @@ export declare const taskSchemas: {
|
|
|
519
519
|
role: z.ZodOptional<z.ZodString>;
|
|
520
520
|
type: z.ZodEnum<["human", "agent"]>;
|
|
521
521
|
}, "strip", z.ZodTypeAny, {
|
|
522
|
-
type: "
|
|
522
|
+
type: "agent" | "human";
|
|
523
523
|
name: string;
|
|
524
524
|
id: string;
|
|
525
525
|
role?: string | undefined;
|
|
526
526
|
email?: string | undefined;
|
|
527
527
|
}, {
|
|
528
|
-
type: "
|
|
528
|
+
type: "agent" | "human";
|
|
529
529
|
name: string;
|
|
530
530
|
id: string;
|
|
531
531
|
role?: string | undefined;
|
|
@@ -569,10 +569,10 @@ export declare const taskSchemas: {
|
|
|
569
569
|
}>>;
|
|
570
570
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
571
571
|
}, "strip", z.ZodTypeAny, {
|
|
572
|
+
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
572
573
|
content: string;
|
|
573
|
-
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
574
574
|
author?: {
|
|
575
|
-
type: "
|
|
575
|
+
type: "agent" | "human";
|
|
576
576
|
name: string;
|
|
577
577
|
id: string;
|
|
578
578
|
role?: string | undefined;
|
|
@@ -596,9 +596,9 @@ export declare const taskSchemas: {
|
|
|
596
596
|
productSpecRef?: string | undefined;
|
|
597
597
|
}, {
|
|
598
598
|
content: string;
|
|
599
|
-
status?: "
|
|
599
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
600
600
|
author?: {
|
|
601
|
-
type: "
|
|
601
|
+
type: "agent" | "human";
|
|
602
602
|
name: string;
|
|
603
603
|
id: string;
|
|
604
604
|
role?: string | undefined;
|
|
@@ -621,10 +621,10 @@ export declare const taskSchemas: {
|
|
|
621
621
|
})[] | undefined;
|
|
622
622
|
productSpecRef?: string | undefined;
|
|
623
623
|
}>, {
|
|
624
|
+
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
624
625
|
content: string;
|
|
625
|
-
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
626
626
|
author?: {
|
|
627
|
-
type: "
|
|
627
|
+
type: "agent" | "human";
|
|
628
628
|
name: string;
|
|
629
629
|
id: string;
|
|
630
630
|
role?: string | undefined;
|
|
@@ -648,9 +648,9 @@ export declare const taskSchemas: {
|
|
|
648
648
|
productSpecRef?: string | undefined;
|
|
649
649
|
}, {
|
|
650
650
|
content: string;
|
|
651
|
-
status?: "
|
|
651
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
652
652
|
author?: {
|
|
653
|
-
type: "
|
|
653
|
+
type: "agent" | "human";
|
|
654
654
|
name: string;
|
|
655
655
|
id: string;
|
|
656
656
|
role?: string | undefined;
|
|
@@ -716,8 +716,8 @@ export declare const taskSchemas: {
|
|
|
716
716
|
}>>;
|
|
717
717
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
718
718
|
}, "strip", z.ZodTypeAny, {
|
|
719
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
719
720
|
content?: string | undefined;
|
|
720
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
721
721
|
metadata?: {
|
|
722
722
|
tags?: string[] | undefined;
|
|
723
723
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -735,8 +735,8 @@ export declare const taskSchemas: {
|
|
|
735
735
|
})[] | undefined;
|
|
736
736
|
productSpecRef?: string | undefined;
|
|
737
737
|
}, {
|
|
738
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
738
739
|
content?: string | undefined;
|
|
739
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
740
740
|
metadata?: {
|
|
741
741
|
tags?: string[] | undefined;
|
|
742
742
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -754,8 +754,8 @@ export declare const taskSchemas: {
|
|
|
754
754
|
})[] | undefined;
|
|
755
755
|
productSpecRef?: string | undefined;
|
|
756
756
|
}>, {
|
|
757
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
757
758
|
content?: string | undefined;
|
|
758
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
759
759
|
metadata?: {
|
|
760
760
|
tags?: string[] | undefined;
|
|
761
761
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -773,8 +773,8 @@ export declare const taskSchemas: {
|
|
|
773
773
|
})[] | undefined;
|
|
774
774
|
productSpecRef?: string | undefined;
|
|
775
775
|
}, {
|
|
776
|
+
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
776
777
|
content?: string | undefined;
|
|
777
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
778
778
|
metadata?: {
|
|
779
779
|
tags?: string[] | undefined;
|
|
780
780
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -816,15 +816,15 @@ export declare const taskSchemas: {
|
|
|
816
816
|
output: z.ZodOptional<z.ZodString>;
|
|
817
817
|
error: z.ZodOptional<z.ZodString>;
|
|
818
818
|
}, "strip", z.ZodTypeAny, {
|
|
819
|
-
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
820
819
|
error?: string | undefined;
|
|
820
|
+
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
821
821
|
description?: string | undefined;
|
|
822
822
|
command?: string | undefined;
|
|
823
823
|
expectedOutcome?: string | undefined;
|
|
824
824
|
output?: string | undefined;
|
|
825
825
|
}, {
|
|
826
|
-
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
827
826
|
error?: string | undefined;
|
|
827
|
+
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
828
828
|
description?: string | undefined;
|
|
829
829
|
command?: string | undefined;
|
|
830
830
|
expectedOutcome?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovelybunch/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.77-alpha.1",
|
|
4
4
|
"description": "Core Coconut functionality",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,25 +30,14 @@
|
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsc",
|
|
35
|
-
"postbuild": "node ./scripts/copy-schema.mjs",
|
|
36
|
-
"dev": "tsc --watch",
|
|
37
|
-
"clean": "rm -rf dist tsconfig.tsbuildinfo coverage",
|
|
38
|
-
"type-check": "tsc --noEmit",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"test:coverage": "vitest run --coverage",
|
|
41
|
-
"test:watch": "vitest watch",
|
|
42
|
-
"test:ui": "vitest --ui"
|
|
43
|
-
},
|
|
44
33
|
"dependencies": {
|
|
45
|
-
"@lovelybunch/types": "^1.0.76",
|
|
46
34
|
"@slack/web-api": "^7.13.0",
|
|
47
35
|
"fuse.js": "^7.0.0",
|
|
48
36
|
"gray-matter": "^4.0.3",
|
|
49
37
|
"nanoid": "^5.0.6",
|
|
50
38
|
"zod": "^3.23.0",
|
|
51
|
-
"zod-to-json-schema": "^3.23.0"
|
|
39
|
+
"zod-to-json-schema": "^3.23.0",
|
|
40
|
+
"@lovelybunch/types": "1.0.77-alpha.1"
|
|
52
41
|
},
|
|
53
42
|
"devDependencies": {
|
|
54
43
|
"@types/node": "^20.11.0",
|
|
@@ -61,5 +50,16 @@
|
|
|
61
50
|
"coconut"
|
|
62
51
|
],
|
|
63
52
|
"author": "",
|
|
64
|
-
"license": "ISC"
|
|
65
|
-
|
|
53
|
+
"license": "ISC",
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsc -b",
|
|
56
|
+
"postbuild": "node ./scripts/copy-schema.mjs",
|
|
57
|
+
"dev": "tsc --watch",
|
|
58
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo coverage",
|
|
59
|
+
"type-check": "tsc -b",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"test:coverage": "vitest run --coverage",
|
|
62
|
+
"test:watch": "vitest watch",
|
|
63
|
+
"test:ui": "vitest --ui"
|
|
64
|
+
}
|
|
65
|
+
}
|