@epilot/pricing-client 3.25.0 → 3.26.1
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/dist/openapi.d.ts +24 -0
- package/dist/openapi.json +10 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -212,6 +212,10 @@ declare namespace Components {
|
|
|
212
212
|
* The unit gross amount value.
|
|
213
213
|
*/
|
|
214
214
|
unit_amount_gross?: number;
|
|
215
|
+
/**
|
|
216
|
+
* The unit gross amount value.
|
|
217
|
+
*/
|
|
218
|
+
unit_amount_gross_decimal?: string;
|
|
215
219
|
/**
|
|
216
220
|
* Total tax amount for this line item.
|
|
217
221
|
*/
|
|
@@ -220,6 +224,10 @@ declare namespace Components {
|
|
|
220
224
|
* Net unit amount without taxes or discounts.
|
|
221
225
|
*/
|
|
222
226
|
unit_amount_net?: number;
|
|
227
|
+
/**
|
|
228
|
+
* Net unit amount without taxes or discounts.
|
|
229
|
+
*/
|
|
230
|
+
unit_amount_net_decimal?: string;
|
|
223
231
|
/**
|
|
224
232
|
* The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
|
|
225
233
|
*/
|
|
@@ -806,6 +814,10 @@ declare namespace Components {
|
|
|
806
814
|
* The unit gross amount value.
|
|
807
815
|
*/
|
|
808
816
|
unit_amount_gross?: number;
|
|
817
|
+
/**
|
|
818
|
+
* The unit gross amount value.
|
|
819
|
+
*/
|
|
820
|
+
unit_amount_gross_decimal?: string;
|
|
809
821
|
/**
|
|
810
822
|
* Total tax amount for this line item.
|
|
811
823
|
*/
|
|
@@ -814,6 +826,10 @@ declare namespace Components {
|
|
|
814
826
|
* Net unit amount without taxes or discounts.
|
|
815
827
|
*/
|
|
816
828
|
unit_amount_net?: number;
|
|
829
|
+
/**
|
|
830
|
+
* Net unit amount without taxes or discounts.
|
|
831
|
+
*/
|
|
832
|
+
unit_amount_net_decimal?: string;
|
|
817
833
|
/**
|
|
818
834
|
* The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
|
|
819
835
|
*/
|
|
@@ -2119,6 +2135,10 @@ declare namespace Components {
|
|
|
2119
2135
|
* The unit gross amount value.
|
|
2120
2136
|
*/
|
|
2121
2137
|
unit_amount_gross?: number;
|
|
2138
|
+
/**
|
|
2139
|
+
* The unit gross amount value.
|
|
2140
|
+
*/
|
|
2141
|
+
unit_amount_gross_decimal?: string;
|
|
2122
2142
|
/**
|
|
2123
2143
|
* Total tax amount for this line item.
|
|
2124
2144
|
*/
|
|
@@ -2127,6 +2147,10 @@ declare namespace Components {
|
|
|
2127
2147
|
* Net unit amount without taxes or discounts.
|
|
2128
2148
|
*/
|
|
2129
2149
|
unit_amount_net?: number;
|
|
2150
|
+
/**
|
|
2151
|
+
* Net unit amount without taxes or discounts.
|
|
2152
|
+
*/
|
|
2153
|
+
unit_amount_net_decimal?: string;
|
|
2130
2154
|
/**
|
|
2131
2155
|
* The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
|
|
2132
2156
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -3601,6 +3601,11 @@
|
|
|
3601
3601
|
"description": "The unit gross amount value.",
|
|
3602
3602
|
"readOnly": true
|
|
3603
3603
|
},
|
|
3604
|
+
"unit_amount_gross_decimal": {
|
|
3605
|
+
"type": "string",
|
|
3606
|
+
"description": "The unit gross amount value.",
|
|
3607
|
+
"readOnly": true
|
|
3608
|
+
},
|
|
3604
3609
|
"amount_tax": {
|
|
3605
3610
|
"type": "integer",
|
|
3606
3611
|
"description": "Total tax amount for this line item."
|
|
@@ -3610,6 +3615,11 @@
|
|
|
3610
3615
|
"description": "Net unit amount without taxes or discounts.",
|
|
3611
3616
|
"readOnly": true
|
|
3612
3617
|
},
|
|
3618
|
+
"unit_amount_net_decimal": {
|
|
3619
|
+
"type": "string",
|
|
3620
|
+
"description": "Net unit amount without taxes or discounts.",
|
|
3621
|
+
"readOnly": true
|
|
3622
|
+
},
|
|
3613
3623
|
"unit_amount_decimal": {
|
|
3614
3624
|
"description": "The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.",
|
|
3615
3625
|
"type": "string"
|