@kubb/oas 4.14.0 → 4.15.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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -392,6 +392,13 @@ type Config<TInput = Input> = {
|
|
|
392
392
|
* @default 'simple'
|
|
393
393
|
*/
|
|
394
394
|
defaultBanner?: 'simple' | 'full' | false;
|
|
395
|
+
/**
|
|
396
|
+
* Whether to override existing external files if they already exist.
|
|
397
|
+
* When setting the option in the global configuration, all plugins inherit the same behavior by default.
|
|
398
|
+
* However, all plugins also have an `output.override` option, which can be used to override the behavior for a specific plugin.
|
|
399
|
+
* @default false
|
|
400
|
+
*/
|
|
401
|
+
override?: boolean;
|
|
395
402
|
};
|
|
396
403
|
/**
|
|
397
404
|
* An array of Kubb plugins that will be used in the generation.
|
package/dist/index.d.ts
CHANGED
|
@@ -392,6 +392,13 @@ type Config<TInput = Input> = {
|
|
|
392
392
|
* @default 'simple'
|
|
393
393
|
*/
|
|
394
394
|
defaultBanner?: 'simple' | 'full' | false;
|
|
395
|
+
/**
|
|
396
|
+
* Whether to override existing external files if they already exist.
|
|
397
|
+
* When setting the option in the global configuration, all plugins inherit the same behavior by default.
|
|
398
|
+
* However, all plugins also have an `output.override` option, which can be used to override the behavior for a specific plugin.
|
|
399
|
+
* @default false
|
|
400
|
+
*/
|
|
401
|
+
override?: boolean;
|
|
395
402
|
};
|
|
396
403
|
/**
|
|
397
404
|
* An array of Kubb plugins that will be used in the generation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/oas",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.15.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.4",
|
|
52
52
|
"json-schema-to-ts": "^3.1.1",
|
|
53
53
|
"jsonpointer": "^5.0.1",
|
|
54
|
-
"oas": "^28.8.
|
|
55
|
-
"oas-normalize": "^15.
|
|
54
|
+
"oas": "^28.8.2",
|
|
55
|
+
"oas-normalize": "^15.7.0",
|
|
56
56
|
"openapi-types": "^12.1.3",
|
|
57
57
|
"remeda": "^2.33.1",
|
|
58
58
|
"swagger2openapi": "^7.0.8",
|
|
59
|
-
"@kubb/core": "4.
|
|
59
|
+
"@kubb/core": "4.15.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@stoplight/yaml": "^4.3.0",
|