Skip to content

Commit 892288d

Browse files
committed
0.7
1 parent 26154bf commit 892288d

36 files changed

Lines changed: 73 additions & 71 deletions

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.6
5-
- Build date: 2025-11-09T15:04:07.630137948+01:00[Europe/Brussels]
4+
- API version: 0.7
5+
- Build date: 2025-11-09T15:12:30.225143996+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.6</version>
44+
<version>0.7</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.6"
60+
implementation "org.openapitools:openapi-java-client:0.7"
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.6.jar`
74+
* `target/openapi-java-client-0.7.jar`
7575
* `target/lib/*.jar`
7676

7777
## Getting Started

api/openapi.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
license:
55
name: ""
66
title: FileApi
7-
version: "0.6"
7+
version: "0.7"
88
servers:
99
- url: /
1010
paths:
@@ -258,7 +258,9 @@ paths:
258258
content:
259259
application/json:
260260
schema:
261-
$ref: "#/components/schemas/FileUploadV2"
261+
items:
262+
$ref: "#/components/schemas/FileUploadV2"
263+
type: array
262264
description: Upload a file
263265
tags:
264266
- upload::routes

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.6'
7+
version = '0.7'
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.6",
5+
version := "0.7",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/UploadRoutesApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ No authorization required
430430

431431
<a id="upload"></a>
432432
# **upload**
433-
> FileUploadV2 upload(files, correlationId, isPublic, withoutThumbnail)
433+
> List&lt;FileUploadV2&gt; upload(files, correlationId, isPublic, withoutThumbnail)
434434
435435

436436

@@ -454,7 +454,7 @@ public class Example {
454454
Boolean isPublic = true; // Boolean |
455455
Boolean withoutThumbnail = true; // Boolean |
456456
try {
457-
FileUploadV2 result = apiInstance.upload(files, correlationId, isPublic, withoutThumbnail);
457+
List<FileUploadV2> result = apiInstance.upload(files, correlationId, isPublic, withoutThumbnail);
458458
System.out.println(result);
459459
} catch (ApiException e) {
460460
System.err.println("Exception when calling UploadRoutesApi#upload");
@@ -478,7 +478,7 @@ public class Example {
478478

479479
### Return type
480480

481-
[**FileUploadV2**](FileUploadV2.md)
481+
[**List&lt;FileUploadV2&gt;**](FileUploadV2.md)
482482

483483
### Authorization
484484

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.6</version>
8+
<version>0.7</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.6
5+
* The version of the OpenAPI document: 0.7
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.6
5+
* The version of the OpenAPI document: 0.7
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.6/java");
142+
setUserAgent("OpenAPI-Generator/0.7/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.6
5+
* The version of the OpenAPI document: 0.7
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-11-09T15:04:07.630137948+01:00[Europe/Brussels]", comments = "Generator version: 7.17.0")
25+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-09T15:12:30.225143996+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.6
5+
* The version of the OpenAPI document: 0.7
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)