ccqa 1.23.0 → 1.25.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/bin/ccqa.mjs +608 -231
- package/dist/hub-client/index.d.mts +17 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ declare const RunSchema: z.ZodObject<{
|
|
|
37
37
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
38
38
|
run: "run";
|
|
39
39
|
drift: "drift";
|
|
40
|
+
record: "record";
|
|
40
41
|
}>>;
|
|
41
42
|
drift: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
42
43
|
specs: z.ZodNumber;
|
|
@@ -286,6 +287,7 @@ declare const RerunReportSchema: z.ZodObject<{
|
|
|
286
287
|
deployedShaNotInLog: "deployedShaNotInLog";
|
|
287
288
|
gapInRange: "gapInRange";
|
|
288
289
|
}>>;
|
|
290
|
+
specChangedSince: z.ZodOptional<z.ZodString>;
|
|
289
291
|
heldBy: z.ZodNullable<z.ZodObject<{
|
|
290
292
|
kind: z.ZodEnum<{
|
|
291
293
|
run: "run";
|
|
@@ -381,6 +383,10 @@ declare const DriftLedgerResponseSchema: z.ZodObject<{
|
|
|
381
383
|
spec: "spec";
|
|
382
384
|
generated: "generated";
|
|
383
385
|
}>>;
|
|
386
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
387
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
388
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
389
|
+
}>>;
|
|
384
390
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
385
391
|
headline: z.ZodOptional<z.ZodString>;
|
|
386
392
|
gitHead: z.ZodString;
|
|
@@ -478,6 +484,10 @@ declare const ReportSpecResultSchema: z.ZodObject<{
|
|
|
478
484
|
spec: "spec";
|
|
479
485
|
generated: "generated";
|
|
480
486
|
}>>;
|
|
487
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
488
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
489
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
490
|
+
}>>;
|
|
481
491
|
}, z.core.$strip>>;
|
|
482
492
|
analysisSkipped: z.ZodNullable<z.ZodString>;
|
|
483
493
|
customPromptVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -564,6 +574,7 @@ declare const RunReportDataSchema: z.ZodObject<{
|
|
|
564
574
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
565
575
|
run: "run";
|
|
566
576
|
drift: "drift";
|
|
577
|
+
record: "record";
|
|
567
578
|
}>>;
|
|
568
579
|
createdAt: z.ZodString;
|
|
569
580
|
runId: z.ZodNullable<z.ZodString>;
|
|
@@ -651,6 +662,10 @@ declare const RunReportDataSchema: z.ZodObject<{
|
|
|
651
662
|
spec: "spec";
|
|
652
663
|
generated: "generated";
|
|
653
664
|
}>>;
|
|
665
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
666
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
667
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
668
|
+
}>>;
|
|
654
669
|
}, z.core.$strip>>;
|
|
655
670
|
analysisSkipped: z.ZodNullable<z.ZodString>;
|
|
656
671
|
customPromptVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -833,7 +848,7 @@ interface HubClient {
|
|
|
833
848
|
project: string;
|
|
834
849
|
branch?: string;
|
|
835
850
|
profile?: string;
|
|
836
|
-
kind?: "
|
|
851
|
+
kind?: Run["kind"];
|
|
837
852
|
deployedSha?: string;
|
|
838
853
|
}): Promise<Run>;
|
|
839
854
|
/**
|
|
@@ -851,7 +866,7 @@ interface HubClient {
|
|
|
851
866
|
project: string;
|
|
852
867
|
branch?: string;
|
|
853
868
|
profile?: string;
|
|
854
|
-
kind?: "
|
|
869
|
+
kind?: Run["kind"];
|
|
855
870
|
gitHead?: string;
|
|
856
871
|
deployedSha?: string;
|
|
857
872
|
/** CI run id (GITHUB_RUN_ID) and its run URL, stamped at open time so an
|
package/dist/package.json
CHANGED