Skip to content

Commit 7639bcc

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.545.0
1 parent 139dea3 commit 7639bcc

159 files changed

Lines changed: 20369 additions & 96 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.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**/.speakeasy/temp/
2+
**/.speakeasy/logs/
13
.speakeasy/temp/
24
.speakeasy/reports
35
# Ignore Gradle project-specific cache directory

.speakeasy/gen.lock

Lines changed: 370 additions & 8 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
@@ -11,11 +11,12 @@ generation:
1111
parameterOrderingFeb2024: true
1212
requestResponseComponentNamesFeb2024: true
1313
securityFeb2025: false
14+
sharedErrorComponentsApr2025: false
1415
auth:
1516
oAuth2ClientCredentialsEnabled: true
1617
oAuth2PasswordEnabled: true
1718
java:
18-
version: 0.13.1
19+
version: 0.13.2
1920
additionalDependencies: []
2021
additionalPlugins: []
2122
artifactID: unify

.speakeasy/workflow.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.540.0
1+
speakeasyVersion: 1.545.0
22
sources:
33
Apideck-OAS:
44
sourceNamespace: apideck-oas
5-
sourceRevisionDigest: sha256:9cc8ce639f2e9c19f6c2c7601a69786eb7f6da5b6e52241ea74596e7a203f58b
6-
sourceBlobDigest: sha256:920cd0abb9aa343c591a899ed87ab62dacd719dd688374cc42f919f1ebab947c
5+
sourceRevisionDigest: sha256:398f651916296550429915b6c7720d1b82f7d4abc02f1da6743f1025eec7ce58
6+
sourceBlobDigest: sha256:2bd53eae6304d45526de5697c98c13b5ea7a2414dfd8d31ca48caf6ac0ea040d
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1745317277
10-
- 10.16.4
9+
- speakeasy-sdk-regen-1746174536
10+
- 10.16.5
1111
targets:
1212
apideck:
1313
source: Apideck-OAS
1414
sourceNamespace: apideck-oas
15-
sourceRevisionDigest: sha256:9cc8ce639f2e9c19f6c2c7601a69786eb7f6da5b6e52241ea74596e7a203f58b
16-
sourceBlobDigest: sha256:920cd0abb9aa343c591a899ed87ab62dacd719dd688374cc42f919f1ebab947c
15+
sourceRevisionDigest: sha256:398f651916296550429915b6c7720d1b82f7d4abc02f1da6743f1025eec7ce58
16+
sourceBlobDigest: sha256:2bd53eae6304d45526de5697c98c13b5ea7a2414dfd8d31ca48caf6ac0ea040d
1717
codeSamplesNamespace: apideck-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:533046f4b7c29144159f9c225a40c760cff7af3840ec9bd087f27e1d6dbba193
18+
codeSamplesRevisionDigest: sha256:c3e250898360cd813beb3d968cd0b5240e426f6c34a1c5656db31327ae1c3e58
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 25 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.13.1'
50+
implementation 'com.apideck:unify:0.13.2'
5151
```
5252

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

@@ -140,7 +140,7 @@ public class Application {
140140
.request(req)
141141
.callAsStream()
142142
.forEach(item -> {
143-
// handle item again
143+
// handle item
144144
});
145145

146146
}
@@ -177,6 +177,22 @@ public class Application {
177177

178178
* [get](docs/sdks/balancesheet/README.md#get) - Get BalanceSheet
179179

180+
#### [accounting().bankFeedAccounts()](docs/sdks/bankfeedaccounts/README.md)
181+
182+
* [list](docs/sdks/bankfeedaccounts/README.md#list) - List Bank Feed Accounts
183+
* [create](docs/sdks/bankfeedaccounts/README.md#create) - Create Bank Feed Account
184+
* [get](docs/sdks/bankfeedaccounts/README.md#get) - Get Bank Feed Account
185+
* [update](docs/sdks/bankfeedaccounts/README.md#update) - Update Bank Feed Account
186+
* [delete](docs/sdks/bankfeedaccounts/README.md#delete) - Delete Bank Feed Account
187+
188+
#### [accounting().bankFeedStatements()](docs/sdks/bankfeedstatements/README.md)
189+
190+
* [list](docs/sdks/bankfeedstatements/README.md#list) - List Bank Feed Statements
191+
* [create](docs/sdks/bankfeedstatements/README.md#create) - Create Bank Feed Statement
192+
* [get](docs/sdks/bankfeedstatements/README.md#get) - Get Bank Feed Statement
193+
* [update](docs/sdks/bankfeedstatements/README.md#update) - Update Bank Feed Statement
194+
* [delete](docs/sdks/bankfeedstatements/README.md#delete) - Delete Bank Feed Statement
195+
180196
#### [accounting().billPayments()](docs/sdks/billpayments/README.md)
181197

182198
* [list](docs/sdks/billpayments/README.md#list) - List Bill Payments
@@ -727,7 +743,7 @@ public class Application {
727743
.request(req)
728744
.callAsStream()
729745
.forEach(item -> {
730-
// handle item again
746+
// handle item
731747
});
732748

733749
}
@@ -792,7 +808,7 @@ public class Application {
792808
.build())
793809
.callAsStream()
794810
.forEach(item -> {
795-
// handle item again
811+
// handle item
796812
});
797813

798814
}
@@ -851,7 +867,7 @@ public class Application {
851867
.request(req)
852868
.callAsStream()
853869
.forEach(item -> {
854-
// handle item again
870+
// handle item
855871
});
856872

857873
}
@@ -915,7 +931,7 @@ public class Application {
915931
.request(req)
916932
.callAsStream()
917933
.forEach(item -> {
918-
// handle item again
934+
// handle item
919935
});
920936

921937
}
@@ -968,7 +984,7 @@ public class Application {
968984
.request(req)
969985
.callAsStream()
970986
.forEach(item -> {
971-
// handle item again
987+
// handle item
972988
});
973989

974990
}
@@ -1070,7 +1086,7 @@ public class Application {
10701086
.request(req)
10711087
.callAsStream()
10721088
.forEach(item -> {
1073-
// handle item again
1089+
// handle item
10741090
});
10751091

10761092
}

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,14 @@ Based on:
268268
### Generated
269269
- [java v0.13.1] .
270270
### Releases
271-
- [Maven Central v0.13.1] https://central.sonatype.com/artifact/com.apideck/unify/0.13.1 - .
271+
- [Maven Central v0.13.1] https://central.sonatype.com/artifact/com.apideck/unify/0.13.1 - .
272+
273+
## 2025-05-15 00:11:46
274+
### Changes
275+
Based on:
276+
- OpenAPI Doc
277+
- Speakeasy CLI 1.545.0 (2.599.0) https://github.com/speakeasy-api/speakeasy
278+
### Generated
279+
- [java v0.13.2] .
280+
### Releases
281+
- [Maven Central v0.13.2] https://central.sonatype.com/artifact/com.apideck/unify/0.13.2 - .

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class Application {
3737
.request(req)
3838
.callAsStream()
3939
.forEach(item -> {
40-
// handle item again
40+
// handle item
4141
});
4242

4343
}

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.13.1"
106+
version = "0.13.2"
107107

108108
from components.java
109109

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# BankAccountType
2+
3+
Type of the bank account.
4+
5+
6+
## Values
7+
8+
| Name | Value |
9+
| ------------- | ------------- |
10+
| `BANK` | bank |
11+
| `CREDIT_CARD` | credit_card |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# BankFeedAccount
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
8+
| `id` | *String* | :heavy_check_mark: | A unique identifier for an object. | 12345 |
9+
| `bankAccountType` | [Optional\<BankAccountType>](../../models/components/BankAccountType.md) | :heavy_minus_sign: | Type of the bank account. | bank |
10+
| `sourceAccountId` | *Optional\<String>* | :heavy_minus_sign: | The source account's unique identifier. | src_456 |
11+
| `targetAccountId` | *Optional\<String>* | :heavy_minus_sign: | The target account's unique identifier in the accounting connector. | tgt_789 |
12+
| `targetAccountName` | *Optional\<String>* | :heavy_minus_sign: | Name associated with the target account. | Main Company Checking |
13+
| `targetAccountNumber` | *Optional\<String>* | :heavy_minus_sign: | Account number of the destination bank account. | NL91ABNA0417164300 |
14+
| `currency` | [JsonNullable\<Currency>](../../models/components/Currency.md) | :heavy_minus_sign: | Indicates the associated currency for an amount of money. Values correspond to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217). | USD |
15+
| `feedStatus` | [Optional\<FeedStatus>](../../models/components/FeedStatus.md) | :heavy_minus_sign: | Current status of the bank feed. | pending |
16+
| `country` | *JsonNullable\<String>* | :heavy_minus_sign: | Country code according to ISO 3166-1 alpha-2. | US |
17+
| `customFields` | List\<[CustomField](../../models/components/CustomField.md)> | :heavy_minus_sign: | N/A | |
18+
| `customMappings` | [JsonNullable\<CustomMappings>](../../models/components/CustomMappings.md) | :heavy_minus_sign: | When custom mappings are configured on the resource, the result is included here. | |
19+
| `createdAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date and time when the object was created. | 2020-09-30T07:43:32.000Z |
20+
| `updatedAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The date and time when the object was last updated. | 2020-09-30T07:43:32.000Z |
21+
| `updatedBy` | *JsonNullable\<String>* | :heavy_minus_sign: | The user who last updated the object. | 12345 |
22+
| `createdBy` | *JsonNullable\<String>* | :heavy_minus_sign: | The user who created the object. | 12345 |

0 commit comments

Comments
 (0)