@epilot/pricing-client 3.47.4 → 3.47.5

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
@@ -5310,7 +5310,7 @@ declare namespace Components {
5310
5310
  _updated_at: string; // date-time
5311
5311
  type: "VAT" | "GST" | "Custom";
5312
5312
  description?: string;
5313
- rate: number;
5313
+ rate: number | null;
5314
5314
  active?: boolean;
5315
5315
  region?: string;
5316
5316
  region_label?: string;
@@ -5411,7 +5411,7 @@ declare namespace Components {
5411
5411
  Tax;
5412
5412
  }
5413
5413
  export interface TaxBreakdownInfo {
5414
- rate?: number;
5414
+ rate?: number | null;
5415
5415
  type?: "VAT" | "GST" | "Custom";
5416
5416
  _id?: string;
5417
5417
  }
package/dist/openapi.json CHANGED
@@ -5607,7 +5607,8 @@
5607
5607
  "type": "string"
5608
5608
  },
5609
5609
  "rate": {
5610
- "type": "number"
5610
+ "type": "number",
5611
+ "nullable": true
5611
5612
  },
5612
5613
  "active": {
5613
5614
  "type": "boolean"
@@ -5640,7 +5641,8 @@
5640
5641
  "type": "object",
5641
5642
  "properties": {
5642
5643
  "rate": {
5643
- "type": "number"
5644
+ "type": "number",
5645
+ "nullable": true
5644
5646
  },
5645
5647
  "type": {
5646
5648
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.47.4",
3
+ "version": "3.47.5",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",