@cat-factory/contracts 0.171.0 → 0.173.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/execution.d.ts +45 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/pr-report.d.ts +117 -1
- package/dist/pr-report.d.ts.map +1 -1
- package/dist/pr-report.js +65 -1
- package/dist/pr-report.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +30 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +120 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +15 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +75 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/spec.d.ts +1 -0
- package/dist/routes/spec.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +161 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/tasks.js +32 -1
- package/dist/routes/tasks.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +45 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +30 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +15 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/spec.d.ts +62 -0
- package/dist/spec.d.ts.map +1 -1
- package/dist/spec.js +36 -0
- package/dist/spec.js.map +1 -1
- package/dist/tasks.d.ts +73 -0
- package/dist/tasks.d.ts.map +1 -1
- package/dist/tasks.js +56 -0
- package/dist/tasks.js.map +1 -1
- package/dist/testing.d.ts +54 -0
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +36 -0
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
package/dist/routes/tasks.d.ts
CHANGED
|
@@ -236,6 +236,167 @@ export declare const diagnoseTaskSourceContract: {
|
|
|
236
236
|
}, undefined>;
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
|
+
export declare const getTaskSourceWebhookContract: {
|
|
240
|
+
readonly method: "get";
|
|
241
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
242
|
+
source: v.StringSchema<undefined>;
|
|
243
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
244
|
+
readonly pathResolver: ({ source }: {
|
|
245
|
+
source: string;
|
|
246
|
+
}) => string;
|
|
247
|
+
readonly responsesByStatusCode: {
|
|
248
|
+
readonly '4xx': v.ObjectSchema<{
|
|
249
|
+
readonly error: v.ObjectSchema<{
|
|
250
|
+
readonly code: v.StringSchema<undefined>;
|
|
251
|
+
readonly message: v.StringSchema<undefined>;
|
|
252
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
253
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
254
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
255
|
+
readonly message: v.StringSchema<undefined>;
|
|
256
|
+
}, undefined>, undefined>, undefined>;
|
|
257
|
+
}, undefined>;
|
|
258
|
+
}, undefined>;
|
|
259
|
+
readonly '5xx': v.ObjectSchema<{
|
|
260
|
+
readonly error: v.ObjectSchema<{
|
|
261
|
+
readonly code: v.StringSchema<undefined>;
|
|
262
|
+
readonly message: v.StringSchema<undefined>;
|
|
263
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
264
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
265
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
266
|
+
readonly message: v.StringSchema<undefined>;
|
|
267
|
+
}, undefined>, undefined>, undefined>;
|
|
268
|
+
}, undefined>;
|
|
269
|
+
}, undefined>;
|
|
270
|
+
readonly 200: v.ObjectSchema<{
|
|
271
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
272
|
+
readonly supported: v.BooleanSchema<undefined>;
|
|
273
|
+
readonly configured: v.BooleanSchema<undefined>;
|
|
274
|
+
readonly deliveryPath: v.StringSchema<undefined>;
|
|
275
|
+
readonly replyAllow: v.StringSchema<undefined>;
|
|
276
|
+
}, undefined>;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
export declare const configureTaskSourceWebhookContract: {
|
|
280
|
+
readonly method: "post";
|
|
281
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
282
|
+
source: v.StringSchema<undefined>;
|
|
283
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
284
|
+
readonly pathResolver: ({ source }: {
|
|
285
|
+
source: string;
|
|
286
|
+
}) => string;
|
|
287
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
288
|
+
readonly replyAllow: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
289
|
+
}, undefined>;
|
|
290
|
+
readonly responsesByStatusCode: {
|
|
291
|
+
readonly '4xx': v.ObjectSchema<{
|
|
292
|
+
readonly error: v.ObjectSchema<{
|
|
293
|
+
readonly code: v.StringSchema<undefined>;
|
|
294
|
+
readonly message: v.StringSchema<undefined>;
|
|
295
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
296
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
297
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
298
|
+
readonly message: v.StringSchema<undefined>;
|
|
299
|
+
}, undefined>, undefined>, undefined>;
|
|
300
|
+
}, undefined>;
|
|
301
|
+
}, undefined>;
|
|
302
|
+
readonly '5xx': v.ObjectSchema<{
|
|
303
|
+
readonly error: v.ObjectSchema<{
|
|
304
|
+
readonly code: v.StringSchema<undefined>;
|
|
305
|
+
readonly message: v.StringSchema<undefined>;
|
|
306
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
307
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
308
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
309
|
+
readonly message: v.StringSchema<undefined>;
|
|
310
|
+
}, undefined>, undefined>, undefined>;
|
|
311
|
+
}, undefined>;
|
|
312
|
+
}, undefined>;
|
|
313
|
+
readonly 201: v.ObjectSchema<{
|
|
314
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
315
|
+
readonly supported: v.BooleanSchema<undefined>;
|
|
316
|
+
readonly configured: v.BooleanSchema<undefined>;
|
|
317
|
+
readonly deliveryPath: v.StringSchema<undefined>;
|
|
318
|
+
readonly replyAllow: v.StringSchema<undefined>;
|
|
319
|
+
readonly secret: v.StringSchema<undefined>;
|
|
320
|
+
}, undefined>;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
export declare const updateTaskSourceWebhookContract: {
|
|
324
|
+
readonly method: "patch";
|
|
325
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
326
|
+
source: v.StringSchema<undefined>;
|
|
327
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
328
|
+
readonly pathResolver: ({ source }: {
|
|
329
|
+
source: string;
|
|
330
|
+
}) => string;
|
|
331
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
332
|
+
readonly replyAllow: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
333
|
+
}, undefined>;
|
|
334
|
+
readonly responsesByStatusCode: {
|
|
335
|
+
readonly '4xx': v.ObjectSchema<{
|
|
336
|
+
readonly error: v.ObjectSchema<{
|
|
337
|
+
readonly code: v.StringSchema<undefined>;
|
|
338
|
+
readonly message: v.StringSchema<undefined>;
|
|
339
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
340
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
341
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
342
|
+
readonly message: v.StringSchema<undefined>;
|
|
343
|
+
}, undefined>, undefined>, undefined>;
|
|
344
|
+
}, undefined>;
|
|
345
|
+
}, undefined>;
|
|
346
|
+
readonly '5xx': v.ObjectSchema<{
|
|
347
|
+
readonly error: v.ObjectSchema<{
|
|
348
|
+
readonly code: v.StringSchema<undefined>;
|
|
349
|
+
readonly message: v.StringSchema<undefined>;
|
|
350
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
351
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
352
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
353
|
+
readonly message: v.StringSchema<undefined>;
|
|
354
|
+
}, undefined>, undefined>, undefined>;
|
|
355
|
+
}, undefined>;
|
|
356
|
+
}, undefined>;
|
|
357
|
+
readonly 200: v.ObjectSchema<{
|
|
358
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
359
|
+
readonly supported: v.BooleanSchema<undefined>;
|
|
360
|
+
readonly configured: v.BooleanSchema<undefined>;
|
|
361
|
+
readonly deliveryPath: v.StringSchema<undefined>;
|
|
362
|
+
readonly replyAllow: v.StringSchema<undefined>;
|
|
363
|
+
}, undefined>;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
export declare const clearTaskSourceWebhookContract: {
|
|
367
|
+
readonly method: "delete";
|
|
368
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
369
|
+
source: v.StringSchema<undefined>;
|
|
370
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
371
|
+
readonly pathResolver: ({ source }: {
|
|
372
|
+
source: string;
|
|
373
|
+
}) => string;
|
|
374
|
+
readonly responsesByStatusCode: {
|
|
375
|
+
readonly '4xx': v.ObjectSchema<{
|
|
376
|
+
readonly error: v.ObjectSchema<{
|
|
377
|
+
readonly code: v.StringSchema<undefined>;
|
|
378
|
+
readonly message: v.StringSchema<undefined>;
|
|
379
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
380
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
381
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
382
|
+
readonly message: v.StringSchema<undefined>;
|
|
383
|
+
}, undefined>, undefined>, undefined>;
|
|
384
|
+
}, undefined>;
|
|
385
|
+
}, undefined>;
|
|
386
|
+
readonly '5xx': v.ObjectSchema<{
|
|
387
|
+
readonly error: v.ObjectSchema<{
|
|
388
|
+
readonly code: v.StringSchema<undefined>;
|
|
389
|
+
readonly message: v.StringSchema<undefined>;
|
|
390
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
391
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
392
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
393
|
+
readonly message: v.StringSchema<undefined>;
|
|
394
|
+
}, undefined>, undefined>, undefined>;
|
|
395
|
+
}, undefined>;
|
|
396
|
+
}, undefined>;
|
|
397
|
+
readonly 204: typeof ContractNoBody;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
239
400
|
export declare const listLinearTeamsContract: {
|
|
240
401
|
readonly method: "get";
|
|
241
402
|
readonly pathResolver: () => string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AA2D5B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMrC,CAAA;AAKF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7C,CAAA;AAIF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAW5B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKtC,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA"}
|
package/dist/routes/tasks.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ContractNoBody, defineApiContract } from '@toad-contracts/valibot';
|
|
2
2
|
import * as v from 'valibot';
|
|
3
3
|
import { blockSchema } from '../entities.js';
|
|
4
|
-
import { connectTaskSourceSchema, createTaskFromIssueSchema, importTaskSchema, linearTeamSchema, linkTaskSchema, searchTasksSchema, setTaskSourceEnabledSchema, sourceTaskSchema, spawnEpicSchema, taskConnectionSchema, taskSearchResultSchema, taskSourceDiagnosticSchema, taskSourceStateSchema, } from '../tasks.js';
|
|
4
|
+
import { configureTaskSourceWebhookSchema, connectTaskSourceSchema, createTaskFromIssueSchema, importTaskSchema, linearTeamSchema, linkTaskSchema, searchTasksSchema, setTaskSourceEnabledSchema, sourceTaskSchema, spawnEpicSchema, taskConnectionSchema, taskSearchResultSchema, taskSourceDiagnosticSchema, taskSourceStateSchema, taskSourceWebhookSchema, taskSourceWebhookSecretSchema, updateTaskSourceWebhookSchema, } from '../tasks.js';
|
|
5
5
|
import { errorResponses, singleStringParam } from './_shared.js';
|
|
6
6
|
// ---------------------------------------------------------------------------
|
|
7
7
|
// Task-source route contracts: source discovery + per-workspace toggle,
|
|
@@ -73,6 +73,37 @@ export const diagnoseTaskSourceContract = defineApiContract({
|
|
|
73
73
|
requestBodySchema: ContractNoBody,
|
|
74
74
|
responsesByStatusCode: { 200: taskSourceDiagnosticSchema, ...errorResponses },
|
|
75
75
|
});
|
|
76
|
+
// Inbound webhooks for one connection: read the delivery path + whether a secret is stored, mint
|
|
77
|
+
// (rotate) that secret, or clear it. The minted secret is returned EXACTLY ONCE — the read route
|
|
78
|
+
// never echoes it back. Admin-gated with the rest of this controller (`integrations.manage`).
|
|
79
|
+
export const getTaskSourceWebhookContract = defineApiContract({
|
|
80
|
+
method: 'get',
|
|
81
|
+
requestPathParamsSchema: sourceParams,
|
|
82
|
+
pathResolver: ({ source }) => `/task-sources/${source}/webhook`,
|
|
83
|
+
responsesByStatusCode: { 200: taskSourceWebhookSchema, ...errorResponses },
|
|
84
|
+
});
|
|
85
|
+
export const configureTaskSourceWebhookContract = defineApiContract({
|
|
86
|
+
method: 'post',
|
|
87
|
+
requestPathParamsSchema: sourceParams,
|
|
88
|
+
pathResolver: ({ source }) => `/task-sources/${source}/webhook`,
|
|
89
|
+
requestBodySchema: configureTaskSourceWebhookSchema,
|
|
90
|
+
responsesByStatusCode: { 201: taskSourceWebhookSecretSchema, ...errorResponses },
|
|
91
|
+
});
|
|
92
|
+
// Edit the reply allow-list WITHOUT rotating the secret — see `updateTaskSourceWebhookSchema` for
|
|
93
|
+
// why this is not folded into the mint above.
|
|
94
|
+
export const updateTaskSourceWebhookContract = defineApiContract({
|
|
95
|
+
method: 'patch',
|
|
96
|
+
requestPathParamsSchema: sourceParams,
|
|
97
|
+
pathResolver: ({ source }) => `/task-sources/${source}/webhook`,
|
|
98
|
+
requestBodySchema: updateTaskSourceWebhookSchema,
|
|
99
|
+
responsesByStatusCode: { 200: taskSourceWebhookSchema, ...errorResponses },
|
|
100
|
+
});
|
|
101
|
+
export const clearTaskSourceWebhookContract = defineApiContract({
|
|
102
|
+
method: 'delete',
|
|
103
|
+
requestPathParamsSchema: sourceParams,
|
|
104
|
+
pathResolver: ({ source }) => `/task-sources/${source}/webhook`,
|
|
105
|
+
responsesByStatusCode: { 204: ContractNoBody, ...errorResponses },
|
|
106
|
+
});
|
|
76
107
|
// Linear-specific: list the connection's teams (for the ticket-filing team picker)
|
|
77
108
|
// and start the OAuth "Connect with Linear" flow (returns the authorize URL).
|
|
78
109
|
export const listLinearTeamsContract = defineApiContract({
|
package/dist/routes/tasks.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EACL,uBAAuB,EACvB,yBAAyB,EACzB,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,0BAA0B,EAC1B,gBAAgB,EAChB,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EACtB,0BAA0B,EAC1B,qBAAqB,
|
|
1
|
+
{"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"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"}
|
|
@@ -126,6 +126,11 @@ export declare const approveVisualConfirmContract: {
|
|
|
126
126
|
readonly detail: v.StringSchema<undefined>;
|
|
127
127
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
128
128
|
}, undefined>, undefined>;
|
|
129
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
130
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
131
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
132
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
133
|
+
}, undefined>, undefined>, undefined>;
|
|
129
134
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
130
135
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
131
136
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -152,6 +157,11 @@ export declare const approveVisualConfirmContract: {
|
|
|
152
157
|
detail: string;
|
|
153
158
|
severity: "critical" | "high" | "low" | "medium";
|
|
154
159
|
}[];
|
|
160
|
+
requirementVerdicts?: {
|
|
161
|
+
requirementId: string;
|
|
162
|
+
status: "met" | "not_covered" | "not_met";
|
|
163
|
+
detail?: string | undefined;
|
|
164
|
+
}[] | undefined;
|
|
155
165
|
environment?: "ephemeral" | "local" | undefined;
|
|
156
166
|
screenshots?: {
|
|
157
167
|
view: string;
|
|
@@ -178,6 +188,11 @@ export declare const approveVisualConfirmContract: {
|
|
|
178
188
|
detail: string;
|
|
179
189
|
severity: "critical" | "high" | "low" | "medium";
|
|
180
190
|
}[];
|
|
191
|
+
requirementVerdicts?: {
|
|
192
|
+
requirementId: string;
|
|
193
|
+
status: "met" | "not_covered" | "not_met";
|
|
194
|
+
detail?: string | undefined;
|
|
195
|
+
}[] | undefined;
|
|
181
196
|
environment?: "ephemeral" | "local" | undefined;
|
|
182
197
|
screenshots?: {
|
|
183
198
|
view: string;
|
|
@@ -1048,6 +1063,11 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1048
1063
|
readonly detail: v.StringSchema<undefined>;
|
|
1049
1064
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
1050
1065
|
}, undefined>, undefined>;
|
|
1066
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1067
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
1068
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
1069
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1070
|
+
}, undefined>, undefined>, undefined>;
|
|
1051
1071
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1052
1072
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1053
1073
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -1074,6 +1094,11 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1074
1094
|
detail: string;
|
|
1075
1095
|
severity: "critical" | "high" | "low" | "medium";
|
|
1076
1096
|
}[];
|
|
1097
|
+
requirementVerdicts?: {
|
|
1098
|
+
requirementId: string;
|
|
1099
|
+
status: "met" | "not_covered" | "not_met";
|
|
1100
|
+
detail?: string | undefined;
|
|
1101
|
+
}[] | undefined;
|
|
1077
1102
|
environment?: "ephemeral" | "local" | undefined;
|
|
1078
1103
|
screenshots?: {
|
|
1079
1104
|
view: string;
|
|
@@ -1100,6 +1125,11 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1100
1125
|
detail: string;
|
|
1101
1126
|
severity: "critical" | "high" | "low" | "medium";
|
|
1102
1127
|
}[];
|
|
1128
|
+
requirementVerdicts?: {
|
|
1129
|
+
requirementId: string;
|
|
1130
|
+
status: "met" | "not_covered" | "not_met";
|
|
1131
|
+
detail?: string | undefined;
|
|
1132
|
+
}[] | undefined;
|
|
1103
1133
|
environment?: "ephemeral" | "local" | undefined;
|
|
1104
1134
|
screenshots?: {
|
|
1105
1135
|
view: string;
|
|
@@ -1968,6 +1998,11 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
1968
1998
|
readonly detail: v.StringSchema<undefined>;
|
|
1969
1999
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
1970
2000
|
}, undefined>, undefined>;
|
|
2001
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2002
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
2003
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
2004
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2005
|
+
}, undefined>, undefined>, undefined>;
|
|
1971
2006
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1972
2007
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1973
2008
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -1994,6 +2029,11 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
1994
2029
|
detail: string;
|
|
1995
2030
|
severity: "critical" | "high" | "low" | "medium";
|
|
1996
2031
|
}[];
|
|
2032
|
+
requirementVerdicts?: {
|
|
2033
|
+
requirementId: string;
|
|
2034
|
+
status: "met" | "not_covered" | "not_met";
|
|
2035
|
+
detail?: string | undefined;
|
|
2036
|
+
}[] | undefined;
|
|
1997
2037
|
environment?: "ephemeral" | "local" | undefined;
|
|
1998
2038
|
screenshots?: {
|
|
1999
2039
|
view: string;
|
|
@@ -2020,6 +2060,11 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
2020
2060
|
detail: string;
|
|
2021
2061
|
severity: "critical" | "high" | "low" | "medium";
|
|
2022
2062
|
}[];
|
|
2063
|
+
requirementVerdicts?: {
|
|
2064
|
+
requirementId: string;
|
|
2065
|
+
status: "met" | "not_covered" | "not_met";
|
|
2066
|
+
detail?: string | undefined;
|
|
2067
|
+
}[] | undefined;
|
|
2023
2068
|
environment?: "ephemeral" | "local" | undefined;
|
|
2024
2069
|
screenshots?: {
|
|
2025
2070
|
view: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAA"}
|
|
@@ -589,6 +589,11 @@ export declare const createWorkspaceContract: {
|
|
|
589
589
|
readonly detail: v.StringSchema<undefined>;
|
|
590
590
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
591
591
|
}, undefined>, undefined>;
|
|
592
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
593
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
594
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
595
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
596
|
+
}, undefined>, undefined>, undefined>;
|
|
592
597
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
593
598
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
594
599
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -615,6 +620,11 @@ export declare const createWorkspaceContract: {
|
|
|
615
620
|
detail: string;
|
|
616
621
|
severity: "critical" | "high" | "low" | "medium";
|
|
617
622
|
}[];
|
|
623
|
+
requirementVerdicts?: {
|
|
624
|
+
requirementId: string;
|
|
625
|
+
status: "met" | "not_covered" | "not_met";
|
|
626
|
+
detail?: string | undefined;
|
|
627
|
+
}[] | undefined;
|
|
618
628
|
environment?: "ephemeral" | "local" | undefined;
|
|
619
629
|
screenshots?: {
|
|
620
630
|
view: string;
|
|
@@ -641,6 +651,11 @@ export declare const createWorkspaceContract: {
|
|
|
641
651
|
detail: string;
|
|
642
652
|
severity: "critical" | "high" | "low" | "medium";
|
|
643
653
|
}[];
|
|
654
|
+
requirementVerdicts?: {
|
|
655
|
+
requirementId: string;
|
|
656
|
+
status: "met" | "not_covered" | "not_met";
|
|
657
|
+
detail?: string | undefined;
|
|
658
|
+
}[] | undefined;
|
|
644
659
|
environment?: "ephemeral" | "local" | undefined;
|
|
645
660
|
screenshots?: {
|
|
646
661
|
view: string;
|
|
@@ -3066,6 +3081,11 @@ export declare const getWorkspaceContract: {
|
|
|
3066
3081
|
readonly detail: v.StringSchema<undefined>;
|
|
3067
3082
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
3068
3083
|
}, undefined>, undefined>;
|
|
3084
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3085
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
3086
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
3087
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3088
|
+
}, undefined>, undefined>, undefined>;
|
|
3069
3089
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
3070
3090
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3071
3091
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -3092,6 +3112,11 @@ export declare const getWorkspaceContract: {
|
|
|
3092
3112
|
detail: string;
|
|
3093
3113
|
severity: "critical" | "high" | "low" | "medium";
|
|
3094
3114
|
}[];
|
|
3115
|
+
requirementVerdicts?: {
|
|
3116
|
+
requirementId: string;
|
|
3117
|
+
status: "met" | "not_covered" | "not_met";
|
|
3118
|
+
detail?: string | undefined;
|
|
3119
|
+
}[] | undefined;
|
|
3095
3120
|
environment?: "ephemeral" | "local" | undefined;
|
|
3096
3121
|
screenshots?: {
|
|
3097
3122
|
view: string;
|
|
@@ -3118,6 +3143,11 @@ export declare const getWorkspaceContract: {
|
|
|
3118
3143
|
detail: string;
|
|
3119
3144
|
severity: "critical" | "high" | "low" | "medium";
|
|
3120
3145
|
}[];
|
|
3146
|
+
requirementVerdicts?: {
|
|
3147
|
+
requirementId: string;
|
|
3148
|
+
status: "met" | "not_covered" | "not_met";
|
|
3149
|
+
detail?: string | undefined;
|
|
3150
|
+
}[] | undefined;
|
|
3121
3151
|
environment?: "ephemeral" | "local" | undefined;
|
|
3122
3152
|
screenshots?: {
|
|
3123
3153
|
view: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA"}
|
package/dist/snapshot.d.ts
CHANGED
|
@@ -516,6 +516,11 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
516
516
|
readonly detail: v.StringSchema<undefined>;
|
|
517
517
|
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
518
518
|
}, undefined>, undefined>;
|
|
519
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
520
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
521
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
522
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
523
|
+
}, undefined>, undefined>, undefined>;
|
|
519
524
|
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
520
525
|
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
521
526
|
readonly view: v.StringSchema<undefined>;
|
|
@@ -542,6 +547,11 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
542
547
|
detail: string;
|
|
543
548
|
severity: "critical" | "high" | "low" | "medium";
|
|
544
549
|
}[];
|
|
550
|
+
requirementVerdicts?: {
|
|
551
|
+
requirementId: string;
|
|
552
|
+
status: "met" | "not_covered" | "not_met";
|
|
553
|
+
detail?: string | undefined;
|
|
554
|
+
}[] | undefined;
|
|
545
555
|
environment?: "ephemeral" | "local" | undefined;
|
|
546
556
|
screenshots?: {
|
|
547
557
|
view: string;
|
|
@@ -568,6 +578,11 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
568
578
|
detail: string;
|
|
569
579
|
severity: "critical" | "high" | "low" | "medium";
|
|
570
580
|
}[];
|
|
581
|
+
requirementVerdicts?: {
|
|
582
|
+
requirementId: string;
|
|
583
|
+
status: "met" | "not_covered" | "not_met";
|
|
584
|
+
detail?: string | undefined;
|
|
585
|
+
}[] | undefined;
|
|
571
586
|
environment?: "ephemeral" | "local" | undefined;
|
|
572
587
|
screenshots?: {
|
|
573
588
|
view: string;
|
package/dist/snapshot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAqC5B,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAqC5B,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;IAOH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;IAGH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;;OASG;;;;QAjLH;;;;;WAKG;;;;;;QALH;;;;;WAKG;;;IA+KH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;OAKG;;;;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|