@kubb/plugin-oas 4.20.2 → 4.20.5
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/SchemaMapper-CE2wt2cR.d.cts +350 -0
- package/dist/SchemaMapper-CmwW1HVs.d.ts +349 -0
- package/dist/{createGenerator-D30QUDWi.d.ts → createGenerator-Cd10rV1T.d.ts} +33 -5
- package/dist/{createGenerator-1nstUihJ.d.cts → createGenerator-DfYQQtRa.d.cts} +33 -5
- package/dist/generators.d.cts +2 -2
- package/dist/generators.d.ts +2 -2
- package/dist/hooks.d.cts +3 -2
- package/dist/hooks.d.ts +3 -2
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/mocks.d.cts +1 -1
- package/dist/mocks.d.ts +1 -1
- package/dist/utils.d.cts +3 -2
- package/dist/utils.d.ts +3 -2
- package/package.json +9 -6
- package/dist/SchemaMapper-DmB5NyNo.d.cts +0 -1037
- package/dist/SchemaMapper-DnWpiVfW.d.ts +0 -1036
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
import { t as __name } from "./chunk-iVr_oF3V.js";
|
|
2
|
-
import {
|
|
2
|
+
import { _ as contentType, d as HttpMethod, g as SchemaObject, h as Operation, i as SchemaKeywordMapper, t as Schema, u as Oas } from "./SchemaMapper-CmwW1HVs.js";
|
|
3
|
+
import { BaseGenerator, Config, FileMetaBase, Group, KubbEvents, Output, Plugin, PluginFactoryOptions, PluginManager, ResolveNameParams } from "@kubb/core";
|
|
3
4
|
import { Fabric } from "@kubb/react-fabric";
|
|
4
5
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
5
6
|
import { FabricReactNode } from "@kubb/react-fabric/types";
|
|
6
7
|
|
|
8
|
+
//#region ../core/src/utils/AsyncEventEmitter.d.ts
|
|
9
|
+
declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
10
|
+
#private;
|
|
11
|
+
constructor(maxListener?: number);
|
|
12
|
+
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
13
|
+
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
14
|
+
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArgs: TEvents[TEventName]) => void): void;
|
|
15
|
+
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
16
|
+
removeAll(): void;
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
7
19
|
//#region ../core/src/utils/FunctionParams.d.ts
|
|
8
20
|
type FunctionParamsASTWithoutType = {
|
|
9
21
|
name?: string;
|
|
@@ -36,6 +48,22 @@ type FunctionParamsASTWithType = {
|
|
|
36
48
|
*/
|
|
37
49
|
type FunctionParamsAST = FunctionParamsASTWithoutType | FunctionParamsASTWithType;
|
|
38
50
|
//#endregion
|
|
51
|
+
//#region ../core/src/types.d.ts
|
|
52
|
+
declare global {
|
|
53
|
+
namespace Kubb {
|
|
54
|
+
interface PluginContext {}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Config used in `kubb.config.ts`
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* import { defineConfig } from '@kubb/core'
|
|
62
|
+
* export default defineConfig({
|
|
63
|
+
* ...
|
|
64
|
+
* })
|
|
65
|
+
*/
|
|
66
|
+
//#endregion
|
|
39
67
|
//#region src/types.d.ts
|
|
40
68
|
type GetOasOptions = {
|
|
41
69
|
validate?: boolean;
|
|
@@ -212,7 +240,7 @@ type ByContentType = {
|
|
|
212
240
|
type: 'contentType';
|
|
213
241
|
pattern: string | RegExp;
|
|
214
242
|
};
|
|
215
|
-
type Exclude = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
243
|
+
type Exclude$1 = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
216
244
|
type Include = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
217
245
|
type Override<TOptions> = (ByTag | ByOperationId | ByPath | ByMethod | BySchemaName | ByContentType) & {
|
|
218
246
|
options: Partial<TOptions>;
|
|
@@ -227,7 +255,7 @@ type OperationMethodResult<TFileMeta extends FileMetaBase> = Promise<KubbFile.Fi
|
|
|
227
255
|
type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
228
256
|
fabric: Fabric;
|
|
229
257
|
oas: Oas;
|
|
230
|
-
exclude: Array<Exclude> | undefined;
|
|
258
|
+
exclude: Array<Exclude$1> | undefined;
|
|
231
259
|
include: Array<Include> | undefined;
|
|
232
260
|
override: Array<Override<TOptions>> | undefined;
|
|
233
261
|
contentType: contentType | undefined;
|
|
@@ -387,5 +415,5 @@ type CoreGenerator<TOptions extends PluginFactoryOptions> = {
|
|
|
387
415
|
};
|
|
388
416
|
declare function createGenerator<TOptions extends PluginFactoryOptions>(generator: UserGenerator<TOptions>): CoreGenerator<TOptions>;
|
|
389
417
|
//#endregion
|
|
390
|
-
export { Resolver as C, ResolvePathOptions as S, Options as _, createReactGenerator as a, Ref as b, SchemaGeneratorBuildOptions as c, OperationGenerator as d, OperationMethodResult as f, OperationSchemas as g, OperationSchema as h, ReactGenerator as i, SchemaGeneratorOptions as l, Include as m, createGenerator as n, GetSchemaGeneratorOptions as o, Exclude as p, Generator as r, SchemaGenerator as s, CoreGenerator as t, SchemaMethodResult as u, Override as v, FunctionParamsAST as w, Refs as x, PluginOas as y };
|
|
391
|
-
//# sourceMappingURL=createGenerator-
|
|
418
|
+
export { Resolver as C, ResolvePathOptions as S, Options as _, createReactGenerator as a, Ref as b, SchemaGeneratorBuildOptions as c, OperationGenerator as d, OperationMethodResult as f, OperationSchemas as g, OperationSchema as h, ReactGenerator as i, SchemaGeneratorOptions as l, Include as m, createGenerator as n, GetSchemaGeneratorOptions as o, Exclude$1 as p, Generator as r, SchemaGenerator as s, CoreGenerator as t, SchemaMethodResult as u, Override as v, FunctionParamsAST as w, Refs as x, PluginOas as y };
|
|
419
|
+
//# sourceMappingURL=createGenerator-Cd10rV1T.d.ts.map
|
|
@@ -1,8 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { _ as contentType, d as HttpMethod, g as SchemaObject, h as Operation, i as SchemaKeywordMapper, t as Schema, u as Oas, v as __name } from "./SchemaMapper-CE2wt2cR.cjs";
|
|
2
|
+
import { BaseGenerator, Config, FileMetaBase, Group, KubbEvents, Output, Plugin, PluginFactoryOptions, PluginManager, ResolveNameParams } from "@kubb/core";
|
|
2
3
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
3
4
|
import { Fabric } from "@kubb/react-fabric";
|
|
4
5
|
import { FabricReactNode } from "@kubb/react-fabric/types";
|
|
5
6
|
|
|
7
|
+
//#region ../core/src/utils/AsyncEventEmitter.d.ts
|
|
8
|
+
declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
9
|
+
#private;
|
|
10
|
+
constructor(maxListener?: number);
|
|
11
|
+
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
12
|
+
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
13
|
+
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArgs: TEvents[TEventName]) => void): void;
|
|
14
|
+
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
15
|
+
removeAll(): void;
|
|
16
|
+
}
|
|
17
|
+
//#endregion
|
|
6
18
|
//#region ../core/src/utils/FunctionParams.d.ts
|
|
7
19
|
type FunctionParamsASTWithoutType = {
|
|
8
20
|
name?: string;
|
|
@@ -35,6 +47,22 @@ type FunctionParamsASTWithType = {
|
|
|
35
47
|
*/
|
|
36
48
|
type FunctionParamsAST = FunctionParamsASTWithoutType | FunctionParamsASTWithType;
|
|
37
49
|
//#endregion
|
|
50
|
+
//#region ../core/src/types.d.ts
|
|
51
|
+
declare global {
|
|
52
|
+
namespace Kubb {
|
|
53
|
+
interface PluginContext {}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Config used in `kubb.config.ts`
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* import { defineConfig } from '@kubb/core'
|
|
61
|
+
* export default defineConfig({
|
|
62
|
+
* ...
|
|
63
|
+
* })
|
|
64
|
+
*/
|
|
65
|
+
//#endregion
|
|
38
66
|
//#region src/types.d.ts
|
|
39
67
|
type GetOasOptions = {
|
|
40
68
|
validate?: boolean;
|
|
@@ -211,7 +239,7 @@ type ByContentType = {
|
|
|
211
239
|
type: 'contentType';
|
|
212
240
|
pattern: string | RegExp;
|
|
213
241
|
};
|
|
214
|
-
type Exclude = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
242
|
+
type Exclude$1 = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
215
243
|
type Include = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
216
244
|
type Override<TOptions> = (ByTag | ByOperationId | ByPath | ByMethod | BySchemaName | ByContentType) & {
|
|
217
245
|
options: Partial<TOptions>;
|
|
@@ -226,7 +254,7 @@ type OperationMethodResult<TFileMeta extends FileMetaBase> = Promise<KubbFile.Fi
|
|
|
226
254
|
type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
227
255
|
fabric: Fabric;
|
|
228
256
|
oas: Oas;
|
|
229
|
-
exclude: Array<Exclude> | undefined;
|
|
257
|
+
exclude: Array<Exclude$1> | undefined;
|
|
230
258
|
include: Array<Include> | undefined;
|
|
231
259
|
override: Array<Override<TOptions>> | undefined;
|
|
232
260
|
contentType: contentType | undefined;
|
|
@@ -386,5 +414,5 @@ type CoreGenerator<TOptions extends PluginFactoryOptions> = {
|
|
|
386
414
|
};
|
|
387
415
|
declare function createGenerator<TOptions extends PluginFactoryOptions>(generator: UserGenerator<TOptions>): CoreGenerator<TOptions>;
|
|
388
416
|
//#endregion
|
|
389
|
-
export { Resolver as C, ResolvePathOptions as S, Options as _, createReactGenerator as a, Ref as b, SchemaGeneratorBuildOptions as c, OperationGenerator as d, OperationMethodResult as f, OperationSchemas as g, OperationSchema as h, ReactGenerator as i, SchemaGeneratorOptions as l, Include as m, createGenerator as n, GetSchemaGeneratorOptions as o, Exclude as p, Generator as r, SchemaGenerator as s, CoreGenerator as t, SchemaMethodResult as u, Override as v, FunctionParamsAST as w, Refs as x, PluginOas as y };
|
|
390
|
-
//# sourceMappingURL=createGenerator-
|
|
417
|
+
export { Resolver as C, ResolvePathOptions as S, Options as _, createReactGenerator as a, Ref as b, SchemaGeneratorBuildOptions as c, OperationGenerator as d, OperationMethodResult as f, OperationSchemas as g, OperationSchema as h, ReactGenerator as i, SchemaGeneratorOptions as l, Include as m, createGenerator as n, GetSchemaGeneratorOptions as o, Exclude$1 as p, Generator as r, SchemaGenerator as s, CoreGenerator as t, SchemaMethodResult as u, Override as v, FunctionParamsAST as w, Refs as x, PluginOas as y };
|
|
418
|
+
//# sourceMappingURL=createGenerator-DfYQQtRa.d.cts.map
|
package/dist/generators.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { a as createReactGenerator, n as createGenerator, r as Generator, t as CoreGenerator, y as PluginOas } from "./createGenerator-
|
|
1
|
+
import { v as __name } from "./SchemaMapper-CE2wt2cR.cjs";
|
|
2
|
+
import { a as createReactGenerator, n as createGenerator, r as Generator, t as CoreGenerator, y as PluginOas } from "./createGenerator-DfYQQtRa.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/generators/jsonGenerator.d.ts
|
|
5
5
|
declare const jsonGenerator: CoreGenerator<PluginOas>;
|
package/dist/generators.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as __name } from "./chunk-iVr_oF3V.js";
|
|
2
|
-
import "./SchemaMapper-
|
|
3
|
-
import { a as createReactGenerator, n as createGenerator, r as Generator, t as CoreGenerator, y as PluginOas } from "./createGenerator-
|
|
2
|
+
import "./SchemaMapper-CmwW1HVs.js";
|
|
3
|
+
import { a as createReactGenerator, n as createGenerator, r as Generator, t as CoreGenerator, y as PluginOas } from "./createGenerator-Cd10rV1T.js";
|
|
4
4
|
|
|
5
5
|
//#region src/generators/jsonGenerator.d.ts
|
|
6
6
|
declare const jsonGenerator: CoreGenerator<PluginOas>;
|
package/dist/hooks.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { d as OperationGenerator, g as OperationSchemas } from "./createGenerator-
|
|
1
|
+
import { h as Operation, u as Oas, v as __name } from "./SchemaMapper-CE2wt2cR.cjs";
|
|
2
|
+
import { d as OperationGenerator, g as OperationSchemas } from "./createGenerator-DfYQQtRa.cjs";
|
|
3
|
+
import { FileMetaBase, Plugin, PluginFactoryOptions, ResolveNameParams } from "@kubb/core";
|
|
3
4
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
4
5
|
|
|
5
6
|
//#region src/hooks/useOas.d.ts
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { t as __name } from "./chunk-iVr_oF3V.js";
|
|
2
|
-
import {
|
|
3
|
-
import { d as OperationGenerator, g as OperationSchemas } from "./createGenerator-
|
|
2
|
+
import { h as Operation, u as Oas } from "./SchemaMapper-CmwW1HVs.js";
|
|
3
|
+
import { d as OperationGenerator, g as OperationSchemas } from "./createGenerator-Cd10rV1T.js";
|
|
4
|
+
import { FileMetaBase, Plugin, PluginFactoryOptions, ResolveNameParams } from "@kubb/core";
|
|
4
5
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
5
6
|
|
|
6
7
|
//#region src/hooks/useOas.d.ts
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { C as Resolver, S as ResolvePathOptions, _ as Options, a as createReactGenerator$1, b as Ref, c as SchemaGeneratorBuildOptions, d as OperationGenerator, f as OperationMethodResult, g as OperationSchemas, h as OperationSchema, i as ReactGenerator, l as SchemaGeneratorOptions, m as Include, n as createGenerator$1, o as GetSchemaGeneratorOptions, p as Exclude, r as Generator$1, s as SchemaGenerator, u as SchemaMethodResult, v as Override, x as Refs, y as PluginOas } from "./createGenerator-
|
|
1
|
+
import { a as SchemaMapper, c as schemaKeywords, g as SchemaObject, h as Operation, i as SchemaKeywordMapper, n as SchemaKeyword, o as SchemaTree, r as SchemaKeywordBase, s as isKeyword, t as Schema, v as __name } from "./SchemaMapper-CE2wt2cR.cjs";
|
|
2
|
+
import { C as Resolver, S as ResolvePathOptions, _ as Options, a as createReactGenerator$1, b as Ref, c as SchemaGeneratorBuildOptions, d as OperationGenerator, f as OperationMethodResult, g as OperationSchemas, h as OperationSchema, i as ReactGenerator, l as SchemaGeneratorOptions, m as Include, n as createGenerator$1, o as GetSchemaGeneratorOptions, p as Exclude, r as Generator$1, s as SchemaGenerator, u as SchemaMethodResult, v as Override, x as Refs, y as PluginOas } from "./createGenerator-DfYQQtRa.cjs";
|
|
3
|
+
import * as _kubb_core0 from "@kubb/core";
|
|
4
|
+
import { Config, Plugin, PluginFactoryOptions } from "@kubb/core";
|
|
3
5
|
import { Fabric } from "@kubb/react-fabric";
|
|
4
6
|
|
|
5
7
|
//#region src/createParser.d.ts
|
|
@@ -121,7 +123,7 @@ declare function findSchemaKeyword<K$1 extends keyof SchemaKeywordMapper>(siblin
|
|
|
121
123
|
//#endregion
|
|
122
124
|
//#region src/plugin.d.ts
|
|
123
125
|
declare const pluginOasName = "plugin-oas";
|
|
124
|
-
declare const pluginOas: (options?: Options | undefined) => UserPluginWithLifeCycle<PluginOas>;
|
|
126
|
+
declare const pluginOas: (options?: Options | undefined) => _kubb_core0.UserPluginWithLifeCycle<PluginOas>;
|
|
125
127
|
//#endregion
|
|
126
128
|
//#region src/utils.d.ts
|
|
127
129
|
type BuildOperationsOptions<TOptions extends PluginFactoryOptions> = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { t as __name } from "./chunk-iVr_oF3V.js";
|
|
2
|
-
import {
|
|
3
|
-
import { C as Resolver, S as ResolvePathOptions, _ as Options, a as createReactGenerator$1, b as Ref, c as SchemaGeneratorBuildOptions, d as OperationGenerator, f as OperationMethodResult, g as OperationSchemas, h as OperationSchema, i as ReactGenerator, l as SchemaGeneratorOptions, m as Include, n as createGenerator$1, o as GetSchemaGeneratorOptions, p as Exclude, r as Generator$1, s as SchemaGenerator, u as SchemaMethodResult, v as Override, x as Refs, y as PluginOas } from "./createGenerator-
|
|
2
|
+
import { a as SchemaMapper, c as schemaKeywords, g as SchemaObject, h as Operation, i as SchemaKeywordMapper, n as SchemaKeyword, o as SchemaTree, r as SchemaKeywordBase, s as isKeyword, t as Schema } from "./SchemaMapper-CmwW1HVs.js";
|
|
3
|
+
import { C as Resolver, S as ResolvePathOptions, _ as Options, a as createReactGenerator$1, b as Ref, c as SchemaGeneratorBuildOptions, d as OperationGenerator, f as OperationMethodResult, g as OperationSchemas, h as OperationSchema, i as ReactGenerator, l as SchemaGeneratorOptions, m as Include, n as createGenerator$1, o as GetSchemaGeneratorOptions, p as Exclude, r as Generator$1, s as SchemaGenerator, u as SchemaMethodResult, v as Override, x as Refs, y as PluginOas } from "./createGenerator-Cd10rV1T.js";
|
|
4
|
+
import * as _kubb_core0 from "@kubb/core";
|
|
5
|
+
import { Config, Plugin, PluginFactoryOptions } from "@kubb/core";
|
|
4
6
|
import { Fabric } from "@kubb/react-fabric";
|
|
5
7
|
|
|
6
8
|
//#region src/createParser.d.ts
|
|
@@ -122,7 +124,7 @@ declare function findSchemaKeyword<K$1 extends keyof SchemaKeywordMapper>(siblin
|
|
|
122
124
|
//#endregion
|
|
123
125
|
//#region src/plugin.d.ts
|
|
124
126
|
declare const pluginOasName = "plugin-oas";
|
|
125
|
-
declare const pluginOas: (options?: Options | undefined) => UserPluginWithLifeCycle<PluginOas>;
|
|
127
|
+
declare const pluginOas: (options?: Options | undefined) => _kubb_core0.UserPluginWithLifeCycle<PluginOas>;
|
|
126
128
|
//#endregion
|
|
127
129
|
//#region src/utils.d.ts
|
|
128
130
|
type BuildOperationsOptions<TOptions extends PluginFactoryOptions> = {
|
package/dist/mocks.d.cts
CHANGED
package/dist/mocks.d.ts
CHANGED
package/dist/utils.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { h as OperationSchema, w as FunctionParamsAST } from "./createGenerator-
|
|
1
|
+
import { _ as contentType, f as OasTypes, g as SchemaObject, h as Operation, l as isOptional, m as OpenAPIV3_1, p as OpenAPIV3, t as Schema, u as Oas, v as __name } from "./SchemaMapper-CE2wt2cR.cjs";
|
|
2
|
+
import { h as OperationSchema, w as FunctionParamsAST } from "./createGenerator-DfYQQtRa.cjs";
|
|
3
|
+
import { Config, Output } from "@kubb/core";
|
|
3
4
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
4
5
|
import { Params } from "@kubb/react-fabric/types";
|
|
5
6
|
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { t as __name } from "./chunk-iVr_oF3V.js";
|
|
2
|
-
import {
|
|
3
|
-
import { h as OperationSchema, w as FunctionParamsAST } from "./createGenerator-
|
|
2
|
+
import { _ as contentType, f as OasTypes, g as SchemaObject, h as Operation, l as isOptional, m as OpenAPIV3_1, p as OpenAPIV3, t as Schema, u as Oas } from "./SchemaMapper-CmwW1HVs.js";
|
|
3
|
+
import { h as OperationSchema, w as FunctionParamsAST } from "./createGenerator-Cd10rV1T.js";
|
|
4
|
+
import { Config, Output } from "@kubb/core";
|
|
4
5
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
5
6
|
import { Params } from "@kubb/react-fabric/types";
|
|
6
7
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-oas",
|
|
3
|
-
"version": "4.20.
|
|
3
|
+
"version": "4.20.5",
|
|
4
4
|
"description": "OpenAPI Specification (OAS) plugin for Kubb, providing core functionality for parsing and processing OpenAPI/Swagger schemas for code generation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openapi",
|
|
7
7
|
"swagger",
|
|
8
8
|
"oas",
|
|
9
|
+
"openapi-v3",
|
|
9
10
|
"api-specification",
|
|
10
11
|
"schema-processing",
|
|
12
|
+
"schema-parser",
|
|
13
|
+
"rest-api",
|
|
11
14
|
"typescript",
|
|
12
15
|
"code-generator",
|
|
13
16
|
"codegen",
|
|
@@ -79,14 +82,14 @@
|
|
|
79
82
|
}
|
|
80
83
|
],
|
|
81
84
|
"dependencies": {
|
|
82
|
-
"@kubb/react-fabric": "0.12.
|
|
85
|
+
"@kubb/react-fabric": "0.12.10",
|
|
83
86
|
"p-limit": "^7.3.0",
|
|
84
|
-
"remeda": "^2.33.
|
|
85
|
-
"@kubb/core": "4.20.
|
|
86
|
-
"@kubb/oas": "4.20.
|
|
87
|
+
"remeda": "^2.33.5",
|
|
88
|
+
"@kubb/core": "4.20.5",
|
|
89
|
+
"@kubb/oas": "4.20.5"
|
|
87
90
|
},
|
|
88
91
|
"peerDependencies": {
|
|
89
|
-
"@kubb/react-fabric": "0.12.
|
|
92
|
+
"@kubb/react-fabric": "0.12.10"
|
|
90
93
|
},
|
|
91
94
|
"engines": {
|
|
92
95
|
"node": ">=20"
|