@connectedxm/admin 2.8.23 → 2.8.25

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;
@@ -1905,6 +1906,7 @@ interface BaseEventSession {
1905
1906
  startTime: string;
1906
1907
  endTime: string;
1907
1908
  registrationEnd?: string;
1909
+ allowQuickRegister: boolean;
1908
1910
  tracks: BaseEventTrack[];
1909
1911
  nonSession: boolean;
1910
1912
  visible: boolean;
@@ -4043,6 +4045,7 @@ interface EventCreateInputs {
4043
4045
  passLimitPerAccount?: string | number | null;
4044
4046
  roundName?: string | null;
4045
4047
  matchName?: string | null;
4048
+ activityFeedEnabled?: boolean;
4046
4049
  }
4047
4050
  interface EventEmailUpdateInputs {
4048
4051
  body?: string | null;
@@ -4140,6 +4143,7 @@ interface EventSessionCreateInputs {
4140
4143
  visible?: boolean;
4141
4144
  sortOrder?: number | string | null;
4142
4145
  registrationEnabled?: boolean;
4146
+ allowQuickRegister?: boolean;
4143
4147
  limit?: number | string | null;
4144
4148
  price?: number | string | null;
4145
4149
  locationId?: string | null;
@@ -4168,6 +4172,7 @@ interface EventSessionUpdateInputs {
4168
4172
  visible?: boolean;
4169
4173
  sortOrder?: number | string | null;
4170
4174
  registrationEnabled?: boolean;
4175
+ allowQuickRegister?: boolean;
4171
4176
  limit?: number | string | null;
4172
4177
  price?: number | string | null;
4173
4178
  locationId?: string | null;
@@ -4405,6 +4410,7 @@ interface EventUpdateInputs {
4405
4410
  passLimitPerAccount?: string | number | null;
4406
4411
  roundName?: string | null;
4407
4412
  matchName?: string | null;
4413
+ activityFeedEnabled?: boolean;
4408
4414
  }
4409
4415
  interface FileUpdateInputs {
4410
4416
  name?: string;
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;
@@ -1905,6 +1906,7 @@ interface BaseEventSession {
1905
1906
  startTime: string;
1906
1907
  endTime: string;
1907
1908
  registrationEnd?: string;
1909
+ allowQuickRegister: boolean;
1908
1910
  tracks: BaseEventTrack[];
1909
1911
  nonSession: boolean;
1910
1912
  visible: boolean;
@@ -4043,6 +4045,7 @@ interface EventCreateInputs {
4043
4045
  passLimitPerAccount?: string | number | null;
4044
4046
  roundName?: string | null;
4045
4047
  matchName?: string | null;
4048
+ activityFeedEnabled?: boolean;
4046
4049
  }
4047
4050
  interface EventEmailUpdateInputs {
4048
4051
  body?: string | null;
@@ -4140,6 +4143,7 @@ interface EventSessionCreateInputs {
4140
4143
  visible?: boolean;
4141
4144
  sortOrder?: number | string | null;
4142
4145
  registrationEnabled?: boolean;
4146
+ allowQuickRegister?: boolean;
4143
4147
  limit?: number | string | null;
4144
4148
  price?: number | string | null;
4145
4149
  locationId?: string | null;
@@ -4168,6 +4172,7 @@ interface EventSessionUpdateInputs {
4168
4172
  visible?: boolean;
4169
4173
  sortOrder?: number | string | null;
4170
4174
  registrationEnabled?: boolean;
4175
+ allowQuickRegister?: boolean;
4171
4176
  limit?: number | string | null;
4172
4177
  price?: number | string | null;
4173
4178
  locationId?: string | null;
@@ -4405,6 +4410,7 @@ interface EventUpdateInputs {
4405
4410
  passLimitPerAccount?: string | number | null;
4406
4411
  roundName?: string | null;
4407
4412
  matchName?: string | null;
4413
+ activityFeedEnabled?: boolean;
4408
4414
  }
4409
4415
  interface FileUpdateInputs {
4410
4416
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.8.23",
3
+ "version": "2.8.25",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",