@harness-engineering/types 0.8.0 → 0.9.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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,8 @@ interface ExternalTicket {
|
|
|
14
14
|
interface ExternalTicketState {
|
|
15
15
|
/** External identifier */
|
|
16
16
|
externalId: string;
|
|
17
|
+
/** Ticket title in the external service */
|
|
18
|
+
title: string;
|
|
17
19
|
/** External status (e.g., "open", "closed") */
|
|
18
20
|
status: string;
|
|
19
21
|
/** External labels (used for status disambiguation on GitHub) */
|
|
@@ -609,7 +611,7 @@ type SkillError = {
|
|
|
609
611
|
/**
|
|
610
612
|
* Names of standard CI checks.
|
|
611
613
|
*/
|
|
612
|
-
type CICheckName = 'validate' | 'deps' | 'docs' | 'entropy' | 'security' | 'perf' | 'phase-gate' | 'arch';
|
|
614
|
+
type CICheckName = 'validate' | 'deps' | 'docs' | 'entropy' | 'security' | 'perf' | 'phase-gate' | 'arch' | 'traceability';
|
|
613
615
|
/**
|
|
614
616
|
* Status of a CI check.
|
|
615
617
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ interface ExternalTicket {
|
|
|
14
14
|
interface ExternalTicketState {
|
|
15
15
|
/** External identifier */
|
|
16
16
|
externalId: string;
|
|
17
|
+
/** Ticket title in the external service */
|
|
18
|
+
title: string;
|
|
17
19
|
/** External status (e.g., "open", "closed") */
|
|
18
20
|
status: string;
|
|
19
21
|
/** External labels (used for status disambiguation on GitHub) */
|
|
@@ -609,7 +611,7 @@ type SkillError = {
|
|
|
609
611
|
/**
|
|
610
612
|
* Names of standard CI checks.
|
|
611
613
|
*/
|
|
612
|
-
type CICheckName = 'validate' | 'deps' | 'docs' | 'entropy' | 'security' | 'perf' | 'phase-gate' | 'arch';
|
|
614
|
+
type CICheckName = 'validate' | 'deps' | 'docs' | 'entropy' | 'security' | 'perf' | 'phase-gate' | 'arch' | 'traceability';
|
|
613
615
|
/**
|
|
614
616
|
* Status of a CI check.
|
|
615
617
|
*/
|