@connectedxm/admin-sdk 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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/docs/BookingSpace.md +6 -0
- package/docs/BookingSpaceCreateInputs.md +6 -0
- package/docs/BookingSpaceTranslation.md +2 -0
- package/docs/BookingSpaceTranslationUpdateInputs.md +2 -0
- package/docs/BookingSpaceUpdateInputs.md +6 -0
- package/docs/NotificationPreferences.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2824,6 +2824,9 @@ export interface BookingSpace {
|
|
|
2824
2824
|
'confirmationReplyTo': string | null;
|
|
2825
2825
|
'cancellationBody': string | null;
|
|
2826
2826
|
'cancellationReplyTo': string | null;
|
|
2827
|
+
'reminderBody': string | null;
|
|
2828
|
+
'reminderReplyTo': string | null;
|
|
2829
|
+
'reminderEnabled': boolean;
|
|
2827
2830
|
'meetingId': string | null;
|
|
2828
2831
|
'meeting': BaseMeeting | null;
|
|
2829
2832
|
'joinBeforeTime': number | null;
|
|
@@ -2883,6 +2886,9 @@ export interface BookingSpaceCreateInputs {
|
|
|
2883
2886
|
'confirmationReplyTo'?: string | null;
|
|
2884
2887
|
'cancellationBody'?: string | null;
|
|
2885
2888
|
'cancellationReplyTo'?: string | null;
|
|
2889
|
+
'reminderBody'?: string | null;
|
|
2890
|
+
'reminderReplyTo'?: string | null;
|
|
2891
|
+
'reminderEnabled'?: boolean;
|
|
2886
2892
|
'taxCode'?: string | null;
|
|
2887
2893
|
'taxIncluded'?: boolean;
|
|
2888
2894
|
'taxLocation'?: TaxLocationType;
|
|
@@ -3048,6 +3054,7 @@ export interface BookingSpaceTranslation {
|
|
|
3048
3054
|
'description': string | null;
|
|
3049
3055
|
'confirmationBody': string | null;
|
|
3050
3056
|
'cancellationBody': string | null;
|
|
3057
|
+
'reminderBody': string | null;
|
|
3051
3058
|
'createdAt': string;
|
|
3052
3059
|
'updatedAt': string;
|
|
3053
3060
|
}
|
|
@@ -3056,6 +3063,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
3056
3063
|
'description'?: string | null;
|
|
3057
3064
|
'confirmationBody'?: string | null;
|
|
3058
3065
|
'cancellationBody'?: string | null;
|
|
3066
|
+
'reminderBody'?: string | null;
|
|
3059
3067
|
}
|
|
3060
3068
|
export interface BookingSpaceUpdateInputs {
|
|
3061
3069
|
'name'?: string;
|
|
@@ -3071,6 +3079,9 @@ export interface BookingSpaceUpdateInputs {
|
|
|
3071
3079
|
'confirmationReplyTo'?: string | null;
|
|
3072
3080
|
'cancellationBody'?: string | null;
|
|
3073
3081
|
'cancellationReplyTo'?: string | null;
|
|
3082
|
+
'reminderBody'?: string | null;
|
|
3083
|
+
'reminderReplyTo'?: string | null;
|
|
3084
|
+
'reminderEnabled'?: boolean;
|
|
3074
3085
|
'taxCode'?: string | null;
|
|
3075
3086
|
'taxIncluded'?: boolean;
|
|
3076
3087
|
'taxLocation'?: TaxLocationType;
|
|
@@ -11014,6 +11025,7 @@ export interface NotificationPreferences {
|
|
|
11014
11025
|
'transferPush': boolean;
|
|
11015
11026
|
'transferEmail': boolean;
|
|
11016
11027
|
'eventReminderEmail': boolean;
|
|
11028
|
+
'bookingReminderEmail': boolean;
|
|
11017
11029
|
'chatPush': boolean;
|
|
11018
11030
|
'chatUnreadEmail': boolean;
|
|
11019
11031
|
'chatUnreadPush': boolean;
|
package/dist/api.d.ts
CHANGED
|
@@ -2634,6 +2634,9 @@ export interface BookingSpace {
|
|
|
2634
2634
|
'confirmationReplyTo': string | null;
|
|
2635
2635
|
'cancellationBody': string | null;
|
|
2636
2636
|
'cancellationReplyTo': string | null;
|
|
2637
|
+
'reminderBody': string | null;
|
|
2638
|
+
'reminderReplyTo': string | null;
|
|
2639
|
+
'reminderEnabled': boolean;
|
|
2637
2640
|
'meetingId': string | null;
|
|
2638
2641
|
'meeting': BaseMeeting | null;
|
|
2639
2642
|
'joinBeforeTime': number | null;
|
|
@@ -2689,6 +2692,9 @@ export interface BookingSpaceCreateInputs {
|
|
|
2689
2692
|
'confirmationReplyTo'?: string | null;
|
|
2690
2693
|
'cancellationBody'?: string | null;
|
|
2691
2694
|
'cancellationReplyTo'?: string | null;
|
|
2695
|
+
'reminderBody'?: string | null;
|
|
2696
|
+
'reminderReplyTo'?: string | null;
|
|
2697
|
+
'reminderEnabled'?: boolean;
|
|
2692
2698
|
'taxCode'?: string | null;
|
|
2693
2699
|
'taxIncluded'?: boolean;
|
|
2694
2700
|
'taxLocation'?: TaxLocationType;
|
|
@@ -2842,6 +2848,7 @@ export interface BookingSpaceTranslation {
|
|
|
2842
2848
|
'description': string | null;
|
|
2843
2849
|
'confirmationBody': string | null;
|
|
2844
2850
|
'cancellationBody': string | null;
|
|
2851
|
+
'reminderBody': string | null;
|
|
2845
2852
|
'createdAt': string;
|
|
2846
2853
|
'updatedAt': string;
|
|
2847
2854
|
}
|
|
@@ -2850,6 +2857,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
2850
2857
|
'description'?: string | null;
|
|
2851
2858
|
'confirmationBody'?: string | null;
|
|
2852
2859
|
'cancellationBody'?: string | null;
|
|
2860
|
+
'reminderBody'?: string | null;
|
|
2853
2861
|
}
|
|
2854
2862
|
export interface BookingSpaceUpdateInputs {
|
|
2855
2863
|
'name'?: string;
|
|
@@ -2865,6 +2873,9 @@ export interface BookingSpaceUpdateInputs {
|
|
|
2865
2873
|
'confirmationReplyTo'?: string | null;
|
|
2866
2874
|
'cancellationBody'?: string | null;
|
|
2867
2875
|
'cancellationReplyTo'?: string | null;
|
|
2876
|
+
'reminderBody'?: string | null;
|
|
2877
|
+
'reminderReplyTo'?: string | null;
|
|
2878
|
+
'reminderEnabled'?: boolean;
|
|
2868
2879
|
'taxCode'?: string | null;
|
|
2869
2880
|
'taxIncluded'?: boolean;
|
|
2870
2881
|
'taxLocation'?: TaxLocationType;
|
|
@@ -9731,6 +9742,7 @@ export interface NotificationPreferences {
|
|
|
9731
9742
|
'transferPush': boolean;
|
|
9732
9743
|
'transferEmail': boolean;
|
|
9733
9744
|
'eventReminderEmail': boolean;
|
|
9745
|
+
'bookingReminderEmail': boolean;
|
|
9734
9746
|
'chatPush': boolean;
|
|
9735
9747
|
'chatUnreadEmail': boolean;
|
|
9736
9748
|
'chatUnreadPush': boolean;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2634,6 +2634,9 @@ export interface BookingSpace {
|
|
|
2634
2634
|
'confirmationReplyTo': string | null;
|
|
2635
2635
|
'cancellationBody': string | null;
|
|
2636
2636
|
'cancellationReplyTo': string | null;
|
|
2637
|
+
'reminderBody': string | null;
|
|
2638
|
+
'reminderReplyTo': string | null;
|
|
2639
|
+
'reminderEnabled': boolean;
|
|
2637
2640
|
'meetingId': string | null;
|
|
2638
2641
|
'meeting': BaseMeeting | null;
|
|
2639
2642
|
'joinBeforeTime': number | null;
|
|
@@ -2689,6 +2692,9 @@ export interface BookingSpaceCreateInputs {
|
|
|
2689
2692
|
'confirmationReplyTo'?: string | null;
|
|
2690
2693
|
'cancellationBody'?: string | null;
|
|
2691
2694
|
'cancellationReplyTo'?: string | null;
|
|
2695
|
+
'reminderBody'?: string | null;
|
|
2696
|
+
'reminderReplyTo'?: string | null;
|
|
2697
|
+
'reminderEnabled'?: boolean;
|
|
2692
2698
|
'taxCode'?: string | null;
|
|
2693
2699
|
'taxIncluded'?: boolean;
|
|
2694
2700
|
'taxLocation'?: TaxLocationType;
|
|
@@ -2842,6 +2848,7 @@ export interface BookingSpaceTranslation {
|
|
|
2842
2848
|
'description': string | null;
|
|
2843
2849
|
'confirmationBody': string | null;
|
|
2844
2850
|
'cancellationBody': string | null;
|
|
2851
|
+
'reminderBody': string | null;
|
|
2845
2852
|
'createdAt': string;
|
|
2846
2853
|
'updatedAt': string;
|
|
2847
2854
|
}
|
|
@@ -2850,6 +2857,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
2850
2857
|
'description'?: string | null;
|
|
2851
2858
|
'confirmationBody'?: string | null;
|
|
2852
2859
|
'cancellationBody'?: string | null;
|
|
2860
|
+
'reminderBody'?: string | null;
|
|
2853
2861
|
}
|
|
2854
2862
|
export interface BookingSpaceUpdateInputs {
|
|
2855
2863
|
'name'?: string;
|
|
@@ -2865,6 +2873,9 @@ export interface BookingSpaceUpdateInputs {
|
|
|
2865
2873
|
'confirmationReplyTo'?: string | null;
|
|
2866
2874
|
'cancellationBody'?: string | null;
|
|
2867
2875
|
'cancellationReplyTo'?: string | null;
|
|
2876
|
+
'reminderBody'?: string | null;
|
|
2877
|
+
'reminderReplyTo'?: string | null;
|
|
2878
|
+
'reminderEnabled'?: boolean;
|
|
2868
2879
|
'taxCode'?: string | null;
|
|
2869
2880
|
'taxIncluded'?: boolean;
|
|
2870
2881
|
'taxLocation'?: TaxLocationType;
|
|
@@ -9731,6 +9742,7 @@ export interface NotificationPreferences {
|
|
|
9731
9742
|
'transferPush': boolean;
|
|
9732
9743
|
'transferEmail': boolean;
|
|
9733
9744
|
'eventReminderEmail': boolean;
|
|
9745
|
+
'bookingReminderEmail': boolean;
|
|
9734
9746
|
'chatPush': boolean;
|
|
9735
9747
|
'chatUnreadEmail': boolean;
|
|
9736
9748
|
'chatUnreadPush': boolean;
|
package/docs/BookingSpace.md
CHANGED
|
@@ -24,6 +24,9 @@ Name | Type | Description | Notes
|
|
|
24
24
|
**confirmationReplyTo** | **string** | | [default to undefined]
|
|
25
25
|
**cancellationBody** | **string** | | [default to undefined]
|
|
26
26
|
**cancellationReplyTo** | **string** | | [default to undefined]
|
|
27
|
+
**reminderBody** | **string** | | [default to undefined]
|
|
28
|
+
**reminderReplyTo** | **string** | | [default to undefined]
|
|
29
|
+
**reminderEnabled** | **boolean** | | [default to undefined]
|
|
27
30
|
**meetingId** | **string** | | [default to undefined]
|
|
28
31
|
**meeting** | [**BaseMeeting**](BaseMeeting.md) | | [default to undefined]
|
|
29
32
|
**joinBeforeTime** | **number** | | [default to undefined]
|
|
@@ -56,6 +59,9 @@ const instance: BookingSpace = {
|
|
|
56
59
|
confirmationReplyTo,
|
|
57
60
|
cancellationBody,
|
|
58
61
|
cancellationReplyTo,
|
|
62
|
+
reminderBody,
|
|
63
|
+
reminderReplyTo,
|
|
64
|
+
reminderEnabled,
|
|
59
65
|
meetingId,
|
|
60
66
|
meeting,
|
|
61
67
|
joinBeforeTime,
|
|
@@ -19,6 +19,9 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**confirmationReplyTo** | **string** | | [optional] [default to undefined]
|
|
20
20
|
**cancellationBody** | **string** | | [optional] [default to undefined]
|
|
21
21
|
**cancellationReplyTo** | **string** | | [optional] [default to undefined]
|
|
22
|
+
**reminderBody** | **string** | | [optional] [default to undefined]
|
|
23
|
+
**reminderReplyTo** | **string** | | [optional] [default to undefined]
|
|
24
|
+
**reminderEnabled** | **boolean** | | [optional] [default to undefined]
|
|
22
25
|
**taxCode** | **string** | | [optional] [default to undefined]
|
|
23
26
|
**taxIncluded** | **boolean** | | [optional] [default to undefined]
|
|
24
27
|
**taxLocation** | [**TaxLocationType**](TaxLocationType.md) | | [optional] [default to undefined]
|
|
@@ -45,6 +48,9 @@ const instance: BookingSpaceCreateInputs = {
|
|
|
45
48
|
confirmationReplyTo,
|
|
46
49
|
cancellationBody,
|
|
47
50
|
cancellationReplyTo,
|
|
51
|
+
reminderBody,
|
|
52
|
+
reminderReplyTo,
|
|
53
|
+
reminderEnabled,
|
|
48
54
|
taxCode,
|
|
49
55
|
taxIncluded,
|
|
50
56
|
taxLocation,
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**description** | **string** | | [default to undefined]
|
|
12
12
|
**confirmationBody** | **string** | | [default to undefined]
|
|
13
13
|
**cancellationBody** | **string** | | [default to undefined]
|
|
14
|
+
**reminderBody** | **string** | | [default to undefined]
|
|
14
15
|
**createdAt** | **string** | | [default to undefined]
|
|
15
16
|
**updatedAt** | **string** | | [default to undefined]
|
|
16
17
|
|
|
@@ -26,6 +27,7 @@ const instance: BookingSpaceTranslation = {
|
|
|
26
27
|
description,
|
|
27
28
|
confirmationBody,
|
|
28
29
|
cancellationBody,
|
|
30
|
+
reminderBody,
|
|
29
31
|
createdAt,
|
|
30
32
|
updatedAt,
|
|
31
33
|
};
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**description** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**confirmationBody** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**cancellationBody** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**reminderBody** | **string** | | [optional] [default to undefined]
|
|
12
13
|
|
|
13
14
|
## Example
|
|
14
15
|
|
|
@@ -20,6 +21,7 @@ const instance: BookingSpaceTranslationUpdateInputs = {
|
|
|
20
21
|
description,
|
|
21
22
|
confirmationBody,
|
|
22
23
|
cancellationBody,
|
|
24
|
+
reminderBody,
|
|
23
25
|
};
|
|
24
26
|
```
|
|
25
27
|
|
|
@@ -18,6 +18,9 @@ Name | Type | Description | Notes
|
|
|
18
18
|
**confirmationReplyTo** | **string** | | [optional] [default to undefined]
|
|
19
19
|
**cancellationBody** | **string** | | [optional] [default to undefined]
|
|
20
20
|
**cancellationReplyTo** | **string** | | [optional] [default to undefined]
|
|
21
|
+
**reminderBody** | **string** | | [optional] [default to undefined]
|
|
22
|
+
**reminderReplyTo** | **string** | | [optional] [default to undefined]
|
|
23
|
+
**reminderEnabled** | **boolean** | | [optional] [default to undefined]
|
|
21
24
|
**taxCode** | **string** | | [optional] [default to undefined]
|
|
22
25
|
**taxIncluded** | **boolean** | | [optional] [default to undefined]
|
|
23
26
|
**taxLocation** | [**TaxLocationType**](TaxLocationType.md) | | [optional] [default to undefined]
|
|
@@ -43,6 +46,9 @@ const instance: BookingSpaceUpdateInputs = {
|
|
|
43
46
|
confirmationReplyTo,
|
|
44
47
|
cancellationBody,
|
|
45
48
|
cancellationReplyTo,
|
|
49
|
+
reminderBody,
|
|
50
|
+
reminderReplyTo,
|
|
51
|
+
reminderEnabled,
|
|
46
52
|
taxCode,
|
|
47
53
|
taxIncluded,
|
|
48
54
|
taxLocation,
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**transferPush** | **boolean** | | [default to undefined]
|
|
12
12
|
**transferEmail** | **boolean** | | [default to undefined]
|
|
13
13
|
**eventReminderEmail** | **boolean** | | [default to undefined]
|
|
14
|
+
**bookingReminderEmail** | **boolean** | | [default to undefined]
|
|
14
15
|
**chatPush** | **boolean** | | [default to undefined]
|
|
15
16
|
**chatUnreadEmail** | **boolean** | | [default to undefined]
|
|
16
17
|
**chatUnreadPush** | **boolean** | | [default to undefined]
|
|
@@ -34,6 +35,7 @@ const instance: NotificationPreferences = {
|
|
|
34
35
|
transferPush,
|
|
35
36
|
transferEmail,
|
|
36
37
|
eventReminderEmail,
|
|
38
|
+
bookingReminderEmail,
|
|
37
39
|
chatPush,
|
|
38
40
|
chatUnreadEmail,
|
|
39
41
|
chatUnreadPush,
|