@retaila/shared-types 2.0.24 → 2.0.25

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.mts CHANGED
@@ -202,6 +202,13 @@ interface AccountBillingProfile {
202
202
  taxId?: string | null;
203
203
  address?: string | null;
204
204
  billingContactEmail?: string | null;
205
+ /**
206
+ * Whether VAT (IVA) is charged/invoiced on top of service amounts.
207
+ * Service plan amounts in the system are always stored net (sin IVA); this flag is for documents and UI.
208
+ */
209
+ invoiceVat?: boolean | null;
210
+ /** VAT rate when `invoiceVat` is true (e.g. 22 for Uruguay). Percent 0–100. */
211
+ vatPercent?: number | null;
205
212
  }
206
213
  interface Account {
207
214
  id: string;
package/dist/index.d.ts CHANGED
@@ -202,6 +202,13 @@ interface AccountBillingProfile {
202
202
  taxId?: string | null;
203
203
  address?: string | null;
204
204
  billingContactEmail?: string | null;
205
+ /**
206
+ * Whether VAT (IVA) is charged/invoiced on top of service amounts.
207
+ * Service plan amounts in the system are always stored net (sin IVA); this flag is for documents and UI.
208
+ */
209
+ invoiceVat?: boolean | null;
210
+ /** VAT rate when `invoiceVat` is true (e.g. 22 for Uruguay). Percent 0–100. */
211
+ vatPercent?: number | null;
205
212
  }
206
213
  interface Account {
207
214
  id: string;