@connectedxm/admin 2.3.10 → 2.3.12

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
@@ -839,7 +839,6 @@ interface BaseEvent {
839
839
  internalRefId: string | null;
840
840
  featured: boolean;
841
841
  visible: boolean;
842
- approved: boolean;
843
842
  source: EventSource;
844
843
  eventType: EventType;
845
844
  name: string;
@@ -1645,7 +1644,7 @@ interface BaseRegistrationQuestionResponseChange {
1645
1644
  }
1646
1645
  interface RegistrationQuestionResponseChange extends BaseRegistrationQuestionResponseChange {
1647
1646
  response: BaseRegistrationQuestionResponse;
1648
- user: BaseUser;
1647
+ user: BaseUser | null;
1649
1648
  }
1650
1649
  interface BaseRegistrationQuestionResponse {
1651
1650
  id: string;
@@ -3848,7 +3847,6 @@ interface EventCreateInputs {
3848
3847
  zip?: string | null;
3849
3848
  creatorId?: string | null;
3850
3849
  seriesId?: string | null;
3851
- approved?: boolean;
3852
3850
  meetingUrl?: string | null;
3853
3851
  registration?: boolean;
3854
3852
  registrationStart?: string | null;
@@ -4211,7 +4209,6 @@ interface EventUpdateInputs {
4211
4209
  zip?: string | null;
4212
4210
  creatorId?: string | null;
4213
4211
  seriesId?: string | null;
4214
- approved?: boolean;
4215
4212
  meetingUrl?: string | null;
4216
4213
  registration?: boolean;
4217
4214
  registrationStart?: string | null;
package/dist/index.d.ts CHANGED
@@ -839,7 +839,6 @@ interface BaseEvent {
839
839
  internalRefId: string | null;
840
840
  featured: boolean;
841
841
  visible: boolean;
842
- approved: boolean;
843
842
  source: EventSource;
844
843
  eventType: EventType;
845
844
  name: string;
@@ -1645,7 +1644,7 @@ interface BaseRegistrationQuestionResponseChange {
1645
1644
  }
1646
1645
  interface RegistrationQuestionResponseChange extends BaseRegistrationQuestionResponseChange {
1647
1646
  response: BaseRegistrationQuestionResponse;
1648
- user: BaseUser;
1647
+ user: BaseUser | null;
1649
1648
  }
1650
1649
  interface BaseRegistrationQuestionResponse {
1651
1650
  id: string;
@@ -3848,7 +3847,6 @@ interface EventCreateInputs {
3848
3847
  zip?: string | null;
3849
3848
  creatorId?: string | null;
3850
3849
  seriesId?: string | null;
3851
- approved?: boolean;
3852
3850
  meetingUrl?: string | null;
3853
3851
  registration?: boolean;
3854
3852
  registrationStart?: string | null;
@@ -4211,7 +4209,6 @@ interface EventUpdateInputs {
4211
4209
  zip?: string | null;
4212
4210
  creatorId?: string | null;
4213
4211
  seriesId?: string | null;
4214
- approved?: boolean;
4215
4212
  meetingUrl?: string | null;
4216
4213
  registration?: boolean;
4217
4214
  registrationStart?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.3.10",
3
+ "version": "2.3.12",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",