@connectedxm/admin 6.21.2 → 6.22.1

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.cjs CHANGED
@@ -26134,6 +26134,7 @@ var UpdateBookingSpace = async ({
26134
26134
  ...bookingSpace,
26135
26135
  id: void 0,
26136
26136
  image: void 0,
26137
+ meeting: void 0,
26137
26138
  createdAt: void 0,
26138
26139
  updatedAt: void 0
26139
26140
  }
package/dist/index.d.cts CHANGED
@@ -2760,6 +2760,7 @@ interface Meeting extends BaseMeeting {
2760
2760
  session?: BaseEventSession;
2761
2761
  group?: BaseGroup;
2762
2762
  activity?: BaseActivity;
2763
+ bookingSpace?: BaseBookingSpace;
2763
2764
  updated_at: string;
2764
2765
  created_at: string;
2765
2766
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
@@ -3540,6 +3541,7 @@ interface BaseLogin {
3540
3541
  sub: string;
3541
3542
  userPoolId: string;
3542
3543
  username: string;
3544
+ provider: string;
3543
3545
  email: string;
3544
3546
  status: string;
3545
3547
  enabled: boolean;
@@ -3768,6 +3770,9 @@ interface BookingSpace extends BaseBookingSpace {
3768
3770
  confirmationReplyTo: string | null;
3769
3771
  cancellationBody: string | null;
3770
3772
  cancellationReplyTo: string | null;
3773
+ meetingId: string | null;
3774
+ meeting: BaseMeeting | null;
3775
+ joinBeforeTime: number | null;
3771
3776
  createdAt: string;
3772
3777
  updatedAt: string;
3773
3778
  }
@@ -6541,6 +6546,8 @@ interface BookingSpaceCreateInputs {
6541
6546
  taxCode?: string | null;
6542
6547
  taxIncluded?: boolean;
6543
6548
  taxLocation?: keyof typeof TaxLocationType;
6549
+ meetingId?: string | null;
6550
+ joinBeforeTime?: number | null;
6544
6551
  }
6545
6552
  interface BookingSpaceUpdateInputs {
6546
6553
  name?: string;
@@ -6559,6 +6566,8 @@ interface BookingSpaceUpdateInputs {
6559
6566
  taxCode?: string | null;
6560
6567
  taxIncluded?: boolean;
6561
6568
  taxLocation?: keyof typeof TaxLocationType;
6569
+ meetingId?: string | null;
6570
+ joinBeforeTime?: number | null;
6562
6571
  }
6563
6572
  interface BookingSpaceTranslationUpdateInputs {
6564
6573
  name?: string | null;
@@ -6928,6 +6937,8 @@ interface MeetingCreateInputs {
6928
6937
  sessionId?: string;
6929
6938
  groupId?: string;
6930
6939
  activityId?: string;
6940
+ bookingPlaceId?: string;
6941
+ bookingSpaceId?: string;
6931
6942
  title: string | null;
6932
6943
  preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6933
6944
  record_on_start: boolean;
@@ -6947,6 +6958,8 @@ interface MeetingUpdateInputs {
6947
6958
  sessionId?: string;
6948
6959
  groupId?: string;
6949
6960
  activityId?: string;
6961
+ bookingPlaceId?: string;
6962
+ bookingSpaceId?: string;
6950
6963
  title?: string | null;
6951
6964
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6952
6965
  record_on_start?: boolean;
package/dist/index.d.ts CHANGED
@@ -2760,6 +2760,7 @@ interface Meeting extends BaseMeeting {
2760
2760
  session?: BaseEventSession;
2761
2761
  group?: BaseGroup;
2762
2762
  activity?: BaseActivity;
2763
+ bookingSpace?: BaseBookingSpace;
2763
2764
  updated_at: string;
2764
2765
  created_at: string;
2765
2766
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
@@ -3540,6 +3541,7 @@ interface BaseLogin {
3540
3541
  sub: string;
3541
3542
  userPoolId: string;
3542
3543
  username: string;
3544
+ provider: string;
3543
3545
  email: string;
3544
3546
  status: string;
3545
3547
  enabled: boolean;
@@ -3768,6 +3770,9 @@ interface BookingSpace extends BaseBookingSpace {
3768
3770
  confirmationReplyTo: string | null;
3769
3771
  cancellationBody: string | null;
3770
3772
  cancellationReplyTo: string | null;
3773
+ meetingId: string | null;
3774
+ meeting: BaseMeeting | null;
3775
+ joinBeforeTime: number | null;
3771
3776
  createdAt: string;
3772
3777
  updatedAt: string;
3773
3778
  }
@@ -6541,6 +6546,8 @@ interface BookingSpaceCreateInputs {
6541
6546
  taxCode?: string | null;
6542
6547
  taxIncluded?: boolean;
6543
6548
  taxLocation?: keyof typeof TaxLocationType;
6549
+ meetingId?: string | null;
6550
+ joinBeforeTime?: number | null;
6544
6551
  }
6545
6552
  interface BookingSpaceUpdateInputs {
6546
6553
  name?: string;
@@ -6559,6 +6566,8 @@ interface BookingSpaceUpdateInputs {
6559
6566
  taxCode?: string | null;
6560
6567
  taxIncluded?: boolean;
6561
6568
  taxLocation?: keyof typeof TaxLocationType;
6569
+ meetingId?: string | null;
6570
+ joinBeforeTime?: number | null;
6562
6571
  }
6563
6572
  interface BookingSpaceTranslationUpdateInputs {
6564
6573
  name?: string | null;
@@ -6928,6 +6937,8 @@ interface MeetingCreateInputs {
6928
6937
  sessionId?: string;
6929
6938
  groupId?: string;
6930
6939
  activityId?: string;
6940
+ bookingPlaceId?: string;
6941
+ bookingSpaceId?: string;
6931
6942
  title: string | null;
6932
6943
  preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6933
6944
  record_on_start: boolean;
@@ -6947,6 +6958,8 @@ interface MeetingUpdateInputs {
6947
6958
  sessionId?: string;
6948
6959
  groupId?: string;
6949
6960
  activityId?: string;
6961
+ bookingPlaceId?: string;
6962
+ bookingSpaceId?: string;
6950
6963
  title?: string | null;
6951
6964
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6952
6965
  record_on_start?: boolean;
package/dist/index.js CHANGED
@@ -22690,6 +22690,7 @@ var UpdateBookingSpace = async ({
22690
22690
  ...bookingSpace,
22691
22691
  id: void 0,
22692
22692
  image: void 0,
22693
+ meeting: void 0,
22693
22694
  createdAt: void 0,
22694
22695
  updatedAt: void 0
22695
22696
  }
package/openapi.json CHANGED
@@ -99915,6 +99915,9 @@
99915
99915
  "activity": {
99916
99916
  "$ref": "#/components/schemas/BaseActivity"
99917
99917
  },
99918
+ "bookingSpace": {
99919
+ "$ref": "#/components/schemas/BaseBookingSpace"
99920
+ },
99918
99921
  "updated_at": {
99919
99922
  "type": "string"
99920
99923
  },
@@ -102839,6 +102842,9 @@
102839
102842
  "username": {
102840
102843
  "type": "string"
102841
102844
  },
102845
+ "provider": {
102846
+ "type": "string"
102847
+ },
102842
102848
  "email": {
102843
102849
  "type": "string"
102844
102850
  },
@@ -102872,6 +102878,7 @@
102872
102878
  "sub",
102873
102879
  "userPoolId",
102874
102880
  "username",
102881
+ "provider",
102875
102882
  "email",
102876
102883
  "status",
102877
102884
  "enabled",
@@ -103898,6 +103905,22 @@
103898
103905
  "type": "string",
103899
103906
  "nullable": true
103900
103907
  },
103908
+ "meetingId": {
103909
+ "type": "string",
103910
+ "nullable": true
103911
+ },
103912
+ "meeting": {
103913
+ "allOf": [
103914
+ {
103915
+ "$ref": "#/components/schemas/BaseMeeting"
103916
+ }
103917
+ ],
103918
+ "nullable": true
103919
+ },
103920
+ "joinBeforeTime": {
103921
+ "type": "number",
103922
+ "nullable": true
103923
+ },
103901
103924
  "createdAt": {
103902
103925
  "type": "string"
103903
103926
  },
@@ -103910,6 +103933,9 @@
103910
103933
  "confirmationReplyTo",
103911
103934
  "cancellationBody",
103912
103935
  "cancellationReplyTo",
103936
+ "meetingId",
103937
+ "meeting",
103938
+ "joinBeforeTime",
103913
103939
  "createdAt",
103914
103940
  "updatedAt"
103915
103941
  ]
@@ -115611,6 +115637,14 @@
115611
115637
  },
115612
115638
  "taxLocation": {
115613
115639
  "$ref": "#/components/schemas/TaxLocationType"
115640
+ },
115641
+ "meetingId": {
115642
+ "type": "string",
115643
+ "nullable": true
115644
+ },
115645
+ "joinBeforeTime": {
115646
+ "type": "number",
115647
+ "nullable": true
115614
115648
  }
115615
115649
  },
115616
115650
  "required": [
@@ -115700,6 +115734,14 @@
115700
115734
  },
115701
115735
  "taxLocation": {
115702
115736
  "$ref": "#/components/schemas/TaxLocationType"
115737
+ },
115738
+ "meetingId": {
115739
+ "type": "string",
115740
+ "nullable": true
115741
+ },
115742
+ "joinBeforeTime": {
115743
+ "type": "number",
115744
+ "nullable": true
115703
115745
  }
115704
115746
  }
115705
115747
  },
@@ -117177,6 +117219,12 @@
117177
117219
  "activityId": {
117178
117220
  "type": "string"
117179
117221
  },
117222
+ "bookingPlaceId": {
117223
+ "type": "string"
117224
+ },
117225
+ "bookingSpaceId": {
117226
+ "type": "string"
117227
+ },
117180
117228
  "title": {
117181
117229
  "type": "string",
117182
117230
  "nullable": true
@@ -117232,6 +117280,12 @@
117232
117280
  "activityId": {
117233
117281
  "type": "string"
117234
117282
  },
117283
+ "bookingPlaceId": {
117284
+ "type": "string"
117285
+ },
117286
+ "bookingSpaceId": {
117287
+ "type": "string"
117288
+ },
117235
117289
  "title": {
117236
117290
  "type": "string",
117237
117291
  "nullable": true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.21.2",
3
+ "version": "6.22.1",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",