@epilot/pricing-client 3.21.0 → 3.21.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 +8 -0
- package/dist/openapi.json +22 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2047,6 +2047,10 @@ declare namespace Components {
|
|
|
2047
2047
|
* One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.
|
|
2048
2048
|
*/
|
|
2049
2049
|
type?: "one_time" | "recurring";
|
|
2050
|
+
/**
|
|
2051
|
+
* The price billing period.
|
|
2052
|
+
*/
|
|
2053
|
+
billing_period?: "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
|
|
2050
2054
|
/**
|
|
2051
2055
|
* Describes how to compute the price per period. Either `per_unit`, `tiered_graduated` or `tiered_volume`.
|
|
2052
2056
|
* - `per_unit` indicates that the fixed amount (specified in unit_amount or unit_amount_decimal) will be charged per unit in quantity
|
|
@@ -2202,6 +2206,10 @@ declare namespace Components {
|
|
|
2202
2206
|
* One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.
|
|
2203
2207
|
*/
|
|
2204
2208
|
type?: "one_time" | "recurring";
|
|
2209
|
+
/**
|
|
2210
|
+
* The price billing period.
|
|
2211
|
+
*/
|
|
2212
|
+
billing_period?: "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
|
|
2205
2213
|
/**
|
|
2206
2214
|
* The unit amount value
|
|
2207
2215
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -3101,6 +3101,17 @@
|
|
|
3101
3101
|
"recurring"
|
|
3102
3102
|
]
|
|
3103
3103
|
},
|
|
3104
|
+
"billing_period": {
|
|
3105
|
+
"type": "string",
|
|
3106
|
+
"description": "The price billing period.",
|
|
3107
|
+
"enum": [
|
|
3108
|
+
"weekly",
|
|
3109
|
+
"monthly",
|
|
3110
|
+
"every_quarter",
|
|
3111
|
+
"every_6_months",
|
|
3112
|
+
"yearly"
|
|
3113
|
+
]
|
|
3114
|
+
},
|
|
3104
3115
|
"unit_amount": {
|
|
3105
3116
|
"type": "integer",
|
|
3106
3117
|
"description": "The unit amount value"
|
|
@@ -3584,6 +3595,17 @@
|
|
|
3584
3595
|
"recurring"
|
|
3585
3596
|
]
|
|
3586
3597
|
},
|
|
3598
|
+
"billing_period": {
|
|
3599
|
+
"type": "string",
|
|
3600
|
+
"description": "The price billing period.",
|
|
3601
|
+
"enum": [
|
|
3602
|
+
"weekly",
|
|
3603
|
+
"monthly",
|
|
3604
|
+
"every_quarter",
|
|
3605
|
+
"every_6_months",
|
|
3606
|
+
"yearly"
|
|
3607
|
+
]
|
|
3608
|
+
},
|
|
3587
3609
|
"pricing_model": {
|
|
3588
3610
|
"type": "string",
|
|
3589
3611
|
"description": "Describes how to compute the price per period. Either `per_unit`, `tiered_graduated` or `tiered_volume`.\n- `per_unit` indicates that the fixed amount (specified in unit_amount or unit_amount_decimal) will be charged per unit in quantity\n- `tiered_graduated` indicates that the unit pricing will be computed using tiers attribute. The customer pays the price per unit in every range their purchase rises through.\n- `tiered_volume` indicates that the unit pricing will be computed using tiers attribute. The customer pays the same unit price for all purchased units.\n- `tiered_flatfee` While similar to tiered_volume, tiered flat fee charges for the same price (flat) for the entire range instead using the unit price to multiply the quantity.\n- `external_getag` indicates that the price is influenced by aquisition fees provided by GetAG.\n",
|