@epilot/pricing-client 3.11.1 → 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 CHANGED
@@ -2424,7 +2424,7 @@ declare namespace Components {
2424
2424
  /**
2425
2425
  * The price billing period.
2426
2426
  */
2427
- billing_period?: string;
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.11.1",
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",