@connectedxm/client 1.7.3 → 1.7.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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1140,6 +1140,7 @@ interface BasePayment {
|
|
|
1140
1140
|
salesTax: number;
|
|
1141
1141
|
salesTaxRate: string | null;
|
|
1142
1142
|
chargedAmt: number;
|
|
1143
|
+
currency: string;
|
|
1143
1144
|
last4: string | null;
|
|
1144
1145
|
stripeId: string | null;
|
|
1145
1146
|
createdAt: string;
|
|
@@ -1563,6 +1564,7 @@ interface BasePaymentIntent {
|
|
|
1563
1564
|
secret: string;
|
|
1564
1565
|
referenceId: string;
|
|
1565
1566
|
amount: number;
|
|
1567
|
+
currency: string;
|
|
1566
1568
|
metadata: Record<string, any>;
|
|
1567
1569
|
eventId: string | null;
|
|
1568
1570
|
registrationId: string | null;
|
|
@@ -1820,6 +1822,7 @@ interface OrganizationConfig {
|
|
|
1820
1822
|
PAYMENT: {
|
|
1821
1823
|
TYPE: PaymentIntegrationType | "none";
|
|
1822
1824
|
CONNECTION_ID: string | null;
|
|
1825
|
+
CURRENCY: string;
|
|
1823
1826
|
};
|
|
1824
1827
|
INTEGRATIONS: Integration[];
|
|
1825
1828
|
GOOGLE_SERVICES: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1140,6 +1140,7 @@ interface BasePayment {
|
|
|
1140
1140
|
salesTax: number;
|
|
1141
1141
|
salesTaxRate: string | null;
|
|
1142
1142
|
chargedAmt: number;
|
|
1143
|
+
currency: string;
|
|
1143
1144
|
last4: string | null;
|
|
1144
1145
|
stripeId: string | null;
|
|
1145
1146
|
createdAt: string;
|
|
@@ -1563,6 +1564,7 @@ interface BasePaymentIntent {
|
|
|
1563
1564
|
secret: string;
|
|
1564
1565
|
referenceId: string;
|
|
1565
1566
|
amount: number;
|
|
1567
|
+
currency: string;
|
|
1566
1568
|
metadata: Record<string, any>;
|
|
1567
1569
|
eventId: string | null;
|
|
1568
1570
|
registrationId: string | null;
|
|
@@ -1820,6 +1822,7 @@ interface OrganizationConfig {
|
|
|
1820
1822
|
PAYMENT: {
|
|
1821
1823
|
TYPE: PaymentIntegrationType | "none";
|
|
1822
1824
|
CONNECTION_ID: string | null;
|
|
1825
|
+
CURRENCY: string;
|
|
1823
1826
|
};
|
|
1824
1827
|
INTEGRATIONS: Integration[];
|
|
1825
1828
|
GOOGLE_SERVICES: string;
|