-
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 #4 from apideck-libraries/speakeasy-sdk-regen-1733…
…946806 chore: 🐝 Update SDK - Generate 0.1.0
- Loading branch information
Showing
39 changed files
with
1,767 additions
and
22 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,12 @@ | ||
# AgedCreditors | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | | ||
| `reportGeneratedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | The exact date and time the report was generated. | 2024-11-14T12:00:00.000Z | | ||
| `reportAsOfDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | The cutoff date for transactions included in the report. | 2024-11-13 | | ||
| `periodCount` | *?int* | :heavy_minus_sign: | Number of aging periods shown in the report. | 4 | | ||
| `periodLength` | *?int* | :heavy_minus_sign: | Length of each aging period in days. | 30 | | ||
| `outstandingBalances` | array<[Components\OutstandingBalance](../../Models/Components/OutstandingBalance.md)> | :heavy_minus_sign: | N/A | | |
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,12 @@ | ||
# AgedDebtors | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | | ||
| `reportGeneratedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | The exact date and time the report was generated. | 2024-11-14T12:00:00.000Z | | ||
| `reportAsOfDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | The cutoff date for transactions included in the report. | 2024-11-13 | | ||
| `periodCount` | *?int* | :heavy_minus_sign: | Number of aging periods shown in the report. | 4 | | ||
| `periodLength` | *?int* | :heavy_minus_sign: | Length of each aging period in days. | 30 | | ||
| `outstandingBalances` | array<[Components\OutstandingBalance](../../Models/Components/OutstandingBalance.md)> | :heavy_minus_sign: | N/A | | |
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,11 @@ | ||
# AgedReportFilter | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | | ||
| `customerId` | *?string* | :heavy_minus_sign: | Filter by customer id | 123abc | | ||
| `reportAsOfDate` | *?string* | :heavy_minus_sign: | The cutoff date for considering transactions | 2024-01-01 | | ||
| `periodCount` | *?int* | :heavy_minus_sign: | Number of periods to split the aged creditors report into | 3 | | ||
| `periodLength` | *?int* | :heavy_minus_sign: | Length of each period in days | 30 | |
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,11 @@ | ||
# BalanceByPeriod | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | | ||
| `startDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | Start date of the period. | 2024-01-01 | | ||
| `endDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | End date of the period. | 2024-01-30 | | ||
| `totalAmount` | *?float* | :heavy_minus_sign: | Total amount of the period. | 1500 | | ||
| `balancesByTransaction` | array<[Components\BalanceByTransaction](../../Models/Components/BalanceByTransaction.md)> | :heavy_minus_sign: | N/A | | |
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,13 @@ | ||
# BalanceByTransaction | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | | ||
| `transactionId` | *?string* | :heavy_minus_sign: | Unique identifier for the transaction. | INV-1001 | | ||
| `transactionDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | Date of the transaction. | 2024-01-15 | | ||
| `transactionType` | [?Components\TransactionType](../../Models/Components/TransactionType.md) | :heavy_minus_sign: | Type of the transaction. | invoice | | ||
| `dueDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | Due date of the transaction. | 2024-02-15 | | ||
| `originalAmount` | *?float* | :heavy_minus_sign: | Original amount of the transaction. | 1000 | | ||
| `outstandingBalance` | *?float* | :heavy_minus_sign: | Outstanding balance of the transaction. | 800 | |
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,15 @@ | ||
# GetAgedCreditorsResponse | ||
|
||
Aged Creditors | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | | ||
| `statusCode` | *int* | :heavy_check_mark: | HTTP Response Status Code | 200 | | ||
| `status` | *string* | :heavy_check_mark: | HTTP Response Status | OK | | ||
| `service` | *string* | :heavy_check_mark: | Apideck ID of service provider | quickbooks | | ||
| `resource` | *string* | :heavy_check_mark: | Unified API resource name | AgedCreditors | | ||
| `operation` | *string* | :heavy_check_mark: | Operation performed | one | | ||
| `data` | [Components\AgedCreditors](../../Models/Components/AgedCreditors.md) | :heavy_check_mark: | N/A | | |
Oops, something went wrong.