@wisemen/nestjs-async-api 0.0.6 → 0.1.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/.turbo/turbo-build.log +8 -0
- package/CHANGELOG.md +13 -0
- package/dist/lib/generate-async-api-html.d.ts +1 -1
- package/dist/lib/generate-async-api-html.js +770 -11
- package/dist/lib/generate-async-api-html.js.map +1 -1
- package/lib/generate-async-api-html.ts +946 -24
- package/package.json +20 -17
- package/tsconfig.json +1 -1
- package/.eslintcache +0 -1
- package/.release-it.json +0 -13
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
> @wisemen/nestjs-async-api@0.1.1 prebuild /home/runner/work/wisemen-core/wisemen-core/packages/api/nestjs-async-api
|
|
3
|
+
> rm -rf ./dist
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> @wisemen/nestjs-async-api@0.1.1 build /home/runner/work/wisemen-core/wisemen-core/packages/api/nestjs-async-api
|
|
7
|
+
> tsc
|
|
8
|
+
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @wisemen/nestjs-async-api
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#787](https://github.com/wisemen-digital/wisemen-core/pull/787) [`4fb11c0`](https://github.com/wisemen-digital/wisemen-core/commit/4fb11c0cca9104248772950f5076c150ec4ba7db) Thanks [@SebastiaanVanspauwen](https://github.com/SebastiaanVanspauwen)! - opened events can now be referenced by link
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- a3529b5: Replace @asyncapi/generator dependency with custom html generator
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function generateAsyncAPIHTML(yaml: string
|
|
1
|
+
export declare function generateAsyncAPIHTML(yaml: string): string;
|