@holdpoint/types 0.1.0-alpha.7 → 0.1.0-alpha.9

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 +1 -2
  2. package/package.json +3 -4
package/dist/index.d.ts CHANGED
@@ -87,7 +87,6 @@ interface ValidationResult {
87
87
  errors: ValidationError[];
88
88
  }
89
89
  type AgentType = "copilot" | "claude" | "cursor" | "codex" | "unknown";
90
- type StackType = "typescript" | "python" | "go" | "nextjs" | "fullstack" | "unknown";
91
90
  /** Result of a single check within a run (cmd or prompt). */
92
91
  interface CheckRunResult {
93
92
  id: string;
@@ -124,4 +123,4 @@ interface CheckReports {
124
123
  runs: CheckRun[];
125
124
  }
126
125
 
127
- 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,9 +1,8 @@
1
1
  {
2
2
  "name": "@holdpoint/types",
3
- "version": "0.1.0-alpha.7",
3
+ "version": "0.1.0-alpha.9",
4
4
  "publishConfig": {
5
- "access": "public",
6
- "tag": "alpha"
5
+ "access": "public"
7
6
  },
8
7
  "description": "Shared TypeScript types for Holdpoint",
9
8
  "homepage": "https://holdpoint.dev",
@@ -44,7 +43,7 @@
44
43
  ],
45
44
  "devDependencies": {
46
45
  "tsup": "^8.3.5",
47
- "typescript": "^5.7.2"
46
+ "typescript": "^6.0.3"
48
47
  },
49
48
  "scripts": {
50
49
  "build": "tsup",