@epilot/pricing-client 3.11.1 → 3.11.3-0

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
@@ -424,7 +424,7 @@ declare namespace Components {
424
424
  _updated_at?: string;
425
425
  };
426
426
  }
427
- export type BillingPeriod = "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly" | "one_time";
427
+ export type BillingPeriod = "weekly" | "monthly" | "every_quarter" | "every_6_months" | "yearly";
428
428
  /**
429
429
  * Supports shopping for products and services until ready for checkout.
430
430
  */
@@ -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",
@@ -2969,8 +2976,7 @@
2969
2976
  "monthly",
2970
2977
  "every_quarter",
2971
2978
  "every_6_months",
2972
- "yearly",
2973
- "one_time"
2979
+ "yearly"
2974
2980
  ]
2975
2981
  },
2976
2982
  "SalesTax": {
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.3-0",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",