@sanity/workflow-blueprint 0.0.0 → 0.1.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/CHANGELOG.md +27 -0
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @sanity/workflow-blueprint
|
|
2
|
+
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 58f8211: New package: Sanity Blueprints integration for Editorial Workflows definition deploys. `defineWorkflows(deployment)` declares a deployment (the same shape as a `sanity.workflow.ts` `deployments[]` entry) as a `sanity.workflow` blueprint resource — validated eagerly at manifest evaluation (definition structure, GROQ, alias bindings, duplicate names, spawn cycles) and carried as pure data. `provisionWorkflowResource` is the provider core a blueprint resource provider runs: the engine's content-addressed, create-only definition deploy (create = update, idempotent, convergent). Definitions are retain-only through blueprints — the default lifecycle is `deletionPolicy: 'retain'`, a policy that promises deletion is rejected by the definer, and `destroyWorkflowResource` refuses unconditionally: deleting a definition stays a deliberate act through the workflow CLI's `definition delete`, never a side effect of a manifest edit.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [239d9f6]
|
|
12
|
+
- Updated dependencies [3af2ca0]
|
|
13
|
+
- Updated dependencies [7276702]
|
|
14
|
+
- Updated dependencies [58f8211]
|
|
15
|
+
- Updated dependencies [00c089d]
|
|
16
|
+
- Updated dependencies [71cd58e]
|
|
17
|
+
- Updated dependencies [cd03973]
|
|
18
|
+
- Updated dependencies [d26cc1a]
|
|
19
|
+
- Updated dependencies [9126299]
|
|
20
|
+
- Updated dependencies [72018af]
|
|
21
|
+
- Updated dependencies [5cd8ffd]
|
|
22
|
+
- Updated dependencies [b82bda4]
|
|
23
|
+
- Updated dependencies [55a54b3]
|
|
24
|
+
- Updated dependencies [b82bda4]
|
|
25
|
+
- Updated dependencies [4490442]
|
|
26
|
+
- Updated dependencies [1540dce]
|
|
27
|
+
- @sanity/workflow-engine@0.18.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/workflow-blueprint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Sanity Blueprints integration for Editorial Workflows: the workflow resource definer and the provider core that provisions definition deploys. Early access — not deployable until the sanity.workflow provider is registered in the blueprints service.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blueprints",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@sanity/blueprints": "^0.21.0",
|
|
45
|
-
"@sanity/workflow-engine": "0.
|
|
45
|
+
"@sanity/workflow-engine": "0.18.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@sanity/pkg-utils": "^10.5.2",
|
|
49
49
|
"@types/node": "^25.9.1",
|
|
50
50
|
"vitest": "^4.1.8",
|
|
51
|
-
"@sanity/workflow-engine-test": "0.
|
|
51
|
+
"@sanity/workflow-engine-test": "0.13.0"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=20"
|