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

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.
@@ -220,6 +220,9 @@ export function convertJSONSchemaToTypeScriptDef(schema, defsPrefix) {
220
220
  })
221
221
  .join(' | ');
222
222
  }
223
+ if (schema['x-formData']) {
224
+ return `FormData`; // Special case for form data
225
+ }
223
226
  // Handle primitive types
224
227
  switch (schema.type) {
225
228
  case 'string':
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.251",
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.285"
39
39
  },
40
40
  "optionalDependencies": {
41
41
  "vovk-python": "^0.0.1-draft.41"