@lovelybunch/core 1.0.76 → 1.0.77-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/context.d.ts +8 -8
- package/dist/knowledge.d.ts +116 -116
- package/dist/tasks.d.ts +40 -40
- 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/tasks.d.ts
CHANGED
|
@@ -13,14 +13,14 @@ export declare const AuthorSchema: z.ZodObject<{
|
|
|
13
13
|
type: "human" | "agent";
|
|
14
14
|
name: string;
|
|
15
15
|
id: string;
|
|
16
|
-
role?: string | undefined;
|
|
17
16
|
email?: string | undefined;
|
|
17
|
+
role?: string | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
type: "human" | "agent";
|
|
20
20
|
name: string;
|
|
21
21
|
id: string;
|
|
22
|
-
role?: string | undefined;
|
|
23
22
|
email?: string | undefined;
|
|
23
|
+
role?: string | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
export type AuthorInput = z.infer<typeof AuthorSchema>;
|
|
26
26
|
export declare const TaskFiltersSchema: z.ZodObject<{
|
|
@@ -31,15 +31,15 @@ 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
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
35
34
|
search?: string | undefined;
|
|
35
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
36
36
|
author?: string | undefined;
|
|
37
37
|
tags?: string[] | undefined;
|
|
38
38
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
39
39
|
limit?: number | undefined;
|
|
40
40
|
}, {
|
|
41
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
42
41
|
search?: string | undefined;
|
|
42
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
43
43
|
author?: string | undefined;
|
|
44
44
|
tags?: string[] | undefined;
|
|
45
45
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -81,14 +81,14 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
81
81
|
type: "human" | "agent";
|
|
82
82
|
name: string;
|
|
83
83
|
id: string;
|
|
84
|
-
role?: string | undefined;
|
|
85
84
|
email?: string | undefined;
|
|
85
|
+
role?: string | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
type: "human" | "agent";
|
|
88
88
|
name: string;
|
|
89
89
|
id: string;
|
|
90
|
-
role?: string | undefined;
|
|
91
90
|
email?: string | undefined;
|
|
91
|
+
role?: string | undefined;
|
|
92
92
|
}>>;
|
|
93
93
|
planSteps: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
94
94
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -128,14 +128,14 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
128
128
|
}>>;
|
|
129
129
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
-
content: string;
|
|
132
131
|
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
132
|
+
content: string;
|
|
133
133
|
author?: {
|
|
134
134
|
type: "human" | "agent";
|
|
135
135
|
name: string;
|
|
136
136
|
id: string;
|
|
137
|
-
role?: string | undefined;
|
|
138
137
|
email?: string | undefined;
|
|
138
|
+
role?: string | undefined;
|
|
139
139
|
} | undefined;
|
|
140
140
|
metadata?: {
|
|
141
141
|
tags?: string[] | undefined;
|
|
@@ -160,8 +160,8 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
160
160
|
type: "human" | "agent";
|
|
161
161
|
name: string;
|
|
162
162
|
id: string;
|
|
163
|
-
role?: string | undefined;
|
|
164
163
|
email?: string | undefined;
|
|
164
|
+
role?: string | undefined;
|
|
165
165
|
} | undefined;
|
|
166
166
|
metadata?: {
|
|
167
167
|
tags?: string[] | undefined;
|
|
@@ -180,14 +180,14 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
180
180
|
})[] | undefined;
|
|
181
181
|
productSpecRef?: string | undefined;
|
|
182
182
|
}>, {
|
|
183
|
-
content: string;
|
|
184
183
|
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
184
|
+
content: string;
|
|
185
185
|
author?: {
|
|
186
186
|
type: "human" | "agent";
|
|
187
187
|
name: string;
|
|
188
188
|
id: string;
|
|
189
|
-
role?: string | undefined;
|
|
190
189
|
email?: string | undefined;
|
|
190
|
+
role?: string | undefined;
|
|
191
191
|
} | undefined;
|
|
192
192
|
metadata?: {
|
|
193
193
|
tags?: string[] | undefined;
|
|
@@ -212,8 +212,8 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
212
212
|
type: "human" | "agent";
|
|
213
213
|
name: string;
|
|
214
214
|
id: string;
|
|
215
|
-
role?: string | undefined;
|
|
216
215
|
email?: string | undefined;
|
|
216
|
+
role?: string | undefined;
|
|
217
217
|
} | undefined;
|
|
218
218
|
metadata?: {
|
|
219
219
|
tags?: string[] | undefined;
|
|
@@ -276,7 +276,6 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
276
276
|
}>>;
|
|
277
277
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
278
278
|
}, "strip", z.ZodTypeAny, {
|
|
279
|
-
content?: string | undefined;
|
|
280
279
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
281
280
|
metadata?: {
|
|
282
281
|
tags?: string[] | undefined;
|
|
@@ -284,6 +283,7 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
284
283
|
readiness?: number | undefined;
|
|
285
284
|
reviewers?: string[] | undefined;
|
|
286
285
|
} | undefined;
|
|
286
|
+
content?: string | undefined;
|
|
287
287
|
title?: string | undefined;
|
|
288
288
|
intent?: string | undefined;
|
|
289
289
|
planSteps?: (string | {
|
|
@@ -295,7 +295,6 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
295
295
|
})[] | undefined;
|
|
296
296
|
productSpecRef?: string | undefined;
|
|
297
297
|
}, {
|
|
298
|
-
content?: string | undefined;
|
|
299
298
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
300
299
|
metadata?: {
|
|
301
300
|
tags?: string[] | undefined;
|
|
@@ -303,6 +302,7 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
303
302
|
readiness?: number | undefined;
|
|
304
303
|
reviewers?: string[] | undefined;
|
|
305
304
|
} | undefined;
|
|
305
|
+
content?: string | undefined;
|
|
306
306
|
title?: string | undefined;
|
|
307
307
|
intent?: string | undefined;
|
|
308
308
|
planSteps?: (string | {
|
|
@@ -314,7 +314,6 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
314
314
|
})[] | undefined;
|
|
315
315
|
productSpecRef?: string | undefined;
|
|
316
316
|
}>, {
|
|
317
|
-
content?: string | undefined;
|
|
318
317
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
319
318
|
metadata?: {
|
|
320
319
|
tags?: string[] | undefined;
|
|
@@ -322,6 +321,7 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
322
321
|
readiness?: number | undefined;
|
|
323
322
|
reviewers?: string[] | undefined;
|
|
324
323
|
} | undefined;
|
|
324
|
+
content?: string | undefined;
|
|
325
325
|
title?: string | undefined;
|
|
326
326
|
intent?: string | undefined;
|
|
327
327
|
planSteps?: (string | {
|
|
@@ -333,7 +333,6 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
333
333
|
})[] | undefined;
|
|
334
334
|
productSpecRef?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
-
content?: string | undefined;
|
|
337
336
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
338
337
|
metadata?: {
|
|
339
338
|
tags?: string[] | undefined;
|
|
@@ -341,6 +340,7 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
341
340
|
readiness?: number | undefined;
|
|
342
341
|
reviewers?: string[] | undefined;
|
|
343
342
|
} | undefined;
|
|
343
|
+
content?: string | undefined;
|
|
344
344
|
title?: string | undefined;
|
|
345
345
|
intent?: string | undefined;
|
|
346
346
|
planSteps?: (string | {
|
|
@@ -396,11 +396,11 @@ export declare const AddCommentInputSchema: z.ZodObject<{
|
|
|
396
396
|
author: z.ZodString;
|
|
397
397
|
content: z.ZodString;
|
|
398
398
|
}, "strip", z.ZodTypeAny, {
|
|
399
|
-
content: string;
|
|
400
399
|
author: string;
|
|
401
|
-
}, {
|
|
402
400
|
content: string;
|
|
401
|
+
}, {
|
|
403
402
|
author: string;
|
|
403
|
+
content: string;
|
|
404
404
|
}>;
|
|
405
405
|
export type AddCommentInput = z.infer<typeof AddCommentInputSchema>;
|
|
406
406
|
/**
|
|
@@ -416,18 +416,18 @@ export declare const UpdatePlanStepInputSchema: z.ZodObject<{
|
|
|
416
416
|
error: z.ZodOptional<z.ZodString>;
|
|
417
417
|
}, "strip", z.ZodTypeAny, {
|
|
418
418
|
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
419
|
-
error?: string | undefined;
|
|
420
419
|
description?: string | undefined;
|
|
421
420
|
command?: string | undefined;
|
|
422
421
|
expectedOutcome?: string | undefined;
|
|
423
422
|
output?: string | undefined;
|
|
423
|
+
error?: string | undefined;
|
|
424
424
|
}, {
|
|
425
425
|
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
426
|
-
error?: string | undefined;
|
|
427
426
|
description?: string | undefined;
|
|
428
427
|
command?: string | undefined;
|
|
429
428
|
expectedOutcome?: string | undefined;
|
|
430
429
|
output?: string | undefined;
|
|
430
|
+
error?: string | undefined;
|
|
431
431
|
}>;
|
|
432
432
|
export type UpdatePlanStepInput = z.infer<typeof UpdatePlanStepInputSchema>;
|
|
433
433
|
/**
|
|
@@ -456,14 +456,14 @@ export declare const taskSchemas: {
|
|
|
456
456
|
type: "human" | "agent";
|
|
457
457
|
name: string;
|
|
458
458
|
id: string;
|
|
459
|
-
role?: string | undefined;
|
|
460
459
|
email?: string | undefined;
|
|
460
|
+
role?: string | undefined;
|
|
461
461
|
}, {
|
|
462
462
|
type: "human" | "agent";
|
|
463
463
|
name: string;
|
|
464
464
|
id: string;
|
|
465
|
-
role?: string | undefined;
|
|
466
465
|
email?: string | undefined;
|
|
466
|
+
role?: string | undefined;
|
|
467
467
|
}>;
|
|
468
468
|
TaskFiltersSchema: z.ZodObject<{
|
|
469
469
|
status: z.ZodOptional<z.ZodEnum<["draft", "backlog", "ready", "queued", "active", "blocked", "review", "revision", "done", "canceled", "duplicate"]>>;
|
|
@@ -473,15 +473,15 @@ export declare const taskSchemas: {
|
|
|
473
473
|
search: z.ZodOptional<z.ZodString>;
|
|
474
474
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
477
476
|
search?: string | undefined;
|
|
477
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
478
478
|
author?: string | undefined;
|
|
479
479
|
tags?: string[] | undefined;
|
|
480
480
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
481
481
|
limit?: number | undefined;
|
|
482
482
|
}, {
|
|
483
|
-
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
484
483
|
search?: string | undefined;
|
|
484
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
485
485
|
author?: string | undefined;
|
|
486
486
|
tags?: string[] | undefined;
|
|
487
487
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
@@ -522,14 +522,14 @@ export declare const taskSchemas: {
|
|
|
522
522
|
type: "human" | "agent";
|
|
523
523
|
name: string;
|
|
524
524
|
id: string;
|
|
525
|
-
role?: string | undefined;
|
|
526
525
|
email?: string | undefined;
|
|
526
|
+
role?: string | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
type: "human" | "agent";
|
|
529
529
|
name: string;
|
|
530
530
|
id: string;
|
|
531
|
-
role?: string | undefined;
|
|
532
531
|
email?: string | undefined;
|
|
532
|
+
role?: string | undefined;
|
|
533
533
|
}>>;
|
|
534
534
|
planSteps: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
535
535
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -569,14 +569,14 @@ export declare const taskSchemas: {
|
|
|
569
569
|
}>>;
|
|
570
570
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
571
571
|
}, "strip", z.ZodTypeAny, {
|
|
572
|
-
content: string;
|
|
573
572
|
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
573
|
+
content: string;
|
|
574
574
|
author?: {
|
|
575
575
|
type: "human" | "agent";
|
|
576
576
|
name: string;
|
|
577
577
|
id: string;
|
|
578
|
-
role?: string | undefined;
|
|
579
578
|
email?: string | undefined;
|
|
579
|
+
role?: string | undefined;
|
|
580
580
|
} | undefined;
|
|
581
581
|
metadata?: {
|
|
582
582
|
tags?: string[] | undefined;
|
|
@@ -601,8 +601,8 @@ export declare const taskSchemas: {
|
|
|
601
601
|
type: "human" | "agent";
|
|
602
602
|
name: string;
|
|
603
603
|
id: string;
|
|
604
|
-
role?: string | undefined;
|
|
605
604
|
email?: string | undefined;
|
|
605
|
+
role?: string | undefined;
|
|
606
606
|
} | undefined;
|
|
607
607
|
metadata?: {
|
|
608
608
|
tags?: string[] | undefined;
|
|
@@ -621,14 +621,14 @@ export declare const taskSchemas: {
|
|
|
621
621
|
})[] | undefined;
|
|
622
622
|
productSpecRef?: string | undefined;
|
|
623
623
|
}>, {
|
|
624
|
-
content: string;
|
|
625
624
|
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision";
|
|
625
|
+
content: string;
|
|
626
626
|
author?: {
|
|
627
627
|
type: "human" | "agent";
|
|
628
628
|
name: string;
|
|
629
629
|
id: string;
|
|
630
|
-
role?: string | undefined;
|
|
631
630
|
email?: string | undefined;
|
|
631
|
+
role?: string | undefined;
|
|
632
632
|
} | undefined;
|
|
633
633
|
metadata?: {
|
|
634
634
|
tags?: string[] | undefined;
|
|
@@ -653,8 +653,8 @@ export declare const taskSchemas: {
|
|
|
653
653
|
type: "human" | "agent";
|
|
654
654
|
name: string;
|
|
655
655
|
id: string;
|
|
656
|
-
role?: string | undefined;
|
|
657
656
|
email?: string | undefined;
|
|
657
|
+
role?: string | undefined;
|
|
658
658
|
} | undefined;
|
|
659
659
|
metadata?: {
|
|
660
660
|
tags?: string[] | undefined;
|
|
@@ -716,7 +716,6 @@ export declare const taskSchemas: {
|
|
|
716
716
|
}>>;
|
|
717
717
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
718
718
|
}, "strip", z.ZodTypeAny, {
|
|
719
|
-
content?: string | undefined;
|
|
720
719
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
721
720
|
metadata?: {
|
|
722
721
|
tags?: string[] | undefined;
|
|
@@ -724,6 +723,7 @@ export declare const taskSchemas: {
|
|
|
724
723
|
readiness?: number | undefined;
|
|
725
724
|
reviewers?: string[] | undefined;
|
|
726
725
|
} | undefined;
|
|
726
|
+
content?: string | undefined;
|
|
727
727
|
title?: string | undefined;
|
|
728
728
|
intent?: string | undefined;
|
|
729
729
|
planSteps?: (string | {
|
|
@@ -735,7 +735,6 @@ export declare const taskSchemas: {
|
|
|
735
735
|
})[] | undefined;
|
|
736
736
|
productSpecRef?: string | undefined;
|
|
737
737
|
}, {
|
|
738
|
-
content?: string | undefined;
|
|
739
738
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
740
739
|
metadata?: {
|
|
741
740
|
tags?: string[] | undefined;
|
|
@@ -743,6 +742,7 @@ export declare const taskSchemas: {
|
|
|
743
742
|
readiness?: number | undefined;
|
|
744
743
|
reviewers?: string[] | undefined;
|
|
745
744
|
} | undefined;
|
|
745
|
+
content?: string | undefined;
|
|
746
746
|
title?: string | undefined;
|
|
747
747
|
intent?: string | undefined;
|
|
748
748
|
planSteps?: (string | {
|
|
@@ -754,7 +754,6 @@ export declare const taskSchemas: {
|
|
|
754
754
|
})[] | undefined;
|
|
755
755
|
productSpecRef?: string | undefined;
|
|
756
756
|
}>, {
|
|
757
|
-
content?: string | undefined;
|
|
758
757
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
759
758
|
metadata?: {
|
|
760
759
|
tags?: string[] | undefined;
|
|
@@ -762,6 +761,7 @@ export declare const taskSchemas: {
|
|
|
762
761
|
readiness?: number | undefined;
|
|
763
762
|
reviewers?: string[] | undefined;
|
|
764
763
|
} | undefined;
|
|
764
|
+
content?: string | undefined;
|
|
765
765
|
title?: string | undefined;
|
|
766
766
|
intent?: string | undefined;
|
|
767
767
|
planSteps?: (string | {
|
|
@@ -773,7 +773,6 @@ export declare const taskSchemas: {
|
|
|
773
773
|
})[] | undefined;
|
|
774
774
|
productSpecRef?: string | undefined;
|
|
775
775
|
}, {
|
|
776
|
-
content?: string | undefined;
|
|
777
776
|
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | "revision" | undefined;
|
|
778
777
|
metadata?: {
|
|
779
778
|
tags?: string[] | undefined;
|
|
@@ -781,6 +780,7 @@ export declare const taskSchemas: {
|
|
|
781
780
|
readiness?: number | undefined;
|
|
782
781
|
reviewers?: string[] | undefined;
|
|
783
782
|
} | undefined;
|
|
783
|
+
content?: string | undefined;
|
|
784
784
|
title?: string | undefined;
|
|
785
785
|
intent?: string | undefined;
|
|
786
786
|
planSteps?: (string | {
|
|
@@ -817,28 +817,28 @@ export declare const taskSchemas: {
|
|
|
817
817
|
error: z.ZodOptional<z.ZodString>;
|
|
818
818
|
}, "strip", z.ZodTypeAny, {
|
|
819
819
|
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
820
|
-
error?: string | undefined;
|
|
821
820
|
description?: string | undefined;
|
|
822
821
|
command?: string | undefined;
|
|
823
822
|
expectedOutcome?: string | undefined;
|
|
824
823
|
output?: string | undefined;
|
|
824
|
+
error?: string | undefined;
|
|
825
825
|
}, {
|
|
826
826
|
status?: "active" | "done" | "pending" | "failed" | "skipped" | undefined;
|
|
827
|
-
error?: string | undefined;
|
|
828
827
|
description?: string | undefined;
|
|
829
828
|
command?: string | undefined;
|
|
830
829
|
expectedOutcome?: string | undefined;
|
|
831
830
|
output?: string | undefined;
|
|
831
|
+
error?: string | undefined;
|
|
832
832
|
}>;
|
|
833
833
|
AddCommentInputSchema: z.ZodObject<{
|
|
834
834
|
author: z.ZodString;
|
|
835
835
|
content: z.ZodString;
|
|
836
836
|
}, "strip", z.ZodTypeAny, {
|
|
837
|
-
content: string;
|
|
838
837
|
author: string;
|
|
839
|
-
}, {
|
|
840
838
|
content: string;
|
|
839
|
+
}, {
|
|
841
840
|
author: string;
|
|
841
|
+
content: string;
|
|
842
842
|
}>;
|
|
843
843
|
};
|
|
844
844
|
export declare const taskJsonSchemas: {
|
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.0",
|
|
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.0"
|
|
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
|
+
}
|