forked from loafle/openapi-generator-original
Prepare v7.2.0 (#17050)
* update version to 7.2.0-SNAPSHOT * update samples * update doc
This commit is contained in:
parent
e2a62ace74
commit
53289263d9
12
README.md
12
README.md
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.1.0`):
|
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.2.0`):
|
||||||
[](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
|
[](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
|
||||||
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
||||||
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
|
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
|
||||||
@ -120,8 +120,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
|
|||||||
|
|
||||||
| OpenAPI Generator Version | Release Date | Notes |
|
| OpenAPI Generator Version | Release Date | Notes |
|
||||||
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
|
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
|
||||||
| 7.1.0 (upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.1.0-SNAPSHOT/) | 18.10.2023 | Minor release with breaking changes (with fallback) |
|
| 7.2.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.2.0-SNAPSHOT/) | 15.12.2023 | Minor release with breaking changes (with fallback) |
|
||||||
| [7.0.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.0.1) (latest stable release) | 18.09.2023 | Patch release (enhancements, bug fixes, etc) |
|
| [7.1.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.1.0) (latest stable release) | 13.11.2023 | Minor release with breaking changes (with fallback) |
|
||||||
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
|
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
|
||||||
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
|
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
|
||||||
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
|
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
|
||||||
@ -184,16 +184,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
|
|||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
|
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
|
||||||
|
|
||||||
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.0.1/openapi-generator-cli-7.0.1.jar`
|
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.1.0/openapi-generator-cli-7.1.0.jar`
|
||||||
|
|
||||||
For **Mac/Linux** users:
|
For **Mac/Linux** users:
|
||||||
```sh
|
```sh
|
||||||
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.0.1/openapi-generator-cli-7.0.1.jar -O openapi-generator-cli.jar
|
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.1.0/openapi-generator-cli-7.1.0.jar -O openapi-generator-cli.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
|
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
|
||||||
```
|
```
|
||||||
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.0.1/openapi-generator-cli-7.0.1.jar
|
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.1.0/openapi-generator-cli-7.1.0.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
|
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# RELEASE_VERSION
|
# RELEASE_VERSION
|
||||||
openApiGeneratorVersion=7.1.0
|
openApiGeneratorVersion=7.2.0-SNAPSHOT
|
||||||
# /RELEASE_VERSION
|
# /RELEASE_VERSION
|
||||||
|
|
||||||
# BEGIN placeholders
|
# BEGIN placeholders
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# RELEASE_VERSION
|
# RELEASE_VERSION
|
||||||
openApiGeneratorVersion=7.1.0
|
openApiGeneratorVersion=7.2.0-SNAPSHOT
|
||||||
# /RELEASE_VERSION
|
# /RELEASE_VERSION
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<groupId>org.openapitools</groupId>
|
<groupId>org.openapitools</groupId>
|
||||||
<artifactId>openapi-generator-project</artifactId>
|
<artifactId>openapi-generator-project</artifactId>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<relativePath>../..</relativePath>
|
<relativePath>../..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
2
pom.xml
2
pom.xml
@ -13,7 +13,7 @@
|
|||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>openapi-generator-project</name>
|
<name>openapi-generator-project</name>
|
||||||
<!-- RELEASE_VERSION -->
|
<!-- RELEASE_VERSION -->
|
||||||
<version>7.1.0</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<!-- /RELEASE_VERSION -->
|
<!-- /RELEASE_VERSION -->
|
||||||
<url>https://github.com/openapitools/openapi-generator</url>
|
<url>https://github.com/openapitools/openapi-generator</url>
|
||||||
<scm>
|
<scm>
|
||||||
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* The version of the OpenAPI document: 0.1.0
|
* The version of the OpenAPI document: 0.1.0
|
||||||
* Contact: team@openapitools.org
|
* Contact: team@openapitools.org
|
||||||
* @generated Generated by: https://openapi-generator.tech
|
* @generated Generated by: https://openapi-generator.tech
|
||||||
* OpenAPI Generator version: 7.1.0-SNAPSHOT
|
* OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
The version of the OpenAPI document: 0.1.0
|
The version of the OpenAPI document: 0.1.0
|
||||||
Contact: team@openapitools.org
|
Contact: team@openapitools.org
|
||||||
Generated by: https://openapi-generator.tech
|
Generated by: https://openapi-generator.tech
|
||||||
OpenAPI Generator version: 7.1.0-SNAPSHOT
|
OpenAPI Generator version: 7.2.0-SNAPSHOT
|
||||||
|
|
||||||
=end
|
=end
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -4,7 +4,7 @@
|
|||||||
-- The version of the OpenAPI document: 1.0.0
|
-- The version of the OpenAPI document: 1.0.0
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.1.0-SNAPSHOT.
|
-- NOTE: This package is auto generated by OpenAPI-Generator 7.2.0-SNAPSHOT.
|
||||||
-- https://openapi-generator.tech
|
-- https://openapi-generator.tech
|
||||||
-- Do not edit the class manually.
|
-- Do not edit the class manually.
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- The version of the OpenAPI document: 1.0.0
|
-- The version of the OpenAPI document: 1.0.0
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.1.0-SNAPSHOT.
|
-- NOTE: This package is auto generated by OpenAPI-Generator 7.2.0-SNAPSHOT.
|
||||||
-- https://openapi-generator.tech
|
-- https://openapi-generator.tech
|
||||||
-- Do not edit the class manually.
|
-- Do not edit the class manually.
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- The version of the OpenAPI document: 1.0.0
|
-- The version of the OpenAPI document: 1.0.0
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.1.0-SNAPSHOT.
|
-- NOTE: This package is auto generated by OpenAPI-Generator 7.2.0-SNAPSHOT.
|
||||||
-- https://openapi-generator.tech
|
-- https://openapi-generator.tech
|
||||||
-- Do not edit the class manually.
|
-- Do not edit the class manually.
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- The version of the OpenAPI document: 1.0.0
|
-- The version of the OpenAPI document: 1.0.0
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.1.0-SNAPSHOT.
|
-- NOTE: This package is auto generated by OpenAPI-Generator 7.2.0-SNAPSHOT.
|
||||||
-- https://openapi-generator.tech
|
-- https://openapi-generator.tech
|
||||||
-- Do not edit the class manually.
|
-- Do not edit the class manually.
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
@ -1 +1 @@
|
|||||||
7.1.0-SNAPSHOT
|
7.2.0-SNAPSHOT
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user