@pgflow/client 0.0.0-pgflow-installer-157d9e2e-20251212133651 → 0.0.0-runkey-85f08e51-20251225180003

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 CHANGED
@@ -1,12 +1,31 @@
1
1
  # @pgflow/client
2
2
 
3
- ## 0.0.0-pgflow-installer-157d9e2e-20251212133651
3
+ ## 0.0.0-runkey-85f08e51-20251225180003
4
+
5
+ ### Minor Changes
6
+
7
+ - 9ea84a2: BREAKING: Asymmetric handler signatures - remove `run` key from step inputs
8
+
9
+ - Root steps: `(flowInput, ctx) => ...` - flow input directly as first param
10
+ - Dependent steps: `(deps, ctx) => ...` - only dependency outputs as first param
11
+ - Access flow input in dependent steps via `await ctx.flowInput` (async/lazy-loaded)
12
+ - Lazy loading prevents data duplication for map steps processing large arrays
13
+ - Enables functional composition and simplifies types for future subflows
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [9ea84a2]
18
+ - Updated dependencies [5dc5cfc]
19
+ - @pgflow/core@0.0.0-runkey-85f08e51-20251225180003
20
+ - @pgflow/dsl@0.0.0-runkey-85f08e51-20251225180003
21
+
22
+ ## 0.11.0
4
23
 
5
24
  ### Patch Changes
6
25
 
7
26
  - Updated dependencies [0cb5500]
8
- - @pgflow/core@0.0.0-pgflow-installer-157d9e2e-20251212133651
9
- - @pgflow/dsl@0.0.0-pgflow-installer-157d9e2e-20251212133651
27
+ - @pgflow/core@0.11.0
28
+ - @pgflow/dsl@0.11.0
10
29
 
11
30
  ## 0.10.0
12
31
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/client",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/client",
3
- "version": "0.0.0-pgflow-installer-157d9e2e-20251212133651",
3
+ "version": "0.0.0-runkey-85f08e51-20251225180003",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,8 +12,8 @@
12
12
  "@supabase/supabase-js": "^2.49.4",
13
13
  "nanoevents": "^7.0.1",
14
14
  "uuid": "^9.0.0",
15
- "@pgflow/core": "0.0.0-pgflow-installer-157d9e2e-20251212133651",
16
- "@pgflow/dsl": "0.0.0-pgflow-installer-157d9e2e-20251212133651"
15
+ "@pgflow/core": "0.0.0-runkey-85f08e51-20251225180003",
16
+ "@pgflow/dsl": "0.0.0-runkey-85f08e51-20251225180003"
17
17
  },
18
18
  "main": "./dist/index.js",
19
19
  "module": "./dist/index.js",
@@ -48,7 +48,7 @@
48
48
  "terser": "^5.43.0",
49
49
  "vite-plugin-dts": "~3.8.1",
50
50
  "vitest": "1.3.1",
51
- "@pgflow/dsl": "0.0.0-pgflow-installer-157d9e2e-20251212133651"
51
+ "@pgflow/dsl": "0.0.0-runkey-85f08e51-20251225180003"
52
52
  },
53
53
  "scripts": {
54
54
  "verify-exports": "node scripts/verify-exports.js"