orb-billing 5.27.0 → 5.29.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 +16 -0
- package/package.json +1 -1
- package/resources/customers/credits/credits.d.ts +10 -4
- package/resources/customers/credits/credits.d.ts.map +1 -1
- package/resources/customers/credits/credits.js.map +1 -1
- package/resources/customers/credits/credits.mjs.map +1 -1
- package/resources/events/backfills.d.ts +3 -0
- package/resources/events/backfills.d.ts.map +1 -1
- package/resources/events/backfills.js +3 -0
- package/resources/events/backfills.js.map +1 -1
- package/resources/events/backfills.mjs +3 -0
- package/resources/events/backfills.mjs.map +1 -1
- package/resources/shared.d.ts +14 -0
- package/resources/shared.d.ts.map +1 -1
- package/resources/shared.js.map +1 -1
- package/resources/shared.mjs.map +1 -1
- package/resources/subscriptions.d.ts +12 -0
- package/resources/subscriptions.d.ts.map +1 -1
- package/resources/subscriptions.js.map +1 -1
- package/resources/subscriptions.mjs.map +1 -1
- package/src/resources/customers/credits/credits.ts +10 -4
- package/src/resources/events/backfills.ts +3 -0
- package/src/resources/shared.ts +17 -0
- package/src/resources/subscriptions.ts +14 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -6480,6 +6480,13 @@ export interface SubscriptionPriceIntervalsParams {
|
|
|
6480
6480
|
*/
|
|
6481
6481
|
allow_invoice_credit_or_void?: boolean | null;
|
|
6482
6482
|
|
|
6483
|
+
/**
|
|
6484
|
+
* If true, ending an in-arrears price interval mid-cycle will defer billing the
|
|
6485
|
+
* final line itemuntil the next scheduled invoice. If false, it will be billed on
|
|
6486
|
+
* its end date. If not provided, behaviorwill follow account default.
|
|
6487
|
+
*/
|
|
6488
|
+
can_defer_billing?: boolean | null;
|
|
6489
|
+
|
|
6483
6490
|
/**
|
|
6484
6491
|
* A list of price intervals to edit on the subscription.
|
|
6485
6492
|
*/
|
|
@@ -7182,6 +7189,13 @@ export namespace SubscriptionPriceIntervalsParams {
|
|
|
7182
7189
|
*/
|
|
7183
7190
|
billing_cycle_day?: number | null;
|
|
7184
7191
|
|
|
7192
|
+
/**
|
|
7193
|
+
* If true, ending an in-arrears price interval mid-cycle will defer billing the
|
|
7194
|
+
* final line itemuntil the next scheduled invoice. If false, it will be billed on
|
|
7195
|
+
* its end date. If not provided, behaviorwill follow account default.
|
|
7196
|
+
*/
|
|
7197
|
+
can_defer_billing?: boolean | null;
|
|
7198
|
+
|
|
7185
7199
|
/**
|
|
7186
7200
|
* The updated end date of this price interval. If not specified, the end date will
|
|
7187
7201
|
* not be updated.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.29.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.29.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.29.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|