orb-billing 5.40.0 → 5.41.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 +18 -0
- package/package.json +1 -1
- package/resources/events/events.d.ts +1 -1
- package/resources/invoices.d.ts +1 -1
- package/resources/invoices.d.ts.map +1 -1
- package/resources/prices/prices.d.ts +5 -5
- package/resources/prices/prices.d.ts.map +1 -1
- package/resources/shared.d.ts +15 -15
- package/resources/shared.d.ts.map +1 -1
- package/resources/subscriptions.d.ts +5 -5
- package/resources/subscriptions.d.ts.map +1 -1
- package/src/resources/events/events.ts +1 -1
- package/src/resources/invoices.ts +1 -1
- package/src/resources/prices/prices.ts +5 -5
- package/src/resources/shared.ts +15 -15
- package/src/resources/subscriptions.ts +5 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/shared.ts
CHANGED
|
@@ -4326,14 +4326,14 @@ export interface NewFloatingMinimumCompositePrice {
|
|
|
4326
4326
|
item_id: string;
|
|
4327
4327
|
|
|
4328
4328
|
/**
|
|
4329
|
-
* Configuration for
|
|
4329
|
+
* Configuration for minimum_composite pricing
|
|
4330
4330
|
*/
|
|
4331
|
-
|
|
4331
|
+
minimum_composite_config: NewFloatingMinimumCompositePrice.MinimumCompositeConfig;
|
|
4332
4332
|
|
|
4333
4333
|
/**
|
|
4334
4334
|
* The pricing model type
|
|
4335
4335
|
*/
|
|
4336
|
-
model_type: '
|
|
4336
|
+
model_type: 'minimum_composite';
|
|
4337
4337
|
|
|
4338
4338
|
/**
|
|
4339
4339
|
* The name of the price.
|
|
@@ -4405,9 +4405,9 @@ export interface NewFloatingMinimumCompositePrice {
|
|
|
4405
4405
|
|
|
4406
4406
|
export namespace NewFloatingMinimumCompositePrice {
|
|
4407
4407
|
/**
|
|
4408
|
-
* Configuration for
|
|
4408
|
+
* Configuration for minimum_composite pricing
|
|
4409
4409
|
*/
|
|
4410
|
-
export interface
|
|
4410
|
+
export interface MinimumCompositeConfig {
|
|
4411
4411
|
/**
|
|
4412
4412
|
* The minimum amount to apply
|
|
4413
4413
|
*/
|
|
@@ -7656,14 +7656,14 @@ export interface NewPlanMinimumCompositePrice {
|
|
|
7656
7656
|
item_id: string;
|
|
7657
7657
|
|
|
7658
7658
|
/**
|
|
7659
|
-
* Configuration for
|
|
7659
|
+
* Configuration for minimum_composite pricing
|
|
7660
7660
|
*/
|
|
7661
|
-
|
|
7661
|
+
minimum_composite_config: NewPlanMinimumCompositePrice.MinimumCompositeConfig;
|
|
7662
7662
|
|
|
7663
7663
|
/**
|
|
7664
7664
|
* The pricing model type
|
|
7665
7665
|
*/
|
|
7666
|
-
model_type: '
|
|
7666
|
+
model_type: 'minimum_composite';
|
|
7667
7667
|
|
|
7668
7668
|
/**
|
|
7669
7669
|
* The name of the price.
|
|
@@ -7747,9 +7747,9 @@ export interface NewPlanMinimumCompositePrice {
|
|
|
7747
7747
|
|
|
7748
7748
|
export namespace NewPlanMinimumCompositePrice {
|
|
7749
7749
|
/**
|
|
7750
|
-
* Configuration for
|
|
7750
|
+
* Configuration for minimum_composite pricing
|
|
7751
7751
|
*/
|
|
7752
|
-
export interface
|
|
7752
|
+
export interface MinimumCompositeConfig {
|
|
7753
7753
|
/**
|
|
7754
7754
|
* The minimum amount to apply
|
|
7755
7755
|
*/
|
|
@@ -13685,14 +13685,14 @@ export namespace Price {
|
|
|
13685
13685
|
minimum_amount: string | null;
|
|
13686
13686
|
|
|
13687
13687
|
/**
|
|
13688
|
-
* Configuration for
|
|
13688
|
+
* Configuration for minimum_composite pricing
|
|
13689
13689
|
*/
|
|
13690
|
-
|
|
13690
|
+
minimum_composite_config: MinimumCompositePrice.MinimumCompositeConfig;
|
|
13691
13691
|
|
|
13692
13692
|
/**
|
|
13693
13693
|
* The pricing model type
|
|
13694
13694
|
*/
|
|
13695
|
-
model_type: '
|
|
13695
|
+
model_type: 'minimum_composite';
|
|
13696
13696
|
|
|
13697
13697
|
name: string;
|
|
13698
13698
|
|
|
@@ -13728,9 +13728,9 @@ export namespace Price {
|
|
|
13728
13728
|
}
|
|
13729
13729
|
|
|
13730
13730
|
/**
|
|
13731
|
-
* Configuration for
|
|
13731
|
+
* Configuration for minimum_composite pricing
|
|
13732
13732
|
*/
|
|
13733
|
-
export interface
|
|
13733
|
+
export interface MinimumCompositeConfig {
|
|
13734
13734
|
/**
|
|
13735
13735
|
* The minimum amount to apply
|
|
13736
13736
|
*/
|
|
@@ -2629,14 +2629,14 @@ export interface NewSubscriptionMinimumCompositePrice {
|
|
|
2629
2629
|
item_id: string;
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
|
-
* Configuration for
|
|
2632
|
+
* Configuration for minimum_composite pricing
|
|
2633
2633
|
*/
|
|
2634
|
-
|
|
2634
|
+
minimum_composite_config: NewSubscriptionMinimumCompositePrice.MinimumCompositeConfig;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
2637
|
* The pricing model type
|
|
2638
2638
|
*/
|
|
2639
|
-
model_type: '
|
|
2639
|
+
model_type: 'minimum_composite';
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
2642
|
* The name of the price.
|
|
@@ -2720,9 +2720,9 @@ export interface NewSubscriptionMinimumCompositePrice {
|
|
|
2720
2720
|
|
|
2721
2721
|
export namespace NewSubscriptionMinimumCompositePrice {
|
|
2722
2722
|
/**
|
|
2723
|
-
* Configuration for
|
|
2723
|
+
* Configuration for minimum_composite pricing
|
|
2724
2724
|
*/
|
|
2725
|
-
export interface
|
|
2725
|
+
export interface MinimumCompositeConfig {
|
|
2726
2726
|
/**
|
|
2727
2727
|
* The minimum amount to apply
|
|
2728
2728
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.41.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.41.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.41.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|