Skip to content

Commit

Permalink
fix: openapi generator version update (#133)
Browse files Browse the repository at this point in the history
* chore: update openapi version

* chore: regenerated source code
  • Loading branch information
wtrocki authored Aug 3, 2021
1 parent 352a8d3 commit cf86bff
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclFilterAny {
Any = 'ANY'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclOperation {
All = 'ALL',
Read = 'READ',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclPatternTypeFilterOneOf {
Match = 'MATCH'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclPatternType {
Literal = 'LITERAL',
Prefixed = 'PREFIXED'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclPermissionType {
Allow = 'ALLOW',
Deny = 'DENY'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum AclResourceType {
Group = 'GROUP',
Topic = 'TOPIC',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @export
* @enum {string}
*/

export enum RegistryStatusValueRest {
Accepted = 'accepted',
Provisioning = 'provisioning',
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ generate_sdk() {
--ignore-file-override=.openapi-generator-ignore
}

npx @openapitools/openapi-generator-cli version-manager set 5.1.1
npx @openapitools/openapi-generator-cli version-manager set 5.2.0
echo "Generating SDKs"
additional_properties="ngVersion=6.1.7,npmName=${PACKAGE_NAME},supportsES6=true,withInterfaces=true,withSeparateModelsAndApi=true,modelPackage=model,apiPackage=api"

Expand Down

0 comments on commit cf86bff

Please sign in to comment.