@epilot/pricing-client 3.24.0 → 3.25.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 +7 -1
- package/dist/openapi.json +14 -12
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1098,7 +1098,7 @@ declare namespace Components {
|
|
|
1098
1098
|
/**
|
|
1099
1099
|
* The consumption type
|
|
1100
1100
|
*/
|
|
1101
|
-
consumption_type?: "household" | "heating_pump" | "night_storage_heating";
|
|
1101
|
+
consumption_type?: "household" | "heating_pump" | "night_storage_heating" | "night_storage_heating_common_meter";
|
|
1102
1102
|
/**
|
|
1103
1103
|
* The monthly consumption to compute the price in kWh (to be deprecated in favor of consumption_HT)
|
|
1104
1104
|
*/
|
|
@@ -2649,6 +2649,10 @@ declare namespace Components {
|
|
|
2649
2649
|
unit_amount?: number;
|
|
2650
2650
|
unit_amount_decimal?: string;
|
|
2651
2651
|
display_mode?: PriceTierDisplayMode;
|
|
2652
|
+
unit_amount_gross?: number;
|
|
2653
|
+
unit_amount_gross_decimal?: string;
|
|
2654
|
+
flat_fee_amount_gross?: number;
|
|
2655
|
+
flat_fee_amount_gross_decimal?: string;
|
|
2652
2656
|
}
|
|
2653
2657
|
/**
|
|
2654
2658
|
* The result from the calculation of a set of price items.
|
|
@@ -3398,8 +3402,10 @@ declare namespace Paths {
|
|
|
3398
3402
|
namespace $SearchCatalog {
|
|
3399
3403
|
export interface HeaderParameters {
|
|
3400
3404
|
"X-Ivy-Org-ID": Parameters.XIvyOrgID;
|
|
3405
|
+
Authorization?: Parameters.Authorization;
|
|
3401
3406
|
}
|
|
3402
3407
|
namespace Parameters {
|
|
3408
|
+
export type Authorization = string;
|
|
3403
3409
|
export type XIvyOrgID = string;
|
|
3404
3410
|
}
|
|
3405
3411
|
export type RequestBody = /**
|
package/dist/openapi.json
CHANGED
|
@@ -572,6 +572,14 @@
|
|
|
572
572
|
"type": "string"
|
|
573
573
|
},
|
|
574
574
|
"required": true
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"in": "header",
|
|
578
|
+
"name": "Authorization",
|
|
579
|
+
"description": "The token identifying the client making the request",
|
|
580
|
+
"schema": {
|
|
581
|
+
"type": "string"
|
|
582
|
+
}
|
|
575
583
|
}
|
|
576
584
|
],
|
|
577
585
|
"requestBody": {
|
|
@@ -2716,7 +2724,8 @@
|
|
|
2716
2724
|
"enum": [
|
|
2717
2725
|
"household",
|
|
2718
2726
|
"heating_pump",
|
|
2719
|
-
"night_storage_heating"
|
|
2727
|
+
"night_storage_heating",
|
|
2728
|
+
"night_storage_heating_common_meter"
|
|
2720
2729
|
]
|
|
2721
2730
|
},
|
|
2722
2731
|
"consumption": {
|
|
@@ -4472,24 +4481,17 @@
|
|
|
4472
4481
|
],
|
|
4473
4482
|
"type": "object",
|
|
4474
4483
|
"properties": {
|
|
4475
|
-
"
|
|
4476
|
-
"type": "number",
|
|
4477
|
-
"nullable": true
|
|
4478
|
-
},
|
|
4479
|
-
"flat_fee_amount": {
|
|
4484
|
+
"unit_amount_gross": {
|
|
4480
4485
|
"type": "number"
|
|
4481
4486
|
},
|
|
4482
|
-
"
|
|
4487
|
+
"unit_amount_gross_decimal": {
|
|
4483
4488
|
"type": "string"
|
|
4484
4489
|
},
|
|
4485
|
-
"
|
|
4490
|
+
"flat_fee_amount_gross": {
|
|
4486
4491
|
"type": "number"
|
|
4487
4492
|
},
|
|
4488
|
-
"
|
|
4493
|
+
"flat_fee_amount_gross_decimal": {
|
|
4489
4494
|
"type": "string"
|
|
4490
|
-
},
|
|
4491
|
-
"display_mode": {
|
|
4492
|
-
"$ref": "#/components/schemas/PriceTierDisplayMode"
|
|
4493
4495
|
}
|
|
4494
4496
|
}
|
|
4495
4497
|
},
|