@wise/dynamic-flow-types 3.15.1 → 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 +85 -41
- package/build/main.mjs +85 -41
- 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 +2 -2
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": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"build:types": "pnpm tsc --emitDeclarationOnly",
|
|
48
48
|
"build:js": "node ./scripts/build.mjs",
|
|
49
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/
|
|
50
|
+
"copy-sandbox-schema": "cp json-schema.json ../../../api-documentation/src/apps/dynamicFlow/components/sandbox/df-schema.json",
|
|
51
51
|
"types": "pnpm tsc --noEmit",
|
|
52
52
|
"types:watch": "pnpm tsc --noEmit --watch",
|
|
53
53
|
"lint": "eslint 'src/**/*.{js,ts}' --quiet"
|