@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.
Files changed (60) hide show
  1. package/build/main.js +88 -43
  2. package/build/main.mjs +88 -43
  3. package/build/next/feature/SuggestionsValue.d.ts +5 -0
  4. package/build/next/feature/toolbar/Toolbar.d.ts +4 -0
  5. package/build/next/feature/toolbar/ToolbarButton.d.ts +4 -0
  6. package/build/next/layout/AlertLayout.d.ts +4 -0
  7. package/build/next/layout/BoxLayout.d.ts +4 -0
  8. package/build/next/layout/ButtonLayout.d.ts +4 -0
  9. package/build/next/layout/ColumnsLayout.d.ts +4 -0
  10. package/build/next/layout/DecisionLayout.d.ts +4 -0
  11. package/build/next/layout/DecisionLayoutOption.d.ts +6 -1
  12. package/build/next/layout/DividerLayout.d.ts +4 -0
  13. package/build/next/layout/FormLayout.d.ts +4 -0
  14. package/build/next/layout/HeadingLayout.d.ts +4 -0
  15. package/build/next/layout/ImageLayout.d.ts +4 -0
  16. package/build/next/layout/InfoLayout.d.ts +4 -0
  17. package/build/next/layout/InstructionsLayout.d.ts +4 -0
  18. package/build/next/layout/InstructionsLayoutItem.d.ts +5 -0
  19. package/build/next/layout/ListLayout.d.ts +4 -0
  20. package/build/next/layout/ListLayoutItem.d.ts +10 -0
  21. package/build/next/layout/LoadingIndicatorLayout.d.ts +4 -0
  22. package/build/next/layout/MarkdownLayout.d.ts +4 -0
  23. package/build/next/layout/ModalLayout.d.ts +4 -0
  24. package/build/next/layout/ParagraphLayout.d.ts +4 -0
  25. package/build/next/layout/ProgressLayout.d.ts +4 -0
  26. package/build/next/layout/ReviewLayout.d.ts +4 -0
  27. package/build/next/layout/ReviewLayoutField.d.ts +5 -0
  28. package/build/next/layout/SearchLayout.d.ts +4 -0
  29. package/build/next/layout/SectionLayout.d.ts +4 -0
  30. package/build/next/layout/StatusListLayout.d.ts +4 -0
  31. package/build/next/layout/StatusListLayoutItem.d.ts +5 -0
  32. package/build/next/layout/TabsLayout.d.ts +4 -0
  33. package/build/next/layout/TabsLayoutTab.d.ts +5 -0
  34. package/build/next/schema/AllOfSchema.d.ts +4 -0
  35. package/build/next/schema/ArraySchemaList.d.ts +4 -0
  36. package/build/next/schema/ArraySchemaTuple.d.ts +4 -0
  37. package/build/next/schema/BlobSchema.d.ts +4 -0
  38. package/build/next/schema/BooleanSchema.d.ts +4 -0
  39. package/build/next/schema/ConstSchema.d.ts +4 -0
  40. package/build/next/schema/IntegerSchema.d.ts +4 -0
  41. package/build/next/schema/NumberSchema.d.ts +4 -0
  42. package/build/next/schema/ObjectSchema.d.ts +4 -0
  43. package/build/next/schema/OneOfSchema.d.ts +4 -0
  44. package/build/next/schema/StringSchema.d.ts +4 -0
  45. package/build/next/step/Step.d.ts +4 -0
  46. package/build/renderers/DecisionRendererProps.d.ts +2 -0
  47. package/build/renderers/InstructionsRendererProps.d.ts +2 -0
  48. package/build/renderers/ListRendererProps.d.ts +3 -0
  49. package/build/renderers/RendererProps.d.ts +1 -0
  50. package/build/renderers/RepeatableRendererProps.d.ts +1 -0
  51. package/build/renderers/ReviewRendererProps.d.ts +2 -0
  52. package/build/renderers/SelectInputRendererProps.d.ts +1 -0
  53. package/build/renderers/StatusListRendererProps.d.ts +2 -0
  54. package/build/renderers/StepRendererProps.d.ts +3 -0
  55. package/build/renderers/Suggestions.d.ts +2 -0
  56. package/build/renderers/TabsRendererProps.d.ts +2 -0
  57. package/build/zod/schemas.d.ts +49 -0
  58. package/build/zod/schemas.ts +570 -526
  59. package/package.json +5 -3
  60. /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.15.0",
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:zod": "./src/zod/build_zod.sh && eslint 'src/zod/schemas.ts' --quiet --fix",
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