-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed deprecated authentication scheme - Improved error handling, introduced error templates - Enabled additional model properties - Renamed `BulkComponentSPricePointAssignment` to `BulkComponentsPricePointAssignment` - Add query parameters for list subscription group proforma invoices - Use ProformaInvoiceStatus for list proforma invoices status query parameter - Added missing fields in the `Allocation` model - Added missing `404` errors for subscription components endpoints - Renamed components price points related models to match the proper camelCase style - Changed `includeNextProformaInvoice` param type from `String` to an enum - Add enums for proforma invoices and invoices properties: - Invoice Discount Source Type - Invoice Discount Type - Proforma Invoice Discount Source Type - Proforma Invoice Role - Proforma Invoice Status - Tax Source Type - Remove `ProformaTaxBreakout`, use `InvoiceTaxBreakout` instead - Make Proforma Invoice reuse `InvoiceConsolidationLevel` and `CollectionMethod` enums instead of strings - Remove ProformaInvoiceDiscountBreakout - use InvoiceDiscountBreakout instead - Add missing fields for ProformaInvoiceDiscount - Add tests for Proforma Invoices - Merge proforma invoice and preview proforma, add kind for invoice line item - Add kind to invoice line item - Add apply_on_subscription_expiration to Coupon models
- Loading branch information
1 parent
a9e0b42
commit 554c052
Showing
531 changed files
with
3,240 additions
and
2,149 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
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
6 changes: 3 additions & 3 deletions
6
...ulk-component-s-price-point-assignment.md → ...bulk-components-price-point-assignment.md
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,23 @@ | ||
|
||
# Component Price Point Assignment | ||
|
||
## Structure | ||
|
||
`ComponentPricePointAssignment` | ||
|
||
## Fields | ||
|
||
| Name | Type | Tags | Description | | ||
| --- | --- | --- | --- | | ||
| `componentId` | `number \| undefined` | Optional | - | | ||
| `pricePoint` | [`ComponentPricePointAssignmentPricePoint \| undefined`](../../doc/models/containers/component-price-point-assignment-price-point.md) | Optional | This is a container for one-of cases. | | ||
|
||
## Example (as JSON) | ||
|
||
```json | ||
{ | ||
"component_id": 114, | ||
"price_point": "String9" | ||
} | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
doc/models/containers/component-price-point-assignment-price-point.md
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,14 @@ | ||
|
||
# Component Price Point Assignment Price Point | ||
|
||
## Class Name | ||
|
||
`ComponentPricePointAssignmentPricePoint` | ||
|
||
## Cases | ||
|
||
| Type | | ||
| --- | | ||
| `string` | | ||
| `number` | | ||
|
14 changes: 0 additions & 14 deletions
14
doc/models/containers/component-s-price-point-assignment-price-point.md
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# Create Signup Proforma Preview Include | ||
|
||
## Enumeration | ||
|
||
`CreateSignupProformaPreviewInclude` | ||
|
||
## Fields | ||
|
||
| Name | | ||
| --- | | ||
| `nextProformaInvoice` | | ||
|
||
## Example | ||
|
||
``` | ||
next_proforma_invoice | ||
``` | ||
|
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 @@ | ||
|
||
# Invoice Discount Source Type | ||
|
||
## Enumeration | ||
|
||
`InvoiceDiscountSourceType` | ||
|
||
## Fields | ||
|
||
| Name | | ||
| --- | | ||
| `coupon` | | ||
| `referral` | | ||
| `enumAdHocCoupon` | | ||
|
Oops, something went wrong.