@connectedxm/client 1.7.2 → 1.7.4

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
@@ -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;
@@ -1762,7 +1763,6 @@ interface OrganizationConfig {
1762
1763
  API_URL: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev";
1763
1764
  OPENGRAPH_URL: "https://opengraph-api.connected.dev" | "https://staging-opengraph-api.connected.dev";
1764
1765
  CHAT_URL: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev";
1765
- SHOP_URL: string | null;
1766
1766
  APPLE_APPSTORE_LINK: string | null;
1767
1767
  GOOGLE_PLAYSTORE_LINK: string | null;
1768
1768
  NAME: string;
@@ -1821,6 +1821,7 @@ interface OrganizationConfig {
1821
1821
  PAYMENT: {
1822
1822
  TYPE: PaymentIntegrationType | "none";
1823
1823
  CONNECTION_ID: string | null;
1824
+ CURRENCY: string;
1824
1825
  };
1825
1826
  INTEGRATIONS: Integration[];
1826
1827
  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;
@@ -1762,7 +1763,6 @@ interface OrganizationConfig {
1762
1763
  API_URL: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev";
1763
1764
  OPENGRAPH_URL: "https://opengraph-api.connected.dev" | "https://staging-opengraph-api.connected.dev";
1764
1765
  CHAT_URL: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev";
1765
- SHOP_URL: string | null;
1766
1766
  APPLE_APPSTORE_LINK: string | null;
1767
1767
  GOOGLE_PLAYSTORE_LINK: string | null;
1768
1768
  NAME: string;
@@ -1821,6 +1821,7 @@ interface OrganizationConfig {
1821
1821
  PAYMENT: {
1822
1822
  TYPE: PaymentIntegrationType | "none";
1823
1823
  CONNECTION_ID: string | null;
1824
+ CURRENCY: string;
1824
1825
  };
1825
1826
  INTEGRATIONS: Integration[];
1826
1827
  GOOGLE_SERVICES: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {