@connectedxm/admin 1.3.1 → 1.3.2
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1466,6 +1466,11 @@ interface BasePayment {
|
|
|
1466
1466
|
stripeId: string | null;
|
|
1467
1467
|
last4: string | null;
|
|
1468
1468
|
debugId: string | null;
|
|
1469
|
+
salesTax: number;
|
|
1470
|
+
salesTaxRate: string | null;
|
|
1471
|
+
country: string;
|
|
1472
|
+
state: string;
|
|
1473
|
+
zip: string;
|
|
1469
1474
|
createdAt: string;
|
|
1470
1475
|
}
|
|
1471
1476
|
declare enum PaymentIntegrationType {
|
package/dist/index.d.ts
CHANGED
|
@@ -1466,6 +1466,11 @@ interface BasePayment {
|
|
|
1466
1466
|
stripeId: string | null;
|
|
1467
1467
|
last4: string | null;
|
|
1468
1468
|
debugId: string | null;
|
|
1469
|
+
salesTax: number;
|
|
1470
|
+
salesTaxRate: string | null;
|
|
1471
|
+
country: string;
|
|
1472
|
+
state: string;
|
|
1473
|
+
zip: string;
|
|
1469
1474
|
createdAt: string;
|
|
1470
1475
|
}
|
|
1471
1476
|
declare enum PaymentIntegrationType {
|