Skip to content

Commit 4520164

Browse files
committed
0.13
1 parent a4b45fe commit 4520164

51 files changed

Lines changed: 89 additions & 158 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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.12
5-
- Build date: 2025-11-10T17:45:30.149167520+01:00[Europe/Brussels]
4+
- API version: 0.13
5+
- Build date: 2025-11-10T19:26:24.374477156+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.12</version>
44+
<version>0.13</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.12"
60+
implementation "org.openapitools:openapi-java-client:0.13"
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.12.jar`
74+
* `target/openapi-java-client-0.13.jar`
7575
* `target/lib/*.jar`
7676

7777
## Getting Started

api/openapi.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
license:
55
name: ""
66
title: FileApi
7-
version: "0.12"
7+
version: "0.13"
88
servers:
99
- url: /
1010
paths:
@@ -566,8 +566,6 @@ components:
566566
file:
567567
format: binary
568568
type: string
569-
file_upload:
570-
$ref: "#/components/schemas/FileUploadV2"
571569
required:
572570
- file
573571
RenderRequest:
@@ -675,8 +673,6 @@ components:
675673
file:
676674
format: binary
677675
type: string
678-
file_upload:
679-
$ref: "#/components/schemas/FileUploadV2"
680676
required:
681677
- file
682678

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

docs/OpenApiDocUploadFormSimpleFile.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**_file** | **File** | | |
11-
|**fileUpload** | [**FileUploadV2**](FileUploadV2.md) | | [optional] |
1211

1312

1413

docs/UploadRoutesApi.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ No authorization required
497497

498498
<a id="uploadUpdate"></a>
499499
# **uploadUpdate**
500-
> FileUploadV2 uploadUpdate(id, _file, correlationId, isPublic, withoutThumbnail, fileUpload)
500+
> FileUploadV2 uploadUpdate(id, _file, correlationId, isPublic, withoutThumbnail)
501501
502502

503503

@@ -521,9 +521,8 @@ public class Example {
521521
String correlationId = "correlationId_example"; // String |
522522
Boolean isPublic = true; // Boolean |
523523
Boolean withoutThumbnail = true; // Boolean |
524-
FileUploadV2 fileUpload = new FileUploadV2(); // FileUploadV2 |
525524
try {
526-
FileUploadV2 result = apiInstance.uploadUpdate(id, _file, correlationId, isPublic, withoutThumbnail, fileUpload);
525+
FileUploadV2 result = apiInstance.uploadUpdate(id, _file, correlationId, isPublic, withoutThumbnail);
527526
System.out.println(result);
528527
} catch (ApiException e) {
529528
System.err.println("Exception when calling UploadRoutesApi#uploadUpdate");
@@ -545,7 +544,6 @@ public class Example {
545544
| **correlationId** | **String**| | [optional] |
546545
| **isPublic** | **Boolean**| | [optional] |
547546
| **withoutThumbnail** | **Boolean**| | [optional] |
548-
| **fileUpload** | [**FileUploadV2**](FileUploadV2.md)| | [optional] |
549547

550548
### Return type
551549

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.12</version>
8+
<version>0.13</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.12
5+
* The version of the OpenAPI document: 0.13
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.12
5+
* The version of the OpenAPI document: 0.13
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.12/java");
142+
setUserAgent("OpenAPI-Generator/0.13/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.12
5+
* The version of the OpenAPI document: 0.13
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-10T17:45:30.149167520+01:00[Europe/Brussels]", comments = "Generator version: 7.17.0")
25+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T19:26:24.374477156+01:00[Europe/Brussels]", comments = "Generator version: 7.17.0")
2626
public class ApiException extends Exception {
2727
private static final long serialVersionUID = 1L;
2828

0 commit comments

Comments
 (0)