@team-supercharge/oasg 4.3.1 → 4.4.0

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [4.4.0](https://gitlab.com/team-supercharge/oasg/compare/v4.3.1...v4.4.0) (2022-05-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * set uppercase enum property naming for spring targets ([8898d42](https://gitlab.com/team-supercharge/oasg/commit/8898d42313035edc09308748176ea7b5f393ccca))
11
+ * turn off removing enum prefixes for spring and spring-kotlin targets ([db99309](https://gitlab.com/team-supercharge/oasg/commit/db993096cecb7e51b9006e867d9ae19182149559))
12
+
5
13
  ### [4.3.1](https://gitlab.com/team-supercharge/oasg/compare/v4.3.0...v4.3.1) (2022-04-27)
6
14
 
7
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-supercharge/oasg",
3
- "version": "4.3.1",
3
+ "version": "4.4.0",
4
4
  "description": "Node-based tool to lint OpenAPI documents and generate clients, servers and documentation from them",
5
5
  "author": "Supercharge",
6
6
  "license": "MIT",
@@ -7,6 +7,8 @@
7
7
  "skipDefaultInterface": true,
8
8
  "useTags": true,
9
9
  "hideGenerationTimestamp": true,
10
+ "enumPropertyNaming": "UPPERCASE",
11
+ "removeEnumValuePrefix": false,
10
12
  "typeMappings": {
11
13
  "OffsetDateTime": "Instant"
12
14
  },
@@ -4,6 +4,7 @@
4
4
  "interfaceOnly": true,
5
5
  "useTags": true,
6
6
  "enumPropertyNaming": "UPPERCASE",
7
+ "removeEnumValuePrefix": false,
7
8
  "typeMappings": {
8
9
  "DateTime": "java.time.Instant",
9
10
  "OffsetDateTime": "java.time.Instant"