@ember-home/unbound-ts-client 0.0.17 → 0.0.19
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 +447 -63
- package/dist/index.d.ts +447 -63
- package/dist/index.js +584 -117
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +518 -51
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75,16 +75,21 @@ var createRequestFunction = function(axiosArgs, globalAxios3, BASE_PATH2, config
|
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
// src/api.ts
|
|
78
|
-
var
|
|
79
|
-
|
|
80
|
-
Owner: "owner",
|
|
81
|
-
Lead: "lead",
|
|
82
|
-
Basic: "basic"
|
|
78
|
+
var ContactListingType = {
|
|
79
|
+
Owner: "OWNER"
|
|
83
80
|
};
|
|
84
|
-
var
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
81
|
+
var ContactSortBy = {
|
|
82
|
+
LastFirstCompany: "last_first_company",
|
|
83
|
+
FirstLastCompany: "first_last_company",
|
|
84
|
+
CompanyLastFirst: "company_last_first"
|
|
85
|
+
};
|
|
86
|
+
var PaginationDirection = {
|
|
87
|
+
Forward: "forward",
|
|
88
|
+
Backward: "backward"
|
|
89
|
+
};
|
|
90
|
+
var SortOrder = {
|
|
91
|
+
Asc: "asc",
|
|
92
|
+
Desc: "desc"
|
|
88
93
|
};
|
|
89
94
|
var AddressesApiAxiosParamCreator = function(configuration) {
|
|
90
95
|
return {
|
|
@@ -384,6 +389,38 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
384
389
|
options: localVarRequestOptions
|
|
385
390
|
};
|
|
386
391
|
},
|
|
392
|
+
/**
|
|
393
|
+
* Associates a contact with a listing with the OWNER type.
|
|
394
|
+
* @summary Create Contact Listing
|
|
395
|
+
* @param {string} contactId
|
|
396
|
+
* @param {string} listingId
|
|
397
|
+
* @param {CreateContactListing} createContactListing
|
|
398
|
+
* @param {*} [options] Override http request option.
|
|
399
|
+
* @throws {RequiredError}
|
|
400
|
+
*/
|
|
401
|
+
contactsAddListing: async (contactId, listingId, createContactListing, options = {}) => {
|
|
402
|
+
assertParamExists("contactsAddListing", "contactId", contactId);
|
|
403
|
+
assertParamExists("contactsAddListing", "listingId", listingId);
|
|
404
|
+
assertParamExists("contactsAddListing", "createContactListing", createContactListing);
|
|
405
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
406
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
407
|
+
let baseOptions;
|
|
408
|
+
if (configuration) {
|
|
409
|
+
baseOptions = configuration.baseOptions;
|
|
410
|
+
}
|
|
411
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
412
|
+
const localVarHeaderParameter = {};
|
|
413
|
+
const localVarQueryParameter = {};
|
|
414
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
415
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
416
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
417
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
418
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createContactListing, localVarRequestOptions, configuration);
|
|
419
|
+
return {
|
|
420
|
+
url: toPathString(localVarUrlObj),
|
|
421
|
+
options: localVarRequestOptions
|
|
422
|
+
};
|
|
423
|
+
},
|
|
387
424
|
/**
|
|
388
425
|
*
|
|
389
426
|
* @summary Contacts Create
|
|
@@ -467,14 +504,16 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
467
504
|
/**
|
|
468
505
|
*
|
|
469
506
|
* @summary Contacts List
|
|
470
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
471
507
|
* @param {string} [searchString]
|
|
508
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
472
509
|
* @param {number} [limit]
|
|
473
|
-
* @param {
|
|
510
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
511
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
512
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
474
513
|
* @param {*} [options] Override http request option.
|
|
475
514
|
* @throws {RequiredError}
|
|
476
515
|
*/
|
|
477
|
-
contactsList: async (
|
|
516
|
+
contactsList: async (searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
|
|
478
517
|
const localVarPath = `/contacts`;
|
|
479
518
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
480
519
|
let baseOptions;
|
|
@@ -484,21 +523,59 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
484
523
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
485
524
|
const localVarHeaderParameter = {};
|
|
486
525
|
const localVarQueryParameter = {};
|
|
487
|
-
if (contactTypes) {
|
|
488
|
-
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
489
|
-
}
|
|
490
526
|
if (searchString !== void 0) {
|
|
491
527
|
localVarQueryParameter["searchString"] = searchString;
|
|
492
528
|
}
|
|
529
|
+
if (cursor !== void 0) {
|
|
530
|
+
localVarQueryParameter["cursor"] = cursor;
|
|
531
|
+
}
|
|
493
532
|
if (limit !== void 0) {
|
|
494
533
|
localVarQueryParameter["limit"] = limit;
|
|
495
534
|
}
|
|
496
|
-
if (
|
|
497
|
-
localVarQueryParameter["
|
|
535
|
+
if (pageDir !== void 0) {
|
|
536
|
+
localVarQueryParameter["pageDir"] = pageDir;
|
|
537
|
+
}
|
|
538
|
+
if (sortBy !== void 0) {
|
|
539
|
+
localVarQueryParameter["sortBy"] = sortBy;
|
|
540
|
+
}
|
|
541
|
+
if (sortOrder !== void 0) {
|
|
542
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
543
|
+
}
|
|
544
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
545
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
546
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
547
|
+
return {
|
|
548
|
+
url: toPathString(localVarUrlObj),
|
|
549
|
+
options: localVarRequestOptions
|
|
550
|
+
};
|
|
551
|
+
},
|
|
552
|
+
/**
|
|
553
|
+
* Removes an association between a contact and a listing.
|
|
554
|
+
* @summary Delete Contact Listing
|
|
555
|
+
* @param {string} contactId
|
|
556
|
+
* @param {string} listingId
|
|
557
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
558
|
+
* @param {*} [options] Override http request option.
|
|
559
|
+
* @throws {RequiredError}
|
|
560
|
+
*/
|
|
561
|
+
contactsRemoveListing: async (contactId, listingId, deleteContactListing, options = {}) => {
|
|
562
|
+
assertParamExists("contactsRemoveListing", "contactId", contactId);
|
|
563
|
+
assertParamExists("contactsRemoveListing", "listingId", listingId);
|
|
564
|
+
assertParamExists("contactsRemoveListing", "deleteContactListing", deleteContactListing);
|
|
565
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
566
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
567
|
+
let baseOptions;
|
|
568
|
+
if (configuration) {
|
|
569
|
+
baseOptions = configuration.baseOptions;
|
|
498
570
|
}
|
|
571
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
572
|
+
const localVarHeaderParameter = {};
|
|
573
|
+
const localVarQueryParameter = {};
|
|
574
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
499
575
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
500
576
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
501
577
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
578
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteContactListing, localVarRequestOptions, configuration);
|
|
502
579
|
return {
|
|
503
580
|
url: toPathString(localVarUrlObj),
|
|
504
581
|
options: localVarRequestOptions
|
|
@@ -534,6 +611,38 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
534
611
|
options: localVarRequestOptions
|
|
535
612
|
};
|
|
536
613
|
},
|
|
614
|
+
/**
|
|
615
|
+
* Updates an association between a contact and a listing.
|
|
616
|
+
* @summary Update Contact Listing
|
|
617
|
+
* @param {string} contactId
|
|
618
|
+
* @param {string} listingId
|
|
619
|
+
* @param {UpdateContactListing} updateContactListing
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @throws {RequiredError}
|
|
622
|
+
*/
|
|
623
|
+
contactsUpdateListing: async (contactId, listingId, updateContactListing, options = {}) => {
|
|
624
|
+
assertParamExists("contactsUpdateListing", "contactId", contactId);
|
|
625
|
+
assertParamExists("contactsUpdateListing", "listingId", listingId);
|
|
626
|
+
assertParamExists("contactsUpdateListing", "updateContactListing", updateContactListing);
|
|
627
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
628
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
629
|
+
let baseOptions;
|
|
630
|
+
if (configuration) {
|
|
631
|
+
baseOptions = configuration.baseOptions;
|
|
632
|
+
}
|
|
633
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
634
|
+
const localVarHeaderParameter = {};
|
|
635
|
+
const localVarQueryParameter = {};
|
|
636
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
637
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
638
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
639
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
640
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateContactListing, localVarRequestOptions, configuration);
|
|
641
|
+
return {
|
|
642
|
+
url: toPathString(localVarUrlObj),
|
|
643
|
+
options: localVarRequestOptions
|
|
644
|
+
};
|
|
645
|
+
},
|
|
537
646
|
/**
|
|
538
647
|
*
|
|
539
648
|
* @summary Emails Create
|
|
@@ -692,6 +801,21 @@ var ContactsApiFp = function(configuration) {
|
|
|
692
801
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _23 => _23["ContactsApi.addressesUpdate"], 'optionalAccess', _24 => _24[localVarOperationServerIndex], 'optionalAccess', _25 => _25.url]);
|
|
693
802
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
694
803
|
},
|
|
804
|
+
/**
|
|
805
|
+
* Associates a contact with a listing with the OWNER type.
|
|
806
|
+
* @summary Create Contact Listing
|
|
807
|
+
* @param {string} contactId
|
|
808
|
+
* @param {string} listingId
|
|
809
|
+
* @param {CreateContactListing} createContactListing
|
|
810
|
+
* @param {*} [options] Override http request option.
|
|
811
|
+
* @throws {RequiredError}
|
|
812
|
+
*/
|
|
813
|
+
async contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
814
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsAddListing(contactId, listingId, createContactListing, options);
|
|
815
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _26 => _26.serverIndex]), () => ( 0));
|
|
816
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _27 => _27["ContactsApi.contactsAddListing"], 'optionalAccess', _28 => _28[localVarOperationServerIndex], 'optionalAccess', _29 => _29.url]);
|
|
817
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
818
|
+
},
|
|
695
819
|
/**
|
|
696
820
|
*
|
|
697
821
|
* @summary Contacts Create
|
|
@@ -701,8 +825,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
701
825
|
*/
|
|
702
826
|
async contactsCreate(contactCreate, options) {
|
|
703
827
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
704
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
705
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
828
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _30 => _30.serverIndex]), () => ( 0));
|
|
829
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _31 => _31["ContactsApi.contactsCreate"], 'optionalAccess', _32 => _32[localVarOperationServerIndex], 'optionalAccess', _33 => _33.url]);
|
|
706
830
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
707
831
|
},
|
|
708
832
|
/**
|
|
@@ -714,8 +838,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
714
838
|
*/
|
|
715
839
|
async contactsDelete(contactId, options) {
|
|
716
840
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
717
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
718
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
841
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _34 => _34.serverIndex]), () => ( 0));
|
|
842
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _35 => _35["ContactsApi.contactsDelete"], 'optionalAccess', _36 => _36[localVarOperationServerIndex], 'optionalAccess', _37 => _37.url]);
|
|
719
843
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
720
844
|
},
|
|
721
845
|
/**
|
|
@@ -727,24 +851,41 @@ var ContactsApiFp = function(configuration) {
|
|
|
727
851
|
*/
|
|
728
852
|
async contactsGet(contactId, options) {
|
|
729
853
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
730
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
731
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
854
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _38 => _38.serverIndex]), () => ( 0));
|
|
855
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _39 => _39["ContactsApi.contactsGet"], 'optionalAccess', _40 => _40[localVarOperationServerIndex], 'optionalAccess', _41 => _41.url]);
|
|
732
856
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
733
857
|
},
|
|
734
858
|
/**
|
|
735
859
|
*
|
|
736
860
|
* @summary Contacts List
|
|
737
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
738
861
|
* @param {string} [searchString]
|
|
862
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
739
863
|
* @param {number} [limit]
|
|
740
|
-
* @param {
|
|
864
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
865
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
866
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
741
867
|
* @param {*} [options] Override http request option.
|
|
742
868
|
* @throws {RequiredError}
|
|
743
869
|
*/
|
|
744
|
-
async contactsList(
|
|
745
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
746
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
747
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
870
|
+
async contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
871
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
872
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _42 => _42.serverIndex]), () => ( 0));
|
|
873
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _43 => _43["ContactsApi.contactsList"], 'optionalAccess', _44 => _44[localVarOperationServerIndex], 'optionalAccess', _45 => _45.url]);
|
|
874
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
875
|
+
},
|
|
876
|
+
/**
|
|
877
|
+
* Removes an association between a contact and a listing.
|
|
878
|
+
* @summary Delete Contact Listing
|
|
879
|
+
* @param {string} contactId
|
|
880
|
+
* @param {string} listingId
|
|
881
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
882
|
+
* @param {*} [options] Override http request option.
|
|
883
|
+
* @throws {RequiredError}
|
|
884
|
+
*/
|
|
885
|
+
async contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
886
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsRemoveListing(contactId, listingId, deleteContactListing, options);
|
|
887
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _46 => _46.serverIndex]), () => ( 0));
|
|
888
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _47 => _47["ContactsApi.contactsRemoveListing"], 'optionalAccess', _48 => _48[localVarOperationServerIndex], 'optionalAccess', _49 => _49.url]);
|
|
748
889
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
749
890
|
},
|
|
750
891
|
/**
|
|
@@ -757,8 +898,23 @@ var ContactsApiFp = function(configuration) {
|
|
|
757
898
|
*/
|
|
758
899
|
async contactsUpdate(contactId, contactUpdate, options) {
|
|
759
900
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
760
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
761
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
901
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _50 => _50.serverIndex]), () => ( 0));
|
|
902
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _51 => _51["ContactsApi.contactsUpdate"], 'optionalAccess', _52 => _52[localVarOperationServerIndex], 'optionalAccess', _53 => _53.url]);
|
|
903
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
904
|
+
},
|
|
905
|
+
/**
|
|
906
|
+
* Updates an association between a contact and a listing.
|
|
907
|
+
* @summary Update Contact Listing
|
|
908
|
+
* @param {string} contactId
|
|
909
|
+
* @param {string} listingId
|
|
910
|
+
* @param {UpdateContactListing} updateContactListing
|
|
911
|
+
* @param {*} [options] Override http request option.
|
|
912
|
+
* @throws {RequiredError}
|
|
913
|
+
*/
|
|
914
|
+
async contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
915
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdateListing(contactId, listingId, updateContactListing, options);
|
|
916
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _54 => _54.serverIndex]), () => ( 0));
|
|
917
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _55 => _55["ContactsApi.contactsUpdateListing"], 'optionalAccess', _56 => _56[localVarOperationServerIndex], 'optionalAccess', _57 => _57.url]);
|
|
762
918
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
763
919
|
},
|
|
764
920
|
/**
|
|
@@ -771,8 +927,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
771
927
|
*/
|
|
772
928
|
async emailsCreate(contactId, emailCreate, options) {
|
|
773
929
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, emailCreate, options);
|
|
774
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
775
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
930
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _58 => _58.serverIndex]), () => ( 0));
|
|
931
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _59 => _59["ContactsApi.emailsCreate"], 'optionalAccess', _60 => _60[localVarOperationServerIndex], 'optionalAccess', _61 => _61.url]);
|
|
776
932
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
777
933
|
},
|
|
778
934
|
/**
|
|
@@ -784,8 +940,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
784
940
|
*/
|
|
785
941
|
async emailsDelete(emailId, options) {
|
|
786
942
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
787
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
788
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
943
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _62 => _62.serverIndex]), () => ( 0));
|
|
944
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _63 => _63["ContactsApi.emailsDelete"], 'optionalAccess', _64 => _64[localVarOperationServerIndex], 'optionalAccess', _65 => _65.url]);
|
|
789
945
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
790
946
|
},
|
|
791
947
|
/**
|
|
@@ -798,8 +954,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
798
954
|
*/
|
|
799
955
|
async phonesCreate(contactId, phoneCreate, options) {
|
|
800
956
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, phoneCreate, options);
|
|
801
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
802
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
957
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _66 => _66.serverIndex]), () => ( 0));
|
|
958
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _67 => _67["ContactsApi.phonesCreate"], 'optionalAccess', _68 => _68[localVarOperationServerIndex], 'optionalAccess', _69 => _69.url]);
|
|
803
959
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
804
960
|
},
|
|
805
961
|
/**
|
|
@@ -811,8 +967,8 @@ var ContactsApiFp = function(configuration) {
|
|
|
811
967
|
*/
|
|
812
968
|
async phonesDelete(phoneId, options) {
|
|
813
969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
814
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
815
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
970
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _70 => _70.serverIndex]), () => ( 0));
|
|
971
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _71 => _71["ContactsApi.phonesDelete"], 'optionalAccess', _72 => _72[localVarOperationServerIndex], 'optionalAccess', _73 => _73.url]);
|
|
816
972
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
817
973
|
}
|
|
818
974
|
};
|
|
@@ -852,6 +1008,18 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
852
1008
|
addressesUpdate(addressId, addressUpdate, options) {
|
|
853
1009
|
return localVarFp.addressesUpdate(addressId, addressUpdate, options).then((request) => request(axios, basePath));
|
|
854
1010
|
},
|
|
1011
|
+
/**
|
|
1012
|
+
* Associates a contact with a listing with the OWNER type.
|
|
1013
|
+
* @summary Create Contact Listing
|
|
1014
|
+
* @param {string} contactId
|
|
1015
|
+
* @param {string} listingId
|
|
1016
|
+
* @param {CreateContactListing} createContactListing
|
|
1017
|
+
* @param {*} [options] Override http request option.
|
|
1018
|
+
* @throws {RequiredError}
|
|
1019
|
+
*/
|
|
1020
|
+
contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
1021
|
+
return localVarFp.contactsAddListing(contactId, listingId, createContactListing, options).then((request) => request(axios, basePath));
|
|
1022
|
+
},
|
|
855
1023
|
/**
|
|
856
1024
|
*
|
|
857
1025
|
* @summary Contacts Create
|
|
@@ -885,15 +1053,29 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
885
1053
|
/**
|
|
886
1054
|
*
|
|
887
1055
|
* @summary Contacts List
|
|
888
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
889
1056
|
* @param {string} [searchString]
|
|
1057
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
890
1058
|
* @param {number} [limit]
|
|
891
|
-
* @param {
|
|
1059
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1060
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
1061
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1062
|
+
* @param {*} [options] Override http request option.
|
|
1063
|
+
* @throws {RequiredError}
|
|
1064
|
+
*/
|
|
1065
|
+
contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
1066
|
+
return localVarFp.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
1067
|
+
},
|
|
1068
|
+
/**
|
|
1069
|
+
* Removes an association between a contact and a listing.
|
|
1070
|
+
* @summary Delete Contact Listing
|
|
1071
|
+
* @param {string} contactId
|
|
1072
|
+
* @param {string} listingId
|
|
1073
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
892
1074
|
* @param {*} [options] Override http request option.
|
|
893
1075
|
* @throws {RequiredError}
|
|
894
1076
|
*/
|
|
895
|
-
|
|
896
|
-
return localVarFp.
|
|
1077
|
+
contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
1078
|
+
return localVarFp.contactsRemoveListing(contactId, listingId, deleteContactListing, options).then((request) => request(axios, basePath));
|
|
897
1079
|
},
|
|
898
1080
|
/**
|
|
899
1081
|
*
|
|
@@ -906,6 +1088,18 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
906
1088
|
contactsUpdate(contactId, contactUpdate, options) {
|
|
907
1089
|
return localVarFp.contactsUpdate(contactId, contactUpdate, options).then((request) => request(axios, basePath));
|
|
908
1090
|
},
|
|
1091
|
+
/**
|
|
1092
|
+
* Updates an association between a contact and a listing.
|
|
1093
|
+
* @summary Update Contact Listing
|
|
1094
|
+
* @param {string} contactId
|
|
1095
|
+
* @param {string} listingId
|
|
1096
|
+
* @param {UpdateContactListing} updateContactListing
|
|
1097
|
+
* @param {*} [options] Override http request option.
|
|
1098
|
+
* @throws {RequiredError}
|
|
1099
|
+
*/
|
|
1100
|
+
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
1101
|
+
return localVarFp.contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(axios, basePath));
|
|
1102
|
+
},
|
|
909
1103
|
/**
|
|
910
1104
|
*
|
|
911
1105
|
* @summary Emails Create
|
|
@@ -986,6 +1180,19 @@ var ContactsApi = class extends BaseAPI {
|
|
|
986
1180
|
addressesUpdate(addressId, addressUpdate, options) {
|
|
987
1181
|
return ContactsApiFp(this.configuration).addressesUpdate(addressId, addressUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
988
1182
|
}
|
|
1183
|
+
/**
|
|
1184
|
+
* Associates a contact with a listing with the OWNER type.
|
|
1185
|
+
* @summary Create Contact Listing
|
|
1186
|
+
* @param {string} contactId
|
|
1187
|
+
* @param {string} listingId
|
|
1188
|
+
* @param {CreateContactListing} createContactListing
|
|
1189
|
+
* @param {*} [options] Override http request option.
|
|
1190
|
+
* @throws {RequiredError}
|
|
1191
|
+
* @memberof ContactsApi
|
|
1192
|
+
*/
|
|
1193
|
+
contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
1194
|
+
return ContactsApiFp(this.configuration).contactsAddListing(contactId, listingId, createContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
1195
|
+
}
|
|
989
1196
|
/**
|
|
990
1197
|
*
|
|
991
1198
|
* @summary Contacts Create
|
|
@@ -1022,16 +1229,31 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1022
1229
|
/**
|
|
1023
1230
|
*
|
|
1024
1231
|
* @summary Contacts List
|
|
1025
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1026
1232
|
* @param {string} [searchString]
|
|
1233
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1027
1234
|
* @param {number} [limit]
|
|
1028
|
-
* @param {
|
|
1235
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1236
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
1237
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1029
1238
|
* @param {*} [options] Override http request option.
|
|
1030
1239
|
* @throws {RequiredError}
|
|
1031
1240
|
* @memberof ContactsApi
|
|
1032
1241
|
*/
|
|
1033
|
-
contactsList(
|
|
1034
|
-
return ContactsApiFp(this.configuration).contactsList(
|
|
1242
|
+
contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
1243
|
+
return ContactsApiFp(this.configuration).contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
* Removes an association between a contact and a listing.
|
|
1247
|
+
* @summary Delete Contact Listing
|
|
1248
|
+
* @param {string} contactId
|
|
1249
|
+
* @param {string} listingId
|
|
1250
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
1251
|
+
* @param {*} [options] Override http request option.
|
|
1252
|
+
* @throws {RequiredError}
|
|
1253
|
+
* @memberof ContactsApi
|
|
1254
|
+
*/
|
|
1255
|
+
contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
1256
|
+
return ContactsApiFp(this.configuration).contactsRemoveListing(contactId, listingId, deleteContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
1035
1257
|
}
|
|
1036
1258
|
/**
|
|
1037
1259
|
*
|
|
@@ -1045,6 +1267,19 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1045
1267
|
contactsUpdate(contactId, contactUpdate, options) {
|
|
1046
1268
|
return ContactsApiFp(this.configuration).contactsUpdate(contactId, contactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
1047
1269
|
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Updates an association between a contact and a listing.
|
|
1272
|
+
* @summary Update Contact Listing
|
|
1273
|
+
* @param {string} contactId
|
|
1274
|
+
* @param {string} listingId
|
|
1275
|
+
* @param {UpdateContactListing} updateContactListing
|
|
1276
|
+
* @param {*} [options] Override http request option.
|
|
1277
|
+
* @throws {RequiredError}
|
|
1278
|
+
* @memberof ContactsApi
|
|
1279
|
+
*/
|
|
1280
|
+
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
1281
|
+
return ContactsApiFp(this.configuration).contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
1282
|
+
}
|
|
1048
1283
|
/**
|
|
1049
1284
|
*
|
|
1050
1285
|
* @summary Emails Create
|
|
@@ -1165,8 +1400,8 @@ var EmailsApiFp = function(configuration) {
|
|
|
1165
1400
|
*/
|
|
1166
1401
|
async emailsCreate(contactId, emailCreate, options) {
|
|
1167
1402
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, emailCreate, options);
|
|
1168
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1169
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1403
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _74 => _74.serverIndex]), () => ( 0));
|
|
1404
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _75 => _75["EmailsApi.emailsCreate"], 'optionalAccess', _76 => _76[localVarOperationServerIndex], 'optionalAccess', _77 => _77.url]);
|
|
1170
1405
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1171
1406
|
},
|
|
1172
1407
|
/**
|
|
@@ -1178,8 +1413,8 @@ var EmailsApiFp = function(configuration) {
|
|
|
1178
1413
|
*/
|
|
1179
1414
|
async emailsDelete(emailId, options) {
|
|
1180
1415
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
1181
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1182
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1416
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _78 => _78.serverIndex]), () => ( 0));
|
|
1417
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _79 => _79["EmailsApi.emailsDelete"], 'optionalAccess', _80 => _80[localVarOperationServerIndex], 'optionalAccess', _81 => _81.url]);
|
|
1183
1418
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1184
1419
|
}
|
|
1185
1420
|
};
|
|
@@ -1280,8 +1515,8 @@ var HostawayApiFp = function(configuration) {
|
|
|
1280
1515
|
*/
|
|
1281
1516
|
async webhook(hostawayWebhook, options) {
|
|
1282
1517
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
1283
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1284
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1518
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _82 => _82.serverIndex]), () => ( 0));
|
|
1519
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _83 => _83["HostawayApi.webhook"], 'optionalAccess', _84 => _84[localVarOperationServerIndex], 'optionalAccess', _85 => _85.url]);
|
|
1285
1520
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1286
1521
|
}
|
|
1287
1522
|
};
|
|
@@ -1358,8 +1593,8 @@ var InquiriesApiFp = function(configuration) {
|
|
|
1358
1593
|
*/
|
|
1359
1594
|
async inquiriesList(contactId, options) {
|
|
1360
1595
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
1361
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1362
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1596
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _86 => _86.serverIndex]), () => ( 0));
|
|
1597
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _87 => _87["InquiriesApi.inquiriesList"], 'optionalAccess', _88 => _88[localVarOperationServerIndex], 'optionalAccess', _89 => _89.url]);
|
|
1363
1598
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1364
1599
|
}
|
|
1365
1600
|
};
|
|
@@ -1436,8 +1671,8 @@ var ListingsApiFp = function(configuration) {
|
|
|
1436
1671
|
*/
|
|
1437
1672
|
async listingsList(contactId, options) {
|
|
1438
1673
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(contactId, options);
|
|
1439
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1440
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1674
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _90 => _90.serverIndex]), () => ( 0));
|
|
1675
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _91 => _91["ListingsApi.listingsList"], 'optionalAccess', _92 => _92[localVarOperationServerIndex], 'optionalAccess', _93 => _93.url]);
|
|
1441
1676
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1442
1677
|
}
|
|
1443
1678
|
};
|
|
@@ -1543,8 +1778,8 @@ var PhonesApiFp = function(configuration) {
|
|
|
1543
1778
|
*/
|
|
1544
1779
|
async phonesCreate(contactId, phoneCreate, options) {
|
|
1545
1780
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, phoneCreate, options);
|
|
1546
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1547
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1781
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _94 => _94.serverIndex]), () => ( 0));
|
|
1782
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _95 => _95["PhonesApi.phonesCreate"], 'optionalAccess', _96 => _96[localVarOperationServerIndex], 'optionalAccess', _97 => _97.url]);
|
|
1548
1783
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1549
1784
|
},
|
|
1550
1785
|
/**
|
|
@@ -1556,8 +1791,8 @@ var PhonesApiFp = function(configuration) {
|
|
|
1556
1791
|
*/
|
|
1557
1792
|
async phonesDelete(phoneId, options) {
|
|
1558
1793
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
1559
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1560
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1794
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _98 => _98.serverIndex]), () => ( 0));
|
|
1795
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _99 => _99["PhonesApi.phonesDelete"], 'optionalAccess', _100 => _100[localVarOperationServerIndex], 'optionalAccess', _101 => _101.url]);
|
|
1561
1796
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1562
1797
|
}
|
|
1563
1798
|
};
|
|
@@ -1657,8 +1892,8 @@ var ReservationsApiFp = function(configuration) {
|
|
|
1657
1892
|
*/
|
|
1658
1893
|
async reservationsList(contactId, options) {
|
|
1659
1894
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
1660
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1661
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1895
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _102 => _102.serverIndex]), () => ( 0));
|
|
1896
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _103 => _103["ReservationsApi.reservationsList"], 'optionalAccess', _104 => _104[localVarOperationServerIndex], 'optionalAccess', _105 => _105.url]);
|
|
1662
1897
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1663
1898
|
}
|
|
1664
1899
|
};
|
|
@@ -1779,6 +2014,38 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1779
2014
|
options: localVarRequestOptions
|
|
1780
2015
|
};
|
|
1781
2016
|
},
|
|
2017
|
+
/**
|
|
2018
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2019
|
+
* @summary Create Contact Listing
|
|
2020
|
+
* @param {string} contactId
|
|
2021
|
+
* @param {string} listingId
|
|
2022
|
+
* @param {CreateContactListing} createContactListing
|
|
2023
|
+
* @param {*} [options] Override http request option.
|
|
2024
|
+
* @throws {RequiredError}
|
|
2025
|
+
*/
|
|
2026
|
+
contactsAddListing: async (contactId, listingId, createContactListing, options = {}) => {
|
|
2027
|
+
assertParamExists("contactsAddListing", "contactId", contactId);
|
|
2028
|
+
assertParamExists("contactsAddListing", "listingId", listingId);
|
|
2029
|
+
assertParamExists("contactsAddListing", "createContactListing", createContactListing);
|
|
2030
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
2031
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2032
|
+
let baseOptions;
|
|
2033
|
+
if (configuration) {
|
|
2034
|
+
baseOptions = configuration.baseOptions;
|
|
2035
|
+
}
|
|
2036
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
2037
|
+
const localVarHeaderParameter = {};
|
|
2038
|
+
const localVarQueryParameter = {};
|
|
2039
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2040
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2041
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2042
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2043
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createContactListing, localVarRequestOptions, configuration);
|
|
2044
|
+
return {
|
|
2045
|
+
url: toPathString(localVarUrlObj),
|
|
2046
|
+
options: localVarRequestOptions
|
|
2047
|
+
};
|
|
2048
|
+
},
|
|
1782
2049
|
/**
|
|
1783
2050
|
*
|
|
1784
2051
|
* @summary Contacts Create
|
|
@@ -1862,14 +2129,16 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1862
2129
|
/**
|
|
1863
2130
|
*
|
|
1864
2131
|
* @summary Contacts List
|
|
1865
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1866
2132
|
* @param {string} [searchString]
|
|
2133
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1867
2134
|
* @param {number} [limit]
|
|
1868
|
-
* @param {
|
|
2135
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2136
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
2137
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1869
2138
|
* @param {*} [options] Override http request option.
|
|
1870
2139
|
* @throws {RequiredError}
|
|
1871
2140
|
*/
|
|
1872
|
-
contactsList: async (
|
|
2141
|
+
contactsList: async (searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
|
|
1873
2142
|
const localVarPath = `/contacts`;
|
|
1874
2143
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1875
2144
|
let baseOptions;
|
|
@@ -1879,21 +2148,59 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1879
2148
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1880
2149
|
const localVarHeaderParameter = {};
|
|
1881
2150
|
const localVarQueryParameter = {};
|
|
1882
|
-
if (contactTypes) {
|
|
1883
|
-
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
1884
|
-
}
|
|
1885
2151
|
if (searchString !== void 0) {
|
|
1886
2152
|
localVarQueryParameter["searchString"] = searchString;
|
|
1887
2153
|
}
|
|
2154
|
+
if (cursor !== void 0) {
|
|
2155
|
+
localVarQueryParameter["cursor"] = cursor;
|
|
2156
|
+
}
|
|
1888
2157
|
if (limit !== void 0) {
|
|
1889
2158
|
localVarQueryParameter["limit"] = limit;
|
|
1890
2159
|
}
|
|
1891
|
-
if (
|
|
1892
|
-
localVarQueryParameter["
|
|
2160
|
+
if (pageDir !== void 0) {
|
|
2161
|
+
localVarQueryParameter["pageDir"] = pageDir;
|
|
2162
|
+
}
|
|
2163
|
+
if (sortBy !== void 0) {
|
|
2164
|
+
localVarQueryParameter["sortBy"] = sortBy;
|
|
2165
|
+
}
|
|
2166
|
+
if (sortOrder !== void 0) {
|
|
2167
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
2168
|
+
}
|
|
2169
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2170
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2171
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2172
|
+
return {
|
|
2173
|
+
url: toPathString(localVarUrlObj),
|
|
2174
|
+
options: localVarRequestOptions
|
|
2175
|
+
};
|
|
2176
|
+
},
|
|
2177
|
+
/**
|
|
2178
|
+
* Removes an association between a contact and a listing.
|
|
2179
|
+
* @summary Delete Contact Listing
|
|
2180
|
+
* @param {string} contactId
|
|
2181
|
+
* @param {string} listingId
|
|
2182
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2183
|
+
* @param {*} [options] Override http request option.
|
|
2184
|
+
* @throws {RequiredError}
|
|
2185
|
+
*/
|
|
2186
|
+
contactsRemoveListing: async (contactId, listingId, deleteContactListing, options = {}) => {
|
|
2187
|
+
assertParamExists("contactsRemoveListing", "contactId", contactId);
|
|
2188
|
+
assertParamExists("contactsRemoveListing", "listingId", listingId);
|
|
2189
|
+
assertParamExists("contactsRemoveListing", "deleteContactListing", deleteContactListing);
|
|
2190
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
2191
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2192
|
+
let baseOptions;
|
|
2193
|
+
if (configuration) {
|
|
2194
|
+
baseOptions = configuration.baseOptions;
|
|
1893
2195
|
}
|
|
2196
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
2197
|
+
const localVarHeaderParameter = {};
|
|
2198
|
+
const localVarQueryParameter = {};
|
|
2199
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1894
2200
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1895
2201
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1896
2202
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2203
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteContactListing, localVarRequestOptions, configuration);
|
|
1897
2204
|
return {
|
|
1898
2205
|
url: toPathString(localVarUrlObj),
|
|
1899
2206
|
options: localVarRequestOptions
|
|
@@ -1929,6 +2236,38 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1929
2236
|
options: localVarRequestOptions
|
|
1930
2237
|
};
|
|
1931
2238
|
},
|
|
2239
|
+
/**
|
|
2240
|
+
* Updates an association between a contact and a listing.
|
|
2241
|
+
* @summary Update Contact Listing
|
|
2242
|
+
* @param {string} contactId
|
|
2243
|
+
* @param {string} listingId
|
|
2244
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2245
|
+
* @param {*} [options] Override http request option.
|
|
2246
|
+
* @throws {RequiredError}
|
|
2247
|
+
*/
|
|
2248
|
+
contactsUpdateListing: async (contactId, listingId, updateContactListing, options = {}) => {
|
|
2249
|
+
assertParamExists("contactsUpdateListing", "contactId", contactId);
|
|
2250
|
+
assertParamExists("contactsUpdateListing", "listingId", listingId);
|
|
2251
|
+
assertParamExists("contactsUpdateListing", "updateContactListing", updateContactListing);
|
|
2252
|
+
const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
|
|
2253
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2254
|
+
let baseOptions;
|
|
2255
|
+
if (configuration) {
|
|
2256
|
+
baseOptions = configuration.baseOptions;
|
|
2257
|
+
}
|
|
2258
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
2259
|
+
const localVarHeaderParameter = {};
|
|
2260
|
+
const localVarQueryParameter = {};
|
|
2261
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2262
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2263
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2264
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2265
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateContactListing, localVarRequestOptions, configuration);
|
|
2266
|
+
return {
|
|
2267
|
+
url: toPathString(localVarUrlObj),
|
|
2268
|
+
options: localVarRequestOptions
|
|
2269
|
+
};
|
|
2270
|
+
},
|
|
1932
2271
|
/**
|
|
1933
2272
|
*
|
|
1934
2273
|
* @summary Emails Create
|
|
@@ -2169,8 +2508,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2169
2508
|
*/
|
|
2170
2509
|
async addressesCreate(contactId, addressCreate, options) {
|
|
2171
2510
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, addressCreate, options);
|
|
2172
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2173
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2511
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _106 => _106.serverIndex]), () => ( 0));
|
|
2512
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _107 => _107["UnboundApi.addressesCreate"], 'optionalAccess', _108 => _108[localVarOperationServerIndex], 'optionalAccess', _109 => _109.url]);
|
|
2174
2513
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2175
2514
|
},
|
|
2176
2515
|
/**
|
|
@@ -2182,8 +2521,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2182
2521
|
*/
|
|
2183
2522
|
async addressesDelete(addressId, options) {
|
|
2184
2523
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesDelete(addressId, options);
|
|
2185
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2186
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2524
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _110 => _110.serverIndex]), () => ( 0));
|
|
2525
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _111 => _111["UnboundApi.addressesDelete"], 'optionalAccess', _112 => _112[localVarOperationServerIndex], 'optionalAccess', _113 => _113.url]);
|
|
2187
2526
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2188
2527
|
},
|
|
2189
2528
|
/**
|
|
@@ -2196,8 +2535,23 @@ var UnboundApiFp = function(configuration) {
|
|
|
2196
2535
|
*/
|
|
2197
2536
|
async addressesUpdate(addressId, addressUpdate, options) {
|
|
2198
2537
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, addressUpdate, options);
|
|
2199
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2200
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2538
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _114 => _114.serverIndex]), () => ( 0));
|
|
2539
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _115 => _115["UnboundApi.addressesUpdate"], 'optionalAccess', _116 => _116[localVarOperationServerIndex], 'optionalAccess', _117 => _117.url]);
|
|
2540
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2541
|
+
},
|
|
2542
|
+
/**
|
|
2543
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2544
|
+
* @summary Create Contact Listing
|
|
2545
|
+
* @param {string} contactId
|
|
2546
|
+
* @param {string} listingId
|
|
2547
|
+
* @param {CreateContactListing} createContactListing
|
|
2548
|
+
* @param {*} [options] Override http request option.
|
|
2549
|
+
* @throws {RequiredError}
|
|
2550
|
+
*/
|
|
2551
|
+
async contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
2552
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsAddListing(contactId, listingId, createContactListing, options);
|
|
2553
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _118 => _118.serverIndex]), () => ( 0));
|
|
2554
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _119 => _119["UnboundApi.contactsAddListing"], 'optionalAccess', _120 => _120[localVarOperationServerIndex], 'optionalAccess', _121 => _121.url]);
|
|
2201
2555
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2202
2556
|
},
|
|
2203
2557
|
/**
|
|
@@ -2209,8 +2563,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2209
2563
|
*/
|
|
2210
2564
|
async contactsCreate(contactCreate, options) {
|
|
2211
2565
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
2212
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2213
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2566
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _122 => _122.serverIndex]), () => ( 0));
|
|
2567
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _123 => _123["UnboundApi.contactsCreate"], 'optionalAccess', _124 => _124[localVarOperationServerIndex], 'optionalAccess', _125 => _125.url]);
|
|
2214
2568
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2215
2569
|
},
|
|
2216
2570
|
/**
|
|
@@ -2222,8 +2576,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2222
2576
|
*/
|
|
2223
2577
|
async contactsDelete(contactId, options) {
|
|
2224
2578
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
2225
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2226
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2579
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _126 => _126.serverIndex]), () => ( 0));
|
|
2580
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _127 => _127["UnboundApi.contactsDelete"], 'optionalAccess', _128 => _128[localVarOperationServerIndex], 'optionalAccess', _129 => _129.url]);
|
|
2227
2581
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2228
2582
|
},
|
|
2229
2583
|
/**
|
|
@@ -2235,24 +2589,41 @@ var UnboundApiFp = function(configuration) {
|
|
|
2235
2589
|
*/
|
|
2236
2590
|
async contactsGet(contactId, options) {
|
|
2237
2591
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
2238
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2239
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2592
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _130 => _130.serverIndex]), () => ( 0));
|
|
2593
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _131 => _131["UnboundApi.contactsGet"], 'optionalAccess', _132 => _132[localVarOperationServerIndex], 'optionalAccess', _133 => _133.url]);
|
|
2240
2594
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2241
2595
|
},
|
|
2242
2596
|
/**
|
|
2243
2597
|
*
|
|
2244
2598
|
* @summary Contacts List
|
|
2245
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2246
2599
|
* @param {string} [searchString]
|
|
2600
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2247
2601
|
* @param {number} [limit]
|
|
2248
|
-
* @param {
|
|
2602
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2603
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
2604
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2249
2605
|
* @param {*} [options] Override http request option.
|
|
2250
2606
|
* @throws {RequiredError}
|
|
2251
2607
|
*/
|
|
2252
|
-
async contactsList(
|
|
2253
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
2254
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2255
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2608
|
+
async contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2609
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
2610
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _134 => _134.serverIndex]), () => ( 0));
|
|
2611
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _135 => _135["UnboundApi.contactsList"], 'optionalAccess', _136 => _136[localVarOperationServerIndex], 'optionalAccess', _137 => _137.url]);
|
|
2612
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2613
|
+
},
|
|
2614
|
+
/**
|
|
2615
|
+
* Removes an association between a contact and a listing.
|
|
2616
|
+
* @summary Delete Contact Listing
|
|
2617
|
+
* @param {string} contactId
|
|
2618
|
+
* @param {string} listingId
|
|
2619
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2620
|
+
* @param {*} [options] Override http request option.
|
|
2621
|
+
* @throws {RequiredError}
|
|
2622
|
+
*/
|
|
2623
|
+
async contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
2624
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsRemoveListing(contactId, listingId, deleteContactListing, options);
|
|
2625
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _138 => _138.serverIndex]), () => ( 0));
|
|
2626
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _139 => _139["UnboundApi.contactsRemoveListing"], 'optionalAccess', _140 => _140[localVarOperationServerIndex], 'optionalAccess', _141 => _141.url]);
|
|
2256
2627
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2257
2628
|
},
|
|
2258
2629
|
/**
|
|
@@ -2265,8 +2636,23 @@ var UnboundApiFp = function(configuration) {
|
|
|
2265
2636
|
*/
|
|
2266
2637
|
async contactsUpdate(contactId, contactUpdate, options) {
|
|
2267
2638
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
2268
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2269
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2639
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _142 => _142.serverIndex]), () => ( 0));
|
|
2640
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _143 => _143["UnboundApi.contactsUpdate"], 'optionalAccess', _144 => _144[localVarOperationServerIndex], 'optionalAccess', _145 => _145.url]);
|
|
2641
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2642
|
+
},
|
|
2643
|
+
/**
|
|
2644
|
+
* Updates an association between a contact and a listing.
|
|
2645
|
+
* @summary Update Contact Listing
|
|
2646
|
+
* @param {string} contactId
|
|
2647
|
+
* @param {string} listingId
|
|
2648
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2649
|
+
* @param {*} [options] Override http request option.
|
|
2650
|
+
* @throws {RequiredError}
|
|
2651
|
+
*/
|
|
2652
|
+
async contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
2653
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdateListing(contactId, listingId, updateContactListing, options);
|
|
2654
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _146 => _146.serverIndex]), () => ( 0));
|
|
2655
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _147 => _147["UnboundApi.contactsUpdateListing"], 'optionalAccess', _148 => _148[localVarOperationServerIndex], 'optionalAccess', _149 => _149.url]);
|
|
2270
2656
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2271
2657
|
},
|
|
2272
2658
|
/**
|
|
@@ -2279,8 +2665,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2279
2665
|
*/
|
|
2280
2666
|
async emailsCreate(contactId, emailCreate, options) {
|
|
2281
2667
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, emailCreate, options);
|
|
2282
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2283
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2668
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
2669
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["UnboundApi.emailsCreate"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
2284
2670
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2285
2671
|
},
|
|
2286
2672
|
/**
|
|
@@ -2292,8 +2678,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2292
2678
|
*/
|
|
2293
2679
|
async emailsDelete(emailId, options) {
|
|
2294
2680
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
2295
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2296
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2681
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _154 => _154.serverIndex]), () => ( 0));
|
|
2682
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _155 => _155["UnboundApi.emailsDelete"], 'optionalAccess', _156 => _156[localVarOperationServerIndex], 'optionalAccess', _157 => _157.url]);
|
|
2297
2683
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2298
2684
|
},
|
|
2299
2685
|
/**
|
|
@@ -2305,8 +2691,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2305
2691
|
*/
|
|
2306
2692
|
async inquiriesList(contactId, options) {
|
|
2307
2693
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
2308
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2309
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2694
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _158 => _158.serverIndex]), () => ( 0));
|
|
2695
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _159 => _159["UnboundApi.inquiriesList"], 'optionalAccess', _160 => _160[localVarOperationServerIndex], 'optionalAccess', _161 => _161.url]);
|
|
2310
2696
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2311
2697
|
},
|
|
2312
2698
|
/**
|
|
@@ -2318,8 +2704,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2318
2704
|
*/
|
|
2319
2705
|
async listingsList(contactId, options) {
|
|
2320
2706
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(contactId, options);
|
|
2321
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2322
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2707
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _162 => _162.serverIndex]), () => ( 0));
|
|
2708
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _163 => _163["UnboundApi.listingsList"], 'optionalAccess', _164 => _164[localVarOperationServerIndex], 'optionalAccess', _165 => _165.url]);
|
|
2323
2709
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2324
2710
|
},
|
|
2325
2711
|
/**
|
|
@@ -2332,8 +2718,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2332
2718
|
*/
|
|
2333
2719
|
async phonesCreate(contactId, phoneCreate, options) {
|
|
2334
2720
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, phoneCreate, options);
|
|
2335
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2336
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2721
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _166 => _166.serverIndex]), () => ( 0));
|
|
2722
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _167 => _167["UnboundApi.phonesCreate"], 'optionalAccess', _168 => _168[localVarOperationServerIndex], 'optionalAccess', _169 => _169.url]);
|
|
2337
2723
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2338
2724
|
},
|
|
2339
2725
|
/**
|
|
@@ -2345,8 +2731,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2345
2731
|
*/
|
|
2346
2732
|
async phonesDelete(phoneId, options) {
|
|
2347
2733
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
2348
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2349
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2734
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _170 => _170.serverIndex]), () => ( 0));
|
|
2735
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _171 => _171["UnboundApi.phonesDelete"], 'optionalAccess', _172 => _172[localVarOperationServerIndex], 'optionalAccess', _173 => _173.url]);
|
|
2350
2736
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2351
2737
|
},
|
|
2352
2738
|
/**
|
|
@@ -2358,8 +2744,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2358
2744
|
*/
|
|
2359
2745
|
async reservationsList(contactId, options) {
|
|
2360
2746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
2361
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2362
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2747
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _174 => _174.serverIndex]), () => ( 0));
|
|
2748
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _175 => _175["UnboundApi.reservationsList"], 'optionalAccess', _176 => _176[localVarOperationServerIndex], 'optionalAccess', _177 => _177.url]);
|
|
2363
2749
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2364
2750
|
},
|
|
2365
2751
|
/**
|
|
@@ -2371,8 +2757,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2371
2757
|
*/
|
|
2372
2758
|
async webhook(hostawayWebhook, options) {
|
|
2373
2759
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
2374
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2375
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2760
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _178 => _178.serverIndex]), () => ( 0));
|
|
2761
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _179 => _179["UnboundApi.webhook"], 'optionalAccess', _180 => _180[localVarOperationServerIndex], 'optionalAccess', _181 => _181.url]);
|
|
2376
2762
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2377
2763
|
}
|
|
2378
2764
|
};
|
|
@@ -2412,6 +2798,18 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2412
2798
|
addressesUpdate(addressId, addressUpdate, options) {
|
|
2413
2799
|
return localVarFp.addressesUpdate(addressId, addressUpdate, options).then((request) => request(axios, basePath));
|
|
2414
2800
|
},
|
|
2801
|
+
/**
|
|
2802
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2803
|
+
* @summary Create Contact Listing
|
|
2804
|
+
* @param {string} contactId
|
|
2805
|
+
* @param {string} listingId
|
|
2806
|
+
* @param {CreateContactListing} createContactListing
|
|
2807
|
+
* @param {*} [options] Override http request option.
|
|
2808
|
+
* @throws {RequiredError}
|
|
2809
|
+
*/
|
|
2810
|
+
contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
2811
|
+
return localVarFp.contactsAddListing(contactId, listingId, createContactListing, options).then((request) => request(axios, basePath));
|
|
2812
|
+
},
|
|
2415
2813
|
/**
|
|
2416
2814
|
*
|
|
2417
2815
|
* @summary Contacts Create
|
|
@@ -2445,15 +2843,29 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2445
2843
|
/**
|
|
2446
2844
|
*
|
|
2447
2845
|
* @summary Contacts List
|
|
2448
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2449
2846
|
* @param {string} [searchString]
|
|
2847
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2450
2848
|
* @param {number} [limit]
|
|
2451
|
-
* @param {
|
|
2849
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2850
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
2851
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2452
2852
|
* @param {*} [options] Override http request option.
|
|
2453
2853
|
* @throws {RequiredError}
|
|
2454
2854
|
*/
|
|
2455
|
-
contactsList(
|
|
2456
|
-
return localVarFp.contactsList(
|
|
2855
|
+
contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2856
|
+
return localVarFp.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
2857
|
+
},
|
|
2858
|
+
/**
|
|
2859
|
+
* Removes an association between a contact and a listing.
|
|
2860
|
+
* @summary Delete Contact Listing
|
|
2861
|
+
* @param {string} contactId
|
|
2862
|
+
* @param {string} listingId
|
|
2863
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2864
|
+
* @param {*} [options] Override http request option.
|
|
2865
|
+
* @throws {RequiredError}
|
|
2866
|
+
*/
|
|
2867
|
+
contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
2868
|
+
return localVarFp.contactsRemoveListing(contactId, listingId, deleteContactListing, options).then((request) => request(axios, basePath));
|
|
2457
2869
|
},
|
|
2458
2870
|
/**
|
|
2459
2871
|
*
|
|
@@ -2466,6 +2878,18 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2466
2878
|
contactsUpdate(contactId, contactUpdate, options) {
|
|
2467
2879
|
return localVarFp.contactsUpdate(contactId, contactUpdate, options).then((request) => request(axios, basePath));
|
|
2468
2880
|
},
|
|
2881
|
+
/**
|
|
2882
|
+
* Updates an association between a contact and a listing.
|
|
2883
|
+
* @summary Update Contact Listing
|
|
2884
|
+
* @param {string} contactId
|
|
2885
|
+
* @param {string} listingId
|
|
2886
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2887
|
+
* @param {*} [options] Override http request option.
|
|
2888
|
+
* @throws {RequiredError}
|
|
2889
|
+
*/
|
|
2890
|
+
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
2891
|
+
return localVarFp.contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(axios, basePath));
|
|
2892
|
+
},
|
|
2469
2893
|
/**
|
|
2470
2894
|
*
|
|
2471
2895
|
* @summary Emails Create
|
|
@@ -2586,6 +3010,19 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2586
3010
|
addressesUpdate(addressId, addressUpdate, options) {
|
|
2587
3011
|
return UnboundApiFp(this.configuration).addressesUpdate(addressId, addressUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2588
3012
|
}
|
|
3013
|
+
/**
|
|
3014
|
+
* Associates a contact with a listing with the OWNER type.
|
|
3015
|
+
* @summary Create Contact Listing
|
|
3016
|
+
* @param {string} contactId
|
|
3017
|
+
* @param {string} listingId
|
|
3018
|
+
* @param {CreateContactListing} createContactListing
|
|
3019
|
+
* @param {*} [options] Override http request option.
|
|
3020
|
+
* @throws {RequiredError}
|
|
3021
|
+
* @memberof UnboundApi
|
|
3022
|
+
*/
|
|
3023
|
+
contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
3024
|
+
return UnboundApiFp(this.configuration).contactsAddListing(contactId, listingId, createContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
3025
|
+
}
|
|
2589
3026
|
/**
|
|
2590
3027
|
*
|
|
2591
3028
|
* @summary Contacts Create
|
|
@@ -2622,16 +3059,31 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2622
3059
|
/**
|
|
2623
3060
|
*
|
|
2624
3061
|
* @summary Contacts List
|
|
2625
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2626
3062
|
* @param {string} [searchString]
|
|
3063
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2627
3064
|
* @param {number} [limit]
|
|
2628
|
-
* @param {
|
|
3065
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3066
|
+
* @param {ContactSortBy} [sortBy] Sort key
|
|
3067
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3068
|
+
* @param {*} [options] Override http request option.
|
|
3069
|
+
* @throws {RequiredError}
|
|
3070
|
+
* @memberof UnboundApi
|
|
3071
|
+
*/
|
|
3072
|
+
contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
3073
|
+
return UnboundApiFp(this.configuration).contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
3074
|
+
}
|
|
3075
|
+
/**
|
|
3076
|
+
* Removes an association between a contact and a listing.
|
|
3077
|
+
* @summary Delete Contact Listing
|
|
3078
|
+
* @param {string} contactId
|
|
3079
|
+
* @param {string} listingId
|
|
3080
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2629
3081
|
* @param {*} [options] Override http request option.
|
|
2630
3082
|
* @throws {RequiredError}
|
|
2631
3083
|
* @memberof UnboundApi
|
|
2632
3084
|
*/
|
|
2633
|
-
|
|
2634
|
-
return UnboundApiFp(this.configuration).
|
|
3085
|
+
contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
3086
|
+
return UnboundApiFp(this.configuration).contactsRemoveListing(contactId, listingId, deleteContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
2635
3087
|
}
|
|
2636
3088
|
/**
|
|
2637
3089
|
*
|
|
@@ -2645,6 +3097,19 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2645
3097
|
contactsUpdate(contactId, contactUpdate, options) {
|
|
2646
3098
|
return UnboundApiFp(this.configuration).contactsUpdate(contactId, contactUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2647
3099
|
}
|
|
3100
|
+
/**
|
|
3101
|
+
* Updates an association between a contact and a listing.
|
|
3102
|
+
* @summary Update Contact Listing
|
|
3103
|
+
* @param {string} contactId
|
|
3104
|
+
* @param {string} listingId
|
|
3105
|
+
* @param {UpdateContactListing} updateContactListing
|
|
3106
|
+
* @param {*} [options] Override http request option.
|
|
3107
|
+
* @throws {RequiredError}
|
|
3108
|
+
* @memberof UnboundApi
|
|
3109
|
+
*/
|
|
3110
|
+
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
3111
|
+
return UnboundApiFp(this.configuration).contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
3112
|
+
}
|
|
2648
3113
|
/**
|
|
2649
3114
|
*
|
|
2650
3115
|
* @summary Emails Create
|
|
@@ -2805,7 +3270,7 @@ var Configuration = class {
|
|
|
2805
3270
|
this.baseOptions = {
|
|
2806
3271
|
...param.baseOptions,
|
|
2807
3272
|
headers: {
|
|
2808
|
-
..._optionalChain([param, 'access',
|
|
3273
|
+
..._optionalChain([param, 'access', _182 => _182.baseOptions, 'optionalAccess', _183 => _183.headers])
|
|
2809
3274
|
}
|
|
2810
3275
|
};
|
|
2811
3276
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -2865,5 +3330,7 @@ var Configuration = class {
|
|
|
2865
3330
|
|
|
2866
3331
|
|
|
2867
3332
|
|
|
2868
|
-
|
|
3333
|
+
|
|
3334
|
+
|
|
3335
|
+
exports.AddressesApi = AddressesApi; exports.AddressesApiAxiosParamCreator = AddressesApiAxiosParamCreator; exports.AddressesApiFactory = AddressesApiFactory; exports.AddressesApiFp = AddressesApiFp; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactSortBy = ContactSortBy; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.EmailsApi = EmailsApi; exports.EmailsApiAxiosParamCreator = EmailsApiAxiosParamCreator; exports.EmailsApiFactory = EmailsApiFactory; exports.EmailsApiFp = EmailsApiFp; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.PaginationDirection = PaginationDirection; exports.PhonesApi = PhonesApi; exports.PhonesApiAxiosParamCreator = PhonesApiAxiosParamCreator; exports.PhonesApiFactory = PhonesApiFactory; exports.PhonesApiFp = PhonesApiFp; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
2869
3336
|
//# sourceMappingURL=index.js.map
|