@pgflow/client 0.7.0 → 0.7.1
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 +8 -0
- package/README.md +5 -1
- package/dist/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -28,6 +28,9 @@ Key features:
|
|
|
28
28
|
npm install @pgflow/client
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
> [!NOTE]
|
|
32
|
+
> Real-time updates use Supabase broadcast channels. Ensure real-time is enabled in your Supabase project.
|
|
33
|
+
|
|
31
34
|
## Quick Start
|
|
32
35
|
|
|
33
36
|
```typescript
|
|
@@ -376,5 +379,6 @@ See [BUILD_AND_RELEASE.md](./BUILD_AND_RELEASE.md#browser-via-cdn) for full CDN
|
|
|
376
379
|
For more detailed documentation, visit:
|
|
377
380
|
|
|
378
381
|
- [pgflow Documentation](https://pgflow.dev)
|
|
379
|
-
- [
|
|
382
|
+
- [Start Flows from TypeScript Client](https://pgflow.dev/build/starting-flows/typescript-client/)
|
|
383
|
+
- [Client API Reference](https://pgflow.dev/reference/pgflow-client/)
|
|
380
384
|
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@supabase/supabase-js": "^2.49.4",
|
|
7
7
|
"nanoevents": "^7.0.1",
|
|
8
8
|
"uuid": "^9.0.0",
|
|
9
|
-
"@pgflow/
|
|
10
|
-
"@pgflow/
|
|
9
|
+
"@pgflow/core": "0.7.1",
|
|
10
|
+
"@pgflow/dsl": "0.7.1"
|
|
11
11
|
},
|
|
12
12
|
"main": "./dist/index.js",
|
|
13
13
|
"module": "./dist/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"terser": "^5.43.0",
|
|
44
44
|
"vite-plugin-dts": "~3.8.1",
|
|
45
45
|
"vitest": "1.3.1",
|
|
46
|
-
"@pgflow/dsl": "0.7.
|
|
46
|
+
"@pgflow/dsl": "0.7.1"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"verify-exports": "node scripts/verify-exports.js"
|