@connectedxm/admin 7.2.0 → 7.2.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.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/openapi.json +49 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1483,6 +1483,7 @@ interface NotificationPreferences {
|
|
|
1483
1483
|
transferPush: boolean;
|
|
1484
1484
|
transferEmail: boolean;
|
|
1485
1485
|
eventReminderEmail: boolean;
|
|
1486
|
+
bookingReminderEmail: boolean;
|
|
1486
1487
|
chatPush: boolean;
|
|
1487
1488
|
chatUnreadEmail: boolean;
|
|
1488
1489
|
chatUnreadPush: boolean;
|
|
@@ -3798,6 +3799,9 @@ interface BookingSpace extends BaseBookingSpace {
|
|
|
3798
3799
|
confirmationReplyTo: string | null;
|
|
3799
3800
|
cancellationBody: string | null;
|
|
3800
3801
|
cancellationReplyTo: string | null;
|
|
3802
|
+
reminderBody: string | null;
|
|
3803
|
+
reminderReplyTo: string | null;
|
|
3804
|
+
reminderEnabled: boolean;
|
|
3801
3805
|
meetingId: string | null;
|
|
3802
3806
|
meeting: BaseMeeting | null;
|
|
3803
3807
|
joinBeforeTime: number | null;
|
|
@@ -3820,6 +3824,7 @@ interface BookingSpaceTranslation {
|
|
|
3820
3824
|
description: string | null;
|
|
3821
3825
|
confirmationBody: string | null;
|
|
3822
3826
|
cancellationBody: string | null;
|
|
3827
|
+
reminderBody: string | null;
|
|
3823
3828
|
createdAt: string;
|
|
3824
3829
|
updatedAt: string;
|
|
3825
3830
|
}
|
|
@@ -6699,6 +6704,9 @@ interface BookingSpaceCreateInputs {
|
|
|
6699
6704
|
confirmationReplyTo?: string | null;
|
|
6700
6705
|
cancellationBody?: string | null;
|
|
6701
6706
|
cancellationReplyTo?: string | null;
|
|
6707
|
+
reminderBody?: string | null;
|
|
6708
|
+
reminderReplyTo?: string | null;
|
|
6709
|
+
reminderEnabled?: boolean;
|
|
6702
6710
|
taxCode?: string | null;
|
|
6703
6711
|
taxIncluded?: boolean;
|
|
6704
6712
|
taxLocation?: keyof typeof TaxLocationType;
|
|
@@ -6719,6 +6727,9 @@ interface BookingSpaceUpdateInputs {
|
|
|
6719
6727
|
confirmationReplyTo?: string | null;
|
|
6720
6728
|
cancellationBody?: string | null;
|
|
6721
6729
|
cancellationReplyTo?: string | null;
|
|
6730
|
+
reminderBody?: string | null;
|
|
6731
|
+
reminderReplyTo?: string | null;
|
|
6732
|
+
reminderEnabled?: boolean;
|
|
6722
6733
|
taxCode?: string | null;
|
|
6723
6734
|
taxIncluded?: boolean;
|
|
6724
6735
|
taxLocation?: keyof typeof TaxLocationType;
|
|
@@ -6730,6 +6741,7 @@ interface BookingSpaceTranslationUpdateInputs {
|
|
|
6730
6741
|
description?: string | null;
|
|
6731
6742
|
confirmationBody?: string | null;
|
|
6732
6743
|
cancellationBody?: string | null;
|
|
6744
|
+
reminderBody?: string | null;
|
|
6733
6745
|
}
|
|
6734
6746
|
interface BookingSpaceAvailabilityCreateInputs {
|
|
6735
6747
|
dayOfWeek: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1483,6 +1483,7 @@ interface NotificationPreferences {
|
|
|
1483
1483
|
transferPush: boolean;
|
|
1484
1484
|
transferEmail: boolean;
|
|
1485
1485
|
eventReminderEmail: boolean;
|
|
1486
|
+
bookingReminderEmail: boolean;
|
|
1486
1487
|
chatPush: boolean;
|
|
1487
1488
|
chatUnreadEmail: boolean;
|
|
1488
1489
|
chatUnreadPush: boolean;
|
|
@@ -3798,6 +3799,9 @@ interface BookingSpace extends BaseBookingSpace {
|
|
|
3798
3799
|
confirmationReplyTo: string | null;
|
|
3799
3800
|
cancellationBody: string | null;
|
|
3800
3801
|
cancellationReplyTo: string | null;
|
|
3802
|
+
reminderBody: string | null;
|
|
3803
|
+
reminderReplyTo: string | null;
|
|
3804
|
+
reminderEnabled: boolean;
|
|
3801
3805
|
meetingId: string | null;
|
|
3802
3806
|
meeting: BaseMeeting | null;
|
|
3803
3807
|
joinBeforeTime: number | null;
|
|
@@ -3820,6 +3824,7 @@ interface BookingSpaceTranslation {
|
|
|
3820
3824
|
description: string | null;
|
|
3821
3825
|
confirmationBody: string | null;
|
|
3822
3826
|
cancellationBody: string | null;
|
|
3827
|
+
reminderBody: string | null;
|
|
3823
3828
|
createdAt: string;
|
|
3824
3829
|
updatedAt: string;
|
|
3825
3830
|
}
|
|
@@ -6699,6 +6704,9 @@ interface BookingSpaceCreateInputs {
|
|
|
6699
6704
|
confirmationReplyTo?: string | null;
|
|
6700
6705
|
cancellationBody?: string | null;
|
|
6701
6706
|
cancellationReplyTo?: string | null;
|
|
6707
|
+
reminderBody?: string | null;
|
|
6708
|
+
reminderReplyTo?: string | null;
|
|
6709
|
+
reminderEnabled?: boolean;
|
|
6702
6710
|
taxCode?: string | null;
|
|
6703
6711
|
taxIncluded?: boolean;
|
|
6704
6712
|
taxLocation?: keyof typeof TaxLocationType;
|
|
@@ -6719,6 +6727,9 @@ interface BookingSpaceUpdateInputs {
|
|
|
6719
6727
|
confirmationReplyTo?: string | null;
|
|
6720
6728
|
cancellationBody?: string | null;
|
|
6721
6729
|
cancellationReplyTo?: string | null;
|
|
6730
|
+
reminderBody?: string | null;
|
|
6731
|
+
reminderReplyTo?: string | null;
|
|
6732
|
+
reminderEnabled?: boolean;
|
|
6722
6733
|
taxCode?: string | null;
|
|
6723
6734
|
taxIncluded?: boolean;
|
|
6724
6735
|
taxLocation?: keyof typeof TaxLocationType;
|
|
@@ -6730,6 +6741,7 @@ interface BookingSpaceTranslationUpdateInputs {
|
|
|
6730
6741
|
description?: string | null;
|
|
6731
6742
|
confirmationBody?: string | null;
|
|
6732
6743
|
cancellationBody?: string | null;
|
|
6744
|
+
reminderBody?: string | null;
|
|
6733
6745
|
}
|
|
6734
6746
|
interface BookingSpaceAvailabilityCreateInputs {
|
|
6735
6747
|
dayOfWeek: string;
|
package/openapi.json
CHANGED
|
@@ -98379,6 +98379,9 @@
|
|
|
98379
98379
|
"eventReminderEmail": {
|
|
98380
98380
|
"type": "boolean"
|
|
98381
98381
|
},
|
|
98382
|
+
"bookingReminderEmail": {
|
|
98383
|
+
"type": "boolean"
|
|
98384
|
+
},
|
|
98382
98385
|
"chatPush": {
|
|
98383
98386
|
"type": "boolean"
|
|
98384
98387
|
},
|
|
@@ -98417,6 +98420,7 @@
|
|
|
98417
98420
|
"transferPush",
|
|
98418
98421
|
"transferEmail",
|
|
98419
98422
|
"eventReminderEmail",
|
|
98423
|
+
"bookingReminderEmail",
|
|
98420
98424
|
"chatPush",
|
|
98421
98425
|
"chatUnreadEmail",
|
|
98422
98426
|
"chatUnreadPush",
|
|
@@ -108247,6 +108251,17 @@
|
|
|
108247
108251
|
"type": "string",
|
|
108248
108252
|
"nullable": true
|
|
108249
108253
|
},
|
|
108254
|
+
"reminderBody": {
|
|
108255
|
+
"type": "string",
|
|
108256
|
+
"nullable": true
|
|
108257
|
+
},
|
|
108258
|
+
"reminderReplyTo": {
|
|
108259
|
+
"type": "string",
|
|
108260
|
+
"nullable": true
|
|
108261
|
+
},
|
|
108262
|
+
"reminderEnabled": {
|
|
108263
|
+
"type": "boolean"
|
|
108264
|
+
},
|
|
108250
108265
|
"meetingId": {
|
|
108251
108266
|
"type": "string",
|
|
108252
108267
|
"nullable": true
|
|
@@ -108281,6 +108296,9 @@
|
|
|
108281
108296
|
"confirmationReplyTo",
|
|
108282
108297
|
"cancellationBody",
|
|
108283
108298
|
"cancellationReplyTo",
|
|
108299
|
+
"reminderBody",
|
|
108300
|
+
"reminderReplyTo",
|
|
108301
|
+
"reminderEnabled",
|
|
108284
108302
|
"meetingId",
|
|
108285
108303
|
"meeting",
|
|
108286
108304
|
"joinBeforeTime",
|
|
@@ -108349,6 +108367,10 @@
|
|
|
108349
108367
|
"type": "string",
|
|
108350
108368
|
"nullable": true
|
|
108351
108369
|
},
|
|
108370
|
+
"reminderBody": {
|
|
108371
|
+
"type": "string",
|
|
108372
|
+
"nullable": true
|
|
108373
|
+
},
|
|
108352
108374
|
"createdAt": {
|
|
108353
108375
|
"type": "string"
|
|
108354
108376
|
},
|
|
@@ -108363,6 +108385,7 @@
|
|
|
108363
108385
|
"description",
|
|
108364
108386
|
"confirmationBody",
|
|
108365
108387
|
"cancellationBody",
|
|
108388
|
+
"reminderBody",
|
|
108366
108389
|
"createdAt",
|
|
108367
108390
|
"updatedAt"
|
|
108368
108391
|
]
|
|
@@ -120501,6 +120524,17 @@
|
|
|
120501
120524
|
"type": "string",
|
|
120502
120525
|
"nullable": true
|
|
120503
120526
|
},
|
|
120527
|
+
"reminderBody": {
|
|
120528
|
+
"type": "string",
|
|
120529
|
+
"nullable": true
|
|
120530
|
+
},
|
|
120531
|
+
"reminderReplyTo": {
|
|
120532
|
+
"type": "string",
|
|
120533
|
+
"nullable": true
|
|
120534
|
+
},
|
|
120535
|
+
"reminderEnabled": {
|
|
120536
|
+
"type": "boolean"
|
|
120537
|
+
},
|
|
120504
120538
|
"taxCode": {
|
|
120505
120539
|
"type": "string",
|
|
120506
120540
|
"nullable": true
|
|
@@ -120598,6 +120632,17 @@
|
|
|
120598
120632
|
"type": "string",
|
|
120599
120633
|
"nullable": true
|
|
120600
120634
|
},
|
|
120635
|
+
"reminderBody": {
|
|
120636
|
+
"type": "string",
|
|
120637
|
+
"nullable": true
|
|
120638
|
+
},
|
|
120639
|
+
"reminderReplyTo": {
|
|
120640
|
+
"type": "string",
|
|
120641
|
+
"nullable": true
|
|
120642
|
+
},
|
|
120643
|
+
"reminderEnabled": {
|
|
120644
|
+
"type": "boolean"
|
|
120645
|
+
},
|
|
120601
120646
|
"taxCode": {
|
|
120602
120647
|
"type": "string",
|
|
120603
120648
|
"nullable": true
|
|
@@ -120636,6 +120681,10 @@
|
|
|
120636
120681
|
"cancellationBody": {
|
|
120637
120682
|
"type": "string",
|
|
120638
120683
|
"nullable": true
|
|
120684
|
+
},
|
|
120685
|
+
"reminderBody": {
|
|
120686
|
+
"type": "string",
|
|
120687
|
+
"nullable": true
|
|
120639
120688
|
}
|
|
120640
120689
|
}
|
|
120641
120690
|
},
|