@lovelybunch/core 1.0.75-alpha.11 → 1.0.75-alpha.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-instructions.d.ts +17 -0
- package/dist/agent-instructions.d.ts.map +1 -0
- package/dist/agent-instructions.js +160 -0
- package/dist/agent-instructions.js.map +1 -0
- package/dist/change-proposal.d.ts +3 -0
- package/dist/change-proposal.d.ts.map +1 -1
- package/dist/change-proposal.js +5 -3
- package/dist/change-proposal.js.map +1 -1
- package/dist/events.d.ts +4 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/knowledge.d.ts +52 -52
- package/dist/logging/index.d.ts +1 -1
- package/dist/logging/index.d.ts.map +1 -1
- package/dist/logging/index.js +1 -1
- package/dist/logging/index.js.map +1 -1
- package/dist/logging/kinds.d.ts +47 -1
- package/dist/logging/kinds.d.ts.map +1 -1
- package/dist/logging/kinds.js +41 -0
- package/dist/logging/kinds.js.map +1 -1
- package/dist/mail.d.ts +424 -0
- package/dist/mail.d.ts.map +1 -0
- package/dist/mail.js +407 -0
- package/dist/mail.js.map +1 -0
- package/dist/markdown-storage.d.ts.map +1 -1
- package/dist/markdown-storage.js +5 -0
- package/dist/markdown-storage.js.map +1 -1
- package/dist/proposals.d.ts +765 -0
- package/dist/proposals.d.ts.map +1 -0
- package/dist/proposals.js +483 -0
- package/dist/proposals.js.map +1 -0
- package/dist/storage.d.ts.map +1 -1
- package/dist/storage.js +3 -0
- package/dist/storage.js.map +1 -1
- package/dist/system-prompts/mail-processor.md +36 -0
- package/dist/tasks.d.ts +104 -98
- package/dist/tasks.d.ts.map +1 -1
- package/dist/tasks.js +1 -0
- package/dist/tasks.js.map +1 -1
- package/package.json +2 -2
package/dist/knowledge.d.ts
CHANGED
|
@@ -145,12 +145,12 @@ 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
|
+
tags?: string[] | undefined;
|
|
151
152
|
status?: string | undefined;
|
|
152
153
|
type?: string | undefined;
|
|
153
|
-
tags?: string[] | undefined;
|
|
154
154
|
summary?: string | undefined;
|
|
155
155
|
version?: string | undefined;
|
|
156
156
|
category?: string | undefined;
|
|
@@ -164,15 +164,15 @@ export declare const KnowledgeDocumentSchema: z.ZodObject<{
|
|
|
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
|
+
tags?: string[] | undefined;
|
|
173
174
|
status?: string | undefined;
|
|
174
175
|
type?: string | undefined;
|
|
175
|
-
tags?: string[] | undefined;
|
|
176
176
|
summary?: string | undefined;
|
|
177
177
|
version?: string | undefined;
|
|
178
178
|
category?: string | undefined;
|
|
@@ -186,7 +186,7 @@ export declare const KnowledgeDocumentSchema: z.ZodObject<{
|
|
|
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,12 @@ 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
|
+
tags?: string[] | undefined;
|
|
269
270
|
status?: string | undefined;
|
|
270
271
|
type?: string | undefined;
|
|
271
|
-
tags?: string[] | undefined;
|
|
272
272
|
summary?: string | undefined;
|
|
273
273
|
version?: string | undefined;
|
|
274
274
|
category?: string | undefined;
|
|
@@ -282,18 +282,18 @@ export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
|
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
|
+
tags?: string[] | undefined;
|
|
294
295
|
status?: string | undefined;
|
|
295
296
|
type?: string | undefined;
|
|
296
|
-
tags?: string[] | undefined;
|
|
297
297
|
summary?: string | undefined;
|
|
298
298
|
version?: string | undefined;
|
|
299
299
|
category?: string | undefined;
|
|
@@ -307,7 +307,7 @@ export declare const KnowledgeSearchResultSchema: z.ZodObject<{
|
|
|
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;
|
|
@@ -327,9 +327,9 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
327
327
|
filename: z.ZodOptional<z.ZodString>;
|
|
328
328
|
summary: z.ZodOptional<z.ZodString>;
|
|
329
329
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
330
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
330
331
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
331
332
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
332
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
333
333
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
334
334
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
335
335
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -347,9 +347,9 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
347
347
|
}>>>;
|
|
348
348
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
349
349
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
350
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
350
351
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
351
352
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
352
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
353
353
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
354
354
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355
355
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -367,9 +367,9 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
367
367
|
}>>>;
|
|
368
368
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
369
369
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
370
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
370
371
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
371
372
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
372
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
373
373
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
374
374
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
375
375
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -391,10 +391,11 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
391
391
|
content: string;
|
|
392
392
|
title: string;
|
|
393
393
|
summary?: string | undefined;
|
|
394
|
+
filename?: string | undefined;
|
|
394
395
|
metadata?: z.objectOutputType<{
|
|
396
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
395
397
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
396
398
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
397
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
398
399
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
399
400
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
400
401
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -412,15 +413,15 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
412
413
|
}>>>;
|
|
413
414
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
414
415
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
415
|
-
filename?: string | undefined;
|
|
416
416
|
}, {
|
|
417
417
|
content: string;
|
|
418
418
|
title: string;
|
|
419
419
|
summary?: string | undefined;
|
|
420
|
+
filename?: string | undefined;
|
|
420
421
|
metadata?: z.objectInputType<{
|
|
422
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
421
423
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
422
424
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
423
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
424
425
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
425
426
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
426
427
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -438,7 +439,6 @@ export declare const CreateKnowledgeInputSchema: z.ZodObject<{
|
|
|
438
439
|
}>>>;
|
|
439
440
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
440
441
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
441
|
-
filename?: string | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
export type CreateKnowledgeInput = z.infer<typeof CreateKnowledgeInputSchema>;
|
|
444
444
|
export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
@@ -447,9 +447,9 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
447
447
|
title: z.ZodOptional<z.ZodString>;
|
|
448
448
|
summary: z.ZodOptional<z.ZodString>;
|
|
449
449
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
450
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
450
451
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
451
452
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
452
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
453
453
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
454
454
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
455
455
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -467,9 +467,9 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
467
467
|
}>>>;
|
|
468
468
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
469
469
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
470
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
470
471
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
471
472
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
472
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
473
473
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
474
474
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
475
475
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -487,9 +487,9 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
487
487
|
}>>>;
|
|
488
488
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
489
489
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
490
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
490
491
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
491
492
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
492
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
493
493
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
494
494
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
495
495
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -511,11 +511,10 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
511
511
|
content: string;
|
|
512
512
|
filename: string;
|
|
513
513
|
summary?: string | undefined;
|
|
514
|
-
title?: string | undefined;
|
|
515
514
|
metadata?: z.objectOutputType<{
|
|
515
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
516
516
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
517
517
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
518
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
519
518
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
520
519
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
521
520
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -533,15 +532,15 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
533
532
|
}>>>;
|
|
534
533
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
535
534
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
535
|
+
title?: string | undefined;
|
|
536
536
|
}, {
|
|
537
537
|
content: string;
|
|
538
538
|
filename: string;
|
|
539
539
|
summary?: string | undefined;
|
|
540
|
-
title?: string | undefined;
|
|
541
540
|
metadata?: z.objectInputType<{
|
|
541
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
542
542
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
543
543
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
544
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
545
544
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
546
545
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
547
546
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -559,6 +558,7 @@ export declare const UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
|
559
558
|
}>>>;
|
|
560
559
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
561
560
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
561
|
+
title?: string | undefined;
|
|
562
562
|
}>;
|
|
563
563
|
export type UpdateKnowledgeInput = z.infer<typeof UpdateKnowledgeInputSchema>;
|
|
564
564
|
/**
|
|
@@ -726,12 +726,12 @@ export declare const knowledgeSchemas: {
|
|
|
726
726
|
content: z.ZodString;
|
|
727
727
|
}, "strip", z.ZodTypeAny, {
|
|
728
728
|
content: string;
|
|
729
|
-
|
|
729
|
+
filename: string;
|
|
730
730
|
metadata: {
|
|
731
731
|
updated: string;
|
|
732
|
+
tags?: string[] | undefined;
|
|
732
733
|
status?: string | undefined;
|
|
733
734
|
type?: string | undefined;
|
|
734
|
-
tags?: string[] | undefined;
|
|
735
735
|
summary?: string | undefined;
|
|
736
736
|
version?: string | undefined;
|
|
737
737
|
category?: string | undefined;
|
|
@@ -745,15 +745,15 @@ export declare const knowledgeSchemas: {
|
|
|
745
745
|
} & {
|
|
746
746
|
[k: string]: unknown;
|
|
747
747
|
};
|
|
748
|
-
|
|
748
|
+
title: string;
|
|
749
749
|
}, {
|
|
750
750
|
content: string;
|
|
751
|
-
|
|
751
|
+
filename: string;
|
|
752
752
|
metadata: {
|
|
753
753
|
updated: string;
|
|
754
|
+
tags?: string[] | undefined;
|
|
754
755
|
status?: string | undefined;
|
|
755
756
|
type?: string | undefined;
|
|
756
|
-
tags?: string[] | undefined;
|
|
757
757
|
summary?: string | undefined;
|
|
758
758
|
version?: string | undefined;
|
|
759
759
|
category?: string | undefined;
|
|
@@ -767,7 +767,7 @@ export declare const knowledgeSchemas: {
|
|
|
767
767
|
} & {
|
|
768
768
|
[k: string]: unknown;
|
|
769
769
|
};
|
|
770
|
-
|
|
770
|
+
title: string;
|
|
771
771
|
}>;
|
|
772
772
|
KnowledgeSearchResultSchema: z.ZodObject<{
|
|
773
773
|
filename: z.ZodString;
|
|
@@ -843,12 +843,12 @@ export declare const knowledgeSchemas: {
|
|
|
843
843
|
score: z.ZodOptional<z.ZodNumber>;
|
|
844
844
|
}, "strip", z.ZodTypeAny, {
|
|
845
845
|
content: string;
|
|
846
|
-
|
|
846
|
+
filename: string;
|
|
847
847
|
metadata: {
|
|
848
848
|
updated: string;
|
|
849
|
+
tags?: string[] | undefined;
|
|
849
850
|
status?: string | undefined;
|
|
850
851
|
type?: string | undefined;
|
|
851
|
-
tags?: string[] | undefined;
|
|
852
852
|
summary?: string | undefined;
|
|
853
853
|
version?: string | undefined;
|
|
854
854
|
category?: string | undefined;
|
|
@@ -862,18 +862,18 @@ export declare const knowledgeSchemas: {
|
|
|
862
862
|
} & {
|
|
863
863
|
[k: string]: unknown;
|
|
864
864
|
};
|
|
865
|
-
|
|
865
|
+
title: string;
|
|
866
866
|
snippet?: string | undefined;
|
|
867
867
|
matchedIn?: string[] | undefined;
|
|
868
868
|
score?: number | undefined;
|
|
869
869
|
}, {
|
|
870
870
|
content: string;
|
|
871
|
-
|
|
871
|
+
filename: string;
|
|
872
872
|
metadata: {
|
|
873
873
|
updated: string;
|
|
874
|
+
tags?: string[] | undefined;
|
|
874
875
|
status?: string | undefined;
|
|
875
876
|
type?: string | undefined;
|
|
876
|
-
tags?: string[] | undefined;
|
|
877
877
|
summary?: string | undefined;
|
|
878
878
|
version?: string | undefined;
|
|
879
879
|
category?: string | undefined;
|
|
@@ -887,7 +887,7 @@ export declare const knowledgeSchemas: {
|
|
|
887
887
|
} & {
|
|
888
888
|
[k: string]: unknown;
|
|
889
889
|
};
|
|
890
|
-
|
|
890
|
+
title: string;
|
|
891
891
|
snippet?: string | undefined;
|
|
892
892
|
matchedIn?: string[] | undefined;
|
|
893
893
|
score?: number | undefined;
|
|
@@ -905,9 +905,9 @@ export declare const knowledgeSchemas: {
|
|
|
905
905
|
filename: z.ZodOptional<z.ZodString>;
|
|
906
906
|
summary: z.ZodOptional<z.ZodString>;
|
|
907
907
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
908
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
908
909
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
909
910
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
910
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
911
911
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
912
912
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
913
913
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -925,9 +925,9 @@ export declare const knowledgeSchemas: {
|
|
|
925
925
|
}>>>;
|
|
926
926
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
927
927
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
928
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
928
929
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
929
930
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
930
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
931
931
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
932
932
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
933
933
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -945,9 +945,9 @@ export declare const knowledgeSchemas: {
|
|
|
945
945
|
}>>>;
|
|
946
946
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
947
947
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
948
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
948
949
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
949
950
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
950
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
951
951
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
952
952
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
953
953
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -969,10 +969,11 @@ export declare const knowledgeSchemas: {
|
|
|
969
969
|
content: string;
|
|
970
970
|
title: string;
|
|
971
971
|
summary?: string | undefined;
|
|
972
|
+
filename?: string | undefined;
|
|
972
973
|
metadata?: z.objectOutputType<{
|
|
974
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
973
975
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
974
976
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
975
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
976
977
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
977
978
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
978
979
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -990,15 +991,15 @@ export declare const knowledgeSchemas: {
|
|
|
990
991
|
}>>>;
|
|
991
992
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
992
993
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
993
|
-
filename?: string | undefined;
|
|
994
994
|
}, {
|
|
995
995
|
content: string;
|
|
996
996
|
title: string;
|
|
997
997
|
summary?: string | undefined;
|
|
998
|
+
filename?: string | undefined;
|
|
998
999
|
metadata?: z.objectInputType<{
|
|
1000
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
999
1001
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1000
1002
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1001
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1002
1003
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1003
1004
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1004
1005
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1016,7 +1017,6 @@ export declare const knowledgeSchemas: {
|
|
|
1016
1017
|
}>>>;
|
|
1017
1018
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1018
1019
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1019
|
-
filename?: string | undefined;
|
|
1020
1020
|
}>;
|
|
1021
1021
|
UpdateKnowledgeInputSchema: z.ZodObject<{
|
|
1022
1022
|
filename: z.ZodString;
|
|
@@ -1024,9 +1024,9 @@ export declare const knowledgeSchemas: {
|
|
|
1024
1024
|
title: z.ZodOptional<z.ZodString>;
|
|
1025
1025
|
summary: z.ZodOptional<z.ZodString>;
|
|
1026
1026
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1027
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1027
1028
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1028
1029
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1029
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1030
1030
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1031
1031
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1032
1032
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1044,9 +1044,9 @@ export declare const knowledgeSchemas: {
|
|
|
1044
1044
|
}>>>;
|
|
1045
1045
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1046
1046
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1047
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1047
1048
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1048
1049
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1049
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1050
1050
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1051
1051
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1052
1052
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1064,9 +1064,9 @@ export declare const knowledgeSchemas: {
|
|
|
1064
1064
|
}>>>;
|
|
1065
1065
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1066
1066
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1067
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1067
1068
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1068
1069
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1069
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1070
1070
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1071
1071
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1072
1072
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1088,11 +1088,10 @@ export declare const knowledgeSchemas: {
|
|
|
1088
1088
|
content: string;
|
|
1089
1089
|
filename: string;
|
|
1090
1090
|
summary?: string | undefined;
|
|
1091
|
-
title?: string | undefined;
|
|
1092
1091
|
metadata?: z.objectOutputType<{
|
|
1092
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1093
1093
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1094
1094
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1095
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1096
1095
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1097
1096
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1098
1097
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1110,15 +1109,15 @@ export declare const knowledgeSchemas: {
|
|
|
1110
1109
|
}>>>;
|
|
1111
1110
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1112
1111
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1112
|
+
title?: string | undefined;
|
|
1113
1113
|
}, {
|
|
1114
1114
|
content: string;
|
|
1115
1115
|
filename: string;
|
|
1116
1116
|
summary?: string | undefined;
|
|
1117
|
-
title?: string | undefined;
|
|
1118
1117
|
metadata?: z.objectInputType<{
|
|
1118
|
+
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1119
1119
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1120
1120
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1121
|
-
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1122
1121
|
summary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1123
1122
|
version: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1124
1123
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1136,6 +1135,7 @@ export declare const knowledgeSchemas: {
|
|
|
1136
1135
|
}>>>;
|
|
1137
1136
|
audience: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1138
1137
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1138
|
+
title?: string | undefined;
|
|
1139
1139
|
}>;
|
|
1140
1140
|
};
|
|
1141
1141
|
export declare const knowledgeJsonSchemas: {
|
package/dist/logging/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
*/
|
|
25
25
|
export { getLogger, resetLogger, hasLogger } from "./logger.js";
|
|
26
26
|
export type { LogEventBase, LogEvent, Logger, LoggerOptions, LogLevel, } from "./types";
|
|
27
|
-
export { EventKinds, TaskKinds, AgentKinds, CodeKinds, KnowledgeKinds, ContextKinds, JobKinds, ResourceKinds, AuthKinds, isValidEventKind, EventKindRegistry, } from "./kinds.js";
|
|
27
|
+
export { EventKinds, TaskKinds, AgentKinds, CodeKinds, KnowledgeKinds, ContextKinds, JobKinds, ResourceKinds, MailKinds, AuthKinds, isValidEventKind, EventKindRegistry, } from "./kinds.js";
|
|
28
28
|
export { defaultRedactor, createRedactor, noRedactor, } from "./redact.js";
|
|
29
29
|
export { JsonlWriter } from "./jsonl-writer.js";
|
|
30
30
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/logging/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAGH,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGhE,YAAY,EACV,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,aAAa,EACb,QAAQ,GACT,MAAM,SAAS,CAAC;AAGjB,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,eAAe,EACf,cAAc,EACd,UAAU,GACX,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/logging/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAGH,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGhE,YAAY,EACV,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,aAAa,EACb,QAAQ,GACT,MAAM,SAAS,CAAC;AAGjB,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,aAAa,EACb,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,eAAe,EACf,cAAc,EACd,UAAU,GACX,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
|
package/dist/logging/index.js
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
// Main logger interface
|
|
26
26
|
export { getLogger, resetLogger, hasLogger } from "./logger.js";
|
|
27
27
|
// Event kinds taxonomy
|
|
28
|
-
export { EventKinds, TaskKinds, AgentKinds, CodeKinds, KnowledgeKinds, ContextKinds, JobKinds, ResourceKinds, AuthKinds, isValidEventKind, EventKindRegistry, } from "./kinds.js";
|
|
28
|
+
export { EventKinds, TaskKinds, AgentKinds, CodeKinds, KnowledgeKinds, ContextKinds, JobKinds, ResourceKinds, MailKinds, AuthKinds, isValidEventKind, EventKindRegistry, } from "./kinds.js";
|
|
29
29
|
// Redaction utilities
|
|
30
30
|
export { defaultRedactor, createRedactor, noRedactor, } from "./redact.js";
|
|
31
31
|
// Internal writer (exported for testing and advanced use cases)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/logging/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,wBAAwB;AACxB,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAWhE,uBAAuB;AACvB,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAC;AAEpB,sBAAsB;AACtB,OAAO,EACL,eAAe,EACf,cAAc,EACd,UAAU,GACX,MAAM,aAAa,CAAC;AAErB,gEAAgE;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/logging/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,wBAAwB;AACxB,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAWhE,uBAAuB;AACvB,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,aAAa,EACb,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAC;AAEpB,sBAAsB;AACtB,OAAO,EACL,eAAe,EACf,cAAc,EACd,UAAU,GACX,MAAM,aAAa,CAAC;AAErB,gEAAgE;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
|
package/dist/logging/kinds.d.ts
CHANGED
|
@@ -73,6 +73,18 @@ export declare const ResourceKinds: {
|
|
|
73
73
|
readonly UPLOAD: "resource.upload";
|
|
74
74
|
readonly DELETE: "resource.delete";
|
|
75
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
* Mail events
|
|
78
|
+
*/
|
|
79
|
+
export declare const MailKinds: {
|
|
80
|
+
readonly RECEIVE: "mail.receive";
|
|
81
|
+
readonly READ: "mail.read";
|
|
82
|
+
readonly UNREAD: "mail.unread";
|
|
83
|
+
readonly DELETE: "mail.delete";
|
|
84
|
+
readonly REPLY: "mail.reply";
|
|
85
|
+
readonly SEND: "mail.send";
|
|
86
|
+
readonly ACTION: "mail.action";
|
|
87
|
+
};
|
|
76
88
|
/**
|
|
77
89
|
* Authentication events (when auth is enabled)
|
|
78
90
|
*/
|
|
@@ -92,8 +104,14 @@ export declare const EventKinds: {
|
|
|
92
104
|
readonly API_KEY_USE: "auth.api.key.use";
|
|
93
105
|
readonly API_KEY_CREATE: "auth.api.key.create";
|
|
94
106
|
readonly API_KEY_DELETE: "auth.api.key.delete";
|
|
107
|
+
readonly RECEIVE: "mail.receive";
|
|
108
|
+
readonly READ: "mail.read";
|
|
109
|
+
readonly UNREAD: "mail.unread";
|
|
110
|
+
readonly DELETE: "mail.delete";
|
|
111
|
+
readonly REPLY: "mail.reply";
|
|
112
|
+
readonly SEND: "mail.send";
|
|
113
|
+
readonly ACTION: "mail.action";
|
|
95
114
|
readonly UPLOAD: "resource.upload";
|
|
96
|
-
readonly DELETE: "resource.delete";
|
|
97
115
|
readonly SCHEDULE: "job.schedule";
|
|
98
116
|
readonly RUN_START: "job.run.start";
|
|
99
117
|
readonly RUN_END: "job.run.end";
|
|
@@ -241,6 +259,34 @@ export declare const EventKindRegistry: {
|
|
|
241
259
|
readonly description: "Resource was deleted";
|
|
242
260
|
readonly tags: readonly ["resource"];
|
|
243
261
|
};
|
|
262
|
+
readonly "mail.receive": {
|
|
263
|
+
readonly description: "Email received via webhook";
|
|
264
|
+
readonly tags: readonly ["mail"];
|
|
265
|
+
};
|
|
266
|
+
readonly "mail.read": {
|
|
267
|
+
readonly description: "Email marked as read";
|
|
268
|
+
readonly tags: readonly ["mail"];
|
|
269
|
+
};
|
|
270
|
+
readonly "mail.unread": {
|
|
271
|
+
readonly description: "Email marked as unread";
|
|
272
|
+
readonly tags: readonly ["mail"];
|
|
273
|
+
};
|
|
274
|
+
readonly "mail.delete": {
|
|
275
|
+
readonly description: "Email deleted";
|
|
276
|
+
readonly tags: readonly ["mail"];
|
|
277
|
+
};
|
|
278
|
+
readonly "mail.reply": {
|
|
279
|
+
readonly description: "Reply sent to email";
|
|
280
|
+
readonly tags: readonly ["mail"];
|
|
281
|
+
};
|
|
282
|
+
readonly "mail.send": {
|
|
283
|
+
readonly description: "Email sent";
|
|
284
|
+
readonly tags: readonly ["mail"];
|
|
285
|
+
};
|
|
286
|
+
readonly "mail.action": {
|
|
287
|
+
readonly description: "Agent action taken on email";
|
|
288
|
+
readonly tags: readonly ["mail", "agent"];
|
|
289
|
+
};
|
|
244
290
|
readonly "auth.login": {
|
|
245
291
|
readonly description: "User logged in";
|
|
246
292
|
readonly tags: readonly ["auth"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kinds.d.ts","sourceRoot":"","sources":["../../src/logging/kinds.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;CAKb,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;CAQZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,QAAQ;;;;;CAKX,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,aAAa;;;CAGhB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"kinds.d.ts","sourceRoot":"","sources":["../../src/logging/kinds.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;CAKb,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;CAQZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,QAAQ;;;;;CAKX,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,aAAa;;;CAGhB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;CAQZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUb,CAAC;AAEX;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,UAAU,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAEnE;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,IAAI,SAAS,CAEhE;AAED;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiKpB,CAAC"}
|
package/dist/logging/kinds.js
CHANGED
|
@@ -73,6 +73,18 @@ export const ResourceKinds = {
|
|
|
73
73
|
UPLOAD: "resource.upload",
|
|
74
74
|
DELETE: "resource.delete",
|
|
75
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
* Mail events
|
|
78
|
+
*/
|
|
79
|
+
export const MailKinds = {
|
|
80
|
+
RECEIVE: "mail.receive",
|
|
81
|
+
READ: "mail.read",
|
|
82
|
+
UNREAD: "mail.unread",
|
|
83
|
+
DELETE: "mail.delete",
|
|
84
|
+
REPLY: "mail.reply",
|
|
85
|
+
SEND: "mail.send",
|
|
86
|
+
ACTION: "mail.action",
|
|
87
|
+
};
|
|
76
88
|
/**
|
|
77
89
|
* Authentication events (when auth is enabled)
|
|
78
90
|
*/
|
|
@@ -94,6 +106,7 @@ export const EventKinds = {
|
|
|
94
106
|
...ContextKinds,
|
|
95
107
|
...JobKinds,
|
|
96
108
|
...ResourceKinds,
|
|
109
|
+
...MailKinds,
|
|
97
110
|
...AuthKinds,
|
|
98
111
|
};
|
|
99
112
|
/**
|
|
@@ -219,6 +232,34 @@ export const EventKindRegistry = {
|
|
|
219
232
|
description: "Resource was deleted",
|
|
220
233
|
tags: ["resource"],
|
|
221
234
|
},
|
|
235
|
+
[MailKinds.RECEIVE]: {
|
|
236
|
+
description: "Email received via webhook",
|
|
237
|
+
tags: ["mail"],
|
|
238
|
+
},
|
|
239
|
+
[MailKinds.READ]: {
|
|
240
|
+
description: "Email marked as read",
|
|
241
|
+
tags: ["mail"],
|
|
242
|
+
},
|
|
243
|
+
[MailKinds.UNREAD]: {
|
|
244
|
+
description: "Email marked as unread",
|
|
245
|
+
tags: ["mail"],
|
|
246
|
+
},
|
|
247
|
+
[MailKinds.DELETE]: {
|
|
248
|
+
description: "Email deleted",
|
|
249
|
+
tags: ["mail"],
|
|
250
|
+
},
|
|
251
|
+
[MailKinds.REPLY]: {
|
|
252
|
+
description: "Reply sent to email",
|
|
253
|
+
tags: ["mail"],
|
|
254
|
+
},
|
|
255
|
+
[MailKinds.SEND]: {
|
|
256
|
+
description: "Email sent",
|
|
257
|
+
tags: ["mail"],
|
|
258
|
+
},
|
|
259
|
+
[MailKinds.ACTION]: {
|
|
260
|
+
description: "Agent action taken on email",
|
|
261
|
+
tags: ["mail", "agent"],
|
|
262
|
+
},
|
|
222
263
|
[AuthKinds.LOGIN]: {
|
|
223
264
|
description: "User logged in",
|
|
224
265
|
tags: ["auth"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kinds.js","sourceRoot":"","sources":["../../src/logging/kinds.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"kinds.js","sourceRoot":"","sources":["../../src/logging/kinds.ts"],"names":[],"mappings":"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"}
|