orb-billing 6.18.0 → 6.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/invoices.d.mts +29 -2
- package/resources/invoices.d.mts.map +1 -1
- package/resources/invoices.d.ts +29 -2
- package/resources/invoices.d.ts.map +1 -1
- package/resources/invoices.js +2 -2
- package/resources/invoices.js.map +1 -1
- package/resources/invoices.mjs +2 -2
- package/resources/invoices.mjs.map +1 -1
- package/resources/shared.d.mts +14 -0
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +14 -0
- package/resources/shared.d.ts.map +1 -1
- package/src/client.ts +2 -0
- package/src/resources/index.ts +1 -0
- package/src/resources/invoices.ts +38 -2
- package/src/resources/shared.ts +16 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/resources/shared.d.ts
CHANGED
|
@@ -471,6 +471,13 @@ export declare namespace ChangedSubscriptionResources {
|
|
|
471
471
|
* true, the invoice will automatically begin issuing at this time.
|
|
472
472
|
*/
|
|
473
473
|
eligible_to_issue_at: string | null;
|
|
474
|
+
/**
|
|
475
|
+
* The number of line items omitted from `line_items` because they have zero
|
|
476
|
+
* quantity. Amounts such as `subtotal` and `total` are computed over every line
|
|
477
|
+
* item on the invoice, including the omitted ones. In rare circumstances, hidden
|
|
478
|
+
* line items may still contribute to these amounts.
|
|
479
|
+
*/
|
|
480
|
+
hidden_line_item_count: number;
|
|
474
481
|
/**
|
|
475
482
|
* A URL for the customer-facing invoice portal. This URL expires 60 days after the
|
|
476
483
|
* link is generated, or 30 days after the invoice's due date — whichever is later.
|
|
@@ -1472,6 +1479,13 @@ export interface Invoice {
|
|
|
1472
1479
|
* true, the invoice will automatically begin issuing at this time.
|
|
1473
1480
|
*/
|
|
1474
1481
|
eligible_to_issue_at: string | null;
|
|
1482
|
+
/**
|
|
1483
|
+
* The number of line items omitted from `line_items` because they have zero
|
|
1484
|
+
* quantity. Amounts such as `subtotal` and `total` are computed over every line
|
|
1485
|
+
* item on the invoice, including the omitted ones. In rare circumstances, hidden
|
|
1486
|
+
* line items may still contribute to these amounts.
|
|
1487
|
+
*/
|
|
1488
|
+
hidden_line_item_count: number;
|
|
1475
1489
|
/**
|
|
1476
1490
|
* A URL for the customer-facing invoice portal. This URL expires 60 days after the
|
|
1477
1491
|
* link is generated, or 30 days after the invoice's due date — whichever is later.
|