@epilot/pricing-client 3.43.0 → 3.44.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 +42 -4
- package/dist/openapi.json +42 -4
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -3396,8 +3396,46 @@ declare namespace Components {
|
|
|
3396
3396
|
interval?: /* The interval of the tariff if a spot market price is used as base. */ DynamicTariffInterval;
|
|
3397
3397
|
average_price: number;
|
|
3398
3398
|
average_price_decimal: string;
|
|
3399
|
-
|
|
3400
|
-
|
|
3399
|
+
/**
|
|
3400
|
+
* The markup amount, configured in Epilot, in cents.
|
|
3401
|
+
*/
|
|
3402
|
+
markup_amount?: number;
|
|
3403
|
+
/**
|
|
3404
|
+
* The markup amount, configured in Epilot, as a string with full precision.
|
|
3405
|
+
*/
|
|
3406
|
+
markup_amount_decimal?: string;
|
|
3407
|
+
/**
|
|
3408
|
+
* The markup amount net, configured in Epilot, in cents.
|
|
3409
|
+
*/
|
|
3410
|
+
markup_amount_net?: number;
|
|
3411
|
+
/**
|
|
3412
|
+
* The markup amount net, configured in Epilot, as a string with full precision.
|
|
3413
|
+
*/
|
|
3414
|
+
markup_amount_net_decimal?: string;
|
|
3415
|
+
/**
|
|
3416
|
+
* The markup amount gross, configured in Epilot, in cents.
|
|
3417
|
+
*/
|
|
3418
|
+
markup_amount_gross?: number;
|
|
3419
|
+
/**
|
|
3420
|
+
* The markup amount gross, configured in Epilot, as a string with full precision.
|
|
3421
|
+
*/
|
|
3422
|
+
markup_amount_gross_decimal?: string;
|
|
3423
|
+
/**
|
|
3424
|
+
* The unit amount net for the energy price in cents, it's provided by an external provider.
|
|
3425
|
+
*/
|
|
3426
|
+
unit_amount_net?: number;
|
|
3427
|
+
/**
|
|
3428
|
+
* The unit amount net for the energy price as a string with full precision, it's provided by an external provider.
|
|
3429
|
+
*/
|
|
3430
|
+
unit_amount_net_decimal?: string;
|
|
3431
|
+
/**
|
|
3432
|
+
* The unit amount gross for the energy price in cents, it's provided by an external provider.
|
|
3433
|
+
*/
|
|
3434
|
+
unit_amount_gross?: number;
|
|
3435
|
+
/**
|
|
3436
|
+
* The unit amount gross for the energy price as a string with full precision, it's provided by an external provider.
|
|
3437
|
+
*/
|
|
3438
|
+
unit_amount_gross_decimal?: string;
|
|
3401
3439
|
}
|
|
3402
3440
|
export interface PriceGetAg {
|
|
3403
3441
|
category: ProductCategory;
|
|
@@ -4822,11 +4860,11 @@ declare namespace Components {
|
|
|
4822
4860
|
/**
|
|
4823
4861
|
* The promocode inserted by the customer to redeem the promotion
|
|
4824
4862
|
*/
|
|
4825
|
-
code
|
|
4863
|
+
code: string;
|
|
4826
4864
|
/**
|
|
4827
4865
|
* The coupons that got redeemed with received the code
|
|
4828
4866
|
*/
|
|
4829
|
-
coupons
|
|
4867
|
+
coupons: /**
|
|
4830
4868
|
* The coupon configuration
|
|
4831
4869
|
* example:
|
|
4832
4870
|
* {
|
package/dist/openapi.json
CHANGED
|
@@ -5657,6 +5657,10 @@
|
|
|
5657
5657
|
},
|
|
5658
5658
|
"RedeemedPromo": {
|
|
5659
5659
|
"type": "object",
|
|
5660
|
+
"required": [
|
|
5661
|
+
"code",
|
|
5662
|
+
"coupons"
|
|
5663
|
+
],
|
|
5660
5664
|
"properties": {
|
|
5661
5665
|
"code": {
|
|
5662
5666
|
"description": "The promocode inserted by the customer to redeem the promotion",
|
|
@@ -5862,11 +5866,45 @@
|
|
|
5862
5866
|
"average_price_decimal": {
|
|
5863
5867
|
"type": "string"
|
|
5864
5868
|
},
|
|
5865
|
-
"
|
|
5866
|
-
"type": "number"
|
|
5869
|
+
"markup_amount": {
|
|
5870
|
+
"type": "number",
|
|
5871
|
+
"description": "The markup amount, configured in Epilot, in cents."
|
|
5867
5872
|
},
|
|
5868
|
-
"
|
|
5869
|
-
"type": "string"
|
|
5873
|
+
"markup_amount_decimal": {
|
|
5874
|
+
"type": "string",
|
|
5875
|
+
"description": "The markup amount, configured in Epilot, as a string with full precision."
|
|
5876
|
+
},
|
|
5877
|
+
"markup_amount_net": {
|
|
5878
|
+
"type": "number",
|
|
5879
|
+
"description": "The markup amount net, configured in Epilot, in cents."
|
|
5880
|
+
},
|
|
5881
|
+
"markup_amount_net_decimal": {
|
|
5882
|
+
"type": "string",
|
|
5883
|
+
"description": "The markup amount net, configured in Epilot, as a string with full precision."
|
|
5884
|
+
},
|
|
5885
|
+
"markup_amount_gross": {
|
|
5886
|
+
"type": "number",
|
|
5887
|
+
"description": "The markup amount gross, configured in Epilot, in cents."
|
|
5888
|
+
},
|
|
5889
|
+
"markup_amount_gross_decimal": {
|
|
5890
|
+
"type": "string",
|
|
5891
|
+
"description": "The markup amount gross, configured in Epilot, as a string with full precision."
|
|
5892
|
+
},
|
|
5893
|
+
"unit_amount_net": {
|
|
5894
|
+
"type": "number",
|
|
5895
|
+
"description": "The unit amount net for the energy price in cents, it's provided by an external provider."
|
|
5896
|
+
},
|
|
5897
|
+
"unit_amount_net_decimal": {
|
|
5898
|
+
"type": "string",
|
|
5899
|
+
"description": "The unit amount net for the energy price as a string with full precision, it's provided by an external provider."
|
|
5900
|
+
},
|
|
5901
|
+
"unit_amount_gross": {
|
|
5902
|
+
"type": "number",
|
|
5903
|
+
"description": "The unit amount gross for the energy price in cents, it's provided by an external provider."
|
|
5904
|
+
},
|
|
5905
|
+
"unit_amount_gross_decimal": {
|
|
5906
|
+
"type": "string",
|
|
5907
|
+
"description": "The unit amount gross for the energy price as a string with full precision, it's provided by an external provider."
|
|
5870
5908
|
}
|
|
5871
5909
|
},
|
|
5872
5910
|
"required": [
|