@pgflow/client 0.0.0-fix-supa-version-d565b97a-20251124083521 → 0.0.0-pre-0.9.0-d9495c23-20251128172753

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,13 +1,20 @@
1
1
  # @pgflow/client
2
2
 
3
- ## 0.0.0-fix-supa-version-d565b97a-20251124083521
3
+ ## 0.0.0-pre-0.9.0-d9495c23-20251128172753
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - d565b97: Fix incorrect Supabase CLI version requirement from 2.34.3 to 2.50.3. CLI 2.50.3 is the first version to include pgmq 1.5.0+, which is required for pgflow 0.8.0+.
8
- - Updated dependencies [d565b97]
9
- - @pgflow/core@0.0.0-fix-supa-version-d565b97a-20251124083521
10
- - @pgflow/dsl@0.0.0-fix-supa-version-d565b97a-20251124083521
7
+ - @pgflow/core@0.0.0-pre-0.9.0-d9495c23-20251128172753
8
+ - @pgflow/dsl@0.0.0-pre-0.9.0-d9495c23-20251128172753
9
+
10
+ ## 0.8.1
11
+
12
+ ### Patch Changes
13
+
14
+ - f1d3c32: Fix incorrect Supabase CLI version requirement from 2.34.3 to 2.50.3. CLI 2.50.3 is the first version to include pgmq 1.5.0+, which is required for pgflow 0.8.0+.
15
+ - Updated dependencies [f1d3c32]
16
+ - @pgflow/core@0.8.1
17
+ - @pgflow/dsl@0.8.1
11
18
 
12
19
  ## 0.8.0
13
20
 
package/README.md CHANGED
@@ -230,7 +230,7 @@ When using with `@pgflow/dsl`, you get full type safety:
230
230
  import { Flow } from '@pgflow/dsl';
231
231
 
232
232
  // Define your flow
233
- const AnalyzeWebsite = new Flow<{ url: string }>({ slug: 'analyze_website' })
233
+ const AnalyzeWebsite = new Flow<{ url: string }>({ slug: 'analyzeWebsite' })
234
234
  .step({ slug: 'scrape' }, async (input) => ({ content: 'html...' }))
235
235
  .step({ slug: 'analyze' }, async (input) => ({ sentiment: 0.8 }));
236
236
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/client",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -44,7 +44,6 @@
44
44
  "@pgflow/dsl": "workspace:*",
45
45
  "@types/uuid": "^10.0.0",
46
46
  "postgres": "^3.4.5",
47
- "supabase": "^2.50.3",
48
47
  "terser": "^5.43.0",
49
48
  "vite-plugin-dts": "~3.8.1",
50
49
  "vitest": "1.3.1"
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@pgflow/client",
3
- "version": "0.0.0-fix-supa-version-d565b97a-20251124083521",
3
+ "version": "0.0.0-pre-0.9.0-d9495c23-20251128172753",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "dependencies": {
7
7
  "@supabase/supabase-js": "^2.49.4",
8
8
  "nanoevents": "^7.0.1",
9
9
  "uuid": "^9.0.0",
10
- "@pgflow/core": "0.0.0-fix-supa-version-d565b97a-20251124083521",
11
- "@pgflow/dsl": "0.0.0-fix-supa-version-d565b97a-20251124083521"
10
+ "@pgflow/core": "0.0.0-pre-0.9.0-d9495c23-20251128172753",
11
+ "@pgflow/dsl": "0.0.0-pre-0.9.0-d9495c23-20251128172753"
12
12
  },
13
13
  "main": "./dist/index.js",
14
14
  "module": "./dist/index.js",
@@ -40,11 +40,10 @@
40
40
  "devDependencies": {
41
41
  "@types/uuid": "^10.0.0",
42
42
  "postgres": "^3.4.5",
43
- "supabase": "^2.50.3",
44
43
  "terser": "^5.43.0",
45
44
  "vite-plugin-dts": "~3.8.1",
46
45
  "vitest": "1.3.1",
47
- "@pgflow/dsl": "0.0.0-fix-supa-version-d565b97a-20251124083521"
46
+ "@pgflow/dsl": "0.0.0-pre-0.9.0-d9495c23-20251128172753"
48
47
  },
49
48
  "scripts": {
50
49
  "verify-exports": "node scripts/verify-exports.js"