@epilot/pricing-client 3.48.6 → 3.48.8
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 +20 -0
- package/dist/openapi.json +52 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -3847,6 +3847,26 @@ declare namespace Components {
|
|
|
3847
3847
|
markup_amount_decimal: string;
|
|
3848
3848
|
markup_amount_net?: number;
|
|
3849
3849
|
markup_amount_net_decimal?: string;
|
|
3850
|
+
markup_amount_gross?: number;
|
|
3851
|
+
markup_amount_gross_decimal?: string;
|
|
3852
|
+
markup_total_amount_net?: number;
|
|
3853
|
+
markup_total_amount_net_decimal?: string;
|
|
3854
|
+
markup_total_amount_gross?: number;
|
|
3855
|
+
markup_total_amount_gross_decimal?: string;
|
|
3856
|
+
/**
|
|
3857
|
+
* Whether the additional markups are enabled
|
|
3858
|
+
*/
|
|
3859
|
+
additional_markups_enabled?: boolean;
|
|
3860
|
+
additional_markups?: {
|
|
3861
|
+
[name: string]: {
|
|
3862
|
+
amount_decimal: string;
|
|
3863
|
+
amount: number;
|
|
3864
|
+
amount_net?: number;
|
|
3865
|
+
amount_net_decimal?: string;
|
|
3866
|
+
amount_gross?: number;
|
|
3867
|
+
amount_gross_decimal?: string;
|
|
3868
|
+
};
|
|
3869
|
+
};
|
|
3850
3870
|
unit_amount_gross: number;
|
|
3851
3871
|
unit_amount_gross_decimal?: string;
|
|
3852
3872
|
unit_amount_net: number;
|
package/dist/openapi.json
CHANGED
|
@@ -6614,6 +6614,58 @@
|
|
|
6614
6614
|
"markup_amount_net_decimal": {
|
|
6615
6615
|
"type": "string"
|
|
6616
6616
|
},
|
|
6617
|
+
"markup_amount_gross": {
|
|
6618
|
+
"type": "number"
|
|
6619
|
+
},
|
|
6620
|
+
"markup_amount_gross_decimal": {
|
|
6621
|
+
"type": "string"
|
|
6622
|
+
},
|
|
6623
|
+
"markup_total_amount_net": {
|
|
6624
|
+
"type": "number"
|
|
6625
|
+
},
|
|
6626
|
+
"markup_total_amount_net_decimal": {
|
|
6627
|
+
"type": "string"
|
|
6628
|
+
},
|
|
6629
|
+
"markup_total_amount_gross": {
|
|
6630
|
+
"type": "number"
|
|
6631
|
+
},
|
|
6632
|
+
"markup_total_amount_gross_decimal": {
|
|
6633
|
+
"type": "string"
|
|
6634
|
+
},
|
|
6635
|
+
"additional_markups_enabled": {
|
|
6636
|
+
"type": "boolean",
|
|
6637
|
+
"description": "Whether the additional markups are enabled"
|
|
6638
|
+
},
|
|
6639
|
+
"additional_markups": {
|
|
6640
|
+
"type": "object",
|
|
6641
|
+
"additionalProperties": {
|
|
6642
|
+
"type": "object",
|
|
6643
|
+
"properties": {
|
|
6644
|
+
"amount_decimal": {
|
|
6645
|
+
"type": "string"
|
|
6646
|
+
},
|
|
6647
|
+
"amount": {
|
|
6648
|
+
"type": "number"
|
|
6649
|
+
},
|
|
6650
|
+
"amount_net": {
|
|
6651
|
+
"type": "number"
|
|
6652
|
+
},
|
|
6653
|
+
"amount_net_decimal": {
|
|
6654
|
+
"type": "string"
|
|
6655
|
+
},
|
|
6656
|
+
"amount_gross": {
|
|
6657
|
+
"type": "number"
|
|
6658
|
+
},
|
|
6659
|
+
"amount_gross_decimal": {
|
|
6660
|
+
"type": "string"
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
"required": [
|
|
6664
|
+
"amount_decimal",
|
|
6665
|
+
"amount"
|
|
6666
|
+
]
|
|
6667
|
+
}
|
|
6668
|
+
},
|
|
6617
6669
|
"unit_amount_gross": {
|
|
6618
6670
|
"type": "number"
|
|
6619
6671
|
},
|