@epilot/pricing-client 3.22.1 → 3.22.2
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 +10 -0
- package/dist/openapi.json +36 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1924,6 +1924,15 @@ declare namespace Components {
|
|
|
1924
1924
|
*/
|
|
1925
1925
|
_tags?: string[];
|
|
1926
1926
|
}
|
|
1927
|
+
export interface PriceGetAg {
|
|
1928
|
+
category: string;
|
|
1929
|
+
markup_amount: number;
|
|
1930
|
+
markup_amount_decimal: string;
|
|
1931
|
+
unit_amount_gross: number;
|
|
1932
|
+
unit_amount_gross_decimal?: string;
|
|
1933
|
+
unit_amount_net: number;
|
|
1934
|
+
unit_amount_net_decimal?: string;
|
|
1935
|
+
}
|
|
1927
1936
|
/**
|
|
1928
1937
|
* example:
|
|
1929
1938
|
* {
|
|
@@ -2125,6 +2134,7 @@ declare namespace Components {
|
|
|
2125
2134
|
*/
|
|
2126
2135
|
pricing_model: "per_unit" | "tiered_graduated" | "tiered_volume" | "tiered_flatfee" | "external_getag";
|
|
2127
2136
|
tiers_details?: TierDetails[];
|
|
2137
|
+
get_ag?: PriceGetAg;
|
|
2128
2138
|
}
|
|
2129
2139
|
/**
|
|
2130
2140
|
* Represents a price input to the pricing library.
|
package/dist/openapi.json
CHANGED
|
@@ -3675,6 +3675,9 @@
|
|
|
3675
3675
|
"items": {
|
|
3676
3676
|
"$ref": "#/components/schemas/TierDetails"
|
|
3677
3677
|
}
|
|
3678
|
+
},
|
|
3679
|
+
"get_ag": {
|
|
3680
|
+
"$ref": "#/components/schemas/PriceGetAg"
|
|
3678
3681
|
}
|
|
3679
3682
|
},
|
|
3680
3683
|
"required": [
|
|
@@ -4395,6 +4398,39 @@
|
|
|
4395
4398
|
"on_request"
|
|
4396
4399
|
]
|
|
4397
4400
|
},
|
|
4401
|
+
"PriceGetAg": {
|
|
4402
|
+
"type": "object",
|
|
4403
|
+
"properties": {
|
|
4404
|
+
"category": {
|
|
4405
|
+
"type": "string"
|
|
4406
|
+
},
|
|
4407
|
+
"markup_amount": {
|
|
4408
|
+
"type": "number"
|
|
4409
|
+
},
|
|
4410
|
+
"markup_amount_decimal": {
|
|
4411
|
+
"type": "string"
|
|
4412
|
+
},
|
|
4413
|
+
"unit_amount_gross": {
|
|
4414
|
+
"type": "number"
|
|
4415
|
+
},
|
|
4416
|
+
"unit_amount_gross_decimal": {
|
|
4417
|
+
"type": "string"
|
|
4418
|
+
},
|
|
4419
|
+
"unit_amount_net": {
|
|
4420
|
+
"type": "number"
|
|
4421
|
+
},
|
|
4422
|
+
"unit_amount_net_decimal": {
|
|
4423
|
+
"type": "string"
|
|
4424
|
+
}
|
|
4425
|
+
},
|
|
4426
|
+
"required": [
|
|
4427
|
+
"category",
|
|
4428
|
+
"markup_amount",
|
|
4429
|
+
"markup_amount_decimal",
|
|
4430
|
+
"unit_amount_gross",
|
|
4431
|
+
"unit_amount_net"
|
|
4432
|
+
]
|
|
4433
|
+
},
|
|
4398
4434
|
"TierDetails": {
|
|
4399
4435
|
"type": "object",
|
|
4400
4436
|
"properties": {
|