@rxap/schematics-open-api 14.1.3 → 15.0.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/CHANGELOG.md +15 -7
- package/README.md +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,25 +3,33 @@
|
|
|
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
|
-
## [
|
|
6
|
+
## [15.0.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@15.0.0...@rxap/schematics-open-api@15.0.1) (2023-05-17)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
*
|
|
11
|
+
* cleanup serialized open api operation object ([f5322e0](https://gitlab.com/rxap/packages/commit/f5322e050f5077d4b4a3fe5fb6f41634bd17f8d7))
|
|
12
|
+
* **schematics:** pre generate interface imports ([1b1cf87](https://gitlab.com/rxap/packages/commit/1b1cf8788e052dfd32c95be47e116aae7cae5caf))
|
|
13
|
+
* **schematics:** update open api schematics package ([cc01087](https://gitlab.com/rxap/packages/commit/cc010878bf2eee788a0f61e3b2dbfa1a08b45bd8))
|
|
14
|
+
* support open api projects with sub directories ([73c88f9](https://gitlab.com/rxap/packages/commit/73c88f9473770df4063b487d646f68243d011b1c))
|
|
12
15
|
|
|
13
16
|
|
|
14
17
|
|
|
15
18
|
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
# [15.0.0](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@14.1.1...@rxap/schematics-open-api@15.0.0) (2022-12-14)
|
|
18
21
|
|
|
19
22
|
|
|
20
|
-
###
|
|
23
|
+
### chore
|
|
24
|
+
|
|
25
|
+
* upgrade to nrwl 15.x.x ([c0a94f6](https://gitlab.com/rxap/packages/commit/c0a94f6b044213fe55dbda0634bef60859daa345))
|
|
26
|
+
* upgrade to nrwl 15.x.x ([de2b991](https://gitlab.com/rxap/packages/commit/de2b99196ee6d388f37efd17b464a5bfa744de7e))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### BREAKING CHANGES
|
|
21
30
|
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
* support open api projects with sub directories ([65d7db8](https://gitlab.com/rxap/packages/commit/65d7db840b5ae92462d8b02216837fa9e9c47dfd))
|
|
31
|
+
* upgrade nrwl 15.x.x
|
|
32
|
+
* upgrade nrwl 15.x.x
|
|
25
33
|
|
|
26
34
|
|
|
27
35
|
|
package/README.md
CHANGED
|
@@ -15,6 +15,6 @@
|
|
|
15
15
|
# Installation
|
|
16
16
|
|
|
17
17
|
```
|
|
18
|
-
yarn add @rxap/schematics-open-api @rxap/json-schema-to-typescript@^14.0.3 @rxap/schematics-utilities@^
|
|
18
|
+
yarn add @rxap/schematics-open-api @rxap/json-schema-to-typescript@^14.0.3 @rxap/schematics-utilities@^15.0.0
|
|
19
19
|
```
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxap/schematics-open-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.1"
|
|
6
6
|
},
|
|
@@ -37,11 +37,13 @@
|
|
|
37
37
|
"email": "incoming+rxap-packages-14898188-issue-@incoming.gitlab.com"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
+
"@angular-devkit/schematics": "^15.0.3",
|
|
41
|
+
"@apidevtools/json-schema-ref-parser": "^9.1.0",
|
|
40
42
|
"@rxap/json-schema-to-typescript": "^14.0.3",
|
|
41
|
-
"@rxap/schematics-utilities": "^
|
|
43
|
+
"@rxap/schematics-utilities": "^15.0.1",
|
|
42
44
|
"openapi-types": "^10.0.0",
|
|
43
45
|
"ts-morph": "^13.0.3",
|
|
44
|
-
"semver": "
|
|
46
|
+
"semver": "7.3.5"
|
|
45
47
|
},
|
|
46
|
-
"
|
|
48
|
+
"types": "./src/index.d.ts"
|
|
47
49
|
}
|