@ember-home/unbound-ts-client 0.0.90 → 0.0.91

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.mjs CHANGED
@@ -257,7 +257,7 @@ var AccountsApiAxiosParamCreator = function(configuration) {
257
257
  * @throws {RequiredError}
258
258
  */
259
259
  accountsList: async (options = {}) => {
260
- const localVarPath = `/accounts`;
260
+ const localVarPath = `/v1/accounts`;
261
261
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
262
262
  let baseOptions;
263
263
  if (configuration) {
@@ -327,8 +327,8 @@ var AuthApiAxiosParamCreator = function(configuration) {
327
327
  * @param {*} [options] Override http request option.
328
328
  * @throws {RequiredError}
329
329
  */
330
- getMeMeGet: async (options = {}) => {
331
- const localVarPath = `/me`;
330
+ getMev1MeGet: async (options = {}) => {
331
+ const localVarPath = `/v1/me`;
332
332
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
333
333
  let baseOptions;
334
334
  if (configuration) {
@@ -356,10 +356,10 @@ var AuthApiFp = function(configuration) {
356
356
  * @param {*} [options] Override http request option.
357
357
  * @throws {RequiredError}
358
358
  */
359
- async getMeMeGet(options) {
360
- const localVarAxiosArgs = await localVarAxiosParamCreator.getMeMeGet(options);
359
+ async getMev1MeGet(options) {
360
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMev1MeGet(options);
361
361
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
362
- const localVarOperationServerBasePath = operationServerMap["AuthApi.getMeMeGet"]?.[localVarOperationServerIndex]?.url;
362
+ const localVarOperationServerBasePath = operationServerMap["AuthApi.getMev1MeGet"]?.[localVarOperationServerIndex]?.url;
363
363
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
364
364
  }
365
365
  };
@@ -373,8 +373,8 @@ var AuthApiFactory = function(configuration, basePath, axios) {
373
373
  * @param {*} [options] Override http request option.
374
374
  * @throws {RequiredError}
375
375
  */
376
- getMeMeGet(options) {
377
- return localVarFp.getMeMeGet(options).then((request) => request(axios, basePath));
376
+ getMev1MeGet(options) {
377
+ return localVarFp.getMev1MeGet(options).then((request) => request(axios, basePath));
378
378
  }
379
379
  };
380
380
  };
@@ -386,8 +386,8 @@ var AuthApi = class extends BaseAPI {
386
386
  * @throws {RequiredError}
387
387
  * @memberof AuthApi
388
388
  */
389
- getMeMeGet(options) {
390
- return AuthApiFp(this.configuration).getMeMeGet(options).then((request) => request(this.axios, this.basePath));
389
+ getMev1MeGet(options) {
390
+ return AuthApiFp(this.configuration).getMev1MeGet(options).then((request) => request(this.axios, this.basePath));
391
391
  }
392
392
  };
393
393
  var ContactsApiAxiosParamCreator = function(configuration) {
@@ -403,7 +403,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
403
403
  addressesCreate: async (contactId, aPIAddressCreate, options = {}) => {
404
404
  assertParamExists("addressesCreate", "contactId", contactId);
405
405
  assertParamExists("addressesCreate", "aPIAddressCreate", aPIAddressCreate);
406
- const localVarPath = `/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
406
+ const localVarPath = `/v1/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
407
407
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
408
408
  let baseOptions;
409
409
  if (configuration) {
@@ -431,7 +431,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
431
431
  */
432
432
  addressesDelete: async (addressId, options = {}) => {
433
433
  assertParamExists("addressesDelete", "addressId", addressId);
434
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
434
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
435
435
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
436
436
  let baseOptions;
437
437
  if (configuration) {
@@ -457,7 +457,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
457
457
  */
458
458
  addressesGet: async (addressId, options = {}) => {
459
459
  assertParamExists("addressesGet", "addressId", addressId);
460
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
460
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
461
461
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
462
462
  let baseOptions;
463
463
  if (configuration) {
@@ -485,7 +485,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
485
485
  addressesUpdate: async (addressId, aPIAddressUpdate, options = {}) => {
486
486
  assertParamExists("addressesUpdate", "addressId", addressId);
487
487
  assertParamExists("addressesUpdate", "aPIAddressUpdate", aPIAddressUpdate);
488
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
488
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
489
489
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
490
490
  let baseOptions;
491
491
  if (configuration) {
@@ -517,7 +517,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
517
517
  assertParamExists("contactsAddListing", "contactId", contactId);
518
518
  assertParamExists("contactsAddListing", "listingId", listingId);
519
519
  assertParamExists("contactsAddListing", "createContactListing", createContactListing);
520
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
520
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
521
521
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
522
522
  let baseOptions;
523
523
  if (configuration) {
@@ -545,7 +545,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
545
545
  */
546
546
  contactsCreate: async (contactcreate, options = {}) => {
547
547
  assertParamExists("contactsCreate", "contactcreate", contactcreate);
548
- const localVarPath = `/contacts`;
548
+ const localVarPath = `/v1/contacts`;
549
549
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
550
550
  let baseOptions;
551
551
  if (configuration) {
@@ -573,7 +573,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
573
573
  */
574
574
  contactsDelete: async (contactId, options = {}) => {
575
575
  assertParamExists("contactsDelete", "contactId", contactId);
576
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
576
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
577
577
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
578
578
  let baseOptions;
579
579
  if (configuration) {
@@ -599,7 +599,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
599
599
  */
600
600
  contactsGet: async (contactId, options = {}) => {
601
601
  assertParamExists("contactsGet", "contactId", contactId);
602
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
602
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
603
603
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
604
604
  let baseOptions;
605
605
  if (configuration) {
@@ -629,7 +629,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
629
629
  * @throws {RequiredError}
630
630
  */
631
631
  contactsList: async (searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
632
- const localVarPath = `/contacts`;
632
+ const localVarPath = `/v1/contacts`;
633
633
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
634
634
  let baseOptions;
635
635
  if (configuration) {
@@ -677,7 +677,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
677
677
  assertParamExists("contactsRemoveListing", "contactId", contactId);
678
678
  assertParamExists("contactsRemoveListing", "listingId", listingId);
679
679
  assertParamExists("contactsRemoveListing", "deleteContactListing", deleteContactListing);
680
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
680
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
681
681
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
682
682
  let baseOptions;
683
683
  if (configuration) {
@@ -707,7 +707,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
707
707
  contactsUpdate: async (contactId, aPIContactUpdate, options = {}) => {
708
708
  assertParamExists("contactsUpdate", "contactId", contactId);
709
709
  assertParamExists("contactsUpdate", "aPIContactUpdate", aPIContactUpdate);
710
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
710
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
711
711
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
712
712
  let baseOptions;
713
713
  if (configuration) {
@@ -739,7 +739,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
739
739
  assertParamExists("contactsUpdateListing", "contactId", contactId);
740
740
  assertParamExists("contactsUpdateListing", "listingId", listingId);
741
741
  assertParamExists("contactsUpdateListing", "updateContactListing", updateContactListing);
742
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
742
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
743
743
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
744
744
  let baseOptions;
745
745
  if (configuration) {
@@ -769,7 +769,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
769
769
  emailsCreate: async (contactId, aPIEmailCreate, options = {}) => {
770
770
  assertParamExists("emailsCreate", "contactId", contactId);
771
771
  assertParamExists("emailsCreate", "aPIEmailCreate", aPIEmailCreate);
772
- const localVarPath = `/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
772
+ const localVarPath = `/v1/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
773
773
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
774
774
  let baseOptions;
775
775
  if (configuration) {
@@ -797,7 +797,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
797
797
  */
798
798
  emailsDelete: async (emailId, options = {}) => {
799
799
  assertParamExists("emailsDelete", "emailId", emailId);
800
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
800
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
801
801
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
802
802
  let baseOptions;
803
803
  if (configuration) {
@@ -823,7 +823,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
823
823
  */
824
824
  emailsGet: async (emailId, options = {}) => {
825
825
  assertParamExists("emailsGet", "emailId", emailId);
826
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
826
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
827
827
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
828
828
  let baseOptions;
829
829
  if (configuration) {
@@ -851,7 +851,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
851
851
  emailsUpdate: async (emailId, aPIEmailUpdate, options = {}) => {
852
852
  assertParamExists("emailsUpdate", "emailId", emailId);
853
853
  assertParamExists("emailsUpdate", "aPIEmailUpdate", aPIEmailUpdate);
854
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
854
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
855
855
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
856
856
  let baseOptions;
857
857
  if (configuration) {
@@ -881,7 +881,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
881
881
  phonesCreate: async (contactId, aPIPhoneCreate, options = {}) => {
882
882
  assertParamExists("phonesCreate", "contactId", contactId);
883
883
  assertParamExists("phonesCreate", "aPIPhoneCreate", aPIPhoneCreate);
884
- const localVarPath = `/contacts/{contactId}/phones`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
884
+ const localVarPath = `/v1/contacts/{contactId}/phones`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
885
885
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
886
886
  let baseOptions;
887
887
  if (configuration) {
@@ -909,7 +909,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
909
909
  */
910
910
  phonesDelete: async (phoneId, options = {}) => {
911
911
  assertParamExists("phonesDelete", "phoneId", phoneId);
912
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
912
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
913
913
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
914
914
  let baseOptions;
915
915
  if (configuration) {
@@ -935,7 +935,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
935
935
  */
936
936
  phonesGet: async (phoneId, options = {}) => {
937
937
  assertParamExists("phonesGet", "phoneId", phoneId);
938
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
938
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
939
939
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
940
940
  let baseOptions;
941
941
  if (configuration) {
@@ -963,7 +963,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
963
963
  phonesUpdate: async (phoneId, aPIPhoneUpdate, options = {}) => {
964
964
  assertParamExists("phonesUpdate", "phoneId", phoneId);
965
965
  assertParamExists("phonesUpdate", "aPIPhoneUpdate", aPIPhoneUpdate);
966
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
966
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
967
967
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
968
968
  let baseOptions;
969
969
  if (configuration) {
@@ -1741,7 +1741,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1741
1741
  */
1742
1742
  conversationsGet: async (conversationId, options = {}) => {
1743
1743
  assertParamExists("conversationsGet", "conversationId", conversationId);
1744
- const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1744
+ const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1745
1745
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1746
1746
  let baseOptions;
1747
1747
  if (configuration) {
@@ -1773,7 +1773,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1773
1773
  * @throws {RequiredError}
1774
1774
  */
1775
1775
  conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options = {}) => {
1776
- const localVarPath = `/conversations`;
1776
+ const localVarPath = `/v1/conversations`;
1777
1777
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1778
1778
  let baseOptions;
1779
1779
  if (configuration) {
@@ -1825,7 +1825,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1825
1825
  conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
1826
1826
  assertParamExists("conversationsUpdate", "conversationId", conversationId);
1827
1827
  assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
1828
- const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1828
+ const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1829
1829
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1830
1830
  let baseOptions;
1831
1831
  if (configuration) {
@@ -1855,7 +1855,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1855
1855
  messagesCreate: async (conversationId, messagecreate, options = {}) => {
1856
1856
  assertParamExists("messagesCreate", "conversationId", conversationId);
1857
1857
  assertParamExists("messagesCreate", "messagecreate", messagecreate);
1858
- const localVarPath = `/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1858
+ const localVarPath = `/v1/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
1859
1859
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1860
1860
  let baseOptions;
1861
1861
  if (configuration) {
@@ -1883,7 +1883,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1883
1883
  */
1884
1884
  messagesGet: async (messageId, options = {}) => {
1885
1885
  assertParamExists("messagesGet", "messageId", messageId);
1886
- const localVarPath = `/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
1886
+ const localVarPath = `/v1/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
1887
1887
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1888
1888
  let baseOptions;
1889
1889
  if (configuration) {
@@ -1918,7 +1918,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
1918
1918
  * @throws {RequiredError}
1919
1919
  */
1920
1920
  messagesList: async (conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
1921
- const localVarPath = `/messages`;
1921
+ const localVarPath = `/v1/messages`;
1922
1922
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1923
1923
  let baseOptions;
1924
1924
  if (configuration) {
@@ -2254,7 +2254,7 @@ var HostawayApiAxiosParamCreator = function(configuration) {
2254
2254
  */
2255
2255
  webhook: async (body, options = {}) => {
2256
2256
  assertParamExists("webhook", "body", body);
2257
- const localVarPath = `/hostaway-unified-webhooks`;
2257
+ const localVarPath = `/v1/hostaway-unified-webhooks`;
2258
2258
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2259
2259
  let baseOptions;
2260
2260
  if (configuration) {
@@ -2331,7 +2331,7 @@ var InboxesApiAxiosParamCreator = function(configuration) {
2331
2331
  * @throws {RequiredError}
2332
2332
  */
2333
2333
  inboxesList: async (options = {}) => {
2334
- const localVarPath = `/inboxes`;
2334
+ const localVarPath = `/v1/inboxes`;
2335
2335
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2336
2336
  let baseOptions;
2337
2337
  if (configuration) {
@@ -2403,7 +2403,7 @@ var InquiriesApiAxiosParamCreator = function(configuration) {
2403
2403
  * @throws {RequiredError}
2404
2404
  */
2405
2405
  inquiriesList: async (contactId, options = {}) => {
2406
- const localVarPath = `/inquiries`;
2406
+ const localVarPath = `/v1/inquiries`;
2407
2407
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2408
2408
  let baseOptions;
2409
2409
  if (configuration) {
@@ -2482,7 +2482,7 @@ var ListingsApiAxiosParamCreator = function(configuration) {
2482
2482
  */
2483
2483
  listingsGet: async (listingId, options = {}) => {
2484
2484
  assertParamExists("listingsGet", "listingId", listingId);
2485
- const localVarPath = `/listings/{listingId}`.replace(`{${"listingId"}}`, encodeURIComponent(String(listingId)));
2485
+ const localVarPath = `/v1/listings/{listingId}`.replace(`{${"listingId"}}`, encodeURIComponent(String(listingId)));
2486
2486
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2487
2487
  let baseOptions;
2488
2488
  if (configuration) {
@@ -2513,7 +2513,7 @@ var ListingsApiAxiosParamCreator = function(configuration) {
2513
2513
  * @throws {RequiredError}
2514
2514
  */
2515
2515
  listingsList: async (searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
2516
- const localVarPath = `/listings`;
2516
+ const localVarPath = `/v1/listings`;
2517
2517
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2518
2518
  let baseOptions;
2519
2519
  if (configuration) {
@@ -2660,7 +2660,7 @@ var ManagedPhoneNumbersApiAxiosParamCreator = function(configuration) {
2660
2660
  * @throws {RequiredError}
2661
2661
  */
2662
2662
  managedPhoneNumbersList: async (options = {}) => {
2663
- const localVarPath = `/managedPhoneNumbers`;
2663
+ const localVarPath = `/v1/managedPhoneNumbers`;
2664
2664
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2665
2665
  let baseOptions;
2666
2666
  if (configuration) {
@@ -2733,7 +2733,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
2733
2733
  */
2734
2734
  providersCreate: async (aPIProviderCreate, options = {}) => {
2735
2735
  assertParamExists("providersCreate", "aPIProviderCreate", aPIProviderCreate);
2736
- const localVarPath = `/providers`;
2736
+ const localVarPath = `/v1/providers`;
2737
2737
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2738
2738
  let baseOptions;
2739
2739
  if (configuration) {
@@ -2761,7 +2761,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
2761
2761
  */
2762
2762
  providersGet: async (providerId, options = {}) => {
2763
2763
  assertParamExists("providersGet", "providerId", providerId);
2764
- const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
2764
+ const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
2765
2765
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2766
2766
  let baseOptions;
2767
2767
  if (configuration) {
@@ -2785,7 +2785,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
2785
2785
  * @throws {RequiredError}
2786
2786
  */
2787
2787
  providersList: async (options = {}) => {
2788
- const localVarPath = `/providers`;
2788
+ const localVarPath = `/v1/providers`;
2789
2789
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2790
2790
  let baseOptions;
2791
2791
  if (configuration) {
@@ -2813,7 +2813,7 @@ var ProvidersApiAxiosParamCreator = function(configuration) {
2813
2813
  providersUpdate: async (providerId, aPIProviderUpdate, options = {}) => {
2814
2814
  assertParamExists("providersUpdate", "providerId", providerId);
2815
2815
  assertParamExists("providersUpdate", "aPIProviderUpdate", aPIProviderUpdate);
2816
- const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
2816
+ const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
2817
2817
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2818
2818
  let baseOptions;
2819
2819
  if (configuration) {
@@ -2993,7 +2993,7 @@ var ReservationsApiAxiosParamCreator = function(configuration) {
2993
2993
  */
2994
2994
  reservationsGet: async (reservationId, options = {}) => {
2995
2995
  assertParamExists("reservationsGet", "reservationId", reservationId);
2996
- const localVarPath = `/reservations/{reservationId}`.replace(`{${"reservationId"}}`, encodeURIComponent(String(reservationId)));
2996
+ const localVarPath = `/v1/reservations/{reservationId}`.replace(`{${"reservationId"}}`, encodeURIComponent(String(reservationId)));
2997
2997
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2998
2998
  let baseOptions;
2999
2999
  if (configuration) {
@@ -3024,7 +3024,7 @@ var ReservationsApiAxiosParamCreator = function(configuration) {
3024
3024
  * @throws {RequiredError}
3025
3025
  */
3026
3026
  reservationsList: async (searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
3027
- const localVarPath = `/reservations`;
3027
+ const localVarPath = `/v1/reservations`;
3028
3028
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3029
3029
  let baseOptions;
3030
3030
  if (configuration) {
@@ -3171,7 +3171,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3171
3171
  * @throws {RequiredError}
3172
3172
  */
3173
3173
  accountsList: async (options = {}) => {
3174
- const localVarPath = `/accounts`;
3174
+ const localVarPath = `/v1/accounts`;
3175
3175
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3176
3176
  let baseOptions;
3177
3177
  if (configuration) {
@@ -3199,7 +3199,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3199
3199
  addressesCreate: async (contactId, aPIAddressCreate, options = {}) => {
3200
3200
  assertParamExists("addressesCreate", "contactId", contactId);
3201
3201
  assertParamExists("addressesCreate", "aPIAddressCreate", aPIAddressCreate);
3202
- const localVarPath = `/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3202
+ const localVarPath = `/v1/contacts/{contactId}/addresses`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3203
3203
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3204
3204
  let baseOptions;
3205
3205
  if (configuration) {
@@ -3227,7 +3227,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3227
3227
  */
3228
3228
  addressesDelete: async (addressId, options = {}) => {
3229
3229
  assertParamExists("addressesDelete", "addressId", addressId);
3230
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3230
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3231
3231
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3232
3232
  let baseOptions;
3233
3233
  if (configuration) {
@@ -3253,7 +3253,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3253
3253
  */
3254
3254
  addressesGet: async (addressId, options = {}) => {
3255
3255
  assertParamExists("addressesGet", "addressId", addressId);
3256
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3256
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3257
3257
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3258
3258
  let baseOptions;
3259
3259
  if (configuration) {
@@ -3281,7 +3281,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3281
3281
  addressesUpdate: async (addressId, aPIAddressUpdate, options = {}) => {
3282
3282
  assertParamExists("addressesUpdate", "addressId", addressId);
3283
3283
  assertParamExists("addressesUpdate", "aPIAddressUpdate", aPIAddressUpdate);
3284
- const localVarPath = `/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3284
+ const localVarPath = `/v1/addresses/{addressId}`.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
3285
3285
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3286
3286
  let baseOptions;
3287
3287
  if (configuration) {
@@ -3313,7 +3313,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3313
3313
  assertParamExists("contactsAddListing", "contactId", contactId);
3314
3314
  assertParamExists("contactsAddListing", "listingId", listingId);
3315
3315
  assertParamExists("contactsAddListing", "createContactListing", createContactListing);
3316
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3316
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3317
3317
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3318
3318
  let baseOptions;
3319
3319
  if (configuration) {
@@ -3341,7 +3341,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3341
3341
  */
3342
3342
  contactsCreate: async (contactcreate, options = {}) => {
3343
3343
  assertParamExists("contactsCreate", "contactcreate", contactcreate);
3344
- const localVarPath = `/contacts`;
3344
+ const localVarPath = `/v1/contacts`;
3345
3345
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3346
3346
  let baseOptions;
3347
3347
  if (configuration) {
@@ -3369,7 +3369,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3369
3369
  */
3370
3370
  contactsDelete: async (contactId, options = {}) => {
3371
3371
  assertParamExists("contactsDelete", "contactId", contactId);
3372
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3372
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3373
3373
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3374
3374
  let baseOptions;
3375
3375
  if (configuration) {
@@ -3395,7 +3395,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3395
3395
  */
3396
3396
  contactsGet: async (contactId, options = {}) => {
3397
3397
  assertParamExists("contactsGet", "contactId", contactId);
3398
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3398
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3399
3399
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3400
3400
  let baseOptions;
3401
3401
  if (configuration) {
@@ -3425,7 +3425,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3425
3425
  * @throws {RequiredError}
3426
3426
  */
3427
3427
  contactsList: async (searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
3428
- const localVarPath = `/contacts`;
3428
+ const localVarPath = `/v1/contacts`;
3429
3429
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3430
3430
  let baseOptions;
3431
3431
  if (configuration) {
@@ -3473,7 +3473,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3473
3473
  assertParamExists("contactsRemoveListing", "contactId", contactId);
3474
3474
  assertParamExists("contactsRemoveListing", "listingId", listingId);
3475
3475
  assertParamExists("contactsRemoveListing", "deleteContactListing", deleteContactListing);
3476
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3476
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3477
3477
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3478
3478
  let baseOptions;
3479
3479
  if (configuration) {
@@ -3503,7 +3503,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3503
3503
  contactsUpdate: async (contactId, aPIContactUpdate, options = {}) => {
3504
3504
  assertParamExists("contactsUpdate", "contactId", contactId);
3505
3505
  assertParamExists("contactsUpdate", "aPIContactUpdate", aPIContactUpdate);
3506
- const localVarPath = `/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3506
+ const localVarPath = `/v1/contacts/{contactId}`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3507
3507
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3508
3508
  let baseOptions;
3509
3509
  if (configuration) {
@@ -3535,7 +3535,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3535
3535
  assertParamExists("contactsUpdateListing", "contactId", contactId);
3536
3536
  assertParamExists("contactsUpdateListing", "listingId", listingId);
3537
3537
  assertParamExists("contactsUpdateListing", "updateContactListing", updateContactListing);
3538
- const localVarPath = `/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3538
+ const localVarPath = `/v1/contacts/{contact_id}/listings/{listing_id}`.replace(`{${"contact_id"}}`, encodeURIComponent(String(contactId))).replace(`{${"listing_id"}}`, encodeURIComponent(String(listingId)));
3539
3539
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3540
3540
  let baseOptions;
3541
3541
  if (configuration) {
@@ -3563,7 +3563,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3563
3563
  */
3564
3564
  conversationsGet: async (conversationId, options = {}) => {
3565
3565
  assertParamExists("conversationsGet", "conversationId", conversationId);
3566
- const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3566
+ const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3567
3567
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3568
3568
  let baseOptions;
3569
3569
  if (configuration) {
@@ -3595,7 +3595,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3595
3595
  * @throws {RequiredError}
3596
3596
  */
3597
3597
  conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options = {}) => {
3598
- const localVarPath = `/conversations`;
3598
+ const localVarPath = `/v1/conversations`;
3599
3599
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3600
3600
  let baseOptions;
3601
3601
  if (configuration) {
@@ -3647,7 +3647,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3647
3647
  conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
3648
3648
  assertParamExists("conversationsUpdate", "conversationId", conversationId);
3649
3649
  assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
3650
- const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3650
+ const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3651
3651
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3652
3652
  let baseOptions;
3653
3653
  if (configuration) {
@@ -3677,7 +3677,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3677
3677
  emailsCreate: async (contactId, aPIEmailCreate, options = {}) => {
3678
3678
  assertParamExists("emailsCreate", "contactId", contactId);
3679
3679
  assertParamExists("emailsCreate", "aPIEmailCreate", aPIEmailCreate);
3680
- const localVarPath = `/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3680
+ const localVarPath = `/v1/contacts/{contactId}/emails`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
3681
3681
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3682
3682
  let baseOptions;
3683
3683
  if (configuration) {
@@ -3705,7 +3705,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3705
3705
  */
3706
3706
  emailsDelete: async (emailId, options = {}) => {
3707
3707
  assertParamExists("emailsDelete", "emailId", emailId);
3708
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3708
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3709
3709
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3710
3710
  let baseOptions;
3711
3711
  if (configuration) {
@@ -3731,7 +3731,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3731
3731
  */
3732
3732
  emailsGet: async (emailId, options = {}) => {
3733
3733
  assertParamExists("emailsGet", "emailId", emailId);
3734
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3734
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3735
3735
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3736
3736
  let baseOptions;
3737
3737
  if (configuration) {
@@ -3759,7 +3759,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3759
3759
  emailsUpdate: async (emailId, aPIEmailUpdate, options = {}) => {
3760
3760
  assertParamExists("emailsUpdate", "emailId", emailId);
3761
3761
  assertParamExists("emailsUpdate", "aPIEmailUpdate", aPIEmailUpdate);
3762
- const localVarPath = `/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3762
+ const localVarPath = `/v1/emails/{emailId}`.replace(`{${"emailId"}}`, encodeURIComponent(String(emailId)));
3763
3763
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3764
3764
  let baseOptions;
3765
3765
  if (configuration) {
@@ -3784,8 +3784,8 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3784
3784
  * @param {*} [options] Override http request option.
3785
3785
  * @throws {RequiredError}
3786
3786
  */
3787
- getMeMeGet: async (options = {}) => {
3788
- const localVarPath = `/me`;
3787
+ getMev1MeGet: async (options = {}) => {
3788
+ const localVarPath = `/v1/me`;
3789
3789
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3790
3790
  let baseOptions;
3791
3791
  if (configuration) {
@@ -3809,7 +3809,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3809
3809
  * @throws {RequiredError}
3810
3810
  */
3811
3811
  inboxesList: async (options = {}) => {
3812
- const localVarPath = `/inboxes`;
3812
+ const localVarPath = `/v1/inboxes`;
3813
3813
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3814
3814
  let baseOptions;
3815
3815
  if (configuration) {
@@ -3834,7 +3834,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3834
3834
  * @throws {RequiredError}
3835
3835
  */
3836
3836
  inquiriesList: async (contactId, options = {}) => {
3837
- const localVarPath = `/inquiries`;
3837
+ const localVarPath = `/v1/inquiries`;
3838
3838
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3839
3839
  let baseOptions;
3840
3840
  if (configuration) {
@@ -3863,7 +3863,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3863
3863
  */
3864
3864
  listingsGet: async (listingId, options = {}) => {
3865
3865
  assertParamExists("listingsGet", "listingId", listingId);
3866
- const localVarPath = `/listings/{listingId}`.replace(`{${"listingId"}}`, encodeURIComponent(String(listingId)));
3866
+ const localVarPath = `/v1/listings/{listingId}`.replace(`{${"listingId"}}`, encodeURIComponent(String(listingId)));
3867
3867
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3868
3868
  let baseOptions;
3869
3869
  if (configuration) {
@@ -3894,7 +3894,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3894
3894
  * @throws {RequiredError}
3895
3895
  */
3896
3896
  listingsList: async (searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
3897
- const localVarPath = `/listings`;
3897
+ const localVarPath = `/v1/listings`;
3898
3898
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3899
3899
  let baseOptions;
3900
3900
  if (configuration) {
@@ -3939,7 +3939,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3939
3939
  * @throws {RequiredError}
3940
3940
  */
3941
3941
  managedPhoneNumbersList: async (options = {}) => {
3942
- const localVarPath = `/managedPhoneNumbers`;
3942
+ const localVarPath = `/v1/managedPhoneNumbers`;
3943
3943
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3944
3944
  let baseOptions;
3945
3945
  if (configuration) {
@@ -3967,7 +3967,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3967
3967
  messagesCreate: async (conversationId, messagecreate, options = {}) => {
3968
3968
  assertParamExists("messagesCreate", "conversationId", conversationId);
3969
3969
  assertParamExists("messagesCreate", "messagecreate", messagecreate);
3970
- const localVarPath = `/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3970
+ const localVarPath = `/v1/conversations/{conversationId}/messages`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
3971
3971
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3972
3972
  let baseOptions;
3973
3973
  if (configuration) {
@@ -3995,7 +3995,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
3995
3995
  */
3996
3996
  messagesGet: async (messageId, options = {}) => {
3997
3997
  assertParamExists("messagesGet", "messageId", messageId);
3998
- const localVarPath = `/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
3998
+ const localVarPath = `/v1/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
3999
3999
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4000
4000
  let baseOptions;
4001
4001
  if (configuration) {
@@ -4030,7 +4030,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4030
4030
  * @throws {RequiredError}
4031
4031
  */
4032
4032
  messagesList: async (conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
4033
- const localVarPath = `/messages`;
4033
+ const localVarPath = `/v1/messages`;
4034
4034
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4035
4035
  let baseOptions;
4036
4036
  if (configuration) {
@@ -4091,7 +4091,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4091
4091
  phonesCreate: async (contactId, aPIPhoneCreate, options = {}) => {
4092
4092
  assertParamExists("phonesCreate", "contactId", contactId);
4093
4093
  assertParamExists("phonesCreate", "aPIPhoneCreate", aPIPhoneCreate);
4094
- const localVarPath = `/contacts/{contactId}/phones`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
4094
+ const localVarPath = `/v1/contacts/{contactId}/phones`.replace(`{${"contactId"}}`, encodeURIComponent(String(contactId)));
4095
4095
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4096
4096
  let baseOptions;
4097
4097
  if (configuration) {
@@ -4119,7 +4119,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4119
4119
  */
4120
4120
  phonesDelete: async (phoneId, options = {}) => {
4121
4121
  assertParamExists("phonesDelete", "phoneId", phoneId);
4122
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4122
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4123
4123
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4124
4124
  let baseOptions;
4125
4125
  if (configuration) {
@@ -4145,7 +4145,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4145
4145
  */
4146
4146
  phonesGet: async (phoneId, options = {}) => {
4147
4147
  assertParamExists("phonesGet", "phoneId", phoneId);
4148
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4148
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4149
4149
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4150
4150
  let baseOptions;
4151
4151
  if (configuration) {
@@ -4173,7 +4173,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4173
4173
  phonesUpdate: async (phoneId, aPIPhoneUpdate, options = {}) => {
4174
4174
  assertParamExists("phonesUpdate", "phoneId", phoneId);
4175
4175
  assertParamExists("phonesUpdate", "aPIPhoneUpdate", aPIPhoneUpdate);
4176
- const localVarPath = `/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4176
+ const localVarPath = `/v1/phones/{phoneId}`.replace(`{${"phoneId"}}`, encodeURIComponent(String(phoneId)));
4177
4177
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4178
4178
  let baseOptions;
4179
4179
  if (configuration) {
@@ -4201,7 +4201,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4201
4201
  */
4202
4202
  providersCreate: async (aPIProviderCreate, options = {}) => {
4203
4203
  assertParamExists("providersCreate", "aPIProviderCreate", aPIProviderCreate);
4204
- const localVarPath = `/providers`;
4204
+ const localVarPath = `/v1/providers`;
4205
4205
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4206
4206
  let baseOptions;
4207
4207
  if (configuration) {
@@ -4229,7 +4229,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4229
4229
  */
4230
4230
  providersGet: async (providerId, options = {}) => {
4231
4231
  assertParamExists("providersGet", "providerId", providerId);
4232
- const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
4232
+ const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
4233
4233
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4234
4234
  let baseOptions;
4235
4235
  if (configuration) {
@@ -4253,7 +4253,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4253
4253
  * @throws {RequiredError}
4254
4254
  */
4255
4255
  providersList: async (options = {}) => {
4256
- const localVarPath = `/providers`;
4256
+ const localVarPath = `/v1/providers`;
4257
4257
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4258
4258
  let baseOptions;
4259
4259
  if (configuration) {
@@ -4281,7 +4281,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4281
4281
  providersUpdate: async (providerId, aPIProviderUpdate, options = {}) => {
4282
4282
  assertParamExists("providersUpdate", "providerId", providerId);
4283
4283
  assertParamExists("providersUpdate", "aPIProviderUpdate", aPIProviderUpdate);
4284
- const localVarPath = `/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
4284
+ const localVarPath = `/v1/providers/{providerId}`.replace(`{${"providerId"}}`, encodeURIComponent(String(providerId)));
4285
4285
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4286
4286
  let baseOptions;
4287
4287
  if (configuration) {
@@ -4309,7 +4309,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4309
4309
  */
4310
4310
  reservationsGet: async (reservationId, options = {}) => {
4311
4311
  assertParamExists("reservationsGet", "reservationId", reservationId);
4312
- const localVarPath = `/reservations/{reservationId}`.replace(`{${"reservationId"}}`, encodeURIComponent(String(reservationId)));
4312
+ const localVarPath = `/v1/reservations/{reservationId}`.replace(`{${"reservationId"}}`, encodeURIComponent(String(reservationId)));
4313
4313
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4314
4314
  let baseOptions;
4315
4315
  if (configuration) {
@@ -4340,7 +4340,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4340
4340
  * @throws {RequiredError}
4341
4341
  */
4342
4342
  reservationsList: async (searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
4343
- const localVarPath = `/reservations`;
4343
+ const localVarPath = `/v1/reservations`;
4344
4344
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4345
4345
  let baseOptions;
4346
4346
  if (configuration) {
@@ -4387,7 +4387,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4387
4387
  */
4388
4388
  userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
4389
4389
  assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
4390
- const localVarPath = `/userDevices`;
4390
+ const localVarPath = `/v1/userDevices`;
4391
4391
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4392
4392
  let baseOptions;
4393
4393
  if (configuration) {
@@ -4415,7 +4415,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4415
4415
  */
4416
4416
  userDevicesDelete: async (userDeviceId, options = {}) => {
4417
4417
  assertParamExists("userDevicesDelete", "userDeviceId", userDeviceId);
4418
- const localVarPath = `/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
4418
+ const localVarPath = `/v1/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
4419
4419
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4420
4420
  let baseOptions;
4421
4421
  if (configuration) {
@@ -4441,7 +4441,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
4441
4441
  */
4442
4442
  webhook: async (body, options = {}) => {
4443
4443
  assertParamExists("webhook", "body", body);
4444
- const localVarPath = `/hostaway-unified-webhooks`;
4444
+ const localVarPath = `/v1/hostaway-unified-webhooks`;
4445
4445
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4446
4446
  let baseOptions;
4447
4447
  if (configuration) {
@@ -4755,10 +4755,10 @@ var UnboundApiFp = function(configuration) {
4755
4755
  * @param {*} [options] Override http request option.
4756
4756
  * @throws {RequiredError}
4757
4757
  */
4758
- async getMeMeGet(options) {
4759
- const localVarAxiosArgs = await localVarAxiosParamCreator.getMeMeGet(options);
4758
+ async getMev1MeGet(options) {
4759
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMev1MeGet(options);
4760
4760
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4761
- const localVarOperationServerBasePath = operationServerMap["UnboundApi.getMeMeGet"]?.[localVarOperationServerIndex]?.url;
4761
+ const localVarOperationServerBasePath = operationServerMap["UnboundApi.getMev1MeGet"]?.[localVarOperationServerIndex]?.url;
4762
4762
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4763
4763
  },
4764
4764
  /**
@@ -5291,8 +5291,8 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
5291
5291
  * @param {*} [options] Override http request option.
5292
5292
  * @throws {RequiredError}
5293
5293
  */
5294
- getMeMeGet(options) {
5295
- return localVarFp.getMeMeGet(options).then((request) => request(axios, basePath));
5294
+ getMev1MeGet(options) {
5295
+ return localVarFp.getMev1MeGet(options).then((request) => request(axios, basePath));
5296
5296
  },
5297
5297
  /**
5298
5298
  * Inboxes List
@@ -5780,8 +5780,8 @@ var UnboundApi = class extends BaseAPI {
5780
5780
  * @throws {RequiredError}
5781
5781
  * @memberof UnboundApi
5782
5782
  */
5783
- getMeMeGet(options) {
5784
- return UnboundApiFp(this.configuration).getMeMeGet(options).then((request) => request(this.axios, this.basePath));
5783
+ getMev1MeGet(options) {
5784
+ return UnboundApiFp(this.configuration).getMev1MeGet(options).then((request) => request(this.axios, this.basePath));
5785
5785
  }
5786
5786
  /**
5787
5787
  * Inboxes List
@@ -6049,7 +6049,7 @@ var UserDevicesApiAxiosParamCreator = function(configuration) {
6049
6049
  */
6050
6050
  userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
6051
6051
  assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
6052
- const localVarPath = `/userDevices`;
6052
+ const localVarPath = `/v1/userDevices`;
6053
6053
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6054
6054
  let baseOptions;
6055
6055
  if (configuration) {
@@ -6077,7 +6077,7 @@ var UserDevicesApiAxiosParamCreator = function(configuration) {
6077
6077
  */
6078
6078
  userDevicesDelete: async (userDeviceId, options = {}) => {
6079
6079
  assertParamExists("userDevicesDelete", "userDeviceId", userDeviceId);
6080
- const localVarPath = `/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
6080
+ const localVarPath = `/v1/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
6081
6081
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6082
6082
  let baseOptions;
6083
6083
  if (configuration) {