@connectedxm/admin 1.1.8 → 1.1.10

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
@@ -1715,6 +1715,7 @@ interface BaseEventSession {
1715
1715
  tracks: BaseEventTrack[];
1716
1716
  nonSession: boolean;
1717
1717
  visible: boolean;
1718
+ location: BaseEventSession | null;
1718
1719
  createdAt: string;
1719
1720
  updatedAt: string;
1720
1721
  }
@@ -1724,7 +1725,6 @@ interface EventSession extends BaseEventSession {
1724
1725
  event: BaseEvent;
1725
1726
  speakers: BaseEventSpeaker[];
1726
1727
  streamInput: BaseStreamInput | null;
1727
- location: BaseEventSession | null;
1728
1728
  }
1729
1729
  interface EventSessionTranslation {
1730
1730
  id: number;
@@ -3045,7 +3045,6 @@ interface EventSessionCreateInputs {
3045
3045
  startTime: string;
3046
3046
  endTime: string;
3047
3047
  slug?: string | null;
3048
- location?: string | null;
3049
3048
  description?: string | null;
3050
3049
  longDescription?: string | null;
3051
3050
  nonSession?: boolean;
@@ -3066,7 +3065,6 @@ interface EventSessionUpdateInputs {
3066
3065
  startTime?: string | null;
3067
3066
  endTime?: string | null;
3068
3067
  slug?: string | null;
3069
- location?: string | null;
3070
3068
  description?: string | null;
3071
3069
  longDescription?: string | null;
3072
3070
  nonSession?: boolean;
package/dist/index.d.ts CHANGED
@@ -1715,6 +1715,7 @@ interface BaseEventSession {
1715
1715
  tracks: BaseEventTrack[];
1716
1716
  nonSession: boolean;
1717
1717
  visible: boolean;
1718
+ location: BaseEventSession | null;
1718
1719
  createdAt: string;
1719
1720
  updatedAt: string;
1720
1721
  }
@@ -1724,7 +1725,6 @@ interface EventSession extends BaseEventSession {
1724
1725
  event: BaseEvent;
1725
1726
  speakers: BaseEventSpeaker[];
1726
1727
  streamInput: BaseStreamInput | null;
1727
- location: BaseEventSession | null;
1728
1728
  }
1729
1729
  interface EventSessionTranslation {
1730
1730
  id: number;
@@ -3045,7 +3045,6 @@ interface EventSessionCreateInputs {
3045
3045
  startTime: string;
3046
3046
  endTime: string;
3047
3047
  slug?: string | null;
3048
- location?: string | null;
3049
3048
  description?: string | null;
3050
3049
  longDescription?: string | null;
3051
3050
  nonSession?: boolean;
@@ -3066,7 +3065,6 @@ interface EventSessionUpdateInputs {
3066
3065
  startTime?: string | null;
3067
3066
  endTime?: string | null;
3068
3067
  slug?: string | null;
3069
- location?: string | null;
3070
3068
  description?: string | null;
3071
3069
  longDescription?: string | null;
3072
3070
  nonSession?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {