Skip to content

Commit d44f791

Browse files
committed
feat: added operating address to business application
1 parent 9505ff1 commit d44f791

File tree

828 files changed

+912
-838
lines changed

Some content is hidden

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

828 files changed

+912
-838
lines changed

api/openapi.yaml

Lines changed: 5 additions & 1 deletion
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.2.4
5+
version: 0.2.5
66
servers:
77
- url: https://api.s.unit.sh
88
security:
@@ -11900,6 +11900,8 @@ components:
1190011900
type: string
1190111901
businessVertical:
1190211902
$ref: '#/components/schemas/BusinessVertical'
11903+
operatingAddress:
11904+
$ref: '#/components/schemas/Address'
1190311905
required:
1190411906
- beneficialOwners
1190511907
- contact
@@ -12351,6 +12353,8 @@ components:
1235112353
type: string
1235212354
businessVertical:
1235312355
$ref: '#/components/schemas/BusinessVertical'
12356+
operatingAddress:
12357+
$ref: '#/components/schemas/Address'
1235412358
required:
1235512359
- address
1235612360
- beneficialOwners

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.2.5'
22+
version = '0.2.6'
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.2.5</version>
8+
<version>0.2.6</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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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", "[email protected].3");
171+
req.setHeader("X-UNIT-SDK", "[email protected].5");
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", "[email protected].3");
191+
req.setHeader("X-UNIT-SDK", "[email protected].5");
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", "[email protected].3");
346+
req.setHeader("X-UNIT-SDK", "[email protected].5");
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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.2.4";
18+
public static final String VERSION = "0.2.5";
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
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.2.4
5+
* The version of the OpenAPI document: 0.2.5
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)