dominus-sdk-nodejs 1.28.0 → 1.28.2
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/README.md +33 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/namespaces/ai.d.ts +36 -15
- package/dist/namespaces/ai.d.ts.map +1 -1
- package/dist/namespaces/ai.js +39 -42
- package/dist/namespaces/ai.js.map +1 -1
- package/dist/namespaces/redis.d.ts +1 -1
- package/dist/namespaces/redis.js +15 -15
- package/dist/namespaces/redis.js.map +1 -1
- package/dist/namespaces/workflow.d.ts +258 -59
- package/dist/namespaces/workflow.d.ts.map +1 -1
- package/dist/namespaces/workflow.js +304 -67
- package/dist/namespaces/workflow.js.map +1 -1
- package/docs/routes-services.md +3 -3
- package/docs/usage-reference.md +30 -21
- package/docs/workflow-hard-cut-release.md +23 -0
- package/package.json +2 -2
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Workflow Hard-Cut Release Notes
|
|
2
|
+
|
|
3
|
+
## Release Scope
|
|
4
|
+
|
|
5
|
+
This SDK release aligns the public guidance with the saved-workflow facade, the structured deterministic orchestration cutover, and the native pipeline runner.
|
|
6
|
+
|
|
7
|
+
Keep describing the workflow surfaces this way:
|
|
8
|
+
|
|
9
|
+
- `dominus.workflow.*` is the saved-workflow facade
|
|
10
|
+
- `dominus.ai.workflow.*` is raw inline orchestration only
|
|
11
|
+
- `dominus.workflow.executePipeline()` is the supported ordered-pipeline surface
|
|
12
|
+
|
|
13
|
+
## Release Checklist
|
|
14
|
+
|
|
15
|
+
1. Build and test the SDK
|
|
16
|
+
2. Verify lifecycle examples still use `createRun -> registerArtifact -> validateRun -> startRun`
|
|
17
|
+
3. Publish release notes that describe the hard cutover and the native pipeline runner surface
|
|
18
|
+
4. Confirm examples use the saved-workflow run lifecycle and `executePipeline()`
|
|
19
|
+
|
|
20
|
+
## Rollback
|
|
21
|
+
|
|
22
|
+
- Downgrade target: the previously published production SDK version
|
|
23
|
+
- Rollback trigger: customer reports that saved-workflow runs or native pipelines cannot start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dominus-sdk-nodejs",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.2",
|
|
4
4
|
"description": "Node.js SDK for the Dominus Orchestrator Platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dev": "tsc --watch",
|
|
21
21
|
"clean": "rm -rf dist",
|
|
22
22
|
"prepublishOnly": "npm run build",
|
|
23
|
-
"test": "node --test",
|
|
23
|
+
"test": "npm run build && node --test tests/workflow-lifecycle.test.js",
|
|
24
24
|
"lint": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|