Skip to content

Commit 4a66eb7

Browse files
authored
Merge pull request #60 from apideck-libraries/speakeasy-sdk-regen-1753169486
chore: 🐝 Update SDK - Generate 0.28.4
2 parents 603226a + e9b947f commit 4a66eb7

Some content is hidden

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

58 files changed

+696
-126
lines changed

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ generation:
2424
generateNewTests: true
2525
skipResponseBodyAssertions: false
2626
typescript:
27-
version: 0.28.3
27+
version: 0.28.4
2828
additionalDependencies:
2929
dependencies: {}
3030
devDependencies: {}

.speakeasy/workflow.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.583.0
1+
speakeasyVersion: 1.584.0
22
sources:
33
Apideck-OAS:
44
sourceNamespace: apideck-oas
5-
sourceRevisionDigest: sha256:b19171603c76253f17ca0479cd840fddfe8e30546e556e557f721a79bfe712cf
6-
sourceBlobDigest: sha256:ee91676a71c2a5c0adf1a48afa21be2567416e3031f84087f2faf4e8d7d43f46
5+
sourceRevisionDigest: sha256:7a7ae3bff27b9ff422b9dc2ba359bc8569ea51e110a0f0eefd40f748920a61ae
6+
sourceBlobDigest: sha256:2b307033426c7950370ce48f11f7d1ae47e383eed86eeb558a8b548c9354a9d5
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1752846423
10-
- 10.18.3
9+
- speakeasy-sdk-regen-1753169486
10+
- 10.18.4
1111
targets:
1212
apideck:
1313
source: Apideck-OAS
1414
sourceNamespace: apideck-oas
15-
sourceRevisionDigest: sha256:b19171603c76253f17ca0479cd840fddfe8e30546e556e557f721a79bfe712cf
16-
sourceBlobDigest: sha256:ee91676a71c2a5c0adf1a48afa21be2567416e3031f84087f2faf4e8d7d43f46
15+
sourceRevisionDigest: sha256:7a7ae3bff27b9ff422b9dc2ba359bc8569ea51e110a0f0eefd40f748920a61ae
16+
sourceBlobDigest: sha256:2b307033426c7950370ce48f11f7d1ae47e383eed86eeb558a8b548c9354a9d5
1717
codeSamplesNamespace: apideck-oas-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:1c0914137ed790c00fe15f462543dfe8a6749d1f9912a0243c2b3d3b2f96da3a
18+
codeSamplesRevisionDigest: sha256:55b2e46a216672ae0f213b4b5cd7072bd7426d562078df79172d2225b3d9a7b6
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,4 +388,14 @@ Based on:
388388
### Generated
389389
- [typescript v0.28.3] .
390390
### Releases
391-
- [NPM v0.28.3] https://www.npmjs.com/package/@apideck/unify/v/0.28.3 - .
391+
- [NPM v0.28.3] https://www.npmjs.com/package/@apideck/unify/v/0.28.3 - .
392+
393+
## 2025-07-22 07:31:07
394+
### Changes
395+
Based on:
396+
- OpenAPI Doc
397+
- Speakeasy CLI 1.584.0 (2.660.0) https://github.com/speakeasy-api/speakeasy
398+
### Generated
399+
- [typescript v0.28.4] .
400+
### Releases
401+
- [NPM v0.28.4] https://www.npmjs.com/package/@apideck/unify/v/0.28.4 - .
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AmortizationType
2+
3+
Type of amortization
4+
5+
## Example Usage
6+
7+
```typescript
8+
import { AmortizationType } from "@apideck/unify/models/components";
9+
10+
let value: AmortizationType = "receipt";
11+
```
12+
13+
## Values
14+
15+
```typescript
16+
"manual" | "receipt" | "schedule" | "other"
17+
```

docs/models/components/bill.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ let value: Bill = {
3838
discountAmount: 19.99,
3939
locationId: "12345",
4040
departmentId: "12345",
41+
subsidiaryId: "12345",
42+
categoryId: "12345",
4143
item: {
4244
id: "12344",
4345
code: "120-C",
@@ -55,6 +57,11 @@ let value: Bill = {
5557
nominalCode: "N091",
5658
code: "453",
5759
},
60+
purchaseOrder: {
61+
id: "123456",
62+
lineId: "123456",
63+
lineNumber: "1",
64+
},
5865
trackingCategories: [
5966
{
6067
id: "123456",
@@ -68,12 +75,7 @@ let value: Bill = {
6875
companyName: "The boring company",
6976
7077
},
71-
rebilling: {
72-
rebillable: true,
73-
rebillStatus: "billed",
74-
linkedTransactionId: "txn_abc123",
75-
linkedTransactionLineId: "line_xyz789",
76-
},
78+
rebilling: null,
7779
rowVersion: "1-12345",
7880
updatedBy: "12345",
7981
createdBy: "12345",

docs/models/components/billinput.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ let value: BillInput = {
6464
discountAmount: 19.99,
6565
locationId: "12345",
6666
departmentId: "12345",
67+
subsidiaryId: "12345",
68+
categoryId: "12345",
6769
item: {
6870
id: "12344",
6971
code: "120-C",
@@ -78,6 +80,11 @@ let value: BillInput = {
7880
nominalCode: "N091",
7981
code: "453",
8082
},
83+
purchaseOrder: {
84+
id: "123456",
85+
lineId: "123456",
86+
lineNumber: "1",
87+
},
8188
trackingCategories: [
8289
{
8390
id: "123456",

docs/models/components/billlineitem.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ let value: BillLineItem = {
2222
discountAmount: 19.99,
2323
locationId: "12345",
2424
departmentId: "12345",
25+
subsidiaryId: "12345",
26+
categoryId: "12345",
2527
item: {
2628
id: "12344",
2729
code: "120-C",
@@ -39,6 +41,11 @@ let value: BillLineItem = {
3941
nominalCode: "N091",
4042
code: "453",
4143
},
44+
purchaseOrder: {
45+
id: "123456",
46+
lineId: "123456",
47+
lineNumber: "1",
48+
},
4249
trackingCategories: [
4350
{
4451
id: "123456",
@@ -85,9 +92,12 @@ let value: BillLineItem = {
8592
| `discountAmount` | *number* | :heavy_minus_sign: | Discount amount applied to the line item when supported downstream. | 19.99 |
8693
| `locationId` | *string* | :heavy_minus_sign: | The ID of the location | 12345 |
8794
| `departmentId` | *string* | :heavy_minus_sign: | The ID of the department | 12345 |
95+
| `subsidiaryId` | *string* | :heavy_minus_sign: | The ID of the subsidiary | 12345 |
96+
| `categoryId` | *string* | :heavy_minus_sign: | ID of the category of the line item | 12345 |
8897
| `item` | [components.LinkedInvoiceItem](../../models/components/linkedinvoiceitem.md) | :heavy_minus_sign: | N/A | |
8998
| `taxRate` | [components.LinkedTaxRate](../../models/components/linkedtaxrate.md) | :heavy_minus_sign: | N/A | |
9099
| `ledgerAccount` | [components.LinkedLedgerAccount](../../models/components/linkedledgeraccount.md) | :heavy_minus_sign: | N/A | |
100+
| `purchaseOrder` | [components.LinkedPurchaseOrder](../../models/components/linkedpurchaseorder.md) | :heavy_minus_sign: | N/A | |
91101
| `trackingCategories` | [components.LinkedTrackingCategory](../../models/components/linkedtrackingcategory.md)[] | :heavy_minus_sign: | A list of linked tracking categories. | |
92102
| `customer` | [components.LinkedCustomer](../../models/components/linkedcustomer.md) | :heavy_minus_sign: | The customer this entity is linked to. | |
93103
| `rebilling` | [components.Rebilling](../../models/components/rebilling.md) | :heavy_minus_sign: | Rebilling metadata for this line item. | |

0 commit comments

Comments
 (0)