@ember-home/unbound-ts-client 0.0.111 → 0.0.113
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 +433 -343
- package/dist/index.d.ts +433 -343
- package/dist/index.js +47 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +51 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -526,22 +526,22 @@ interface APIContact {
|
|
|
526
526
|
'addresses'?: Array<AddressApi>;
|
|
527
527
|
/**
|
|
528
528
|
*
|
|
529
|
-
* @type {Array<
|
|
529
|
+
* @type {Array<EmailProviderEmailsApi>}
|
|
530
530
|
* @memberof APIContact
|
|
531
531
|
*/
|
|
532
|
-
'providerEmails'?: Array<
|
|
532
|
+
'providerEmails'?: Array<EmailProviderEmailsApi>;
|
|
533
533
|
/**
|
|
534
534
|
*
|
|
535
|
-
* @type {Array<
|
|
535
|
+
* @type {Array<PhoneProviderPhonesApi>}
|
|
536
536
|
* @memberof APIContact
|
|
537
537
|
*/
|
|
538
|
-
'providerPhones'?: Array<
|
|
538
|
+
'providerPhones'?: Array<PhoneProviderPhonesApi>;
|
|
539
539
|
/**
|
|
540
540
|
*
|
|
541
|
-
* @type {Array<
|
|
541
|
+
* @type {Array<AddressProviderAddressesApi>}
|
|
542
542
|
* @memberof APIContact
|
|
543
543
|
*/
|
|
544
|
-
'providerAddresses'?: Array<
|
|
544
|
+
'providerAddresses'?: Array<AddressProviderAddressesApi>;
|
|
545
545
|
/**
|
|
546
546
|
*
|
|
547
547
|
* @type {ContactTypeDataApi}
|
|
@@ -1031,10 +1031,10 @@ interface APIConversation {
|
|
|
1031
1031
|
interface APIConversationCreate {
|
|
1032
1032
|
/**
|
|
1033
1033
|
*
|
|
1034
|
-
* @type {
|
|
1034
|
+
* @type {SMSConversationDataCreateApi}
|
|
1035
1035
|
* @memberof APIConversationCreate
|
|
1036
1036
|
*/
|
|
1037
|
-
'conversationTypeData':
|
|
1037
|
+
'conversationTypeData': SMSConversationDataCreateApi;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
*
|
|
@@ -1055,29 +1055,6 @@ interface APIConversationUpdate {
|
|
|
1055
1055
|
*/
|
|
1056
1056
|
'isUnread'?: boolean | null;
|
|
1057
1057
|
}
|
|
1058
|
-
/**
|
|
1059
|
-
*
|
|
1060
|
-
* @export
|
|
1061
|
-
* @interface APICreate
|
|
1062
|
-
*/
|
|
1063
|
-
interface APICreate {
|
|
1064
|
-
/**
|
|
1065
|
-
*
|
|
1066
|
-
* @type {string}
|
|
1067
|
-
* @memberof APICreate
|
|
1068
|
-
*/
|
|
1069
|
-
'messageType': APICreateMessageTypeEnum;
|
|
1070
|
-
/**
|
|
1071
|
-
*
|
|
1072
|
-
* @type {Array<string>}
|
|
1073
|
-
* @memberof APICreate
|
|
1074
|
-
*/
|
|
1075
|
-
'mediaUrls'?: Array<string> | null;
|
|
1076
|
-
}
|
|
1077
|
-
declare const APICreateMessageTypeEnum: {
|
|
1078
|
-
readonly Text: "TEXT";
|
|
1079
|
-
};
|
|
1080
|
-
type APICreateMessageTypeEnum = typeof APICreateMessageTypeEnum[keyof typeof APICreateMessageTypeEnum];
|
|
1081
1058
|
/**
|
|
1082
1059
|
*
|
|
1083
1060
|
* @export
|
|
@@ -1429,10 +1406,10 @@ interface APIMessageCreate {
|
|
|
1429
1406
|
'body': string;
|
|
1430
1407
|
/**
|
|
1431
1408
|
*
|
|
1432
|
-
* @type {
|
|
1409
|
+
* @type {MessageCreateWithSuggestionApi}
|
|
1433
1410
|
* @memberof APIMessageCreate
|
|
1434
1411
|
*/
|
|
1435
|
-
'suggestion'?:
|
|
1412
|
+
'suggestion'?: MessageCreateWithSuggestionApi | null;
|
|
1436
1413
|
/**
|
|
1437
1414
|
*
|
|
1438
1415
|
* @type {Array<MessageAttachmentApi>}
|
|
@@ -1714,10 +1691,10 @@ interface APIReservation {
|
|
|
1714
1691
|
'totalPrice': number;
|
|
1715
1692
|
/**
|
|
1716
1693
|
*
|
|
1717
|
-
* @type {
|
|
1694
|
+
* @type {ReservationBaseModelChannelInfoApi}
|
|
1718
1695
|
* @memberof APIReservation
|
|
1719
1696
|
*/
|
|
1720
|
-
'channelInfo':
|
|
1697
|
+
'channelInfo': ReservationBaseModelChannelInfoApi;
|
|
1721
1698
|
/**
|
|
1722
1699
|
*
|
|
1723
1700
|
* @type {number}
|
|
@@ -1738,10 +1715,10 @@ interface APIReservation {
|
|
|
1738
1715
|
'listingTitle': string;
|
|
1739
1716
|
/**
|
|
1740
1717
|
*
|
|
1741
|
-
* @type {
|
|
1718
|
+
* @type {ReservationProviderInfoApi}
|
|
1742
1719
|
* @memberof APIReservation
|
|
1743
1720
|
*/
|
|
1744
|
-
'providerInfo':
|
|
1721
|
+
'providerInfo': ReservationProviderInfoApi;
|
|
1745
1722
|
}
|
|
1746
1723
|
/**
|
|
1747
1724
|
*
|
|
@@ -2121,21 +2098,40 @@ interface AddressApi {
|
|
|
2121
2098
|
/**
|
|
2122
2099
|
*
|
|
2123
2100
|
* @export
|
|
2124
|
-
* @interface
|
|
2101
|
+
* @interface AddressProviderAddressesApi
|
|
2102
|
+
*/
|
|
2103
|
+
interface AddressProviderAddressesApi {
|
|
2104
|
+
/**
|
|
2105
|
+
*
|
|
2106
|
+
* @type {BaseAddressApi}
|
|
2107
|
+
* @memberof AddressProviderAddressesApi
|
|
2108
|
+
*/
|
|
2109
|
+
'address': BaseAddressApi;
|
|
2110
|
+
/**
|
|
2111
|
+
*
|
|
2112
|
+
* @type {Array<AddressProviderAddressesProviderAttributionApi>}
|
|
2113
|
+
* @memberof AddressProviderAddressesApi
|
|
2114
|
+
*/
|
|
2115
|
+
'providers': Array<AddressProviderAddressesProviderAttributionApi>;
|
|
2116
|
+
}
|
|
2117
|
+
/**
|
|
2118
|
+
*
|
|
2119
|
+
* @export
|
|
2120
|
+
* @interface AddressProviderAddressesProviderAttributionApi
|
|
2125
2121
|
*/
|
|
2126
|
-
interface
|
|
2122
|
+
interface AddressProviderAddressesProviderAttributionApi {
|
|
2127
2123
|
/**
|
|
2128
2124
|
*
|
|
2129
2125
|
* @type {string}
|
|
2130
|
-
* @memberof
|
|
2126
|
+
* @memberof AddressProviderAddressesProviderAttributionApi
|
|
2131
2127
|
*/
|
|
2132
2128
|
'providerId': string;
|
|
2133
2129
|
/**
|
|
2134
2130
|
*
|
|
2135
|
-
* @type {
|
|
2136
|
-
* @memberof
|
|
2131
|
+
* @type {Array<ReservationChannelTypes>}
|
|
2132
|
+
* @memberof AddressProviderAddressesProviderAttributionApi
|
|
2137
2133
|
*/
|
|
2138
|
-
'
|
|
2134
|
+
'channels': Array<ReservationChannelTypes>;
|
|
2139
2135
|
}
|
|
2140
2136
|
/**
|
|
2141
2137
|
*
|
|
@@ -2145,76 +2141,95 @@ interface AttributeSourceApi {
|
|
|
2145
2141
|
interface AttributionApi {
|
|
2146
2142
|
/**
|
|
2147
2143
|
*
|
|
2148
|
-
* @type {
|
|
2144
|
+
* @type {AttributionAttributeSourceApi}
|
|
2149
2145
|
* @memberof AttributionApi
|
|
2150
2146
|
*/
|
|
2151
|
-
'firstName'?:
|
|
2147
|
+
'firstName'?: AttributionAttributeSourceApi | null;
|
|
2152
2148
|
/**
|
|
2153
2149
|
*
|
|
2154
|
-
* @type {
|
|
2150
|
+
* @type {AttributionAttributeSourceApi}
|
|
2155
2151
|
* @memberof AttributionApi
|
|
2156
2152
|
*/
|
|
2157
|
-
'lastName'?:
|
|
2153
|
+
'lastName'?: AttributionAttributeSourceApi | null;
|
|
2158
2154
|
/**
|
|
2159
2155
|
*
|
|
2160
|
-
* @type {
|
|
2156
|
+
* @type {AttributionAttributeSourceApi}
|
|
2161
2157
|
* @memberof AttributionApi
|
|
2162
2158
|
*/
|
|
2163
|
-
'locale'?:
|
|
2159
|
+
'locale'?: AttributionAttributeSourceApi | null;
|
|
2164
2160
|
/**
|
|
2165
2161
|
*
|
|
2166
|
-
* @type {
|
|
2162
|
+
* @type {AttributionAttributeSourceApi}
|
|
2167
2163
|
* @memberof AttributionApi
|
|
2168
2164
|
*/
|
|
2169
|
-
'fullName'?:
|
|
2165
|
+
'fullName'?: AttributionAttributeSourceApi | null;
|
|
2170
2166
|
/**
|
|
2171
2167
|
*
|
|
2172
|
-
* @type {
|
|
2168
|
+
* @type {AttributionAttributeSourceApi}
|
|
2173
2169
|
* @memberof AttributionApi
|
|
2174
2170
|
*/
|
|
2175
|
-
'title'?:
|
|
2171
|
+
'title'?: AttributionAttributeSourceApi | null;
|
|
2176
2172
|
/**
|
|
2177
2173
|
*
|
|
2178
|
-
* @type {
|
|
2174
|
+
* @type {AttributionAttributeSourceApi}
|
|
2179
2175
|
* @memberof AttributionApi
|
|
2180
2176
|
*/
|
|
2181
|
-
'company'?:
|
|
2177
|
+
'company'?: AttributionAttributeSourceApi | null;
|
|
2182
2178
|
/**
|
|
2183
2179
|
*
|
|
2184
|
-
* @type {
|
|
2180
|
+
* @type {AttributionAttributeSourceApi}
|
|
2185
2181
|
* @memberof AttributionApi
|
|
2186
2182
|
*/
|
|
2187
|
-
'profilePicUrlRegular'?:
|
|
2183
|
+
'profilePicUrlRegular'?: AttributionAttributeSourceApi | null;
|
|
2188
2184
|
/**
|
|
2189
2185
|
*
|
|
2190
|
-
* @type {
|
|
2186
|
+
* @type {AttributionAttributeSourceApi}
|
|
2191
2187
|
* @memberof AttributionApi
|
|
2192
2188
|
*/
|
|
2193
|
-
'profilePicUrlLarge'?:
|
|
2189
|
+
'profilePicUrlLarge'?: AttributionAttributeSourceApi | null;
|
|
2194
2190
|
/**
|
|
2195
2191
|
*
|
|
2196
|
-
* @type {
|
|
2192
|
+
* @type {AttributionAttributeSourceApi}
|
|
2197
2193
|
* @memberof AttributionApi
|
|
2198
2194
|
*/
|
|
2199
|
-
'profilePicUrlThumbnail'?:
|
|
2195
|
+
'profilePicUrlThumbnail'?: AttributionAttributeSourceApi | null;
|
|
2200
2196
|
/**
|
|
2201
2197
|
*
|
|
2202
|
-
* @type {
|
|
2198
|
+
* @type {AttributionAttributeSourceApi}
|
|
2203
2199
|
* @memberof AttributionApi
|
|
2204
2200
|
*/
|
|
2205
|
-
'primaryEmail'?:
|
|
2201
|
+
'primaryEmail'?: AttributionAttributeSourceApi | null;
|
|
2206
2202
|
/**
|
|
2207
2203
|
*
|
|
2208
|
-
* @type {
|
|
2204
|
+
* @type {AttributionAttributeSourceApi}
|
|
2209
2205
|
* @memberof AttributionApi
|
|
2210
2206
|
*/
|
|
2211
|
-
'primaryPhone'?:
|
|
2207
|
+
'primaryPhone'?: AttributionAttributeSourceApi | null;
|
|
2212
2208
|
/**
|
|
2213
2209
|
*
|
|
2214
|
-
* @type {
|
|
2210
|
+
* @type {AttributionAttributeSourceApi}
|
|
2215
2211
|
* @memberof AttributionApi
|
|
2216
2212
|
*/
|
|
2217
|
-
'primaryAddress'?:
|
|
2213
|
+
'primaryAddress'?: AttributionAttributeSourceApi | null;
|
|
2214
|
+
}
|
|
2215
|
+
/**
|
|
2216
|
+
*
|
|
2217
|
+
* @export
|
|
2218
|
+
* @interface AttributionAttributeSourceApi
|
|
2219
|
+
*/
|
|
2220
|
+
interface AttributionAttributeSourceApi {
|
|
2221
|
+
/**
|
|
2222
|
+
*
|
|
2223
|
+
* @type {string}
|
|
2224
|
+
* @memberof AttributionAttributeSourceApi
|
|
2225
|
+
*/
|
|
2226
|
+
'providerId': string;
|
|
2227
|
+
/**
|
|
2228
|
+
*
|
|
2229
|
+
* @type {any}
|
|
2230
|
+
* @memberof AttributionAttributeSourceApi
|
|
2231
|
+
*/
|
|
2232
|
+
'value': any;
|
|
2218
2233
|
}
|
|
2219
2234
|
/**
|
|
2220
2235
|
*
|
|
@@ -2292,19 +2307,6 @@ declare const BotApiParticipantTypeEnum: {
|
|
|
2292
2307
|
readonly Bot: "BOT";
|
|
2293
2308
|
};
|
|
2294
2309
|
type BotApiParticipantTypeEnum = typeof BotApiParticipantTypeEnum[keyof typeof BotApiParticipantTypeEnum];
|
|
2295
|
-
/**
|
|
2296
|
-
*
|
|
2297
|
-
* @export
|
|
2298
|
-
* @interface ChannelInfoApi
|
|
2299
|
-
*/
|
|
2300
|
-
interface ChannelInfoApi {
|
|
2301
|
-
/**
|
|
2302
|
-
*
|
|
2303
|
-
* @type {ReservationChannelTypes}
|
|
2304
|
-
* @memberof ChannelInfoApi
|
|
2305
|
-
*/
|
|
2306
|
-
'channelName': ReservationChannelTypes;
|
|
2307
|
-
}
|
|
2308
2310
|
/**
|
|
2309
2311
|
*
|
|
2310
2312
|
* @export
|
|
@@ -2330,11 +2332,6 @@ interface ContactTypeDataApi {
|
|
|
2330
2332
|
*/
|
|
2331
2333
|
'lead'?: LeadDataApi | null;
|
|
2332
2334
|
}
|
|
2333
|
-
/**
|
|
2334
|
-
* @type Contactid
|
|
2335
|
-
* @export
|
|
2336
|
-
*/
|
|
2337
|
-
type Contactid = string;
|
|
2338
2335
|
/**
|
|
2339
2336
|
*
|
|
2340
2337
|
* @export
|
|
@@ -2464,47 +2461,6 @@ interface Create {
|
|
|
2464
2461
|
*/
|
|
2465
2462
|
'contentTypeData': Contenttypedata2;
|
|
2466
2463
|
}
|
|
2467
|
-
/**
|
|
2468
|
-
*
|
|
2469
|
-
* @export
|
|
2470
|
-
* @interface CreateApi
|
|
2471
|
-
*/
|
|
2472
|
-
interface CreateApi {
|
|
2473
|
-
/**
|
|
2474
|
-
*
|
|
2475
|
-
* @type {string}
|
|
2476
|
-
* @memberof CreateApi
|
|
2477
|
-
*/
|
|
2478
|
-
'messageType': CreateApiMessageTypeEnum;
|
|
2479
|
-
/**
|
|
2480
|
-
*
|
|
2481
|
-
* @type {string}
|
|
2482
|
-
* @memberof CreateApi
|
|
2483
|
-
*/
|
|
2484
|
-
'outboundFromManagedEmailId'?: string | null;
|
|
2485
|
-
/**
|
|
2486
|
-
*
|
|
2487
|
-
* @type {string}
|
|
2488
|
-
* @memberof CreateApi
|
|
2489
|
-
*/
|
|
2490
|
-
'subject': string;
|
|
2491
|
-
/**
|
|
2492
|
-
*
|
|
2493
|
-
* @type {string}
|
|
2494
|
-
* @memberof CreateApi
|
|
2495
|
-
*/
|
|
2496
|
-
'htmlBody': string | null;
|
|
2497
|
-
/**
|
|
2498
|
-
*
|
|
2499
|
-
* @type {string}
|
|
2500
|
-
* @memberof CreateApi
|
|
2501
|
-
*/
|
|
2502
|
-
'plainBody': string | null;
|
|
2503
|
-
}
|
|
2504
|
-
declare const CreateApiMessageTypeEnum: {
|
|
2505
|
-
readonly Email: "EMAIL";
|
|
2506
|
-
};
|
|
2507
|
-
type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
|
|
2508
2464
|
/**
|
|
2509
2465
|
*
|
|
2510
2466
|
* @export
|
|
@@ -2664,6 +2620,44 @@ declare const EmailInboxApiInboxTypeEnum: {
|
|
|
2664
2620
|
readonly Email: "EMAIL";
|
|
2665
2621
|
};
|
|
2666
2622
|
type EmailInboxApiInboxTypeEnum = typeof EmailInboxApiInboxTypeEnum[keyof typeof EmailInboxApiInboxTypeEnum];
|
|
2623
|
+
/**
|
|
2624
|
+
*
|
|
2625
|
+
* @export
|
|
2626
|
+
* @interface EmailProviderEmailsApi
|
|
2627
|
+
*/
|
|
2628
|
+
interface EmailProviderEmailsApi {
|
|
2629
|
+
/**
|
|
2630
|
+
*
|
|
2631
|
+
* @type {string}
|
|
2632
|
+
* @memberof EmailProviderEmailsApi
|
|
2633
|
+
*/
|
|
2634
|
+
'email': string;
|
|
2635
|
+
/**
|
|
2636
|
+
*
|
|
2637
|
+
* @type {Array<EmailProviderEmailsProviderAttributionApi>}
|
|
2638
|
+
* @memberof EmailProviderEmailsApi
|
|
2639
|
+
*/
|
|
2640
|
+
'providers': Array<EmailProviderEmailsProviderAttributionApi>;
|
|
2641
|
+
}
|
|
2642
|
+
/**
|
|
2643
|
+
*
|
|
2644
|
+
* @export
|
|
2645
|
+
* @interface EmailProviderEmailsProviderAttributionApi
|
|
2646
|
+
*/
|
|
2647
|
+
interface EmailProviderEmailsProviderAttributionApi {
|
|
2648
|
+
/**
|
|
2649
|
+
*
|
|
2650
|
+
* @type {string}
|
|
2651
|
+
* @memberof EmailProviderEmailsProviderAttributionApi
|
|
2652
|
+
*/
|
|
2653
|
+
'providerId': string;
|
|
2654
|
+
/**
|
|
2655
|
+
*
|
|
2656
|
+
* @type {Array<ReservationChannelTypes>}
|
|
2657
|
+
* @memberof EmailProviderEmailsProviderAttributionApi
|
|
2658
|
+
*/
|
|
2659
|
+
'channels': Array<ReservationChannelTypes>;
|
|
2660
|
+
}
|
|
2667
2661
|
/**
|
|
2668
2662
|
*
|
|
2669
2663
|
* @export
|
|
@@ -2702,26 +2696,44 @@ type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMess
|
|
|
2702
2696
|
/**
|
|
2703
2697
|
*
|
|
2704
2698
|
* @export
|
|
2705
|
-
* @interface
|
|
2699
|
+
* @interface EmailProviderMessageCreateApi
|
|
2706
2700
|
*/
|
|
2707
|
-
interface
|
|
2701
|
+
interface EmailProviderMessageCreateApi {
|
|
2708
2702
|
/**
|
|
2709
2703
|
*
|
|
2710
2704
|
* @type {string}
|
|
2711
|
-
* @memberof
|
|
2705
|
+
* @memberof EmailProviderMessageCreateApi
|
|
2712
2706
|
*/
|
|
2713
|
-
'
|
|
2707
|
+
'messageType': EmailProviderMessageCreateApiMessageTypeEnum;
|
|
2714
2708
|
/**
|
|
2715
2709
|
*
|
|
2716
2710
|
* @type {string}
|
|
2717
|
-
* @memberof
|
|
2711
|
+
* @memberof EmailProviderMessageCreateApi
|
|
2718
2712
|
*/
|
|
2719
|
-
'
|
|
2713
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2714
|
+
/**
|
|
2715
|
+
*
|
|
2716
|
+
* @type {string}
|
|
2717
|
+
* @memberof EmailProviderMessageCreateApi
|
|
2718
|
+
*/
|
|
2719
|
+
'subject': string;
|
|
2720
|
+
/**
|
|
2721
|
+
*
|
|
2722
|
+
* @type {string}
|
|
2723
|
+
* @memberof EmailProviderMessageCreateApi
|
|
2724
|
+
*/
|
|
2725
|
+
'htmlBody': string | null;
|
|
2726
|
+
/**
|
|
2727
|
+
*
|
|
2728
|
+
* @type {string}
|
|
2729
|
+
* @memberof EmailProviderMessageCreateApi
|
|
2730
|
+
*/
|
|
2731
|
+
'plainBody': string | null;
|
|
2720
2732
|
}
|
|
2721
|
-
declare const
|
|
2722
|
-
readonly
|
|
2733
|
+
declare const EmailProviderMessageCreateApiMessageTypeEnum: {
|
|
2734
|
+
readonly Email: "EMAIL";
|
|
2723
2735
|
};
|
|
2724
|
-
type
|
|
2736
|
+
type EmailProviderMessageCreateApiMessageTypeEnum = typeof EmailProviderMessageCreateApiMessageTypeEnum[keyof typeof EmailProviderMessageCreateApiMessageTypeEnum];
|
|
2725
2737
|
/**
|
|
2726
2738
|
* File content type (PDF, image, document, etc.).
|
|
2727
2739
|
* @export
|
|
@@ -2975,29 +2987,6 @@ declare const InquiryTypeUpdateRelationTypeEnum: {
|
|
|
2975
2987
|
readonly Inquiry: "INQUIRY";
|
|
2976
2988
|
};
|
|
2977
2989
|
type InquiryTypeUpdateRelationTypeEnum = typeof InquiryTypeUpdateRelationTypeEnum[keyof typeof InquiryTypeUpdateRelationTypeEnum];
|
|
2978
|
-
/**
|
|
2979
|
-
*
|
|
2980
|
-
* @export
|
|
2981
|
-
* @interface InternalStaffApi
|
|
2982
|
-
*/
|
|
2983
|
-
interface InternalStaffApi {
|
|
2984
|
-
/**
|
|
2985
|
-
*
|
|
2986
|
-
* @type {string}
|
|
2987
|
-
* @memberof InternalStaffApi
|
|
2988
|
-
*/
|
|
2989
|
-
'staffType': InternalStaffApiStaffTypeEnum;
|
|
2990
|
-
/**
|
|
2991
|
-
*
|
|
2992
|
-
* @type {string}
|
|
2993
|
-
* @memberof InternalStaffApi
|
|
2994
|
-
*/
|
|
2995
|
-
'userId': string;
|
|
2996
|
-
}
|
|
2997
|
-
declare const InternalStaffApiStaffTypeEnum: {
|
|
2998
|
-
readonly InternalStaff: "INTERNAL_STAFF";
|
|
2999
|
-
};
|
|
3000
|
-
type InternalStaffApiStaffTypeEnum = typeof InternalStaffApiStaffTypeEnum[keyof typeof InternalStaffApiStaffTypeEnum];
|
|
3001
2990
|
/**
|
|
3002
2991
|
*
|
|
3003
2992
|
* @export
|
|
@@ -3282,6 +3271,25 @@ interface MessageAttachmentApi {
|
|
|
3282
3271
|
*/
|
|
3283
3272
|
'extension'?: string | null;
|
|
3284
3273
|
}
|
|
3274
|
+
/**
|
|
3275
|
+
*
|
|
3276
|
+
* @export
|
|
3277
|
+
* @interface MessageCreateWithSuggestionApi
|
|
3278
|
+
*/
|
|
3279
|
+
interface MessageCreateWithSuggestionApi {
|
|
3280
|
+
/**
|
|
3281
|
+
*
|
|
3282
|
+
* @type {string}
|
|
3283
|
+
* @memberof MessageCreateWithSuggestionApi
|
|
3284
|
+
*/
|
|
3285
|
+
'suggestionId': string;
|
|
3286
|
+
/**
|
|
3287
|
+
*
|
|
3288
|
+
* @type {SuggestionRejectionReasonType}
|
|
3289
|
+
* @memberof MessageCreateWithSuggestionApi
|
|
3290
|
+
*/
|
|
3291
|
+
'rejectionReason': SuggestionRejectionReasonType;
|
|
3292
|
+
}
|
|
3285
3293
|
/**
|
|
3286
3294
|
*
|
|
3287
3295
|
* @export
|
|
@@ -3317,7 +3325,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
|
|
|
3317
3325
|
* @type Messagetypedata1
|
|
3318
3326
|
* @export
|
|
3319
3327
|
*/
|
|
3320
|
-
type Messagetypedata1 =
|
|
3328
|
+
type Messagetypedata1 = EmailProviderMessageCreateApi | RentalProviderMessageCreateApi | SMSMessageCreateApi;
|
|
3321
3329
|
/**
|
|
3322
3330
|
*
|
|
3323
3331
|
* @export
|
|
@@ -3666,6 +3674,44 @@ declare const PhoneInboxApiInboxTypeEnum: {
|
|
|
3666
3674
|
readonly Text: "TEXT";
|
|
3667
3675
|
};
|
|
3668
3676
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
3677
|
+
/**
|
|
3678
|
+
*
|
|
3679
|
+
* @export
|
|
3680
|
+
* @interface PhoneProviderPhonesApi
|
|
3681
|
+
*/
|
|
3682
|
+
interface PhoneProviderPhonesApi {
|
|
3683
|
+
/**
|
|
3684
|
+
*
|
|
3685
|
+
* @type {string}
|
|
3686
|
+
* @memberof PhoneProviderPhonesApi
|
|
3687
|
+
*/
|
|
3688
|
+
'phone': string;
|
|
3689
|
+
/**
|
|
3690
|
+
*
|
|
3691
|
+
* @type {Array<PhoneProviderPhonesProviderAttributionApi>}
|
|
3692
|
+
* @memberof PhoneProviderPhonesApi
|
|
3693
|
+
*/
|
|
3694
|
+
'providers': Array<PhoneProviderPhonesProviderAttributionApi>;
|
|
3695
|
+
}
|
|
3696
|
+
/**
|
|
3697
|
+
*
|
|
3698
|
+
* @export
|
|
3699
|
+
* @interface PhoneProviderPhonesProviderAttributionApi
|
|
3700
|
+
*/
|
|
3701
|
+
interface PhoneProviderPhonesProviderAttributionApi {
|
|
3702
|
+
/**
|
|
3703
|
+
*
|
|
3704
|
+
* @type {string}
|
|
3705
|
+
* @memberof PhoneProviderPhonesProviderAttributionApi
|
|
3706
|
+
*/
|
|
3707
|
+
'providerId': string;
|
|
3708
|
+
/**
|
|
3709
|
+
*
|
|
3710
|
+
* @type {Array<ReservationChannelTypes>}
|
|
3711
|
+
* @memberof PhoneProviderPhonesProviderAttributionApi
|
|
3712
|
+
*/
|
|
3713
|
+
'channels': Array<ReservationChannelTypes>;
|
|
3714
|
+
}
|
|
3669
3715
|
/**
|
|
3670
3716
|
* Plain text content type. The text content is stored in Content.description.
|
|
3671
3717
|
* @export
|
|
@@ -3758,44 +3804,6 @@ declare const ProviderAccountInboxApiInboxTypeEnum: {
|
|
|
3758
3804
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
3759
3805
|
};
|
|
3760
3806
|
type ProviderAccountInboxApiInboxTypeEnum = typeof ProviderAccountInboxApiInboxTypeEnum[keyof typeof ProviderAccountInboxApiInboxTypeEnum];
|
|
3761
|
-
/**
|
|
3762
|
-
*
|
|
3763
|
-
* @export
|
|
3764
|
-
* @interface ProviderAddressesApi
|
|
3765
|
-
*/
|
|
3766
|
-
interface ProviderAddressesApi {
|
|
3767
|
-
/**
|
|
3768
|
-
*
|
|
3769
|
-
* @type {BaseAddressApi}
|
|
3770
|
-
* @memberof ProviderAddressesApi
|
|
3771
|
-
*/
|
|
3772
|
-
'address': BaseAddressApi;
|
|
3773
|
-
/**
|
|
3774
|
-
*
|
|
3775
|
-
* @type {Array<ProviderAttributionApi>}
|
|
3776
|
-
* @memberof ProviderAddressesApi
|
|
3777
|
-
*/
|
|
3778
|
-
'providers': Array<ProviderAttributionApi>;
|
|
3779
|
-
}
|
|
3780
|
-
/**
|
|
3781
|
-
*
|
|
3782
|
-
* @export
|
|
3783
|
-
* @interface ProviderAttributionApi
|
|
3784
|
-
*/
|
|
3785
|
-
interface ProviderAttributionApi {
|
|
3786
|
-
/**
|
|
3787
|
-
*
|
|
3788
|
-
* @type {string}
|
|
3789
|
-
* @memberof ProviderAttributionApi
|
|
3790
|
-
*/
|
|
3791
|
-
'providerId': string;
|
|
3792
|
-
/**
|
|
3793
|
-
*
|
|
3794
|
-
* @type {Array<ReservationChannelTypes>}
|
|
3795
|
-
* @memberof ProviderAttributionApi
|
|
3796
|
-
*/
|
|
3797
|
-
'channels': Array<ReservationChannelTypes>;
|
|
3798
|
-
}
|
|
3799
3807
|
/**
|
|
3800
3808
|
*
|
|
3801
3809
|
* @export
|
|
@@ -3886,104 +3894,6 @@ declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
|
3886
3894
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
3887
3895
|
};
|
|
3888
3896
|
type ProviderConversationDataApiConversationTypeEnum = typeof ProviderConversationDataApiConversationTypeEnum[keyof typeof ProviderConversationDataApiConversationTypeEnum];
|
|
3889
|
-
/**
|
|
3890
|
-
*
|
|
3891
|
-
* @export
|
|
3892
|
-
* @interface ProviderEmailsApi
|
|
3893
|
-
*/
|
|
3894
|
-
interface ProviderEmailsApi {
|
|
3895
|
-
/**
|
|
3896
|
-
*
|
|
3897
|
-
* @type {string}
|
|
3898
|
-
* @memberof ProviderEmailsApi
|
|
3899
|
-
*/
|
|
3900
|
-
'email': string;
|
|
3901
|
-
/**
|
|
3902
|
-
*
|
|
3903
|
-
* @type {Array<ProviderAttributionApi>}
|
|
3904
|
-
* @memberof ProviderEmailsApi
|
|
3905
|
-
*/
|
|
3906
|
-
'providers': Array<ProviderAttributionApi>;
|
|
3907
|
-
}
|
|
3908
|
-
/**
|
|
3909
|
-
*
|
|
3910
|
-
* @export
|
|
3911
|
-
* @interface ProviderInfoApi
|
|
3912
|
-
*/
|
|
3913
|
-
interface ProviderInfoApi {
|
|
3914
|
-
/**
|
|
3915
|
-
*
|
|
3916
|
-
* @type {string}
|
|
3917
|
-
* @memberof ProviderInfoApi
|
|
3918
|
-
*/
|
|
3919
|
-
'providerId': string;
|
|
3920
|
-
/**
|
|
3921
|
-
*
|
|
3922
|
-
* @type {string}
|
|
3923
|
-
* @memberof ProviderInfoApi
|
|
3924
|
-
*/
|
|
3925
|
-
'providerReservationId': string;
|
|
3926
|
-
/**
|
|
3927
|
-
*
|
|
3928
|
-
* @type {string}
|
|
3929
|
-
* @memberof ProviderInfoApi
|
|
3930
|
-
*/
|
|
3931
|
-
'providerCreatedAt': string;
|
|
3932
|
-
/**
|
|
3933
|
-
*
|
|
3934
|
-
* @type {string}
|
|
3935
|
-
* @memberof ProviderInfoApi
|
|
3936
|
-
*/
|
|
3937
|
-
'providerReservationUrl': string | null;
|
|
3938
|
-
}
|
|
3939
|
-
/**
|
|
3940
|
-
*
|
|
3941
|
-
* @export
|
|
3942
|
-
* @interface ProviderPhonesApi
|
|
3943
|
-
*/
|
|
3944
|
-
interface ProviderPhonesApi {
|
|
3945
|
-
/**
|
|
3946
|
-
*
|
|
3947
|
-
* @type {string}
|
|
3948
|
-
* @memberof ProviderPhonesApi
|
|
3949
|
-
*/
|
|
3950
|
-
'phone': string;
|
|
3951
|
-
/**
|
|
3952
|
-
*
|
|
3953
|
-
* @type {Array<ProviderAttributionApi>}
|
|
3954
|
-
* @memberof ProviderPhonesApi
|
|
3955
|
-
*/
|
|
3956
|
-
'providers': Array<ProviderAttributionApi>;
|
|
3957
|
-
}
|
|
3958
|
-
/**
|
|
3959
|
-
*
|
|
3960
|
-
* @export
|
|
3961
|
-
* @interface ProviderStaffApi
|
|
3962
|
-
*/
|
|
3963
|
-
interface ProviderStaffApi {
|
|
3964
|
-
/**
|
|
3965
|
-
*
|
|
3966
|
-
* @type {string}
|
|
3967
|
-
* @memberof ProviderStaffApi
|
|
3968
|
-
*/
|
|
3969
|
-
'staffType': ProviderStaffApiStaffTypeEnum;
|
|
3970
|
-
/**
|
|
3971
|
-
*
|
|
3972
|
-
* @type {string}
|
|
3973
|
-
* @memberof ProviderStaffApi
|
|
3974
|
-
*/
|
|
3975
|
-
'providerUserId': string;
|
|
3976
|
-
/**
|
|
3977
|
-
*
|
|
3978
|
-
* @type {string}
|
|
3979
|
-
* @memberof ProviderStaffApi
|
|
3980
|
-
*/
|
|
3981
|
-
'providerReadAt'?: string | null;
|
|
3982
|
-
}
|
|
3983
|
-
declare const ProviderStaffApiStaffTypeEnum: {
|
|
3984
|
-
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
3985
|
-
};
|
|
3986
|
-
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
3987
3897
|
/**
|
|
3988
3898
|
*
|
|
3989
3899
|
* @export
|
|
@@ -4026,6 +3936,29 @@ declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
|
4026
3936
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
4027
3937
|
};
|
|
4028
3938
|
type RentalProviderMessageApiMessageTypeEnum = typeof RentalProviderMessageApiMessageTypeEnum[keyof typeof RentalProviderMessageApiMessageTypeEnum];
|
|
3939
|
+
/**
|
|
3940
|
+
*
|
|
3941
|
+
* @export
|
|
3942
|
+
* @interface RentalProviderMessageCreateApi
|
|
3943
|
+
*/
|
|
3944
|
+
interface RentalProviderMessageCreateApi {
|
|
3945
|
+
/**
|
|
3946
|
+
*
|
|
3947
|
+
* @type {string}
|
|
3948
|
+
* @memberof RentalProviderMessageCreateApi
|
|
3949
|
+
*/
|
|
3950
|
+
'messageType': RentalProviderMessageCreateApiMessageTypeEnum;
|
|
3951
|
+
/**
|
|
3952
|
+
*
|
|
3953
|
+
* @type {ProviderCommunicationTypeInput}
|
|
3954
|
+
* @memberof RentalProviderMessageCreateApi
|
|
3955
|
+
*/
|
|
3956
|
+
'communicationType': ProviderCommunicationTypeInput;
|
|
3957
|
+
}
|
|
3958
|
+
declare const RentalProviderMessageCreateApiMessageTypeEnum: {
|
|
3959
|
+
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
3960
|
+
};
|
|
3961
|
+
type RentalProviderMessageCreateApiMessageTypeEnum = typeof RentalProviderMessageCreateApiMessageTypeEnum[keyof typeof RentalProviderMessageCreateApiMessageTypeEnum];
|
|
4029
3962
|
/**
|
|
4030
3963
|
*
|
|
4031
3964
|
* @export
|
|
@@ -4037,6 +3970,19 @@ declare const RentalProviderTypes: {
|
|
|
4037
3970
|
readonly Unbound: "UNBOUND";
|
|
4038
3971
|
};
|
|
4039
3972
|
type RentalProviderTypes = typeof RentalProviderTypes[keyof typeof RentalProviderTypes];
|
|
3973
|
+
/**
|
|
3974
|
+
*
|
|
3975
|
+
* @export
|
|
3976
|
+
* @interface ReservationBaseModelChannelInfoApi
|
|
3977
|
+
*/
|
|
3978
|
+
interface ReservationBaseModelChannelInfoApi {
|
|
3979
|
+
/**
|
|
3980
|
+
*
|
|
3981
|
+
* @type {ReservationChannelTypes}
|
|
3982
|
+
* @memberof ReservationBaseModelChannelInfoApi
|
|
3983
|
+
*/
|
|
3984
|
+
'channelName': ReservationChannelTypes;
|
|
3985
|
+
}
|
|
4040
3986
|
/**
|
|
4041
3987
|
*
|
|
4042
3988
|
* @export
|
|
@@ -4061,6 +4007,37 @@ declare const ReservationChannelTypes: {
|
|
|
4061
4007
|
readonly UnboundDirect: "UNBOUND_DIRECT";
|
|
4062
4008
|
};
|
|
4063
4009
|
type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof ReservationChannelTypes];
|
|
4010
|
+
/**
|
|
4011
|
+
*
|
|
4012
|
+
* @export
|
|
4013
|
+
* @interface ReservationProviderInfoApi
|
|
4014
|
+
*/
|
|
4015
|
+
interface ReservationProviderInfoApi {
|
|
4016
|
+
/**
|
|
4017
|
+
*
|
|
4018
|
+
* @type {string}
|
|
4019
|
+
* @memberof ReservationProviderInfoApi
|
|
4020
|
+
*/
|
|
4021
|
+
'providerId': string;
|
|
4022
|
+
/**
|
|
4023
|
+
*
|
|
4024
|
+
* @type {string}
|
|
4025
|
+
* @memberof ReservationProviderInfoApi
|
|
4026
|
+
*/
|
|
4027
|
+
'providerReservationId': string;
|
|
4028
|
+
/**
|
|
4029
|
+
*
|
|
4030
|
+
* @type {string}
|
|
4031
|
+
* @memberof ReservationProviderInfoApi
|
|
4032
|
+
*/
|
|
4033
|
+
'providerCreatedAt': string;
|
|
4034
|
+
/**
|
|
4035
|
+
*
|
|
4036
|
+
* @type {string}
|
|
4037
|
+
* @memberof ReservationProviderInfoApi
|
|
4038
|
+
*/
|
|
4039
|
+
'providerReservationUrl': string | null;
|
|
4040
|
+
}
|
|
4064
4041
|
/**
|
|
4065
4042
|
*
|
|
4066
4043
|
* @export
|
|
@@ -4093,6 +4070,41 @@ declare const SMSConversationDataApiConversationTypeEnum: {
|
|
|
4093
4070
|
readonly Text: "TEXT";
|
|
4094
4071
|
};
|
|
4095
4072
|
type SMSConversationDataApiConversationTypeEnum = typeof SMSConversationDataApiConversationTypeEnum[keyof typeof SMSConversationDataApiConversationTypeEnum];
|
|
4073
|
+
/**
|
|
4074
|
+
*
|
|
4075
|
+
* @export
|
|
4076
|
+
* @interface SMSConversationDataCreateApi
|
|
4077
|
+
*/
|
|
4078
|
+
interface SMSConversationDataCreateApi {
|
|
4079
|
+
/**
|
|
4080
|
+
*
|
|
4081
|
+
* @type {string}
|
|
4082
|
+
* @memberof SMSConversationDataCreateApi
|
|
4083
|
+
*/
|
|
4084
|
+
'conversationType': SMSConversationDataCreateApiConversationTypeEnum;
|
|
4085
|
+
/**
|
|
4086
|
+
*
|
|
4087
|
+
* @type {Array<ToPhoneApi>}
|
|
4088
|
+
* @memberof SMSConversationDataCreateApi
|
|
4089
|
+
*/
|
|
4090
|
+
'toPhones': Array<ToPhoneApi>;
|
|
4091
|
+
/**
|
|
4092
|
+
*
|
|
4093
|
+
* @type {string}
|
|
4094
|
+
* @memberof SMSConversationDataCreateApi
|
|
4095
|
+
*/
|
|
4096
|
+
'managedPhoneId'?: string | null;
|
|
4097
|
+
/**
|
|
4098
|
+
*
|
|
4099
|
+
* @type {string}
|
|
4100
|
+
* @memberof SMSConversationDataCreateApi
|
|
4101
|
+
*/
|
|
4102
|
+
'providerGroupId'?: string | null;
|
|
4103
|
+
}
|
|
4104
|
+
declare const SMSConversationDataCreateApiConversationTypeEnum: {
|
|
4105
|
+
readonly Text: "TEXT";
|
|
4106
|
+
};
|
|
4107
|
+
type SMSConversationDataCreateApiConversationTypeEnum = typeof SMSConversationDataCreateApiConversationTypeEnum[keyof typeof SMSConversationDataCreateApiConversationTypeEnum];
|
|
4096
4108
|
/**
|
|
4097
4109
|
*
|
|
4098
4110
|
* @export
|
|
@@ -4164,6 +4176,29 @@ declare const SMSMessageApiMessageTypeEnum: {
|
|
|
4164
4176
|
readonly Text: "TEXT";
|
|
4165
4177
|
};
|
|
4166
4178
|
type SMSMessageApiMessageTypeEnum = typeof SMSMessageApiMessageTypeEnum[keyof typeof SMSMessageApiMessageTypeEnum];
|
|
4179
|
+
/**
|
|
4180
|
+
*
|
|
4181
|
+
* @export
|
|
4182
|
+
* @interface SMSMessageCreateApi
|
|
4183
|
+
*/
|
|
4184
|
+
interface SMSMessageCreateApi {
|
|
4185
|
+
/**
|
|
4186
|
+
*
|
|
4187
|
+
* @type {string}
|
|
4188
|
+
* @memberof SMSMessageCreateApi
|
|
4189
|
+
*/
|
|
4190
|
+
'messageType': SMSMessageCreateApiMessageTypeEnum;
|
|
4191
|
+
/**
|
|
4192
|
+
*
|
|
4193
|
+
* @type {Array<string>}
|
|
4194
|
+
* @memberof SMSMessageCreateApi
|
|
4195
|
+
*/
|
|
4196
|
+
'mediaUrls'?: Array<string> | null;
|
|
4197
|
+
}
|
|
4198
|
+
declare const SMSMessageCreateApiMessageTypeEnum: {
|
|
4199
|
+
readonly Text: "TEXT";
|
|
4200
|
+
};
|
|
4201
|
+
type SMSMessageCreateApiMessageTypeEnum = typeof SMSMessageCreateApiMessageTypeEnum[keyof typeof SMSMessageCreateApiMessageTypeEnum];
|
|
4167
4202
|
/**
|
|
4168
4203
|
* Telnyx SMS message status values. Mirrors the `status` field in Message API responses and status-callback webhooks.
|
|
4169
4204
|
* @export
|
|
@@ -4256,11 +4291,86 @@ declare const StaffApiParticipantTypeEnum: {
|
|
|
4256
4291
|
readonly Staff: "STAFF";
|
|
4257
4292
|
};
|
|
4258
4293
|
type StaffApiParticipantTypeEnum = typeof StaffApiParticipantTypeEnum[keyof typeof StaffApiParticipantTypeEnum];
|
|
4294
|
+
/**
|
|
4295
|
+
*
|
|
4296
|
+
* @export
|
|
4297
|
+
* @interface StaffExternalStaffApi
|
|
4298
|
+
*/
|
|
4299
|
+
interface StaffExternalStaffApi {
|
|
4300
|
+
/**
|
|
4301
|
+
*
|
|
4302
|
+
* @type {string}
|
|
4303
|
+
* @memberof StaffExternalStaffApi
|
|
4304
|
+
*/
|
|
4305
|
+
'staffType': StaffExternalStaffApiStaffTypeEnum;
|
|
4306
|
+
/**
|
|
4307
|
+
*
|
|
4308
|
+
* @type {string}
|
|
4309
|
+
* @memberof StaffExternalStaffApi
|
|
4310
|
+
*/
|
|
4311
|
+
'contactId': string;
|
|
4312
|
+
}
|
|
4313
|
+
declare const StaffExternalStaffApiStaffTypeEnum: {
|
|
4314
|
+
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
4315
|
+
};
|
|
4316
|
+
type StaffExternalStaffApiStaffTypeEnum = typeof StaffExternalStaffApiStaffTypeEnum[keyof typeof StaffExternalStaffApiStaffTypeEnum];
|
|
4317
|
+
/**
|
|
4318
|
+
*
|
|
4319
|
+
* @export
|
|
4320
|
+
* @interface StaffInternalStaffApi
|
|
4321
|
+
*/
|
|
4322
|
+
interface StaffInternalStaffApi {
|
|
4323
|
+
/**
|
|
4324
|
+
*
|
|
4325
|
+
* @type {string}
|
|
4326
|
+
* @memberof StaffInternalStaffApi
|
|
4327
|
+
*/
|
|
4328
|
+
'staffType': StaffInternalStaffApiStaffTypeEnum;
|
|
4329
|
+
/**
|
|
4330
|
+
*
|
|
4331
|
+
* @type {string}
|
|
4332
|
+
* @memberof StaffInternalStaffApi
|
|
4333
|
+
*/
|
|
4334
|
+
'userId': string;
|
|
4335
|
+
}
|
|
4336
|
+
declare const StaffInternalStaffApiStaffTypeEnum: {
|
|
4337
|
+
readonly InternalStaff: "INTERNAL_STAFF";
|
|
4338
|
+
};
|
|
4339
|
+
type StaffInternalStaffApiStaffTypeEnum = typeof StaffInternalStaffApiStaffTypeEnum[keyof typeof StaffInternalStaffApiStaffTypeEnum];
|
|
4340
|
+
/**
|
|
4341
|
+
*
|
|
4342
|
+
* @export
|
|
4343
|
+
* @interface StaffProviderStaffApi
|
|
4344
|
+
*/
|
|
4345
|
+
interface StaffProviderStaffApi {
|
|
4346
|
+
/**
|
|
4347
|
+
*
|
|
4348
|
+
* @type {string}
|
|
4349
|
+
* @memberof StaffProviderStaffApi
|
|
4350
|
+
*/
|
|
4351
|
+
'staffType': StaffProviderStaffApiStaffTypeEnum;
|
|
4352
|
+
/**
|
|
4353
|
+
*
|
|
4354
|
+
* @type {string}
|
|
4355
|
+
* @memberof StaffProviderStaffApi
|
|
4356
|
+
*/
|
|
4357
|
+
'providerUserId': string;
|
|
4358
|
+
/**
|
|
4359
|
+
*
|
|
4360
|
+
* @type {string}
|
|
4361
|
+
* @memberof StaffProviderStaffApi
|
|
4362
|
+
*/
|
|
4363
|
+
'providerReadAt'?: string | null;
|
|
4364
|
+
}
|
|
4365
|
+
declare const StaffProviderStaffApiStaffTypeEnum: {
|
|
4366
|
+
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
4367
|
+
};
|
|
4368
|
+
type StaffProviderStaffApiStaffTypeEnum = typeof StaffProviderStaffApiStaffTypeEnum[keyof typeof StaffProviderStaffApiStaffTypeEnum];
|
|
4259
4369
|
/**
|
|
4260
4370
|
* @type Stafftypedata
|
|
4261
4371
|
* @export
|
|
4262
4372
|
*/
|
|
4263
|
-
type Stafftypedata =
|
|
4373
|
+
type Stafftypedata = StaffExternalStaffApi | StaffInternalStaffApi | StaffProviderStaffApi;
|
|
4264
4374
|
/**
|
|
4265
4375
|
*
|
|
4266
4376
|
* @export
|
|
@@ -4463,7 +4573,6 @@ interface ToItemApi {
|
|
|
4463
4573
|
* @interface ToPhoneApi
|
|
4464
4574
|
*/
|
|
4465
4575
|
interface ToPhoneApi {
|
|
4466
|
-
[key: string]: any;
|
|
4467
4576
|
/**
|
|
4468
4577
|
*
|
|
4469
4578
|
* @type {string}
|
|
@@ -4472,10 +4581,10 @@ interface ToPhoneApi {
|
|
|
4472
4581
|
'phone': string;
|
|
4473
4582
|
/**
|
|
4474
4583
|
*
|
|
4475
|
-
* @type {
|
|
4584
|
+
* @type {string}
|
|
4476
4585
|
* @memberof ToPhoneApi
|
|
4477
4586
|
*/
|
|
4478
|
-
'contactId'?:
|
|
4587
|
+
'contactId'?: string | null;
|
|
4479
4588
|
}
|
|
4480
4589
|
/**
|
|
4481
4590
|
* External URL content type.
|
|
@@ -4694,25 +4803,6 @@ declare const UserDeviceOs: {
|
|
|
4694
4803
|
readonly Web: "WEB";
|
|
4695
4804
|
};
|
|
4696
4805
|
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
4697
|
-
/**
|
|
4698
|
-
*
|
|
4699
|
-
* @export
|
|
4700
|
-
* @interface WithSuggestionApi
|
|
4701
|
-
*/
|
|
4702
|
-
interface WithSuggestionApi {
|
|
4703
|
-
/**
|
|
4704
|
-
*
|
|
4705
|
-
* @type {string}
|
|
4706
|
-
* @memberof WithSuggestionApi
|
|
4707
|
-
*/
|
|
4708
|
-
'suggestionId': string;
|
|
4709
|
-
/**
|
|
4710
|
-
*
|
|
4711
|
-
* @type {SuggestionRejectionReasonType}
|
|
4712
|
-
* @memberof WithSuggestionApi
|
|
4713
|
-
*/
|
|
4714
|
-
'rejectionReason': SuggestionRejectionReasonType;
|
|
4715
|
-
}
|
|
4716
4806
|
/**
|
|
4717
4807
|
* AccessTokensApi - axios parameter creator
|
|
4718
4808
|
* @export
|
|
@@ -4982,7 +5072,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4982
5072
|
addressesUpdate: (addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4983
5073
|
/**
|
|
4984
5074
|
* Associates a contact with a listing with the OWNER type.
|
|
4985
|
-
* @summary
|
|
5075
|
+
* @summary Contact Listing Create
|
|
4986
5076
|
* @param {string} contactId
|
|
4987
5077
|
* @param {string} listingId
|
|
4988
5078
|
* @param {CreateContactListing} createContactListing
|
|
@@ -5029,7 +5119,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5029
5119
|
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5030
5120
|
/**
|
|
5031
5121
|
* Removes an association between a contact and a listing.
|
|
5032
|
-
* @summary
|
|
5122
|
+
* @summary Contact Listing Delete
|
|
5033
5123
|
* @param {string} contactId
|
|
5034
5124
|
* @param {string} listingId
|
|
5035
5125
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -5048,7 +5138,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5048
5138
|
contactsUpdate: (contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5049
5139
|
/**
|
|
5050
5140
|
* Updates an association between a contact and a listing.
|
|
5051
|
-
* @summary
|
|
5141
|
+
* @summary Contact Listing Update
|
|
5052
5142
|
* @param {string} contactId
|
|
5053
5143
|
* @param {string} listingId
|
|
5054
5144
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -5166,7 +5256,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
5166
5256
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
5167
5257
|
/**
|
|
5168
5258
|
* Associates a contact with a listing with the OWNER type.
|
|
5169
|
-
* @summary
|
|
5259
|
+
* @summary Contact Listing Create
|
|
5170
5260
|
* @param {string} contactId
|
|
5171
5261
|
* @param {string} listingId
|
|
5172
5262
|
* @param {CreateContactListing} createContactListing
|
|
@@ -5213,7 +5303,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
5213
5303
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIContact>>;
|
|
5214
5304
|
/**
|
|
5215
5305
|
* Removes an association between a contact and a listing.
|
|
5216
|
-
* @summary
|
|
5306
|
+
* @summary Contact Listing Delete
|
|
5217
5307
|
* @param {string} contactId
|
|
5218
5308
|
* @param {string} listingId
|
|
5219
5309
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -5232,7 +5322,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
5232
5322
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContact>>;
|
|
5233
5323
|
/**
|
|
5234
5324
|
* Updates an association between a contact and a listing.
|
|
5235
|
-
* @summary
|
|
5325
|
+
* @summary Contact Listing Update
|
|
5236
5326
|
* @param {string} contactId
|
|
5237
5327
|
* @param {string} listingId
|
|
5238
5328
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -5350,7 +5440,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5350
5440
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
5351
5441
|
/**
|
|
5352
5442
|
* Associates a contact with a listing with the OWNER type.
|
|
5353
|
-
* @summary
|
|
5443
|
+
* @summary Contact Listing Create
|
|
5354
5444
|
* @param {string} contactId
|
|
5355
5445
|
* @param {string} listingId
|
|
5356
5446
|
* @param {CreateContactListing} createContactListing
|
|
@@ -5397,7 +5487,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5397
5487
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIContact>;
|
|
5398
5488
|
/**
|
|
5399
5489
|
* Removes an association between a contact and a listing.
|
|
5400
|
-
* @summary
|
|
5490
|
+
* @summary Contact Listing Delete
|
|
5401
5491
|
* @param {string} contactId
|
|
5402
5492
|
* @param {string} listingId
|
|
5403
5493
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -5416,7 +5506,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5416
5506
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContact>;
|
|
5417
5507
|
/**
|
|
5418
5508
|
* Updates an association between a contact and a listing.
|
|
5419
|
-
* @summary
|
|
5509
|
+
* @summary Contact Listing Update
|
|
5420
5510
|
* @param {string} contactId
|
|
5421
5511
|
* @param {string} listingId
|
|
5422
5512
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -5540,7 +5630,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
5540
5630
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
5541
5631
|
/**
|
|
5542
5632
|
* Associates a contact with a listing with the OWNER type.
|
|
5543
|
-
* @summary
|
|
5633
|
+
* @summary Contact Listing Create
|
|
5544
5634
|
* @param {string} contactId
|
|
5545
5635
|
* @param {string} listingId
|
|
5546
5636
|
* @param {CreateContactListing} createContactListing
|
|
@@ -5592,7 +5682,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
5592
5682
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIContact, any>>;
|
|
5593
5683
|
/**
|
|
5594
5684
|
* Removes an association between a contact and a listing.
|
|
5595
|
-
* @summary
|
|
5685
|
+
* @summary Contact Listing Delete
|
|
5596
5686
|
* @param {string} contactId
|
|
5597
5687
|
* @param {string} listingId
|
|
5598
5688
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -5613,7 +5703,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
5613
5703
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContact, any>>;
|
|
5614
5704
|
/**
|
|
5615
5705
|
* Updates an association between a contact and a listing.
|
|
5616
|
-
* @summary
|
|
5706
|
+
* @summary Contact Listing Update
|
|
5617
5707
|
* @param {string} contactId
|
|
5618
5708
|
* @param {string} listingId
|
|
5619
5709
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -8360,7 +8450,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8360
8450
|
aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8361
8451
|
/**
|
|
8362
8452
|
* Associates a contact with a listing with the OWNER type.
|
|
8363
|
-
* @summary
|
|
8453
|
+
* @summary Contact Listing Create
|
|
8364
8454
|
* @param {string} contactId
|
|
8365
8455
|
* @param {string} listingId
|
|
8366
8456
|
* @param {CreateContactListing} createContactListing
|
|
@@ -8407,7 +8497,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8407
8497
|
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8408
8498
|
/**
|
|
8409
8499
|
* Removes an association between a contact and a listing.
|
|
8410
|
-
* @summary
|
|
8500
|
+
* @summary Contact Listing Delete
|
|
8411
8501
|
* @param {string} contactId
|
|
8412
8502
|
* @param {string} listingId
|
|
8413
8503
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -8426,7 +8516,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8426
8516
|
contactsUpdate: (contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8427
8517
|
/**
|
|
8428
8518
|
* Updates an association between a contact and a listing.
|
|
8429
|
-
* @summary
|
|
8519
|
+
* @summary Contact Listing Update
|
|
8430
8520
|
* @param {string} contactId
|
|
8431
8521
|
* @param {string} listingId
|
|
8432
8522
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -9031,7 +9121,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9031
9121
|
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAiResponse>>;
|
|
9032
9122
|
/**
|
|
9033
9123
|
* Associates a contact with a listing with the OWNER type.
|
|
9034
|
-
* @summary
|
|
9124
|
+
* @summary Contact Listing Create
|
|
9035
9125
|
* @param {string} contactId
|
|
9036
9126
|
* @param {string} listingId
|
|
9037
9127
|
* @param {CreateContactListing} createContactListing
|
|
@@ -9078,7 +9168,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9078
9168
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIContact>>;
|
|
9079
9169
|
/**
|
|
9080
9170
|
* Removes an association between a contact and a listing.
|
|
9081
|
-
* @summary
|
|
9171
|
+
* @summary Contact Listing Delete
|
|
9082
9172
|
* @param {string} contactId
|
|
9083
9173
|
* @param {string} listingId
|
|
9084
9174
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -9097,7 +9187,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9097
9187
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContact>>;
|
|
9098
9188
|
/**
|
|
9099
9189
|
* Updates an association between a contact and a listing.
|
|
9100
|
-
* @summary
|
|
9190
|
+
* @summary Contact Listing Update
|
|
9101
9191
|
* @param {string} contactId
|
|
9102
9192
|
* @param {string} listingId
|
|
9103
9193
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -9702,7 +9792,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9702
9792
|
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAiResponse>;
|
|
9703
9793
|
/**
|
|
9704
9794
|
* Associates a contact with a listing with the OWNER type.
|
|
9705
|
-
* @summary
|
|
9795
|
+
* @summary Contact Listing Create
|
|
9706
9796
|
* @param {string} contactId
|
|
9707
9797
|
* @param {string} listingId
|
|
9708
9798
|
* @param {CreateContactListing} createContactListing
|
|
@@ -9749,7 +9839,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9749
9839
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIContact>;
|
|
9750
9840
|
/**
|
|
9751
9841
|
* Removes an association between a contact and a listing.
|
|
9752
|
-
* @summary
|
|
9842
|
+
* @summary Contact Listing Delete
|
|
9753
9843
|
* @param {string} contactId
|
|
9754
9844
|
* @param {string} listingId
|
|
9755
9845
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -9768,7 +9858,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9768
9858
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContact>;
|
|
9769
9859
|
/**
|
|
9770
9860
|
* Updates an association between a contact and a listing.
|
|
9771
|
-
* @summary
|
|
9861
|
+
* @summary Contact Listing Update
|
|
9772
9862
|
* @param {string} contactId
|
|
9773
9863
|
* @param {string} listingId
|
|
9774
9864
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -10385,7 +10475,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10385
10475
|
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAiResponse, any>>;
|
|
10386
10476
|
/**
|
|
10387
10477
|
* Associates a contact with a listing with the OWNER type.
|
|
10388
|
-
* @summary
|
|
10478
|
+
* @summary Contact Listing Create
|
|
10389
10479
|
* @param {string} contactId
|
|
10390
10480
|
* @param {string} listingId
|
|
10391
10481
|
* @param {CreateContactListing} createContactListing
|
|
@@ -10437,7 +10527,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10437
10527
|
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIContact, any>>;
|
|
10438
10528
|
/**
|
|
10439
10529
|
* Removes an association between a contact and a listing.
|
|
10440
|
-
* @summary
|
|
10530
|
+
* @summary Contact Listing Delete
|
|
10441
10531
|
* @param {string} contactId
|
|
10442
10532
|
* @param {string} listingId
|
|
10443
10533
|
* @param {DeleteContactListing} deleteContactListing
|
|
@@ -10458,7 +10548,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10458
10548
|
contactsUpdate(contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContact, any>>;
|
|
10459
10549
|
/**
|
|
10460
10550
|
* Updates an association between a contact and a listing.
|
|
10461
|
-
* @summary
|
|
10551
|
+
* @summary Contact Listing Update
|
|
10462
10552
|
* @param {string} contactId
|
|
10463
10553
|
* @param {string} listingId
|
|
10464
10554
|
* @param {UpdateContactListing} updateContactListing
|
|
@@ -11125,4 +11215,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
11125
11215
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11126
11216
|
}
|
|
11127
11217
|
|
|
11128
|
-
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type
|
|
11218
|
+
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, type AddressProviderAddressesApi, type AddressProviderAddressesProviderAttributionApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributionApi, type AttributionAttributeSourceApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, Configuration, type ConfigurationParameters, type ContactTypeDataApi, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, type ContentItem, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type CreateContactListingRelationTypeData, type DeleteContactListing, type DeleteContactListingRelationTypeData, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderEmailsApi, type EmailProviderEmailsProviderAttributionApi, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type EmailProviderMessageCreateApi, EmailProviderMessageCreateApiMessageTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeDelete, InquiryTypeDeleteRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContentItem, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIPermission, type ListResponseAPIProvider, type ListResponseAPIRole, type ListResponseAPITag, type ListResponsePermission, type ListResponseTag, type Listing, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, type MessageCreateWithSuggestionApi, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeDelete, OwnerTypeDeleteRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, type PaginatedResponseListing, PaginationDirection, type Participantname, type Participanttypedata, type Permission, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhoneProviderPhonesApi, type PhoneProviderPhonesProviderAttributionApi, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, PropertyTypes, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, ProviderCommunicationType, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, type RentalProviderMessageCreateApi, RentalProviderMessageCreateApiMessageTypeEnum, RentalProviderTypes, type ReservationBaseModelChannelInfoApi, ReservationChannelTypes, type ReservationProviderInfoApi, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSConversationDataCreateApi, SMSConversationDataCreateApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, type SMSMessageCreateApi, SMSMessageCreateApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortBy, SortOrder, type StaffApi, StaffApiParticipantTypeEnum, type StaffExternalStaffApi, StaffExternalStaffApiStaffTypeEnum, type StaffInternalStaffApi, StaffInternalStaffApiStaffTypeEnum, type StaffProviderStaffApi, StaffProviderStaffApiStaffTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UpdateContactListingRelationTypeData, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|