@connectedxm/client 3.0.2 → 3.0.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.cts CHANGED
@@ -268,6 +268,7 @@ interface BaseGroup {
268
268
  slug: string;
269
269
  name: string;
270
270
  image: BaseImage | null;
271
+ squareImage: BaseImage | null;
271
272
  access: GroupAccess;
272
273
  }
273
274
  interface Group extends BaseGroup {
@@ -290,6 +291,7 @@ interface BaseEvent {
290
291
  eventStart: string;
291
292
  eventEnd: string;
292
293
  image: BaseImage | null;
294
+ squareImage: BaseImage | null;
293
295
  }
294
296
  declare enum EventSource {
295
297
  admin = "admin",
@@ -1095,6 +1097,7 @@ interface BaseContent {
1095
1097
  description: string | null;
1096
1098
  imageUrl: string | null;
1097
1099
  image: BaseImage | null;
1100
+ squareImage: BaseImage | null;
1098
1101
  audio: BaseFile | null;
1099
1102
  video: BaseVideo | null;
1100
1103
  duration: string | null;
@@ -1797,6 +1800,7 @@ interface OrganizationConfig {
1797
1800
  PRIMARY_MODULE: PrimaryModule;
1798
1801
  PRIMARY_COLOR: string;
1799
1802
  SECONDARY_COLOR: string;
1803
+ CLIENT_THEME: string;
1800
1804
  LOGO: {
1801
1805
  LIGHT: string;
1802
1806
  DARK?: string;
package/dist/index.d.ts CHANGED
@@ -268,6 +268,7 @@ interface BaseGroup {
268
268
  slug: string;
269
269
  name: string;
270
270
  image: BaseImage | null;
271
+ squareImage: BaseImage | null;
271
272
  access: GroupAccess;
272
273
  }
273
274
  interface Group extends BaseGroup {
@@ -290,6 +291,7 @@ interface BaseEvent {
290
291
  eventStart: string;
291
292
  eventEnd: string;
292
293
  image: BaseImage | null;
294
+ squareImage: BaseImage | null;
293
295
  }
294
296
  declare enum EventSource {
295
297
  admin = "admin",
@@ -1095,6 +1097,7 @@ interface BaseContent {
1095
1097
  description: string | null;
1096
1098
  imageUrl: string | null;
1097
1099
  image: BaseImage | null;
1100
+ squareImage: BaseImage | null;
1098
1101
  audio: BaseFile | null;
1099
1102
  video: BaseVideo | null;
1100
1103
  duration: string | null;
@@ -1797,6 +1800,7 @@ interface OrganizationConfig {
1797
1800
  PRIMARY_MODULE: PrimaryModule;
1798
1801
  PRIMARY_COLOR: string;
1799
1802
  SECONDARY_COLOR: string;
1803
+ CLIENT_THEME: string;
1800
1804
  LOGO: {
1801
1805
  LIGHT: string;
1802
1806
  DARK?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",