@wise/dynamic-flow-types 3.0.0 → 3.1.0-experimental-6bb6f02
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/build/main.js +453 -436
- package/build/main.min.js +1 -1
- package/build/main.mjs +453 -436
- package/build/next/step/Step.d.ts +4 -0
- package/build/zod/schemas.d.ts +4828 -4828
- package/build/zod/schemas.ts +1 -0
- package/package.json +4 -4
package/build/zod/schemas.ts
CHANGED
|
@@ -718,6 +718,7 @@ export const stepSchema: z.ZodSchema<Step> = z.lazy(() =>
|
|
|
718
718
|
errors: stepErrorSchema.optional(),
|
|
719
719
|
navigation: navigationSchema.optional(),
|
|
720
720
|
refreshUrl: z.string().optional(),
|
|
721
|
+
refreshAfter: z.string().optional(),
|
|
721
722
|
control: z.string().optional(),
|
|
722
723
|
}),
|
|
723
724
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0-experimental-6bb6f02",
|
|
4
4
|
"description": "Dynamic Flow TypeScript Types",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"build"
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@formatjs/cli": "^6.
|
|
33
|
+
"@formatjs/cli": "^6.6.1",
|
|
34
34
|
"@types/react": "18.3.18",
|
|
35
35
|
"esbuild": "0.25.0",
|
|
36
36
|
"npm-run-all2": "7.0.2",
|
|
37
37
|
"ts-to-zod": "3.6.1",
|
|
38
|
-
"typescript": "5.
|
|
38
|
+
"typescript": "5.8.2"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"zod": "3.24.
|
|
41
|
+
"zod": "3.24.2"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"dev": "pnpm tsc --noEmit --watch",
|