orb-billing 6.16.0 → 6.18.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 +14 -0
- package/package.json +1 -1
- package/resources/customers/balance-transactions.d.mts +2 -2
- package/resources/customers/balance-transactions.d.mts.map +1 -1
- package/resources/customers/balance-transactions.d.ts +2 -2
- package/resources/customers/balance-transactions.d.ts.map +1 -1
- package/resources/invoices.d.mts +3 -3
- package/resources/invoices.d.mts.map +1 -1
- package/resources/invoices.d.ts +3 -3
- package/resources/invoices.d.ts.map +1 -1
- package/resources/shared.d.mts +2 -2
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +2 -2
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/customers/balance-transactions.ts +4 -2
- package/src/resources/invoices.ts +6 -3
- package/src/resources/shared.ts +4 -2
- 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
|
@@ -626,7 +626,7 @@ export declare namespace ChangedSubscriptionResources {
|
|
|
626
626
|
* A unique id for this transaction.
|
|
627
627
|
*/
|
|
628
628
|
id: string;
|
|
629
|
-
action: 'applied_to_invoice' | 'manual_adjustment' | 'prorated_refund' | 'revert_prorated_refund' | 'return_from_voiding' | 'credit_note_applied' | 'credit_note_voided' | 'overpayment_refund' | 'external_payment' | 'small_invoice_carryover';
|
|
629
|
+
action: 'applied_to_invoice' | 'manual_adjustment' | 'prorated_refund' | 'revert_prorated_refund' | 'return_from_voiding' | 'credit_note_applied' | 'credit_note_voided' | 'overpayment_refund' | 'external_payment' | 'small_invoice_carryover' | 'prepaid_commit_cancel';
|
|
630
630
|
/**
|
|
631
631
|
* The value of the amount changed in the transaction.
|
|
632
632
|
*/
|
|
@@ -1623,7 +1623,7 @@ export declare namespace Invoice {
|
|
|
1623
1623
|
* A unique id for this transaction.
|
|
1624
1624
|
*/
|
|
1625
1625
|
id: string;
|
|
1626
|
-
action: 'applied_to_invoice' | 'manual_adjustment' | 'prorated_refund' | 'revert_prorated_refund' | 'return_from_voiding' | 'credit_note_applied' | 'credit_note_voided' | 'overpayment_refund' | 'external_payment' | 'small_invoice_carryover';
|
|
1626
|
+
action: 'applied_to_invoice' | 'manual_adjustment' | 'prorated_refund' | 'revert_prorated_refund' | 'return_from_voiding' | 'credit_note_applied' | 'credit_note_voided' | 'overpayment_refund' | 'external_payment' | 'small_invoice_carryover' | 'prepaid_commit_cancel';
|
|
1627
1627
|
/**
|
|
1628
1628
|
* The value of the amount changed in the transaction.
|
|
1629
1629
|
*/
|