orb-billing 6.12.0 → 6.13.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 +12 -0
- package/package.json +1 -1
- package/resources/shared.d.mts +22 -0
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +22 -0
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/shared.ts +27 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/shared.ts
CHANGED
|
@@ -2595,6 +2595,12 @@ export interface MatrixConfig {
|
|
|
2595
2595
|
* Matrix values configuration
|
|
2596
2596
|
*/
|
|
2597
2597
|
matrix_values: Array<MatrixValue>;
|
|
2598
|
+
|
|
2599
|
+
/**
|
|
2600
|
+
* @deprecated Optional multiplier applied to default-bucket quantity before
|
|
2601
|
+
* default_unit_amount.
|
|
2602
|
+
*/
|
|
2603
|
+
scaling_factor?: number | null;
|
|
2598
2604
|
}
|
|
2599
2605
|
|
|
2600
2606
|
export interface MatrixSubLineItem {
|
|
@@ -2632,6 +2638,11 @@ export interface MatrixValue {
|
|
|
2632
2638
|
* Unit price for the specified dimension_values
|
|
2633
2639
|
*/
|
|
2634
2640
|
unit_amount: string;
|
|
2641
|
+
|
|
2642
|
+
/**
|
|
2643
|
+
* @deprecated Optional multiplier applied to rated quantity before unit_amount.
|
|
2644
|
+
*/
|
|
2645
|
+
scaling_factor?: number | null;
|
|
2635
2646
|
}
|
|
2636
2647
|
|
|
2637
2648
|
/**
|
|
@@ -2657,6 +2668,12 @@ export interface MatrixWithAllocationConfig {
|
|
|
2657
2668
|
* Matrix values configuration
|
|
2658
2669
|
*/
|
|
2659
2670
|
matrix_values: Array<MatrixWithAllocationConfig.MatrixValue>;
|
|
2671
|
+
|
|
2672
|
+
/**
|
|
2673
|
+
* @deprecated Optional multiplier applied to default-bucket quantity before
|
|
2674
|
+
* default_unit_amount.
|
|
2675
|
+
*/
|
|
2676
|
+
scaling_factor?: string | null;
|
|
2660
2677
|
}
|
|
2661
2678
|
|
|
2662
2679
|
export namespace MatrixWithAllocationConfig {
|
|
@@ -2675,6 +2692,11 @@ export namespace MatrixWithAllocationConfig {
|
|
|
2675
2692
|
* Unit price for the specified dimension_values
|
|
2676
2693
|
*/
|
|
2677
2694
|
unit_amount: string;
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* @deprecated Optional multiplier applied to rated quantity before unit_amount.
|
|
2698
|
+
*/
|
|
2699
|
+
scaling_factor?: string | null;
|
|
2678
2700
|
}
|
|
2679
2701
|
}
|
|
2680
2702
|
|
|
@@ -16980,6 +17002,11 @@ export interface UnitConfig {
|
|
|
16980
17002
|
* If true, subtotals from this price are prorated based on the service period
|
|
16981
17003
|
*/
|
|
16982
17004
|
prorated?: boolean;
|
|
17005
|
+
|
|
17006
|
+
/**
|
|
17007
|
+
* @deprecated Optional multiplier applied to rated quantity before unit_amount.
|
|
17008
|
+
*/
|
|
17009
|
+
scaling_factor?: number | null;
|
|
16983
17010
|
}
|
|
16984
17011
|
|
|
16985
17012
|
export interface UnitConversionRateConfig {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.13.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.13.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.13.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.13.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|