@lovelybunch/core 1.0.76-alpha.2 → 1.0.76-alpha.4
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/events.d.ts +4 -4
- package/dist/knowledge.d.ts +116 -116
- package/dist/mail.d.ts +8 -8
- package/dist/pipeline-builders.d.ts +15 -1
- package/dist/pipeline-builders.d.ts.map +1 -1
- package/dist/pipeline-builders.js +144 -21
- package/dist/pipeline-builders.js.map +1 -1
- package/dist/pipelines.d.ts +1 -1
- package/dist/pipelines.d.ts.map +1 -1
- package/dist/pipelines.js +1 -1
- package/dist/pipelines.js.map +1 -1
- package/dist/tasks.d.ts +76 -76
- package/package.json +2 -2
- package/dist/change-proposal.d.ts +0 -71
- package/dist/change-proposal.d.ts.map +0 -1
- package/dist/change-proposal.js +0 -205
- package/dist/change-proposal.js.map +0 -1
package/dist/context.d.ts
CHANGED
|
@@ -27,22 +27,22 @@ export declare const UpdateContextInputSchema: z.ZodObject<{
|
|
|
27
27
|
type: z.ZodEnum<["project", "architecture", "role"]>;
|
|
28
28
|
content: z.ZodString;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
type: "project" | "architecture" | "role";
|
|
31
30
|
content: string;
|
|
32
|
-
}, {
|
|
33
31
|
type: "project" | "architecture" | "role";
|
|
32
|
+
}, {
|
|
34
33
|
content: string;
|
|
34
|
+
type: "project" | "architecture" | "role";
|
|
35
35
|
}>;
|
|
36
36
|
export type UpdateContextInput = z.infer<typeof UpdateContextInputSchema>;
|
|
37
37
|
export declare const AppendContextInputSchema: z.ZodObject<{
|
|
38
38
|
type: z.ZodEnum<["project", "architecture", "role"]>;
|
|
39
39
|
content: z.ZodString;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
|
-
type: "project" | "architecture" | "role";
|
|
42
41
|
content: string;
|
|
43
|
-
}, {
|
|
44
42
|
type: "project" | "architecture" | "role";
|
|
43
|
+
}, {
|
|
45
44
|
content: string;
|
|
45
|
+
type: "project" | "architecture" | "role";
|
|
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<["project", "architecture", "role"]>;
|
|
119
119
|
content: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
|
-
type: "project" | "architecture" | "role";
|
|
122
121
|
content: string;
|
|
123
|
-
}, {
|
|
124
122
|
type: "project" | "architecture" | "role";
|
|
123
|
+
}, {
|
|
125
124
|
content: string;
|
|
125
|
+
type: "project" | "architecture" | "role";
|
|
126
126
|
}>;
|
|
127
127
|
AppendContextInputSchema: z.ZodObject<{
|
|
128
128
|
type: z.ZodEnum<["project", "architecture", "role"]>;
|
|
129
129
|
content: z.ZodString;
|
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
-
type: "project" | "architecture" | "role";
|
|
132
131
|
content: string;
|
|
133
|
-
}, {
|
|
134
132
|
type: "project" | "architecture" | "role";
|
|
133
|
+
}, {
|
|
135
134
|
content: string;
|
|
135
|
+
type: "project" | "architecture" | "role";
|
|
136
136
|
}>;
|
|
137
137
|
ReplaceContextSectionInputSchema: z.ZodObject<{
|
|
138
138
|
type: z.ZodEnum<["project", "architecture", "role"]>;
|
package/dist/events.d.ts
CHANGED
|
@@ -9,19 +9,19 @@ export declare const ActivityEventSchema: z.ZodObject<{
|
|
|
9
9
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10
10
|
summary: z.ZodOptional<z.ZodString>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
seq: number;
|
|
13
12
|
kind: string;
|
|
14
13
|
actor: string;
|
|
15
14
|
subject: string;
|
|
15
|
+
seq: number;
|
|
16
16
|
timestamp: string;
|
|
17
17
|
level?: string | undefined;
|
|
18
18
|
tags?: string[] | undefined;
|
|
19
19
|
summary?: string | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
seq: number;
|
|
22
21
|
kind: string;
|
|
23
22
|
actor: string;
|
|
24
23
|
subject: string;
|
|
24
|
+
seq: number;
|
|
25
25
|
timestamp: string;
|
|
26
26
|
level?: string | undefined;
|
|
27
27
|
tags?: string[] | undefined;
|
|
@@ -54,19 +54,19 @@ export declare const eventsSchemas: {
|
|
|
54
54
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55
55
|
summary: z.ZodOptional<z.ZodString>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
|
-
seq: number;
|
|
58
57
|
kind: string;
|
|
59
58
|
actor: string;
|
|
60
59
|
subject: string;
|
|
60
|
+
seq: number;
|
|
61
61
|
timestamp: string;
|
|
62
62
|
level?: string | undefined;
|
|
63
63
|
tags?: string[] | undefined;
|
|
64
64
|
summary?: string | undefined;
|
|
65
65
|
}, {
|
|
66
|
-
seq: number;
|
|
67
66
|
kind: string;
|
|
68
67
|
actor: string;
|
|
69
68
|
subject: string;
|
|
69
|
+
seq: number;
|
|
70
70
|
timestamp: string;
|
|
71
71
|
level?: string | undefined;
|
|
72
72
|
tags?: string[] | undefined;
|