@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.
Files changed (84) hide show
  1. package/dist/doctor/rules/legacy-stage-artifact-path.d.ts +28 -0
  2. package/dist/doctor/rules/legacy-stage-artifact-path.d.ts.map +1 -0
  3. package/dist/doctor/rules/legacy-stage-artifact-path.js +232 -0
  4. package/dist/doctor/rules/legacy-stage-artifact-path.js.map +1 -0
  5. package/dist/doctor/rules/legacy-stage-artifact-path.ts +285 -0
  6. package/dist/doctor/runner.d.ts.map +1 -1
  7. package/dist/doctor/runner.js +2 -0
  8. package/dist/doctor/runner.js.map +1 -1
  9. package/dist/entry/annotations.d.ts +38 -3
  10. package/dist/entry/annotations.d.ts.map +1 -1
  11. package/dist/entry/annotations.js +164 -3
  12. package/dist/entry/annotations.js.map +1 -1
  13. package/dist/entry/approve.d.ts +21 -4
  14. package/dist/entry/approve.d.ts.map +1 -1
  15. package/dist/entry/approve.js +74 -7
  16. package/dist/entry/approve.js.map +1 -1
  17. package/dist/entry/snapshot.d.ts +51 -0
  18. package/dist/entry/snapshot.d.ts.map +1 -0
  19. package/dist/entry/snapshot.js +95 -0
  20. package/dist/entry/snapshot.js.map +1 -0
  21. package/dist/ingest-derive.d.ts +1 -1
  22. package/dist/ingest-derive.d.ts.map +1 -1
  23. package/dist/ingest-derive.js +10 -7
  24. package/dist/ingest-derive.js.map +1 -1
  25. package/dist/ingest-id.d.ts +33 -0
  26. package/dist/ingest-id.d.ts.map +1 -0
  27. package/dist/ingest-id.js +60 -0
  28. package/dist/ingest-id.js.map +1 -0
  29. package/dist/ingest.d.ts.map +1 -1
  30. package/dist/ingest.js +23 -0
  31. package/dist/ingest.js.map +1 -1
  32. package/dist/iterate/iterate.d.ts.map +1 -1
  33. package/dist/iterate/iterate.js +37 -25
  34. package/dist/iterate/iterate.js.map +1 -1
  35. package/dist/review/types.d.ts +56 -1
  36. package/dist/review/types.d.ts.map +1 -1
  37. package/dist/review/types.js.map +1 -1
  38. package/dist/schema/draft-annotation.d.ts +108 -24
  39. package/dist/schema/draft-annotation.d.ts.map +1 -1
  40. package/dist/schema/draft-annotation.js +23 -0
  41. package/dist/schema/draft-annotation.js.map +1 -1
  42. package/dist/schema/journal-events.d.ts +240 -104
  43. package/dist/schema/journal-events.d.ts.map +1 -1
  44. package/dist/scrapbook/crud-at-dir.d.ts +47 -0
  45. package/dist/scrapbook/crud-at-dir.d.ts.map +1 -0
  46. package/dist/scrapbook/crud-at-dir.js +114 -0
  47. package/dist/scrapbook/crud-at-dir.js.map +1 -0
  48. package/dist/scrapbook/crud-slug.d.ts +33 -0
  49. package/dist/scrapbook/crud-slug.d.ts.map +1 -0
  50. package/dist/scrapbook/crud-slug.js +99 -0
  51. package/dist/scrapbook/crud-slug.js.map +1 -0
  52. package/dist/scrapbook/format.d.ts +10 -0
  53. package/dist/scrapbook/format.d.ts.map +1 -0
  54. package/dist/scrapbook/format.js +41 -0
  55. package/dist/scrapbook/format.js.map +1 -0
  56. package/dist/scrapbook/listing.d.ts +94 -0
  57. package/dist/scrapbook/listing.d.ts.map +1 -0
  58. package/dist/scrapbook/listing.js +167 -0
  59. package/dist/scrapbook/listing.js.map +1 -0
  60. package/dist/scrapbook/paths.d.ts +115 -0
  61. package/dist/scrapbook/paths.d.ts.map +1 -0
  62. package/dist/scrapbook/paths.js +149 -0
  63. package/dist/scrapbook/paths.js.map +1 -0
  64. package/dist/scrapbook/read.d.ts +54 -0
  65. package/dist/scrapbook/read.d.ts.map +1 -0
  66. package/dist/scrapbook/read.js +62 -0
  67. package/dist/scrapbook/read.js.map +1 -0
  68. package/dist/scrapbook/seed.d.ts +19 -0
  69. package/dist/scrapbook/seed.d.ts.map +1 -0
  70. package/dist/scrapbook/seed.js +46 -0
  71. package/dist/scrapbook/seed.js.map +1 -0
  72. package/dist/scrapbook/types.d.ts +44 -0
  73. package/dist/scrapbook/types.d.ts.map +1 -0
  74. package/dist/scrapbook/types.js +11 -0
  75. package/dist/scrapbook/types.js.map +1 -0
  76. package/dist/scrapbook/validation.d.ts +28 -0
  77. package/dist/scrapbook/validation.d.ts.map +1 -0
  78. package/dist/scrapbook/validation.js +98 -0
  79. package/dist/scrapbook/validation.js.map +1 -0
  80. package/dist/scrapbook.d.ts +43 -277
  81. package/dist/scrapbook.d.ts.map +1 -1
  82. package/dist/scrapbook.js +42 -535
  83. package/dist/scrapbook.js.map +1 -1
  84. 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
- workflowId: string;
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
- workflowId: string;
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;AA4ExB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOhC,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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"}