@team-supercharge/oasg 6.1.0 → 6.2.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 +7 -0
- package/README.md +3 -1
- package/package.json +1 -1
- package/targets/ios/generate.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
## [6.2.0](https://gitlab.com/team-supercharge/oasg/compare/v6.1.0...v6.2.0) (2022-11-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **ios:** support generatorCustomArgs config parameter ([7a5b227](https://gitlab.com/team-supercharge/oasg/commit/7a5b227ffcf0aac2da38d8daaed9fc02a7abd20e))
|
|
11
|
+
|
|
5
12
|
## [6.1.0](https://gitlab.com/team-supercharge/oasg/compare/v6.0.0...v6.1.0) (2022-11-22)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -425,7 +425,8 @@ Common target parameters
|
|
|
425
425
|
"projectName": "OASgExample",
|
|
426
426
|
"generator": "https://gitlab.supercharge.io/misc/openapi-generator-sc/-/package_files/348/download",
|
|
427
427
|
"repository": "git@gitlab.supercharge.io:example/openapi-generator-source.git",
|
|
428
|
-
"interfaceType": "Combine"
|
|
428
|
+
"interfaceType": "Combine",
|
|
429
|
+
"generatorCustomArgs": "--model-name-suffix=ApiModel"
|
|
429
430
|
}
|
|
430
431
|
```
|
|
431
432
|
|
|
@@ -434,6 +435,7 @@ Common target parameters
|
|
|
434
435
|
| projectName | Name of the project | Y | - |
|
|
435
436
|
| repository | URL of the generated client api code repository | Y | - |
|
|
436
437
|
| interfaceType | Response type of the generated client: `Combine` / `Result` / `RxSwift` / `AsyncAwait` / `PromiseKit` | Y | - |
|
|
438
|
+
| generatorCustomArgs | Custom arguments of the generator | N | - |
|
|
437
439
|
|
|
438
440
|
#### Python
|
|
439
441
|
|
package/package.json
CHANGED
package/targets/ios/generate.sh
CHANGED