@miller-tech/uap 1.5.6 → 1.5.7
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/.tsbuildinfo +1 -1
- package/dist/benchmarks/benchmark.d.ts +53 -53
- package/dist/coordination/droid-validator.d.ts +1 -1
- package/dist/models/types.d.ts +57 -57
- package/dist/policies/schemas/policy.d.ts +18 -18
- package/dist/tasks/types.d.ts +23 -23
- package/dist/types/config.d.ts +416 -416
- package/dist/types/coordination.d.ts +22 -22
- package/dist/uap-droids-strict.d.ts +1 -1
- package/package.json +3 -5
package/dist/tasks/types.d.ts
CHANGED
|
@@ -152,24 +152,24 @@ export declare const CreateTaskInputSchema: z.ZodObject<{
|
|
|
152
152
|
notes: z.ZodOptional<z.ZodString>;
|
|
153
153
|
dueDate: z.ZodOptional<z.ZodString>;
|
|
154
154
|
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
type: "
|
|
155
|
+
type: "task" | "bug" | "feature" | "epic" | "chore" | "story";
|
|
156
156
|
priority: number;
|
|
157
157
|
title: string;
|
|
158
158
|
labels: string[];
|
|
159
159
|
description?: string | undefined;
|
|
160
|
-
parentId?: string | undefined;
|
|
161
160
|
assignee?: string | undefined;
|
|
161
|
+
parentId?: string | undefined;
|
|
162
162
|
notes?: string | undefined;
|
|
163
163
|
dueDate?: string | undefined;
|
|
164
164
|
}, {
|
|
165
165
|
title: string;
|
|
166
|
-
type?: "chore" | "feature" | "task" | "bug" | "epic" | "story" | undefined;
|
|
167
166
|
description?: string | undefined;
|
|
167
|
+
type?: "task" | "bug" | "feature" | "epic" | "chore" | "story" | undefined;
|
|
168
168
|
priority?: number | undefined;
|
|
169
|
-
labels?: string[] | undefined;
|
|
170
|
-
parentId?: string | undefined;
|
|
171
169
|
assignee?: string | undefined;
|
|
170
|
+
parentId?: string | undefined;
|
|
172
171
|
notes?: string | undefined;
|
|
172
|
+
labels?: string[] | undefined;
|
|
173
173
|
dueDate?: string | undefined;
|
|
174
174
|
}>;
|
|
175
175
|
export declare const UpdateTaskInputSchema: z.ZodObject<{
|
|
@@ -184,27 +184,27 @@ export declare const UpdateTaskInputSchema: z.ZodObject<{
|
|
|
184
184
|
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
185
185
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
186
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
type?: "chore" | "feature" | "task" | "bug" | "epic" | "story" | undefined;
|
|
188
|
-
status?: "open" | "in_progress" | "blocked" | "done" | "wont_do" | undefined;
|
|
189
187
|
description?: string | undefined;
|
|
188
|
+
status?: "blocked" | "open" | "in_progress" | "done" | "wont_do" | undefined;
|
|
189
|
+
type?: "task" | "bug" | "feature" | "epic" | "chore" | "story" | undefined;
|
|
190
190
|
priority?: number | undefined;
|
|
191
191
|
title?: string | undefined;
|
|
192
|
-
labels?: string[] | undefined;
|
|
193
192
|
assignee?: string | null | undefined;
|
|
193
|
+
worktreeBranch?: string | null | undefined;
|
|
194
194
|
notes?: string | null | undefined;
|
|
195
|
+
labels?: string[] | undefined;
|
|
195
196
|
dueDate?: string | null | undefined;
|
|
196
|
-
worktreeBranch?: string | null | undefined;
|
|
197
197
|
}, {
|
|
198
|
-
type?: "chore" | "feature" | "task" | "bug" | "epic" | "story" | undefined;
|
|
199
|
-
status?: "open" | "in_progress" | "blocked" | "done" | "wont_do" | undefined;
|
|
200
198
|
description?: string | undefined;
|
|
199
|
+
status?: "blocked" | "open" | "in_progress" | "done" | "wont_do" | undefined;
|
|
200
|
+
type?: "task" | "bug" | "feature" | "epic" | "chore" | "story" | undefined;
|
|
201
201
|
priority?: number | undefined;
|
|
202
202
|
title?: string | undefined;
|
|
203
|
-
labels?: string[] | undefined;
|
|
204
203
|
assignee?: string | null | undefined;
|
|
204
|
+
worktreeBranch?: string | null | undefined;
|
|
205
205
|
notes?: string | null | undefined;
|
|
206
|
+
labels?: string[] | undefined;
|
|
206
207
|
dueDate?: string | null | undefined;
|
|
207
|
-
worktreeBranch?: string | null | undefined;
|
|
208
208
|
}>;
|
|
209
209
|
export declare const TaskFilterSchema: z.ZodObject<{
|
|
210
210
|
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["open", "in_progress", "blocked", "done", "wont_do"]>, z.ZodArray<z.ZodEnum<["open", "in_progress", "blocked", "done", "wont_do"]>, "many">]>>;
|
|
@@ -218,26 +218,26 @@ export declare const TaskFilterSchema: z.ZodObject<{
|
|
|
218
218
|
search: z.ZodOptional<z.ZodString>;
|
|
219
219
|
overdue: z.ZodOptional<z.ZodBoolean>;
|
|
220
220
|
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
type?: "chore" | "feature" | "task" | "bug" | "epic" | "story" | ("chore" | "feature" | "task" | "bug" | "epic" | "story")[] | undefined;
|
|
222
|
-
status?: "open" | "in_progress" | "blocked" | "done" | "wont_do" | ("open" | "in_progress" | "blocked" | "done" | "wont_do")[] | undefined;
|
|
223
|
-
priority?: number | number[] | undefined;
|
|
224
221
|
search?: string | undefined;
|
|
225
|
-
|
|
226
|
-
|
|
222
|
+
status?: "blocked" | "open" | "in_progress" | "done" | "wont_do" | ("blocked" | "open" | "in_progress" | "done" | "wont_do")[] | undefined;
|
|
223
|
+
type?: "task" | "bug" | "feature" | "epic" | "chore" | "story" | ("task" | "bug" | "feature" | "epic" | "chore" | "story")[] | undefined;
|
|
224
|
+
priority?: number | number[] | undefined;
|
|
227
225
|
assignee?: string | undefined;
|
|
226
|
+
parentId?: string | undefined;
|
|
228
227
|
isBlocked?: boolean | undefined;
|
|
229
228
|
isReady?: boolean | undefined;
|
|
229
|
+
labels?: string[] | undefined;
|
|
230
230
|
overdue?: boolean | undefined;
|
|
231
231
|
}, {
|
|
232
|
-
type?: "chore" | "feature" | "task" | "bug" | "epic" | "story" | ("chore" | "feature" | "task" | "bug" | "epic" | "story")[] | undefined;
|
|
233
|
-
status?: "open" | "in_progress" | "blocked" | "done" | "wont_do" | ("open" | "in_progress" | "blocked" | "done" | "wont_do")[] | undefined;
|
|
234
|
-
priority?: number | number[] | undefined;
|
|
235
232
|
search?: string | undefined;
|
|
236
|
-
|
|
237
|
-
|
|
233
|
+
status?: "blocked" | "open" | "in_progress" | "done" | "wont_do" | ("blocked" | "open" | "in_progress" | "done" | "wont_do")[] | undefined;
|
|
234
|
+
type?: "task" | "bug" | "feature" | "epic" | "chore" | "story" | ("task" | "bug" | "feature" | "epic" | "chore" | "story")[] | undefined;
|
|
235
|
+
priority?: number | number[] | undefined;
|
|
238
236
|
assignee?: string | undefined;
|
|
237
|
+
parentId?: string | undefined;
|
|
239
238
|
isBlocked?: boolean | undefined;
|
|
240
239
|
isReady?: boolean | undefined;
|
|
240
|
+
labels?: string[] | undefined;
|
|
241
241
|
overdue?: boolean | undefined;
|
|
242
242
|
}>;
|
|
243
243
|
export declare const PRIORITY_LABELS: Record<TaskPriority, string>;
|