@epilot/pricing-client 3.23.0 → 3.24.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/dist/openapi.d.ts +8 -0
- package/dist/openapi.json +29 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2642,6 +2642,14 @@ declare namespace Components {
|
|
|
2642
2642
|
display_mode?: PriceTierDisplayMode;
|
|
2643
2643
|
}
|
|
2644
2644
|
export type PriceTierDisplayMode = "hidden" | "on_request";
|
|
2645
|
+
export interface PriceTierEnhanced {
|
|
2646
|
+
up_to?: number | null;
|
|
2647
|
+
flat_fee_amount?: number;
|
|
2648
|
+
flat_fee_amount_decimal?: string;
|
|
2649
|
+
unit_amount?: number;
|
|
2650
|
+
unit_amount_decimal?: string;
|
|
2651
|
+
display_mode?: PriceTierDisplayMode;
|
|
2652
|
+
}
|
|
2645
2653
|
/**
|
|
2646
2654
|
* The result from the calculation of a set of price items.
|
|
2647
2655
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -4464,6 +4464,35 @@
|
|
|
4464
4464
|
}
|
|
4465
4465
|
}
|
|
4466
4466
|
},
|
|
4467
|
+
"PriceTierEnhanced": {
|
|
4468
|
+
"allOf": [
|
|
4469
|
+
{
|
|
4470
|
+
"$ref": "#/components/schemas/PriceTier"
|
|
4471
|
+
}
|
|
4472
|
+
],
|
|
4473
|
+
"type": "object",
|
|
4474
|
+
"properties": {
|
|
4475
|
+
"up_to": {
|
|
4476
|
+
"type": "number",
|
|
4477
|
+
"nullable": true
|
|
4478
|
+
},
|
|
4479
|
+
"flat_fee_amount": {
|
|
4480
|
+
"type": "number"
|
|
4481
|
+
},
|
|
4482
|
+
"flat_fee_amount_decimal": {
|
|
4483
|
+
"type": "string"
|
|
4484
|
+
},
|
|
4485
|
+
"unit_amount": {
|
|
4486
|
+
"type": "number"
|
|
4487
|
+
},
|
|
4488
|
+
"unit_amount_decimal": {
|
|
4489
|
+
"type": "string"
|
|
4490
|
+
},
|
|
4491
|
+
"display_mode": {
|
|
4492
|
+
"$ref": "#/components/schemas/PriceTierDisplayMode"
|
|
4493
|
+
}
|
|
4494
|
+
}
|
|
4495
|
+
},
|
|
4467
4496
|
"PriceTierDisplayMode": {
|
|
4468
4497
|
"type": "string",
|
|
4469
4498
|
"enum": [
|