@marmot-systems/common 2.0.88 → 2.0.89

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/index.d.cts CHANGED
@@ -614,6 +614,7 @@ type InvoiceItemResponse = {
614
614
  price: string;
615
615
  amount: string;
616
616
  credit_type: CreditType | null;
617
+ country_tax_rule_id: number | null;
617
618
  product_name: string;
618
619
  product_description: string | null;
619
620
  product_type: ProductType;
@@ -628,6 +629,7 @@ type MappedInvoiceItem = {
628
629
  quantity: number;
629
630
  price: number;
630
631
  amount: number;
632
+ country_tax_rule_id?: number;
631
633
  credit_type?: CreditType;
632
634
  product_name: string;
633
635
  product_description?: string;
package/dist/index.d.ts CHANGED
@@ -614,6 +614,7 @@ type InvoiceItemResponse = {
614
614
  price: string;
615
615
  amount: string;
616
616
  credit_type: CreditType | null;
617
+ country_tax_rule_id: number | null;
617
618
  product_name: string;
618
619
  product_description: string | null;
619
620
  product_type: ProductType;
@@ -628,6 +629,7 @@ type MappedInvoiceItem = {
628
629
  quantity: number;
629
630
  price: number;
630
631
  amount: number;
632
+ country_tax_rule_id?: number;
631
633
  credit_type?: CreditType;
632
634
  product_name: string;
633
635
  product_description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marmot-systems/common",
3
- "version": "2.0.88",
3
+ "version": "2.0.89",
4
4
  "description": "Schemas and utils shared across Marmot apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",