@kubb/plugin-msw 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 +14 -14
- package/src/types.ts +0 -6
package/dist/index.d.cts
CHANGED
|
@@ -84,11 +84,6 @@ type ResolvedOptions = {
|
|
|
84
84
|
templates: NonNullable<Templates>;
|
|
85
85
|
};
|
|
86
86
|
type PluginMsw = PluginFactoryOptions<'plugin-msw', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
87
|
-
declare module '@kubb/core' {
|
|
88
|
-
interface _Register {
|
|
89
|
-
['@kubb/plugin-msw']: PluginMsw;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
87
|
|
|
93
88
|
declare const pluginMswName = "plugin-msw";
|
|
94
89
|
declare const pluginMsw: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginMsw>;
|
package/dist/index.d.ts
CHANGED
|
@@ -84,11 +84,6 @@ type ResolvedOptions = {
|
|
|
84
84
|
templates: NonNullable<Templates>;
|
|
85
85
|
};
|
|
86
86
|
type PluginMsw = PluginFactoryOptions<'plugin-msw', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
87
|
-
declare module '@kubb/core' {
|
|
88
|
-
interface _Register {
|
|
89
|
-
['@kubb/plugin-msw']: PluginMsw;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
87
|
|
|
93
88
|
declare const pluginMswName = "plugin-msw";
|
|
94
89
|
declare const pluginMsw: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginMsw>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-msw",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.1",
|
|
4
4
|
"description": "Generator swagger",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -66,27 +66,27 @@
|
|
|
66
66
|
"!/**/__tests__/**"
|
|
67
67
|
],
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@kubb/core": "3.0.0-alpha.
|
|
70
|
-
"@kubb/fs": "3.0.0-alpha.
|
|
71
|
-
"@kubb/oas": "3.0.0-alpha.
|
|
72
|
-
"@kubb/parser-ts": "3.0.0-alpha.
|
|
73
|
-
"@kubb/plugin-faker": "3.0.0-alpha.
|
|
74
|
-
"@kubb/plugin-oas": "3.0.0-alpha.
|
|
75
|
-
"@kubb/plugin-ts": "3.0.0-alpha.
|
|
76
|
-
"@kubb/react": "3.0.0-alpha.
|
|
69
|
+
"@kubb/core": "3.0.0-alpha.1",
|
|
70
|
+
"@kubb/fs": "3.0.0-alpha.1",
|
|
71
|
+
"@kubb/oas": "3.0.0-alpha.1",
|
|
72
|
+
"@kubb/parser-ts": "3.0.0-alpha.1",
|
|
73
|
+
"@kubb/plugin-faker": "3.0.0-alpha.1",
|
|
74
|
+
"@kubb/plugin-oas": "3.0.0-alpha.1",
|
|
75
|
+
"@kubb/plugin-ts": "3.0.0-alpha.1",
|
|
76
|
+
"@kubb/react": "3.0.0-alpha.1"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@types/react": "^18.3.
|
|
79
|
+
"@types/react": "^18.3.4",
|
|
80
80
|
"@types/react-dom": "^18.3.0",
|
|
81
81
|
"react": "^18.3.1",
|
|
82
82
|
"tsup": "^8.2.4",
|
|
83
83
|
"typescript": "^5.5.4",
|
|
84
|
-
"@kubb/config-biome": "3.0.0-alpha.
|
|
85
|
-
"@kubb/config-ts": "3.0.0-alpha.
|
|
86
|
-
"@kubb/config-tsup": "3.0.0-alpha.
|
|
84
|
+
"@kubb/config-biome": "3.0.0-alpha.1",
|
|
85
|
+
"@kubb/config-ts": "3.0.0-alpha.1",
|
|
86
|
+
"@kubb/config-tsup": "3.0.0-alpha.1"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@kubb/react": "3.0.0-alpha.
|
|
89
|
+
"@kubb/react": "3.0.0-alpha.1"
|
|
90
90
|
},
|
|
91
91
|
"engines": {
|
|
92
92
|
"node": ">=20"
|
package/src/types.ts
CHANGED