ccqa 1.24.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 +511 -227
- package/dist/hub-client/index.d.mts +16 -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;
|
|
@@ -382,6 +383,10 @@ declare const DriftLedgerResponseSchema: z.ZodObject<{
|
|
|
382
383
|
spec: "spec";
|
|
383
384
|
generated: "generated";
|
|
384
385
|
}>>;
|
|
386
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
387
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
388
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
389
|
+
}>>;
|
|
385
390
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
386
391
|
headline: z.ZodOptional<z.ZodString>;
|
|
387
392
|
gitHead: z.ZodString;
|
|
@@ -479,6 +484,10 @@ declare const ReportSpecResultSchema: z.ZodObject<{
|
|
|
479
484
|
spec: "spec";
|
|
480
485
|
generated: "generated";
|
|
481
486
|
}>>;
|
|
487
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
488
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
489
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
490
|
+
}>>;
|
|
482
491
|
}, z.core.$strip>>;
|
|
483
492
|
analysisSkipped: z.ZodNullable<z.ZodString>;
|
|
484
493
|
customPromptVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -565,6 +574,7 @@ declare const RunReportDataSchema: z.ZodObject<{
|
|
|
565
574
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
566
575
|
run: "run";
|
|
567
576
|
drift: "drift";
|
|
577
|
+
record: "record";
|
|
568
578
|
}>>;
|
|
569
579
|
createdAt: z.ZodString;
|
|
570
580
|
runId: z.ZodNullable<z.ZodString>;
|
|
@@ -652,6 +662,10 @@ declare const RunReportDataSchema: z.ZodObject<{
|
|
|
652
662
|
spec: "spec";
|
|
653
663
|
generated: "generated";
|
|
654
664
|
}>>;
|
|
665
|
+
specChangeKind: z.ZodOptional<z.ZodEnum<{
|
|
666
|
+
FEATURE_REMOVED: "FEATURE_REMOVED";
|
|
667
|
+
BEHAVIOUR_CHANGED: "BEHAVIOUR_CHANGED";
|
|
668
|
+
}>>;
|
|
655
669
|
}, z.core.$strip>>;
|
|
656
670
|
analysisSkipped: z.ZodNullable<z.ZodString>;
|
|
657
671
|
customPromptVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -834,7 +848,7 @@ interface HubClient {
|
|
|
834
848
|
project: string;
|
|
835
849
|
branch?: string;
|
|
836
850
|
profile?: string;
|
|
837
|
-
kind?: "
|
|
851
|
+
kind?: Run["kind"];
|
|
838
852
|
deployedSha?: string;
|
|
839
853
|
}): Promise<Run>;
|
|
840
854
|
/**
|
|
@@ -852,7 +866,7 @@ interface HubClient {
|
|
|
852
866
|
project: string;
|
|
853
867
|
branch?: string;
|
|
854
868
|
profile?: string;
|
|
855
|
-
kind?: "
|
|
869
|
+
kind?: Run["kind"];
|
|
856
870
|
gitHead?: string;
|
|
857
871
|
deployedSha?: string;
|
|
858
872
|
/** CI run id (GITHUB_RUN_ID) and its run URL, stamped at open time so an
|
package/dist/package.json
CHANGED