@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 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
- ## [14.1.3](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@14.1.2...@rxap/schematics-open-api@14.1.3) (2023-01-24)
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
- * **schematics:** pre generate interface imports ([fdd29d0](https://gitlab.com/rxap/packages/commit/fdd29d0c5ed7066de13357e13eda62696c508be8))
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
- ## [14.1.2](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@14.1.1...@rxap/schematics-open-api@14.1.2) (2023-01-16)
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
- ### Bug Fixes
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
- * cleanup serialized open api operation object ([75c90ad](https://gitlab.com/rxap/packages/commit/75c90ad18a60ac659a6e14a687307fc486b367a7))
23
- * **schematics:** update open api schematics package ([c4a1839](https://gitlab.com/rxap/packages/commit/c4a18398f459d913a34ae31b7c8c6f88ce3fd3fc))
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@^14.0.4
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": "14.1.3",
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": "^14.0.4",
43
+ "@rxap/schematics-utilities": "^15.0.1",
42
44
  "openapi-types": "^10.0.0",
43
45
  "ts-morph": "^13.0.3",
44
- "semver": "^7.3.5"
46
+ "semver": "7.3.5"
45
47
  },
46
- "typings": "./src/index.d.ts"
48
+ "types": "./src/index.d.ts"
47
49
  }