@smithers-orchestrator/components 0.20.1 → 0.20.3
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/package.json +10 -10
- package/src/components/LoopProps.ts +1 -0
- package/src/components/SequenceProps.ts +1 -0
- package/src/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithers-orchestrator/components",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.3",
|
|
4
4
|
"description": "React components for Smithers workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"react": "^19.2.5",
|
|
25
25
|
"react-dom": "^19.2.5",
|
|
26
26
|
"zod": "^4.3.6",
|
|
27
|
-
"@smithers-orchestrator/
|
|
28
|
-
"@smithers-orchestrator/
|
|
29
|
-
"@smithers-orchestrator/driver": "0.20.
|
|
30
|
-
"@smithers-orchestrator/errors": "0.20.
|
|
31
|
-
"@smithers-orchestrator/memory": "0.20.
|
|
32
|
-
"@smithers-orchestrator/
|
|
33
|
-
"@smithers-orchestrator/
|
|
34
|
-
"@smithers-orchestrator/
|
|
35
|
-
"@smithers-orchestrator/
|
|
27
|
+
"@smithers-orchestrator/agents": "0.20.3",
|
|
28
|
+
"@smithers-orchestrator/db": "0.20.3",
|
|
29
|
+
"@smithers-orchestrator/driver": "0.20.3",
|
|
30
|
+
"@smithers-orchestrator/errors": "0.20.3",
|
|
31
|
+
"@smithers-orchestrator/memory": "0.20.3",
|
|
32
|
+
"@smithers-orchestrator/graph": "0.20.3",
|
|
33
|
+
"@smithers-orchestrator/observability": "0.20.3",
|
|
34
|
+
"@smithers-orchestrator/react-reconciler": "0.20.3",
|
|
35
|
+
"@smithers-orchestrator/scheduler": "0.20.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@tanstack/react-query": "^5.99.1",
|
package/src/index.d.ts
CHANGED
|
@@ -262,6 +262,7 @@ type SignalProps$2<Schema extends z.ZodObject<z.ZodRawShape> = z.ZodObject<z.Zod
|
|
|
262
262
|
};
|
|
263
263
|
|
|
264
264
|
type SequenceProps$2 = {
|
|
265
|
+
key?: string;
|
|
265
266
|
skipIf?: boolean;
|
|
266
267
|
children?: React.ReactNode;
|
|
267
268
|
};
|
|
@@ -424,6 +425,7 @@ type ReviewLoopProps$2 = {
|
|
|
424
425
|
};
|
|
425
426
|
|
|
426
427
|
type LoopProps$2 = {
|
|
428
|
+
key?: string;
|
|
427
429
|
id?: string;
|
|
428
430
|
until?: boolean;
|
|
429
431
|
maxIterations?: number;
|