@wise/dynamic-flow-types 3.15.0 → 3.16.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/build/main.js +88 -43
- package/build/main.mjs +88 -43
- package/build/next/feature/SuggestionsValue.d.ts +5 -0
- package/build/next/feature/toolbar/Toolbar.d.ts +4 -0
- package/build/next/feature/toolbar/ToolbarButton.d.ts +4 -0
- package/build/next/layout/AlertLayout.d.ts +4 -0
- package/build/next/layout/BoxLayout.d.ts +4 -0
- package/build/next/layout/ButtonLayout.d.ts +4 -0
- package/build/next/layout/ColumnsLayout.d.ts +4 -0
- package/build/next/layout/DecisionLayout.d.ts +4 -0
- package/build/next/layout/DecisionLayoutOption.d.ts +6 -1
- package/build/next/layout/DividerLayout.d.ts +4 -0
- package/build/next/layout/FormLayout.d.ts +4 -0
- package/build/next/layout/HeadingLayout.d.ts +4 -0
- package/build/next/layout/ImageLayout.d.ts +4 -0
- package/build/next/layout/InfoLayout.d.ts +4 -0
- package/build/next/layout/InstructionsLayout.d.ts +4 -0
- package/build/next/layout/InstructionsLayoutItem.d.ts +5 -0
- package/build/next/layout/ListLayout.d.ts +4 -0
- package/build/next/layout/ListLayoutItem.d.ts +10 -0
- package/build/next/layout/LoadingIndicatorLayout.d.ts +4 -0
- package/build/next/layout/MarkdownLayout.d.ts +4 -0
- package/build/next/layout/ModalLayout.d.ts +4 -0
- package/build/next/layout/ParagraphLayout.d.ts +4 -0
- package/build/next/layout/ProgressLayout.d.ts +4 -0
- package/build/next/layout/ReviewLayout.d.ts +4 -0
- package/build/next/layout/ReviewLayoutField.d.ts +5 -0
- package/build/next/layout/SearchLayout.d.ts +4 -0
- package/build/next/layout/SectionLayout.d.ts +4 -0
- package/build/next/layout/StatusListLayout.d.ts +4 -0
- package/build/next/layout/StatusListLayoutItem.d.ts +5 -0
- package/build/next/layout/TabsLayout.d.ts +4 -0
- package/build/next/layout/TabsLayoutTab.d.ts +5 -0
- package/build/next/schema/AllOfSchema.d.ts +4 -0
- package/build/next/schema/ArraySchemaList.d.ts +4 -0
- package/build/next/schema/ArraySchemaTuple.d.ts +4 -0
- package/build/next/schema/BlobSchema.d.ts +4 -0
- package/build/next/schema/BooleanSchema.d.ts +4 -0
- package/build/next/schema/ConstSchema.d.ts +4 -0
- package/build/next/schema/IntegerSchema.d.ts +4 -0
- package/build/next/schema/NumberSchema.d.ts +4 -0
- package/build/next/schema/ObjectSchema.d.ts +4 -0
- package/build/next/schema/OneOfSchema.d.ts +4 -0
- package/build/next/schema/StringSchema.d.ts +4 -0
- package/build/next/step/Step.d.ts +4 -0
- package/build/renderers/DecisionRendererProps.d.ts +2 -0
- package/build/renderers/InstructionsRendererProps.d.ts +2 -0
- package/build/renderers/ListRendererProps.d.ts +3 -0
- package/build/renderers/RendererProps.d.ts +1 -0
- package/build/renderers/RepeatableRendererProps.d.ts +1 -0
- package/build/renderers/ReviewRendererProps.d.ts +2 -0
- package/build/renderers/SelectInputRendererProps.d.ts +1 -0
- package/build/renderers/StatusListRendererProps.d.ts +2 -0
- package/build/renderers/StepRendererProps.d.ts +3 -0
- package/build/renderers/Suggestions.d.ts +2 -0
- package/build/renderers/TabsRendererProps.d.ts +2 -0
- package/build/zod/schemas.d.ts +49 -0
- package/build/zod/schemas.ts +570 -526
- package/package.json +5 -3
- /package/build/{zod/json.type.d.ts → json.type.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
4
4
|
"description": "Dynamic Flow TypeScript Types",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"esbuild": "0.25.9",
|
|
36
36
|
"npm-run-all2": "8.0.4",
|
|
37
37
|
"ts-to-zod": "3.15.0",
|
|
38
|
-
"typescript": "5.9.2"
|
|
38
|
+
"typescript": "5.9.2",
|
|
39
|
+
"typescript-json-schema": "0.65.1"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
42
|
"zod": "3.25.76"
|
|
@@ -45,7 +46,8 @@
|
|
|
45
46
|
"build": "rm -rf build && npm-run-all build:*",
|
|
46
47
|
"build:types": "pnpm tsc --emitDeclarationOnly",
|
|
47
48
|
"build:js": "node ./scripts/build.mjs",
|
|
48
|
-
"build:
|
|
49
|
+
"build:schemas": "./src/build_schemas.sh && eslint 'src/zod/schemas.ts' --quiet --fix",
|
|
50
|
+
"copy-sandbox-schema": "cp json-schema.json ../../../api-documentation/src/apps/dynamicFlow/components/sandbox/df-schema.json",
|
|
49
51
|
"types": "pnpm tsc --noEmit",
|
|
50
52
|
"types:watch": "pnpm tsc --noEmit --watch",
|
|
51
53
|
"lint": "eslint 'src/**/*.{js,ts}' --quiet"
|
|
File without changes
|