Skip to content

Commit 65b3f90

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.559.0
1 parent 3ef4287 commit 65b3f90

97 files changed

Lines changed: 1770 additions & 1235 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.

.speakeasy/gen.lock

Lines changed: 597 additions & 9 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ generation:
1717
oAuth2ClientCredentialsEnabled: true
1818
oAuth2PasswordEnabled: true
1919
java:
20-
version: 0.14.1
20+
version: 0.14.2
2121
additionalDependencies: []
2222
additionalPlugins: []
2323
artifactID: unify
24+
baseErrorName: ApideckError
2425
clientServerStatusCodesAsErrors: true
2526
companyEmail: support@apideck.com
2627
companyName: Apideck

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.555.0
1+
speakeasyVersion: 1.559.0
22
sources:
33
Apideck-OAS:
44
sourceNamespace: apideck-oas
5-
sourceRevisionDigest: sha256:48a5e5a0fa143606766870a4034b239bf930cf511e4ac72cdfd6d3cc2ab002c6
6-
sourceBlobDigest: sha256:56d1ef43c8d49e89407bc967e1cd9b9eeb54029bf17113e1c6914056084805da
5+
sourceRevisionDigest: sha256:aa6d4e25ae293135395f2d07031bb2901593fbc27701c6111e1a7c5b3dc5f216
6+
sourceBlobDigest: sha256:b16d87c11cc9c5bbff0fc829bd6621927e10f79ff8f16a6b6eddd3b1bf56e8a1
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1748856962
9+
- speakeasy-sdk-regen-1749226422
1010
- 10.17.2
1111
targets:
1212
apideck:
1313
source: Apideck-OAS
1414
sourceNamespace: apideck-oas
15-
sourceRevisionDigest: sha256:48a5e5a0fa143606766870a4034b239bf930cf511e4ac72cdfd6d3cc2ab002c6
16-
sourceBlobDigest: sha256:56d1ef43c8d49e89407bc967e1cd9b9eeb54029bf17113e1c6914056084805da
15+
sourceRevisionDigest: sha256:aa6d4e25ae293135395f2d07031bb2901593fbc27701c6111e1a7c5b3dc5f216
16+
sourceBlobDigest: sha256:b16d87c11cc9c5bbff0fc829bd6621927e10f79ff8f16a6b6eddd3b1bf56e8a1
1717
codeSamplesNamespace: apideck-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:a728d7b8c008eeefa77f8eef994bd9c4ee6677664a88f964ed1f7995910294e5
18+
codeSamplesRevisionDigest: sha256:f8b7695852b903f7a50ac5291e3a75432d61daca540916d4767e089b1568800b
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ The samples below show how a published SDK artifact is used:
4747

4848
Gradle:
4949
```groovy
50-
implementation 'com.apideck:unify:0.14.1'
50+
implementation 'com.apideck:unify:0.14.2'
5151
```
5252

5353
Maven:
5454
```xml
5555
<dependency>
5656
<groupId>com.apideck</groupId>
5757
<artifactId>unify</artifactId>
58-
<version>0.14.1</version>
58+
<version>0.14.2</version>
5959
</dependency>
6060
```
6161

@@ -117,9 +117,9 @@ public class Application {
117117
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
118118

119119
Apideck sdk = Apideck.builder()
120-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
121120
.consumerId("test-consumer")
122121
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
122+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
123123
.build();
124124

125125
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -736,9 +736,9 @@ public class Application {
736736
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
737737

738738
Apideck sdk = Apideck.builder()
739-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
740739
.consumerId("test-consumer")
741740
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
741+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
742742
.build();
743743

744744
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -791,9 +791,9 @@ public class Application {
791791
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
792792

793793
Apideck sdk = Apideck.builder()
794-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
795794
.consumerId("test-consumer")
796795
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
796+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
797797
.build();
798798

799799
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -860,9 +860,9 @@ public class Application {
860860
.retryConnectError(false)
861861
.build())
862862
.build())
863-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
864863
.consumerId("test-consumer")
865864
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
865+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
866866
.build();
867867

868868
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -924,9 +924,9 @@ public class Application {
924924
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
925925

926926
Apideck sdk = Apideck.builder()
927-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
928927
.consumerId("test-consumer")
929928
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
929+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
930930
.build();
931931

932932
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -977,9 +977,9 @@ public class Application {
977977

978978
Apideck sdk = Apideck.builder()
979979
.serverURL("https://unify.apideck.com")
980-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
981980
.consumerId("test-consumer")
982981
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
982+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
983983
.build();
984984

985985
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()
@@ -1026,9 +1026,9 @@ public class Application {
10261026
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
10271027

10281028
Apideck sdk = Apideck.builder()
1029-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
10301029
.consumerId("test-consumer")
10311030
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
1031+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
10321032
.build();
10331033

10341034
AccountingAttachmentsUploadRequest req = AccountingAttachmentsUploadRequest.builder()

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,14 @@ Based on:
318318
### Generated
319319
- [java v0.14.1] .
320320
### Releases
321-
- [Maven Central v0.14.1] https://central.sonatype.com/artifact/com.apideck/unify/0.14.1 - .
321+
- [Maven Central v0.14.1] https://central.sonatype.com/artifact/com.apideck/unify/0.14.1 - .
322+
323+
## 2025-06-10 12:04:36
324+
### Changes
325+
Based on:
326+
- OpenAPI Doc
327+
- Speakeasy CLI 1.559.0 (2.624.0) https://github.com/speakeasy-api/speakeasy
328+
### Generated
329+
- [java v0.14.2] .
330+
### Releases
331+
- [Maven Central v0.14.2] https://central.sonatype.com/artifact/com.apideck/unify/0.14.2 - .

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ public class Application {
1414
public static void main(String[] args) throws BadRequestResponse, UnauthorizedResponse, PaymentRequiredResponse, NotFoundResponse, UnprocessableResponse, Exception {
1515

1616
Apideck sdk = Apideck.builder()
17-
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
1817
.consumerId("test-consumer")
1918
.appId("dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX")
19+
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
2020
.build();
2121

2222
AccountingTaxRatesAllRequest req = AccountingTaxRatesAllRequest.builder()

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ publishing {
103103
// https://github.com/gradle/gradle/issues/18619
104104
groupId = "com.apideck"
105105
artifactId = "unify"
106-
version = "0.14.1"
106+
version = "0.14.2"
107107

108108
from components.java
109109

docs/models/components/ConnectionImportData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description | Example |
77
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
88
| `credentials` | [Optional\<Credentials>](../../models/components/Credentials.md) | :heavy_minus_sign: | N/A | {<br/>"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",<br/>"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.cThIIoDvwdueQB468K5xDc5633seEFoqwxjF_xSJyQQ"<br/>} |
9-
| `settings` | [JsonNullable\<Settings>](../../models/components/Settings.md) | :heavy_minus_sign: | Connection settings. Values will persist to `form_fields` with corresponding id | {<br/>"instance_url": "https://eu28.salesforce.com"<br/>} |
9+
| `settings` | Map\<String, *Object*> | :heavy_minus_sign: | Connection settings. Values will persist to `form_fields` with corresponding id | {<br/>"instance_url": "https://eu28.salesforce.com"<br/>} |
1010
| `metadata` | Map\<String, *Object*> | :heavy_minus_sign: | Attach your own consumer specific metadata | {<br/>"account": {<br/>"name": "My Company",<br/>"id": "c01458a5-7276-41ce-bc19-639906b0450a"<br/>},<br/>"plan": "enterprise"<br/>} |

0 commit comments

Comments
 (0)