@kubb/plugin-faker 3.0.0-beta.3 → 3.0.0-beta.4
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/components.d.cts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/generators.d.cts +1 -1
- package/dist/generators.d.ts +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/{types-C1bqlbxh.d.cts → types-Cq8z4Gto.d.cts} +2 -1
- package/dist/{types-C1bqlbxh.d.ts → types-Cq8z4Gto.d.ts} +2 -1
- package/package.json +10 -10
- package/src/types.ts +2 -1
package/dist/components.d.cts
CHANGED
package/dist/components.d.ts
CHANGED
package/dist/generators.d.cts
CHANGED
package/dist/generators.d.ts
CHANGED
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,8 @@ import { ResolvePathOptions, Exclude, Include, Override, Schema, Generator } fro
|
|
|
4
4
|
|
|
5
5
|
type Options = {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Specify the export location for the files and define the behavior of the output
|
|
8
|
+
* @default { path: 'handlers', barrelType: 'named' }
|
|
8
9
|
*/
|
|
9
10
|
output?: Output;
|
|
10
11
|
/**
|
|
@@ -4,7 +4,8 @@ import { ResolvePathOptions, Exclude, Include, Override, Schema, Generator } fro
|
|
|
4
4
|
|
|
5
5
|
type Options = {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Specify the export location for the files and define the behavior of the output
|
|
8
|
+
* @default { path: 'handlers', barrelType: 'named' }
|
|
8
9
|
*/
|
|
9
10
|
output?: Output;
|
|
10
11
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-faker",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
4
4
|
"description": "Generator plugin-faker",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"faker",
|
|
@@ -61,21 +61,21 @@
|
|
|
61
61
|
"!/**/__tests__/**"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@kubb/core": "3.0.0-beta.
|
|
65
|
-
"@kubb/fs": "3.0.0-beta.
|
|
66
|
-
"@kubb/oas": "3.0.0-beta.
|
|
67
|
-
"@kubb/plugin-oas": "3.0.0-beta.
|
|
68
|
-
"@kubb/plugin-ts": "3.0.0-beta.
|
|
69
|
-
"@kubb/react": "3.0.0-beta.
|
|
64
|
+
"@kubb/core": "3.0.0-beta.4",
|
|
65
|
+
"@kubb/fs": "3.0.0-beta.4",
|
|
66
|
+
"@kubb/oas": "3.0.0-beta.4",
|
|
67
|
+
"@kubb/plugin-oas": "3.0.0-beta.4",
|
|
68
|
+
"@kubb/plugin-ts": "3.0.0-beta.4",
|
|
69
|
+
"@kubb/react": "3.0.0-beta.4"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"tsup": "^8.3.0",
|
|
73
73
|
"typescript": "^5.6.2",
|
|
74
|
-
"@kubb/config-ts": "3.0.0-beta.
|
|
75
|
-
"@kubb/config-tsup": "3.0.0-beta.
|
|
74
|
+
"@kubb/config-ts": "3.0.0-beta.4",
|
|
75
|
+
"@kubb/config-tsup": "3.0.0-beta.4"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"@kubb/react": "3.0.0-beta.
|
|
78
|
+
"@kubb/react": "3.0.0-beta.4"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
81
81
|
"node": ">=20"
|
package/src/types.ts
CHANGED
|
@@ -5,7 +5,8 @@ import type { Exclude, Generator, Include, Override, ResolvePathOptions, Schema
|
|
|
5
5
|
|
|
6
6
|
export type Options = {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Specify the export location for the files and define the behavior of the output
|
|
9
|
+
* @default { path: 'handlers', barrelType: 'named' }
|
|
9
10
|
*/
|
|
10
11
|
output?: Output
|
|
11
12
|
/**
|