orb-billing 4.72.2 → 4.72.3
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 +17 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/resources/subscriptions.d.ts +23 -2
- 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/subscriptions.ts +23 -2
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.72.3 (2025-05-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.72.2...v4.72.3](https://github.com/orbcorp/orb-node/compare/v4.72.2...v4.72.3)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **ci:** add timeout thresholds for CI jobs ([d1594b1](https://github.com/orbcorp/orb-node/commit/d1594b17ce73d32d7ab97757f95e90215cfcaf49))
|
|
10
|
+
* **ci:** bump node version for release workflows ([ad6f2f0](https://github.com/orbcorp/orb-node/commit/ad6f2f02cf07dae7072d334cf04ae76ad7c6b328))
|
|
11
|
+
* **ci:** only use depot for staging repos ([d68a9eb](https://github.com/orbcorp/orb-node/commit/d68a9ebf7ee4fd127e53366e76a0a00b58dcb4a0))
|
|
12
|
+
* **ci:** run on more branches and use depot runners ([df2cfe9](https://github.com/orbcorp/orb-node/commit/df2cfe9018c9f8853a8cbae14adbd73556e6a398))
|
|
13
|
+
* **docs:** add missing deprecation warnings ([2534cf4](https://github.com/orbcorp/orb-node/commit/2534cf4095d716964953ac60fd4cce1f9798ebdc))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Documentation
|
|
17
|
+
|
|
18
|
+
* **readme:** fix typo ([4b9eb38](https://github.com/orbcorp/orb-node/commit/4b9eb38fb7f4457d53336e4774d62852a363fc65))
|
|
19
|
+
|
|
3
20
|
## 4.72.2 (2025-04-14)
|
|
4
21
|
|
|
5
22
|
Full Changelog: [v4.72.1...v4.72.2](https://github.com/orbcorp/orb-node/compare/v4.72.1...v4.72.2)
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -6839,6 +6839,9 @@ export interface SubscriptionCreateParams {
|
|
|
6839
6839
|
* defaults to the behavior configured for this customer.
|
|
6840
6840
|
*/
|
|
6841
6841
|
auto_collection?: boolean | null;
|
|
6842
|
+
/**
|
|
6843
|
+
* @deprecated
|
|
6844
|
+
*/
|
|
6842
6845
|
aws_region?: string | null;
|
|
6843
6846
|
billing_cycle_anchor_configuration?: SubscriptionCreateParams.BillingCycleAnchorConfiguration | null;
|
|
6844
6847
|
/**
|
|
@@ -6847,6 +6850,9 @@ export interface SubscriptionCreateParams {
|
|
|
6847
6850
|
* returned and the subscription creation or plan change will not be scheduled.
|
|
6848
6851
|
*/
|
|
6849
6852
|
coupon_redemption_code?: string | null;
|
|
6853
|
+
/**
|
|
6854
|
+
* @deprecated
|
|
6855
|
+
*/
|
|
6850
6856
|
credits_overage_rate?: number | null;
|
|
6851
6857
|
customer_id?: string | null;
|
|
6852
6858
|
/**
|
|
@@ -6856,7 +6862,13 @@ export interface SubscriptionCreateParams {
|
|
|
6856
6862
|
default_invoice_memo?: string | null;
|
|
6857
6863
|
end_date?: string | null;
|
|
6858
6864
|
external_customer_id?: string | null;
|
|
6865
|
+
/**
|
|
6866
|
+
* @deprecated
|
|
6867
|
+
*/
|
|
6859
6868
|
external_marketplace?: 'google' | 'aws' | 'azure' | null;
|
|
6869
|
+
/**
|
|
6870
|
+
* @deprecated
|
|
6871
|
+
*/
|
|
6860
6872
|
external_marketplace_reporting_id?: string | null;
|
|
6861
6873
|
/**
|
|
6862
6874
|
* The external_plan_id of the plan that the given subscription should be switched
|
|
@@ -6892,6 +6904,9 @@ export interface SubscriptionCreateParams {
|
|
|
6892
6904
|
* to 0. If not provided, this defaults to the value specified in the plan.
|
|
6893
6905
|
*/
|
|
6894
6906
|
net_terms?: number | null;
|
|
6907
|
+
/**
|
|
6908
|
+
* @deprecated
|
|
6909
|
+
*/
|
|
6895
6910
|
per_credit_overage_amount?: number | null;
|
|
6896
6911
|
/**
|
|
6897
6912
|
* The plan that the given subscription should be switched to. Note that either
|
|
@@ -6904,7 +6919,7 @@ export interface SubscriptionCreateParams {
|
|
|
6904
6919
|
*/
|
|
6905
6920
|
plan_version_number?: number | null;
|
|
6906
6921
|
/**
|
|
6907
|
-
* Optionally provide a list of overrides for prices on the plan
|
|
6922
|
+
* @deprecated Optionally provide a list of overrides for prices on the plan
|
|
6908
6923
|
*/
|
|
6909
6924
|
price_overrides?: Array<unknown> | null;
|
|
6910
6925
|
/**
|
|
@@ -15822,6 +15837,9 @@ export interface SubscriptionSchedulePlanChangeParams {
|
|
|
15822
15837
|
* returned and the subscription creation or plan change will not be scheduled.
|
|
15823
15838
|
*/
|
|
15824
15839
|
coupon_redemption_code?: string | null;
|
|
15840
|
+
/**
|
|
15841
|
+
* @deprecated
|
|
15842
|
+
*/
|
|
15825
15843
|
credits_overage_rate?: number | null;
|
|
15826
15844
|
/**
|
|
15827
15845
|
* Determines the default memo on this subscription's invoices. Note that if this
|
|
@@ -15856,6 +15874,9 @@ export interface SubscriptionSchedulePlanChangeParams {
|
|
|
15856
15874
|
* to 0. If not provided, this defaults to the value specified in the plan.
|
|
15857
15875
|
*/
|
|
15858
15876
|
net_terms?: number | null;
|
|
15877
|
+
/**
|
|
15878
|
+
* @deprecated
|
|
15879
|
+
*/
|
|
15859
15880
|
per_credit_overage_amount?: number | null;
|
|
15860
15881
|
/**
|
|
15861
15882
|
* The plan that the given subscription should be switched to. Note that either
|
|
@@ -15868,7 +15889,7 @@ export interface SubscriptionSchedulePlanChangeParams {
|
|
|
15868
15889
|
*/
|
|
15869
15890
|
plan_version_number?: number | null;
|
|
15870
15891
|
/**
|
|
15871
|
-
* Optionally provide a list of overrides for prices on the plan
|
|
15892
|
+
* @deprecated Optionally provide a list of overrides for prices on the plan
|
|
15872
15893
|
*/
|
|
15873
15894
|
price_overrides?: Array<unknown> | null;
|
|
15874
15895
|
/**
|