orb-billing 4.65.0 → 4.67.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/alerts.d.ts +4 -4
- package/resources/alerts.d.ts.map +1 -1
- package/resources/alerts.js.map +1 -1
- package/resources/alerts.mjs.map +1 -1
- package/resources/invoice-line-items.d.ts +3 -1
- package/resources/invoice-line-items.d.ts.map +1 -1
- package/resources/invoices.d.ts +6 -2
- package/resources/invoices.d.ts.map +1 -1
- package/resources/invoices.js.map +1 -1
- package/resources/invoices.mjs.map +1 -1
- package/resources/subscriptions.d.ts +55 -44
- 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/alerts.ts +6 -21
- package/src/resources/invoice-line-items.ts +3 -1
- package/src/resources/invoices.ts +6 -2
- package/src/resources/subscriptions.ts +55 -44
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -933,7 +933,8 @@ export interface Subscription {
|
|
|
933
933
|
*/
|
|
934
934
|
active_plan_phase_order: number | null;
|
|
935
935
|
/**
|
|
936
|
-
* The adjustment intervals for this subscription
|
|
936
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
937
|
+
* adjustment interval.
|
|
937
938
|
*/
|
|
938
939
|
adjustment_intervals: Array<Subscription.AdjustmentInterval>;
|
|
939
940
|
/**
|
|
@@ -990,7 +991,7 @@ export interface Subscription {
|
|
|
990
991
|
*/
|
|
991
992
|
default_invoice_memo: string | null;
|
|
992
993
|
/**
|
|
993
|
-
* The discount intervals for this subscription.
|
|
994
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
994
995
|
*/
|
|
995
996
|
discount_intervals: Array<Subscription.AmountDiscountInterval | Subscription.PercentageDiscountInterval | Subscription.UsageDiscountInterval>;
|
|
996
997
|
/**
|
|
@@ -1000,7 +1001,7 @@ export interface Subscription {
|
|
|
1000
1001
|
fixed_fee_quantity_schedule: Array<Subscription.FixedFeeQuantitySchedule>;
|
|
1001
1002
|
invoicing_threshold: string | null;
|
|
1002
1003
|
/**
|
|
1003
|
-
* The maximum intervals for this subscription.
|
|
1004
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
1004
1005
|
*/
|
|
1005
1006
|
maximum_intervals: Array<Subscription.MaximumInterval>;
|
|
1006
1007
|
/**
|
|
@@ -1011,7 +1012,7 @@ export interface Subscription {
|
|
|
1011
1012
|
*/
|
|
1012
1013
|
metadata: Record<string, string>;
|
|
1013
1014
|
/**
|
|
1014
|
-
* The minimum intervals for this subscription.
|
|
1015
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
1015
1016
|
*/
|
|
1016
1017
|
minimum_intervals: Array<Subscription.MinimumInterval>;
|
|
1017
1018
|
/**
|
|
@@ -1476,7 +1477,8 @@ export interface SubscriptionCreateResponse {
|
|
|
1476
1477
|
*/
|
|
1477
1478
|
active_plan_phase_order: number | null;
|
|
1478
1479
|
/**
|
|
1479
|
-
* The adjustment intervals for this subscription
|
|
1480
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
1481
|
+
* adjustment interval.
|
|
1480
1482
|
*/
|
|
1481
1483
|
adjustment_intervals: Array<SubscriptionCreateResponse.AdjustmentInterval>;
|
|
1482
1484
|
/**
|
|
@@ -1533,7 +1535,7 @@ export interface SubscriptionCreateResponse {
|
|
|
1533
1535
|
*/
|
|
1534
1536
|
default_invoice_memo: string | null;
|
|
1535
1537
|
/**
|
|
1536
|
-
* The discount intervals for this subscription.
|
|
1538
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
1537
1539
|
*/
|
|
1538
1540
|
discount_intervals: Array<SubscriptionCreateResponse.AmountDiscountInterval | SubscriptionCreateResponse.PercentageDiscountInterval | SubscriptionCreateResponse.UsageDiscountInterval>;
|
|
1539
1541
|
/**
|
|
@@ -1543,7 +1545,7 @@ export interface SubscriptionCreateResponse {
|
|
|
1543
1545
|
fixed_fee_quantity_schedule: Array<SubscriptionCreateResponse.FixedFeeQuantitySchedule>;
|
|
1544
1546
|
invoicing_threshold: string | null;
|
|
1545
1547
|
/**
|
|
1546
|
-
* The maximum intervals for this subscription.
|
|
1548
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
1547
1549
|
*/
|
|
1548
1550
|
maximum_intervals: Array<SubscriptionCreateResponse.MaximumInterval>;
|
|
1549
1551
|
/**
|
|
@@ -1554,7 +1556,7 @@ export interface SubscriptionCreateResponse {
|
|
|
1554
1556
|
*/
|
|
1555
1557
|
metadata: Record<string, string>;
|
|
1556
1558
|
/**
|
|
1557
|
-
* The minimum intervals for this subscription.
|
|
1559
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
1558
1560
|
*/
|
|
1559
1561
|
minimum_intervals: Array<SubscriptionCreateResponse.MinimumInterval>;
|
|
1560
1562
|
/**
|
|
@@ -1964,7 +1966,8 @@ export interface SubscriptionCancelResponse {
|
|
|
1964
1966
|
*/
|
|
1965
1967
|
active_plan_phase_order: number | null;
|
|
1966
1968
|
/**
|
|
1967
|
-
* The adjustment intervals for this subscription
|
|
1969
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
1970
|
+
* adjustment interval.
|
|
1968
1971
|
*/
|
|
1969
1972
|
adjustment_intervals: Array<SubscriptionCancelResponse.AdjustmentInterval>;
|
|
1970
1973
|
/**
|
|
@@ -2021,7 +2024,7 @@ export interface SubscriptionCancelResponse {
|
|
|
2021
2024
|
*/
|
|
2022
2025
|
default_invoice_memo: string | null;
|
|
2023
2026
|
/**
|
|
2024
|
-
* The discount intervals for this subscription.
|
|
2027
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
2025
2028
|
*/
|
|
2026
2029
|
discount_intervals: Array<SubscriptionCancelResponse.AmountDiscountInterval | SubscriptionCancelResponse.PercentageDiscountInterval | SubscriptionCancelResponse.UsageDiscountInterval>;
|
|
2027
2030
|
/**
|
|
@@ -2031,7 +2034,7 @@ export interface SubscriptionCancelResponse {
|
|
|
2031
2034
|
fixed_fee_quantity_schedule: Array<SubscriptionCancelResponse.FixedFeeQuantitySchedule>;
|
|
2032
2035
|
invoicing_threshold: string | null;
|
|
2033
2036
|
/**
|
|
2034
|
-
* The maximum intervals for this subscription.
|
|
2037
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
2035
2038
|
*/
|
|
2036
2039
|
maximum_intervals: Array<SubscriptionCancelResponse.MaximumInterval>;
|
|
2037
2040
|
/**
|
|
@@ -2042,7 +2045,7 @@ export interface SubscriptionCancelResponse {
|
|
|
2042
2045
|
*/
|
|
2043
2046
|
metadata: Record<string, string>;
|
|
2044
2047
|
/**
|
|
2045
|
-
* The minimum intervals for this subscription.
|
|
2048
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
2046
2049
|
*/
|
|
2047
2050
|
minimum_intervals: Array<SubscriptionCancelResponse.MinimumInterval>;
|
|
2048
2051
|
/**
|
|
@@ -2512,7 +2515,8 @@ export interface SubscriptionPriceIntervalsResponse {
|
|
|
2512
2515
|
*/
|
|
2513
2516
|
active_plan_phase_order: number | null;
|
|
2514
2517
|
/**
|
|
2515
|
-
* The adjustment intervals for this subscription
|
|
2518
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
2519
|
+
* adjustment interval.
|
|
2516
2520
|
*/
|
|
2517
2521
|
adjustment_intervals: Array<SubscriptionPriceIntervalsResponse.AdjustmentInterval>;
|
|
2518
2522
|
/**
|
|
@@ -2569,7 +2573,7 @@ export interface SubscriptionPriceIntervalsResponse {
|
|
|
2569
2573
|
*/
|
|
2570
2574
|
default_invoice_memo: string | null;
|
|
2571
2575
|
/**
|
|
2572
|
-
* The discount intervals for this subscription.
|
|
2576
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
2573
2577
|
*/
|
|
2574
2578
|
discount_intervals: Array<SubscriptionPriceIntervalsResponse.AmountDiscountInterval | SubscriptionPriceIntervalsResponse.PercentageDiscountInterval | SubscriptionPriceIntervalsResponse.UsageDiscountInterval>;
|
|
2575
2579
|
/**
|
|
@@ -2579,7 +2583,7 @@ export interface SubscriptionPriceIntervalsResponse {
|
|
|
2579
2583
|
fixed_fee_quantity_schedule: Array<SubscriptionPriceIntervalsResponse.FixedFeeQuantitySchedule>;
|
|
2580
2584
|
invoicing_threshold: string | null;
|
|
2581
2585
|
/**
|
|
2582
|
-
* The maximum intervals for this subscription.
|
|
2586
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
2583
2587
|
*/
|
|
2584
2588
|
maximum_intervals: Array<SubscriptionPriceIntervalsResponse.MaximumInterval>;
|
|
2585
2589
|
/**
|
|
@@ -2590,7 +2594,7 @@ export interface SubscriptionPriceIntervalsResponse {
|
|
|
2590
2594
|
*/
|
|
2591
2595
|
metadata: Record<string, string>;
|
|
2592
2596
|
/**
|
|
2593
|
-
* The minimum intervals for this subscription.
|
|
2597
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
2594
2598
|
*/
|
|
2595
2599
|
minimum_intervals: Array<SubscriptionPriceIntervalsResponse.MinimumInterval>;
|
|
2596
2600
|
/**
|
|
@@ -3000,7 +3004,8 @@ export interface SubscriptionSchedulePlanChangeResponse {
|
|
|
3000
3004
|
*/
|
|
3001
3005
|
active_plan_phase_order: number | null;
|
|
3002
3006
|
/**
|
|
3003
|
-
* The adjustment intervals for this subscription
|
|
3007
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
3008
|
+
* adjustment interval.
|
|
3004
3009
|
*/
|
|
3005
3010
|
adjustment_intervals: Array<SubscriptionSchedulePlanChangeResponse.AdjustmentInterval>;
|
|
3006
3011
|
/**
|
|
@@ -3057,7 +3062,7 @@ export interface SubscriptionSchedulePlanChangeResponse {
|
|
|
3057
3062
|
*/
|
|
3058
3063
|
default_invoice_memo: string | null;
|
|
3059
3064
|
/**
|
|
3060
|
-
* The discount intervals for this subscription.
|
|
3065
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
3061
3066
|
*/
|
|
3062
3067
|
discount_intervals: Array<SubscriptionSchedulePlanChangeResponse.AmountDiscountInterval | SubscriptionSchedulePlanChangeResponse.PercentageDiscountInterval | SubscriptionSchedulePlanChangeResponse.UsageDiscountInterval>;
|
|
3063
3068
|
/**
|
|
@@ -3067,7 +3072,7 @@ export interface SubscriptionSchedulePlanChangeResponse {
|
|
|
3067
3072
|
fixed_fee_quantity_schedule: Array<SubscriptionSchedulePlanChangeResponse.FixedFeeQuantitySchedule>;
|
|
3068
3073
|
invoicing_threshold: string | null;
|
|
3069
3074
|
/**
|
|
3070
|
-
* The maximum intervals for this subscription.
|
|
3075
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
3071
3076
|
*/
|
|
3072
3077
|
maximum_intervals: Array<SubscriptionSchedulePlanChangeResponse.MaximumInterval>;
|
|
3073
3078
|
/**
|
|
@@ -3078,7 +3083,7 @@ export interface SubscriptionSchedulePlanChangeResponse {
|
|
|
3078
3083
|
*/
|
|
3079
3084
|
metadata: Record<string, string>;
|
|
3080
3085
|
/**
|
|
3081
|
-
* The minimum intervals for this subscription.
|
|
3086
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
3082
3087
|
*/
|
|
3083
3088
|
minimum_intervals: Array<SubscriptionSchedulePlanChangeResponse.MinimumInterval>;
|
|
3084
3089
|
/**
|
|
@@ -3488,7 +3493,8 @@ export interface SubscriptionTriggerPhaseResponse {
|
|
|
3488
3493
|
*/
|
|
3489
3494
|
active_plan_phase_order: number | null;
|
|
3490
3495
|
/**
|
|
3491
|
-
* The adjustment intervals for this subscription
|
|
3496
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
3497
|
+
* adjustment interval.
|
|
3492
3498
|
*/
|
|
3493
3499
|
adjustment_intervals: Array<SubscriptionTriggerPhaseResponse.AdjustmentInterval>;
|
|
3494
3500
|
/**
|
|
@@ -3545,7 +3551,7 @@ export interface SubscriptionTriggerPhaseResponse {
|
|
|
3545
3551
|
*/
|
|
3546
3552
|
default_invoice_memo: string | null;
|
|
3547
3553
|
/**
|
|
3548
|
-
* The discount intervals for this subscription.
|
|
3554
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
3549
3555
|
*/
|
|
3550
3556
|
discount_intervals: Array<SubscriptionTriggerPhaseResponse.AmountDiscountInterval | SubscriptionTriggerPhaseResponse.PercentageDiscountInterval | SubscriptionTriggerPhaseResponse.UsageDiscountInterval>;
|
|
3551
3557
|
/**
|
|
@@ -3555,7 +3561,7 @@ export interface SubscriptionTriggerPhaseResponse {
|
|
|
3555
3561
|
fixed_fee_quantity_schedule: Array<SubscriptionTriggerPhaseResponse.FixedFeeQuantitySchedule>;
|
|
3556
3562
|
invoicing_threshold: string | null;
|
|
3557
3563
|
/**
|
|
3558
|
-
* The maximum intervals for this subscription.
|
|
3564
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
3559
3565
|
*/
|
|
3560
3566
|
maximum_intervals: Array<SubscriptionTriggerPhaseResponse.MaximumInterval>;
|
|
3561
3567
|
/**
|
|
@@ -3566,7 +3572,7 @@ export interface SubscriptionTriggerPhaseResponse {
|
|
|
3566
3572
|
*/
|
|
3567
3573
|
metadata: Record<string, string>;
|
|
3568
3574
|
/**
|
|
3569
|
-
* The minimum intervals for this subscription.
|
|
3575
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
3570
3576
|
*/
|
|
3571
3577
|
minimum_intervals: Array<SubscriptionTriggerPhaseResponse.MinimumInterval>;
|
|
3572
3578
|
/**
|
|
@@ -3976,7 +3982,8 @@ export interface SubscriptionUnscheduleCancellationResponse {
|
|
|
3976
3982
|
*/
|
|
3977
3983
|
active_plan_phase_order: number | null;
|
|
3978
3984
|
/**
|
|
3979
|
-
* The adjustment intervals for this subscription
|
|
3985
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
3986
|
+
* adjustment interval.
|
|
3980
3987
|
*/
|
|
3981
3988
|
adjustment_intervals: Array<SubscriptionUnscheduleCancellationResponse.AdjustmentInterval>;
|
|
3982
3989
|
/**
|
|
@@ -4033,7 +4040,7 @@ export interface SubscriptionUnscheduleCancellationResponse {
|
|
|
4033
4040
|
*/
|
|
4034
4041
|
default_invoice_memo: string | null;
|
|
4035
4042
|
/**
|
|
4036
|
-
* The discount intervals for this subscription.
|
|
4043
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
4037
4044
|
*/
|
|
4038
4045
|
discount_intervals: Array<SubscriptionUnscheduleCancellationResponse.AmountDiscountInterval | SubscriptionUnscheduleCancellationResponse.PercentageDiscountInterval | SubscriptionUnscheduleCancellationResponse.UsageDiscountInterval>;
|
|
4039
4046
|
/**
|
|
@@ -4043,7 +4050,7 @@ export interface SubscriptionUnscheduleCancellationResponse {
|
|
|
4043
4050
|
fixed_fee_quantity_schedule: Array<SubscriptionUnscheduleCancellationResponse.FixedFeeQuantitySchedule>;
|
|
4044
4051
|
invoicing_threshold: string | null;
|
|
4045
4052
|
/**
|
|
4046
|
-
* The maximum intervals for this subscription.
|
|
4053
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
4047
4054
|
*/
|
|
4048
4055
|
maximum_intervals: Array<SubscriptionUnscheduleCancellationResponse.MaximumInterval>;
|
|
4049
4056
|
/**
|
|
@@ -4054,7 +4061,7 @@ export interface SubscriptionUnscheduleCancellationResponse {
|
|
|
4054
4061
|
*/
|
|
4055
4062
|
metadata: Record<string, string>;
|
|
4056
4063
|
/**
|
|
4057
|
-
* The minimum intervals for this subscription.
|
|
4064
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
4058
4065
|
*/
|
|
4059
4066
|
minimum_intervals: Array<SubscriptionUnscheduleCancellationResponse.MinimumInterval>;
|
|
4060
4067
|
/**
|
|
@@ -4464,7 +4471,8 @@ export interface SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse {
|
|
|
4464
4471
|
*/
|
|
4465
4472
|
active_plan_phase_order: number | null;
|
|
4466
4473
|
/**
|
|
4467
|
-
* The adjustment intervals for this subscription
|
|
4474
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
4475
|
+
* adjustment interval.
|
|
4468
4476
|
*/
|
|
4469
4477
|
adjustment_intervals: Array<SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.AdjustmentInterval>;
|
|
4470
4478
|
/**
|
|
@@ -4521,7 +4529,7 @@ export interface SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse {
|
|
|
4521
4529
|
*/
|
|
4522
4530
|
default_invoice_memo: string | null;
|
|
4523
4531
|
/**
|
|
4524
|
-
* The discount intervals for this subscription.
|
|
4532
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
4525
4533
|
*/
|
|
4526
4534
|
discount_intervals: Array<SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.AmountDiscountInterval | SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.PercentageDiscountInterval | SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.UsageDiscountInterval>;
|
|
4527
4535
|
/**
|
|
@@ -4531,7 +4539,7 @@ export interface SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse {
|
|
|
4531
4539
|
fixed_fee_quantity_schedule: Array<SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.FixedFeeQuantitySchedule>;
|
|
4532
4540
|
invoicing_threshold: string | null;
|
|
4533
4541
|
/**
|
|
4534
|
-
* The maximum intervals for this subscription.
|
|
4542
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
4535
4543
|
*/
|
|
4536
4544
|
maximum_intervals: Array<SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.MaximumInterval>;
|
|
4537
4545
|
/**
|
|
@@ -4542,7 +4550,7 @@ export interface SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse {
|
|
|
4542
4550
|
*/
|
|
4543
4551
|
metadata: Record<string, string>;
|
|
4544
4552
|
/**
|
|
4545
|
-
* The minimum intervals for this subscription.
|
|
4553
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
4546
4554
|
*/
|
|
4547
4555
|
minimum_intervals: Array<SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse.MinimumInterval>;
|
|
4548
4556
|
/**
|
|
@@ -4952,7 +4960,8 @@ export interface SubscriptionUnschedulePendingPlanChangesResponse {
|
|
|
4952
4960
|
*/
|
|
4953
4961
|
active_plan_phase_order: number | null;
|
|
4954
4962
|
/**
|
|
4955
|
-
* The adjustment intervals for this subscription
|
|
4963
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
4964
|
+
* adjustment interval.
|
|
4956
4965
|
*/
|
|
4957
4966
|
adjustment_intervals: Array<SubscriptionUnschedulePendingPlanChangesResponse.AdjustmentInterval>;
|
|
4958
4967
|
/**
|
|
@@ -5009,7 +5018,7 @@ export interface SubscriptionUnschedulePendingPlanChangesResponse {
|
|
|
5009
5018
|
*/
|
|
5010
5019
|
default_invoice_memo: string | null;
|
|
5011
5020
|
/**
|
|
5012
|
-
* The discount intervals for this subscription.
|
|
5021
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
5013
5022
|
*/
|
|
5014
5023
|
discount_intervals: Array<SubscriptionUnschedulePendingPlanChangesResponse.AmountDiscountInterval | SubscriptionUnschedulePendingPlanChangesResponse.PercentageDiscountInterval | SubscriptionUnschedulePendingPlanChangesResponse.UsageDiscountInterval>;
|
|
5015
5024
|
/**
|
|
@@ -5019,7 +5028,7 @@ export interface SubscriptionUnschedulePendingPlanChangesResponse {
|
|
|
5019
5028
|
fixed_fee_quantity_schedule: Array<SubscriptionUnschedulePendingPlanChangesResponse.FixedFeeQuantitySchedule>;
|
|
5020
5029
|
invoicing_threshold: string | null;
|
|
5021
5030
|
/**
|
|
5022
|
-
* The maximum intervals for this subscription.
|
|
5031
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
5023
5032
|
*/
|
|
5024
5033
|
maximum_intervals: Array<SubscriptionUnschedulePendingPlanChangesResponse.MaximumInterval>;
|
|
5025
5034
|
/**
|
|
@@ -5030,7 +5039,7 @@ export interface SubscriptionUnschedulePendingPlanChangesResponse {
|
|
|
5030
5039
|
*/
|
|
5031
5040
|
metadata: Record<string, string>;
|
|
5032
5041
|
/**
|
|
5033
|
-
* The minimum intervals for this subscription.
|
|
5042
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
5034
5043
|
*/
|
|
5035
5044
|
minimum_intervals: Array<SubscriptionUnschedulePendingPlanChangesResponse.MinimumInterval>;
|
|
5036
5045
|
/**
|
|
@@ -5440,7 +5449,8 @@ export interface SubscriptionUpdateFixedFeeQuantityResponse {
|
|
|
5440
5449
|
*/
|
|
5441
5450
|
active_plan_phase_order: number | null;
|
|
5442
5451
|
/**
|
|
5443
|
-
* The adjustment intervals for this subscription
|
|
5452
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
5453
|
+
* adjustment interval.
|
|
5444
5454
|
*/
|
|
5445
5455
|
adjustment_intervals: Array<SubscriptionUpdateFixedFeeQuantityResponse.AdjustmentInterval>;
|
|
5446
5456
|
/**
|
|
@@ -5497,7 +5507,7 @@ export interface SubscriptionUpdateFixedFeeQuantityResponse {
|
|
|
5497
5507
|
*/
|
|
5498
5508
|
default_invoice_memo: string | null;
|
|
5499
5509
|
/**
|
|
5500
|
-
* The discount intervals for this subscription.
|
|
5510
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
5501
5511
|
*/
|
|
5502
5512
|
discount_intervals: Array<SubscriptionUpdateFixedFeeQuantityResponse.AmountDiscountInterval | SubscriptionUpdateFixedFeeQuantityResponse.PercentageDiscountInterval | SubscriptionUpdateFixedFeeQuantityResponse.UsageDiscountInterval>;
|
|
5503
5513
|
/**
|
|
@@ -5507,7 +5517,7 @@ export interface SubscriptionUpdateFixedFeeQuantityResponse {
|
|
|
5507
5517
|
fixed_fee_quantity_schedule: Array<SubscriptionUpdateFixedFeeQuantityResponse.FixedFeeQuantitySchedule>;
|
|
5508
5518
|
invoicing_threshold: string | null;
|
|
5509
5519
|
/**
|
|
5510
|
-
* The maximum intervals for this subscription.
|
|
5520
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
5511
5521
|
*/
|
|
5512
5522
|
maximum_intervals: Array<SubscriptionUpdateFixedFeeQuantityResponse.MaximumInterval>;
|
|
5513
5523
|
/**
|
|
@@ -5518,7 +5528,7 @@ export interface SubscriptionUpdateFixedFeeQuantityResponse {
|
|
|
5518
5528
|
*/
|
|
5519
5529
|
metadata: Record<string, string>;
|
|
5520
5530
|
/**
|
|
5521
|
-
* The minimum intervals for this subscription.
|
|
5531
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
5522
5532
|
*/
|
|
5523
5533
|
minimum_intervals: Array<SubscriptionUpdateFixedFeeQuantityResponse.MinimumInterval>;
|
|
5524
5534
|
/**
|
|
@@ -5928,7 +5938,8 @@ export interface SubscriptionUpdateTrialResponse {
|
|
|
5928
5938
|
*/
|
|
5929
5939
|
active_plan_phase_order: number | null;
|
|
5930
5940
|
/**
|
|
5931
|
-
* The adjustment intervals for this subscription
|
|
5941
|
+
* The adjustment intervals for this subscription sorted by the start_date of the
|
|
5942
|
+
* adjustment interval.
|
|
5932
5943
|
*/
|
|
5933
5944
|
adjustment_intervals: Array<SubscriptionUpdateTrialResponse.AdjustmentInterval>;
|
|
5934
5945
|
/**
|
|
@@ -5985,7 +5996,7 @@ export interface SubscriptionUpdateTrialResponse {
|
|
|
5985
5996
|
*/
|
|
5986
5997
|
default_invoice_memo: string | null;
|
|
5987
5998
|
/**
|
|
5988
|
-
* The discount intervals for this subscription.
|
|
5999
|
+
* The discount intervals for this subscription sorted by the start_date.
|
|
5989
6000
|
*/
|
|
5990
6001
|
discount_intervals: Array<SubscriptionUpdateTrialResponse.AmountDiscountInterval | SubscriptionUpdateTrialResponse.PercentageDiscountInterval | SubscriptionUpdateTrialResponse.UsageDiscountInterval>;
|
|
5991
6002
|
/**
|
|
@@ -5995,7 +6006,7 @@ export interface SubscriptionUpdateTrialResponse {
|
|
|
5995
6006
|
fixed_fee_quantity_schedule: Array<SubscriptionUpdateTrialResponse.FixedFeeQuantitySchedule>;
|
|
5996
6007
|
invoicing_threshold: string | null;
|
|
5997
6008
|
/**
|
|
5998
|
-
* The maximum intervals for this subscription.
|
|
6009
|
+
* The maximum intervals for this subscription sorted by the start_date.
|
|
5999
6010
|
*/
|
|
6000
6011
|
maximum_intervals: Array<SubscriptionUpdateTrialResponse.MaximumInterval>;
|
|
6001
6012
|
/**
|
|
@@ -6006,7 +6017,7 @@ export interface SubscriptionUpdateTrialResponse {
|
|
|
6006
6017
|
*/
|
|
6007
6018
|
metadata: Record<string, string>;
|
|
6008
6019
|
/**
|
|
6009
|
-
* The minimum intervals for this subscription.
|
|
6020
|
+
* The minimum intervals for this subscription sorted by the start_date.
|
|
6010
6021
|
*/
|
|
6011
6022
|
minimum_intervals: Array<SubscriptionUpdateTrialResponse.MinimumInterval>;
|
|
6012
6023
|
/**
|