Skip to content

Commit 24584ee

Browse files
committed
v0.2
1 parent d4ba24f commit 24584ee

35 files changed

Lines changed: 57 additions & 69 deletions

.openapi-generator/FILES

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.github/workflows/maven.yml
22
.gitignore
3-
.openapi-generator-ignore
43
.travis.yml
54
README.md
65
api/openapi.yaml
@@ -55,14 +54,3 @@ src/main/java/org/openapitools/client/model/TemplateType.java
5554
src/main/java/org/openapitools/client/model/TemplateUpsert.java
5655
src/main/java/org/openapitools/client/model/TemplateV2.java
5756
src/main/java/org/openapitools/client/model/UploadFileRequestUriParams.java
58-
src/test/java/org/openapitools/client/api/TemplateRoutesApiTest.java
59-
src/test/java/org/openapitools/client/api/UploadRoutesApiTest.java
60-
src/test/java/org/openapitools/client/model/ContextTest.java
61-
src/test/java/org/openapitools/client/model/DownloadFileRequestUriParamsTest.java
62-
src/test/java/org/openapitools/client/model/FileUploadV2Test.java
63-
src/test/java/org/openapitools/client/model/FindAllQueryParamsTest.java
64-
src/test/java/org/openapitools/client/model/RenderRequestTest.java
65-
src/test/java/org/openapitools/client/model/TemplateTypeTest.java
66-
src/test/java/org/openapitools/client/model/TemplateUpsertTest.java
67-
src/test/java/org/openapitools/client/model/TemplateV2Test.java
68-
src/test/java/org/openapitools/client/model/UploadFileRequestUriParamsTest.java

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# openapi-java-client
22

33
FileApi
4-
- API version: 0.1
5-
- Build date: 2025-10-30T21:45:34.503460199+01:00[Europe/Brussels]
4+
- API version: 0.2
5+
- Build date: 2025-10-31T20:35:04.006332485+01:00[Europe/Brussels]
66
- Generator version: 7.17.0
77

88
File Api V1
@@ -41,7 +41,7 @@ Add this dependency to your project's POM:
4141
<dependency>
4242
<groupId>org.openapitools</groupId>
4343
<artifactId>openapi-java-client</artifactId>
44-
<version>0.1</version>
44+
<version>0.2</version>
4545
<scope>compile</scope>
4646
</dependency>
4747
```
@@ -57,7 +57,7 @@ Add this dependency to your project's build file:
5757
}
5858
5959
dependencies {
60-
implementation "org.openapitools:openapi-java-client:0.1"
60+
implementation "org.openapitools:openapi-java-client:0.2"
6161
}
6262
```
6363

@@ -71,7 +71,7 @@ mvn clean package
7171

7272
Then manually install the following JARs:
7373

74-
* `target/openapi-java-client-0.1.jar`
74+
* `target/openapi-java-client-0.2.jar`
7575
* `target/lib/*.jar`
7676

7777
## Getting Started

api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
license:
55
name: ""
66
title: FileApi
7-
version: "0.1"
7+
version: "0.2"
88
servers:
99
- url: /
1010
paths:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'org.openapitools'
7-
version = '0.1'
7+
version = '0.2'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "org.openapitools",
44
name := "openapi-java-client",
5-
version := "0.1",
5+
version := "0.2",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
compile / javacOptions ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>openapi-java-client</artifactId>
66
<packaging>jar</packaging>
77
<name>openapi-java-client</name>
8-
<version>0.1</version>
8+
<version>0.2</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/org/openapitools/client/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* FileApi
33
* File Api V1
44
*
5-
* The version of the OpenAPI document: 0.1
5+
* The version of the OpenAPI document: 0.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/org/openapitools/client/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* FileApi
33
* File Api V1
44
*
5-
* The version of the OpenAPI document: 0.1
5+
* The version of the OpenAPI document: 0.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -139,7 +139,7 @@ protected void init() {
139139
json = new JSON();
140140

141141
// Set default User-Agent.
142-
setUserAgent("OpenAPI-Generator/0.1/java");
142+
setUserAgent("OpenAPI-Generator/0.2/java");
143143

144144
authentications = new HashMap<String, Authentication>();
145145
}

src/main/java/org/openapitools/client/ApiException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* FileApi
33
* File Api V1
44
*
5-
* The version of the OpenAPI document: 0.1
5+
* The version of the OpenAPI document: 0.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
2222
* <p>ApiException class.</p>
2323
*/
2424
@SuppressWarnings("serial")
25-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-30T21:45:34.503460199+01:00[Europe/Brussels]", comments = "Generator version: 7.17.0")
25+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-31T20:35:04.006332485+01:00[Europe/Brussels]", comments = "Generator version: 7.17.0")
2626
public class ApiException extends Exception {
2727
private static final long serialVersionUID = 1L;
2828

src/main/java/org/openapitools/client/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* FileApi
33
* File Api V1
44
*
5-
* The version of the OpenAPI document: 0.1
5+
* The version of the OpenAPI document: 0.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)