@ember-home/unbound-ts-client 0.0.128 → 0.0.129
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 +374 -313
- package/dist/index.d.ts +374 -313
- package/dist/index.js +116 -116
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -117
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -101,8 +101,8 @@ var ConversationStatus = {
|
|
|
101
101
|
Open: "OPEN",
|
|
102
102
|
Closed: "CLOSED"
|
|
103
103
|
};
|
|
104
|
-
var
|
|
105
|
-
|
|
104
|
+
var CreateConversationTypeEnum = {
|
|
105
|
+
Text: "TEXT"
|
|
106
106
|
};
|
|
107
107
|
var EmailConversationDataConversationTypeEnum = {
|
|
108
108
|
Email: "EMAIL"
|
|
@@ -214,6 +214,9 @@ var RentalProviderMessageCommunicationType = {
|
|
|
214
214
|
Whatsapp: "WHATSAPP",
|
|
215
215
|
Note: "NOTE"
|
|
216
216
|
};
|
|
217
|
+
var RentalProviderMessageCreateMessageTypeEnum = {
|
|
218
|
+
RentalProvider: "RENTAL_PROVIDER"
|
|
219
|
+
};
|
|
217
220
|
var RentalProviderTypes = {
|
|
218
221
|
Hostaway: "HOSTAWAY",
|
|
219
222
|
Guesty: "GUESTY",
|
|
@@ -249,9 +252,6 @@ var ReservationStatus = {
|
|
|
249
252
|
var SMSConversationDataConversationTypeEnum = {
|
|
250
253
|
Text: "TEXT"
|
|
251
254
|
};
|
|
252
|
-
var SMSConversationDataCreateConversationTypeEnum = {
|
|
253
|
-
Text: "TEXT"
|
|
254
|
-
};
|
|
255
255
|
var SMSInboundSenderTypeDataDirectionEnum = {
|
|
256
256
|
Inbound: "INBOUND"
|
|
257
257
|
};
|
|
@@ -544,12 +544,12 @@ var CommunitiesApiAxiosParamCreator = function(configuration) {
|
|
|
544
544
|
/**
|
|
545
545
|
*
|
|
546
546
|
* @summary Communities Create
|
|
547
|
-
* @param {
|
|
547
|
+
* @param {CommunityCreate} communityCreate
|
|
548
548
|
* @param {*} [options] Override http request option.
|
|
549
549
|
* @throws {RequiredError}
|
|
550
550
|
*/
|
|
551
|
-
communitiesCreate: async (
|
|
552
|
-
assertParamExists("communitiesCreate", "
|
|
551
|
+
communitiesCreate: async (communityCreate, options = {}) => {
|
|
552
|
+
assertParamExists("communitiesCreate", "communityCreate", communityCreate);
|
|
553
553
|
const localVarPath = `/v1/communities`;
|
|
554
554
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
555
555
|
let baseOptions;
|
|
@@ -563,7 +563,7 @@ var CommunitiesApiAxiosParamCreator = function(configuration) {
|
|
|
563
563
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
564
564
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
565
565
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
566
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
566
|
+
localVarRequestOptions.data = serializeDataIfNeeded(communityCreate, localVarRequestOptions, configuration);
|
|
567
567
|
return {
|
|
568
568
|
url: toPathString(localVarUrlObj),
|
|
569
569
|
options: localVarRequestOptions
|
|
@@ -669,13 +669,13 @@ var CommunitiesApiAxiosParamCreator = function(configuration) {
|
|
|
669
669
|
*
|
|
670
670
|
* @summary Communities Update
|
|
671
671
|
* @param {string} communityId
|
|
672
|
-
* @param {
|
|
672
|
+
* @param {CommunityUpdate} communityUpdate
|
|
673
673
|
* @param {*} [options] Override http request option.
|
|
674
674
|
* @throws {RequiredError}
|
|
675
675
|
*/
|
|
676
|
-
communitiesUpdate: async (communityId,
|
|
676
|
+
communitiesUpdate: async (communityId, communityUpdate, options = {}) => {
|
|
677
677
|
assertParamExists("communitiesUpdate", "communityId", communityId);
|
|
678
|
-
assertParamExists("communitiesUpdate", "
|
|
678
|
+
assertParamExists("communitiesUpdate", "communityUpdate", communityUpdate);
|
|
679
679
|
const localVarPath = `/v1/communities/{communityId}`.replace(`{${"communityId"}}`, encodeURIComponent(String(communityId)));
|
|
680
680
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
681
681
|
let baseOptions;
|
|
@@ -689,7 +689,7 @@ var CommunitiesApiAxiosParamCreator = function(configuration) {
|
|
|
689
689
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
690
690
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
691
691
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
692
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
692
|
+
localVarRequestOptions.data = serializeDataIfNeeded(communityUpdate, localVarRequestOptions, configuration);
|
|
693
693
|
return {
|
|
694
694
|
url: toPathString(localVarUrlObj),
|
|
695
695
|
options: localVarRequestOptions
|
|
@@ -703,12 +703,12 @@ var CommunitiesApiFp = function(configuration) {
|
|
|
703
703
|
/**
|
|
704
704
|
*
|
|
705
705
|
* @summary Communities Create
|
|
706
|
-
* @param {
|
|
706
|
+
* @param {CommunityCreate} communityCreate
|
|
707
707
|
* @param {*} [options] Override http request option.
|
|
708
708
|
* @throws {RequiredError}
|
|
709
709
|
*/
|
|
710
|
-
async communitiesCreate(
|
|
711
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesCreate(
|
|
710
|
+
async communitiesCreate(communityCreate, options) {
|
|
711
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesCreate(communityCreate, options);
|
|
712
712
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _14 => _14.serverIndex]), () => ( 0));
|
|
713
713
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _15 => _15["CommunitiesApi.communitiesCreate"], 'optionalAccess', _16 => _16[localVarOperationServerIndex], 'optionalAccess', _17 => _17.url]);
|
|
714
714
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -760,12 +760,12 @@ var CommunitiesApiFp = function(configuration) {
|
|
|
760
760
|
*
|
|
761
761
|
* @summary Communities Update
|
|
762
762
|
* @param {string} communityId
|
|
763
|
-
* @param {
|
|
763
|
+
* @param {CommunityUpdate} communityUpdate
|
|
764
764
|
* @param {*} [options] Override http request option.
|
|
765
765
|
* @throws {RequiredError}
|
|
766
766
|
*/
|
|
767
|
-
async communitiesUpdate(communityId,
|
|
768
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesUpdate(communityId,
|
|
767
|
+
async communitiesUpdate(communityId, communityUpdate, options) {
|
|
768
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesUpdate(communityId, communityUpdate, options);
|
|
769
769
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _30 => _30.serverIndex]), () => ( 0));
|
|
770
770
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _31 => _31["CommunitiesApi.communitiesUpdate"], 'optionalAccess', _32 => _32[localVarOperationServerIndex], 'optionalAccess', _33 => _33.url]);
|
|
771
771
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -778,12 +778,12 @@ var CommunitiesApiFactory = function(configuration, basePath, axios) {
|
|
|
778
778
|
/**
|
|
779
779
|
*
|
|
780
780
|
* @summary Communities Create
|
|
781
|
-
* @param {
|
|
781
|
+
* @param {CommunityCreate} communityCreate
|
|
782
782
|
* @param {*} [options] Override http request option.
|
|
783
783
|
* @throws {RequiredError}
|
|
784
784
|
*/
|
|
785
|
-
communitiesCreate(
|
|
786
|
-
return localVarFp.communitiesCreate(
|
|
785
|
+
communitiesCreate(communityCreate, options) {
|
|
786
|
+
return localVarFp.communitiesCreate(communityCreate, options).then((request) => request(axios, basePath));
|
|
787
787
|
},
|
|
788
788
|
/**
|
|
789
789
|
*
|
|
@@ -823,12 +823,12 @@ var CommunitiesApiFactory = function(configuration, basePath, axios) {
|
|
|
823
823
|
*
|
|
824
824
|
* @summary Communities Update
|
|
825
825
|
* @param {string} communityId
|
|
826
|
-
* @param {
|
|
826
|
+
* @param {CommunityUpdate} communityUpdate
|
|
827
827
|
* @param {*} [options] Override http request option.
|
|
828
828
|
* @throws {RequiredError}
|
|
829
829
|
*/
|
|
830
|
-
communitiesUpdate(communityId,
|
|
831
|
-
return localVarFp.communitiesUpdate(communityId,
|
|
830
|
+
communitiesUpdate(communityId, communityUpdate, options) {
|
|
831
|
+
return localVarFp.communitiesUpdate(communityId, communityUpdate, options).then((request) => request(axios, basePath));
|
|
832
832
|
}
|
|
833
833
|
};
|
|
834
834
|
};
|
|
@@ -836,13 +836,13 @@ var CommunitiesApi = class extends BaseAPI {
|
|
|
836
836
|
/**
|
|
837
837
|
*
|
|
838
838
|
* @summary Communities Create
|
|
839
|
-
* @param {
|
|
839
|
+
* @param {CommunityCreate} communityCreate
|
|
840
840
|
* @param {*} [options] Override http request option.
|
|
841
841
|
* @throws {RequiredError}
|
|
842
842
|
* @memberof CommunitiesApi
|
|
843
843
|
*/
|
|
844
|
-
communitiesCreate(
|
|
845
|
-
return CommunitiesApiFp(this.configuration).communitiesCreate(
|
|
844
|
+
communitiesCreate(communityCreate, options) {
|
|
845
|
+
return CommunitiesApiFp(this.configuration).communitiesCreate(communityCreate, options).then((request) => request(this.axios, this.basePath));
|
|
846
846
|
}
|
|
847
847
|
/**
|
|
848
848
|
*
|
|
@@ -885,13 +885,13 @@ var CommunitiesApi = class extends BaseAPI {
|
|
|
885
885
|
*
|
|
886
886
|
* @summary Communities Update
|
|
887
887
|
* @param {string} communityId
|
|
888
|
-
* @param {
|
|
888
|
+
* @param {CommunityUpdate} communityUpdate
|
|
889
889
|
* @param {*} [options] Override http request option.
|
|
890
890
|
* @throws {RequiredError}
|
|
891
891
|
* @memberof CommunitiesApi
|
|
892
892
|
*/
|
|
893
|
-
communitiesUpdate(communityId,
|
|
894
|
-
return CommunitiesApiFp(this.configuration).communitiesUpdate(communityId,
|
|
893
|
+
communitiesUpdate(communityId, communityUpdate, options) {
|
|
894
|
+
return CommunitiesApiFp(this.configuration).communitiesUpdate(communityId, communityUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
895
895
|
}
|
|
896
896
|
};
|
|
897
897
|
var CommunityTypesApiAxiosParamCreator = function(configuration) {
|
|
@@ -905,7 +905,7 @@ var CommunityTypesApiAxiosParamCreator = function(configuration) {
|
|
|
905
905
|
*/
|
|
906
906
|
communityTypesCreate: async (communityTypeCreate, options = {}) => {
|
|
907
907
|
assertParamExists("communityTypesCreate", "communityTypeCreate", communityTypeCreate);
|
|
908
|
-
const localVarPath = `/v1/
|
|
908
|
+
const localVarPath = `/v1/communityTypes`;
|
|
909
909
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
910
910
|
let baseOptions;
|
|
911
911
|
if (configuration) {
|
|
@@ -931,7 +931,7 @@ var CommunityTypesApiAxiosParamCreator = function(configuration) {
|
|
|
931
931
|
* @throws {RequiredError}
|
|
932
932
|
*/
|
|
933
933
|
communityTypesList: async (options = {}) => {
|
|
934
|
-
const localVarPath = `/v1/
|
|
934
|
+
const localVarPath = `/v1/communityTypes`;
|
|
935
935
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
936
936
|
let baseOptions;
|
|
937
937
|
if (configuration) {
|
|
@@ -959,7 +959,7 @@ var CommunityTypesApiAxiosParamCreator = function(configuration) {
|
|
|
959
959
|
communityTypesUpdate: async (typeId, communityTypeUpdate, options = {}) => {
|
|
960
960
|
assertParamExists("communityTypesUpdate", "typeId", typeId);
|
|
961
961
|
assertParamExists("communityTypesUpdate", "communityTypeUpdate", communityTypeUpdate);
|
|
962
|
-
const localVarPath = `/v1/
|
|
962
|
+
const localVarPath = `/v1/communityTypes/{typeId}`.replace(`{${"typeId"}}`, encodeURIComponent(String(typeId)));
|
|
963
963
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
964
964
|
let baseOptions;
|
|
965
965
|
if (configuration) {
|
|
@@ -1340,13 +1340,13 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
1340
1340
|
*
|
|
1341
1341
|
* @summary Contacts Update
|
|
1342
1342
|
* @param {string} contactId
|
|
1343
|
-
* @param {
|
|
1343
|
+
* @param {ContactUpdate} contactUpdate
|
|
1344
1344
|
* @param {*} [options] Override http request option.
|
|
1345
1345
|
* @throws {RequiredError}
|
|
1346
1346
|
*/
|
|
1347
|
-
contactsUpdate: async (contactId,
|
|
1347
|
+
contactsUpdate: async (contactId, contactUpdate, options = {}) => {
|
|
1348
1348
|
assertParamExists("contactsUpdate", "contactId", contactId);
|
|
1349
|
-
assertParamExists("contactsUpdate", "
|
|
1349
|
+
assertParamExists("contactsUpdate", "contactUpdate", contactUpdate);
|
|
1350
1350
|
const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
1351
1351
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1352
1352
|
let baseOptions;
|
|
@@ -1360,7 +1360,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
1360
1360
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1361
1361
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1362
1362
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1363
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1363
|
+
localVarRequestOptions.data = serializeDataIfNeeded(contactUpdate, localVarRequestOptions, configuration);
|
|
1364
1364
|
return {
|
|
1365
1365
|
url: toPathString(localVarUrlObj),
|
|
1366
1366
|
options: localVarRequestOptions
|
|
@@ -1710,12 +1710,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
1710
1710
|
*
|
|
1711
1711
|
* @summary Contacts Update
|
|
1712
1712
|
* @param {string} contactId
|
|
1713
|
-
* @param {
|
|
1713
|
+
* @param {ContactUpdate} contactUpdate
|
|
1714
1714
|
* @param {*} [options] Override http request option.
|
|
1715
1715
|
* @throws {RequiredError}
|
|
1716
1716
|
*/
|
|
1717
|
-
async contactsUpdate(contactId,
|
|
1718
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId,
|
|
1717
|
+
async contactsUpdate(contactId, contactUpdate, options) {
|
|
1718
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
1719
1719
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _78 => _78.serverIndex]), () => ( 0));
|
|
1720
1720
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _79 => _79["ContactsApi.contactsUpdate"], 'optionalAccess', _80 => _80[localVarOperationServerIndex], 'optionalAccess', _81 => _81.url]);
|
|
1721
1721
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1924,12 +1924,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1924
1924
|
*
|
|
1925
1925
|
* @summary Contacts Update
|
|
1926
1926
|
* @param {string} contactId
|
|
1927
|
-
* @param {
|
|
1927
|
+
* @param {ContactUpdate} contactUpdate
|
|
1928
1928
|
* @param {*} [options] Override http request option.
|
|
1929
1929
|
* @throws {RequiredError}
|
|
1930
1930
|
*/
|
|
1931
|
-
contactsUpdate(contactId,
|
|
1932
|
-
return localVarFp.contactsUpdate(contactId,
|
|
1931
|
+
contactsUpdate(contactId, contactUpdate, options) {
|
|
1932
|
+
return localVarFp.contactsUpdate(contactId, contactUpdate, options).then((request) => request(axios, basePath));
|
|
1933
1933
|
},
|
|
1934
1934
|
/**
|
|
1935
1935
|
*
|
|
@@ -2117,13 +2117,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
2117
2117
|
*
|
|
2118
2118
|
* @summary Contacts Update
|
|
2119
2119
|
* @param {string} contactId
|
|
2120
|
-
* @param {
|
|
2120
|
+
* @param {ContactUpdate} contactUpdate
|
|
2121
2121
|
* @param {*} [options] Override http request option.
|
|
2122
2122
|
* @throws {RequiredError}
|
|
2123
2123
|
* @memberof ContactsApi
|
|
2124
2124
|
*/
|
|
2125
|
-
contactsUpdate(contactId,
|
|
2126
|
-
return ContactsApiFp(this.configuration).contactsUpdate(contactId,
|
|
2125
|
+
contactsUpdate(contactId, contactUpdate, options) {
|
|
2126
|
+
return ContactsApiFp(this.configuration).contactsUpdate(contactId, contactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2127
2127
|
}
|
|
2128
2128
|
/**
|
|
2129
2129
|
*
|
|
@@ -4688,13 +4688,13 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
4688
4688
|
*
|
|
4689
4689
|
* @summary Providers Update
|
|
4690
4690
|
* @param {string} providerId
|
|
4691
|
-
* @param {
|
|
4691
|
+
* @param {Update} update
|
|
4692
4692
|
* @param {*} [options] Override http request option.
|
|
4693
4693
|
* @throws {RequiredError}
|
|
4694
4694
|
*/
|
|
4695
|
-
providersUpdate: async (providerId,
|
|
4695
|
+
providersUpdate: async (providerId, update, options = {}) => {
|
|
4696
4696
|
assertParamExists("providersUpdate", "providerId", providerId);
|
|
4697
|
-
assertParamExists("providersUpdate", "
|
|
4697
|
+
assertParamExists("providersUpdate", "update", update);
|
|
4698
4698
|
const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
|
|
4699
4699
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4700
4700
|
let baseOptions;
|
|
@@ -4708,7 +4708,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
|
|
|
4708
4708
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4709
4709
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4710
4710
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4711
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
4711
|
+
localVarRequestOptions.data = serializeDataIfNeeded(update, localVarRequestOptions, configuration);
|
|
4712
4712
|
return {
|
|
4713
4713
|
url: toPathString(localVarUrlObj),
|
|
4714
4714
|
options: localVarRequestOptions
|
|
@@ -4761,12 +4761,12 @@ var ProvidersApiFp = function(configuration) {
|
|
|
4761
4761
|
*
|
|
4762
4762
|
* @summary Providers Update
|
|
4763
4763
|
* @param {string} providerId
|
|
4764
|
-
* @param {
|
|
4764
|
+
* @param {Update} update
|
|
4765
4765
|
* @param {*} [options] Override http request option.
|
|
4766
4766
|
* @throws {RequiredError}
|
|
4767
4767
|
*/
|
|
4768
|
-
async providersUpdate(providerId,
|
|
4769
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId,
|
|
4768
|
+
async providersUpdate(providerId, update, options) {
|
|
4769
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, update, options);
|
|
4770
4770
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _250 => _250.serverIndex]), () => ( 0));
|
|
4771
4771
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _251 => _251["ProvidersApi.providersUpdate"], 'optionalAccess', _252 => _252[localVarOperationServerIndex], 'optionalAccess', _253 => _253.url]);
|
|
4772
4772
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4809,12 +4809,12 @@ var ProvidersApiFactory = function(configuration, basePath, axios) {
|
|
|
4809
4809
|
*
|
|
4810
4810
|
* @summary Providers Update
|
|
4811
4811
|
* @param {string} providerId
|
|
4812
|
-
* @param {
|
|
4812
|
+
* @param {Update} update
|
|
4813
4813
|
* @param {*} [options] Override http request option.
|
|
4814
4814
|
* @throws {RequiredError}
|
|
4815
4815
|
*/
|
|
4816
|
-
providersUpdate(providerId,
|
|
4817
|
-
return localVarFp.providersUpdate(providerId,
|
|
4816
|
+
providersUpdate(providerId, update, options) {
|
|
4817
|
+
return localVarFp.providersUpdate(providerId, update, options).then((request) => request(axios, basePath));
|
|
4818
4818
|
}
|
|
4819
4819
|
};
|
|
4820
4820
|
};
|
|
@@ -4855,13 +4855,13 @@ var ProvidersApi = class extends BaseAPI {
|
|
|
4855
4855
|
*
|
|
4856
4856
|
* @summary Providers Update
|
|
4857
4857
|
* @param {string} providerId
|
|
4858
|
-
* @param {
|
|
4858
|
+
* @param {Update} update
|
|
4859
4859
|
* @param {*} [options] Override http request option.
|
|
4860
4860
|
* @throws {RequiredError}
|
|
4861
4861
|
* @memberof ProvidersApi
|
|
4862
4862
|
*/
|
|
4863
|
-
providersUpdate(providerId,
|
|
4864
|
-
return ProvidersApiFp(this.configuration).providersUpdate(providerId,
|
|
4863
|
+
providersUpdate(providerId, update, options) {
|
|
4864
|
+
return ProvidersApiFp(this.configuration).providersUpdate(providerId, update, options).then((request) => request(this.axios, this.basePath));
|
|
4865
4865
|
}
|
|
4866
4866
|
};
|
|
4867
4867
|
var ReservationsApiAxiosParamCreator = function(configuration) {
|
|
@@ -5834,12 +5834,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
5834
5834
|
/**
|
|
5835
5835
|
*
|
|
5836
5836
|
* @summary Communities Create
|
|
5837
|
-
* @param {
|
|
5837
|
+
* @param {CommunityCreate} communityCreate
|
|
5838
5838
|
* @param {*} [options] Override http request option.
|
|
5839
5839
|
* @throws {RequiredError}
|
|
5840
5840
|
*/
|
|
5841
|
-
communitiesCreate: async (
|
|
5842
|
-
assertParamExists("communitiesCreate", "
|
|
5841
|
+
communitiesCreate: async (communityCreate, options = {}) => {
|
|
5842
|
+
assertParamExists("communitiesCreate", "communityCreate", communityCreate);
|
|
5843
5843
|
const localVarPath = `/v1/communities`;
|
|
5844
5844
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5845
5845
|
let baseOptions;
|
|
@@ -5853,7 +5853,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
5853
5853
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5854
5854
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5855
5855
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5856
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
5856
|
+
localVarRequestOptions.data = serializeDataIfNeeded(communityCreate, localVarRequestOptions, configuration);
|
|
5857
5857
|
return {
|
|
5858
5858
|
url: toPathString(localVarUrlObj),
|
|
5859
5859
|
options: localVarRequestOptions
|
|
@@ -5959,13 +5959,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
5959
5959
|
*
|
|
5960
5960
|
* @summary Communities Update
|
|
5961
5961
|
* @param {string} communityId
|
|
5962
|
-
* @param {
|
|
5962
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5963
5963
|
* @param {*} [options] Override http request option.
|
|
5964
5964
|
* @throws {RequiredError}
|
|
5965
5965
|
*/
|
|
5966
|
-
communitiesUpdate: async (communityId,
|
|
5966
|
+
communitiesUpdate: async (communityId, communityUpdate, options = {}) => {
|
|
5967
5967
|
assertParamExists("communitiesUpdate", "communityId", communityId);
|
|
5968
|
-
assertParamExists("communitiesUpdate", "
|
|
5968
|
+
assertParamExists("communitiesUpdate", "communityUpdate", communityUpdate);
|
|
5969
5969
|
const localVarPath = `/v1/communities/{communityId}`.replace(`{${"communityId"}}`, encodeURIComponent(String(communityId)));
|
|
5970
5970
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5971
5971
|
let baseOptions;
|
|
@@ -5979,7 +5979,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
5979
5979
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5980
5980
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5981
5981
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5982
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
5982
|
+
localVarRequestOptions.data = serializeDataIfNeeded(communityUpdate, localVarRequestOptions, configuration);
|
|
5983
5983
|
return {
|
|
5984
5984
|
url: toPathString(localVarUrlObj),
|
|
5985
5985
|
options: localVarRequestOptions
|
|
@@ -5994,7 +5994,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
5994
5994
|
*/
|
|
5995
5995
|
communityTypesCreate: async (communityTypeCreate, options = {}) => {
|
|
5996
5996
|
assertParamExists("communityTypesCreate", "communityTypeCreate", communityTypeCreate);
|
|
5997
|
-
const localVarPath = `/v1/
|
|
5997
|
+
const localVarPath = `/v1/communityTypes`;
|
|
5998
5998
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5999
5999
|
let baseOptions;
|
|
6000
6000
|
if (configuration) {
|
|
@@ -6020,7 +6020,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
6020
6020
|
* @throws {RequiredError}
|
|
6021
6021
|
*/
|
|
6022
6022
|
communityTypesList: async (options = {}) => {
|
|
6023
|
-
const localVarPath = `/v1/
|
|
6023
|
+
const localVarPath = `/v1/communityTypes`;
|
|
6024
6024
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6025
6025
|
let baseOptions;
|
|
6026
6026
|
if (configuration) {
|
|
@@ -6048,7 +6048,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
6048
6048
|
communityTypesUpdate: async (typeId, communityTypeUpdate, options = {}) => {
|
|
6049
6049
|
assertParamExists("communityTypesUpdate", "typeId", typeId);
|
|
6050
6050
|
assertParamExists("communityTypesUpdate", "communityTypeUpdate", communityTypeUpdate);
|
|
6051
|
-
const localVarPath = `/v1/
|
|
6051
|
+
const localVarPath = `/v1/communityTypes/{typeId}`.replace(`{${"typeId"}}`, encodeURIComponent(String(typeId)));
|
|
6052
6052
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6053
6053
|
let baseOptions;
|
|
6054
6054
|
if (configuration) {
|
|
@@ -6257,13 +6257,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
6257
6257
|
*
|
|
6258
6258
|
* @summary Contacts Update
|
|
6259
6259
|
* @param {string} contactId
|
|
6260
|
-
* @param {
|
|
6260
|
+
* @param {ContactUpdate} contactUpdate
|
|
6261
6261
|
* @param {*} [options] Override http request option.
|
|
6262
6262
|
* @throws {RequiredError}
|
|
6263
6263
|
*/
|
|
6264
|
-
contactsUpdate: async (contactId,
|
|
6264
|
+
contactsUpdate: async (contactId, contactUpdate, options = {}) => {
|
|
6265
6265
|
assertParamExists("contactsUpdate", "contactId", contactId);
|
|
6266
|
-
assertParamExists("contactsUpdate", "
|
|
6266
|
+
assertParamExists("contactsUpdate", "contactUpdate", contactUpdate);
|
|
6267
6267
|
const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
|
|
6268
6268
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6269
6269
|
let baseOptions;
|
|
@@ -6277,7 +6277,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
6277
6277
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6278
6278
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6279
6279
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
6280
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
6280
|
+
localVarRequestOptions.data = serializeDataIfNeeded(contactUpdate, localVarRequestOptions, configuration);
|
|
6281
6281
|
return {
|
|
6282
6282
|
url: toPathString(localVarUrlObj),
|
|
6283
6283
|
options: localVarRequestOptions
|
|
@@ -7541,13 +7541,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
7541
7541
|
*
|
|
7542
7542
|
* @summary Providers Update
|
|
7543
7543
|
* @param {string} providerId
|
|
7544
|
-
* @param {
|
|
7544
|
+
* @param {Update} update
|
|
7545
7545
|
* @param {*} [options] Override http request option.
|
|
7546
7546
|
* @throws {RequiredError}
|
|
7547
7547
|
*/
|
|
7548
|
-
providersUpdate: async (providerId,
|
|
7548
|
+
providersUpdate: async (providerId, update, options = {}) => {
|
|
7549
7549
|
assertParamExists("providersUpdate", "providerId", providerId);
|
|
7550
|
-
assertParamExists("providersUpdate", "
|
|
7550
|
+
assertParamExists("providersUpdate", "update", update);
|
|
7551
7551
|
const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
|
|
7552
7552
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7553
7553
|
let baseOptions;
|
|
@@ -7561,7 +7561,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
7561
7561
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7562
7562
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7563
7563
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7564
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
7564
|
+
localVarRequestOptions.data = serializeDataIfNeeded(update, localVarRequestOptions, configuration);
|
|
7565
7565
|
return {
|
|
7566
7566
|
url: toPathString(localVarUrlObj),
|
|
7567
7567
|
options: localVarRequestOptions
|
|
@@ -8049,12 +8049,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
8049
8049
|
/**
|
|
8050
8050
|
*
|
|
8051
8051
|
* @summary Communities Create
|
|
8052
|
-
* @param {
|
|
8052
|
+
* @param {CommunityCreate} communityCreate
|
|
8053
8053
|
* @param {*} [options] Override http request option.
|
|
8054
8054
|
* @throws {RequiredError}
|
|
8055
8055
|
*/
|
|
8056
|
-
async communitiesCreate(
|
|
8057
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesCreate(
|
|
8056
|
+
async communitiesCreate(communityCreate, options) {
|
|
8057
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesCreate(communityCreate, options);
|
|
8058
8058
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _322 => _322.serverIndex]), () => ( 0));
|
|
8059
8059
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _323 => _323["UnboundApi.communitiesCreate"], 'optionalAccess', _324 => _324[localVarOperationServerIndex], 'optionalAccess', _325 => _325.url]);
|
|
8060
8060
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -8106,12 +8106,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
8106
8106
|
*
|
|
8107
8107
|
* @summary Communities Update
|
|
8108
8108
|
* @param {string} communityId
|
|
8109
|
-
* @param {
|
|
8109
|
+
* @param {CommunityUpdate} communityUpdate
|
|
8110
8110
|
* @param {*} [options] Override http request option.
|
|
8111
8111
|
* @throws {RequiredError}
|
|
8112
8112
|
*/
|
|
8113
|
-
async communitiesUpdate(communityId,
|
|
8114
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesUpdate(communityId,
|
|
8113
|
+
async communitiesUpdate(communityId, communityUpdate, options) {
|
|
8114
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.communitiesUpdate(communityId, communityUpdate, options);
|
|
8115
8115
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _338 => _338.serverIndex]), () => ( 0));
|
|
8116
8116
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _339 => _339["UnboundApi.communitiesUpdate"], 'optionalAccess', _340 => _340[localVarOperationServerIndex], 'optionalAccess', _341 => _341.url]);
|
|
8117
8117
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -8244,12 +8244,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
8244
8244
|
*
|
|
8245
8245
|
* @summary Contacts Update
|
|
8246
8246
|
* @param {string} contactId
|
|
8247
|
-
* @param {
|
|
8247
|
+
* @param {ContactUpdate} contactUpdate
|
|
8248
8248
|
* @param {*} [options] Override http request option.
|
|
8249
8249
|
* @throws {RequiredError}
|
|
8250
8250
|
*/
|
|
8251
|
-
async contactsUpdate(contactId,
|
|
8252
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId,
|
|
8251
|
+
async contactsUpdate(contactId, contactUpdate, options) {
|
|
8252
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
8253
8253
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _378 => _378.serverIndex]), () => ( 0));
|
|
8254
8254
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _379 => _379["UnboundApi.contactsUpdate"], 'optionalAccess', _380 => _380[localVarOperationServerIndex], 'optionalAccess', _381 => _381.url]);
|
|
8255
8255
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -8825,12 +8825,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
8825
8825
|
*
|
|
8826
8826
|
* @summary Providers Update
|
|
8827
8827
|
* @param {string} providerId
|
|
8828
|
-
* @param {
|
|
8828
|
+
* @param {Update} update
|
|
8829
8829
|
* @param {*} [options] Override http request option.
|
|
8830
8830
|
* @throws {RequiredError}
|
|
8831
8831
|
*/
|
|
8832
|
-
async providersUpdate(providerId,
|
|
8833
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId,
|
|
8832
|
+
async providersUpdate(providerId, update, options) {
|
|
8833
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, update, options);
|
|
8834
8834
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _542 => _542.serverIndex]), () => ( 0));
|
|
8835
8835
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _543 => _543["UnboundApi.providersUpdate"], 'optionalAccess', _544 => _544[localVarOperationServerIndex], 'optionalAccess', _545 => _545.url]);
|
|
8836
8836
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -9086,12 +9086,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
9086
9086
|
/**
|
|
9087
9087
|
*
|
|
9088
9088
|
* @summary Communities Create
|
|
9089
|
-
* @param {
|
|
9089
|
+
* @param {CommunityCreate} communityCreate
|
|
9090
9090
|
* @param {*} [options] Override http request option.
|
|
9091
9091
|
* @throws {RequiredError}
|
|
9092
9092
|
*/
|
|
9093
|
-
communitiesCreate(
|
|
9094
|
-
return localVarFp.communitiesCreate(
|
|
9093
|
+
communitiesCreate(communityCreate, options) {
|
|
9094
|
+
return localVarFp.communitiesCreate(communityCreate, options).then((request) => request(axios, basePath));
|
|
9095
9095
|
},
|
|
9096
9096
|
/**
|
|
9097
9097
|
*
|
|
@@ -9131,12 +9131,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
9131
9131
|
*
|
|
9132
9132
|
* @summary Communities Update
|
|
9133
9133
|
* @param {string} communityId
|
|
9134
|
-
* @param {
|
|
9134
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9135
9135
|
* @param {*} [options] Override http request option.
|
|
9136
9136
|
* @throws {RequiredError}
|
|
9137
9137
|
*/
|
|
9138
|
-
communitiesUpdate(communityId,
|
|
9139
|
-
return localVarFp.communitiesUpdate(communityId,
|
|
9138
|
+
communitiesUpdate(communityId, communityUpdate, options) {
|
|
9139
|
+
return localVarFp.communitiesUpdate(communityId, communityUpdate, options).then((request) => request(axios, basePath));
|
|
9140
9140
|
},
|
|
9141
9141
|
/**
|
|
9142
9142
|
*
|
|
@@ -9239,12 +9239,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
9239
9239
|
*
|
|
9240
9240
|
* @summary Contacts Update
|
|
9241
9241
|
* @param {string} contactId
|
|
9242
|
-
* @param {
|
|
9242
|
+
* @param {ContactUpdate} contactUpdate
|
|
9243
9243
|
* @param {*} [options] Override http request option.
|
|
9244
9244
|
* @throws {RequiredError}
|
|
9245
9245
|
*/
|
|
9246
|
-
contactsUpdate(contactId,
|
|
9247
|
-
return localVarFp.contactsUpdate(contactId,
|
|
9246
|
+
contactsUpdate(contactId, contactUpdate, options) {
|
|
9247
|
+
return localVarFp.contactsUpdate(contactId, contactUpdate, options).then((request) => request(axios, basePath));
|
|
9248
9248
|
},
|
|
9249
9249
|
/**
|
|
9250
9250
|
*
|
|
@@ -9697,12 +9697,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
9697
9697
|
*
|
|
9698
9698
|
* @summary Providers Update
|
|
9699
9699
|
* @param {string} providerId
|
|
9700
|
-
* @param {
|
|
9700
|
+
* @param {Update} update
|
|
9701
9701
|
* @param {*} [options] Override http request option.
|
|
9702
9702
|
* @throws {RequiredError}
|
|
9703
9703
|
*/
|
|
9704
|
-
providersUpdate(providerId,
|
|
9705
|
-
return localVarFp.providersUpdate(providerId,
|
|
9704
|
+
providersUpdate(providerId, update, options) {
|
|
9705
|
+
return localVarFp.providersUpdate(providerId, update, options).then((request) => request(axios, basePath));
|
|
9706
9706
|
},
|
|
9707
9707
|
/**
|
|
9708
9708
|
*
|
|
@@ -9920,13 +9920,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
9920
9920
|
/**
|
|
9921
9921
|
*
|
|
9922
9922
|
* @summary Communities Create
|
|
9923
|
-
* @param {
|
|
9923
|
+
* @param {CommunityCreate} communityCreate
|
|
9924
9924
|
* @param {*} [options] Override http request option.
|
|
9925
9925
|
* @throws {RequiredError}
|
|
9926
9926
|
* @memberof UnboundApi
|
|
9927
9927
|
*/
|
|
9928
|
-
communitiesCreate(
|
|
9929
|
-
return UnboundApiFp(this.configuration).communitiesCreate(
|
|
9928
|
+
communitiesCreate(communityCreate, options) {
|
|
9929
|
+
return UnboundApiFp(this.configuration).communitiesCreate(communityCreate, options).then((request) => request(this.axios, this.basePath));
|
|
9930
9930
|
}
|
|
9931
9931
|
/**
|
|
9932
9932
|
*
|
|
@@ -9969,13 +9969,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
9969
9969
|
*
|
|
9970
9970
|
* @summary Communities Update
|
|
9971
9971
|
* @param {string} communityId
|
|
9972
|
-
* @param {
|
|
9972
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9973
9973
|
* @param {*} [options] Override http request option.
|
|
9974
9974
|
* @throws {RequiredError}
|
|
9975
9975
|
* @memberof UnboundApi
|
|
9976
9976
|
*/
|
|
9977
|
-
communitiesUpdate(communityId,
|
|
9978
|
-
return UnboundApiFp(this.configuration).communitiesUpdate(communityId,
|
|
9977
|
+
communitiesUpdate(communityId, communityUpdate, options) {
|
|
9978
|
+
return UnboundApiFp(this.configuration).communitiesUpdate(communityId, communityUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
9979
9979
|
}
|
|
9980
9980
|
/**
|
|
9981
9981
|
*
|
|
@@ -10087,13 +10087,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
10087
10087
|
*
|
|
10088
10088
|
* @summary Contacts Update
|
|
10089
10089
|
* @param {string} contactId
|
|
10090
|
-
* @param {
|
|
10090
|
+
* @param {ContactUpdate} contactUpdate
|
|
10091
10091
|
* @param {*} [options] Override http request option.
|
|
10092
10092
|
* @throws {RequiredError}
|
|
10093
10093
|
* @memberof UnboundApi
|
|
10094
10094
|
*/
|
|
10095
|
-
contactsUpdate(contactId,
|
|
10096
|
-
return UnboundApiFp(this.configuration).contactsUpdate(contactId,
|
|
10095
|
+
contactsUpdate(contactId, contactUpdate, options) {
|
|
10096
|
+
return UnboundApiFp(this.configuration).contactsUpdate(contactId, contactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
10097
10097
|
}
|
|
10098
10098
|
/**
|
|
10099
10099
|
*
|
|
@@ -10586,13 +10586,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
10586
10586
|
*
|
|
10587
10587
|
* @summary Providers Update
|
|
10588
10588
|
* @param {string} providerId
|
|
10589
|
-
* @param {
|
|
10589
|
+
* @param {Update} update
|
|
10590
10590
|
* @param {*} [options] Override http request option.
|
|
10591
10591
|
* @throws {RequiredError}
|
|
10592
10592
|
* @memberof UnboundApi
|
|
10593
10593
|
*/
|
|
10594
|
-
providersUpdate(providerId,
|
|
10595
|
-
return UnboundApiFp(this.configuration).providersUpdate(providerId,
|
|
10594
|
+
providersUpdate(providerId, update, options) {
|
|
10595
|
+
return UnboundApiFp(this.configuration).providersUpdate(providerId, update, options).then((request) => request(this.axios, this.basePath));
|
|
10596
10596
|
}
|
|
10597
10597
|
/**
|
|
10598
10598
|
*
|
|
@@ -11126,5 +11126,5 @@ var Configuration = class {
|
|
|
11126
11126
|
|
|
11127
11127
|
|
|
11128
11128
|
|
|
11129
|
-
exports.AIResponsesApi = AIResponsesApi; exports.AIResponsesApiAxiosParamCreator = AIResponsesApiAxiosParamCreator; exports.AIResponsesApiFactory = AIResponsesApiFactory; exports.AIResponsesApiFp = AIResponsesApiFp; exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotParticipantTypeEnum = BotParticipantTypeEnum; exports.CommunitiesApi = CommunitiesApi; exports.CommunitiesApiAxiosParamCreator = CommunitiesApiAxiosParamCreator; exports.CommunitiesApiFactory = CommunitiesApiFactory; exports.CommunitiesApiFp = CommunitiesApiFp; exports.CommunityTypeType = CommunityTypeType; exports.CommunityTypesApi = CommunityTypesApi; exports.CommunityTypesApiAxiosParamCreator = CommunityTypesApiAxiosParamCreator; exports.CommunityTypesApiFactory = CommunityTypesApiFactory; exports.CommunityTypesApiFp = CommunityTypesApiFp; exports.Configuration = Configuration; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ContactsListingsApi = ContactsListingsApi; exports.ContactsListingsApiAxiosParamCreator = ContactsListingsApiAxiosParamCreator; exports.ContactsListingsApiFactory = ContactsListingsApiFactory; exports.ContactsListingsApiFp = ContactsListingsApiFp; exports.ContentItemsApi = ContentItemsApi; exports.ContentItemsApiAxiosParamCreator = ContentItemsApiAxiosParamCreator; exports.ContentItemsApiFactory = ContentItemsApiFactory; exports.ContentItemsApiFp = ContentItemsApiFp; exports.ContentRelatedAllResourcesTypeDataRelationTypeEnum = ContentRelatedAllResourcesTypeDataRelationTypeEnum; exports.ContentRelatedAllResourcesTypeDataResourceTypeEnum = ContentRelatedAllResourcesTypeDataResourceTypeEnum; exports.ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum = ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum; exports.ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum = ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum; exports.ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum = ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.
|
|
11129
|
+
exports.AIResponsesApi = AIResponsesApi; exports.AIResponsesApiAxiosParamCreator = AIResponsesApiAxiosParamCreator; exports.AIResponsesApiFactory = AIResponsesApiFactory; exports.AIResponsesApiFp = AIResponsesApiFp; exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotParticipantTypeEnum = BotParticipantTypeEnum; exports.CommunitiesApi = CommunitiesApi; exports.CommunitiesApiAxiosParamCreator = CommunitiesApiAxiosParamCreator; exports.CommunitiesApiFactory = CommunitiesApiFactory; exports.CommunitiesApiFp = CommunitiesApiFp; exports.CommunityTypeType = CommunityTypeType; exports.CommunityTypesApi = CommunityTypesApi; exports.CommunityTypesApiAxiosParamCreator = CommunityTypesApiAxiosParamCreator; exports.CommunityTypesApiFactory = CommunityTypesApiFactory; exports.CommunityTypesApiFp = CommunityTypesApiFp; exports.Configuration = Configuration; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ContactsListingsApi = ContactsListingsApi; exports.ContactsListingsApiAxiosParamCreator = ContactsListingsApiAxiosParamCreator; exports.ContactsListingsApiFactory = ContactsListingsApiFactory; exports.ContactsListingsApiFp = ContactsListingsApiFp; exports.ContentItemsApi = ContentItemsApi; exports.ContentItemsApiAxiosParamCreator = ContentItemsApiAxiosParamCreator; exports.ContentItemsApiFactory = ContentItemsApiFactory; exports.ContentItemsApiFp = ContentItemsApiFp; exports.ContentRelatedAllResourcesTypeDataRelationTypeEnum = ContentRelatedAllResourcesTypeDataRelationTypeEnum; exports.ContentRelatedAllResourcesTypeDataResourceTypeEnum = ContentRelatedAllResourcesTypeDataResourceTypeEnum; exports.ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum = ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum; exports.ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum = ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum; exports.ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum = ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.CreateConversationTypeEnum = CreateConversationTypeEnum; exports.EmailConversationDataConversationTypeEnum = EmailConversationDataConversationTypeEnum; exports.EmailInboxInboxTypeEnum = EmailInboxInboxTypeEnum; exports.EmailProviderMessageCreateMessageTypeEnum = EmailProviderMessageCreateMessageTypeEnum; exports.EmailProviderMessageMessageTypeEnum = EmailProviderMessageMessageTypeEnum; exports.ExternalStaffStaffTypeEnum = ExternalStaffStaffTypeEnum; exports.FileContentContentTypeEnum = FileContentContentTypeEnum; exports.FilesApi = FilesApi; exports.FilesApiAxiosParamCreator = FilesApiAxiosParamCreator; exports.FilesApiFactory = FilesApiFactory; exports.FilesApiFp = FilesApiFp; exports.GuestParticipantTypeEnum = GuestParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InquiryTypeCreateRelationTypeEnum = InquiryTypeCreateRelationTypeEnum; exports.InquiryTypeUpdateRelationTypeEnum = InquiryTypeUpdateRelationTypeEnum; exports.InternalStaffStaffTypeEnum = InternalStaffStaffTypeEnum; 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.MessagesApi = MessagesApi; exports.MessagesApiAxiosParamCreator = MessagesApiAxiosParamCreator; exports.MessagesApiFactory = MessagesApiFactory; exports.MessagesApiFp = MessagesApiFp; exports.OwnerTypeCreateRelationTypeEnum = OwnerTypeCreateRelationTypeEnum; exports.OwnerTypeUpdateRelationTypeEnum = OwnerTypeUpdateRelationTypeEnum; exports.PaginationDirection = PaginationDirection; exports.PermissionsApi = PermissionsApi; exports.PermissionsApiAxiosParamCreator = PermissionsApiAxiosParamCreator; exports.PermissionsApiFactory = PermissionsApiFactory; exports.PermissionsApiFp = PermissionsApiFp; exports.PhoneInboxInboxTypeEnum = PhoneInboxInboxTypeEnum; exports.PhoneLifecycle = PhoneLifecycle; exports.PlainTextContentContentTypeEnum = PlainTextContentContentTypeEnum; exports.PropertyTypes = PropertyTypes; exports.ProviderAccountInboxInboxTypeEnum = ProviderAccountInboxInboxTypeEnum; exports.ProviderConversationCommunicationType = ProviderConversationCommunicationType; exports.ProviderConversationDataConversationTypeEnum = ProviderConversationDataConversationTypeEnum; exports.ProviderStaffStaffTypeEnum = ProviderStaffStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.RelatedResourceType = RelatedResourceType; exports.RentalProviderMessageCommunicationType = RentalProviderMessageCommunicationType; exports.RentalProviderMessageCreateMessageTypeEnum = RentalProviderMessageCreateMessageTypeEnum; exports.RentalProviderMessageMessageTypeEnum = RentalProviderMessageMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.RolesApi = RolesApi; exports.RolesApiAxiosParamCreator = RolesApiAxiosParamCreator; exports.RolesApiFactory = RolesApiFactory; exports.RolesApiFp = RolesApiFp; exports.SMSConversationDataConversationTypeEnum = SMSConversationDataConversationTypeEnum; exports.SMSInboundSenderTypeDataDirectionEnum = SMSInboundSenderTypeDataDirectionEnum; exports.SMSLineType = SMSLineType; exports.SMSMessageCreateMessageTypeEnum = SMSMessageCreateMessageTypeEnum; exports.SMSMessageMessageTypeEnum = SMSMessageMessageTypeEnum; exports.SMSMessageStatus = SMSMessageStatus; exports.SMSOutboundSenderTypeDataDirectionEnum = SMSOutboundSenderTypeDataDirectionEnum; exports.SortBy = SortBy; exports.SortOrder = SortOrder; exports.StaffParticipantTypeEnum = StaffParticipantTypeEnum; exports.SuggestionRejectionReasonType = SuggestionRejectionReasonType; exports.SuggestionStatus = SuggestionStatus; exports.SuggestionUsedType = SuggestionUsedType; exports.TelnyxApi = TelnyxApi; exports.TelnyxApiAxiosParamCreator = TelnyxApiAxiosParamCreator; exports.TelnyxApiFactory = TelnyxApiFactory; exports.TelnyxApiFp = TelnyxApiFp; exports.URLContentContentTypeEnum = URLContentContentTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
11130
11130
|
//# sourceMappingURL=index.js.map
|