@ember-home/unbound-ts-client 0.0.61 → 0.0.63
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.mts +33 -105
- package/dist/index.d.ts +33 -105
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -724,34 +724,28 @@ interface APIConversation {
|
|
|
724
724
|
'status': ConversationStatus;
|
|
725
725
|
/**
|
|
726
726
|
*
|
|
727
|
-
* @type {
|
|
727
|
+
* @type {boolean}
|
|
728
728
|
* @memberof APIConversation
|
|
729
729
|
*/
|
|
730
|
-
'
|
|
730
|
+
'isUnread': boolean;
|
|
731
731
|
/**
|
|
732
732
|
*
|
|
733
733
|
* @type {string}
|
|
734
734
|
* @memberof APIConversation
|
|
735
735
|
*/
|
|
736
|
-
'
|
|
736
|
+
'lastMessageId'?: string | null;
|
|
737
737
|
/**
|
|
738
738
|
*
|
|
739
739
|
* @type {string}
|
|
740
740
|
* @memberof APIConversation
|
|
741
741
|
*/
|
|
742
|
-
'
|
|
742
|
+
'lastMessageAt': string;
|
|
743
743
|
/**
|
|
744
744
|
*
|
|
745
745
|
* @type {string}
|
|
746
746
|
* @memberof APIConversation
|
|
747
747
|
*/
|
|
748
|
-
'
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
* @type {number}
|
|
752
|
-
* @memberof APIConversation
|
|
753
|
-
*/
|
|
754
|
-
'unreadCount': number;
|
|
748
|
+
'lastMessagePreview'?: string | null;
|
|
755
749
|
/**
|
|
756
750
|
*
|
|
757
751
|
* @type {Conversationtypedata}
|
|
@@ -779,10 +773,10 @@ interface APIConversationUpdate {
|
|
|
779
773
|
'status'?: ConversationStatus | null;
|
|
780
774
|
/**
|
|
781
775
|
*
|
|
782
|
-
* @type {
|
|
776
|
+
* @type {boolean}
|
|
783
777
|
* @memberof APIConversationUpdate
|
|
784
778
|
*/
|
|
785
|
-
'
|
|
779
|
+
'isUnread'?: boolean | null;
|
|
786
780
|
}
|
|
787
781
|
/**
|
|
788
782
|
*
|
|
@@ -1085,12 +1079,6 @@ interface APIMessage {
|
|
|
1085
1079
|
* @memberof APIMessage
|
|
1086
1080
|
*/
|
|
1087
1081
|
'guestReadAt'?: string | null;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {Participanttypedata}
|
|
1091
|
-
* @memberof APIMessage
|
|
1092
|
-
*/
|
|
1093
|
-
'participantTypeData': Participanttypedata;
|
|
1094
1082
|
/**
|
|
1095
1083
|
*
|
|
1096
1084
|
* @type {string}
|
|
@@ -1139,6 +1127,12 @@ interface APIMessage {
|
|
|
1139
1127
|
* @memberof APIMessage
|
|
1140
1128
|
*/
|
|
1141
1129
|
'messageTypeData': Messagetypedata;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {Participanttypedata}
|
|
1133
|
+
* @memberof APIMessage
|
|
1134
|
+
*/
|
|
1135
|
+
'participantTypeData': Participanttypedata;
|
|
1142
1136
|
}
|
|
1143
1137
|
/**
|
|
1144
1138
|
*
|
|
@@ -1146,66 +1140,6 @@ interface APIMessage {
|
|
|
1146
1140
|
* @interface APIMessageCreate
|
|
1147
1141
|
*/
|
|
1148
1142
|
interface APIMessageCreate {
|
|
1149
|
-
/**
|
|
1150
|
-
*
|
|
1151
|
-
* @type {string}
|
|
1152
|
-
* @memberof APIMessageCreate
|
|
1153
|
-
*/
|
|
1154
|
-
'sentAt'?: string | null;
|
|
1155
|
-
/**
|
|
1156
|
-
*
|
|
1157
|
-
* @type {string}
|
|
1158
|
-
* @memberof APIMessageCreate
|
|
1159
|
-
*/
|
|
1160
|
-
'deliveredAt'?: string | null;
|
|
1161
|
-
/**
|
|
1162
|
-
*
|
|
1163
|
-
* @type {string}
|
|
1164
|
-
* @memberof APIMessageCreate
|
|
1165
|
-
*/
|
|
1166
|
-
'failedAt'?: string | null;
|
|
1167
|
-
/**
|
|
1168
|
-
*
|
|
1169
|
-
* @type {string}
|
|
1170
|
-
* @memberof APIMessageCreate
|
|
1171
|
-
*/
|
|
1172
|
-
'scheduledAt'?: string | null;
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @type {string}
|
|
1176
|
-
* @memberof APIMessageCreate
|
|
1177
|
-
*/
|
|
1178
|
-
'pausedAt'?: string | null;
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {string}
|
|
1182
|
-
* @memberof APIMessageCreate
|
|
1183
|
-
*/
|
|
1184
|
-
'cancelledAt'?: string | null;
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {string}
|
|
1188
|
-
* @memberof APIMessageCreate
|
|
1189
|
-
*/
|
|
1190
|
-
'cancelledBy'?: string | null;
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {string}
|
|
1194
|
-
* @memberof APIMessageCreate
|
|
1195
|
-
*/
|
|
1196
|
-
'staffReadAt'?: string | null;
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {string}
|
|
1200
|
-
* @memberof APIMessageCreate
|
|
1201
|
-
*/
|
|
1202
|
-
'guestReadAt'?: string | null;
|
|
1203
|
-
/**
|
|
1204
|
-
*
|
|
1205
|
-
* @type {Participanttypedata}
|
|
1206
|
-
* @memberof APIMessageCreate
|
|
1207
|
-
*/
|
|
1208
|
-
'participantTypeData': Participanttypedata;
|
|
1209
1143
|
/**
|
|
1210
1144
|
*
|
|
1211
1145
|
* @type {Messagetypedata1}
|
|
@@ -1979,12 +1913,6 @@ interface GuestApi {
|
|
|
1979
1913
|
* @memberof GuestApi
|
|
1980
1914
|
*/
|
|
1981
1915
|
'contactId'?: string | null;
|
|
1982
|
-
/**
|
|
1983
|
-
*
|
|
1984
|
-
* @type {string}
|
|
1985
|
-
* @memberof GuestApi
|
|
1986
|
-
*/
|
|
1987
|
-
'intentsExtractedAt'?: string | null;
|
|
1988
1916
|
}
|
|
1989
1917
|
declare const GuestApiParticipantTypeEnum: {
|
|
1990
1918
|
readonly Guest: "GUEST";
|
|
@@ -2476,7 +2404,7 @@ interface PhoneInboxApi {
|
|
|
2476
2404
|
'phone': string;
|
|
2477
2405
|
}
|
|
2478
2406
|
declare const PhoneInboxApiInboxTypeEnum: {
|
|
2479
|
-
readonly
|
|
2407
|
+
readonly Text: "TEXT";
|
|
2480
2408
|
};
|
|
2481
2409
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2482
2410
|
/**
|
|
@@ -2772,24 +2700,36 @@ interface RentalProviderMessageApi {
|
|
|
2772
2700
|
* @memberof RentalProviderMessageApi
|
|
2773
2701
|
*/
|
|
2774
2702
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2703
|
+
/**
|
|
2704
|
+
*
|
|
2705
|
+
* @type {string}
|
|
2706
|
+
* @memberof RentalProviderMessageApi
|
|
2707
|
+
*/
|
|
2708
|
+
'providerCreatedAt'?: string | null;
|
|
2775
2709
|
/**
|
|
2776
2710
|
*
|
|
2777
2711
|
* @type {ReservationChannelTypes}
|
|
2778
2712
|
* @memberof RentalProviderMessageApi
|
|
2779
2713
|
*/
|
|
2780
|
-
'providerChannelName'
|
|
2714
|
+
'providerChannelName'?: ReservationChannelTypes | null;
|
|
2781
2715
|
/**
|
|
2782
2716
|
*
|
|
2783
2717
|
* @type {ProviderCommunicationType}
|
|
2784
2718
|
* @memberof RentalProviderMessageApi
|
|
2785
2719
|
*/
|
|
2786
|
-
'providerCommunicationType'
|
|
2720
|
+
'providerCommunicationType'?: ProviderCommunicationType | null;
|
|
2787
2721
|
/**
|
|
2788
2722
|
*
|
|
2789
2723
|
* @type {string}
|
|
2790
2724
|
* @memberof RentalProviderMessageApi
|
|
2791
2725
|
*/
|
|
2792
|
-
'providerId'
|
|
2726
|
+
'providerId'?: string | null;
|
|
2727
|
+
/**
|
|
2728
|
+
*
|
|
2729
|
+
* @type {string}
|
|
2730
|
+
* @memberof RentalProviderMessageApi
|
|
2731
|
+
*/
|
|
2732
|
+
'providerUpdatedAt'?: string | null;
|
|
2793
2733
|
}
|
|
2794
2734
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2795
2735
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2883,18 +2823,12 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2883
2823
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2884
2824
|
*/
|
|
2885
2825
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2886
|
-
/**
|
|
2887
|
-
*
|
|
2888
|
-
* @type {ReservationChannelTypes}
|
|
2889
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2890
|
-
*/
|
|
2891
|
-
'providerChannelName': ReservationChannelTypes;
|
|
2892
2826
|
/**
|
|
2893
2827
|
*
|
|
2894
2828
|
* @type {ProviderCommunicationType}
|
|
2895
2829
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2896
2830
|
*/
|
|
2897
|
-
'
|
|
2831
|
+
'communicationType': ProviderCommunicationType;
|
|
2898
2832
|
}
|
|
2899
2833
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2900
2834
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2912,15 +2846,9 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
2912
2846
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2913
2847
|
*/
|
|
2914
2848
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum;
|
|
2915
|
-
/**
|
|
2916
|
-
*
|
|
2917
|
-
* @type {string}
|
|
2918
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2919
|
-
*/
|
|
2920
|
-
'body': string;
|
|
2921
2849
|
}
|
|
2922
2850
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum: {
|
|
2923
|
-
readonly
|
|
2851
|
+
readonly Text: "TEXT";
|
|
2924
2852
|
};
|
|
2925
2853
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum];
|
|
2926
2854
|
/**
|
|
@@ -3149,7 +3077,7 @@ interface TwilioConversationDataApi {
|
|
|
3149
3077
|
'twilioGroupId'?: string | null;
|
|
3150
3078
|
}
|
|
3151
3079
|
declare const TwilioConversationDataApiConversationTypeEnum: {
|
|
3152
|
-
readonly
|
|
3080
|
+
readonly Text: "TEXT";
|
|
3153
3081
|
};
|
|
3154
3082
|
type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
|
|
3155
3083
|
/**
|
|
@@ -3224,7 +3152,7 @@ interface TwilioProviderMessageApi {
|
|
|
3224
3152
|
'senderTypeData': Sendertypedata;
|
|
3225
3153
|
}
|
|
3226
3154
|
declare const TwilioProviderMessageApiMessageTypeEnum: {
|
|
3227
|
-
readonly
|
|
3155
|
+
readonly Text: "TEXT";
|
|
3228
3156
|
};
|
|
3229
3157
|
type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
|
|
3230
3158
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -724,34 +724,28 @@ interface APIConversation {
|
|
|
724
724
|
'status': ConversationStatus;
|
|
725
725
|
/**
|
|
726
726
|
*
|
|
727
|
-
* @type {
|
|
727
|
+
* @type {boolean}
|
|
728
728
|
* @memberof APIConversation
|
|
729
729
|
*/
|
|
730
|
-
'
|
|
730
|
+
'isUnread': boolean;
|
|
731
731
|
/**
|
|
732
732
|
*
|
|
733
733
|
* @type {string}
|
|
734
734
|
* @memberof APIConversation
|
|
735
735
|
*/
|
|
736
|
-
'
|
|
736
|
+
'lastMessageId'?: string | null;
|
|
737
737
|
/**
|
|
738
738
|
*
|
|
739
739
|
* @type {string}
|
|
740
740
|
* @memberof APIConversation
|
|
741
741
|
*/
|
|
742
|
-
'
|
|
742
|
+
'lastMessageAt': string;
|
|
743
743
|
/**
|
|
744
744
|
*
|
|
745
745
|
* @type {string}
|
|
746
746
|
* @memberof APIConversation
|
|
747
747
|
*/
|
|
748
|
-
'
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
* @type {number}
|
|
752
|
-
* @memberof APIConversation
|
|
753
|
-
*/
|
|
754
|
-
'unreadCount': number;
|
|
748
|
+
'lastMessagePreview'?: string | null;
|
|
755
749
|
/**
|
|
756
750
|
*
|
|
757
751
|
* @type {Conversationtypedata}
|
|
@@ -779,10 +773,10 @@ interface APIConversationUpdate {
|
|
|
779
773
|
'status'?: ConversationStatus | null;
|
|
780
774
|
/**
|
|
781
775
|
*
|
|
782
|
-
* @type {
|
|
776
|
+
* @type {boolean}
|
|
783
777
|
* @memberof APIConversationUpdate
|
|
784
778
|
*/
|
|
785
|
-
'
|
|
779
|
+
'isUnread'?: boolean | null;
|
|
786
780
|
}
|
|
787
781
|
/**
|
|
788
782
|
*
|
|
@@ -1085,12 +1079,6 @@ interface APIMessage {
|
|
|
1085
1079
|
* @memberof APIMessage
|
|
1086
1080
|
*/
|
|
1087
1081
|
'guestReadAt'?: string | null;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {Participanttypedata}
|
|
1091
|
-
* @memberof APIMessage
|
|
1092
|
-
*/
|
|
1093
|
-
'participantTypeData': Participanttypedata;
|
|
1094
1082
|
/**
|
|
1095
1083
|
*
|
|
1096
1084
|
* @type {string}
|
|
@@ -1139,6 +1127,12 @@ interface APIMessage {
|
|
|
1139
1127
|
* @memberof APIMessage
|
|
1140
1128
|
*/
|
|
1141
1129
|
'messageTypeData': Messagetypedata;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {Participanttypedata}
|
|
1133
|
+
* @memberof APIMessage
|
|
1134
|
+
*/
|
|
1135
|
+
'participantTypeData': Participanttypedata;
|
|
1142
1136
|
}
|
|
1143
1137
|
/**
|
|
1144
1138
|
*
|
|
@@ -1146,66 +1140,6 @@ interface APIMessage {
|
|
|
1146
1140
|
* @interface APIMessageCreate
|
|
1147
1141
|
*/
|
|
1148
1142
|
interface APIMessageCreate {
|
|
1149
|
-
/**
|
|
1150
|
-
*
|
|
1151
|
-
* @type {string}
|
|
1152
|
-
* @memberof APIMessageCreate
|
|
1153
|
-
*/
|
|
1154
|
-
'sentAt'?: string | null;
|
|
1155
|
-
/**
|
|
1156
|
-
*
|
|
1157
|
-
* @type {string}
|
|
1158
|
-
* @memberof APIMessageCreate
|
|
1159
|
-
*/
|
|
1160
|
-
'deliveredAt'?: string | null;
|
|
1161
|
-
/**
|
|
1162
|
-
*
|
|
1163
|
-
* @type {string}
|
|
1164
|
-
* @memberof APIMessageCreate
|
|
1165
|
-
*/
|
|
1166
|
-
'failedAt'?: string | null;
|
|
1167
|
-
/**
|
|
1168
|
-
*
|
|
1169
|
-
* @type {string}
|
|
1170
|
-
* @memberof APIMessageCreate
|
|
1171
|
-
*/
|
|
1172
|
-
'scheduledAt'?: string | null;
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @type {string}
|
|
1176
|
-
* @memberof APIMessageCreate
|
|
1177
|
-
*/
|
|
1178
|
-
'pausedAt'?: string | null;
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {string}
|
|
1182
|
-
* @memberof APIMessageCreate
|
|
1183
|
-
*/
|
|
1184
|
-
'cancelledAt'?: string | null;
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {string}
|
|
1188
|
-
* @memberof APIMessageCreate
|
|
1189
|
-
*/
|
|
1190
|
-
'cancelledBy'?: string | null;
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {string}
|
|
1194
|
-
* @memberof APIMessageCreate
|
|
1195
|
-
*/
|
|
1196
|
-
'staffReadAt'?: string | null;
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {string}
|
|
1200
|
-
* @memberof APIMessageCreate
|
|
1201
|
-
*/
|
|
1202
|
-
'guestReadAt'?: string | null;
|
|
1203
|
-
/**
|
|
1204
|
-
*
|
|
1205
|
-
* @type {Participanttypedata}
|
|
1206
|
-
* @memberof APIMessageCreate
|
|
1207
|
-
*/
|
|
1208
|
-
'participantTypeData': Participanttypedata;
|
|
1209
1143
|
/**
|
|
1210
1144
|
*
|
|
1211
1145
|
* @type {Messagetypedata1}
|
|
@@ -1979,12 +1913,6 @@ interface GuestApi {
|
|
|
1979
1913
|
* @memberof GuestApi
|
|
1980
1914
|
*/
|
|
1981
1915
|
'contactId'?: string | null;
|
|
1982
|
-
/**
|
|
1983
|
-
*
|
|
1984
|
-
* @type {string}
|
|
1985
|
-
* @memberof GuestApi
|
|
1986
|
-
*/
|
|
1987
|
-
'intentsExtractedAt'?: string | null;
|
|
1988
1916
|
}
|
|
1989
1917
|
declare const GuestApiParticipantTypeEnum: {
|
|
1990
1918
|
readonly Guest: "GUEST";
|
|
@@ -2476,7 +2404,7 @@ interface PhoneInboxApi {
|
|
|
2476
2404
|
'phone': string;
|
|
2477
2405
|
}
|
|
2478
2406
|
declare const PhoneInboxApiInboxTypeEnum: {
|
|
2479
|
-
readonly
|
|
2407
|
+
readonly Text: "TEXT";
|
|
2480
2408
|
};
|
|
2481
2409
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2482
2410
|
/**
|
|
@@ -2772,24 +2700,36 @@ interface RentalProviderMessageApi {
|
|
|
2772
2700
|
* @memberof RentalProviderMessageApi
|
|
2773
2701
|
*/
|
|
2774
2702
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2703
|
+
/**
|
|
2704
|
+
*
|
|
2705
|
+
* @type {string}
|
|
2706
|
+
* @memberof RentalProviderMessageApi
|
|
2707
|
+
*/
|
|
2708
|
+
'providerCreatedAt'?: string | null;
|
|
2775
2709
|
/**
|
|
2776
2710
|
*
|
|
2777
2711
|
* @type {ReservationChannelTypes}
|
|
2778
2712
|
* @memberof RentalProviderMessageApi
|
|
2779
2713
|
*/
|
|
2780
|
-
'providerChannelName'
|
|
2714
|
+
'providerChannelName'?: ReservationChannelTypes | null;
|
|
2781
2715
|
/**
|
|
2782
2716
|
*
|
|
2783
2717
|
* @type {ProviderCommunicationType}
|
|
2784
2718
|
* @memberof RentalProviderMessageApi
|
|
2785
2719
|
*/
|
|
2786
|
-
'providerCommunicationType'
|
|
2720
|
+
'providerCommunicationType'?: ProviderCommunicationType | null;
|
|
2787
2721
|
/**
|
|
2788
2722
|
*
|
|
2789
2723
|
* @type {string}
|
|
2790
2724
|
* @memberof RentalProviderMessageApi
|
|
2791
2725
|
*/
|
|
2792
|
-
'providerId'
|
|
2726
|
+
'providerId'?: string | null;
|
|
2727
|
+
/**
|
|
2728
|
+
*
|
|
2729
|
+
* @type {string}
|
|
2730
|
+
* @memberof RentalProviderMessageApi
|
|
2731
|
+
*/
|
|
2732
|
+
'providerUpdatedAt'?: string | null;
|
|
2793
2733
|
}
|
|
2794
2734
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2795
2735
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2883,18 +2823,12 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2883
2823
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2884
2824
|
*/
|
|
2885
2825
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2886
|
-
/**
|
|
2887
|
-
*
|
|
2888
|
-
* @type {ReservationChannelTypes}
|
|
2889
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2890
|
-
*/
|
|
2891
|
-
'providerChannelName': ReservationChannelTypes;
|
|
2892
2826
|
/**
|
|
2893
2827
|
*
|
|
2894
2828
|
* @type {ProviderCommunicationType}
|
|
2895
2829
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2896
2830
|
*/
|
|
2897
|
-
'
|
|
2831
|
+
'communicationType': ProviderCommunicationType;
|
|
2898
2832
|
}
|
|
2899
2833
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2900
2834
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2912,15 +2846,9 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
2912
2846
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2913
2847
|
*/
|
|
2914
2848
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum;
|
|
2915
|
-
/**
|
|
2916
|
-
*
|
|
2917
|
-
* @type {string}
|
|
2918
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2919
|
-
*/
|
|
2920
|
-
'body': string;
|
|
2921
2849
|
}
|
|
2922
2850
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum: {
|
|
2923
|
-
readonly
|
|
2851
|
+
readonly Text: "TEXT";
|
|
2924
2852
|
};
|
|
2925
2853
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum];
|
|
2926
2854
|
/**
|
|
@@ -3149,7 +3077,7 @@ interface TwilioConversationDataApi {
|
|
|
3149
3077
|
'twilioGroupId'?: string | null;
|
|
3150
3078
|
}
|
|
3151
3079
|
declare const TwilioConversationDataApiConversationTypeEnum: {
|
|
3152
|
-
readonly
|
|
3080
|
+
readonly Text: "TEXT";
|
|
3153
3081
|
};
|
|
3154
3082
|
type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
|
|
3155
3083
|
/**
|
|
@@ -3224,7 +3152,7 @@ interface TwilioProviderMessageApi {
|
|
|
3224
3152
|
'senderTypeData': Sendertypedata;
|
|
3225
3153
|
}
|
|
3226
3154
|
declare const TwilioProviderMessageApiMessageTypeEnum: {
|
|
3227
|
-
readonly
|
|
3155
|
+
readonly Text: "TEXT";
|
|
3228
3156
|
};
|
|
3229
3157
|
type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
|
|
3230
3158
|
/**
|
package/dist/index.js
CHANGED
|
@@ -121,7 +121,7 @@ var PaginationDirection = {
|
|
|
121
121
|
Backward: "backward"
|
|
122
122
|
};
|
|
123
123
|
var PhoneInboxApiInboxTypeEnum = {
|
|
124
|
-
|
|
124
|
+
Text: "TEXT"
|
|
125
125
|
};
|
|
126
126
|
var ProviderAccountInboxApiInboxTypeEnum = {
|
|
127
127
|
RentalProvider: "RENTAL_PROVIDER"
|
|
@@ -187,7 +187,7 @@ var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = {
|
|
|
187
187
|
RentalProvider: "RENTAL_PROVIDER"
|
|
188
188
|
};
|
|
189
189
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = {
|
|
190
|
-
|
|
190
|
+
Text: "TEXT"
|
|
191
191
|
};
|
|
192
192
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
193
193
|
Email: "EMAIL"
|
|
@@ -205,7 +205,7 @@ var StaffApiParticipantTypeEnum = {
|
|
|
205
205
|
Staff: "STAFF"
|
|
206
206
|
};
|
|
207
207
|
var TwilioConversationDataApiConversationTypeEnum = {
|
|
208
|
-
|
|
208
|
+
Text: "TEXT"
|
|
209
209
|
};
|
|
210
210
|
var TwilioInboundSenderTypeDataApiDirectionEnum = {
|
|
211
211
|
Inbound: "INBOUND"
|
|
@@ -214,7 +214,7 @@ var TwilioOutboundSenderTypeDataApiDirectionEnum = {
|
|
|
214
214
|
Outbound: "OUTBOUND"
|
|
215
215
|
};
|
|
216
216
|
var TwilioProviderMessageApiMessageTypeEnum = {
|
|
217
|
-
|
|
217
|
+
Text: "TEXT"
|
|
218
218
|
};
|
|
219
219
|
var AccountsApiAxiosParamCreator = function(configuration) {
|
|
220
220
|
return {
|