@connectedxm/admin 2.8.17 → 2.8.19

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
@@ -1898,6 +1898,7 @@ interface BaseEventSession {
1898
1898
  image: BaseImage | null;
1899
1899
  startTime: string;
1900
1900
  endTime: string;
1901
+ registrationEnd?: string;
1901
1902
  tracks: BaseEventTrack[];
1902
1903
  nonSession: boolean;
1903
1904
  visible: boolean;
@@ -2203,6 +2204,7 @@ interface BaseStreamInput {
2203
2204
  name: string;
2204
2205
  cloudflareId: string | null;
2205
2206
  connected: boolean;
2207
+ public: boolean;
2206
2208
  eventId: string | null;
2207
2209
  event: {
2208
2210
  name: string;
@@ -4119,6 +4121,7 @@ interface EventSessionCreateInputs {
4119
4121
  name: string;
4120
4122
  startTime: string;
4121
4123
  endTime: string;
4124
+ registrationEnd?: string | null;
4122
4125
  slug?: string | null;
4123
4126
  description?: string | null;
4124
4127
  longDescription?: string | null;
@@ -4146,6 +4149,7 @@ interface EventSessionUpdateInputs {
4146
4149
  name?: string | null;
4147
4150
  startTime?: string | null;
4148
4151
  endTime?: string | null;
4152
+ registrationEnd?: string | null;
4149
4153
  slug?: string | null;
4150
4154
  description?: string | null;
4151
4155
  longDescription?: string | null;
@@ -4737,6 +4741,7 @@ interface StreamInputCreateInputs {
4737
4741
  sessionId?: string | null;
4738
4742
  details?: object | null;
4739
4743
  imageId?: string | null;
4744
+ public?: boolean;
4740
4745
  }
4741
4746
  interface StreamInputUpdateInputs {
4742
4747
  name?: string;
@@ -4746,6 +4751,7 @@ interface StreamInputUpdateInputs {
4746
4751
  details?: object | null;
4747
4752
  connected?: boolean;
4748
4753
  imageId?: string | null;
4754
+ public?: boolean;
4749
4755
  }
4750
4756
  interface StreamInputOutputCreateInputs {
4751
4757
  enabled: boolean;
package/dist/index.d.ts CHANGED
@@ -1898,6 +1898,7 @@ interface BaseEventSession {
1898
1898
  image: BaseImage | null;
1899
1899
  startTime: string;
1900
1900
  endTime: string;
1901
+ registrationEnd?: string;
1901
1902
  tracks: BaseEventTrack[];
1902
1903
  nonSession: boolean;
1903
1904
  visible: boolean;
@@ -2203,6 +2204,7 @@ interface BaseStreamInput {
2203
2204
  name: string;
2204
2205
  cloudflareId: string | null;
2205
2206
  connected: boolean;
2207
+ public: boolean;
2206
2208
  eventId: string | null;
2207
2209
  event: {
2208
2210
  name: string;
@@ -4119,6 +4121,7 @@ interface EventSessionCreateInputs {
4119
4121
  name: string;
4120
4122
  startTime: string;
4121
4123
  endTime: string;
4124
+ registrationEnd?: string | null;
4122
4125
  slug?: string | null;
4123
4126
  description?: string | null;
4124
4127
  longDescription?: string | null;
@@ -4146,6 +4149,7 @@ interface EventSessionUpdateInputs {
4146
4149
  name?: string | null;
4147
4150
  startTime?: string | null;
4148
4151
  endTime?: string | null;
4152
+ registrationEnd?: string | null;
4149
4153
  slug?: string | null;
4150
4154
  description?: string | null;
4151
4155
  longDescription?: string | null;
@@ -4737,6 +4741,7 @@ interface StreamInputCreateInputs {
4737
4741
  sessionId?: string | null;
4738
4742
  details?: object | null;
4739
4743
  imageId?: string | null;
4744
+ public?: boolean;
4740
4745
  }
4741
4746
  interface StreamInputUpdateInputs {
4742
4747
  name?: string;
@@ -4746,6 +4751,7 @@ interface StreamInputUpdateInputs {
4746
4751
  details?: object | null;
4747
4752
  connected?: boolean;
4748
4753
  imageId?: string | null;
4754
+ public?: boolean;
4749
4755
  }
4750
4756
  interface StreamInputOutputCreateInputs {
4751
4757
  enabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.8.17",
3
+ "version": "2.8.19",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",