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.
@@ -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.