@primero-ai/temporal-graph-tools 1.0.0 → 1.0.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/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @primero-ai/temporal-graph-tools
|
|
2
2
|
|
|
3
3
|
TypeScript utilities for assembling Temporal workflows from plain activity
|
|
4
4
|
functions. Build a workflow plan, capture the generated source code, hydrate
|
|
@@ -21,11 +21,11 @@ hand-writing workflow files.
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npm install @
|
|
24
|
+
npm install @primero-ai/temporal-graph-tools
|
|
25
25
|
# or
|
|
26
|
-
pnpm add @
|
|
26
|
+
pnpm add @primero-ai/temporal-graph-tools
|
|
27
27
|
# or
|
|
28
|
-
bun add @
|
|
28
|
+
bun add @primero-ai/temporal-graph-tools
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
The package targets Node.js 18+ and ships ESM builds.
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
bundleWorkflows,
|
|
38
38
|
createActivity,
|
|
39
39
|
createWorkflowBuilder,
|
|
40
|
-
} from '@
|
|
40
|
+
} from '@primero-ai/temporal-graph-tools'
|
|
41
41
|
|
|
42
42
|
type FetchUserInput = { userId: string }
|
|
43
43
|
type FetchUserOutput = { profile: { id: string; name: string } }
|
package/package.json
CHANGED