@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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @segundoai/temporal-graph-tools
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 @segundoai/temporal-graph-tools
24
+ npm install @primero-ai/temporal-graph-tools
25
25
  # or
26
- pnpm add @segundoai/temporal-graph-tools
26
+ pnpm add @primero-ai/temporal-graph-tools
27
27
  # or
28
- bun add @segundoai/temporal-graph-tools
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 '@segundoai/temporal-graph-tools'
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primero-ai/temporal-graph-tools",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Utilities for working with DAG workflows.",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/primero-ai/temporal-graph-tools#readme",