@haus-tech/haus-workflow 0.1.0 → 0.3.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.
@@ -68,6 +68,9 @@
68
68
  "testing-library",
69
69
  "phpunit",
70
70
  "storybook",
71
- "wisest"
71
+ "wisest",
72
+ "vitest",
73
+ "jest",
74
+ "redis"
72
75
  ]
73
76
  }
@@ -1,43 +1,4 @@
1
1
  {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "required": ["id", "type", "source", "version", "hash", "installMode", "paths"],
7
- "properties": {
8
- "id": { "type": "string" },
9
- "type": { "type": "string" },
10
- "source": { "type": "string", "description": "\"haus\" for Haus-owned items; \"curated\" for approved external items." },
11
- "version": { "type": "string", "description": "haus package version when the row was written." },
12
- "hash": {
13
- "type": "string",
14
- "description": "sha256 digest of installed files listed in paths (see src/update/hash-installed.ts); placeholder when paths is empty."
15
- },
16
- "installMode": { "type": "string" },
17
- "paths": { "type": "array", "items": { "type": "string" } },
18
- "originSourceId": {
19
- "type": "string",
20
- "description": "For source:\"curated\" items — references the sourceId from sources.yaml."
21
- },
22
- "useMode": {
23
- "type": "string",
24
- "enum": ["copy", "adapted", "wrapped", "rewritten", "reference-only"],
25
- "description": "How the upstream item was incorporated."
26
- },
27
- "license": {
28
- "type": "string",
29
- "description": "SPDX license identifier of the upstream source, e.g. \"MIT\"."
30
- },
31
- "riskLevel": {
32
- "type": "string",
33
- "enum": ["low", "medium", "high", "blocked"],
34
- "description": "Risk level assessed during curation review."
35
- },
36
- "reviewStatus": {
37
- "type": "string",
38
- "enum": ["approved", "candidate", "needs-review", "rejected", "deprecated"],
39
- "description": "Curation review gate status. Only approved items are installed."
40
- }
41
- }
42
- }
2
+ "$comment": "Canonical schema lives in haus-workflow-catalog. Do not edit this file directly.",
3
+ "$ref": "https://raw.githubusercontent.com/WeAreHausTech/haus-workflow-catalog/main/schema/haus-lock.schema.json"
43
4
  }