@pgflow/client 0.0.0-pre-0.9.0-d9495c23-20251128172753 → 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 +47 -3
- package/dist/package.json +6 -1
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,55 @@
|
|
|
1
1
|
# @pgflow/client
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
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
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [0cb5500]
|
|
27
|
+
- @pgflow/core@0.11.0
|
|
28
|
+
- @pgflow/dsl@0.11.0
|
|
29
|
+
|
|
30
|
+
## 0.10.0
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [0b84bb0]
|
|
35
|
+
- Updated dependencies [90276ce]
|
|
36
|
+
- @pgflow/core@0.10.0
|
|
37
|
+
- @pgflow/dsl@0.10.0
|
|
38
|
+
|
|
39
|
+
## 0.9.1
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [992a86b]
|
|
44
|
+
- @pgflow/dsl@0.9.1
|
|
45
|
+
- @pgflow/core@0.9.1
|
|
46
|
+
|
|
47
|
+
## 0.9.0
|
|
4
48
|
|
|
5
49
|
### Patch Changes
|
|
6
50
|
|
|
7
|
-
- @pgflow/core@0.
|
|
8
|
-
- @pgflow/dsl@0.
|
|
51
|
+
- @pgflow/core@0.9.0
|
|
52
|
+
- @pgflow/dsl@0.9.0
|
|
9
53
|
|
|
10
54
|
## 0.8.1
|
|
11
55
|
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/pgflow-dev/pgflow",
|
|
8
|
+
"directory": "pkgs/client"
|
|
9
|
+
},
|
|
5
10
|
"type": "module",
|
|
6
11
|
"scripts": {
|
|
7
12
|
"verify-exports": "node scripts/verify-exports.js"
|
package/package.json
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/client",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-runkey-85f08e51-20251225180003",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/pgflow-dev/pgflow",
|
|
8
|
+
"directory": "pkgs/client"
|
|
9
|
+
},
|
|
5
10
|
"type": "module",
|
|
6
11
|
"dependencies": {
|
|
7
12
|
"@supabase/supabase-js": "^2.49.4",
|
|
8
13
|
"nanoevents": "^7.0.1",
|
|
9
14
|
"uuid": "^9.0.0",
|
|
10
|
-
"@pgflow/core": "0.0.0-
|
|
11
|
-
"@pgflow/dsl": "0.0.0-
|
|
15
|
+
"@pgflow/core": "0.0.0-runkey-85f08e51-20251225180003",
|
|
16
|
+
"@pgflow/dsl": "0.0.0-runkey-85f08e51-20251225180003"
|
|
12
17
|
},
|
|
13
18
|
"main": "./dist/index.js",
|
|
14
19
|
"module": "./dist/index.js",
|
|
@@ -43,7 +48,7 @@
|
|
|
43
48
|
"terser": "^5.43.0",
|
|
44
49
|
"vite-plugin-dts": "~3.8.1",
|
|
45
50
|
"vitest": "1.3.1",
|
|
46
|
-
"@pgflow/dsl": "0.0.0-
|
|
51
|
+
"@pgflow/dsl": "0.0.0-runkey-85f08e51-20251225180003"
|
|
47
52
|
},
|
|
48
53
|
"scripts": {
|
|
49
54
|
"verify-exports": "node scripts/verify-exports.js"
|