@geenius/ai-workflow 0.5.0 → 0.6.0
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 +6 -0
- package/README.md +3 -4
- package/convex.js +8 -0
- package/package.json +34 -6
- package/packages/convex/dist/index.d.ts +8 -3
- package/packages/convex/dist/index.js.map +1 -1
- package/packages/react/dist/index.js.map +1 -1
- package/packages/shared/dist/index.d.ts +3 -3
- package/packages/solidjs/dist/index.js.map +1 -1
- package/react-css.js +8 -0
- package/react.js +8 -0
- package/shared.js +8 -0
- package/solidjs-css.js +8 -0
- package/solidjs.js +8 -0
|
@@ -667,7 +667,7 @@ declare const stepConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
667
667
|
handler: z.ZodString;
|
|
668
668
|
params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
669
669
|
outputVar: z.ZodOptional<z.ZodString>;
|
|
670
|
-
}, z.core.$strip>]>;
|
|
670
|
+
}, z.core.$strip>], "type">;
|
|
671
671
|
/**
|
|
672
672
|
* Zod schema for one workflow step definition.
|
|
673
673
|
*/
|
|
@@ -748,7 +748,7 @@ declare const workflowStepDefSchema: z.ZodObject<{
|
|
|
748
748
|
handler: z.ZodString;
|
|
749
749
|
params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
750
750
|
outputVar: z.ZodOptional<z.ZodString>;
|
|
751
|
-
}, z.core.$strip>]>;
|
|
751
|
+
}, z.core.$strip>], "type">;
|
|
752
752
|
position: z.ZodOptional<z.ZodObject<{
|
|
753
753
|
x: z.ZodNumber;
|
|
754
754
|
y: z.ZodNumber;
|
|
@@ -875,7 +875,7 @@ declare const workflowDefinitionSchema: z.ZodObject<{
|
|
|
875
875
|
handler: z.ZodString;
|
|
876
876
|
params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
877
877
|
outputVar: z.ZodOptional<z.ZodString>;
|
|
878
|
-
}, z.core.$strip>]>;
|
|
878
|
+
}, z.core.$strip>], "type">;
|
|
879
879
|
position: z.ZodOptional<z.ZodObject<{
|
|
880
880
|
x: z.ZodNumber;
|
|
881
881
|
y: z.ZodNumber;
|