@ember-home/unbound-ts-client 0.0.32 → 0.0.34
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 +1283 -2076
- package/dist/index.d.ts +1283 -2076
- package/dist/index.js +161 -161
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +162 -162
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -131,16 +131,16 @@ var SrcResourceModelsContactsModelContactsModelContactSortBy = {
|
|
|
131
131
|
var SrcResourceModelsConversationsModelConversationsModelConversationSortBy = {
|
|
132
132
|
UpdatedAt: "updated_at"
|
|
133
133
|
};
|
|
134
|
-
var
|
|
134
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = {
|
|
135
135
|
Twilio: "TWILIO"
|
|
136
136
|
};
|
|
137
|
-
var
|
|
137
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = {
|
|
138
138
|
Email: "EMAIL"
|
|
139
139
|
};
|
|
140
|
-
var
|
|
140
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum = {
|
|
141
141
|
Twilio: "TWILIO"
|
|
142
142
|
};
|
|
143
|
-
var
|
|
143
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum = {
|
|
144
144
|
Email: "EMAIL"
|
|
145
145
|
};
|
|
146
146
|
var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = {
|
|
@@ -300,13 +300,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
300
300
|
* Addresses Update
|
|
301
301
|
* @summary Addresses Update
|
|
302
302
|
* @param {string} addressId
|
|
303
|
-
* @param {
|
|
303
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
305
305
|
* @throws {RequiredError}
|
|
306
306
|
*/
|
|
307
|
-
addressesUpdate: async (addressId,
|
|
307
|
+
addressesUpdate: async (addressId, aPIAddressUpdate, options = {}) => {
|
|
308
308
|
assertParamExists("addressesUpdate", "addressId", addressId);
|
|
309
|
-
assertParamExists("addressesUpdate", "
|
|
309
|
+
assertParamExists("addressesUpdate", "aPIAddressUpdate", aPIAddressUpdate);
|
|
310
310
|
const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
|
|
311
311
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
312
312
|
let baseOptions;
|
|
@@ -320,7 +320,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
320
320
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
321
321
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
322
322
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
323
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
323
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIAddressUpdate, localVarRequestOptions, configuration);
|
|
324
324
|
return {
|
|
325
325
|
url: toPathString(localVarUrlObj),
|
|
326
326
|
options: localVarRequestOptions
|
|
@@ -522,13 +522,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
522
522
|
* Contacts Update
|
|
523
523
|
* @summary Contacts Update
|
|
524
524
|
* @param {string} contactId
|
|
525
|
-
* @param {
|
|
525
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
526
526
|
* @param {*} [options] Override http request option.
|
|
527
527
|
* @throws {RequiredError}
|
|
528
528
|
*/
|
|
529
|
-
contactsUpdate: async (contactId,
|
|
529
|
+
contactsUpdate: async (contactId, aPIContactUpdate, options = {}) => {
|
|
530
530
|
assertParamExists("contactsUpdate", "contactId", contactId);
|
|
531
|
-
assertParamExists("contactsUpdate", "
|
|
531
|
+
assertParamExists("contactsUpdate", "aPIContactUpdate", aPIContactUpdate);
|
|
532
532
|
const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
533
533
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
534
534
|
let baseOptions;
|
|
@@ -542,7 +542,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
542
542
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
543
543
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
544
544
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
545
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
545
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIContactUpdate, localVarRequestOptions, configuration);
|
|
546
546
|
return {
|
|
547
547
|
url: toPathString(localVarUrlObj),
|
|
548
548
|
options: localVarRequestOptions
|
|
@@ -640,13 +640,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
640
640
|
* Emails Update
|
|
641
641
|
* @summary Emails Update
|
|
642
642
|
* @param {string} emailId
|
|
643
|
-
* @param {
|
|
643
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
644
644
|
* @param {*} [options] Override http request option.
|
|
645
645
|
* @throws {RequiredError}
|
|
646
646
|
*/
|
|
647
|
-
emailsUpdate: async (emailId,
|
|
647
|
+
emailsUpdate: async (emailId, aPIEmailUpdate, options = {}) => {
|
|
648
648
|
assertParamExists("emailsUpdate", "emailId", emailId);
|
|
649
|
-
assertParamExists("emailsUpdate", "
|
|
649
|
+
assertParamExists("emailsUpdate", "aPIEmailUpdate", aPIEmailUpdate);
|
|
650
650
|
const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
|
|
651
651
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
652
652
|
let baseOptions;
|
|
@@ -660,7 +660,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
660
660
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
661
661
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
662
662
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
663
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
663
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIEmailUpdate, localVarRequestOptions, configuration);
|
|
664
664
|
return {
|
|
665
665
|
url: toPathString(localVarUrlObj),
|
|
666
666
|
options: localVarRequestOptions
|
|
@@ -726,13 +726,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
726
726
|
* PhoneNumbers Update
|
|
727
727
|
* @summary PhoneNumbers Update
|
|
728
728
|
* @param {string} phoneNumberId
|
|
729
|
-
* @param {
|
|
729
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
730
730
|
* @param {*} [options] Override http request option.
|
|
731
731
|
* @throws {RequiredError}
|
|
732
732
|
*/
|
|
733
|
-
phoneNumbersUpdate: async (phoneNumberId,
|
|
733
|
+
phoneNumbersUpdate: async (phoneNumberId, aPIPhoneNumberUpdate, options = {}) => {
|
|
734
734
|
assertParamExists("phoneNumbersUpdate", "phoneNumberId", phoneNumberId);
|
|
735
|
-
assertParamExists("phoneNumbersUpdate", "
|
|
735
|
+
assertParamExists("phoneNumbersUpdate", "aPIPhoneNumberUpdate", aPIPhoneNumberUpdate);
|
|
736
736
|
const localVarPath = `/phoneNumbers/{phoneNumberId}`.replace(`{${"phoneNumberId"}}`, encodeURIComponent(String(phoneNumberId)));
|
|
737
737
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
738
738
|
let baseOptions;
|
|
@@ -746,7 +746,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
746
746
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
747
747
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
748
748
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
749
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
749
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIPhoneNumberUpdate, localVarRequestOptions, configuration);
|
|
750
750
|
return {
|
|
751
751
|
url: toPathString(localVarUrlObj),
|
|
752
752
|
options: localVarRequestOptions
|
|
@@ -788,12 +788,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
788
788
|
* Addresses Update
|
|
789
789
|
* @summary Addresses Update
|
|
790
790
|
* @param {string} addressId
|
|
791
|
-
* @param {
|
|
791
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
792
792
|
* @param {*} [options] Override http request option.
|
|
793
793
|
* @throws {RequiredError}
|
|
794
794
|
*/
|
|
795
|
-
async addressesUpdate(addressId,
|
|
796
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId,
|
|
795
|
+
async addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
796
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, aPIAddressUpdate, options);
|
|
797
797
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
798
798
|
const localVarOperationServerBasePath = operationServerMap["ContactsApi.addressesUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
799
799
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -889,12 +889,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
889
889
|
* Contacts Update
|
|
890
890
|
* @summary Contacts Update
|
|
891
891
|
* @param {string} contactId
|
|
892
|
-
* @param {
|
|
892
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
893
893
|
* @param {*} [options] Override http request option.
|
|
894
894
|
* @throws {RequiredError}
|
|
895
895
|
*/
|
|
896
|
-
async contactsUpdate(contactId,
|
|
897
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId,
|
|
896
|
+
async contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
897
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, aPIContactUpdate, options);
|
|
898
898
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
899
899
|
const localVarOperationServerBasePath = operationServerMap["ContactsApi.contactsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
900
900
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -945,12 +945,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
945
945
|
* Emails Update
|
|
946
946
|
* @summary Emails Update
|
|
947
947
|
* @param {string} emailId
|
|
948
|
-
* @param {
|
|
948
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
949
949
|
* @param {*} [options] Override http request option.
|
|
950
950
|
* @throws {RequiredError}
|
|
951
951
|
*/
|
|
952
|
-
async emailsUpdate(emailId,
|
|
953
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId,
|
|
952
|
+
async emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
953
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId, aPIEmailUpdate, options);
|
|
954
954
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
955
955
|
const localVarOperationServerBasePath = operationServerMap["ContactsApi.emailsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
956
956
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -986,12 +986,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
986
986
|
* PhoneNumbers Update
|
|
987
987
|
* @summary PhoneNumbers Update
|
|
988
988
|
* @param {string} phoneNumberId
|
|
989
|
-
* @param {
|
|
989
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
990
990
|
* @param {*} [options] Override http request option.
|
|
991
991
|
* @throws {RequiredError}
|
|
992
992
|
*/
|
|
993
|
-
async phoneNumbersUpdate(phoneNumberId,
|
|
994
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersUpdate(phoneNumberId,
|
|
993
|
+
async phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
994
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options);
|
|
995
995
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
996
996
|
const localVarOperationServerBasePath = operationServerMap["ContactsApi.phoneNumbersUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
997
997
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1026,12 +1026,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1026
1026
|
* Addresses Update
|
|
1027
1027
|
* @summary Addresses Update
|
|
1028
1028
|
* @param {string} addressId
|
|
1029
|
-
* @param {
|
|
1029
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
1030
1030
|
* @param {*} [options] Override http request option.
|
|
1031
1031
|
* @throws {RequiredError}
|
|
1032
1032
|
*/
|
|
1033
|
-
addressesUpdate(addressId,
|
|
1034
|
-
return localVarFp.addressesUpdate(addressId,
|
|
1033
|
+
addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
1034
|
+
return localVarFp.addressesUpdate(addressId, aPIAddressUpdate, options).then((request) => request(axios, basePath));
|
|
1035
1035
|
},
|
|
1036
1036
|
/**
|
|
1037
1037
|
* Associates a contact with a listing with the OWNER type.
|
|
@@ -1106,12 +1106,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1106
1106
|
* Contacts Update
|
|
1107
1107
|
* @summary Contacts Update
|
|
1108
1108
|
* @param {string} contactId
|
|
1109
|
-
* @param {
|
|
1109
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
1110
1110
|
* @param {*} [options] Override http request option.
|
|
1111
1111
|
* @throws {RequiredError}
|
|
1112
1112
|
*/
|
|
1113
|
-
contactsUpdate(contactId,
|
|
1114
|
-
return localVarFp.contactsUpdate(contactId,
|
|
1113
|
+
contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
1114
|
+
return localVarFp.contactsUpdate(contactId, aPIContactUpdate, options).then((request) => request(axios, basePath));
|
|
1115
1115
|
},
|
|
1116
1116
|
/**
|
|
1117
1117
|
* Updates an association between a contact and a listing.
|
|
@@ -1150,12 +1150,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1150
1150
|
* Emails Update
|
|
1151
1151
|
* @summary Emails Update
|
|
1152
1152
|
* @param {string} emailId
|
|
1153
|
-
* @param {
|
|
1153
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
1154
1154
|
* @param {*} [options] Override http request option.
|
|
1155
1155
|
* @throws {RequiredError}
|
|
1156
1156
|
*/
|
|
1157
|
-
emailsUpdate(emailId,
|
|
1158
|
-
return localVarFp.emailsUpdate(emailId,
|
|
1157
|
+
emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
1158
|
+
return localVarFp.emailsUpdate(emailId, aPIEmailUpdate, options).then((request) => request(axios, basePath));
|
|
1159
1159
|
},
|
|
1160
1160
|
/**
|
|
1161
1161
|
* PhoneNumbers Create
|
|
@@ -1182,12 +1182,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1182
1182
|
* PhoneNumbers Update
|
|
1183
1183
|
* @summary PhoneNumbers Update
|
|
1184
1184
|
* @param {string} phoneNumberId
|
|
1185
|
-
* @param {
|
|
1185
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
1186
1186
|
* @param {*} [options] Override http request option.
|
|
1187
1187
|
* @throws {RequiredError}
|
|
1188
1188
|
*/
|
|
1189
|
-
phoneNumbersUpdate(phoneNumberId,
|
|
1190
|
-
return localVarFp.phoneNumbersUpdate(phoneNumberId,
|
|
1189
|
+
phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
1190
|
+
return localVarFp.phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options).then((request) => request(axios, basePath));
|
|
1191
1191
|
}
|
|
1192
1192
|
};
|
|
1193
1193
|
};
|
|
@@ -1219,13 +1219,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1219
1219
|
* Addresses Update
|
|
1220
1220
|
* @summary Addresses Update
|
|
1221
1221
|
* @param {string} addressId
|
|
1222
|
-
* @param {
|
|
1222
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
1223
1223
|
* @param {*} [options] Override http request option.
|
|
1224
1224
|
* @throws {RequiredError}
|
|
1225
1225
|
* @memberof ContactsApi
|
|
1226
1226
|
*/
|
|
1227
|
-
addressesUpdate(addressId,
|
|
1228
|
-
return ContactsApiFp(this.configuration).addressesUpdate(addressId,
|
|
1227
|
+
addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
1228
|
+
return ContactsApiFp(this.configuration).addressesUpdate(addressId, aPIAddressUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1229
1229
|
}
|
|
1230
1230
|
/**
|
|
1231
1231
|
* Associates a contact with a listing with the OWNER type.
|
|
@@ -1306,13 +1306,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1306
1306
|
* Contacts Update
|
|
1307
1307
|
* @summary Contacts Update
|
|
1308
1308
|
* @param {string} contactId
|
|
1309
|
-
* @param {
|
|
1309
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
1310
1310
|
* @param {*} [options] Override http request option.
|
|
1311
1311
|
* @throws {RequiredError}
|
|
1312
1312
|
* @memberof ContactsApi
|
|
1313
1313
|
*/
|
|
1314
|
-
contactsUpdate(contactId,
|
|
1315
|
-
return ContactsApiFp(this.configuration).contactsUpdate(contactId,
|
|
1314
|
+
contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
1315
|
+
return ContactsApiFp(this.configuration).contactsUpdate(contactId, aPIContactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1316
1316
|
}
|
|
1317
1317
|
/**
|
|
1318
1318
|
* Updates an association between a contact and a listing.
|
|
@@ -1354,13 +1354,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1354
1354
|
* Emails Update
|
|
1355
1355
|
* @summary Emails Update
|
|
1356
1356
|
* @param {string} emailId
|
|
1357
|
-
* @param {
|
|
1357
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
1358
1358
|
* @param {*} [options] Override http request option.
|
|
1359
1359
|
* @throws {RequiredError}
|
|
1360
1360
|
* @memberof ContactsApi
|
|
1361
1361
|
*/
|
|
1362
|
-
emailsUpdate(emailId,
|
|
1363
|
-
return ContactsApiFp(this.configuration).emailsUpdate(emailId,
|
|
1362
|
+
emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
1363
|
+
return ContactsApiFp(this.configuration).emailsUpdate(emailId, aPIEmailUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1364
1364
|
}
|
|
1365
1365
|
/**
|
|
1366
1366
|
* PhoneNumbers Create
|
|
@@ -1389,13 +1389,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1389
1389
|
* PhoneNumbers Update
|
|
1390
1390
|
* @summary PhoneNumbers Update
|
|
1391
1391
|
* @param {string} phoneNumberId
|
|
1392
|
-
* @param {
|
|
1392
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
1393
1393
|
* @param {*} [options] Override http request option.
|
|
1394
1394
|
* @throws {RequiredError}
|
|
1395
1395
|
* @memberof ContactsApi
|
|
1396
1396
|
*/
|
|
1397
|
-
phoneNumbersUpdate(phoneNumberId,
|
|
1398
|
-
return ContactsApiFp(this.configuration).phoneNumbersUpdate(phoneNumberId,
|
|
1397
|
+
phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
1398
|
+
return ContactsApiFp(this.configuration).phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1399
1399
|
}
|
|
1400
1400
|
};
|
|
1401
1401
|
var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
@@ -1510,13 +1510,13 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1510
1510
|
* Conversations Update
|
|
1511
1511
|
* @summary Conversations Update
|
|
1512
1512
|
* @param {string} conversationId
|
|
1513
|
-
* @param {
|
|
1513
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1514
1514
|
* @param {*} [options] Override http request option.
|
|
1515
1515
|
* @throws {RequiredError}
|
|
1516
1516
|
*/
|
|
1517
|
-
conversationsUpdate: async (conversationId,
|
|
1517
|
+
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
1518
1518
|
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
1519
|
-
assertParamExists("conversationsUpdate", "
|
|
1519
|
+
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
1520
1520
|
const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1521
1521
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1522
1522
|
let baseOptions;
|
|
@@ -1530,7 +1530,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1530
1530
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1531
1531
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1532
1532
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1533
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1533
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
1534
1534
|
return {
|
|
1535
1535
|
url: toPathString(localVarUrlObj),
|
|
1536
1536
|
options: localVarRequestOptions
|
|
@@ -1702,12 +1702,12 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1702
1702
|
* Conversations Update
|
|
1703
1703
|
* @summary Conversations Update
|
|
1704
1704
|
* @param {string} conversationId
|
|
1705
|
-
* @param {
|
|
1705
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1706
1706
|
* @param {*} [options] Override http request option.
|
|
1707
1707
|
* @throws {RequiredError}
|
|
1708
1708
|
*/
|
|
1709
|
-
async conversationsUpdate(conversationId,
|
|
1710
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId,
|
|
1709
|
+
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1710
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
1711
1711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1712
1712
|
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
1713
1713
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1804,12 +1804,12 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
1804
1804
|
* Conversations Update
|
|
1805
1805
|
* @summary Conversations Update
|
|
1806
1806
|
* @param {string} conversationId
|
|
1807
|
-
* @param {
|
|
1807
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1808
1808
|
* @param {*} [options] Override http request option.
|
|
1809
1809
|
* @throws {RequiredError}
|
|
1810
1810
|
*/
|
|
1811
|
-
conversationsUpdate(conversationId,
|
|
1812
|
-
return localVarFp.conversationsUpdate(conversationId,
|
|
1811
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1812
|
+
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
1813
1813
|
},
|
|
1814
1814
|
/**
|
|
1815
1815
|
* Messages Create
|
|
@@ -1895,13 +1895,13 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
1895
1895
|
* Conversations Update
|
|
1896
1896
|
* @summary Conversations Update
|
|
1897
1897
|
* @param {string} conversationId
|
|
1898
|
-
* @param {
|
|
1898
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1899
1899
|
* @param {*} [options] Override http request option.
|
|
1900
1900
|
* @throws {RequiredError}
|
|
1901
1901
|
* @memberof ConversationsApi
|
|
1902
1902
|
*/
|
|
1903
|
-
conversationsUpdate(conversationId,
|
|
1904
|
-
return ConversationsApiFp(this.configuration).conversationsUpdate(conversationId,
|
|
1903
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1904
|
+
return ConversationsApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1905
1905
|
}
|
|
1906
1906
|
/**
|
|
1907
1907
|
* Messages Create
|
|
@@ -2437,13 +2437,13 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
2437
2437
|
* Providers Update
|
|
2438
2438
|
* @summary Providers Update
|
|
2439
2439
|
* @param {string} providerId
|
|
2440
|
-
* @param {
|
|
2440
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
2441
2441
|
* @param {*} [options] Override http request option.
|
|
2442
2442
|
* @throws {RequiredError}
|
|
2443
2443
|
*/
|
|
2444
|
-
providersUpdate: async (providerId,
|
|
2444
|
+
providersUpdate: async (providerId, aPIProviderUpdate, options = {}) => {
|
|
2445
2445
|
assertParamExists("providersUpdate", "providerId", providerId);
|
|
2446
|
-
assertParamExists("providersUpdate", "
|
|
2446
|
+
assertParamExists("providersUpdate", "aPIProviderUpdate", aPIProviderUpdate);
|
|
2447
2447
|
const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
|
|
2448
2448
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2449
2449
|
let baseOptions;
|
|
@@ -2457,7 +2457,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
2457
2457
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2458
2458
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2459
2459
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2460
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2460
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIProviderUpdate, localVarRequestOptions, configuration);
|
|
2461
2461
|
return {
|
|
2462
2462
|
url: toPathString(localVarUrlObj),
|
|
2463
2463
|
options: localVarRequestOptions
|
|
@@ -2510,12 +2510,12 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2510
2510
|
* Providers Update
|
|
2511
2511
|
* @summary Providers Update
|
|
2512
2512
|
* @param {string} providerId
|
|
2513
|
-
* @param {
|
|
2513
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
2514
2514
|
* @param {*} [options] Override http request option.
|
|
2515
2515
|
* @throws {RequiredError}
|
|
2516
2516
|
*/
|
|
2517
|
-
async providersUpdate(providerId,
|
|
2518
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId,
|
|
2517
|
+
async providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
2518
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, aPIProviderUpdate, options);
|
|
2519
2519
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2520
2520
|
const localVarOperationServerBasePath = operationServerMap["ProvidersApi.providersUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
2521
2521
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2558,12 +2558,12 @@ var ProvidersApiFactory = function(configuration, basePath, axios) {
|
|
|
2558
2558
|
* Providers Update
|
|
2559
2559
|
* @summary Providers Update
|
|
2560
2560
|
* @param {string} providerId
|
|
2561
|
-
* @param {
|
|
2561
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
2562
2562
|
* @param {*} [options] Override http request option.
|
|
2563
2563
|
* @throws {RequiredError}
|
|
2564
2564
|
*/
|
|
2565
|
-
providersUpdate(providerId,
|
|
2566
|
-
return localVarFp.providersUpdate(providerId,
|
|
2565
|
+
providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
2566
|
+
return localVarFp.providersUpdate(providerId, aPIProviderUpdate, options).then((request) => request(axios, basePath));
|
|
2567
2567
|
}
|
|
2568
2568
|
};
|
|
2569
2569
|
};
|
|
@@ -2604,13 +2604,13 @@ var ProvidersApi = class extends BaseAPI {
|
|
|
2604
2604
|
* Providers Update
|
|
2605
2605
|
* @summary Providers Update
|
|
2606
2606
|
* @param {string} providerId
|
|
2607
|
-
* @param {
|
|
2607
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
2608
2608
|
* @param {*} [options] Override http request option.
|
|
2609
2609
|
* @throws {RequiredError}
|
|
2610
2610
|
* @memberof ProvidersApi
|
|
2611
2611
|
*/
|
|
2612
|
-
providersUpdate(providerId,
|
|
2613
|
-
return ProvidersApiFp(this.configuration).providersUpdate(providerId,
|
|
2612
|
+
providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
2613
|
+
return ProvidersApiFp(this.configuration).providersUpdate(providerId, aPIProviderUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2614
2614
|
}
|
|
2615
2615
|
};
|
|
2616
2616
|
var ReservationsApiAxiosParamCreator = function(configuration) {
|
|
@@ -2879,13 +2879,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2879
2879
|
* Addresses Update
|
|
2880
2880
|
* @summary Addresses Update
|
|
2881
2881
|
* @param {string} addressId
|
|
2882
|
-
* @param {
|
|
2882
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
2883
2883
|
* @param {*} [options] Override http request option.
|
|
2884
2884
|
* @throws {RequiredError}
|
|
2885
2885
|
*/
|
|
2886
|
-
addressesUpdate: async (addressId,
|
|
2886
|
+
addressesUpdate: async (addressId, aPIAddressUpdate, options = {}) => {
|
|
2887
2887
|
assertParamExists("addressesUpdate", "addressId", addressId);
|
|
2888
|
-
assertParamExists("addressesUpdate", "
|
|
2888
|
+
assertParamExists("addressesUpdate", "aPIAddressUpdate", aPIAddressUpdate);
|
|
2889
2889
|
const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
|
|
2890
2890
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2891
2891
|
let baseOptions;
|
|
@@ -2899,7 +2899,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2899
2899
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2900
2900
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2901
2901
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2902
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2902
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIAddressUpdate, localVarRequestOptions, configuration);
|
|
2903
2903
|
return {
|
|
2904
2904
|
url: toPathString(localVarUrlObj),
|
|
2905
2905
|
options: localVarRequestOptions
|
|
@@ -3101,13 +3101,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3101
3101
|
* Contacts Update
|
|
3102
3102
|
* @summary Contacts Update
|
|
3103
3103
|
* @param {string} contactId
|
|
3104
|
-
* @param {
|
|
3104
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
3105
3105
|
* @param {*} [options] Override http request option.
|
|
3106
3106
|
* @throws {RequiredError}
|
|
3107
3107
|
*/
|
|
3108
|
-
contactsUpdate: async (contactId,
|
|
3108
|
+
contactsUpdate: async (contactId, aPIContactUpdate, options = {}) => {
|
|
3109
3109
|
assertParamExists("contactsUpdate", "contactId", contactId);
|
|
3110
|
-
assertParamExists("contactsUpdate", "
|
|
3110
|
+
assertParamExists("contactsUpdate", "aPIContactUpdate", aPIContactUpdate);
|
|
3111
3111
|
const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
3112
3112
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3113
3113
|
let baseOptions;
|
|
@@ -3121,7 +3121,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3121
3121
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3122
3122
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3123
3123
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3124
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3124
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIContactUpdate, localVarRequestOptions, configuration);
|
|
3125
3125
|
return {
|
|
3126
3126
|
url: toPathString(localVarUrlObj),
|
|
3127
3127
|
options: localVarRequestOptions
|
|
@@ -3269,13 +3269,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3269
3269
|
* Conversations Update
|
|
3270
3270
|
* @summary Conversations Update
|
|
3271
3271
|
* @param {string} conversationId
|
|
3272
|
-
* @param {
|
|
3272
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
3273
3273
|
* @param {*} [options] Override http request option.
|
|
3274
3274
|
* @throws {RequiredError}
|
|
3275
3275
|
*/
|
|
3276
|
-
conversationsUpdate: async (conversationId,
|
|
3276
|
+
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
3277
3277
|
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
3278
|
-
assertParamExists("conversationsUpdate", "
|
|
3278
|
+
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
3279
3279
|
const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3280
3280
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3281
3281
|
let baseOptions;
|
|
@@ -3289,7 +3289,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3289
3289
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3290
3290
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3291
3291
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3292
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3292
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
3293
3293
|
return {
|
|
3294
3294
|
url: toPathString(localVarUrlObj),
|
|
3295
3295
|
options: localVarRequestOptions
|
|
@@ -3355,13 +3355,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3355
3355
|
* Emails Update
|
|
3356
3356
|
* @summary Emails Update
|
|
3357
3357
|
* @param {string} emailId
|
|
3358
|
-
* @param {
|
|
3358
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
3359
3359
|
* @param {*} [options] Override http request option.
|
|
3360
3360
|
* @throws {RequiredError}
|
|
3361
3361
|
*/
|
|
3362
|
-
emailsUpdate: async (emailId,
|
|
3362
|
+
emailsUpdate: async (emailId, aPIEmailUpdate, options = {}) => {
|
|
3363
3363
|
assertParamExists("emailsUpdate", "emailId", emailId);
|
|
3364
|
-
assertParamExists("emailsUpdate", "
|
|
3364
|
+
assertParamExists("emailsUpdate", "aPIEmailUpdate", aPIEmailUpdate);
|
|
3365
3365
|
const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
|
|
3366
3366
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3367
3367
|
let baseOptions;
|
|
@@ -3375,7 +3375,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3375
3375
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3376
3376
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3377
3377
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3378
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3378
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIEmailUpdate, localVarRequestOptions, configuration);
|
|
3379
3379
|
return {
|
|
3380
3380
|
url: toPathString(localVarUrlObj),
|
|
3381
3381
|
options: localVarRequestOptions
|
|
@@ -3683,13 +3683,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3683
3683
|
* PhoneNumbers Update
|
|
3684
3684
|
* @summary PhoneNumbers Update
|
|
3685
3685
|
* @param {string} phoneNumberId
|
|
3686
|
-
* @param {
|
|
3686
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
3687
3687
|
* @param {*} [options] Override http request option.
|
|
3688
3688
|
* @throws {RequiredError}
|
|
3689
3689
|
*/
|
|
3690
|
-
phoneNumbersUpdate: async (phoneNumberId,
|
|
3690
|
+
phoneNumbersUpdate: async (phoneNumberId, aPIPhoneNumberUpdate, options = {}) => {
|
|
3691
3691
|
assertParamExists("phoneNumbersUpdate", "phoneNumberId", phoneNumberId);
|
|
3692
|
-
assertParamExists("phoneNumbersUpdate", "
|
|
3692
|
+
assertParamExists("phoneNumbersUpdate", "aPIPhoneNumberUpdate", aPIPhoneNumberUpdate);
|
|
3693
3693
|
const localVarPath = `/phoneNumbers/{phoneNumberId}`.replace(`{${"phoneNumberId"}}`, encodeURIComponent(String(phoneNumberId)));
|
|
3694
3694
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3695
3695
|
let baseOptions;
|
|
@@ -3703,7 +3703,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3703
3703
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3704
3704
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3705
3705
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3706
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3706
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIPhoneNumberUpdate, localVarRequestOptions, configuration);
|
|
3707
3707
|
return {
|
|
3708
3708
|
url: toPathString(localVarUrlObj),
|
|
3709
3709
|
options: localVarRequestOptions
|
|
@@ -3791,13 +3791,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3791
3791
|
* Providers Update
|
|
3792
3792
|
* @summary Providers Update
|
|
3793
3793
|
* @param {string} providerId
|
|
3794
|
-
* @param {
|
|
3794
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
3795
3795
|
* @param {*} [options] Override http request option.
|
|
3796
3796
|
* @throws {RequiredError}
|
|
3797
3797
|
*/
|
|
3798
|
-
providersUpdate: async (providerId,
|
|
3798
|
+
providersUpdate: async (providerId, aPIProviderUpdate, options = {}) => {
|
|
3799
3799
|
assertParamExists("providersUpdate", "providerId", providerId);
|
|
3800
|
-
assertParamExists("providersUpdate", "
|
|
3800
|
+
assertParamExists("providersUpdate", "aPIProviderUpdate", aPIProviderUpdate);
|
|
3801
3801
|
const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
|
|
3802
3802
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3803
3803
|
let baseOptions;
|
|
@@ -3811,7 +3811,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3811
3811
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3812
3812
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3813
3813
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3814
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3814
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIProviderUpdate, localVarRequestOptions, configuration);
|
|
3815
3815
|
return {
|
|
3816
3816
|
url: toPathString(localVarUrlObj),
|
|
3817
3817
|
options: localVarRequestOptions
|
|
@@ -3972,12 +3972,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
3972
3972
|
* Addresses Update
|
|
3973
3973
|
* @summary Addresses Update
|
|
3974
3974
|
* @param {string} addressId
|
|
3975
|
-
* @param {
|
|
3975
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
3976
3976
|
* @param {*} [options] Override http request option.
|
|
3977
3977
|
* @throws {RequiredError}
|
|
3978
3978
|
*/
|
|
3979
|
-
async addressesUpdate(addressId,
|
|
3980
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId,
|
|
3979
|
+
async addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
3980
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, aPIAddressUpdate, options);
|
|
3981
3981
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3982
3982
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.addressesUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
3983
3983
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4073,12 +4073,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4073
4073
|
* Contacts Update
|
|
4074
4074
|
* @summary Contacts Update
|
|
4075
4075
|
* @param {string} contactId
|
|
4076
|
-
* @param {
|
|
4076
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
4077
4077
|
* @param {*} [options] Override http request option.
|
|
4078
4078
|
* @throws {RequiredError}
|
|
4079
4079
|
*/
|
|
4080
|
-
async contactsUpdate(contactId,
|
|
4081
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId,
|
|
4080
|
+
async contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
4081
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, aPIContactUpdate, options);
|
|
4082
4082
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4083
4083
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.contactsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4084
4084
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4147,12 +4147,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4147
4147
|
* Conversations Update
|
|
4148
4148
|
* @summary Conversations Update
|
|
4149
4149
|
* @param {string} conversationId
|
|
4150
|
-
* @param {
|
|
4150
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4151
4151
|
* @param {*} [options] Override http request option.
|
|
4152
4152
|
* @throws {RequiredError}
|
|
4153
4153
|
*/
|
|
4154
|
-
async conversationsUpdate(conversationId,
|
|
4155
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId,
|
|
4154
|
+
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4155
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
4156
4156
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4157
4157
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4158
4158
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4188,12 +4188,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4188
4188
|
* Emails Update
|
|
4189
4189
|
* @summary Emails Update
|
|
4190
4190
|
* @param {string} emailId
|
|
4191
|
-
* @param {
|
|
4191
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
4192
4192
|
* @param {*} [options] Override http request option.
|
|
4193
4193
|
* @throws {RequiredError}
|
|
4194
4194
|
*/
|
|
4195
|
-
async emailsUpdate(emailId,
|
|
4196
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId,
|
|
4195
|
+
async emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
4196
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId, aPIEmailUpdate, options);
|
|
4197
4197
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4198
4198
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.emailsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4199
4199
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4333,12 +4333,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4333
4333
|
* PhoneNumbers Update
|
|
4334
4334
|
* @summary PhoneNumbers Update
|
|
4335
4335
|
* @param {string} phoneNumberId
|
|
4336
|
-
* @param {
|
|
4336
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
4337
4337
|
* @param {*} [options] Override http request option.
|
|
4338
4338
|
* @throws {RequiredError}
|
|
4339
4339
|
*/
|
|
4340
|
-
async phoneNumbersUpdate(phoneNumberId,
|
|
4341
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersUpdate(phoneNumberId,
|
|
4340
|
+
async phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
4341
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options);
|
|
4342
4342
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4343
4343
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.phoneNumbersUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4344
4344
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4385,12 +4385,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
4385
4385
|
* Providers Update
|
|
4386
4386
|
* @summary Providers Update
|
|
4387
4387
|
* @param {string} providerId
|
|
4388
|
-
* @param {
|
|
4388
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
4389
4389
|
* @param {*} [options] Override http request option.
|
|
4390
4390
|
* @throws {RequiredError}
|
|
4391
4391
|
*/
|
|
4392
|
-
async providersUpdate(providerId,
|
|
4393
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId,
|
|
4392
|
+
async providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
4393
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, aPIProviderUpdate, options);
|
|
4394
4394
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4395
4395
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.providersUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4396
4396
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4479,12 +4479,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4479
4479
|
* Addresses Update
|
|
4480
4480
|
* @summary Addresses Update
|
|
4481
4481
|
* @param {string} addressId
|
|
4482
|
-
* @param {
|
|
4482
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
4483
4483
|
* @param {*} [options] Override http request option.
|
|
4484
4484
|
* @throws {RequiredError}
|
|
4485
4485
|
*/
|
|
4486
|
-
addressesUpdate(addressId,
|
|
4487
|
-
return localVarFp.addressesUpdate(addressId,
|
|
4486
|
+
addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
4487
|
+
return localVarFp.addressesUpdate(addressId, aPIAddressUpdate, options).then((request) => request(axios, basePath));
|
|
4488
4488
|
},
|
|
4489
4489
|
/**
|
|
4490
4490
|
* Associates a contact with a listing with the OWNER type.
|
|
@@ -4559,12 +4559,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4559
4559
|
* Contacts Update
|
|
4560
4560
|
* @summary Contacts Update
|
|
4561
4561
|
* @param {string} contactId
|
|
4562
|
-
* @param {
|
|
4562
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
4563
4563
|
* @param {*} [options] Override http request option.
|
|
4564
4564
|
* @throws {RequiredError}
|
|
4565
4565
|
*/
|
|
4566
|
-
contactsUpdate(contactId,
|
|
4567
|
-
return localVarFp.contactsUpdate(contactId,
|
|
4566
|
+
contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
4567
|
+
return localVarFp.contactsUpdate(contactId, aPIContactUpdate, options).then((request) => request(axios, basePath));
|
|
4568
4568
|
},
|
|
4569
4569
|
/**
|
|
4570
4570
|
* Updates an association between a contact and a listing.
|
|
@@ -4618,12 +4618,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4618
4618
|
* Conversations Update
|
|
4619
4619
|
* @summary Conversations Update
|
|
4620
4620
|
* @param {string} conversationId
|
|
4621
|
-
* @param {
|
|
4621
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4622
4622
|
* @param {*} [options] Override http request option.
|
|
4623
4623
|
* @throws {RequiredError}
|
|
4624
4624
|
*/
|
|
4625
|
-
conversationsUpdate(conversationId,
|
|
4626
|
-
return localVarFp.conversationsUpdate(conversationId,
|
|
4625
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4626
|
+
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
4627
4627
|
},
|
|
4628
4628
|
/**
|
|
4629
4629
|
* Emails Create
|
|
@@ -4650,12 +4650,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4650
4650
|
* Emails Update
|
|
4651
4651
|
* @summary Emails Update
|
|
4652
4652
|
* @param {string} emailId
|
|
4653
|
-
* @param {
|
|
4653
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
4654
4654
|
* @param {*} [options] Override http request option.
|
|
4655
4655
|
* @throws {RequiredError}
|
|
4656
4656
|
*/
|
|
4657
|
-
emailsUpdate(emailId,
|
|
4658
|
-
return localVarFp.emailsUpdate(emailId,
|
|
4657
|
+
emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
4658
|
+
return localVarFp.emailsUpdate(emailId, aPIEmailUpdate, options).then((request) => request(axios, basePath));
|
|
4659
4659
|
},
|
|
4660
4660
|
/**
|
|
4661
4661
|
* List all listings
|
|
@@ -4765,12 +4765,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4765
4765
|
* PhoneNumbers Update
|
|
4766
4766
|
* @summary PhoneNumbers Update
|
|
4767
4767
|
* @param {string} phoneNumberId
|
|
4768
|
-
* @param {
|
|
4768
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
4769
4769
|
* @param {*} [options] Override http request option.
|
|
4770
4770
|
* @throws {RequiredError}
|
|
4771
4771
|
*/
|
|
4772
|
-
phoneNumbersUpdate(phoneNumberId,
|
|
4773
|
-
return localVarFp.phoneNumbersUpdate(phoneNumberId,
|
|
4772
|
+
phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
4773
|
+
return localVarFp.phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options).then((request) => request(axios, basePath));
|
|
4774
4774
|
},
|
|
4775
4775
|
/**
|
|
4776
4776
|
* Providers Create
|
|
@@ -4805,12 +4805,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4805
4805
|
* Providers Update
|
|
4806
4806
|
* @summary Providers Update
|
|
4807
4807
|
* @param {string} providerId
|
|
4808
|
-
* @param {
|
|
4808
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
4809
4809
|
* @param {*} [options] Override http request option.
|
|
4810
4810
|
* @throws {RequiredError}
|
|
4811
4811
|
*/
|
|
4812
|
-
providersUpdate(providerId,
|
|
4813
|
-
return localVarFp.providersUpdate(providerId,
|
|
4812
|
+
providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
4813
|
+
return localVarFp.providersUpdate(providerId, aPIProviderUpdate, options).then((request) => request(axios, basePath));
|
|
4814
4814
|
},
|
|
4815
4815
|
/**
|
|
4816
4816
|
* Reservations Get
|
|
@@ -4888,13 +4888,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
4888
4888
|
* Addresses Update
|
|
4889
4889
|
* @summary Addresses Update
|
|
4890
4890
|
* @param {string} addressId
|
|
4891
|
-
* @param {
|
|
4891
|
+
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
4892
4892
|
* @param {*} [options] Override http request option.
|
|
4893
4893
|
* @throws {RequiredError}
|
|
4894
4894
|
* @memberof UnboundApi
|
|
4895
4895
|
*/
|
|
4896
|
-
addressesUpdate(addressId,
|
|
4897
|
-
return UnboundApiFp(this.configuration).addressesUpdate(addressId,
|
|
4896
|
+
addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
4897
|
+
return UnboundApiFp(this.configuration).addressesUpdate(addressId, aPIAddressUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
4898
4898
|
}
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Associates a contact with a listing with the OWNER type.
|
|
@@ -4975,13 +4975,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
4975
4975
|
* Contacts Update
|
|
4976
4976
|
* @summary Contacts Update
|
|
4977
4977
|
* @param {string} contactId
|
|
4978
|
-
* @param {
|
|
4978
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
4979
4979
|
* @param {*} [options] Override http request option.
|
|
4980
4980
|
* @throws {RequiredError}
|
|
4981
4981
|
* @memberof UnboundApi
|
|
4982
4982
|
*/
|
|
4983
|
-
contactsUpdate(contactId,
|
|
4984
|
-
return UnboundApiFp(this.configuration).contactsUpdate(contactId,
|
|
4983
|
+
contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
4984
|
+
return UnboundApiFp(this.configuration).contactsUpdate(contactId, aPIContactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
4985
4985
|
}
|
|
4986
4986
|
/**
|
|
4987
4987
|
* Updates an association between a contact and a listing.
|
|
@@ -5039,13 +5039,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5039
5039
|
* Conversations Update
|
|
5040
5040
|
* @summary Conversations Update
|
|
5041
5041
|
* @param {string} conversationId
|
|
5042
|
-
* @param {
|
|
5042
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5043
5043
|
* @param {*} [options] Override http request option.
|
|
5044
5044
|
* @throws {RequiredError}
|
|
5045
5045
|
* @memberof UnboundApi
|
|
5046
5046
|
*/
|
|
5047
|
-
conversationsUpdate(conversationId,
|
|
5048
|
-
return UnboundApiFp(this.configuration).conversationsUpdate(conversationId,
|
|
5047
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
5048
|
+
return UnboundApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5049
5049
|
}
|
|
5050
5050
|
/**
|
|
5051
5051
|
* Emails Create
|
|
@@ -5074,13 +5074,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5074
5074
|
* Emails Update
|
|
5075
5075
|
* @summary Emails Update
|
|
5076
5076
|
* @param {string} emailId
|
|
5077
|
-
* @param {
|
|
5077
|
+
* @param {APIEmailUpdate} aPIEmailUpdate
|
|
5078
5078
|
* @param {*} [options] Override http request option.
|
|
5079
5079
|
* @throws {RequiredError}
|
|
5080
5080
|
* @memberof UnboundApi
|
|
5081
5081
|
*/
|
|
5082
|
-
emailsUpdate(emailId,
|
|
5083
|
-
return UnboundApiFp(this.configuration).emailsUpdate(emailId,
|
|
5082
|
+
emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
5083
|
+
return UnboundApiFp(this.configuration).emailsUpdate(emailId, aPIEmailUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5084
5084
|
}
|
|
5085
5085
|
/**
|
|
5086
5086
|
* List all listings
|
|
@@ -5199,13 +5199,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5199
5199
|
* PhoneNumbers Update
|
|
5200
5200
|
* @summary PhoneNumbers Update
|
|
5201
5201
|
* @param {string} phoneNumberId
|
|
5202
|
-
* @param {
|
|
5202
|
+
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
5203
5203
|
* @param {*} [options] Override http request option.
|
|
5204
5204
|
* @throws {RequiredError}
|
|
5205
5205
|
* @memberof UnboundApi
|
|
5206
5206
|
*/
|
|
5207
|
-
phoneNumbersUpdate(phoneNumberId,
|
|
5208
|
-
return UnboundApiFp(this.configuration).phoneNumbersUpdate(phoneNumberId,
|
|
5207
|
+
phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options) {
|
|
5208
|
+
return UnboundApiFp(this.configuration).phoneNumbersUpdate(phoneNumberId, aPIPhoneNumberUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5209
5209
|
}
|
|
5210
5210
|
/**
|
|
5211
5211
|
* Providers Create
|
|
@@ -5243,13 +5243,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5243
5243
|
* Providers Update
|
|
5244
5244
|
* @summary Providers Update
|
|
5245
5245
|
* @param {string} providerId
|
|
5246
|
-
* @param {
|
|
5246
|
+
* @param {APIProviderUpdate} aPIProviderUpdate
|
|
5247
5247
|
* @param {*} [options] Override http request option.
|
|
5248
5248
|
* @throws {RequiredError}
|
|
5249
5249
|
* @memberof UnboundApi
|
|
5250
5250
|
*/
|
|
5251
|
-
providersUpdate(providerId,
|
|
5252
|
-
return UnboundApiFp(this.configuration).providersUpdate(providerId,
|
|
5251
|
+
providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
5252
|
+
return UnboundApiFp(this.configuration).providersUpdate(providerId, aPIProviderUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5253
5253
|
}
|
|
5254
5254
|
/**
|
|
5255
5255
|
* Reservations Get
|
|
@@ -5428,10 +5428,10 @@ export {
|
|
|
5428
5428
|
SortOrder,
|
|
5429
5429
|
SrcResourceModelsContactsModelContactsModelContactSortBy,
|
|
5430
5430
|
SrcResourceModelsConversationsModelConversationsModelConversationSortBy,
|
|
5431
|
+
SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum,
|
|
5432
|
+
SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum,
|
|
5431
5433
|
SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum,
|
|
5432
5434
|
SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum,
|
|
5433
|
-
SrcResourceModelsHelperModelsCustomBaseModelCreateApi7ConversationTypeEnum,
|
|
5434
|
-
SrcResourceModelsHelperModelsCustomBaseModelCreateApi8ConversationTypeEnum,
|
|
5435
5435
|
SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum,
|
|
5436
5436
|
SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum,
|
|
5437
5437
|
SrcResourceModelsListingsModelListingBaseSortBy,
|