@connectedxm/admin 2.8.24 → 2.9.0

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
@@ -919,6 +919,7 @@ interface Event extends BaseEvent {
919
919
  groupOnly: boolean;
920
920
  backgroundImageId: string | null;
921
921
  backgroundImage: BaseImage | null;
922
+ activityFeedEnabled: boolean;
922
923
  }
923
924
  interface EventTranslation {
924
925
  id: number;
@@ -2212,18 +2213,17 @@ interface BaseStreamInput {
2212
2213
  cloudflareId: string | null;
2213
2214
  connected: boolean;
2214
2215
  public: boolean;
2216
+ sessionId: string | null;
2215
2217
  eventId: string | null;
2216
- event: {
2217
- name: string;
2218
- } | null;
2218
+ groupId: string | null;
2219
2219
  imageId: string | null;
2220
2220
  image: BaseImage | null;
2221
2221
  }
2222
2222
  interface StreamInput extends BaseStreamInput {
2223
2223
  sortOrder: number;
2224
2224
  event: BaseEvent | null;
2225
- sessionId: string | null;
2226
2225
  session: BaseEventSession | null;
2226
+ group: BaseGroup | null;
2227
2227
  details?: StreamInputDetails;
2228
2228
  threads: BaseThread[];
2229
2229
  createdAt: string;
@@ -4044,6 +4044,7 @@ interface EventCreateInputs {
4044
4044
  passLimitPerAccount?: string | number | null;
4045
4045
  roundName?: string | null;
4046
4046
  matchName?: string | null;
4047
+ activityFeedEnabled?: boolean;
4047
4048
  }
4048
4049
  interface EventEmailUpdateInputs {
4049
4050
  body?: string | null;
@@ -4408,6 +4409,7 @@ interface EventUpdateInputs {
4408
4409
  passLimitPerAccount?: string | number | null;
4409
4410
  roundName?: string | null;
4410
4411
  matchName?: string | null;
4412
+ activityFeedEnabled?: boolean;
4411
4413
  }
4412
4414
  interface FileUpdateInputs {
4413
4415
  name?: string;
@@ -4752,6 +4754,7 @@ interface StreamInputCreateInputs {
4752
4754
  sortOrder?: number | string | null;
4753
4755
  eventId?: string | null;
4754
4756
  sessionId?: string | null;
4757
+ groupId?: string | null;
4755
4758
  details?: object | null;
4756
4759
  imageId?: string | null;
4757
4760
  public?: boolean;
@@ -4761,6 +4764,7 @@ interface StreamInputUpdateInputs {
4761
4764
  sortOrder?: number | string | null;
4762
4765
  eventId?: string | null;
4763
4766
  sessionId?: string | null;
4767
+ groupId?: string | null;
4764
4768
  details?: object | null;
4765
4769
  connected?: boolean;
4766
4770
  imageId?: string | null;
package/dist/index.d.ts CHANGED
@@ -919,6 +919,7 @@ interface Event extends BaseEvent {
919
919
  groupOnly: boolean;
920
920
  backgroundImageId: string | null;
921
921
  backgroundImage: BaseImage | null;
922
+ activityFeedEnabled: boolean;
922
923
  }
923
924
  interface EventTranslation {
924
925
  id: number;
@@ -2212,18 +2213,17 @@ interface BaseStreamInput {
2212
2213
  cloudflareId: string | null;
2213
2214
  connected: boolean;
2214
2215
  public: boolean;
2216
+ sessionId: string | null;
2215
2217
  eventId: string | null;
2216
- event: {
2217
- name: string;
2218
- } | null;
2218
+ groupId: string | null;
2219
2219
  imageId: string | null;
2220
2220
  image: BaseImage | null;
2221
2221
  }
2222
2222
  interface StreamInput extends BaseStreamInput {
2223
2223
  sortOrder: number;
2224
2224
  event: BaseEvent | null;
2225
- sessionId: string | null;
2226
2225
  session: BaseEventSession | null;
2226
+ group: BaseGroup | null;
2227
2227
  details?: StreamInputDetails;
2228
2228
  threads: BaseThread[];
2229
2229
  createdAt: string;
@@ -4044,6 +4044,7 @@ interface EventCreateInputs {
4044
4044
  passLimitPerAccount?: string | number | null;
4045
4045
  roundName?: string | null;
4046
4046
  matchName?: string | null;
4047
+ activityFeedEnabled?: boolean;
4047
4048
  }
4048
4049
  interface EventEmailUpdateInputs {
4049
4050
  body?: string | null;
@@ -4408,6 +4409,7 @@ interface EventUpdateInputs {
4408
4409
  passLimitPerAccount?: string | number | null;
4409
4410
  roundName?: string | null;
4410
4411
  matchName?: string | null;
4412
+ activityFeedEnabled?: boolean;
4411
4413
  }
4412
4414
  interface FileUpdateInputs {
4413
4415
  name?: string;
@@ -4752,6 +4754,7 @@ interface StreamInputCreateInputs {
4752
4754
  sortOrder?: number | string | null;
4753
4755
  eventId?: string | null;
4754
4756
  sessionId?: string | null;
4757
+ groupId?: string | null;
4755
4758
  details?: object | null;
4756
4759
  imageId?: string | null;
4757
4760
  public?: boolean;
@@ -4761,6 +4764,7 @@ interface StreamInputUpdateInputs {
4761
4764
  sortOrder?: number | string | null;
4762
4765
  eventId?: string | null;
4763
4766
  sessionId?: string | null;
4767
+ groupId?: string | null;
4764
4768
  details?: object | null;
4765
4769
  connected?: boolean;
4766
4770
  imageId?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.8.24",
3
+ "version": "2.9.0",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",