@connectedxm/admin 6.21.1 → 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 +1 -0
- package/dist/index.d.cts +16 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.js +1 -0
- package/openapi.json +66 -7
- package/package.json +1 -1
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;
|
|
@@ -3547,10 +3549,11 @@ interface BaseLogin {
|
|
|
3547
3549
|
firstName: string | null;
|
|
3548
3550
|
lastName: string | null;
|
|
3549
3551
|
internalRefId: string | null;
|
|
3550
|
-
|
|
3551
|
-
updatedAt: string;
|
|
3552
|
+
lastLoginAt: string | null;
|
|
3552
3553
|
}
|
|
3553
3554
|
interface Login extends BaseLogin {
|
|
3555
|
+
createdAt: string;
|
|
3556
|
+
updatedAt: string;
|
|
3554
3557
|
_count: {
|
|
3555
3558
|
accounts: number;
|
|
3556
3559
|
devices: number;
|
|
@@ -3767,6 +3770,9 @@ interface BookingSpace extends BaseBookingSpace {
|
|
|
3767
3770
|
confirmationReplyTo: string | null;
|
|
3768
3771
|
cancellationBody: string | null;
|
|
3769
3772
|
cancellationReplyTo: string | null;
|
|
3773
|
+
meetingId: string | null;
|
|
3774
|
+
meeting: BaseMeeting | null;
|
|
3775
|
+
joinBeforeTime: number | null;
|
|
3770
3776
|
createdAt: string;
|
|
3771
3777
|
updatedAt: string;
|
|
3772
3778
|
}
|
|
@@ -6540,6 +6546,8 @@ interface BookingSpaceCreateInputs {
|
|
|
6540
6546
|
taxCode?: string | null;
|
|
6541
6547
|
taxIncluded?: boolean;
|
|
6542
6548
|
taxLocation?: keyof typeof TaxLocationType;
|
|
6549
|
+
meetingId?: string | null;
|
|
6550
|
+
joinBeforeTime?: number | null;
|
|
6543
6551
|
}
|
|
6544
6552
|
interface BookingSpaceUpdateInputs {
|
|
6545
6553
|
name?: string;
|
|
@@ -6558,6 +6566,8 @@ interface BookingSpaceUpdateInputs {
|
|
|
6558
6566
|
taxCode?: string | null;
|
|
6559
6567
|
taxIncluded?: boolean;
|
|
6560
6568
|
taxLocation?: keyof typeof TaxLocationType;
|
|
6569
|
+
meetingId?: string | null;
|
|
6570
|
+
joinBeforeTime?: number | null;
|
|
6561
6571
|
}
|
|
6562
6572
|
interface BookingSpaceTranslationUpdateInputs {
|
|
6563
6573
|
name?: string | null;
|
|
@@ -6927,6 +6937,8 @@ interface MeetingCreateInputs {
|
|
|
6927
6937
|
sessionId?: string;
|
|
6928
6938
|
groupId?: string;
|
|
6929
6939
|
activityId?: string;
|
|
6940
|
+
bookingPlaceId?: string;
|
|
6941
|
+
bookingSpaceId?: string;
|
|
6930
6942
|
title: string | null;
|
|
6931
6943
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6932
6944
|
record_on_start: boolean;
|
|
@@ -6946,6 +6958,8 @@ interface MeetingUpdateInputs {
|
|
|
6946
6958
|
sessionId?: string;
|
|
6947
6959
|
groupId?: string;
|
|
6948
6960
|
activityId?: string;
|
|
6961
|
+
bookingPlaceId?: string;
|
|
6962
|
+
bookingSpaceId?: string;
|
|
6949
6963
|
title?: string | null;
|
|
6950
6964
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6951
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;
|
|
@@ -3547,10 +3549,11 @@ interface BaseLogin {
|
|
|
3547
3549
|
firstName: string | null;
|
|
3548
3550
|
lastName: string | null;
|
|
3549
3551
|
internalRefId: string | null;
|
|
3550
|
-
|
|
3551
|
-
updatedAt: string;
|
|
3552
|
+
lastLoginAt: string | null;
|
|
3552
3553
|
}
|
|
3553
3554
|
interface Login extends BaseLogin {
|
|
3555
|
+
createdAt: string;
|
|
3556
|
+
updatedAt: string;
|
|
3554
3557
|
_count: {
|
|
3555
3558
|
accounts: number;
|
|
3556
3559
|
devices: number;
|
|
@@ -3767,6 +3770,9 @@ interface BookingSpace extends BaseBookingSpace {
|
|
|
3767
3770
|
confirmationReplyTo: string | null;
|
|
3768
3771
|
cancellationBody: string | null;
|
|
3769
3772
|
cancellationReplyTo: string | null;
|
|
3773
|
+
meetingId: string | null;
|
|
3774
|
+
meeting: BaseMeeting | null;
|
|
3775
|
+
joinBeforeTime: number | null;
|
|
3770
3776
|
createdAt: string;
|
|
3771
3777
|
updatedAt: string;
|
|
3772
3778
|
}
|
|
@@ -6540,6 +6546,8 @@ interface BookingSpaceCreateInputs {
|
|
|
6540
6546
|
taxCode?: string | null;
|
|
6541
6547
|
taxIncluded?: boolean;
|
|
6542
6548
|
taxLocation?: keyof typeof TaxLocationType;
|
|
6549
|
+
meetingId?: string | null;
|
|
6550
|
+
joinBeforeTime?: number | null;
|
|
6543
6551
|
}
|
|
6544
6552
|
interface BookingSpaceUpdateInputs {
|
|
6545
6553
|
name?: string;
|
|
@@ -6558,6 +6566,8 @@ interface BookingSpaceUpdateInputs {
|
|
|
6558
6566
|
taxCode?: string | null;
|
|
6559
6567
|
taxIncluded?: boolean;
|
|
6560
6568
|
taxLocation?: keyof typeof TaxLocationType;
|
|
6569
|
+
meetingId?: string | null;
|
|
6570
|
+
joinBeforeTime?: number | null;
|
|
6561
6571
|
}
|
|
6562
6572
|
interface BookingSpaceTranslationUpdateInputs {
|
|
6563
6573
|
name?: string | null;
|
|
@@ -6927,6 +6937,8 @@ interface MeetingCreateInputs {
|
|
|
6927
6937
|
sessionId?: string;
|
|
6928
6938
|
groupId?: string;
|
|
6929
6939
|
activityId?: string;
|
|
6940
|
+
bookingPlaceId?: string;
|
|
6941
|
+
bookingSpaceId?: string;
|
|
6930
6942
|
title: string | null;
|
|
6931
6943
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6932
6944
|
record_on_start: boolean;
|
|
@@ -6946,6 +6958,8 @@ interface MeetingUpdateInputs {
|
|
|
6946
6958
|
sessionId?: string;
|
|
6947
6959
|
groupId?: string;
|
|
6948
6960
|
activityId?: string;
|
|
6961
|
+
bookingPlaceId?: string;
|
|
6962
|
+
bookingSpaceId?: string;
|
|
6949
6963
|
title?: string | null;
|
|
6950
6964
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6951
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
|
},
|
|
@@ -102863,17 +102869,16 @@
|
|
|
102863
102869
|
"type": "string",
|
|
102864
102870
|
"nullable": true
|
|
102865
102871
|
},
|
|
102866
|
-
"
|
|
102867
|
-
"type": "string"
|
|
102868
|
-
|
|
102869
|
-
"updatedAt": {
|
|
102870
|
-
"type": "string"
|
|
102872
|
+
"lastLoginAt": {
|
|
102873
|
+
"type": "string",
|
|
102874
|
+
"nullable": true
|
|
102871
102875
|
}
|
|
102872
102876
|
},
|
|
102873
102877
|
"required": [
|
|
102874
102878
|
"sub",
|
|
102875
102879
|
"userPoolId",
|
|
102876
102880
|
"username",
|
|
102881
|
+
"provider",
|
|
102877
102882
|
"email",
|
|
102878
102883
|
"status",
|
|
102879
102884
|
"enabled",
|
|
@@ -102881,8 +102886,7 @@
|
|
|
102881
102886
|
"firstName",
|
|
102882
102887
|
"lastName",
|
|
102883
102888
|
"internalRefId",
|
|
102884
|
-
"
|
|
102885
|
-
"updatedAt"
|
|
102889
|
+
"lastLoginAt"
|
|
102886
102890
|
]
|
|
102887
102891
|
},
|
|
102888
102892
|
"Login": {
|
|
@@ -102893,6 +102897,12 @@
|
|
|
102893
102897
|
{
|
|
102894
102898
|
"type": "object",
|
|
102895
102899
|
"properties": {
|
|
102900
|
+
"createdAt": {
|
|
102901
|
+
"type": "string"
|
|
102902
|
+
},
|
|
102903
|
+
"updatedAt": {
|
|
102904
|
+
"type": "string"
|
|
102905
|
+
},
|
|
102896
102906
|
"_count": {
|
|
102897
102907
|
"type": "object",
|
|
102898
102908
|
"properties": {
|
|
@@ -102910,6 +102920,8 @@
|
|
|
102910
102920
|
}
|
|
102911
102921
|
},
|
|
102912
102922
|
"required": [
|
|
102923
|
+
"createdAt",
|
|
102924
|
+
"updatedAt",
|
|
102913
102925
|
"_count"
|
|
102914
102926
|
]
|
|
102915
102927
|
}
|
|
@@ -103893,6 +103905,22 @@
|
|
|
103893
103905
|
"type": "string",
|
|
103894
103906
|
"nullable": true
|
|
103895
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
|
+
},
|
|
103896
103924
|
"createdAt": {
|
|
103897
103925
|
"type": "string"
|
|
103898
103926
|
},
|
|
@@ -103905,6 +103933,9 @@
|
|
|
103905
103933
|
"confirmationReplyTo",
|
|
103906
103934
|
"cancellationBody",
|
|
103907
103935
|
"cancellationReplyTo",
|
|
103936
|
+
"meetingId",
|
|
103937
|
+
"meeting",
|
|
103938
|
+
"joinBeforeTime",
|
|
103908
103939
|
"createdAt",
|
|
103909
103940
|
"updatedAt"
|
|
103910
103941
|
]
|
|
@@ -115606,6 +115637,14 @@
|
|
|
115606
115637
|
},
|
|
115607
115638
|
"taxLocation": {
|
|
115608
115639
|
"$ref": "#/components/schemas/TaxLocationType"
|
|
115640
|
+
},
|
|
115641
|
+
"meetingId": {
|
|
115642
|
+
"type": "string",
|
|
115643
|
+
"nullable": true
|
|
115644
|
+
},
|
|
115645
|
+
"joinBeforeTime": {
|
|
115646
|
+
"type": "number",
|
|
115647
|
+
"nullable": true
|
|
115609
115648
|
}
|
|
115610
115649
|
},
|
|
115611
115650
|
"required": [
|
|
@@ -115695,6 +115734,14 @@
|
|
|
115695
115734
|
},
|
|
115696
115735
|
"taxLocation": {
|
|
115697
115736
|
"$ref": "#/components/schemas/TaxLocationType"
|
|
115737
|
+
},
|
|
115738
|
+
"meetingId": {
|
|
115739
|
+
"type": "string",
|
|
115740
|
+
"nullable": true
|
|
115741
|
+
},
|
|
115742
|
+
"joinBeforeTime": {
|
|
115743
|
+
"type": "number",
|
|
115744
|
+
"nullable": true
|
|
115698
115745
|
}
|
|
115699
115746
|
}
|
|
115700
115747
|
},
|
|
@@ -117172,6 +117219,12 @@
|
|
|
117172
117219
|
"activityId": {
|
|
117173
117220
|
"type": "string"
|
|
117174
117221
|
},
|
|
117222
|
+
"bookingPlaceId": {
|
|
117223
|
+
"type": "string"
|
|
117224
|
+
},
|
|
117225
|
+
"bookingSpaceId": {
|
|
117226
|
+
"type": "string"
|
|
117227
|
+
},
|
|
117175
117228
|
"title": {
|
|
117176
117229
|
"type": "string",
|
|
117177
117230
|
"nullable": true
|
|
@@ -117227,6 +117280,12 @@
|
|
|
117227
117280
|
"activityId": {
|
|
117228
117281
|
"type": "string"
|
|
117229
117282
|
},
|
|
117283
|
+
"bookingPlaceId": {
|
|
117284
|
+
"type": "string"
|
|
117285
|
+
},
|
|
117286
|
+
"bookingSpaceId": {
|
|
117287
|
+
"type": "string"
|
|
117288
|
+
},
|
|
117230
117289
|
"title": {
|
|
117231
117290
|
"type": "string",
|
|
117232
117291
|
"nullable": true
|