@ember-home/unbound-ts-client 0.0.98 → 0.0.100

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 CHANGED
@@ -1034,10 +1034,10 @@ interface APIListing {
1034
1034
  'accommodates'?: number | null;
1035
1035
  /**
1036
1036
  *
1037
- * @type {object}
1037
+ * @type {SrcResourceModelsHelperModelsCustomBaseModelAddressApi2}
1038
1038
  * @memberof APIListing
1039
1039
  */
1040
- 'address'?: object;
1040
+ 'address'?: SrcResourceModelsHelperModelsCustomBaseModelAddressApi2 | null;
1041
1041
  /**
1042
1042
  *
1043
1043
  * @type {Array<string>}
@@ -1743,6 +1743,99 @@ interface APIReservation {
1743
1743
  */
1744
1744
  'providerInfo': ProviderInfoApi;
1745
1745
  }
1746
+ /**
1747
+ *
1748
+ * @export
1749
+ * @interface APITag
1750
+ */
1751
+ interface APITag {
1752
+ /**
1753
+ *
1754
+ * @type {string}
1755
+ * @memberof APITag
1756
+ */
1757
+ 'tagId': string;
1758
+ /**
1759
+ *
1760
+ * @type {string}
1761
+ * @memberof APITag
1762
+ */
1763
+ 'name': string;
1764
+ /**
1765
+ *
1766
+ * @type {string}
1767
+ * @memberof APITag
1768
+ */
1769
+ 'color'?: string | null;
1770
+ /**
1771
+ *
1772
+ * @type {string}
1773
+ * @memberof APITag
1774
+ */
1775
+ 'description'?: string | null;
1776
+ /**
1777
+ *
1778
+ * @type {string}
1779
+ * @memberof APITag
1780
+ */
1781
+ 'createdAt'?: string;
1782
+ /**
1783
+ *
1784
+ * @type {string}
1785
+ * @memberof APITag
1786
+ */
1787
+ 'updatedAt'?: string;
1788
+ }
1789
+ /**
1790
+ *
1791
+ * @export
1792
+ * @interface APITagCreate
1793
+ */
1794
+ interface APITagCreate {
1795
+ /**
1796
+ *
1797
+ * @type {string}
1798
+ * @memberof APITagCreate
1799
+ */
1800
+ 'name': string;
1801
+ /**
1802
+ *
1803
+ * @type {string}
1804
+ * @memberof APITagCreate
1805
+ */
1806
+ 'color'?: string | null;
1807
+ /**
1808
+ *
1809
+ * @type {string}
1810
+ * @memberof APITagCreate
1811
+ */
1812
+ 'description'?: string | null;
1813
+ }
1814
+ /**
1815
+ *
1816
+ * @export
1817
+ * @interface APITagUpdate
1818
+ */
1819
+ interface APITagUpdate {
1820
+ /**
1821
+ *
1822
+ * @type {string}
1823
+ * @memberof APITagUpdate
1824
+ */
1825
+ 'name'?: string | null;
1826
+ /**
1827
+ *
1828
+ * @type {string}
1829
+ * @memberof APITagUpdate
1830
+ */
1831
+ 'color'?: string | null;
1832
+ /**
1833
+ *
1834
+ * @type {string}
1835
+ * @memberof APITagUpdate
1836
+ */
1837
+ 'description'?: string | null;
1838
+ }
1746
1839
  /**
1747
1840
  *
1748
1841
  * @export
@@ -2546,6 +2639,19 @@ interface ListResponseAPIProvider {
2546
2639
  */
2547
2640
  'data': Array<APIProvider>;
2548
2641
  }
2642
+ /**
2643
+ *
2644
+ * @export
2645
+ * @interface ListResponseAPITag
2646
+ */
2647
+ interface ListResponseAPITag {
2648
+ /**
2649
+ *
2650
+ * @type {Array<APITag>}
2651
+ * @memberof ListResponseAPITag
2652
+ */
2653
+ 'data': Array<APITag>;
2654
+ }
2549
2655
  /**
2550
2656
  *
2551
2657
  * @export
@@ -3509,6 +3615,61 @@ interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi1 {
3509
3615
  */
3510
3616
  'addressId': string;
3511
3617
  }
3618
+ /**
3619
+ *
3620
+ * @export
3621
+ * @interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3622
+ */
3623
+ interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi2 {
3624
+ /**
3625
+ *
3626
+ * @type {string}
3627
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3628
+ */
3629
+ 'street1'?: string | null;
3630
+ /**
3631
+ *
3632
+ * @type {string}
3633
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3634
+ */
3635
+ 'street2'?: string | null;
3636
+ /**
3637
+ *
3638
+ * @type {string}
3639
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3640
+ */
3641
+ 'locality'?: string | null;
3642
+ /**
3643
+ *
3644
+ * @type {string}
3645
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3646
+ */
3647
+ 'region'?: string | null;
3648
+ /**
3649
+ *
3650
+ * @type {string}
3651
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3652
+ */
3653
+ 'country'?: string | null;
3654
+ /**
3655
+ *
3656
+ * @type {string}
3657
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3658
+ */
3659
+ 'postalCode'?: string | null;
3660
+ /**
3661
+ *
3662
+ * @type {number}
3663
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3664
+ */
3665
+ 'latitude'?: number | null;
3666
+ /**
3667
+ *
3668
+ * @type {number}
3669
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi2
3670
+ */
3671
+ 'longitude'?: number | null;
3672
+ }
3512
3673
  /**
3513
3674
  *
3514
3675
  * @export
@@ -3802,6 +3963,49 @@ declare const SuggestionStatus: {
3802
3963
  readonly NoAvailableReply: "NO_AVAILABLE_REPLY";
3803
3964
  };
3804
3965
  type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
3966
+ /**
3967
+ *
3968
+ * @export
3969
+ * @interface Tag
3970
+ */
3971
+ interface Tag {
3972
+ /**
3973
+ *
3974
+ * @type {string}
3975
+ * @memberof Tag
3976
+ */
3977
+ 'tagId': string;
3978
+ /**
3979
+ *
3980
+ * @type {string}
3981
+ * @memberof Tag
3982
+ */
3983
+ 'name': string;
3984
+ /**
3985
+ *
3986
+ * @type {string}
3987
+ * @memberof Tag
3988
+ */
3989
+ 'color'?: string | null;
3990
+ /**
3991
+ *
3992
+ * @type {string}
3993
+ * @memberof Tag
3994
+ */
3995
+ 'description'?: string | null;
3996
+ /**
3997
+ *
3998
+ * @type {string}
3999
+ * @memberof Tag
4000
+ */
4001
+ 'createdAt'?: string;
4002
+ /**
4003
+ *
4004
+ * @type {string}
4005
+ * @memberof Tag
4006
+ */
4007
+ 'updatedAt'?: string;
4008
+ }
3805
4009
  /**
3806
4010
  *
3807
4011
  * @export
@@ -6509,161 +6713,703 @@ declare class ReservationsApi extends BaseAPI {
6509
6713
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
6510
6714
  }
6511
6715
  /**
6512
- * TelnyxApi - axios parameter creator
6716
+ * TagsApi - axios parameter creator
6513
6717
  * @export
6514
6718
  */
6515
- declare const TelnyxApiAxiosParamCreator: (configuration?: Configuration) => {
6719
+ declare const TagsApiAxiosParamCreator: (configuration?: Configuration) => {
6516
6720
  /**
6517
- *
6518
- * @summary Telnyx Webhook
6519
- * @param {{ [key: string]: any; }} requestBody
6721
+ * Associates a tag with an account. This operation is idempotent.
6722
+ * @summary Add Tag To Account
6723
+ * @param {string} accountId
6724
+ * @param {string} tagId
6520
6725
  * @param {*} [options] Override http request option.
6521
6726
  * @throws {RequiredError}
6522
6727
  */
6523
- telnyxWebhookTelnyxWebhooksPost: (requestBody: {
6524
- [key: string]: any;
6525
- }, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6526
- };
6527
- /**
6528
- * TelnyxApi - functional programming interface
6529
- * @export
6530
- */
6531
- declare const TelnyxApiFp: (configuration?: Configuration) => {
6728
+ accountsAddTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6532
6729
  /**
6533
- *
6534
- * @summary Telnyx Webhook
6535
- * @param {{ [key: string]: any; }} requestBody
6730
+ * List all tags associated with an account.
6731
+ * @summary List Account Tags
6732
+ * @param {string} accountId
6536
6733
  * @param {*} [options] Override http request option.
6537
6734
  * @throws {RequiredError}
6538
6735
  */
6539
- telnyxWebhookTelnyxWebhooksPost(requestBody: {
6540
- [key: string]: any;
6541
- }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6542
- };
6543
- /**
6544
- * TelnyxApi - factory interface
6545
- * @export
6546
- */
6547
- declare const TelnyxApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6736
+ accountsListTags: (accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6548
6737
  /**
6549
- *
6550
- * @summary Telnyx Webhook
6551
- * @param {{ [key: string]: any; }} requestBody
6738
+ * Removes a tag association from an account.
6739
+ * @summary Remove Tag From Account
6740
+ * @param {string} accountId
6741
+ * @param {string} tagId
6552
6742
  * @param {*} [options] Override http request option.
6553
6743
  * @throws {RequiredError}
6554
6744
  */
6555
- telnyxWebhookTelnyxWebhooksPost(requestBody: {
6556
- [key: string]: any;
6557
- }, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6558
- };
6559
- /**
6560
- * TelnyxApi - object-oriented interface
6561
- * @export
6562
- * @class TelnyxApi
6563
- * @extends {BaseAPI}
6564
- */
6565
- declare class TelnyxApi extends BaseAPI {
6745
+ accountsRemoveTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6566
6746
  /**
6567
- *
6568
- * @summary Telnyx Webhook
6569
- * @param {{ [key: string]: any; }} requestBody
6747
+ * Associates a tag with a listing. This operation is idempotent.
6748
+ * @summary Add Tag To Listing
6749
+ * @param {string} listingId
6750
+ * @param {string} tagId
6570
6751
  * @param {*} [options] Override http request option.
6571
6752
  * @throws {RequiredError}
6572
- * @memberof TelnyxApi
6573
6753
  */
6574
- telnyxWebhookTelnyxWebhooksPost(requestBody: {
6575
- [key: string]: any;
6576
- }, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6577
- }
6578
- /**
6579
- * UnboundApi - axios parameter creator
6580
- * @export
6581
- */
6582
- declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
6754
+ listingsAddTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6583
6755
  /**
6584
- * Accounts List
6585
- * @summary Accounts List
6756
+ * List all tags associated with a listing.
6757
+ * @summary List Listing Tags
6758
+ * @param {string} listingId
6586
6759
  * @param {*} [options] Override http request option.
6587
6760
  * @throws {RequiredError}
6588
6761
  */
6589
- accountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6762
+ listingsListTags: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6590
6763
  /**
6591
- * Addresses Create
6592
- * @summary Addresses Create
6593
- * @param {string} contactId
6594
- * @param {APIAddressCreate} aPIAddressCreate
6764
+ * Removes a tag association from a listing.
6765
+ * @summary Remove Tag From Listing
6766
+ * @param {string} listingId
6767
+ * @param {string} tagId
6595
6768
  * @param {*} [options] Override http request option.
6596
6769
  * @throws {RequiredError}
6597
6770
  */
6598
- addressesCreate: (contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6771
+ listingsRemoveTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6599
6772
  /**
6600
- * Addresses Delete
6601
- * @summary Addresses Delete
6602
- * @param {string} addressId
6773
+ * Associates a child tag with a parent tag. This operation is idempotent.
6774
+ * @summary Add Child Tag
6775
+ * @param {string} parentTagId
6776
+ * @param {string} childTagId
6603
6777
  * @param {*} [options] Override http request option.
6604
6778
  * @throws {RequiredError}
6605
6779
  */
6606
- addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6780
+ tagsAddChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6607
6781
  /**
6608
- * Addresses Get
6609
- * @summary Addresses Get
6610
- * @param {string} addressId
6782
+ * Tags Create
6783
+ * @summary Tags Create
6784
+ * @param {APITagCreate} aPITagCreate
6611
6785
  * @param {*} [options] Override http request option.
6612
6786
  * @throws {RequiredError}
6613
6787
  */
6614
- addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6788
+ tagsCreate: (aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6615
6789
  /**
6616
- * Addresses Update
6617
- * @summary Addresses Update
6618
- * @param {string} addressId
6619
- * @param {APIAddressUpdate} aPIAddressUpdate
6790
+ * Tags Delete
6791
+ * @summary Tags Delete
6792
+ * @param {string} tagId
6620
6793
  * @param {*} [options] Override http request option.
6621
6794
  * @throws {RequiredError}
6622
6795
  */
6623
- addressesUpdate: (addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6796
+ tagsDelete: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6624
6797
  /**
6625
- * AiResponses Create
6626
- * @summary AiResponses Create
6627
- * @param {APIAiResponseCreate} aPIAiResponseCreate
6798
+ * Tags Get
6799
+ * @summary Tags Get
6800
+ * @param {string} tagId
6628
6801
  * @param {*} [options] Override http request option.
6629
6802
  * @throws {RequiredError}
6630
6803
  */
6631
- aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6804
+ tagsGet: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6632
6805
  /**
6633
- * Associates a contact with a listing with the OWNER type.
6634
- * @summary Create Contact Listing
6635
- * @param {string} contactId
6636
- * @param {string} listingId
6637
- * @param {CreateContactListing} createContactListing
6806
+ * Tags List
6807
+ * @summary Tags List
6808
+ * @param {string | null} [searchString] Search by tag name
6638
6809
  * @param {*} [options] Override http request option.
6639
6810
  * @throws {RequiredError}
6640
6811
  */
6641
- contactsAddListing: (contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6812
+ tagsList: (searchString?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6642
6813
  /**
6643
- * Contacts Create
6644
- * @summary Contacts Create
6645
- * @param {Contactcreate} contactcreate
6814
+ * List all child tags associated with a parent tag.
6815
+ * @summary List Child Tags
6816
+ * @param {string} parentTagId
6646
6817
  * @param {*} [options] Override http request option.
6647
6818
  * @throws {RequiredError}
6648
6819
  */
6649
- contactsCreate: (contactcreate: Contactcreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6820
+ tagsListChildTags: (parentTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6650
6821
  /**
6651
- * Contacts Delete
6652
- * @summary Contacts Delete
6653
- * @param {string} contactId
6822
+ * Removes a child tag association from a parent tag.
6823
+ * @summary Remove Child Tag
6824
+ * @param {string} parentTagId
6825
+ * @param {string} childTagId
6654
6826
  * @param {*} [options] Override http request option.
6655
6827
  * @throws {RequiredError}
6656
6828
  */
6657
- contactsDelete: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6829
+ tagsRemoveChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6658
6830
  /**
6659
- * Contacts Get
6660
- * @summary Contacts Get
6661
- * @param {string} contactId
6831
+ * Tags Update
6832
+ * @summary Tags Update
6833
+ * @param {string} tagId
6834
+ * @param {APITagUpdate} aPITagUpdate
6662
6835
  * @param {*} [options] Override http request option.
6663
6836
  * @throws {RequiredError}
6664
6837
  */
6665
- contactsGet: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6666
- /**
6838
+ tagsUpdate: (tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6839
+ };
6840
+ /**
6841
+ * TagsApi - functional programming interface
6842
+ * @export
6843
+ */
6844
+ declare const TagsApiFp: (configuration?: Configuration) => {
6845
+ /**
6846
+ * Associates a tag with an account. This operation is idempotent.
6847
+ * @summary Add Tag To Account
6848
+ * @param {string} accountId
6849
+ * @param {string} tagId
6850
+ * @param {*} [options] Override http request option.
6851
+ * @throws {RequiredError}
6852
+ */
6853
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6854
+ /**
6855
+ * List all tags associated with an account.
6856
+ * @summary List Account Tags
6857
+ * @param {string} accountId
6858
+ * @param {*} [options] Override http request option.
6859
+ * @throws {RequiredError}
6860
+ */
6861
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
6862
+ /**
6863
+ * Removes a tag association from an account.
6864
+ * @summary Remove Tag From Account
6865
+ * @param {string} accountId
6866
+ * @param {string} tagId
6867
+ * @param {*} [options] Override http request option.
6868
+ * @throws {RequiredError}
6869
+ */
6870
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6871
+ /**
6872
+ * Associates a tag with a listing. This operation is idempotent.
6873
+ * @summary Add Tag To Listing
6874
+ * @param {string} listingId
6875
+ * @param {string} tagId
6876
+ * @param {*} [options] Override http request option.
6877
+ * @throws {RequiredError}
6878
+ */
6879
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6880
+ /**
6881
+ * List all tags associated with a listing.
6882
+ * @summary List Listing Tags
6883
+ * @param {string} listingId
6884
+ * @param {*} [options] Override http request option.
6885
+ * @throws {RequiredError}
6886
+ */
6887
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
6888
+ /**
6889
+ * Removes a tag association from a listing.
6890
+ * @summary Remove Tag From Listing
6891
+ * @param {string} listingId
6892
+ * @param {string} tagId
6893
+ * @param {*} [options] Override http request option.
6894
+ * @throws {RequiredError}
6895
+ */
6896
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6897
+ /**
6898
+ * Associates a child tag with a parent tag. This operation is idempotent.
6899
+ * @summary Add Child Tag
6900
+ * @param {string} parentTagId
6901
+ * @param {string} childTagId
6902
+ * @param {*} [options] Override http request option.
6903
+ * @throws {RequiredError}
6904
+ */
6905
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6906
+ /**
6907
+ * Tags Create
6908
+ * @summary Tags Create
6909
+ * @param {APITagCreate} aPITagCreate
6910
+ * @param {*} [options] Override http request option.
6911
+ * @throws {RequiredError}
6912
+ */
6913
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
6914
+ /**
6915
+ * Tags Delete
6916
+ * @summary Tags Delete
6917
+ * @param {string} tagId
6918
+ * @param {*} [options] Override http request option.
6919
+ * @throws {RequiredError}
6920
+ */
6921
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6922
+ /**
6923
+ * Tags Get
6924
+ * @summary Tags Get
6925
+ * @param {string} tagId
6926
+ * @param {*} [options] Override http request option.
6927
+ * @throws {RequiredError}
6928
+ */
6929
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
6930
+ /**
6931
+ * Tags List
6932
+ * @summary Tags List
6933
+ * @param {string | null} [searchString] Search by tag name
6934
+ * @param {*} [options] Override http request option.
6935
+ * @throws {RequiredError}
6936
+ */
6937
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPITag>>;
6938
+ /**
6939
+ * List all child tags associated with a parent tag.
6940
+ * @summary List Child Tags
6941
+ * @param {string} parentTagId
6942
+ * @param {*} [options] Override http request option.
6943
+ * @throws {RequiredError}
6944
+ */
6945
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
6946
+ /**
6947
+ * Removes a child tag association from a parent tag.
6948
+ * @summary Remove Child Tag
6949
+ * @param {string} parentTagId
6950
+ * @param {string} childTagId
6951
+ * @param {*} [options] Override http request option.
6952
+ * @throws {RequiredError}
6953
+ */
6954
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6955
+ /**
6956
+ * Tags Update
6957
+ * @summary Tags Update
6958
+ * @param {string} tagId
6959
+ * @param {APITagUpdate} aPITagUpdate
6960
+ * @param {*} [options] Override http request option.
6961
+ * @throws {RequiredError}
6962
+ */
6963
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
6964
+ };
6965
+ /**
6966
+ * TagsApi - factory interface
6967
+ * @export
6968
+ */
6969
+ declare const TagsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6970
+ /**
6971
+ * Associates a tag with an account. This operation is idempotent.
6972
+ * @summary Add Tag To Account
6973
+ * @param {string} accountId
6974
+ * @param {string} tagId
6975
+ * @param {*} [options] Override http request option.
6976
+ * @throws {RequiredError}
6977
+ */
6978
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6979
+ /**
6980
+ * List all tags associated with an account.
6981
+ * @summary List Account Tags
6982
+ * @param {string} accountId
6983
+ * @param {*} [options] Override http request option.
6984
+ * @throws {RequiredError}
6985
+ */
6986
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
6987
+ /**
6988
+ * Removes a tag association from an account.
6989
+ * @summary Remove Tag From Account
6990
+ * @param {string} accountId
6991
+ * @param {string} tagId
6992
+ * @param {*} [options] Override http request option.
6993
+ * @throws {RequiredError}
6994
+ */
6995
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6996
+ /**
6997
+ * Associates a tag with a listing. This operation is idempotent.
6998
+ * @summary Add Tag To Listing
6999
+ * @param {string} listingId
7000
+ * @param {string} tagId
7001
+ * @param {*} [options] Override http request option.
7002
+ * @throws {RequiredError}
7003
+ */
7004
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7005
+ /**
7006
+ * List all tags associated with a listing.
7007
+ * @summary List Listing Tags
7008
+ * @param {string} listingId
7009
+ * @param {*} [options] Override http request option.
7010
+ * @throws {RequiredError}
7011
+ */
7012
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
7013
+ /**
7014
+ * Removes a tag association from a listing.
7015
+ * @summary Remove Tag From Listing
7016
+ * @param {string} listingId
7017
+ * @param {string} tagId
7018
+ * @param {*} [options] Override http request option.
7019
+ * @throws {RequiredError}
7020
+ */
7021
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7022
+ /**
7023
+ * Associates a child tag with a parent tag. This operation is idempotent.
7024
+ * @summary Add Child Tag
7025
+ * @param {string} parentTagId
7026
+ * @param {string} childTagId
7027
+ * @param {*} [options] Override http request option.
7028
+ * @throws {RequiredError}
7029
+ */
7030
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7031
+ /**
7032
+ * Tags Create
7033
+ * @summary Tags Create
7034
+ * @param {APITagCreate} aPITagCreate
7035
+ * @param {*} [options] Override http request option.
7036
+ * @throws {RequiredError}
7037
+ */
7038
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
7039
+ /**
7040
+ * Tags Delete
7041
+ * @summary Tags Delete
7042
+ * @param {string} tagId
7043
+ * @param {*} [options] Override http request option.
7044
+ * @throws {RequiredError}
7045
+ */
7046
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7047
+ /**
7048
+ * Tags Get
7049
+ * @summary Tags Get
7050
+ * @param {string} tagId
7051
+ * @param {*} [options] Override http request option.
7052
+ * @throws {RequiredError}
7053
+ */
7054
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
7055
+ /**
7056
+ * Tags List
7057
+ * @summary Tags List
7058
+ * @param {string | null} [searchString] Search by tag name
7059
+ * @param {*} [options] Override http request option.
7060
+ * @throws {RequiredError}
7061
+ */
7062
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPITag>;
7063
+ /**
7064
+ * List all child tags associated with a parent tag.
7065
+ * @summary List Child Tags
7066
+ * @param {string} parentTagId
7067
+ * @param {*} [options] Override http request option.
7068
+ * @throws {RequiredError}
7069
+ */
7070
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
7071
+ /**
7072
+ * Removes a child tag association from a parent tag.
7073
+ * @summary Remove Child Tag
7074
+ * @param {string} parentTagId
7075
+ * @param {string} childTagId
7076
+ * @param {*} [options] Override http request option.
7077
+ * @throws {RequiredError}
7078
+ */
7079
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7080
+ /**
7081
+ * Tags Update
7082
+ * @summary Tags Update
7083
+ * @param {string} tagId
7084
+ * @param {APITagUpdate} aPITagUpdate
7085
+ * @param {*} [options] Override http request option.
7086
+ * @throws {RequiredError}
7087
+ */
7088
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
7089
+ };
7090
+ /**
7091
+ * TagsApi - object-oriented interface
7092
+ * @export
7093
+ * @class TagsApi
7094
+ * @extends {BaseAPI}
7095
+ */
7096
+ declare class TagsApi extends BaseAPI {
7097
+ /**
7098
+ * Associates a tag with an account. This operation is idempotent.
7099
+ * @summary Add Tag To Account
7100
+ * @param {string} accountId
7101
+ * @param {string} tagId
7102
+ * @param {*} [options] Override http request option.
7103
+ * @throws {RequiredError}
7104
+ * @memberof TagsApi
7105
+ */
7106
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7107
+ /**
7108
+ * List all tags associated with an account.
7109
+ * @summary List Account Tags
7110
+ * @param {string} accountId
7111
+ * @param {*} [options] Override http request option.
7112
+ * @throws {RequiredError}
7113
+ * @memberof TagsApi
7114
+ */
7115
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
7116
+ /**
7117
+ * Removes a tag association from an account.
7118
+ * @summary Remove Tag From Account
7119
+ * @param {string} accountId
7120
+ * @param {string} tagId
7121
+ * @param {*} [options] Override http request option.
7122
+ * @throws {RequiredError}
7123
+ * @memberof TagsApi
7124
+ */
7125
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7126
+ /**
7127
+ * Associates a tag with a listing. This operation is idempotent.
7128
+ * @summary Add Tag To Listing
7129
+ * @param {string} listingId
7130
+ * @param {string} tagId
7131
+ * @param {*} [options] Override http request option.
7132
+ * @throws {RequiredError}
7133
+ * @memberof TagsApi
7134
+ */
7135
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7136
+ /**
7137
+ * List all tags associated with a listing.
7138
+ * @summary List Listing Tags
7139
+ * @param {string} listingId
7140
+ * @param {*} [options] Override http request option.
7141
+ * @throws {RequiredError}
7142
+ * @memberof TagsApi
7143
+ */
7144
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
7145
+ /**
7146
+ * Removes a tag association from a listing.
7147
+ * @summary Remove Tag From Listing
7148
+ * @param {string} listingId
7149
+ * @param {string} tagId
7150
+ * @param {*} [options] Override http request option.
7151
+ * @throws {RequiredError}
7152
+ * @memberof TagsApi
7153
+ */
7154
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7155
+ /**
7156
+ * Associates a child tag with a parent tag. This operation is idempotent.
7157
+ * @summary Add Child Tag
7158
+ * @param {string} parentTagId
7159
+ * @param {string} childTagId
7160
+ * @param {*} [options] Override http request option.
7161
+ * @throws {RequiredError}
7162
+ * @memberof TagsApi
7163
+ */
7164
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7165
+ /**
7166
+ * Tags Create
7167
+ * @summary Tags Create
7168
+ * @param {APITagCreate} aPITagCreate
7169
+ * @param {*} [options] Override http request option.
7170
+ * @throws {RequiredError}
7171
+ * @memberof TagsApi
7172
+ */
7173
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
7174
+ /**
7175
+ * Tags Delete
7176
+ * @summary Tags Delete
7177
+ * @param {string} tagId
7178
+ * @param {*} [options] Override http request option.
7179
+ * @throws {RequiredError}
7180
+ * @memberof TagsApi
7181
+ */
7182
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7183
+ /**
7184
+ * Tags Get
7185
+ * @summary Tags Get
7186
+ * @param {string} tagId
7187
+ * @param {*} [options] Override http request option.
7188
+ * @throws {RequiredError}
7189
+ * @memberof TagsApi
7190
+ */
7191
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
7192
+ /**
7193
+ * Tags List
7194
+ * @summary Tags List
7195
+ * @param {string | null} [searchString] Search by tag name
7196
+ * @param {*} [options] Override http request option.
7197
+ * @throws {RequiredError}
7198
+ * @memberof TagsApi
7199
+ */
7200
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPITag, any>>;
7201
+ /**
7202
+ * List all child tags associated with a parent tag.
7203
+ * @summary List Child Tags
7204
+ * @param {string} parentTagId
7205
+ * @param {*} [options] Override http request option.
7206
+ * @throws {RequiredError}
7207
+ * @memberof TagsApi
7208
+ */
7209
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
7210
+ /**
7211
+ * Removes a child tag association from a parent tag.
7212
+ * @summary Remove Child Tag
7213
+ * @param {string} parentTagId
7214
+ * @param {string} childTagId
7215
+ * @param {*} [options] Override http request option.
7216
+ * @throws {RequiredError}
7217
+ * @memberof TagsApi
7218
+ */
7219
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7220
+ /**
7221
+ * Tags Update
7222
+ * @summary Tags Update
7223
+ * @param {string} tagId
7224
+ * @param {APITagUpdate} aPITagUpdate
7225
+ * @param {*} [options] Override http request option.
7226
+ * @throws {RequiredError}
7227
+ * @memberof TagsApi
7228
+ */
7229
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
7230
+ }
7231
+ /**
7232
+ * TelnyxApi - axios parameter creator
7233
+ * @export
7234
+ */
7235
+ declare const TelnyxApiAxiosParamCreator: (configuration?: Configuration) => {
7236
+ /**
7237
+ *
7238
+ * @summary Telnyx Webhook
7239
+ * @param {{ [key: string]: any; }} requestBody
7240
+ * @param {*} [options] Override http request option.
7241
+ * @throws {RequiredError}
7242
+ */
7243
+ telnyxWebhookTelnyxWebhooksPost: (requestBody: {
7244
+ [key: string]: any;
7245
+ }, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7246
+ };
7247
+ /**
7248
+ * TelnyxApi - functional programming interface
7249
+ * @export
7250
+ */
7251
+ declare const TelnyxApiFp: (configuration?: Configuration) => {
7252
+ /**
7253
+ *
7254
+ * @summary Telnyx Webhook
7255
+ * @param {{ [key: string]: any; }} requestBody
7256
+ * @param {*} [options] Override http request option.
7257
+ * @throws {RequiredError}
7258
+ */
7259
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
7260
+ [key: string]: any;
7261
+ }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7262
+ };
7263
+ /**
7264
+ * TelnyxApi - factory interface
7265
+ * @export
7266
+ */
7267
+ declare const TelnyxApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7268
+ /**
7269
+ *
7270
+ * @summary Telnyx Webhook
7271
+ * @param {{ [key: string]: any; }} requestBody
7272
+ * @param {*} [options] Override http request option.
7273
+ * @throws {RequiredError}
7274
+ */
7275
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
7276
+ [key: string]: any;
7277
+ }, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7278
+ };
7279
+ /**
7280
+ * TelnyxApi - object-oriented interface
7281
+ * @export
7282
+ * @class TelnyxApi
7283
+ * @extends {BaseAPI}
7284
+ */
7285
+ declare class TelnyxApi extends BaseAPI {
7286
+ /**
7287
+ *
7288
+ * @summary Telnyx Webhook
7289
+ * @param {{ [key: string]: any; }} requestBody
7290
+ * @param {*} [options] Override http request option.
7291
+ * @throws {RequiredError}
7292
+ * @memberof TelnyxApi
7293
+ */
7294
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
7295
+ [key: string]: any;
7296
+ }, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
7297
+ }
7298
+ /**
7299
+ * UnboundApi - axios parameter creator
7300
+ * @export
7301
+ */
7302
+ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7303
+ /**
7304
+ * Associates a tag with an account. This operation is idempotent.
7305
+ * @summary Add Tag To Account
7306
+ * @param {string} accountId
7307
+ * @param {string} tagId
7308
+ * @param {*} [options] Override http request option.
7309
+ * @throws {RequiredError}
7310
+ */
7311
+ accountsAddTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7312
+ /**
7313
+ * Accounts List
7314
+ * @summary Accounts List
7315
+ * @param {*} [options] Override http request option.
7316
+ * @throws {RequiredError}
7317
+ */
7318
+ accountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7319
+ /**
7320
+ * List all tags associated with an account.
7321
+ * @summary List Account Tags
7322
+ * @param {string} accountId
7323
+ * @param {*} [options] Override http request option.
7324
+ * @throws {RequiredError}
7325
+ */
7326
+ accountsListTags: (accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7327
+ /**
7328
+ * Removes a tag association from an account.
7329
+ * @summary Remove Tag From Account
7330
+ * @param {string} accountId
7331
+ * @param {string} tagId
7332
+ * @param {*} [options] Override http request option.
7333
+ * @throws {RequiredError}
7334
+ */
7335
+ accountsRemoveTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7336
+ /**
7337
+ * Addresses Create
7338
+ * @summary Addresses Create
7339
+ * @param {string} contactId
7340
+ * @param {APIAddressCreate} aPIAddressCreate
7341
+ * @param {*} [options] Override http request option.
7342
+ * @throws {RequiredError}
7343
+ */
7344
+ addressesCreate: (contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7345
+ /**
7346
+ * Addresses Delete
7347
+ * @summary Addresses Delete
7348
+ * @param {string} addressId
7349
+ * @param {*} [options] Override http request option.
7350
+ * @throws {RequiredError}
7351
+ */
7352
+ addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7353
+ /**
7354
+ * Addresses Get
7355
+ * @summary Addresses Get
7356
+ * @param {string} addressId
7357
+ * @param {*} [options] Override http request option.
7358
+ * @throws {RequiredError}
7359
+ */
7360
+ addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7361
+ /**
7362
+ * Addresses Update
7363
+ * @summary Addresses Update
7364
+ * @param {string} addressId
7365
+ * @param {APIAddressUpdate} aPIAddressUpdate
7366
+ * @param {*} [options] Override http request option.
7367
+ * @throws {RequiredError}
7368
+ */
7369
+ addressesUpdate: (addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7370
+ /**
7371
+ * AiResponses Create
7372
+ * @summary AiResponses Create
7373
+ * @param {APIAiResponseCreate} aPIAiResponseCreate
7374
+ * @param {*} [options] Override http request option.
7375
+ * @throws {RequiredError}
7376
+ */
7377
+ aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7378
+ /**
7379
+ * Associates a contact with a listing with the OWNER type.
7380
+ * @summary Create Contact Listing
7381
+ * @param {string} contactId
7382
+ * @param {string} listingId
7383
+ * @param {CreateContactListing} createContactListing
7384
+ * @param {*} [options] Override http request option.
7385
+ * @throws {RequiredError}
7386
+ */
7387
+ contactsAddListing: (contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7388
+ /**
7389
+ * Contacts Create
7390
+ * @summary Contacts Create
7391
+ * @param {Contactcreate} contactcreate
7392
+ * @param {*} [options] Override http request option.
7393
+ * @throws {RequiredError}
7394
+ */
7395
+ contactsCreate: (contactcreate: Contactcreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7396
+ /**
7397
+ * Contacts Delete
7398
+ * @summary Contacts Delete
7399
+ * @param {string} contactId
7400
+ * @param {*} [options] Override http request option.
7401
+ * @throws {RequiredError}
7402
+ */
7403
+ contactsDelete: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7404
+ /**
7405
+ * Contacts Get
7406
+ * @summary Contacts Get
7407
+ * @param {string} contactId
7408
+ * @param {*} [options] Override http request option.
7409
+ * @throws {RequiredError}
7410
+ */
7411
+ contactsGet: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7412
+ /**
6667
7413
  * Contacts List
6668
7414
  * @summary Contacts List
6669
7415
  * @param {string | null} [searchString]
@@ -6870,6 +7616,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
6870
7616
  * @throws {RequiredError}
6871
7617
  */
6872
7618
  listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7619
+ /**
7620
+ * Associates a tag with a listing. This operation is idempotent.
7621
+ * @summary Add Tag To Listing
7622
+ * @param {string} listingId
7623
+ * @param {string} tagId
7624
+ * @param {*} [options] Override http request option.
7625
+ * @throws {RequiredError}
7626
+ */
7627
+ listingsAddTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6873
7628
  /**
6874
7629
  * Listings Get
6875
7630
  * @summary Listings Get
@@ -6892,6 +7647,23 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
6892
7647
  * @throws {RequiredError}
6893
7648
  */
6894
7649
  listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7650
+ /**
7651
+ * List all tags associated with a listing.
7652
+ * @summary List Listing Tags
7653
+ * @param {string} listingId
7654
+ * @param {*} [options] Override http request option.
7655
+ * @throws {RequiredError}
7656
+ */
7657
+ listingsListTags: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7658
+ /**
7659
+ * Removes a tag association from a listing.
7660
+ * @summary Remove Tag From Listing
7661
+ * @param {string} listingId
7662
+ * @param {string} tagId
7663
+ * @param {*} [options] Override http request option.
7664
+ * @throws {RequiredError}
7665
+ */
7666
+ listingsRemoveTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6895
7667
  /**
6896
7668
  * ManagedPhoneNumbers List
6897
7669
  * @summary ManagedPhoneNumbers List
@@ -7022,6 +7794,73 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7022
7794
  * @throws {RequiredError}
7023
7795
  */
7024
7796
  reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7797
+ /**
7798
+ * Associates a child tag with a parent tag. This operation is idempotent.
7799
+ * @summary Add Child Tag
7800
+ * @param {string} parentTagId
7801
+ * @param {string} childTagId
7802
+ * @param {*} [options] Override http request option.
7803
+ * @throws {RequiredError}
7804
+ */
7805
+ tagsAddChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7806
+ /**
7807
+ * Tags Create
7808
+ * @summary Tags Create
7809
+ * @param {APITagCreate} aPITagCreate
7810
+ * @param {*} [options] Override http request option.
7811
+ * @throws {RequiredError}
7812
+ */
7813
+ tagsCreate: (aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7814
+ /**
7815
+ * Tags Delete
7816
+ * @summary Tags Delete
7817
+ * @param {string} tagId
7818
+ * @param {*} [options] Override http request option.
7819
+ * @throws {RequiredError}
7820
+ */
7821
+ tagsDelete: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7822
+ /**
7823
+ * Tags Get
7824
+ * @summary Tags Get
7825
+ * @param {string} tagId
7826
+ * @param {*} [options] Override http request option.
7827
+ * @throws {RequiredError}
7828
+ */
7829
+ tagsGet: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7830
+ /**
7831
+ * Tags List
7832
+ * @summary Tags List
7833
+ * @param {string | null} [searchString] Search by tag name
7834
+ * @param {*} [options] Override http request option.
7835
+ * @throws {RequiredError}
7836
+ */
7837
+ tagsList: (searchString?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7838
+ /**
7839
+ * List all child tags associated with a parent tag.
7840
+ * @summary List Child Tags
7841
+ * @param {string} parentTagId
7842
+ * @param {*} [options] Override http request option.
7843
+ * @throws {RequiredError}
7844
+ */
7845
+ tagsListChildTags: (parentTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7846
+ /**
7847
+ * Removes a child tag association from a parent tag.
7848
+ * @summary Remove Child Tag
7849
+ * @param {string} parentTagId
7850
+ * @param {string} childTagId
7851
+ * @param {*} [options] Override http request option.
7852
+ * @throws {RequiredError}
7853
+ */
7854
+ tagsRemoveChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7855
+ /**
7856
+ * Tags Update
7857
+ * @summary Tags Update
7858
+ * @param {string} tagId
7859
+ * @param {APITagUpdate} aPITagUpdate
7860
+ * @param {*} [options] Override http request option.
7861
+ * @throws {RequiredError}
7862
+ */
7863
+ tagsUpdate: (tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7025
7864
  /**
7026
7865
  * UserDevices Create
7027
7866
  * @summary UserDevices Create
@@ -7052,6 +7891,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7052
7891
  * @export
7053
7892
  */
7054
7893
  declare const UnboundApiFp: (configuration?: Configuration) => {
7894
+ /**
7895
+ * Associates a tag with an account. This operation is idempotent.
7896
+ * @summary Add Tag To Account
7897
+ * @param {string} accountId
7898
+ * @param {string} tagId
7899
+ * @param {*} [options] Override http request option.
7900
+ * @throws {RequiredError}
7901
+ */
7902
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7055
7903
  /**
7056
7904
  * Accounts List
7057
7905
  * @summary Accounts List
@@ -7059,6 +7907,23 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
7059
7907
  * @throws {RequiredError}
7060
7908
  */
7061
7909
  accountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIAccount>>;
7910
+ /**
7911
+ * List all tags associated with an account.
7912
+ * @summary List Account Tags
7913
+ * @param {string} accountId
7914
+ * @param {*} [options] Override http request option.
7915
+ * @throws {RequiredError}
7916
+ */
7917
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
7918
+ /**
7919
+ * Removes a tag association from an account.
7920
+ * @summary Remove Tag From Account
7921
+ * @param {string} accountId
7922
+ * @param {string} tagId
7923
+ * @param {*} [options] Override http request option.
7924
+ * @throws {RequiredError}
7925
+ */
7926
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7062
7927
  /**
7063
7928
  * Addresses Create
7064
7929
  * @summary Addresses Create
@@ -7342,6 +8207,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
7342
8207
  * @throws {RequiredError}
7343
8208
  */
7344
8209
  listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
8210
+ /**
8211
+ * Associates a tag with a listing. This operation is idempotent.
8212
+ * @summary Add Tag To Listing
8213
+ * @param {string} listingId
8214
+ * @param {string} tagId
8215
+ * @param {*} [options] Override http request option.
8216
+ * @throws {RequiredError}
8217
+ */
8218
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7345
8219
  /**
7346
8220
  * Listings Get
7347
8221
  * @summary Listings Get
@@ -7364,6 +8238,23 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
7364
8238
  * @throws {RequiredError}
7365
8239
  */
7366
8240
  listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIListing>>;
8241
+ /**
8242
+ * List all tags associated with a listing.
8243
+ * @summary List Listing Tags
8244
+ * @param {string} listingId
8245
+ * @param {*} [options] Override http request option.
8246
+ * @throws {RequiredError}
8247
+ */
8248
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
8249
+ /**
8250
+ * Removes a tag association from a listing.
8251
+ * @summary Remove Tag From Listing
8252
+ * @param {string} listingId
8253
+ * @param {string} tagId
8254
+ * @param {*} [options] Override http request option.
8255
+ * @throws {RequiredError}
8256
+ */
8257
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7367
8258
  /**
7368
8259
  * ManagedPhoneNumbers List
7369
8260
  * @summary ManagedPhoneNumbers List
@@ -7494,6 +8385,73 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
7494
8385
  * @throws {RequiredError}
7495
8386
  */
7496
8387
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIReservation>>;
8388
+ /**
8389
+ * Associates a child tag with a parent tag. This operation is idempotent.
8390
+ * @summary Add Child Tag
8391
+ * @param {string} parentTagId
8392
+ * @param {string} childTagId
8393
+ * @param {*} [options] Override http request option.
8394
+ * @throws {RequiredError}
8395
+ */
8396
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8397
+ /**
8398
+ * Tags Create
8399
+ * @summary Tags Create
8400
+ * @param {APITagCreate} aPITagCreate
8401
+ * @param {*} [options] Override http request option.
8402
+ * @throws {RequiredError}
8403
+ */
8404
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
8405
+ /**
8406
+ * Tags Delete
8407
+ * @summary Tags Delete
8408
+ * @param {string} tagId
8409
+ * @param {*} [options] Override http request option.
8410
+ * @throws {RequiredError}
8411
+ */
8412
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8413
+ /**
8414
+ * Tags Get
8415
+ * @summary Tags Get
8416
+ * @param {string} tagId
8417
+ * @param {*} [options] Override http request option.
8418
+ * @throws {RequiredError}
8419
+ */
8420
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
8421
+ /**
8422
+ * Tags List
8423
+ * @summary Tags List
8424
+ * @param {string | null} [searchString] Search by tag name
8425
+ * @param {*} [options] Override http request option.
8426
+ * @throws {RequiredError}
8427
+ */
8428
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPITag>>;
8429
+ /**
8430
+ * List all child tags associated with a parent tag.
8431
+ * @summary List Child Tags
8432
+ * @param {string} parentTagId
8433
+ * @param {*} [options] Override http request option.
8434
+ * @throws {RequiredError}
8435
+ */
8436
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
8437
+ /**
8438
+ * Removes a child tag association from a parent tag.
8439
+ * @summary Remove Child Tag
8440
+ * @param {string} parentTagId
8441
+ * @param {string} childTagId
8442
+ * @param {*} [options] Override http request option.
8443
+ * @throws {RequiredError}
8444
+ */
8445
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8446
+ /**
8447
+ * Tags Update
8448
+ * @summary Tags Update
8449
+ * @param {string} tagId
8450
+ * @param {APITagUpdate} aPITagUpdate
8451
+ * @param {*} [options] Override http request option.
8452
+ * @throws {RequiredError}
8453
+ */
8454
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APITag>>;
7497
8455
  /**
7498
8456
  * UserDevices Create
7499
8457
  * @summary UserDevices Create
@@ -7524,6 +8482,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
7524
8482
  * @export
7525
8483
  */
7526
8484
  declare const UnboundApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8485
+ /**
8486
+ * Associates a tag with an account. This operation is idempotent.
8487
+ * @summary Add Tag To Account
8488
+ * @param {string} accountId
8489
+ * @param {string} tagId
8490
+ * @param {*} [options] Override http request option.
8491
+ * @throws {RequiredError}
8492
+ */
8493
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7527
8494
  /**
7528
8495
  * Accounts List
7529
8496
  * @summary Accounts List
@@ -7531,6 +8498,23 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
7531
8498
  * @throws {RequiredError}
7532
8499
  */
7533
8500
  accountsList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIAccount>;
8501
+ /**
8502
+ * List all tags associated with an account.
8503
+ * @summary List Account Tags
8504
+ * @param {string} accountId
8505
+ * @param {*} [options] Override http request option.
8506
+ * @throws {RequiredError}
8507
+ */
8508
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
8509
+ /**
8510
+ * Removes a tag association from an account.
8511
+ * @summary Remove Tag From Account
8512
+ * @param {string} accountId
8513
+ * @param {string} tagId
8514
+ * @param {*} [options] Override http request option.
8515
+ * @throws {RequiredError}
8516
+ */
8517
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7534
8518
  /**
7535
8519
  * Addresses Create
7536
8520
  * @summary Addresses Create
@@ -7814,6 +8798,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
7814
8798
  * @throws {RequiredError}
7815
8799
  */
7816
8800
  listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
8801
+ /**
8802
+ * Associates a tag with a listing. This operation is idempotent.
8803
+ * @summary Add Tag To Listing
8804
+ * @param {string} listingId
8805
+ * @param {string} tagId
8806
+ * @param {*} [options] Override http request option.
8807
+ * @throws {RequiredError}
8808
+ */
8809
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7817
8810
  /**
7818
8811
  * Listings Get
7819
8812
  * @summary Listings Get
@@ -7836,6 +8829,23 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
7836
8829
  * @throws {RequiredError}
7837
8830
  */
7838
8831
  listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIListing>;
8832
+ /**
8833
+ * List all tags associated with a listing.
8834
+ * @summary List Listing Tags
8835
+ * @param {string} listingId
8836
+ * @param {*} [options] Override http request option.
8837
+ * @throws {RequiredError}
8838
+ */
8839
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
8840
+ /**
8841
+ * Removes a tag association from a listing.
8842
+ * @summary Remove Tag From Listing
8843
+ * @param {string} listingId
8844
+ * @param {string} tagId
8845
+ * @param {*} [options] Override http request option.
8846
+ * @throws {RequiredError}
8847
+ */
8848
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7839
8849
  /**
7840
8850
  * ManagedPhoneNumbers List
7841
8851
  * @summary ManagedPhoneNumbers List
@@ -7966,6 +8976,73 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
7966
8976
  * @throws {RequiredError}
7967
8977
  */
7968
8978
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
8979
+ /**
8980
+ * Associates a child tag with a parent tag. This operation is idempotent.
8981
+ * @summary Add Child Tag
8982
+ * @param {string} parentTagId
8983
+ * @param {string} childTagId
8984
+ * @param {*} [options] Override http request option.
8985
+ * @throws {RequiredError}
8986
+ */
8987
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8988
+ /**
8989
+ * Tags Create
8990
+ * @summary Tags Create
8991
+ * @param {APITagCreate} aPITagCreate
8992
+ * @param {*} [options] Override http request option.
8993
+ * @throws {RequiredError}
8994
+ */
8995
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
8996
+ /**
8997
+ * Tags Delete
8998
+ * @summary Tags Delete
8999
+ * @param {string} tagId
9000
+ * @param {*} [options] Override http request option.
9001
+ * @throws {RequiredError}
9002
+ */
9003
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9004
+ /**
9005
+ * Tags Get
9006
+ * @summary Tags Get
9007
+ * @param {string} tagId
9008
+ * @param {*} [options] Override http request option.
9009
+ * @throws {RequiredError}
9010
+ */
9011
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
9012
+ /**
9013
+ * Tags List
9014
+ * @summary Tags List
9015
+ * @param {string | null} [searchString] Search by tag name
9016
+ * @param {*} [options] Override http request option.
9017
+ * @throws {RequiredError}
9018
+ */
9019
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPITag>;
9020
+ /**
9021
+ * List all child tags associated with a parent tag.
9022
+ * @summary List Child Tags
9023
+ * @param {string} parentTagId
9024
+ * @param {*} [options] Override http request option.
9025
+ * @throws {RequiredError}
9026
+ */
9027
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Tag>>;
9028
+ /**
9029
+ * Removes a child tag association from a parent tag.
9030
+ * @summary Remove Child Tag
9031
+ * @param {string} parentTagId
9032
+ * @param {string} childTagId
9033
+ * @param {*} [options] Override http request option.
9034
+ * @throws {RequiredError}
9035
+ */
9036
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9037
+ /**
9038
+ * Tags Update
9039
+ * @summary Tags Update
9040
+ * @param {string} tagId
9041
+ * @param {APITagUpdate} aPITagUpdate
9042
+ * @param {*} [options] Override http request option.
9043
+ * @throws {RequiredError}
9044
+ */
9045
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APITag>;
7969
9046
  /**
7970
9047
  * UserDevices Create
7971
9048
  * @summary UserDevices Create
@@ -7998,6 +9075,16 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
7998
9075
  * @extends {BaseAPI}
7999
9076
  */
8000
9077
  declare class UnboundApi extends BaseAPI {
9078
+ /**
9079
+ * Associates a tag with an account. This operation is idempotent.
9080
+ * @summary Add Tag To Account
9081
+ * @param {string} accountId
9082
+ * @param {string} tagId
9083
+ * @param {*} [options] Override http request option.
9084
+ * @throws {RequiredError}
9085
+ * @memberof UnboundApi
9086
+ */
9087
+ accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8001
9088
  /**
8002
9089
  * Accounts List
8003
9090
  * @summary Accounts List
@@ -8006,6 +9093,25 @@ declare class UnboundApi extends BaseAPI {
8006
9093
  * @memberof UnboundApi
8007
9094
  */
8008
9095
  accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
9096
+ /**
9097
+ * List all tags associated with an account.
9098
+ * @summary List Account Tags
9099
+ * @param {string} accountId
9100
+ * @param {*} [options] Override http request option.
9101
+ * @throws {RequiredError}
9102
+ * @memberof UnboundApi
9103
+ */
9104
+ accountsListTags(accountId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
9105
+ /**
9106
+ * Removes a tag association from an account.
9107
+ * @summary Remove Tag From Account
9108
+ * @param {string} accountId
9109
+ * @param {string} tagId
9110
+ * @param {*} [options] Override http request option.
9111
+ * @throws {RequiredError}
9112
+ * @memberof UnboundApi
9113
+ */
9114
+ accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8009
9115
  /**
8010
9116
  * Addresses Create
8011
9117
  * @summary Addresses Create
@@ -8321,6 +9427,16 @@ declare class UnboundApi extends BaseAPI {
8321
9427
  * @memberof UnboundApi
8322
9428
  */
8323
9429
  listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
9430
+ /**
9431
+ * Associates a tag with a listing. This operation is idempotent.
9432
+ * @summary Add Tag To Listing
9433
+ * @param {string} listingId
9434
+ * @param {string} tagId
9435
+ * @param {*} [options] Override http request option.
9436
+ * @throws {RequiredError}
9437
+ * @memberof UnboundApi
9438
+ */
9439
+ listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8324
9440
  /**
8325
9441
  * Listings Get
8326
9442
  * @summary Listings Get
@@ -8345,6 +9461,25 @@ declare class UnboundApi extends BaseAPI {
8345
9461
  * @memberof UnboundApi
8346
9462
  */
8347
9463
  listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIListing, any>>;
9464
+ /**
9465
+ * List all tags associated with a listing.
9466
+ * @summary List Listing Tags
9467
+ * @param {string} listingId
9468
+ * @param {*} [options] Override http request option.
9469
+ * @throws {RequiredError}
9470
+ * @memberof UnboundApi
9471
+ */
9472
+ listingsListTags(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
9473
+ /**
9474
+ * Removes a tag association from a listing.
9475
+ * @summary Remove Tag From Listing
9476
+ * @param {string} listingId
9477
+ * @param {string} tagId
9478
+ * @param {*} [options] Override http request option.
9479
+ * @throws {RequiredError}
9480
+ * @memberof UnboundApi
9481
+ */
9482
+ listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8348
9483
  /**
8349
9484
  * ManagedPhoneNumbers List
8350
9485
  * @summary ManagedPhoneNumbers List
@@ -8489,6 +9624,81 @@ declare class UnboundApi extends BaseAPI {
8489
9624
  * @memberof UnboundApi
8490
9625
  */
8491
9626
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
9627
+ /**
9628
+ * Associates a child tag with a parent tag. This operation is idempotent.
9629
+ * @summary Add Child Tag
9630
+ * @param {string} parentTagId
9631
+ * @param {string} childTagId
9632
+ * @param {*} [options] Override http request option.
9633
+ * @throws {RequiredError}
9634
+ * @memberof UnboundApi
9635
+ */
9636
+ tagsAddChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9637
+ /**
9638
+ * Tags Create
9639
+ * @summary Tags Create
9640
+ * @param {APITagCreate} aPITagCreate
9641
+ * @param {*} [options] Override http request option.
9642
+ * @throws {RequiredError}
9643
+ * @memberof UnboundApi
9644
+ */
9645
+ tagsCreate(aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
9646
+ /**
9647
+ * Tags Delete
9648
+ * @summary Tags Delete
9649
+ * @param {string} tagId
9650
+ * @param {*} [options] Override http request option.
9651
+ * @throws {RequiredError}
9652
+ * @memberof UnboundApi
9653
+ */
9654
+ tagsDelete(tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9655
+ /**
9656
+ * Tags Get
9657
+ * @summary Tags Get
9658
+ * @param {string} tagId
9659
+ * @param {*} [options] Override http request option.
9660
+ * @throws {RequiredError}
9661
+ * @memberof UnboundApi
9662
+ */
9663
+ tagsGet(tagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
9664
+ /**
9665
+ * Tags List
9666
+ * @summary Tags List
9667
+ * @param {string | null} [searchString] Search by tag name
9668
+ * @param {*} [options] Override http request option.
9669
+ * @throws {RequiredError}
9670
+ * @memberof UnboundApi
9671
+ */
9672
+ tagsList(searchString?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPITag, any>>;
9673
+ /**
9674
+ * List all child tags associated with a parent tag.
9675
+ * @summary List Child Tags
9676
+ * @param {string} parentTagId
9677
+ * @param {*} [options] Override http request option.
9678
+ * @throws {RequiredError}
9679
+ * @memberof UnboundApi
9680
+ */
9681
+ tagsListChildTags(parentTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Tag[], any>>;
9682
+ /**
9683
+ * Removes a child tag association from a parent tag.
9684
+ * @summary Remove Child Tag
9685
+ * @param {string} parentTagId
9686
+ * @param {string} childTagId
9687
+ * @param {*} [options] Override http request option.
9688
+ * @throws {RequiredError}
9689
+ * @memberof UnboundApi
9690
+ */
9691
+ tagsRemoveChildTag(parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9692
+ /**
9693
+ * Tags Update
9694
+ * @summary Tags Update
9695
+ * @param {string} tagId
9696
+ * @param {APITagUpdate} aPITagUpdate
9697
+ * @param {*} [options] Override http request option.
9698
+ * @throws {RequiredError}
9699
+ * @memberof UnboundApi
9700
+ */
9701
+ tagsUpdate(tagId: string, aPITagUpdate: APITagUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APITag, any>>;
8492
9702
  /**
8493
9703
  * UserDevices Create
8494
9704
  * @summary UserDevices Create
@@ -8610,4 +9820,4 @@ declare class UserDevicesApi extends BaseAPI {
8610
9820
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8611
9821
  }
8612
9822
 
8613
- export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIListingContent, type APIListingContentCreate, APIListingContentStatusEnum, type APIListingContentUpdate, type APIListingContentVersion, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileListingContentApi, FileListingContentApiListingContentTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIListingContent, type ListResponseAPIListingContentVersion, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingContentApi, ListingContentApiAxiosParamCreator, ListingContentApiFactory, ListingContentApiFp, type ListingContentVersionApi, type Listingcontenttypedata, type Listingcontenttypedata1, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextListingContentApi, PlainTextListingContentApiListingContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLListingContentApi, URLListingContentApiListingContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
9823
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIListingContent, type APIListingContentCreate, APIListingContentStatusEnum, type APIListingContentUpdate, type APIListingContentVersion, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileListingContentApi, FileListingContentApiListingContentTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIListingContent, type ListResponseAPIListingContentVersion, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, ListingContentApi, ListingContentApiAxiosParamCreator, ListingContentApiFactory, ListingContentApiFp, type ListingContentVersionApi, type Listingcontenttypedata, type Listingcontenttypedata1, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextListingContentApi, PlainTextListingContentApiListingContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLListingContentApi, URLListingContentApiListingContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };