@connectedxm/client 7.2.15 → 7.2.16

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1194,6 +1194,13 @@ interface BaseAdvertisement {
1194
1194
  interface Advertisement extends BaseAdvertisement {
1195
1195
  title: string;
1196
1196
  description: string | null;
1197
+ account: {
1198
+ id: string;
1199
+ firstName: string;
1200
+ lastName: string;
1201
+ username: string;
1202
+ image: BaseImage | null;
1203
+ };
1197
1204
  }
1198
1205
  declare const isTypeAdvertisement: (advertisement: BaseAdvertisement | Advertisement) => advertisement is Advertisement;
1199
1206
  interface AdvertisementClick {
@@ -2061,6 +2068,7 @@ interface OrganizationConfig {
2061
2068
  CONNECTION_ID: string | null;
2062
2069
  PUBLIC_KEY: string | null;
2063
2070
  CURRENCY: string;
2071
+ CURRENCY_DISPLAY: "symbol" | "code";
2064
2072
  };
2065
2073
  INTEGRATIONS: Integration[];
2066
2074
  ATTRIBUTES: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.2.15",
3
+ "version": "7.2.16",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",