Skip to content

Commit 36354b9

Browse files
committed
## Typescript SDK Changes Detected:
* `moov.invoices.createInvoice()`: **Added** * `moov.invoices.listInvoices()`: **Added** * `moov.invoices.getInvoice()`: **Added** * `moov.invoices.updateInvoice()`: **Added** * `moov.invoices.markPaidInvoice()`: **Added**
1 parent a262c6a commit 36354b9

File tree

99 files changed

+6049
-73
lines changed

Some content is hidden

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

99 files changed

+6049
-73
lines changed

.speakeasy/gen.lock

Lines changed: 155 additions & 5 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
@@ -26,7 +26,7 @@ generation:
2626
generateNewTests: false
2727
skipResponseBodyAssertions: false
2828
typescript:
29-
version: 0.21.14
29+
version: 0.21.15
3030
acceptHeaderEnum: true
3131
additionalDependencies:
3232
dependencies: {}

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
speakeasyVersion: 1.658.2
1+
speakeasyVersion: 1.659.0
22
sources:
33
latest:
44
sourceNamespace: api-latest
5-
sourceRevisionDigest: sha256:4d7d2a0274340be9ab29fca0a0e41c4c44791a3d55b7d08942f9ddb0b977e163
6-
sourceBlobDigest: sha256:e63d18b679add41df0582056293bfa29020f7eb5f69326e78e25b59c0c2213c3
5+
sourceRevisionDigest: sha256:b10432b26d6ec24b9aeee49f1e1101e4eff64698cdc45f2b9696bdc9e6236ca5
6+
sourceBlobDigest: sha256:19baa09da703e74d0181a5f93d679d3dde67c4197853ec31147a30c6f89b992c
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1763598625
9+
- speakeasy-sdk-regen-1763685027
1010
targets:
1111
latest:
1212
source: latest
1313
sourceNamespace: api-latest
14-
sourceRevisionDigest: sha256:4d7d2a0274340be9ab29fca0a0e41c4c44791a3d55b7d08942f9ddb0b977e163
15-
sourceBlobDigest: sha256:e63d18b679add41df0582056293bfa29020f7eb5f69326e78e25b59c0c2213c3
14+
sourceRevisionDigest: sha256:b10432b26d6ec24b9aeee49f1e1101e4eff64698cdc45f2b9696bdc9e6236ca5
15+
sourceBlobDigest: sha256:19baa09da703e74d0181a5f93d679d3dde67c4197853ec31147a30c6f89b992c
1616
codeSamplesNamespace: latest-ts-typescript-code-samples
17-
codeSamplesRevisionDigest: sha256:d58ad24b405b35466d9c103e7eeace3083070b2902e4e085fc71ff48360e2cef
17+
codeSamplesRevisionDigest: sha256:7d489f421af1bb6b34b37ae12cda00a174c8bff875ce64cb7b7e217eb322a5a5
1818
moov:
1919
source: latest
2020
sourceNamespace: api-latest

README.md

Lines changed: 96 additions & 47 deletions
Large diffs are not rendered by default.

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1318,4 +1318,14 @@ Based on:
13181318
### Generated
13191319
- [typescript v0.21.14] .
13201320
### Releases
1321-
- [NPM v0.21.14] https://www.npmjs.com/package/@moovio/sdk/v/0.21.14 - .
1321+
- [NPM v0.21.14] https://www.npmjs.com/package/@moovio/sdk/v/0.21.14 - .
1322+
1323+
## 2025-11-21 00:30:08
1324+
### Changes
1325+
Based on:
1326+
- OpenAPI Doc
1327+
- Speakeasy CLI 1.659.0 (2.755.9) https://github.com/speakeasy-api/speakeasy
1328+
### Generated
1329+
- [typescript v0.21.15] .
1330+
### Releases
1331+
- [NPM v0.21.15] https://www.npmjs.com/package/@moovio/sdk/v/0.21.15 - .
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# AmountDecimalUpdate
2+
3+
## Example Usage
4+
5+
```typescript
6+
import { AmountDecimalUpdate } from "@moovio/sdk/models/components";
7+
8+
let value: AmountDecimalUpdate = {
9+
currency: "USD",
10+
valueDecimal: "12.987654321",
11+
};
12+
```
13+
14+
## Fields
15+
16+
| Field | Type | Required | Description | Example |
17+
| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
18+
| `currency` | *string* | :heavy_minus_sign: | A 3-letter ISO 4217 currency code. | USD |
19+
| `valueDecimal` | *string* | :heavy_minus_sign: | A decimal-formatted numerical string that represents up to 9 decimal place precision. <br/><br/>For example, $12.987654321 is '12.987654321'. | 12.987654321 |
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# CreateInvoice
2+
3+
## Example Usage
4+
5+
```typescript
6+
import { CreateInvoice } from "@moovio/sdk/models/components";
7+
8+
let value: CreateInvoice = {
9+
customerAccountID: "<id>",
10+
description: "burgeon indeed zealous lucky certainly",
11+
lineItems: {
12+
items: [],
13+
},
14+
taxAmount: {
15+
currency: "USD",
16+
valueDecimal: "12.987654321",
17+
},
18+
};
19+
```
20+
21+
## Fields
22+
23+
| Field | Type | Required | Description |
24+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
25+
| `customerAccountID` | *string* | :heavy_check_mark: | N/A |
26+
| `description` | *string* | :heavy_check_mark: | N/A |
27+
| `lineItems` | [components.InvoiceLineItems](../../models/components/invoicelineitems.md) | :heavy_check_mark: | A collection of line items for an invoice. |
28+
| `invoiceDate` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
29+
| `dueDate` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
30+
| `taxAmount` | [components.AmountDecimal](../../models/components/amountdecimal.md) | :heavy_minus_sign: | N/A |

0 commit comments

Comments
 (0)