@epilot/pricing-client 3.11.0 → 3.11.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 +2 -2
- package/dist/openapi.json +16 -2
- 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
|
*/
|
|
@@ -2424,7 +2424,7 @@ declare namespace Components {
|
|
|
2424
2424
|
/**
|
|
2425
2425
|
* The price billing period.
|
|
2426
2426
|
*/
|
|
2427
|
-
billing_period?:
|
|
2427
|
+
billing_period?: "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
|
|
2428
2428
|
/**
|
|
2429
2429
|
* Total of all items, with same recurrence, before (discounts or) taxes are applied.
|
|
2430
2430
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -2428,7 +2428,14 @@
|
|
|
2428
2428
|
},
|
|
2429
2429
|
"billing_period": {
|
|
2430
2430
|
"type": "string",
|
|
2431
|
-
"description": "The price billing period."
|
|
2431
|
+
"description": "The price billing period.",
|
|
2432
|
+
"enum": [
|
|
2433
|
+
"weekly",
|
|
2434
|
+
"monthly",
|
|
2435
|
+
"every_quarter",
|
|
2436
|
+
"every_6_months",
|
|
2437
|
+
"yearly"
|
|
2438
|
+
]
|
|
2432
2439
|
},
|
|
2433
2440
|
"amount_subtotal": {
|
|
2434
2441
|
"type": "integer",
|
|
@@ -2854,7 +2861,14 @@
|
|
|
2854
2861
|
},
|
|
2855
2862
|
"billing_period": {
|
|
2856
2863
|
"type": "string",
|
|
2857
|
-
"description": "The price billing period."
|
|
2864
|
+
"description": "The price billing period.",
|
|
2865
|
+
"enum": [
|
|
2866
|
+
"weekly",
|
|
2867
|
+
"monthly",
|
|
2868
|
+
"every_quarter",
|
|
2869
|
+
"every_6_months",
|
|
2870
|
+
"yearly"
|
|
2871
|
+
]
|
|
2858
2872
|
},
|
|
2859
2873
|
"amount_subtotal": {
|
|
2860
2874
|
"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.2",
|
|
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",
|