@connectedxm/client 7.5.9 → 7.6.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -450,6 +450,7 @@ interface Event extends BaseEvent {
450
450
  }
451
451
  declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
452
452
  interface RegistrationEventDetails extends BaseEvent {
453
+ externalMeetingUrl: string | null;
453
454
  reservationDescription: string | null;
454
455
  externalUrl: string | null;
455
456
  registration: boolean;
@@ -582,6 +583,7 @@ interface RegistrationFollowup extends BaseRegistrationFollowup {
582
583
  }
583
584
  interface EventListing extends Event {
584
585
  visible: boolean;
586
+ externalMeetingUrl: string | null;
585
587
  newActivityCreatorEmailNotification: boolean;
586
588
  newActivityCreatorPushNotification: boolean;
587
589
  registrationLimit: number;
@@ -3739,6 +3741,7 @@ interface CreateListingInput {
3739
3741
  zip?: string;
3740
3742
  country?: string;
3741
3743
  externalUrl?: string;
3744
+ externalMeetingUrl?: string;
3742
3745
  registration?: boolean;
3743
3746
  registrationLimit?: number | null;
3744
3747
  groupOnly?: boolean;
@@ -3841,6 +3844,7 @@ interface UpdateListingValues {
3841
3844
  zip?: string | null;
3842
3845
  country?: string | null;
3843
3846
  externalUrl?: string | null;
3847
+ externalMeetingUrl?: string | null;
3844
3848
  registration?: boolean;
3845
3849
  publicRegistrants?: boolean;
3846
3850
  registrationLimit?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.5.9",
3
+ "version": "7.6.0",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",