@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 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.0",
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.0",
70
- "@kubb/fs": "3.0.0-alpha.0",
71
- "@kubb/oas": "3.0.0-alpha.0",
72
- "@kubb/parser-ts": "3.0.0-alpha.0",
73
- "@kubb/plugin-faker": "3.0.0-alpha.0",
74
- "@kubb/plugin-oas": "3.0.0-alpha.0",
75
- "@kubb/plugin-ts": "3.0.0-alpha.0",
76
- "@kubb/react": "3.0.0-alpha.0"
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.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.0",
85
- "@kubb/config-ts": "3.0.0-alpha.0",
86
- "@kubb/config-tsup": "3.0.0-alpha.0"
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.0"
89
+ "@kubb/react": "3.0.0-alpha.1"
90
90
  },
91
91
  "engines": {
92
92
  "node": ">=20"
package/src/types.ts CHANGED
@@ -87,9 +87,3 @@ export type FileMeta = {
87
87
  }
88
88
 
89
89
  export type PluginMsw = PluginFactoryOptions<'plugin-msw', Options, ResolvedOptions, never, ResolvePathOptions>
90
-
91
- declare module '@kubb/core' {
92
- export interface _Register {
93
- ['@kubb/plugin-msw']: PluginMsw
94
- }
95
- }