@kubb/plugin-mcp 4.13.1 → 4.14.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/components.d.cts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/generators.d.cts +2 -2
- package/dist/generators.d.ts +2 -2
- package/dist/{index-CBqa0LV5.d.ts → index-CSFn7xE-.d.cts} +6 -3
- package/dist/{index-BTxiFtLf.d.cts → index-DMPu1HVI.d.ts} +6 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/{types-BSHA4r7i.d.cts → types-B9-wG3nS.d.cts} +2 -2
- package/dist/{types-C-T02h7R.d.ts → types-BAk8yHcK.d.ts} +2 -2
- package/package.json +7 -7
package/dist/components.d.cts
CHANGED
package/dist/components.d.ts
CHANGED
package/dist/generators.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as ReactGenerator } from "./index-
|
|
2
|
-
import { n as PluginMcp } from "./types-
|
|
1
|
+
import { n as ReactGenerator } from "./index-CSFn7xE-.cjs";
|
|
2
|
+
import { n as PluginMcp } from "./types-B9-wG3nS.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/generators/mcpGenerator.d.ts
|
|
5
5
|
declare const mcpGenerator: ReactGenerator<PluginMcp>;
|
package/dist/generators.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as ReactGenerator } from "./index-
|
|
2
|
-
import { n as PluginMcp } from "./types-
|
|
1
|
+
import { n as ReactGenerator } from "./index-DMPu1HVI.js";
|
|
2
|
+
import { n as PluginMcp } from "./types-BAk8yHcK.js";
|
|
3
3
|
|
|
4
4
|
//#region src/generators/mcpGenerator.d.ts
|
|
5
5
|
declare const mcpGenerator: ReactGenerator<PluginMcp>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Fabric } from "@kubb/react-fabric";
|
|
2
1
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
2
|
+
import { Fabric } from "@kubb/react-fabric";
|
|
3
3
|
import * as oas_normalize_lib_types0 from "oas-normalize/lib/types";
|
|
4
4
|
import BaseOas from "oas";
|
|
5
5
|
import { Operation } from "oas/operation";
|
|
@@ -147,6 +147,8 @@ interface KubbEvents {
|
|
|
147
147
|
id?: string;
|
|
148
148
|
command: string;
|
|
149
149
|
args?: readonly string[];
|
|
150
|
+
success: boolean;
|
|
151
|
+
error: Error | null;
|
|
150
152
|
}];
|
|
151
153
|
/**
|
|
152
154
|
* Emitted when a new version of Kubb is available.
|
|
@@ -825,6 +827,7 @@ type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
|
825
827
|
*/
|
|
826
828
|
plugin: Plugin<TPluginOptions>;
|
|
827
829
|
mode: KubbFile.Mode;
|
|
830
|
+
UNSTABLE_NAMING?: true;
|
|
828
831
|
};
|
|
829
832
|
declare class OperationGenerator<TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> extends BaseGenerator<TPluginOptions['resolvedOptions'], Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>> {
|
|
830
833
|
#private;
|
|
@@ -1079,7 +1082,7 @@ type SchemaGeneratorOptions = {
|
|
|
1079
1082
|
dateType: false | 'string' | 'stringOffset' | 'stringLocal' | 'date';
|
|
1080
1083
|
unknownType: 'any' | 'unknown' | 'void';
|
|
1081
1084
|
emptySchemaType: 'any' | 'unknown' | 'void';
|
|
1082
|
-
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal';
|
|
1085
|
+
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal' | 'inlineLiteral';
|
|
1083
1086
|
enumSuffix?: string;
|
|
1084
1087
|
usedEnumNames?: Record<string, number>;
|
|
1085
1088
|
mapper?: Record<string, string>;
|
|
@@ -1161,4 +1164,4 @@ type CoreGenerator<TOptions extends PluginFactoryOptions> = {
|
|
|
1161
1164
|
};
|
|
1162
1165
|
//#endregion
|
|
1163
1166
|
export { OperationSchemas as a, Oas as c, Output as d, PluginFactoryOptions as f, Include as i, contentType as l, UserPluginWithLifeCycle as m, ReactGenerator as n, Override as o, ResolveNameParams as p, Exclude$1 as r, ResolvePathOptions as s, Generator as t, Group as u };
|
|
1164
|
-
//# sourceMappingURL=index-
|
|
1167
|
+
//# sourceMappingURL=index-CSFn7xE-.d.cts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { KubbFile } from "@kubb/fabric-core/types";
|
|
2
1
|
import { Fabric } from "@kubb/react-fabric";
|
|
2
|
+
import { KubbFile } from "@kubb/fabric-core/types";
|
|
3
3
|
import * as oas_normalize_lib_types0 from "oas-normalize/lib/types";
|
|
4
4
|
import BaseOas from "oas";
|
|
5
5
|
import { Operation } from "oas/operation";
|
|
@@ -147,6 +147,8 @@ interface KubbEvents {
|
|
|
147
147
|
id?: string;
|
|
148
148
|
command: string;
|
|
149
149
|
args?: readonly string[];
|
|
150
|
+
success: boolean;
|
|
151
|
+
error: Error | null;
|
|
150
152
|
}];
|
|
151
153
|
/**
|
|
152
154
|
* Emitted when a new version of Kubb is available.
|
|
@@ -825,6 +827,7 @@ type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
|
825
827
|
*/
|
|
826
828
|
plugin: Plugin<TPluginOptions>;
|
|
827
829
|
mode: KubbFile.Mode;
|
|
830
|
+
UNSTABLE_NAMING?: true;
|
|
828
831
|
};
|
|
829
832
|
declare class OperationGenerator<TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> extends BaseGenerator<TPluginOptions['resolvedOptions'], Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>> {
|
|
830
833
|
#private;
|
|
@@ -1079,7 +1082,7 @@ type SchemaGeneratorOptions = {
|
|
|
1079
1082
|
dateType: false | 'string' | 'stringOffset' | 'stringLocal' | 'date';
|
|
1080
1083
|
unknownType: 'any' | 'unknown' | 'void';
|
|
1081
1084
|
emptySchemaType: 'any' | 'unknown' | 'void';
|
|
1082
|
-
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal';
|
|
1085
|
+
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal' | 'inlineLiteral';
|
|
1083
1086
|
enumSuffix?: string;
|
|
1084
1087
|
usedEnumNames?: Record<string, number>;
|
|
1085
1088
|
mapper?: Record<string, string>;
|
|
@@ -1161,4 +1164,4 @@ type CoreGenerator<TOptions extends PluginFactoryOptions> = {
|
|
|
1161
1164
|
};
|
|
1162
1165
|
//#endregion
|
|
1163
1166
|
export { OperationSchemas as a, Oas as c, Output as d, PluginFactoryOptions as f, Include as i, contentType as l, UserPluginWithLifeCycle as m, ReactGenerator as n, Override as o, ResolveNameParams as p, Exclude$1 as r, ResolvePathOptions as s, Generator as t, Group as u };
|
|
1164
|
-
//# sourceMappingURL=index-
|
|
1167
|
+
//# sourceMappingURL=index-DMPu1HVI.d.ts.map
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { m as UserPluginWithLifeCycle } from "./index-
|
|
2
|
-
import { n as PluginMcp, t as Options } from "./types-
|
|
1
|
+
import { m as UserPluginWithLifeCycle } from "./index-CSFn7xE-.cjs";
|
|
2
|
+
import { n as PluginMcp, t as Options } from "./types-B9-wG3nS.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/plugin.d.ts
|
|
5
5
|
declare const pluginMcpName = "plugin-mcp";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { m as UserPluginWithLifeCycle } from "./index-
|
|
2
|
-
import { n as PluginMcp, t as Options } from "./types-
|
|
1
|
+
import { m as UserPluginWithLifeCycle } from "./index-DMPu1HVI.js";
|
|
2
|
+
import { n as PluginMcp, t as Options } from "./types-BAk8yHcK.js";
|
|
3
3
|
|
|
4
4
|
//#region src/plugin.d.ts
|
|
5
5
|
declare const pluginMcpName = "plugin-mcp";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as Oas, d as Output, f as PluginFactoryOptions, i as Include, l as contentType, o as Override, p as ResolveNameParams, r as Exclude, s as ResolvePathOptions, t as Generator, u as Group } from "./index-
|
|
1
|
+
import { c as Oas, d as Output, f as PluginFactoryOptions, i as Include, l as contentType, o as Override, p as ResolveNameParams, r as Exclude, s as ResolvePathOptions, t as Generator, u as Group } from "./index-CSFn7xE-.cjs";
|
|
2
2
|
|
|
3
3
|
//#region ../plugin-client/src/types.d.ts
|
|
4
4
|
|
|
@@ -180,4 +180,4 @@ type ResolvedOptions = {
|
|
|
180
180
|
type PluginMcp = PluginFactoryOptions<'plugin-mcp', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
181
181
|
//#endregion
|
|
182
182
|
export { PluginMcp as n, Options as t };
|
|
183
|
-
//# sourceMappingURL=types-
|
|
183
|
+
//# sourceMappingURL=types-B9-wG3nS.d.cts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as Oas, d as Output, f as PluginFactoryOptions, i as Include, l as contentType, o as Override, p as ResolveNameParams, r as Exclude, s as ResolvePathOptions, t as Generator, u as Group } from "./index-
|
|
1
|
+
import { c as Oas, d as Output, f as PluginFactoryOptions, i as Include, l as contentType, o as Override, p as ResolveNameParams, r as Exclude, s as ResolvePathOptions, t as Generator, u as Group } from "./index-DMPu1HVI.js";
|
|
2
2
|
|
|
3
3
|
//#region ../plugin-client/src/types.d.ts
|
|
4
4
|
|
|
@@ -180,4 +180,4 @@ type ResolvedOptions = {
|
|
|
180
180
|
type PluginMcp = PluginFactoryOptions<'plugin-mcp', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
181
181
|
//#endregion
|
|
182
182
|
export { PluginMcp as n, Options as t };
|
|
183
|
-
//# sourceMappingURL=types-
|
|
183
|
+
//# sourceMappingURL=types-BAk8yHcK.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-mcp",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.14.1",
|
|
4
4
|
"description": "Generator mcp",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -70,12 +70,12 @@
|
|
|
70
70
|
],
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@kubb/react-fabric": "0.9.2",
|
|
73
|
-
"@kubb/core": "4.
|
|
74
|
-
"@kubb/oas": "4.
|
|
75
|
-
"@kubb/plugin-client": "4.
|
|
76
|
-
"@kubb/plugin-oas": "4.
|
|
77
|
-
"@kubb/plugin-ts": "4.
|
|
78
|
-
"@kubb/plugin-zod": "4.
|
|
73
|
+
"@kubb/core": "4.14.1",
|
|
74
|
+
"@kubb/oas": "4.14.1",
|
|
75
|
+
"@kubb/plugin-client": "4.14.1",
|
|
76
|
+
"@kubb/plugin-oas": "4.14.1",
|
|
77
|
+
"@kubb/plugin-ts": "4.14.1",
|
|
78
|
+
"@kubb/plugin-zod": "4.14.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {},
|
|
81
81
|
"engines": {
|