@kubb/plugin-redoc 3.17.1 → 3.18.1
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 +21 -0
- package/dist/index.d.ts +21 -0
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -221,6 +221,27 @@ type Config<TInput = Input> = {
|
|
|
221
221
|
* @default true
|
|
222
222
|
*/
|
|
223
223
|
write?: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* Specifies the formatting tool to be used.
|
|
226
|
+
* @default prettier
|
|
227
|
+
*
|
|
228
|
+
* Possible values:
|
|
229
|
+
* - 'prettier': Uses Prettier for code formatting.
|
|
230
|
+
* - 'biome': Uses Biome for code formatting.
|
|
231
|
+
*
|
|
232
|
+
*/
|
|
233
|
+
format?: 'prettier' | 'biome' | false;
|
|
234
|
+
/**
|
|
235
|
+
* Specifies the linter that should be used to analyze the code.
|
|
236
|
+
* The accepted values indicate different linting tools.
|
|
237
|
+
*
|
|
238
|
+
* Possible values:
|
|
239
|
+
* - 'eslint': Represents the use of ESLint, a widely used JavaScript linter.
|
|
240
|
+
* - 'biome': Represents the Biome linter, a modern tool for code scanning.
|
|
241
|
+
* - 'oxlint': Represents the Oxlint tool for linting purposes.
|
|
242
|
+
*
|
|
243
|
+
*/
|
|
244
|
+
lint?: 'eslint' | 'biome' | 'oxlint' | false;
|
|
224
245
|
/**
|
|
225
246
|
* Override the extension to the generated imports and exports, by default each plugin will add an extension
|
|
226
247
|
* @default { '.ts': '.ts'}
|
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,27 @@ type Config<TInput = Input> = {
|
|
|
221
221
|
* @default true
|
|
222
222
|
*/
|
|
223
223
|
write?: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* Specifies the formatting tool to be used.
|
|
226
|
+
* @default prettier
|
|
227
|
+
*
|
|
228
|
+
* Possible values:
|
|
229
|
+
* - 'prettier': Uses Prettier for code formatting.
|
|
230
|
+
* - 'biome': Uses Biome for code formatting.
|
|
231
|
+
*
|
|
232
|
+
*/
|
|
233
|
+
format?: 'prettier' | 'biome' | false;
|
|
234
|
+
/**
|
|
235
|
+
* Specifies the linter that should be used to analyze the code.
|
|
236
|
+
* The accepted values indicate different linting tools.
|
|
237
|
+
*
|
|
238
|
+
* Possible values:
|
|
239
|
+
* - 'eslint': Represents the use of ESLint, a widely used JavaScript linter.
|
|
240
|
+
* - 'biome': Represents the Biome linter, a modern tool for code scanning.
|
|
241
|
+
* - 'oxlint': Represents the Oxlint tool for linting purposes.
|
|
242
|
+
*
|
|
243
|
+
*/
|
|
244
|
+
lint?: 'eslint' | 'biome' | 'oxlint' | false;
|
|
224
245
|
/**
|
|
225
246
|
* Override the extension to the generated imports and exports, by default each plugin will add an extension
|
|
226
247
|
* @default { '.ts': '.ts'}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-redoc",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.1",
|
|
4
4
|
"description": "Beautiful docs with Redoc",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"handlebars": "^4.7.8",
|
|
43
|
-
"@kubb/core": "3.
|
|
44
|
-
"@kubb/oas": "3.
|
|
45
|
-
"@kubb/plugin-oas": "3.
|
|
43
|
+
"@kubb/core": "3.18.1",
|
|
44
|
+
"@kubb/oas": "3.18.1",
|
|
45
|
+
"@kubb/plugin-oas": "3.18.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"tsdown": "^0.14.1",
|
|
49
49
|
"typescript": "^5.9.2",
|
|
50
|
-
"@kubb/config-ts": "3.
|
|
50
|
+
"@kubb/config-ts": "3.18.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@kubb/react": "^3.0.0"
|