@kubb/oas 4.12.14 → 4.13.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/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -355,22 +355,24 @@ type Config<TInput = Input> = {
|
|
|
355
355
|
* @default prettier
|
|
356
356
|
*
|
|
357
357
|
* Possible values:
|
|
358
|
+
* - 'auto': Automatically detects and uses biome or prettier (in that order of preference).
|
|
358
359
|
* - 'prettier': Uses Prettier for code formatting.
|
|
359
360
|
* - 'biome': Uses Biome for code formatting.
|
|
360
361
|
*
|
|
361
362
|
*/
|
|
362
|
-
format?: 'prettier' | 'biome' | false;
|
|
363
|
+
format?: 'auto' | 'prettier' | 'biome' | false;
|
|
363
364
|
/**
|
|
364
365
|
* Specifies the linter that should be used to analyze the code.
|
|
365
366
|
* The accepted values indicate different linting tools.
|
|
366
367
|
*
|
|
367
368
|
* Possible values:
|
|
369
|
+
* - 'auto': Automatically detects and uses biome, oxlint, or eslint (in that order of preference).
|
|
368
370
|
* - 'eslint': Represents the use of ESLint, a widely used JavaScript linter.
|
|
369
371
|
* - 'biome': Represents the Biome linter, a modern tool for code scanning.
|
|
370
372
|
* - 'oxlint': Represents the Oxlint tool for linting purposes.
|
|
371
373
|
*
|
|
372
374
|
*/
|
|
373
|
-
lint?: 'eslint' | 'biome' | 'oxlint' | false;
|
|
375
|
+
lint?: 'auto' | 'eslint' | 'biome' | 'oxlint' | false;
|
|
374
376
|
/**
|
|
375
377
|
* Override the extension to the generated imports and exports, by default each plugin will add an extension
|
|
376
378
|
* @default { '.ts': '.ts'}
|
package/dist/index.d.ts
CHANGED
|
@@ -355,22 +355,24 @@ type Config<TInput = Input> = {
|
|
|
355
355
|
* @default prettier
|
|
356
356
|
*
|
|
357
357
|
* Possible values:
|
|
358
|
+
* - 'auto': Automatically detects and uses biome or prettier (in that order of preference).
|
|
358
359
|
* - 'prettier': Uses Prettier for code formatting.
|
|
359
360
|
* - 'biome': Uses Biome for code formatting.
|
|
360
361
|
*
|
|
361
362
|
*/
|
|
362
|
-
format?: 'prettier' | 'biome' | false;
|
|
363
|
+
format?: 'auto' | 'prettier' | 'biome' | false;
|
|
363
364
|
/**
|
|
364
365
|
* Specifies the linter that should be used to analyze the code.
|
|
365
366
|
* The accepted values indicate different linting tools.
|
|
366
367
|
*
|
|
367
368
|
* Possible values:
|
|
369
|
+
* - 'auto': Automatically detects and uses biome, oxlint, or eslint (in that order of preference).
|
|
368
370
|
* - 'eslint': Represents the use of ESLint, a widely used JavaScript linter.
|
|
369
371
|
* - 'biome': Represents the Biome linter, a modern tool for code scanning.
|
|
370
372
|
* - 'oxlint': Represents the Oxlint tool for linting purposes.
|
|
371
373
|
*
|
|
372
374
|
*/
|
|
373
|
-
lint?: 'eslint' | 'biome' | 'oxlint' | false;
|
|
375
|
+
lint?: 'auto' | 'eslint' | 'biome' | 'oxlint' | false;
|
|
374
376
|
/**
|
|
375
377
|
* Override the extension to the generated imports and exports, by default each plugin will add an extension
|
|
376
378
|
* @default { '.ts': '.ts'}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/oas",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.13.0",
|
|
4
4
|
"description": "OpenAPI Specification (OAS) utilities and helpers for Kubb, providing parsing, normalization, and manipulation of OpenAPI/Swagger schemas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openapi",
|
|
@@ -48,15 +48,15 @@
|
|
|
48
48
|
}
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@redocly/openapi-core": "^2.14.
|
|
51
|
+
"@redocly/openapi-core": "^2.14.3",
|
|
52
52
|
"json-schema-to-ts": "^3.1.1",
|
|
53
53
|
"jsonpointer": "^5.0.1",
|
|
54
54
|
"oas": "^28.7.0",
|
|
55
55
|
"oas-normalize": "^15.6.0",
|
|
56
56
|
"openapi-types": "^12.1.3",
|
|
57
|
-
"remeda": "^2.
|
|
57
|
+
"remeda": "^2.33.1",
|
|
58
58
|
"swagger2openapi": "^7.0.8",
|
|
59
|
-
"@kubb/core": "4.
|
|
59
|
+
"@kubb/core": "4.13.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@stoplight/yaml": "^4.3.0",
|