Skip to content

Commit 69a6ac1

Browse files
committed
fix: rename accountPurposeDescription to accountPurposeDetails
1 parent 32fccc2 commit 69a6ac1

852 files changed

Lines changed: 918 additions & 915 deletions

File tree

Some content is hidden

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

api/openapi.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.2
22
info:
33
description: An OpenAPI specifications for unit-sdk clients
44
title: Unit OpenAPI specifications
5-
version: 0.3.1
5+
version: 0.3.2
66
servers:
77
- url: https://api.s.unit.sh
88
security:
@@ -12807,7 +12807,7 @@ components:
1280712807
type: array
1280812808
accountPurpose:
1280912809
$ref: '#/components/schemas/ThreadIndividualAccountPurpose'
12810-
accountPurposeDescription:
12810+
accountPurposeDetail:
1281112811
type: string
1281212812
sourceOfFunds:
1281312813
$ref: '#/components/schemas/ThreadIndividualSourceOfFunds'
@@ -12918,7 +12918,7 @@ components:
1291812918
type: string
1291912919
accountPurpose:
1292012920
$ref: '#/components/schemas/ThreadBusinessAccountPurpose'
12921-
accountPurposeDescription:
12921+
accountPurposeDetail:
1292212922
type: string
1292312923
businessDescription:
1292412924
type: string
@@ -13006,7 +13006,7 @@ components:
1300613006
type: array
1300713007
accountPurpose:
1300813008
$ref: '#/components/schemas/ThreadBusinessAccountPurpose'
13009-
accountPurposeDescription:
13009+
accountPurposeDetail:
1301013010
type: string
1301113011
transactionVolume:
1301213012
$ref: '#/components/schemas/ThreadBusinessTransactionVolume'

build.gradle

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

2121
group = 'co.unit'
22-
version = '0.3.1'
22+
version = '0.3.2'
2323

2424
repositories {
2525
mavenCentral()

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.3.1</version>
8+
<version>0.3.2</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/unit/java/sdk/ApiClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -168,7 +168,7 @@ public ApiClient() {
168168
this.mapper = createDefaultObjectMapper();
169169
updateBaseUri(getDefaultBaseUri());
170170
interceptor = (req) -> {
171-
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.1");
171+
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.2");
172172
};
173173
readTimeout = null;
174174
connectTimeout = null;
@@ -188,7 +188,7 @@ public ApiClient(HttpClient.Builder builder, ObjectMapper mapper, String baseUri
188188
this.mapper = mapper;
189189
updateBaseUri(baseUri != null ? baseUri : getDefaultBaseUri());
190190
interceptor = (req) -> {
191-
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.1");
191+
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.2");
192192
};
193193
readTimeout = null;
194194
connectTimeout = null;
@@ -343,7 +343,7 @@ public ApiClient setScheme(String scheme){
343343
*/
344344
public ApiClient setRequestInterceptor(Consumer<HttpRequest.Builder> interceptor) {
345345
this.interceptor = (req) -> {
346-
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.1");
346+
req.setHeader("X-UNIT-SDK", "unit-openapi-java-sdk@v0.3.2");
347347
interceptor.accept(req);
348348
};
349349
return this;

src/main/java/unit/java/sdk/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/unit/java/sdk/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/unit/java/sdk/Configuration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -15,7 +15,7 @@
1515

1616
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.9.0")
1717
public class Configuration {
18-
public static final String VERSION = "0.3.1";
18+
public static final String VERSION = "0.3.2";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

src/main/java/unit/java/sdk/JSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/unit/java/sdk/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/unit/java/sdk/RFC3339DateFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Unit OpenAPI specifications
33
* An OpenAPI specifications for unit-sdk clients
44
*
5-
* The version of the OpenAPI document: 0.3.1
5+
* The version of the OpenAPI document: 0.3.2
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)