-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from apideck-libraries/speakeasy-sdk-regen-173…
…7545334 chore: 🐝 Update SDK - Generate 0.16.0
- Loading branch information
Showing
24 changed files
with
234 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# InvoiceItemsSort | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { InvoiceItemsSort } from "@apideck/unify/models/components"; | ||
|
||
let value: InvoiceItemsSort = { | ||
by: "updated_at", | ||
direction: "desc", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | | ||
| `by` | [components.InvoiceItemsSortBy](../../models/components/invoiceitemssortby.md) | :heavy_minus_sign: | The field on which to sort the Invoice Items | updated_at | | ||
| `direction` | [components.SortDirection](../../models/components/sortdirection.md) | :heavy_minus_sign: | The direction in which to sort the results | | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# InvoiceItemsSortBy | ||
|
||
The field on which to sort the Invoice Items | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { InvoiceItemsSortBy } from "@apideck/unify/models/components"; | ||
|
||
let value: InvoiceItemsSortBy = "updated_at"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"created_at" | "updated_at" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.