@ember-home/unbound-ts-client 0.0.34 → 0.0.36
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 +572 -497
- package/dist/index.d.ts +572 -497
- package/dist/index.js +167 -157
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +166 -156
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -119,6 +119,15 @@ var ReservationChannelTypes = {
|
|
|
119
119
|
Gds: "GDS",
|
|
120
120
|
Google: "GOOGLE"
|
|
121
121
|
};
|
|
122
|
+
var ReservationStatus = {
|
|
123
|
+
Cancelled: "CANCELLED",
|
|
124
|
+
Inquiry: "INQUIRY",
|
|
125
|
+
Expired: "EXPIRED",
|
|
126
|
+
AwaitingPayment: "AWAITING_PAYMENT",
|
|
127
|
+
Declined: "DECLINED",
|
|
128
|
+
Pending: "PENDING",
|
|
129
|
+
Confirmed: "CONFIRMED"
|
|
130
|
+
};
|
|
122
131
|
var SortOrder = {
|
|
123
132
|
Asc: "asc",
|
|
124
133
|
Desc: "desc"
|
|
@@ -244,13 +253,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
244
253
|
* Addresses Create
|
|
245
254
|
* @summary Addresses Create
|
|
246
255
|
* @param {string} contactId
|
|
247
|
-
* @param {
|
|
256
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
248
257
|
* @param {*} [options] Override http request option.
|
|
249
258
|
* @throws {RequiredError}
|
|
250
259
|
*/
|
|
251
|
-
addressesCreate: async (contactId,
|
|
260
|
+
addressesCreate: async (contactId, aPIAddressCreate, options = {}) => {
|
|
252
261
|
assertParamExists("addressesCreate", "contactId", contactId);
|
|
253
|
-
assertParamExists("addressesCreate", "
|
|
262
|
+
assertParamExists("addressesCreate", "aPIAddressCreate", aPIAddressCreate);
|
|
254
263
|
const localVarPath = `/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
255
264
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
256
265
|
let baseOptions;
|
|
@@ -264,7 +273,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
264
273
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
265
274
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
266
275
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
267
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
276
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIAddressCreate, localVarRequestOptions, configuration);
|
|
268
277
|
return {
|
|
269
278
|
url: toPathString(localVarUrlObj),
|
|
270
279
|
options: localVarRequestOptions
|
|
@@ -584,13 +593,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
584
593
|
* Emails Create
|
|
585
594
|
* @summary Emails Create
|
|
586
595
|
* @param {string} contactId
|
|
587
|
-
* @param {
|
|
596
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
588
597
|
* @param {*} [options] Override http request option.
|
|
589
598
|
* @throws {RequiredError}
|
|
590
599
|
*/
|
|
591
|
-
emailsCreate: async (contactId,
|
|
600
|
+
emailsCreate: async (contactId, aPIEmailCreate, options = {}) => {
|
|
592
601
|
assertParamExists("emailsCreate", "contactId", contactId);
|
|
593
|
-
assertParamExists("emailsCreate", "
|
|
602
|
+
assertParamExists("emailsCreate", "aPIEmailCreate", aPIEmailCreate);
|
|
594
603
|
const localVarPath = `/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
595
604
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
596
605
|
let baseOptions;
|
|
@@ -604,7 +613,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
604
613
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
605
614
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
606
615
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
607
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
616
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIEmailCreate, localVarRequestOptions, configuration);
|
|
608
617
|
return {
|
|
609
618
|
url: toPathString(localVarUrlObj),
|
|
610
619
|
options: localVarRequestOptions
|
|
@@ -670,13 +679,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
670
679
|
* PhoneNumbers Create
|
|
671
680
|
* @summary PhoneNumbers Create
|
|
672
681
|
* @param {string} contactId
|
|
673
|
-
* @param {
|
|
682
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
674
683
|
* @param {*} [options] Override http request option.
|
|
675
684
|
* @throws {RequiredError}
|
|
676
685
|
*/
|
|
677
|
-
phoneNumbersCreate: async (contactId,
|
|
686
|
+
phoneNumbersCreate: async (contactId, aPIPhoneNumberCreate, options = {}) => {
|
|
678
687
|
assertParamExists("phoneNumbersCreate", "contactId", contactId);
|
|
679
|
-
assertParamExists("phoneNumbersCreate", "
|
|
688
|
+
assertParamExists("phoneNumbersCreate", "aPIPhoneNumberCreate", aPIPhoneNumberCreate);
|
|
680
689
|
const localVarPath = `/contacts/{contactId}/phoneNumbers`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
681
690
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
682
691
|
let baseOptions;
|
|
@@ -690,7 +699,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
690
699
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
691
700
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
692
701
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
693
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
702
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIPhoneNumberCreate, localVarRequestOptions, configuration);
|
|
694
703
|
return {
|
|
695
704
|
url: toPathString(localVarUrlObj),
|
|
696
705
|
options: localVarRequestOptions
|
|
@@ -761,12 +770,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
761
770
|
* Addresses Create
|
|
762
771
|
* @summary Addresses Create
|
|
763
772
|
* @param {string} contactId
|
|
764
|
-
* @param {
|
|
773
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
765
774
|
* @param {*} [options] Override http request option.
|
|
766
775
|
* @throws {RequiredError}
|
|
767
776
|
*/
|
|
768
|
-
async addressesCreate(contactId,
|
|
769
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId,
|
|
777
|
+
async addressesCreate(contactId, aPIAddressCreate, options) {
|
|
778
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, aPIAddressCreate, options);
|
|
770
779
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _6 => _6.serverIndex]), () => ( 0));
|
|
771
780
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _7 => _7["ContactsApi.addressesCreate"], 'optionalAccess', _8 => _8[localVarOperationServerIndex], 'optionalAccess', _9 => _9.url]);
|
|
772
781
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -918,12 +927,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
918
927
|
* Emails Create
|
|
919
928
|
* @summary Emails Create
|
|
920
929
|
* @param {string} contactId
|
|
921
|
-
* @param {
|
|
930
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
922
931
|
* @param {*} [options] Override http request option.
|
|
923
932
|
* @throws {RequiredError}
|
|
924
933
|
*/
|
|
925
|
-
async emailsCreate(contactId,
|
|
926
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId,
|
|
934
|
+
async emailsCreate(contactId, aPIEmailCreate, options) {
|
|
935
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, aPIEmailCreate, options);
|
|
927
936
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _50 => _50.serverIndex]), () => ( 0));
|
|
928
937
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _51 => _51["ContactsApi.emailsCreate"], 'optionalAccess', _52 => _52[localVarOperationServerIndex], 'optionalAccess', _53 => _53.url]);
|
|
929
938
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -959,12 +968,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
959
968
|
* PhoneNumbers Create
|
|
960
969
|
* @summary PhoneNumbers Create
|
|
961
970
|
* @param {string} contactId
|
|
962
|
-
* @param {
|
|
971
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
963
972
|
* @param {*} [options] Override http request option.
|
|
964
973
|
* @throws {RequiredError}
|
|
965
974
|
*/
|
|
966
|
-
async phoneNumbersCreate(contactId,
|
|
967
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId,
|
|
975
|
+
async phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
976
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options);
|
|
968
977
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _62 => _62.serverIndex]), () => ( 0));
|
|
969
978
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _63 => _63["ContactsApi.phoneNumbersCreate"], 'optionalAccess', _64 => _64[localVarOperationServerIndex], 'optionalAccess', _65 => _65.url]);
|
|
970
979
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1005,12 +1014,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1005
1014
|
* Addresses Create
|
|
1006
1015
|
* @summary Addresses Create
|
|
1007
1016
|
* @param {string} contactId
|
|
1008
|
-
* @param {
|
|
1017
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
1009
1018
|
* @param {*} [options] Override http request option.
|
|
1010
1019
|
* @throws {RequiredError}
|
|
1011
1020
|
*/
|
|
1012
|
-
addressesCreate(contactId,
|
|
1013
|
-
return localVarFp.addressesCreate(contactId,
|
|
1021
|
+
addressesCreate(contactId, aPIAddressCreate, options) {
|
|
1022
|
+
return localVarFp.addressesCreate(contactId, aPIAddressCreate, options).then((request) => request(axios, basePath));
|
|
1014
1023
|
},
|
|
1015
1024
|
/**
|
|
1016
1025
|
* Addresses Delete
|
|
@@ -1129,12 +1138,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1129
1138
|
* Emails Create
|
|
1130
1139
|
* @summary Emails Create
|
|
1131
1140
|
* @param {string} contactId
|
|
1132
|
-
* @param {
|
|
1141
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
1133
1142
|
* @param {*} [options] Override http request option.
|
|
1134
1143
|
* @throws {RequiredError}
|
|
1135
1144
|
*/
|
|
1136
|
-
emailsCreate(contactId,
|
|
1137
|
-
return localVarFp.emailsCreate(contactId,
|
|
1145
|
+
emailsCreate(contactId, aPIEmailCreate, options) {
|
|
1146
|
+
return localVarFp.emailsCreate(contactId, aPIEmailCreate, options).then((request) => request(axios, basePath));
|
|
1138
1147
|
},
|
|
1139
1148
|
/**
|
|
1140
1149
|
* Emails Delete
|
|
@@ -1161,12 +1170,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1161
1170
|
* PhoneNumbers Create
|
|
1162
1171
|
* @summary PhoneNumbers Create
|
|
1163
1172
|
* @param {string} contactId
|
|
1164
|
-
* @param {
|
|
1173
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
1165
1174
|
* @param {*} [options] Override http request option.
|
|
1166
1175
|
* @throws {RequiredError}
|
|
1167
1176
|
*/
|
|
1168
|
-
phoneNumbersCreate(contactId,
|
|
1169
|
-
return localVarFp.phoneNumbersCreate(contactId,
|
|
1177
|
+
phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
1178
|
+
return localVarFp.phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options).then((request) => request(axios, basePath));
|
|
1170
1179
|
},
|
|
1171
1180
|
/**
|
|
1172
1181
|
* PhoneNumbers Delete
|
|
@@ -1196,13 +1205,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1196
1205
|
* Addresses Create
|
|
1197
1206
|
* @summary Addresses Create
|
|
1198
1207
|
* @param {string} contactId
|
|
1199
|
-
* @param {
|
|
1208
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
1200
1209
|
* @param {*} [options] Override http request option.
|
|
1201
1210
|
* @throws {RequiredError}
|
|
1202
1211
|
* @memberof ContactsApi
|
|
1203
1212
|
*/
|
|
1204
|
-
addressesCreate(contactId,
|
|
1205
|
-
return ContactsApiFp(this.configuration).addressesCreate(contactId,
|
|
1213
|
+
addressesCreate(contactId, aPIAddressCreate, options) {
|
|
1214
|
+
return ContactsApiFp(this.configuration).addressesCreate(contactId, aPIAddressCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1206
1215
|
}
|
|
1207
1216
|
/**
|
|
1208
1217
|
* Addresses Delete
|
|
@@ -1331,13 +1340,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1331
1340
|
* Emails Create
|
|
1332
1341
|
* @summary Emails Create
|
|
1333
1342
|
* @param {string} contactId
|
|
1334
|
-
* @param {
|
|
1343
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
1335
1344
|
* @param {*} [options] Override http request option.
|
|
1336
1345
|
* @throws {RequiredError}
|
|
1337
1346
|
* @memberof ContactsApi
|
|
1338
1347
|
*/
|
|
1339
|
-
emailsCreate(contactId,
|
|
1340
|
-
return ContactsApiFp(this.configuration).emailsCreate(contactId,
|
|
1348
|
+
emailsCreate(contactId, aPIEmailCreate, options) {
|
|
1349
|
+
return ContactsApiFp(this.configuration).emailsCreate(contactId, aPIEmailCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1341
1350
|
}
|
|
1342
1351
|
/**
|
|
1343
1352
|
* Emails Delete
|
|
@@ -1366,13 +1375,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1366
1375
|
* PhoneNumbers Create
|
|
1367
1376
|
* @summary PhoneNumbers Create
|
|
1368
1377
|
* @param {string} contactId
|
|
1369
|
-
* @param {
|
|
1378
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
1370
1379
|
* @param {*} [options] Override http request option.
|
|
1371
1380
|
* @throws {RequiredError}
|
|
1372
1381
|
* @memberof ContactsApi
|
|
1373
1382
|
*/
|
|
1374
|
-
phoneNumbersCreate(contactId,
|
|
1375
|
-
return ContactsApiFp(this.configuration).phoneNumbersCreate(contactId,
|
|
1383
|
+
phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
1384
|
+
return ContactsApiFp(this.configuration).phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1376
1385
|
}
|
|
1377
1386
|
/**
|
|
1378
1387
|
* PhoneNumbers Delete
|
|
@@ -1403,12 +1412,12 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1403
1412
|
/**
|
|
1404
1413
|
* Conversations Create
|
|
1405
1414
|
* @summary Conversations Create
|
|
1406
|
-
* @param {
|
|
1415
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
1407
1416
|
* @param {*} [options] Override http request option.
|
|
1408
1417
|
* @throws {RequiredError}
|
|
1409
1418
|
*/
|
|
1410
|
-
conversationsCreate: async (
|
|
1411
|
-
assertParamExists("conversationsCreate", "
|
|
1419
|
+
conversationsCreate: async (aPIConversationCreate, options = {}) => {
|
|
1420
|
+
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
1412
1421
|
const localVarPath = `/conversations`;
|
|
1413
1422
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1414
1423
|
let baseOptions;
|
|
@@ -1422,7 +1431,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1422
1431
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1423
1432
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1424
1433
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1425
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1434
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
1426
1435
|
return {
|
|
1427
1436
|
url: toPathString(localVarUrlObj),
|
|
1428
1437
|
options: localVarRequestOptions
|
|
@@ -1540,13 +1549,13 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1540
1549
|
* Messages Create
|
|
1541
1550
|
* @summary Messages Create
|
|
1542
1551
|
* @param {string} conversationId
|
|
1543
|
-
* @param {
|
|
1552
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
1544
1553
|
* @param {*} [options] Override http request option.
|
|
1545
1554
|
* @throws {RequiredError}
|
|
1546
1555
|
*/
|
|
1547
|
-
messagesCreate: async (conversationId,
|
|
1556
|
+
messagesCreate: async (conversationId, aPIMessageCreate, options = {}) => {
|
|
1548
1557
|
assertParamExists("messagesCreate", "conversationId", conversationId);
|
|
1549
|
-
assertParamExists("messagesCreate", "
|
|
1558
|
+
assertParamExists("messagesCreate", "aPIMessageCreate", aPIMessageCreate);
|
|
1550
1559
|
const localVarPath = `/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1551
1560
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1552
1561
|
let baseOptions;
|
|
@@ -1560,7 +1569,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1560
1569
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1561
1570
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1562
1571
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1563
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1572
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIMessageCreate, localVarRequestOptions, configuration);
|
|
1564
1573
|
return {
|
|
1565
1574
|
url: toPathString(localVarUrlObj),
|
|
1566
1575
|
options: localVarRequestOptions
|
|
@@ -1656,12 +1665,12 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1656
1665
|
/**
|
|
1657
1666
|
* Conversations Create
|
|
1658
1667
|
* @summary Conversations Create
|
|
1659
|
-
* @param {
|
|
1668
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
1660
1669
|
* @param {*} [options] Override http request option.
|
|
1661
1670
|
* @throws {RequiredError}
|
|
1662
1671
|
*/
|
|
1663
|
-
async conversationsCreate(
|
|
1664
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(
|
|
1672
|
+
async conversationsCreate(aPIConversationCreate, options) {
|
|
1673
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(aPIConversationCreate, options);
|
|
1665
1674
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _74 => _74.serverIndex]), () => ( 0));
|
|
1666
1675
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _75 => _75["ConversationsApi.conversationsCreate"], 'optionalAccess', _76 => _76[localVarOperationServerIndex], 'optionalAccess', _77 => _77.url]);
|
|
1667
1676
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1716,12 +1725,12 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1716
1725
|
* Messages Create
|
|
1717
1726
|
* @summary Messages Create
|
|
1718
1727
|
* @param {string} conversationId
|
|
1719
|
-
* @param {
|
|
1728
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
1720
1729
|
* @param {*} [options] Override http request option.
|
|
1721
1730
|
* @throws {RequiredError}
|
|
1722
1731
|
*/
|
|
1723
|
-
async messagesCreate(conversationId,
|
|
1724
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId,
|
|
1732
|
+
async messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
1733
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId, aPIMessageCreate, options);
|
|
1725
1734
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _90 => _90.serverIndex]), () => ( 0));
|
|
1726
1735
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _91 => _91["ConversationsApi.messagesCreate"], 'optionalAccess', _92 => _92[localVarOperationServerIndex], 'optionalAccess', _93 => _93.url]);
|
|
1727
1736
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1767,12 +1776,12 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
1767
1776
|
/**
|
|
1768
1777
|
* Conversations Create
|
|
1769
1778
|
* @summary Conversations Create
|
|
1770
|
-
* @param {
|
|
1779
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
1771
1780
|
* @param {*} [options] Override http request option.
|
|
1772
1781
|
* @throws {RequiredError}
|
|
1773
1782
|
*/
|
|
1774
|
-
conversationsCreate(
|
|
1775
|
-
return localVarFp.conversationsCreate(
|
|
1783
|
+
conversationsCreate(aPIConversationCreate, options) {
|
|
1784
|
+
return localVarFp.conversationsCreate(aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
1776
1785
|
},
|
|
1777
1786
|
/**
|
|
1778
1787
|
* Conversations Get
|
|
@@ -1815,12 +1824,12 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
1815
1824
|
* Messages Create
|
|
1816
1825
|
* @summary Messages Create
|
|
1817
1826
|
* @param {string} conversationId
|
|
1818
|
-
* @param {
|
|
1827
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
1819
1828
|
* @param {*} [options] Override http request option.
|
|
1820
1829
|
* @throws {RequiredError}
|
|
1821
1830
|
*/
|
|
1822
|
-
messagesCreate(conversationId,
|
|
1823
|
-
return localVarFp.messagesCreate(conversationId,
|
|
1831
|
+
messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
1832
|
+
return localVarFp.messagesCreate(conversationId, aPIMessageCreate, options).then((request) => request(axios, basePath));
|
|
1824
1833
|
},
|
|
1825
1834
|
/**
|
|
1826
1835
|
* Messages Get
|
|
@@ -1855,13 +1864,13 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
1855
1864
|
/**
|
|
1856
1865
|
* Conversations Create
|
|
1857
1866
|
* @summary Conversations Create
|
|
1858
|
-
* @param {
|
|
1867
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
1859
1868
|
* @param {*} [options] Override http request option.
|
|
1860
1869
|
* @throws {RequiredError}
|
|
1861
1870
|
* @memberof ConversationsApi
|
|
1862
1871
|
*/
|
|
1863
|
-
conversationsCreate(
|
|
1864
|
-
return ConversationsApiFp(this.configuration).conversationsCreate(
|
|
1872
|
+
conversationsCreate(aPIConversationCreate, options) {
|
|
1873
|
+
return ConversationsApiFp(this.configuration).conversationsCreate(aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1865
1874
|
}
|
|
1866
1875
|
/**
|
|
1867
1876
|
* Conversations Get
|
|
@@ -1907,13 +1916,13 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
1907
1916
|
* Messages Create
|
|
1908
1917
|
* @summary Messages Create
|
|
1909
1918
|
* @param {string} conversationId
|
|
1910
|
-
* @param {
|
|
1919
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
1911
1920
|
* @param {*} [options] Override http request option.
|
|
1912
1921
|
* @throws {RequiredError}
|
|
1913
1922
|
* @memberof ConversationsApi
|
|
1914
1923
|
*/
|
|
1915
|
-
messagesCreate(conversationId,
|
|
1916
|
-
return ConversationsApiFp(this.configuration).messagesCreate(conversationId,
|
|
1924
|
+
messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
1925
|
+
return ConversationsApiFp(this.configuration).messagesCreate(conversationId, aPIMessageCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1917
1926
|
}
|
|
1918
1927
|
/**
|
|
1919
1928
|
* Messages Get
|
|
@@ -2358,12 +2367,12 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
2358
2367
|
/**
|
|
2359
2368
|
* Providers Create
|
|
2360
2369
|
* @summary Providers Create
|
|
2361
|
-
* @param {
|
|
2370
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
2362
2371
|
* @param {*} [options] Override http request option.
|
|
2363
2372
|
* @throws {RequiredError}
|
|
2364
2373
|
*/
|
|
2365
|
-
providersCreate: async (
|
|
2366
|
-
assertParamExists("providersCreate", "
|
|
2374
|
+
providersCreate: async (aPIProviderCreate, options = {}) => {
|
|
2375
|
+
assertParamExists("providersCreate", "aPIProviderCreate", aPIProviderCreate);
|
|
2367
2376
|
const localVarPath = `/providers`;
|
|
2368
2377
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2369
2378
|
let baseOptions;
|
|
@@ -2377,7 +2386,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
2377
2386
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2378
2387
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2379
2388
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2380
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2389
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIProviderCreate, localVarRequestOptions, configuration);
|
|
2381
2390
|
return {
|
|
2382
2391
|
url: toPathString(localVarUrlObj),
|
|
2383
2392
|
options: localVarRequestOptions
|
|
@@ -2471,12 +2480,12 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2471
2480
|
/**
|
|
2472
2481
|
* Providers Create
|
|
2473
2482
|
* @summary Providers Create
|
|
2474
|
-
* @param {
|
|
2483
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
2475
2484
|
* @param {*} [options] Override http request option.
|
|
2476
2485
|
* @throws {RequiredError}
|
|
2477
2486
|
*/
|
|
2478
|
-
async providersCreate(
|
|
2479
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(
|
|
2487
|
+
async providersCreate(aPIProviderCreate, options) {
|
|
2488
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(aPIProviderCreate, options);
|
|
2480
2489
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _122 => _122.serverIndex]), () => ( 0));
|
|
2481
2490
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _123 => _123["ProvidersApi.providersCreate"], 'optionalAccess', _124 => _124[localVarOperationServerIndex], 'optionalAccess', _125 => _125.url]);
|
|
2482
2491
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2528,12 +2537,12 @@ var ProvidersApiFactory = function(configuration, basePath, axios) {
|
|
|
2528
2537
|
/**
|
|
2529
2538
|
* Providers Create
|
|
2530
2539
|
* @summary Providers Create
|
|
2531
|
-
* @param {
|
|
2540
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
2532
2541
|
* @param {*} [options] Override http request option.
|
|
2533
2542
|
* @throws {RequiredError}
|
|
2534
2543
|
*/
|
|
2535
|
-
providersCreate(
|
|
2536
|
-
return localVarFp.providersCreate(
|
|
2544
|
+
providersCreate(aPIProviderCreate, options) {
|
|
2545
|
+
return localVarFp.providersCreate(aPIProviderCreate, options).then((request) => request(axios, basePath));
|
|
2537
2546
|
},
|
|
2538
2547
|
/**
|
|
2539
2548
|
* Providers Get
|
|
@@ -2571,13 +2580,13 @@ var ProvidersApi = class extends BaseAPI {
|
|
|
2571
2580
|
/**
|
|
2572
2581
|
* Providers Create
|
|
2573
2582
|
* @summary Providers Create
|
|
2574
|
-
* @param {
|
|
2583
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
2575
2584
|
* @param {*} [options] Override http request option.
|
|
2576
2585
|
* @throws {RequiredError}
|
|
2577
2586
|
* @memberof ProvidersApi
|
|
2578
2587
|
*/
|
|
2579
|
-
providersCreate(
|
|
2580
|
-
return ProvidersApiFp(this.configuration).providersCreate(
|
|
2588
|
+
providersCreate(aPIProviderCreate, options) {
|
|
2589
|
+
return ProvidersApiFp(this.configuration).providersCreate(aPIProviderCreate, options).then((request) => request(this.axios, this.basePath));
|
|
2581
2590
|
}
|
|
2582
2591
|
/**
|
|
2583
2592
|
* Providers Get
|
|
@@ -2823,13 +2832,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2823
2832
|
* Addresses Create
|
|
2824
2833
|
* @summary Addresses Create
|
|
2825
2834
|
* @param {string} contactId
|
|
2826
|
-
* @param {
|
|
2835
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
2827
2836
|
* @param {*} [options] Override http request option.
|
|
2828
2837
|
* @throws {RequiredError}
|
|
2829
2838
|
*/
|
|
2830
|
-
addressesCreate: async (contactId,
|
|
2839
|
+
addressesCreate: async (contactId, aPIAddressCreate, options = {}) => {
|
|
2831
2840
|
assertParamExists("addressesCreate", "contactId", contactId);
|
|
2832
|
-
assertParamExists("addressesCreate", "
|
|
2841
|
+
assertParamExists("addressesCreate", "aPIAddressCreate", aPIAddressCreate);
|
|
2833
2842
|
const localVarPath = `/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
2834
2843
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2835
2844
|
let baseOptions;
|
|
@@ -2843,7 +2852,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2843
2852
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2844
2853
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2845
2854
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2846
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2855
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIAddressCreate, localVarRequestOptions, configuration);
|
|
2847
2856
|
return {
|
|
2848
2857
|
url: toPathString(localVarUrlObj),
|
|
2849
2858
|
options: localVarRequestOptions
|
|
@@ -3162,12 +3171,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3162
3171
|
/**
|
|
3163
3172
|
* Conversations Create
|
|
3164
3173
|
* @summary Conversations Create
|
|
3165
|
-
* @param {
|
|
3174
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
3166
3175
|
* @param {*} [options] Override http request option.
|
|
3167
3176
|
* @throws {RequiredError}
|
|
3168
3177
|
*/
|
|
3169
|
-
conversationsCreate: async (
|
|
3170
|
-
assertParamExists("conversationsCreate", "
|
|
3178
|
+
conversationsCreate: async (aPIConversationCreate, options = {}) => {
|
|
3179
|
+
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
3171
3180
|
const localVarPath = `/conversations`;
|
|
3172
3181
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3173
3182
|
let baseOptions;
|
|
@@ -3181,7 +3190,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3181
3190
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3182
3191
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3183
3192
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3184
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3193
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
3185
3194
|
return {
|
|
3186
3195
|
url: toPathString(localVarUrlObj),
|
|
3187
3196
|
options: localVarRequestOptions
|
|
@@ -3299,13 +3308,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3299
3308
|
* Emails Create
|
|
3300
3309
|
* @summary Emails Create
|
|
3301
3310
|
* @param {string} contactId
|
|
3302
|
-
* @param {
|
|
3311
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
3303
3312
|
* @param {*} [options] Override http request option.
|
|
3304
3313
|
* @throws {RequiredError}
|
|
3305
3314
|
*/
|
|
3306
|
-
emailsCreate: async (contactId,
|
|
3315
|
+
emailsCreate: async (contactId, aPIEmailCreate, options = {}) => {
|
|
3307
3316
|
assertParamExists("emailsCreate", "contactId", contactId);
|
|
3308
|
-
assertParamExists("emailsCreate", "
|
|
3317
|
+
assertParamExists("emailsCreate", "aPIEmailCreate", aPIEmailCreate);
|
|
3309
3318
|
const localVarPath = `/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
3310
3319
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3311
3320
|
let baseOptions;
|
|
@@ -3319,7 +3328,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3319
3328
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3320
3329
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3321
3330
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3322
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3331
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIEmailCreate, localVarRequestOptions, configuration);
|
|
3323
3332
|
return {
|
|
3324
3333
|
url: toPathString(localVarUrlObj),
|
|
3325
3334
|
options: localVarRequestOptions
|
|
@@ -3515,13 +3524,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3515
3524
|
* Messages Create
|
|
3516
3525
|
* @summary Messages Create
|
|
3517
3526
|
* @param {string} conversationId
|
|
3518
|
-
* @param {
|
|
3527
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
3519
3528
|
* @param {*} [options] Override http request option.
|
|
3520
3529
|
* @throws {RequiredError}
|
|
3521
3530
|
*/
|
|
3522
|
-
messagesCreate: async (conversationId,
|
|
3531
|
+
messagesCreate: async (conversationId, aPIMessageCreate, options = {}) => {
|
|
3523
3532
|
assertParamExists("messagesCreate", "conversationId", conversationId);
|
|
3524
|
-
assertParamExists("messagesCreate", "
|
|
3533
|
+
assertParamExists("messagesCreate", "aPIMessageCreate", aPIMessageCreate);
|
|
3525
3534
|
const localVarPath = `/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3526
3535
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3527
3536
|
let baseOptions;
|
|
@@ -3535,7 +3544,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3535
3544
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3536
3545
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3537
3546
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3538
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3547
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIMessageCreate, localVarRequestOptions, configuration);
|
|
3539
3548
|
return {
|
|
3540
3549
|
url: toPathString(localVarUrlObj),
|
|
3541
3550
|
options: localVarRequestOptions
|
|
@@ -3627,13 +3636,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3627
3636
|
* PhoneNumbers Create
|
|
3628
3637
|
* @summary PhoneNumbers Create
|
|
3629
3638
|
* @param {string} contactId
|
|
3630
|
-
* @param {
|
|
3639
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
3631
3640
|
* @param {*} [options] Override http request option.
|
|
3632
3641
|
* @throws {RequiredError}
|
|
3633
3642
|
*/
|
|
3634
|
-
phoneNumbersCreate: async (contactId,
|
|
3643
|
+
phoneNumbersCreate: async (contactId, aPIPhoneNumberCreate, options = {}) => {
|
|
3635
3644
|
assertParamExists("phoneNumbersCreate", "contactId", contactId);
|
|
3636
|
-
assertParamExists("phoneNumbersCreate", "
|
|
3645
|
+
assertParamExists("phoneNumbersCreate", "aPIPhoneNumberCreate", aPIPhoneNumberCreate);
|
|
3637
3646
|
const localVarPath = `/contacts/{contactId}/phoneNumbers`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
3638
3647
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3639
3648
|
let baseOptions;
|
|
@@ -3647,7 +3656,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3647
3656
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3648
3657
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3649
3658
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3650
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3659
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIPhoneNumberCreate, localVarRequestOptions, configuration);
|
|
3651
3660
|
return {
|
|
3652
3661
|
url: toPathString(localVarUrlObj),
|
|
3653
3662
|
options: localVarRequestOptions
|
|
@@ -3712,12 +3721,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3712
3721
|
/**
|
|
3713
3722
|
* Providers Create
|
|
3714
3723
|
* @summary Providers Create
|
|
3715
|
-
* @param {
|
|
3724
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
3716
3725
|
* @param {*} [options] Override http request option.
|
|
3717
3726
|
* @throws {RequiredError}
|
|
3718
3727
|
*/
|
|
3719
|
-
providersCreate: async (
|
|
3720
|
-
assertParamExists("providersCreate", "
|
|
3728
|
+
providersCreate: async (aPIProviderCreate, options = {}) => {
|
|
3729
|
+
assertParamExists("providersCreate", "aPIProviderCreate", aPIProviderCreate);
|
|
3721
3730
|
const localVarPath = `/providers`;
|
|
3722
3731
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3723
3732
|
let baseOptions;
|
|
@@ -3731,7 +3740,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3731
3740
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3732
3741
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3733
3742
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3734
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3743
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIProviderCreate, localVarRequestOptions, configuration);
|
|
3735
3744
|
return {
|
|
3736
3745
|
url: toPathString(localVarUrlObj),
|
|
3737
3746
|
options: localVarRequestOptions
|
|
@@ -3945,12 +3954,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
3945
3954
|
* Addresses Create
|
|
3946
3955
|
* @summary Addresses Create
|
|
3947
3956
|
* @param {string} contactId
|
|
3948
|
-
* @param {
|
|
3957
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
3949
3958
|
* @param {*} [options] Override http request option.
|
|
3950
3959
|
* @throws {RequiredError}
|
|
3951
3960
|
*/
|
|
3952
|
-
async addressesCreate(contactId,
|
|
3953
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId,
|
|
3961
|
+
async addressesCreate(contactId, aPIAddressCreate, options) {
|
|
3962
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, aPIAddressCreate, options);
|
|
3954
3963
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
3955
3964
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["UnboundApi.addressesCreate"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
3956
3965
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4101,12 +4110,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4101
4110
|
/**
|
|
4102
4111
|
* Conversations Create
|
|
4103
4112
|
* @summary Conversations Create
|
|
4104
|
-
* @param {
|
|
4113
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
4105
4114
|
* @param {*} [options] Override http request option.
|
|
4106
4115
|
* @throws {RequiredError}
|
|
4107
4116
|
*/
|
|
4108
|
-
async conversationsCreate(
|
|
4109
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(
|
|
4117
|
+
async conversationsCreate(aPIConversationCreate, options) {
|
|
4118
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(aPIConversationCreate, options);
|
|
4110
4119
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _194 => _194.serverIndex]), () => ( 0));
|
|
4111
4120
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _195 => _195["UnboundApi.conversationsCreate"], 'optionalAccess', _196 => _196[localVarOperationServerIndex], 'optionalAccess', _197 => _197.url]);
|
|
4112
4121
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4161,12 +4170,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4161
4170
|
* Emails Create
|
|
4162
4171
|
* @summary Emails Create
|
|
4163
4172
|
* @param {string} contactId
|
|
4164
|
-
* @param {
|
|
4173
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
4165
4174
|
* @param {*} [options] Override http request option.
|
|
4166
4175
|
* @throws {RequiredError}
|
|
4167
4176
|
*/
|
|
4168
|
-
async emailsCreate(contactId,
|
|
4169
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId,
|
|
4177
|
+
async emailsCreate(contactId, aPIEmailCreate, options) {
|
|
4178
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, aPIEmailCreate, options);
|
|
4170
4179
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _210 => _210.serverIndex]), () => ( 0));
|
|
4171
4180
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _211 => _211["UnboundApi.emailsCreate"], 'optionalAccess', _212 => _212[localVarOperationServerIndex], 'optionalAccess', _213 => _213.url]);
|
|
4172
4181
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4259,12 +4268,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4259
4268
|
* Messages Create
|
|
4260
4269
|
* @summary Messages Create
|
|
4261
4270
|
* @param {string} conversationId
|
|
4262
|
-
* @param {
|
|
4271
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
4263
4272
|
* @param {*} [options] Override http request option.
|
|
4264
4273
|
* @throws {RequiredError}
|
|
4265
4274
|
*/
|
|
4266
|
-
async messagesCreate(conversationId,
|
|
4267
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId,
|
|
4275
|
+
async messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
4276
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId, aPIMessageCreate, options);
|
|
4268
4277
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _238 => _238.serverIndex]), () => ( 0));
|
|
4269
4278
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _239 => _239["UnboundApi.messagesCreate"], 'optionalAccess', _240 => _240[localVarOperationServerIndex], 'optionalAccess', _241 => _241.url]);
|
|
4270
4279
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4306,12 +4315,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4306
4315
|
* PhoneNumbers Create
|
|
4307
4316
|
* @summary PhoneNumbers Create
|
|
4308
4317
|
* @param {string} contactId
|
|
4309
|
-
* @param {
|
|
4318
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
4310
4319
|
* @param {*} [options] Override http request option.
|
|
4311
4320
|
* @throws {RequiredError}
|
|
4312
4321
|
*/
|
|
4313
|
-
async phoneNumbersCreate(contactId,
|
|
4314
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId,
|
|
4322
|
+
async phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
4323
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options);
|
|
4315
4324
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _250 => _250.serverIndex]), () => ( 0));
|
|
4316
4325
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _251 => _251["UnboundApi.phoneNumbersCreate"], 'optionalAccess', _252 => _252[localVarOperationServerIndex], 'optionalAccess', _253 => _253.url]);
|
|
4317
4326
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4346,12 +4355,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4346
4355
|
/**
|
|
4347
4356
|
* Providers Create
|
|
4348
4357
|
* @summary Providers Create
|
|
4349
|
-
* @param {
|
|
4358
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
4350
4359
|
* @param {*} [options] Override http request option.
|
|
4351
4360
|
* @throws {RequiredError}
|
|
4352
4361
|
*/
|
|
4353
|
-
async providersCreate(
|
|
4354
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(
|
|
4362
|
+
async providersCreate(aPIProviderCreate, options) {
|
|
4363
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(aPIProviderCreate, options);
|
|
4355
4364
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _262 => _262.serverIndex]), () => ( 0));
|
|
4356
4365
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _263 => _263["UnboundApi.providersCreate"], 'optionalAccess', _264 => _264[localVarOperationServerIndex], 'optionalAccess', _265 => _265.url]);
|
|
4357
4366
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4458,12 +4467,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4458
4467
|
* Addresses Create
|
|
4459
4468
|
* @summary Addresses Create
|
|
4460
4469
|
* @param {string} contactId
|
|
4461
|
-
* @param {
|
|
4470
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
4462
4471
|
* @param {*} [options] Override http request option.
|
|
4463
4472
|
* @throws {RequiredError}
|
|
4464
4473
|
*/
|
|
4465
|
-
addressesCreate(contactId,
|
|
4466
|
-
return localVarFp.addressesCreate(contactId,
|
|
4474
|
+
addressesCreate(contactId, aPIAddressCreate, options) {
|
|
4475
|
+
return localVarFp.addressesCreate(contactId, aPIAddressCreate, options).then((request) => request(axios, basePath));
|
|
4467
4476
|
},
|
|
4468
4477
|
/**
|
|
4469
4478
|
* Addresses Delete
|
|
@@ -4581,12 +4590,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4581
4590
|
/**
|
|
4582
4591
|
* Conversations Create
|
|
4583
4592
|
* @summary Conversations Create
|
|
4584
|
-
* @param {
|
|
4593
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
4585
4594
|
* @param {*} [options] Override http request option.
|
|
4586
4595
|
* @throws {RequiredError}
|
|
4587
4596
|
*/
|
|
4588
|
-
conversationsCreate(
|
|
4589
|
-
return localVarFp.conversationsCreate(
|
|
4597
|
+
conversationsCreate(aPIConversationCreate, options) {
|
|
4598
|
+
return localVarFp.conversationsCreate(aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
4590
4599
|
},
|
|
4591
4600
|
/**
|
|
4592
4601
|
* Conversations Get
|
|
@@ -4629,12 +4638,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4629
4638
|
* Emails Create
|
|
4630
4639
|
* @summary Emails Create
|
|
4631
4640
|
* @param {string} contactId
|
|
4632
|
-
* @param {
|
|
4641
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
4633
4642
|
* @param {*} [options] Override http request option.
|
|
4634
4643
|
* @throws {RequiredError}
|
|
4635
4644
|
*/
|
|
4636
|
-
emailsCreate(contactId,
|
|
4637
|
-
return localVarFp.emailsCreate(contactId,
|
|
4645
|
+
emailsCreate(contactId, aPIEmailCreate, options) {
|
|
4646
|
+
return localVarFp.emailsCreate(contactId, aPIEmailCreate, options).then((request) => request(axios, basePath));
|
|
4638
4647
|
},
|
|
4639
4648
|
/**
|
|
4640
4649
|
* Emails Delete
|
|
@@ -4706,12 +4715,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4706
4715
|
* Messages Create
|
|
4707
4716
|
* @summary Messages Create
|
|
4708
4717
|
* @param {string} conversationId
|
|
4709
|
-
* @param {
|
|
4718
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
4710
4719
|
* @param {*} [options] Override http request option.
|
|
4711
4720
|
* @throws {RequiredError}
|
|
4712
4721
|
*/
|
|
4713
|
-
messagesCreate(conversationId,
|
|
4714
|
-
return localVarFp.messagesCreate(conversationId,
|
|
4722
|
+
messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
4723
|
+
return localVarFp.messagesCreate(conversationId, aPIMessageCreate, options).then((request) => request(axios, basePath));
|
|
4715
4724
|
},
|
|
4716
4725
|
/**
|
|
4717
4726
|
* Messages Get
|
|
@@ -4744,12 +4753,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4744
4753
|
* PhoneNumbers Create
|
|
4745
4754
|
* @summary PhoneNumbers Create
|
|
4746
4755
|
* @param {string} contactId
|
|
4747
|
-
* @param {
|
|
4756
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
4748
4757
|
* @param {*} [options] Override http request option.
|
|
4749
4758
|
* @throws {RequiredError}
|
|
4750
4759
|
*/
|
|
4751
|
-
phoneNumbersCreate(contactId,
|
|
4752
|
-
return localVarFp.phoneNumbersCreate(contactId,
|
|
4760
|
+
phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
4761
|
+
return localVarFp.phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options).then((request) => request(axios, basePath));
|
|
4753
4762
|
},
|
|
4754
4763
|
/**
|
|
4755
4764
|
* PhoneNumbers Delete
|
|
@@ -4775,12 +4784,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4775
4784
|
/**
|
|
4776
4785
|
* Providers Create
|
|
4777
4786
|
* @summary Providers Create
|
|
4778
|
-
* @param {
|
|
4787
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
4779
4788
|
* @param {*} [options] Override http request option.
|
|
4780
4789
|
* @throws {RequiredError}
|
|
4781
4790
|
*/
|
|
4782
|
-
providersCreate(
|
|
4783
|
-
return localVarFp.providersCreate(
|
|
4791
|
+
providersCreate(aPIProviderCreate, options) {
|
|
4792
|
+
return localVarFp.providersCreate(aPIProviderCreate, options).then((request) => request(axios, basePath));
|
|
4784
4793
|
},
|
|
4785
4794
|
/**
|
|
4786
4795
|
* Providers Get
|
|
@@ -4865,13 +4874,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
4865
4874
|
* Addresses Create
|
|
4866
4875
|
* @summary Addresses Create
|
|
4867
4876
|
* @param {string} contactId
|
|
4868
|
-
* @param {
|
|
4877
|
+
* @param {APIAddressCreate} aPIAddressCreate
|
|
4869
4878
|
* @param {*} [options] Override http request option.
|
|
4870
4879
|
* @throws {RequiredError}
|
|
4871
4880
|
* @memberof UnboundApi
|
|
4872
4881
|
*/
|
|
4873
|
-
addressesCreate(contactId,
|
|
4874
|
-
return UnboundApiFp(this.configuration).addressesCreate(contactId,
|
|
4882
|
+
addressesCreate(contactId, aPIAddressCreate, options) {
|
|
4883
|
+
return UnboundApiFp(this.configuration).addressesCreate(contactId, aPIAddressCreate, options).then((request) => request(this.axios, this.basePath));
|
|
4875
4884
|
}
|
|
4876
4885
|
/**
|
|
4877
4886
|
* Addresses Delete
|
|
@@ -4999,13 +5008,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
4999
5008
|
/**
|
|
5000
5009
|
* Conversations Create
|
|
5001
5010
|
* @summary Conversations Create
|
|
5002
|
-
* @param {
|
|
5011
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
5003
5012
|
* @param {*} [options] Override http request option.
|
|
5004
5013
|
* @throws {RequiredError}
|
|
5005
5014
|
* @memberof UnboundApi
|
|
5006
5015
|
*/
|
|
5007
|
-
conversationsCreate(
|
|
5008
|
-
return UnboundApiFp(this.configuration).conversationsCreate(
|
|
5016
|
+
conversationsCreate(aPIConversationCreate, options) {
|
|
5017
|
+
return UnboundApiFp(this.configuration).conversationsCreate(aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5009
5018
|
}
|
|
5010
5019
|
/**
|
|
5011
5020
|
* Conversations Get
|
|
@@ -5051,13 +5060,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5051
5060
|
* Emails Create
|
|
5052
5061
|
* @summary Emails Create
|
|
5053
5062
|
* @param {string} contactId
|
|
5054
|
-
* @param {
|
|
5063
|
+
* @param {APIEmailCreate} aPIEmailCreate
|
|
5055
5064
|
* @param {*} [options] Override http request option.
|
|
5056
5065
|
* @throws {RequiredError}
|
|
5057
5066
|
* @memberof UnboundApi
|
|
5058
5067
|
*/
|
|
5059
|
-
emailsCreate(contactId,
|
|
5060
|
-
return UnboundApiFp(this.configuration).emailsCreate(contactId,
|
|
5068
|
+
emailsCreate(contactId, aPIEmailCreate, options) {
|
|
5069
|
+
return UnboundApiFp(this.configuration).emailsCreate(contactId, aPIEmailCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5061
5070
|
}
|
|
5062
5071
|
/**
|
|
5063
5072
|
* Emails Delete
|
|
@@ -5135,13 +5144,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5135
5144
|
* Messages Create
|
|
5136
5145
|
* @summary Messages Create
|
|
5137
5146
|
* @param {string} conversationId
|
|
5138
|
-
* @param {
|
|
5147
|
+
* @param {APIMessageCreate} aPIMessageCreate
|
|
5139
5148
|
* @param {*} [options] Override http request option.
|
|
5140
5149
|
* @throws {RequiredError}
|
|
5141
5150
|
* @memberof UnboundApi
|
|
5142
5151
|
*/
|
|
5143
|
-
messagesCreate(conversationId,
|
|
5144
|
-
return UnboundApiFp(this.configuration).messagesCreate(conversationId,
|
|
5152
|
+
messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
5153
|
+
return UnboundApiFp(this.configuration).messagesCreate(conversationId, aPIMessageCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5145
5154
|
}
|
|
5146
5155
|
/**
|
|
5147
5156
|
* Messages Get
|
|
@@ -5176,13 +5185,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5176
5185
|
* PhoneNumbers Create
|
|
5177
5186
|
* @summary PhoneNumbers Create
|
|
5178
5187
|
* @param {string} contactId
|
|
5179
|
-
* @param {
|
|
5188
|
+
* @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
|
|
5180
5189
|
* @param {*} [options] Override http request option.
|
|
5181
5190
|
* @throws {RequiredError}
|
|
5182
5191
|
* @memberof UnboundApi
|
|
5183
5192
|
*/
|
|
5184
|
-
phoneNumbersCreate(contactId,
|
|
5185
|
-
return UnboundApiFp(this.configuration).phoneNumbersCreate(contactId,
|
|
5193
|
+
phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options) {
|
|
5194
|
+
return UnboundApiFp(this.configuration).phoneNumbersCreate(contactId, aPIPhoneNumberCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5186
5195
|
}
|
|
5187
5196
|
/**
|
|
5188
5197
|
* PhoneNumbers Delete
|
|
@@ -5210,13 +5219,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5210
5219
|
/**
|
|
5211
5220
|
* Providers Create
|
|
5212
5221
|
* @summary Providers Create
|
|
5213
|
-
* @param {
|
|
5222
|
+
* @param {APIProviderCreate} aPIProviderCreate
|
|
5214
5223
|
* @param {*} [options] Override http request option.
|
|
5215
5224
|
* @throws {RequiredError}
|
|
5216
5225
|
* @memberof UnboundApi
|
|
5217
5226
|
*/
|
|
5218
|
-
providersCreate(
|
|
5219
|
-
return UnboundApiFp(this.configuration).providersCreate(
|
|
5227
|
+
providersCreate(aPIProviderCreate, options) {
|
|
5228
|
+
return UnboundApiFp(this.configuration).providersCreate(aPIProviderCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5220
5229
|
}
|
|
5221
5230
|
/**
|
|
5222
5231
|
* Providers Get
|
|
@@ -5444,5 +5453,6 @@ var Configuration = class {
|
|
|
5444
5453
|
|
|
5445
5454
|
|
|
5446
5455
|
|
|
5447
|
-
|
|
5456
|
+
|
|
5457
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.ProviderMessageApiConversationTypeEnum = ProviderMessageApiConversationTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsConversationsModelConversationsModelConversationSortBy = SrcResourceModelsConversationsModelConversationsModelConversationSortBy; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy = SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioMessageApiConversationTypeEnum = TwilioMessageApiConversationTypeEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
5448
5458
|
//# sourceMappingURL=index.js.map
|