@kubb/plugin-faker 3.0.0-alpha.0 → 3.0.0-alpha.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 +0 -5
- package/dist/index.d.ts +0 -5
- package/package.json +13 -13
- package/src/types.ts +0 -6
package/dist/index.d.cts
CHANGED
|
@@ -123,11 +123,6 @@ type ResolvedOptions = {
|
|
|
123
123
|
regexGenerator: NonNullable<Options['regexGenerator']>;
|
|
124
124
|
};
|
|
125
125
|
type PluginFaker = PluginFactoryOptions<'plugin-faker', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
126
|
-
declare module '@kubb/core' {
|
|
127
|
-
interface _Register {
|
|
128
|
-
['@kubb/plugin-faker']: PluginFaker;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
126
|
|
|
132
127
|
declare const pluginFakerName = "plugin-faker";
|
|
133
128
|
declare const pluginFaker: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginFaker>;
|
package/dist/index.d.ts
CHANGED
|
@@ -123,11 +123,6 @@ type ResolvedOptions = {
|
|
|
123
123
|
regexGenerator: NonNullable<Options['regexGenerator']>;
|
|
124
124
|
};
|
|
125
125
|
type PluginFaker = PluginFactoryOptions<'plugin-faker', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
126
|
-
declare module '@kubb/core' {
|
|
127
|
-
interface _Register {
|
|
128
|
-
['@kubb/plugin-faker']: PluginFaker;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
126
|
|
|
132
127
|
declare const pluginFakerName = "plugin-faker";
|
|
133
128
|
declare const pluginFaker: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginFaker>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-faker",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.1",
|
|
4
4
|
"description": "Generator plugin-faker",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"faker",
|
|
@@ -53,25 +53,25 @@
|
|
|
53
53
|
"!/**/__tests__/**"
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@kubb/core": "3.0.0-alpha.
|
|
57
|
-
"@kubb/fs": "3.0.0-alpha.
|
|
58
|
-
"@kubb/oas": "3.0.0-alpha.
|
|
59
|
-
"@kubb/parser-ts": "3.0.0-alpha.
|
|
60
|
-
"@kubb/plugin-oas": "3.0.0-alpha.
|
|
61
|
-
"@kubb/plugin-ts": "3.0.0-alpha.
|
|
62
|
-
"@kubb/react": "3.0.0-alpha.
|
|
56
|
+
"@kubb/core": "3.0.0-alpha.1",
|
|
57
|
+
"@kubb/fs": "3.0.0-alpha.1",
|
|
58
|
+
"@kubb/oas": "3.0.0-alpha.1",
|
|
59
|
+
"@kubb/parser-ts": "3.0.0-alpha.1",
|
|
60
|
+
"@kubb/plugin-oas": "3.0.0-alpha.1",
|
|
61
|
+
"@kubb/plugin-ts": "3.0.0-alpha.1",
|
|
62
|
+
"@kubb/react": "3.0.0-alpha.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@types/react": "^18.3.
|
|
65
|
+
"@types/react": "^18.3.4",
|
|
66
66
|
"react": "^18.3.1",
|
|
67
67
|
"tsup": "^8.2.4",
|
|
68
68
|
"typescript": "^5.5.4",
|
|
69
|
-
"@kubb/config-biome": "3.0.0-alpha.
|
|
70
|
-
"@kubb/config-ts": "3.0.0-alpha.
|
|
71
|
-
"@kubb/config-tsup": "3.0.0-alpha.
|
|
69
|
+
"@kubb/config-biome": "3.0.0-alpha.1",
|
|
70
|
+
"@kubb/config-ts": "3.0.0-alpha.1",
|
|
71
|
+
"@kubb/config-tsup": "3.0.0-alpha.1"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@kubb/react": "3.0.0-alpha.
|
|
74
|
+
"@kubb/react": "3.0.0-alpha.1"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
77
|
"node": ">=20"
|
package/src/types.ts
CHANGED
|
@@ -128,9 +128,3 @@ export type FileMeta = {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
export type PluginFaker = PluginFactoryOptions<'plugin-faker', Options, ResolvedOptions, never, ResolvePathOptions>
|
|
131
|
-
|
|
132
|
-
declare module '@kubb/core' {
|
|
133
|
-
export interface _Register {
|
|
134
|
-
['@kubb/plugin-faker']: PluginFaker
|
|
135
|
-
}
|
|
136
|
-
}
|