orb-billing 5.34.0 → 5.35.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 +8 -0
- package/package.json +1 -1
- package/resources/shared.d.ts +12 -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 +10 -5
- 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/shared.ts +14 -0
- package/src/resources/subscriptions.ts +11 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -6739,9 +6739,8 @@ export interface SubscriptionPriceIntervalsParams {
|
|
|
6739
6739
|
allow_invoice_credit_or_void?: boolean | null;
|
|
6740
6740
|
|
|
6741
6741
|
/**
|
|
6742
|
-
* If
|
|
6743
|
-
*
|
|
6744
|
-
* its end date. If not provided, behaviorwill follow account default.
|
|
6742
|
+
* If set, the default value to use for added/edited price intervals with an
|
|
6743
|
+
* end_date set.
|
|
6745
6744
|
*/
|
|
6746
6745
|
can_defer_billing?: boolean | null;
|
|
6747
6746
|
|
|
@@ -6769,6 +6768,13 @@ export namespace SubscriptionPriceIntervalsParams {
|
|
|
6769
6768
|
*/
|
|
6770
6769
|
allocation_price?: Shared.NewAllocationPrice | null;
|
|
6771
6770
|
|
|
6771
|
+
/**
|
|
6772
|
+
* If true, an in-arrears price interval ending mid-cycle will defer billing the
|
|
6773
|
+
* final line item until the next scheduled invoice. If false, it will be billed on
|
|
6774
|
+
* its end date.
|
|
6775
|
+
*/
|
|
6776
|
+
can_defer_billing?: boolean | null;
|
|
6777
|
+
|
|
6772
6778
|
/**
|
|
6773
6779
|
* A list of discounts to initialize on the price interval.
|
|
6774
6780
|
*/
|
|
@@ -7570,9 +7576,9 @@ export namespace SubscriptionPriceIntervalsParams {
|
|
|
7570
7576
|
billing_cycle_day?: number | null;
|
|
7571
7577
|
|
|
7572
7578
|
/**
|
|
7573
|
-
* If true,
|
|
7579
|
+
* If true, an in-arrears price interval ending mid-cycle will defer billing the
|
|
7574
7580
|
* final line item until the next scheduled invoice. If false, it will be billed on
|
|
7575
|
-
* its end date.
|
|
7581
|
+
* its end date.
|
|
7576
7582
|
*/
|
|
7577
7583
|
can_defer_billing?: boolean | null;
|
|
7578
7584
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.35.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.35.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.35.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|