@deskwork/core 0.15.0 → 0.17.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/doctor/rules/legacy-stage-artifact-path.d.ts +28 -0
- package/dist/doctor/rules/legacy-stage-artifact-path.d.ts.map +1 -0
- package/dist/doctor/rules/legacy-stage-artifact-path.js +232 -0
- package/dist/doctor/rules/legacy-stage-artifact-path.js.map +1 -0
- package/dist/doctor/rules/legacy-stage-artifact-path.ts +285 -0
- package/dist/doctor/runner.d.ts.map +1 -1
- package/dist/doctor/runner.js +2 -0
- package/dist/doctor/runner.js.map +1 -1
- package/dist/entry/annotations.d.ts +38 -3
- package/dist/entry/annotations.d.ts.map +1 -1
- package/dist/entry/annotations.js +164 -3
- package/dist/entry/annotations.js.map +1 -1
- package/dist/entry/approve.d.ts +21 -4
- package/dist/entry/approve.d.ts.map +1 -1
- package/dist/entry/approve.js +74 -7
- package/dist/entry/approve.js.map +1 -1
- package/dist/entry/snapshot.d.ts +51 -0
- package/dist/entry/snapshot.d.ts.map +1 -0
- package/dist/entry/snapshot.js +95 -0
- package/dist/entry/snapshot.js.map +1 -0
- package/dist/ingest-derive.d.ts +1 -1
- package/dist/ingest-derive.d.ts.map +1 -1
- package/dist/ingest-derive.js +10 -7
- package/dist/ingest-derive.js.map +1 -1
- package/dist/ingest-id.d.ts +33 -0
- package/dist/ingest-id.d.ts.map +1 -0
- package/dist/ingest-id.js +60 -0
- package/dist/ingest-id.js.map +1 -0
- package/dist/ingest.d.ts.map +1 -1
- package/dist/ingest.js +23 -0
- package/dist/ingest.js.map +1 -1
- package/dist/iterate/iterate.d.ts.map +1 -1
- package/dist/iterate/iterate.js +37 -25
- package/dist/iterate/iterate.js.map +1 -1
- package/dist/review/types.d.ts +56 -1
- package/dist/review/types.d.ts.map +1 -1
- package/dist/review/types.js.map +1 -1
- package/dist/schema/draft-annotation.d.ts +108 -24
- package/dist/schema/draft-annotation.d.ts.map +1 -1
- package/dist/schema/draft-annotation.js +23 -0
- package/dist/schema/draft-annotation.js.map +1 -1
- package/dist/schema/journal-events.d.ts +240 -104
- package/dist/schema/journal-events.d.ts.map +1 -1
- package/dist/scrapbook/crud-at-dir.d.ts +47 -0
- package/dist/scrapbook/crud-at-dir.d.ts.map +1 -0
- package/dist/scrapbook/crud-at-dir.js +114 -0
- package/dist/scrapbook/crud-at-dir.js.map +1 -0
- package/dist/scrapbook/crud-slug.d.ts +33 -0
- package/dist/scrapbook/crud-slug.d.ts.map +1 -0
- package/dist/scrapbook/crud-slug.js +99 -0
- package/dist/scrapbook/crud-slug.js.map +1 -0
- package/dist/scrapbook/format.d.ts +10 -0
- package/dist/scrapbook/format.d.ts.map +1 -0
- package/dist/scrapbook/format.js +41 -0
- package/dist/scrapbook/format.js.map +1 -0
- package/dist/scrapbook/listing.d.ts +94 -0
- package/dist/scrapbook/listing.d.ts.map +1 -0
- package/dist/scrapbook/listing.js +167 -0
- package/dist/scrapbook/listing.js.map +1 -0
- package/dist/scrapbook/paths.d.ts +115 -0
- package/dist/scrapbook/paths.d.ts.map +1 -0
- package/dist/scrapbook/paths.js +149 -0
- package/dist/scrapbook/paths.js.map +1 -0
- package/dist/scrapbook/read.d.ts +54 -0
- package/dist/scrapbook/read.d.ts.map +1 -0
- package/dist/scrapbook/read.js +62 -0
- package/dist/scrapbook/read.js.map +1 -0
- package/dist/scrapbook/seed.d.ts +19 -0
- package/dist/scrapbook/seed.d.ts.map +1 -0
- package/dist/scrapbook/seed.js +46 -0
- package/dist/scrapbook/seed.js.map +1 -0
- package/dist/scrapbook/types.d.ts +44 -0
- package/dist/scrapbook/types.d.ts.map +1 -0
- package/dist/scrapbook/types.js +11 -0
- package/dist/scrapbook/types.js.map +1 -0
- package/dist/scrapbook/validation.d.ts +28 -0
- package/dist/scrapbook/validation.d.ts.map +1 -0
- package/dist/scrapbook/validation.js +98 -0
- package/dist/scrapbook/validation.js.map +1 -0
- package/dist/scrapbook.d.ts +43 -277
- package/dist/scrapbook.d.ts.map +1 -1
- package/dist/scrapbook.js +42 -535
- package/dist/scrapbook.js.map +1 -1
- package/package.json +5 -1
|
@@ -31,31 +31,31 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
31
31
|
workflowId: z.ZodString;
|
|
32
32
|
id: z.ZodString;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
|
-
id: string;
|
|
35
|
-
type: "comment";
|
|
36
34
|
version: number;
|
|
35
|
+
type: "comment";
|
|
37
36
|
createdAt: string;
|
|
38
|
-
|
|
37
|
+
id: string;
|
|
39
38
|
range: {
|
|
40
39
|
start: number;
|
|
41
40
|
end: number;
|
|
42
41
|
};
|
|
43
42
|
text: string;
|
|
43
|
+
workflowId: string;
|
|
44
|
+
category?: "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | "other" | undefined;
|
|
44
45
|
anchor?: string | undefined;
|
|
45
|
-
category?: "other" | "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | undefined;
|
|
46
46
|
}, {
|
|
47
|
-
id: string;
|
|
48
|
-
type: "comment";
|
|
49
47
|
version: number;
|
|
48
|
+
type: "comment";
|
|
50
49
|
createdAt: string;
|
|
51
|
-
|
|
50
|
+
id: string;
|
|
52
51
|
range: {
|
|
53
52
|
start: number;
|
|
54
53
|
end: number;
|
|
55
54
|
};
|
|
56
55
|
text: string;
|
|
56
|
+
workflowId: string;
|
|
57
|
+
category?: "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | "other" | undefined;
|
|
57
58
|
anchor?: string | undefined;
|
|
58
|
-
category?: "other" | "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | undefined;
|
|
59
59
|
}>, z.ZodObject<{
|
|
60
60
|
type: z.ZodLiteral<"edit">;
|
|
61
61
|
beforeVersion: z.ZodNumber;
|
|
@@ -65,17 +65,17 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
65
65
|
workflowId: z.ZodString;
|
|
66
66
|
id: z.ZodString;
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
|
-
id: string;
|
|
69
68
|
type: "edit";
|
|
70
69
|
createdAt: string;
|
|
70
|
+
id: string;
|
|
71
71
|
workflowId: string;
|
|
72
72
|
beforeVersion: number;
|
|
73
73
|
afterMarkdown: string;
|
|
74
74
|
diff: string;
|
|
75
75
|
}, {
|
|
76
|
-
id: string;
|
|
77
76
|
type: "edit";
|
|
78
77
|
createdAt: string;
|
|
78
|
+
id: string;
|
|
79
79
|
workflowId: string;
|
|
80
80
|
beforeVersion: number;
|
|
81
81
|
afterMarkdown: string;
|
|
@@ -87,16 +87,16 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
87
87
|
workflowId: z.ZodString;
|
|
88
88
|
id: z.ZodString;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
id: string;
|
|
91
|
-
type: "approve";
|
|
92
90
|
version: number;
|
|
91
|
+
type: "approve";
|
|
93
92
|
createdAt: string;
|
|
93
|
+
id: string;
|
|
94
94
|
workflowId: string;
|
|
95
95
|
}, {
|
|
96
|
-
id: string;
|
|
97
|
-
type: "approve";
|
|
98
96
|
version: number;
|
|
97
|
+
type: "approve";
|
|
99
98
|
createdAt: string;
|
|
99
|
+
id: string;
|
|
100
100
|
workflowId: string;
|
|
101
101
|
}>, z.ZodObject<{
|
|
102
102
|
type: z.ZodLiteral<"reject">;
|
|
@@ -106,17 +106,17 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
106
106
|
workflowId: z.ZodString;
|
|
107
107
|
id: z.ZodString;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
id: string;
|
|
110
|
-
type: "reject";
|
|
111
109
|
version: number;
|
|
110
|
+
type: "reject";
|
|
112
111
|
createdAt: string;
|
|
112
|
+
id: string;
|
|
113
113
|
workflowId: string;
|
|
114
114
|
reason?: string | undefined;
|
|
115
115
|
}, {
|
|
116
|
-
id: string;
|
|
117
|
-
type: "reject";
|
|
118
116
|
version: number;
|
|
117
|
+
type: "reject";
|
|
119
118
|
createdAt: string;
|
|
119
|
+
id: string;
|
|
120
120
|
workflowId: string;
|
|
121
121
|
reason?: string | undefined;
|
|
122
122
|
}>, z.ZodObject<{
|
|
@@ -127,16 +127,16 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
127
127
|
workflowId: z.ZodString;
|
|
128
128
|
id: z.ZodString;
|
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
|
-
id: string;
|
|
131
130
|
type: "resolve";
|
|
132
131
|
createdAt: string;
|
|
132
|
+
id: string;
|
|
133
133
|
workflowId: string;
|
|
134
134
|
commentId: string;
|
|
135
135
|
resolved: boolean;
|
|
136
136
|
}, {
|
|
137
|
-
id: string;
|
|
138
137
|
type: "resolve";
|
|
139
138
|
createdAt: string;
|
|
139
|
+
id: string;
|
|
140
140
|
workflowId: string;
|
|
141
141
|
commentId: string;
|
|
142
142
|
resolved: boolean;
|
|
@@ -150,22 +150,106 @@ export declare const DraftAnnotationSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
150
150
|
workflowId: z.ZodString;
|
|
151
151
|
id: z.ZodString;
|
|
152
152
|
}, "strip", z.ZodTypeAny, {
|
|
153
|
-
id: string;
|
|
154
|
-
type: "address";
|
|
155
153
|
version: number;
|
|
154
|
+
type: "address";
|
|
156
155
|
createdAt: string;
|
|
156
|
+
id: string;
|
|
157
157
|
workflowId: string;
|
|
158
158
|
commentId: string;
|
|
159
159
|
disposition: "addressed" | "deferred" | "wontfix";
|
|
160
160
|
reason?: string | undefined;
|
|
161
161
|
}, {
|
|
162
|
-
id: string;
|
|
163
|
-
type: "address";
|
|
164
162
|
version: number;
|
|
163
|
+
type: "address";
|
|
165
164
|
createdAt: string;
|
|
165
|
+
id: string;
|
|
166
166
|
workflowId: string;
|
|
167
167
|
commentId: string;
|
|
168
168
|
disposition: "addressed" | "deferred" | "wontfix";
|
|
169
169
|
reason?: string | undefined;
|
|
170
|
+
}>, z.ZodObject<{
|
|
171
|
+
type: z.ZodLiteral<"edit-comment">;
|
|
172
|
+
commentId: z.ZodString;
|
|
173
|
+
text: z.ZodOptional<z.ZodString>;
|
|
174
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
175
|
+
start: z.ZodNumber;
|
|
176
|
+
end: z.ZodNumber;
|
|
177
|
+
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
start: number;
|
|
179
|
+
end: number;
|
|
180
|
+
}, {
|
|
181
|
+
start: number;
|
|
182
|
+
end: number;
|
|
183
|
+
}>>;
|
|
184
|
+
category: z.ZodOptional<z.ZodEnum<["voice-drift", "missing-receipt", "tutorial-framing", "saas-vocabulary", "fake-authority", "structural", "other"]>>;
|
|
185
|
+
anchor: z.ZodOptional<z.ZodString>;
|
|
186
|
+
createdAt: z.ZodString;
|
|
187
|
+
workflowId: z.ZodString;
|
|
188
|
+
id: z.ZodString;
|
|
189
|
+
}, "strip", z.ZodTypeAny, {
|
|
190
|
+
type: "edit-comment";
|
|
191
|
+
createdAt: string;
|
|
192
|
+
id: string;
|
|
193
|
+
workflowId: string;
|
|
194
|
+
commentId: string;
|
|
195
|
+
range?: {
|
|
196
|
+
start: number;
|
|
197
|
+
end: number;
|
|
198
|
+
} | undefined;
|
|
199
|
+
text?: string | undefined;
|
|
200
|
+
category?: "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | "other" | undefined;
|
|
201
|
+
anchor?: string | undefined;
|
|
202
|
+
}, {
|
|
203
|
+
type: "edit-comment";
|
|
204
|
+
createdAt: string;
|
|
205
|
+
id: string;
|
|
206
|
+
workflowId: string;
|
|
207
|
+
commentId: string;
|
|
208
|
+
range?: {
|
|
209
|
+
start: number;
|
|
210
|
+
end: number;
|
|
211
|
+
} | undefined;
|
|
212
|
+
text?: string | undefined;
|
|
213
|
+
category?: "voice-drift" | "missing-receipt" | "tutorial-framing" | "saas-vocabulary" | "fake-authority" | "structural" | "other" | undefined;
|
|
214
|
+
anchor?: string | undefined;
|
|
215
|
+
}>, z.ZodObject<{
|
|
216
|
+
type: z.ZodLiteral<"delete-comment">;
|
|
217
|
+
commentId: z.ZodString;
|
|
218
|
+
createdAt: z.ZodString;
|
|
219
|
+
workflowId: z.ZodString;
|
|
220
|
+
id: z.ZodString;
|
|
221
|
+
}, "strip", z.ZodTypeAny, {
|
|
222
|
+
type: "delete-comment";
|
|
223
|
+
createdAt: string;
|
|
224
|
+
id: string;
|
|
225
|
+
workflowId: string;
|
|
226
|
+
commentId: string;
|
|
227
|
+
}, {
|
|
228
|
+
type: "delete-comment";
|
|
229
|
+
createdAt: string;
|
|
230
|
+
id: string;
|
|
231
|
+
workflowId: string;
|
|
232
|
+
commentId: string;
|
|
233
|
+
}>, z.ZodObject<{
|
|
234
|
+
type: z.ZodLiteral<"archive-comment">;
|
|
235
|
+
commentId: z.ZodString;
|
|
236
|
+
priorStage: z.ZodOptional<z.ZodString>;
|
|
237
|
+
createdAt: z.ZodString;
|
|
238
|
+
workflowId: z.ZodString;
|
|
239
|
+
id: z.ZodString;
|
|
240
|
+
}, "strip", z.ZodTypeAny, {
|
|
241
|
+
type: "archive-comment";
|
|
242
|
+
createdAt: string;
|
|
243
|
+
id: string;
|
|
244
|
+
workflowId: string;
|
|
245
|
+
commentId: string;
|
|
246
|
+
priorStage?: string | undefined;
|
|
247
|
+
}, {
|
|
248
|
+
type: "archive-comment";
|
|
249
|
+
createdAt: string;
|
|
250
|
+
id: string;
|
|
251
|
+
workflowId: string;
|
|
252
|
+
commentId: string;
|
|
253
|
+
priorStage?: string | undefined;
|
|
170
254
|
}>]>;
|
|
171
255
|
//# sourceMappingURL=draft-annotation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft-annotation.d.ts","sourceRoot":"","sources":["../../src/schema/draft-annotation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"draft-annotation.d.ts","sourceRoot":"","sources":["../../src/schema/draft-annotation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAmGxB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUhC,CAAC"}
|
|
@@ -76,6 +76,26 @@ const AddressAnnotation = z.object({
|
|
|
76
76
|
disposition: z.enum(['addressed', 'deferred', 'wontfix']),
|
|
77
77
|
reason: z.string().optional(),
|
|
78
78
|
});
|
|
79
|
+
const EditCommentAnnotation = z.object({
|
|
80
|
+
...BaseFields,
|
|
81
|
+
type: z.literal('edit-comment'),
|
|
82
|
+
commentId: z.string(),
|
|
83
|
+
text: z.string().optional(),
|
|
84
|
+
range: RangeSchema.optional(),
|
|
85
|
+
category: AnnotationCategoryEnum.optional(),
|
|
86
|
+
anchor: z.string().optional(),
|
|
87
|
+
});
|
|
88
|
+
const DeleteCommentAnnotation = z.object({
|
|
89
|
+
...BaseFields,
|
|
90
|
+
type: z.literal('delete-comment'),
|
|
91
|
+
commentId: z.string(),
|
|
92
|
+
});
|
|
93
|
+
const ArchiveCommentAnnotation = z.object({
|
|
94
|
+
...BaseFields,
|
|
95
|
+
type: z.literal('archive-comment'),
|
|
96
|
+
commentId: z.string(),
|
|
97
|
+
priorStage: z.string().optional(),
|
|
98
|
+
});
|
|
79
99
|
export const DraftAnnotationSchema = z.discriminatedUnion('type', [
|
|
80
100
|
CommentAnnotation,
|
|
81
101
|
EditAnnotation,
|
|
@@ -83,5 +103,8 @@ export const DraftAnnotationSchema = z.discriminatedUnion('type', [
|
|
|
83
103
|
RejectAnnotation,
|
|
84
104
|
ResolveAnnotation,
|
|
85
105
|
AddressAnnotation,
|
|
106
|
+
EditCommentAnnotation,
|
|
107
|
+
DeleteCommentAnnotation,
|
|
108
|
+
ArchiveCommentAnnotation,
|
|
86
109
|
]);
|
|
87
110
|
//# sourceMappingURL=draft-annotation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft-annotation.js","sourceRoot":"","sources":["../../src/schema/draft-annotation.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"draft-annotation.js","sourceRoot":"","sources":["../../src/schema/draft-annotation.ts"],"names":[],"mappings":"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"}
|