@holdpoint/types 0.1.0-alpha.6 → 0.1.0-alpha.8

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ interface HoldpointConfig {
57
57
  engines?: {
58
58
  claude?: {
59
59
  stop_command?: string;
60
+ live_command?: string;
60
61
  };
61
62
  codex?: {
62
63
  stop_command?: string;
@@ -86,7 +87,6 @@ interface ValidationResult {
86
87
  errors: ValidationError[];
87
88
  }
88
89
  type AgentType = "copilot" | "claude" | "cursor" | "codex" | "unknown";
89
- type StackType = "typescript" | "python" | "go" | "nextjs" | "fullstack" | "unknown";
90
90
  /** Result of a single check within a run (cmd or prompt). */
91
91
  interface CheckRunResult {
92
92
  id: string;
@@ -123,4 +123,4 @@ interface CheckReports {
123
123
  runs: CheckRun[];
124
124
  }
125
125
 
126
- export type { AgentType, CheckDef, CheckReports, CheckResult, CheckRun, CheckRunResult, CheckStatus, ConditionDef, ConditionOperator, HoldpointConfig, HoldpointContext, HookEvent, StackType, ValidationError, ValidationResult, WhenScope };
126
+ export type { AgentType, CheckDef, CheckReports, CheckResult, CheckRun, CheckRunResult, CheckStatus, ConditionDef, ConditionOperator, HoldpointConfig, HoldpointContext, HookEvent, ValidationError, ValidationResult, WhenScope };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holdpoint/types",
3
- "version": "0.1.0-alpha.6",
3
+ "version": "0.1.0-alpha.8",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "tag": "alpha"
@@ -44,7 +44,7 @@
44
44
  ],
45
45
  "devDependencies": {
46
46
  "tsup": "^8.3.5",
47
- "typescript": "^5.7.2"
47
+ "typescript": "^6.0.3"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsup",