Skip to content

Commit cbfda34

Browse files
## Typescript SDK Changes: (#656)
* `codatsyncpayables.bills.update()`: **Added** Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent 237e9ec commit cbfda34

Some content is hidden

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

47 files changed

+5776
-272
lines changed

.speakeasy/logs/changes/changes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
<body><h2 id="typescript-sdk-changes">Typescript SDK Changes:</h2>
9999

100100
<ul>
101+
<li><code>codatsyncpayables.bills.update()</code>: <strong>Added</strong></li>
101102
<li><code>codatlending.banking.categorizedStatement.get()</code>: <code>response.reportItems[].transactions[].isRecurring</code> <strong>Added</strong></li>
102103
</ul>
103104
</body>

.speakeasy/logs/changes/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
## Typescript SDK Changes:
2+
* `codatsyncpayables.bills.update()`: **Added**
23
* `codatlending.banking.categorizedStatement.get()`: `response.reportItems[].transactions[].isRecurring` **Added**

.speakeasy/logs/changes/new.openapi.yaml

Lines changed: 1676 additions & 0 deletions
Large diffs are not rendered by default.

.speakeasy/logs/changes/old.openapi.yaml

Lines changed: 1417 additions & 0 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
speakeasyVersion: 1.709.1
12
speakeasyVersion: 1.701.0
23
sources:
34
bank-feeds-source:
@@ -42,11 +43,11 @@ sources:
4243
- prealpha
4344
sync-for-payables-source:
4445
sourceNamespace: sync-for-payables-source
45-
sourceRevisionDigest: sha256:f70dfe42888a956f70c0e7cecc46b1c38d2bcc3fdd8256037ef65f9c1e302042
46-
sourceBlobDigest: sha256:a1a7a05293d9dcd7b726bb27b3ba0589ba9cbbd462641608615bb200c3239ffe
46+
sourceRevisionDigest: sha256:9bd9e36fdb60e3d73fe7cc209c24ce0325919a523acec3edd84ee2f26420bedc
47+
sourceBlobDigest: sha256:59b5c9d3aa1a43fa4186c6ae1bf1108bf40d44d22f65ed6118b763574e0cf669
4748
tags:
4849
- latest
49-
- speakeasy-sdk-regen-1767965617
50+
- speakeasy-sdk-regen-1770645512
5051
- 3.0.0
5152
sync-for-payables-version-1-source:
5253
sourceNamespace: sync-for-payables-version-1-source
@@ -102,10 +103,10 @@ targets:
102103
sync-for-payables-library:
103104
source: sync-for-payables-source
104105
sourceNamespace: sync-for-payables-source
105-
sourceRevisionDigest: sha256:f70dfe42888a956f70c0e7cecc46b1c38d2bcc3fdd8256037ef65f9c1e302042
106-
sourceBlobDigest: sha256:a1a7a05293d9dcd7b726bb27b3ba0589ba9cbbd462641608615bb200c3239ffe
106+
sourceRevisionDigest: sha256:9bd9e36fdb60e3d73fe7cc209c24ce0325919a523acec3edd84ee2f26420bedc
107+
sourceBlobDigest: sha256:59b5c9d3aa1a43fa4186c6ae1bf1108bf40d44d22f65ed6118b763574e0cf669
107108
codeSamplesNamespace: sync-for-payables-source-typescript-code-samples
108-
codeSamplesRevisionDigest: sha256:7ae61273e83f23daa74a3016db35fa2dbfc8fdeb5bdff893b50bf2394560535a
109+
codeSamplesRevisionDigest: sha256:5f88c2c6b5a989b240bab7291806e7cfa89761bf865becebb0412b83bbe74909
109110
sync-for-payables-version-1-library:
110111
source: sync-for-payables-version-1-source
111112
sourceNamespace: sync-for-payables-version-1-source

sync-for-payables/.speakeasy/gen.lock

Lines changed: 218 additions & 79 deletions
Large diffs are not rendered by default.

sync-for-payables/.speakeasy/gen.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,23 @@ generation:
1313
requestResponseComponentNamesFeb2024: true
1414
securityFeb2025: false
1515
sharedErrorComponentsApr2025: false
16+
sharedNestedComponentsJan2026: false
1617
auth:
1718
oAuth2ClientCredentialsEnabled: false
1819
oAuth2PasswordEnabled: false
1920
hoistGlobalSecurity: true
2021
schemas:
2122
allOfMergeStrategy: shallowMerge
2223
requestBodyFieldName: ""
24+
versioningStrategy: automatic
2325
persistentEdits: {}
2426
tests:
2527
generateTests: true
2628
generateNewTests: false
2729
skipResponseBodyAssertions: false
2830
telemetryEnabled: true
2931
typescript:
30-
version: 9.2.0
32+
version: 9.3.0
3133
acceptHeaderEnum: true
3234
additionalDependencies:
3335
dependencies: {}
@@ -66,6 +68,7 @@ typescript:
6668
inputModelSuffix: input
6769
jsonpath: legacy
6870
laxMode: strict
71+
legacyFileNaming: true
6972
maxMethodParams: 0
7073
methodArguments: infer-optional-args
7174
modelPropertyCasing: camel

sync-for-payables/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ run();
8282
* [getBillOptions](docs/sdks/bills/README.md#getbilloptions) - Get bill mapping options
8383
* [list](docs/sdks/bills/README.md#list) - List bills
8484
* [create](docs/sdks/bills/README.md#create) - Create bill
85+
* [update](docs/sdks/bills/README.md#update) - Update bill
8586
* [uploadAttachment](docs/sdks/bills/README.md#uploadattachment) - Upload bill attachment
8687
* [listAttachments](docs/sdks/bills/README.md#listattachments) - List bill attachments
8788
* [downloadAttachment](docs/sdks/bills/README.md#downloadattachment) - Download bill attachment
@@ -203,6 +204,7 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
203204
- [`billsGetBillOptions`](docs/sdks/bills/README.md#getbilloptions) - Get bill mapping options
204205
- [`billsList`](docs/sdks/bills/README.md#list) - List bills
205206
- [`billsListAttachments`](docs/sdks/bills/README.md#listattachments) - List bill attachments
207+
- [`billsUpdate`](docs/sdks/bills/README.md#update) - Update bill
206208
- [`billsUploadAttachment`](docs/sdks/bills/README.md#uploadattachment) - Upload bill attachment
207209
- [`companiesCreate`](docs/sdks/companies/README.md#create) - Create company
208210
- [`companiesDelete`](docs/sdks/companies/README.md#delete) - Delete a company

sync-for-payables/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,14 @@ Based on:
8888
### Generated
8989
- [typescript v9.2.0] sync-for-payables
9090
### Releases
91-
- [NPM v9.2.0] https://www.npmjs.com/package/@codat/sync-for-payables/v/9.2.0 - sync-for-payables
91+
- [NPM v9.2.0] https://www.npmjs.com/package/@codat/sync-for-payables/v/9.2.0 - sync-for-payables
92+
93+
## 2026-02-09 13:58:05
94+
### Changes
95+
Based on:
96+
- OpenAPI Doc
97+
- Speakeasy CLI 1.709.1 (2.812.2) https://github.com/speakeasy-api/speakeasy
98+
### Generated
99+
- [typescript v9.3.0] sync-for-payables
100+
### Releases
101+
- [NPM v9.3.0] https://www.npmjs.com/package/@codat/sync-for-payables/v/9.3.0 - sync-for-payables

sync-for-payables/docs/sdk/models/operations/createbillpaymentrequest.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ let value: CreateBillPaymentRequest = {
1414

1515
## Fields
1616

17-
| Field | Type | Required | Description | Example |
18-
| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
19-
| `companyId` | *string* | :heavy_check_mark: | Unique identifier for a company. | 8a210b68-6988-11ed-a1eb-0242ac120002 |
20-
| `connectionId` | *string* | :heavy_check_mark: | Unique identifier for a connection. | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |
21-
| `billId` | *string* | :heavy_check_mark: | Unique identifier for a bill. | 13d946f0-c5d5-42bc-b092-97ece17923ab |
22-
| `idempotencyKey` | *string* | :heavy_minus_sign: | A unique identifier to ensure idempotent behaviour for subsequent requests. | |
23-
| `billPaymentPrototype` | [shared.BillPaymentPrototype](../../../sdk/models/shared/billpaymentprototype.md) | :heavy_minus_sign: | N/A | |
17+
| Field | Type | Required | Description | Example |
18+
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
19+
| `companyId` | *string* | :heavy_check_mark: | Unique identifier for a company. | 8a210b68-6988-11ed-a1eb-0242ac120002 |
20+
| `connectionId` | *string* | :heavy_check_mark: | Unique identifier for a connection. | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |
21+
| `billId` | *string* | :heavy_check_mark: | Unique identifier for a bill. | **Example 1:** 13d946f0-c5d5-42bc-b092-97ece17923ab<br/>**Example 2:** 9wg4lep4ush5cxs79pl8sozmsndbaukll3ind4g7buqbm1h2<br/>**Example 3:** 7110701885<br/>**Example 4:** EILBDVJVNUAGVKRQ |
22+
| `idempotencyKey` | *string* | :heavy_minus_sign: | A unique identifier to ensure idempotent behaviour for subsequent requests. | |
23+
| `billPaymentPrototype` | [shared.BillPaymentPrototype](../../../sdk/models/shared/billpaymentprototype.md) | :heavy_minus_sign: | N/A | |

0 commit comments

Comments
 (0)