@onlineapps/conn-orch-cookbook 2.0.8 → 2.0.10

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/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -169,7 +169,7 @@ const cookbook = generator.generate(openApiSpec);
169
169
  ### Basic Example (v2.0 Schema)
170
170
  ```json
171
171
  {
172
- "version": "2.0.0",
172
+ "version": "2.1.0",
173
173
  "api_input": {
174
174
  "customer": "ACME Corp",
175
175
  "amount": 1000
@@ -204,7 +204,7 @@ All 7 step types are fully supported:
204
204
  - **foreach** - Iteration over arrays
205
205
  - **fork_join** - Parallel execution
206
206
  - **switch** - Conditional branching
207
- - **sub_workflow** - Nested workflows
207
+ - **steps** - Nested workflows (replaces `sub_workflow`)
208
208
  - **wait** - Time delays
209
209
  - **dispatch** - Webhook dispatching
210
210
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/conn-orch-cookbook",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "description": "Complete cookbook toolkit for all services - unified wrapper including core, executor, transformer, and router functionality",
5
5
  "main": "src/index.js",
6
6
  "repository": {
@@ -46,10 +46,10 @@
46
46
  },
47
47
  "homepage": "https://github.com/onlineapps/connector-cookbook#readme",
48
48
  "dependencies": {
49
- "@onlineapps/cookbook-core": "2.1.15",
49
+ "@onlineapps/cookbook-core": "2.1.16",
50
50
  "@onlineapps/cookbook-executor": "1.0.0",
51
51
  "@onlineapps/cookbook-router": "1.0.3",
52
- "@onlineapps/cookbook-template-helpers": "1.0.2",
52
+ "@onlineapps/cookbook-template-helpers": "1.0.3",
53
53
  "@onlineapps/cookbook-transformer": "1.1.1",
54
54
  "jsonpath": "1.1.1"
55
55
  },