@rxap/schematics-open-api 13.1.1 → 13.1.2
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/CHANGELOG.md +11 -0
- package/package.json +1 -1
- package/src/lib/generate-operation.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [13.1.2](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@13.1.1...@rxap/schematics-open-api@13.1.2) (2022-11-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use any return type ([44afb5b](https://gitlab.com/rxap/packages/commit/44afb5bd7a906e6e532efe9821c88b54063eeb3d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [13.1.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@13.1.0...@rxap/schematics-open-api@13.1.1) (2022-11-30)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { OpenAPIV3 } from 'openapi-types';
|
|
2
2
|
import { Project } from 'ts-morph';
|
|
3
3
|
import { GeneratorFunction, OpenApiSchemaBase } from './types';
|
|
4
|
-
export declare function GenerateOperation<Options extends OpenApiSchemaBase = OpenApiSchemaBase>(openapi: OpenAPIV3.Document, project: Project, options: Options, generatorFunctionList: GeneratorFunction<Options>[]): Promise<
|
|
4
|
+
export declare function GenerateOperation<Options extends OpenApiSchemaBase = OpenApiSchemaBase>(openapi: OpenAPIV3.Document, project: Project, options: Options, generatorFunctionList: GeneratorFunction<Options>[]): Promise<any>;
|