ccqa 1.19.0 → 1.20.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/README.md +3 -2
- package/dist/bin/ccqa.mjs +519 -398
- package/dist/hub-client/index.d.mts +14 -8
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -217,14 +217,13 @@ declare const AuditNeedReportSchema: z.ZodObject<{
|
|
|
217
217
|
profile: z.ZodString;
|
|
218
218
|
specs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
219
219
|
because: z.ZodEnum<{
|
|
220
|
-
cannotTell: "cannotTell";
|
|
221
220
|
neverAudited: "neverAudited";
|
|
222
221
|
deployReached: "deployReached";
|
|
222
|
+
cannotTell: "cannotTell";
|
|
223
223
|
held: "held";
|
|
224
224
|
current: "current";
|
|
225
225
|
}>;
|
|
226
226
|
reason: z.ZodOptional<z.ZodEnum<{
|
|
227
|
-
notEvaluated: "notEvaluated";
|
|
228
227
|
noSelectionInRange: "noSelectionInRange";
|
|
229
228
|
selectionUnknown: "selectionUnknown";
|
|
230
229
|
noDeployLog: "noDeployLog";
|
|
@@ -251,26 +250,33 @@ declare const RerunReportSchema: z.ZodObject<{
|
|
|
251
250
|
needsRepair: "needsRepair";
|
|
252
251
|
rerunNeeded: "rerunNeeded";
|
|
253
252
|
verified: "verified";
|
|
254
|
-
unanswerable: "unanswerable";
|
|
255
253
|
}>;
|
|
256
254
|
audit: z.ZodEnum<{
|
|
257
255
|
due: "due";
|
|
258
256
|
clean: "clean";
|
|
259
257
|
drifted: "drifted";
|
|
260
258
|
undecided: "undecided";
|
|
261
|
-
cannotTell: "cannotTell";
|
|
262
259
|
}>;
|
|
263
260
|
execution: z.ZodEnum<{
|
|
264
261
|
passed: "passed";
|
|
265
262
|
failed: "failed";
|
|
263
|
+
stale: "stale";
|
|
266
264
|
neverRun: "neverRun";
|
|
267
265
|
}>;
|
|
268
266
|
driftLabel: z.ZodOptional<z.ZodEnum<{
|
|
269
267
|
TEST_DRIFT: "TEST_DRIFT";
|
|
270
268
|
SPEC_CHANGE: "SPEC_CHANGE";
|
|
271
269
|
}>>;
|
|
272
|
-
|
|
273
|
-
|
|
270
|
+
auditAssumedReached: z.ZodOptional<z.ZodEnum<{
|
|
271
|
+
noSelectionInRange: "noSelectionInRange";
|
|
272
|
+
selectionUnknown: "selectionUnknown";
|
|
273
|
+
noDeployLog: "noDeployLog";
|
|
274
|
+
unknownDeployedSha: "unknownDeployedSha";
|
|
275
|
+
ambiguousDeployedSha: "ambiguousDeployedSha";
|
|
276
|
+
deployedShaNotInLog: "deployedShaNotInLog";
|
|
277
|
+
gapInRange: "gapInRange";
|
|
278
|
+
}>>;
|
|
279
|
+
executionAssumedReached: z.ZodOptional<z.ZodEnum<{
|
|
274
280
|
noSelectionInRange: "noSelectionInRange";
|
|
275
281
|
selectionUnknown: "selectionUnknown";
|
|
276
282
|
noDeployLog: "noDeployLog";
|
|
@@ -412,8 +418,8 @@ declare const ReportSpecResultSchema: z.ZodObject<{
|
|
|
412
418
|
title: z.ZodNullable<z.ZodString>;
|
|
413
419
|
target: z.ZodOptional<z.ZodString>;
|
|
414
420
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
415
|
-
deterministic: "deterministic";
|
|
416
421
|
live: "live";
|
|
422
|
+
deterministic: "deterministic";
|
|
417
423
|
}>>;
|
|
418
424
|
status: z.ZodEnum<{
|
|
419
425
|
passed: "passed";
|
|
@@ -575,8 +581,8 @@ declare const RunReportDataSchema: z.ZodObject<{
|
|
|
575
581
|
title: z.ZodNullable<z.ZodString>;
|
|
576
582
|
target: z.ZodOptional<z.ZodString>;
|
|
577
583
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
578
|
-
deterministic: "deterministic";
|
|
579
584
|
live: "live";
|
|
585
|
+
deterministic: "deterministic";
|
|
580
586
|
}>>;
|
|
581
587
|
status: z.ZodEnum<{
|
|
582
588
|
passed: "passed";
|
package/dist/package.json
CHANGED