vovk-cli 0.0.1-draft.250 → 0.0.1-draft.252

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.
@@ -103,6 +103,9 @@ export function convertJSONSchemaToTypeScriptDef(schema, defsPrefix) {
103
103
  if (schema.$ref) {
104
104
  return getRefTypeName(schema.$ref);
105
105
  }
106
+ if ('x-formData' in schema) {
107
+ return `FormData`; // Special case for form data
108
+ }
106
109
  if (schema.enum) {
107
110
  return schema.enum
108
111
  .map((value) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.250",
3
+ "version": "0.0.1-draft.252",
4
4
  "bin": {
5
5
  "vovk": "./dist/index.mjs"
6
6
  },
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "homepage": "https://vovk.dev",
37
37
  "peerDependencies": {
38
- "vovk": "^3.0.0-draft.241"
38
+ "vovk": "^3.0.0-draft.286"
39
39
  },
40
40
  "optionalDependencies": {
41
41
  "vovk-python": "^0.0.1-draft.41"