@epilot/pricing-client 3.11.0 → 3.11.1
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 +1 -1
- package/dist/openapi.json +8 -1
- package/package.json +2 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -2395,7 +2395,7 @@ declare namespace Components {
|
|
|
2395
2395
|
/**
|
|
2396
2396
|
* The price billing period.
|
|
2397
2397
|
*/
|
|
2398
|
-
billing_period?:
|
|
2398
|
+
billing_period?: "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
|
|
2399
2399
|
/**
|
|
2400
2400
|
* Total of all items, with same recurrence, before (discounts or) taxes are applied.
|
|
2401
2401
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -2854,7 +2854,14 @@
|
|
|
2854
2854
|
},
|
|
2855
2855
|
"billing_period": {
|
|
2856
2856
|
"type": "string",
|
|
2857
|
-
"description": "The price billing period."
|
|
2857
|
+
"description": "The price billing period.",
|
|
2858
|
+
"enum": [
|
|
2859
|
+
"weekly",
|
|
2860
|
+
"monthly",
|
|
2861
|
+
"every_quarter",
|
|
2862
|
+
"every_6_months",
|
|
2863
|
+
"yearly"
|
|
2864
|
+
]
|
|
2858
2865
|
},
|
|
2859
2866
|
"amount_subtotal": {
|
|
2860
2867
|
"type": "integer",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/pricing-client",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.1",
|
|
4
4
|
"description": "Client for epilot Pricing APIs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"test": "jest",
|
|
25
25
|
"bundle-definition": "webpack",
|
|
26
|
-
"openapi": "node ../../scripts/update-openapi.js /Users/
|
|
26
|
+
"openapi": "node ../../scripts/update-openapi.js /Users/juanjoseguevara/Desktop/code/pricing-api/lambda/ApiHandlerFunction/openapi.yml",
|
|
27
27
|
"typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ./src/openapi.json >> src/openapi.d.ts",
|
|
28
28
|
"build": "tsc && npm run bundle-definition",
|
|
29
29
|
"build:watch": "npm run build && tsc -w",
|