@epilot/pricing-client 3.22.0 → 3.22.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 CHANGED
@@ -2999,13 +2999,13 @@ declare namespace Components {
2999
2999
  _id?: string;
3000
3000
  }
3001
3001
  export interface TierDetails {
3002
- quantity?: number;
3003
- unit_amount?: number;
3004
- unit_amount_gross?: number;
3005
- unit_amount_net?: number;
3006
- amount_total?: number;
3007
- amount_subtotal?: number;
3008
- amount_tax?: number;
3002
+ quantity: number;
3003
+ unit_amount: number;
3004
+ unit_amount_gross: number;
3005
+ unit_amount_net: number;
3006
+ amount_total: number;
3007
+ amount_subtotal: number;
3008
+ amount_tax: number;
3009
3009
  }
3010
3010
  /**
3011
3011
  * The total details with tax (and discount) aggregated totals.
package/dist/openapi.json CHANGED
@@ -4419,7 +4419,16 @@
4419
4419
  "amount_tax": {
4420
4420
  "type": "number"
4421
4421
  }
4422
- }
4422
+ },
4423
+ "required": [
4424
+ "quantity",
4425
+ "unit_amount",
4426
+ "unit_amount_gross",
4427
+ "unit_amount_net",
4428
+ "amount_total",
4429
+ "amount_subtotal",
4430
+ "amount_tax"
4431
+ ]
4423
4432
  }
4424
4433
  },
4425
4434
  "examples": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.22.0",
3
+ "version": "3.22.1",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",