@ember-home/unbound-ts-client 0.0.99 → 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 +1291 -136
- package/dist/index.d.ts +1291 -136
- package/dist/index.js +2236 -454
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1784 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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
|
|
@@ -3857,6 +3963,49 @@ declare const SuggestionStatus: {
|
|
|
3857
3963
|
readonly NoAvailableReply: "NO_AVAILABLE_REPLY";
|
|
3858
3964
|
};
|
|
3859
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
|
+
}
|
|
3860
4009
|
/**
|
|
3861
4010
|
*
|
|
3862
4011
|
* @export
|
|
@@ -6564,225 +6713,767 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
6564
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>>;
|
|
6565
6714
|
}
|
|
6566
6715
|
/**
|
|
6567
|
-
*
|
|
6716
|
+
* TagsApi - axios parameter creator
|
|
6568
6717
|
* @export
|
|
6569
6718
|
*/
|
|
6570
|
-
declare const
|
|
6719
|
+
declare const TagsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6571
6720
|
/**
|
|
6572
|
-
*
|
|
6573
|
-
* @summary
|
|
6574
|
-
* @param {
|
|
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
|
|
6575
6725
|
* @param {*} [options] Override http request option.
|
|
6576
6726
|
* @throws {RequiredError}
|
|
6577
6727
|
*/
|
|
6578
|
-
|
|
6579
|
-
[key: string]: any;
|
|
6580
|
-
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6581
|
-
};
|
|
6582
|
-
/**
|
|
6583
|
-
* TelnyxApi - functional programming interface
|
|
6584
|
-
* @export
|
|
6585
|
-
*/
|
|
6586
|
-
declare const TelnyxApiFp: (configuration?: Configuration) => {
|
|
6728
|
+
accountsAddTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6587
6729
|
/**
|
|
6588
|
-
*
|
|
6589
|
-
* @summary
|
|
6590
|
-
* @param {
|
|
6730
|
+
* List all tags associated with an account.
|
|
6731
|
+
* @summary List Account Tags
|
|
6732
|
+
* @param {string} accountId
|
|
6591
6733
|
* @param {*} [options] Override http request option.
|
|
6592
6734
|
* @throws {RequiredError}
|
|
6593
6735
|
*/
|
|
6594
|
-
|
|
6595
|
-
[key: string]: any;
|
|
6596
|
-
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
6597
|
-
};
|
|
6598
|
-
/**
|
|
6599
|
-
* TelnyxApi - factory interface
|
|
6600
|
-
* @export
|
|
6601
|
-
*/
|
|
6602
|
-
declare const TelnyxApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6736
|
+
accountsListTags: (accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6603
6737
|
/**
|
|
6604
|
-
*
|
|
6605
|
-
* @summary
|
|
6606
|
-
* @param {
|
|
6738
|
+
* Removes a tag association from an account.
|
|
6739
|
+
* @summary Remove Tag From Account
|
|
6740
|
+
* @param {string} accountId
|
|
6741
|
+
* @param {string} tagId
|
|
6607
6742
|
* @param {*} [options] Override http request option.
|
|
6608
6743
|
* @throws {RequiredError}
|
|
6609
6744
|
*/
|
|
6610
|
-
|
|
6611
|
-
[key: string]: any;
|
|
6612
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
6613
|
-
};
|
|
6614
|
-
/**
|
|
6615
|
-
* TelnyxApi - object-oriented interface
|
|
6616
|
-
* @export
|
|
6617
|
-
* @class TelnyxApi
|
|
6618
|
-
* @extends {BaseAPI}
|
|
6619
|
-
*/
|
|
6620
|
-
declare class TelnyxApi extends BaseAPI {
|
|
6745
|
+
accountsRemoveTag: (accountId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6621
6746
|
/**
|
|
6622
|
-
*
|
|
6623
|
-
* @summary
|
|
6624
|
-
* @param {
|
|
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
|
|
6625
6751
|
* @param {*} [options] Override http request option.
|
|
6626
6752
|
* @throws {RequiredError}
|
|
6627
|
-
* @memberof TelnyxApi
|
|
6628
6753
|
*/
|
|
6629
|
-
|
|
6630
|
-
[key: string]: any;
|
|
6631
|
-
}, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6632
|
-
}
|
|
6633
|
-
/**
|
|
6634
|
-
* UnboundApi - axios parameter creator
|
|
6635
|
-
* @export
|
|
6636
|
-
*/
|
|
6637
|
-
declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6754
|
+
listingsAddTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6638
6755
|
/**
|
|
6639
|
-
*
|
|
6640
|
-
* @summary
|
|
6756
|
+
* List all tags associated with a listing.
|
|
6757
|
+
* @summary List Listing Tags
|
|
6758
|
+
* @param {string} listingId
|
|
6641
6759
|
* @param {*} [options] Override http request option.
|
|
6642
6760
|
* @throws {RequiredError}
|
|
6643
6761
|
*/
|
|
6644
|
-
|
|
6762
|
+
listingsListTags: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6645
6763
|
/**
|
|
6646
|
-
*
|
|
6647
|
-
* @summary
|
|
6648
|
-
* @param {string}
|
|
6649
|
-
* @param {
|
|
6764
|
+
* Removes a tag association from a listing.
|
|
6765
|
+
* @summary Remove Tag From Listing
|
|
6766
|
+
* @param {string} listingId
|
|
6767
|
+
* @param {string} tagId
|
|
6650
6768
|
* @param {*} [options] Override http request option.
|
|
6651
6769
|
* @throws {RequiredError}
|
|
6652
6770
|
*/
|
|
6653
|
-
|
|
6771
|
+
listingsRemoveTag: (listingId: string, tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6654
6772
|
/**
|
|
6655
|
-
*
|
|
6656
|
-
* @summary
|
|
6657
|
-
* @param {string}
|
|
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
|
|
6658
6777
|
* @param {*} [options] Override http request option.
|
|
6659
6778
|
* @throws {RequiredError}
|
|
6660
6779
|
*/
|
|
6661
|
-
|
|
6780
|
+
tagsAddChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6662
6781
|
/**
|
|
6663
|
-
*
|
|
6664
|
-
* @summary
|
|
6665
|
-
* @param {
|
|
6782
|
+
* Tags Create
|
|
6783
|
+
* @summary Tags Create
|
|
6784
|
+
* @param {APITagCreate} aPITagCreate
|
|
6666
6785
|
* @param {*} [options] Override http request option.
|
|
6667
6786
|
* @throws {RequiredError}
|
|
6668
6787
|
*/
|
|
6669
|
-
|
|
6788
|
+
tagsCreate: (aPITagCreate: APITagCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6670
6789
|
/**
|
|
6671
|
-
*
|
|
6672
|
-
* @summary
|
|
6673
|
-
* @param {string}
|
|
6674
|
-
* @param {APIAddressUpdate} aPIAddressUpdate
|
|
6790
|
+
* Tags Delete
|
|
6791
|
+
* @summary Tags Delete
|
|
6792
|
+
* @param {string} tagId
|
|
6675
6793
|
* @param {*} [options] Override http request option.
|
|
6676
6794
|
* @throws {RequiredError}
|
|
6677
6795
|
*/
|
|
6678
|
-
|
|
6796
|
+
tagsDelete: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6679
6797
|
/**
|
|
6680
|
-
*
|
|
6681
|
-
* @summary
|
|
6682
|
-
* @param {
|
|
6798
|
+
* Tags Get
|
|
6799
|
+
* @summary Tags Get
|
|
6800
|
+
* @param {string} tagId
|
|
6683
6801
|
* @param {*} [options] Override http request option.
|
|
6684
6802
|
* @throws {RequiredError}
|
|
6685
6803
|
*/
|
|
6686
|
-
|
|
6804
|
+
tagsGet: (tagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6687
6805
|
/**
|
|
6688
|
-
*
|
|
6689
|
-
* @summary
|
|
6690
|
-
* @param {string}
|
|
6691
|
-
* @param {string} listingId
|
|
6692
|
-
* @param {CreateContactListing} createContactListing
|
|
6806
|
+
* Tags List
|
|
6807
|
+
* @summary Tags List
|
|
6808
|
+
* @param {string | null} [searchString] Search by tag name
|
|
6693
6809
|
* @param {*} [options] Override http request option.
|
|
6694
6810
|
* @throws {RequiredError}
|
|
6695
6811
|
*/
|
|
6696
|
-
|
|
6812
|
+
tagsList: (searchString?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6697
6813
|
/**
|
|
6698
|
-
*
|
|
6699
|
-
* @summary
|
|
6700
|
-
* @param {
|
|
6814
|
+
* List all child tags associated with a parent tag.
|
|
6815
|
+
* @summary List Child Tags
|
|
6816
|
+
* @param {string} parentTagId
|
|
6701
6817
|
* @param {*} [options] Override http request option.
|
|
6702
6818
|
* @throws {RequiredError}
|
|
6703
6819
|
*/
|
|
6704
|
-
|
|
6820
|
+
tagsListChildTags: (parentTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6705
6821
|
/**
|
|
6706
|
-
*
|
|
6707
|
-
* @summary
|
|
6708
|
-
* @param {string}
|
|
6822
|
+
* Removes a child tag association from a parent tag.
|
|
6823
|
+
* @summary Remove Child Tag
|
|
6824
|
+
* @param {string} parentTagId
|
|
6825
|
+
* @param {string} childTagId
|
|
6709
6826
|
* @param {*} [options] Override http request option.
|
|
6710
6827
|
* @throws {RequiredError}
|
|
6711
6828
|
*/
|
|
6712
|
-
|
|
6829
|
+
tagsRemoveChildTag: (parentTagId: string, childTagId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6713
6830
|
/**
|
|
6714
|
-
*
|
|
6715
|
-
* @summary
|
|
6716
|
-
* @param {string}
|
|
6831
|
+
* Tags Update
|
|
6832
|
+
* @summary Tags Update
|
|
6833
|
+
* @param {string} tagId
|
|
6834
|
+
* @param {APITagUpdate} aPITagUpdate
|
|
6717
6835
|
* @param {*} [options] Override http request option.
|
|
6718
6836
|
* @throws {RequiredError}
|
|
6719
6837
|
*/
|
|
6720
|
-
|
|
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) => {
|
|
6721
6845
|
/**
|
|
6722
|
-
*
|
|
6723
|
-
* @summary
|
|
6724
|
-
* @param {string
|
|
6725
|
-
* @param {string
|
|
6726
|
-
* @param {number} [limit]
|
|
6727
|
-
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6728
|
-
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
6729
|
-
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
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
|
|
6730
6850
|
* @param {*} [options] Override http request option.
|
|
6731
6851
|
* @throws {RequiredError}
|
|
6732
6852
|
*/
|
|
6733
|
-
|
|
6853
|
+
accountsAddTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6734
6854
|
/**
|
|
6735
|
-
*
|
|
6736
|
-
* @summary
|
|
6737
|
-
* @param {string}
|
|
6738
|
-
* @param {string} listingId
|
|
6739
|
-
* @param {DeleteContactListing} deleteContactListing
|
|
6855
|
+
* List all tags associated with an account.
|
|
6856
|
+
* @summary List Account Tags
|
|
6857
|
+
* @param {string} accountId
|
|
6740
6858
|
* @param {*} [options] Override http request option.
|
|
6741
6859
|
* @throws {RequiredError}
|
|
6742
6860
|
*/
|
|
6743
|
-
|
|
6861
|
+
accountsListTags(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
|
|
6744
6862
|
/**
|
|
6745
|
-
*
|
|
6746
|
-
* @summary
|
|
6747
|
-
* @param {string}
|
|
6748
|
-
* @param {
|
|
6863
|
+
* Removes a tag association from an account.
|
|
6864
|
+
* @summary Remove Tag From Account
|
|
6865
|
+
* @param {string} accountId
|
|
6866
|
+
* @param {string} tagId
|
|
6749
6867
|
* @param {*} [options] Override http request option.
|
|
6750
6868
|
* @throws {RequiredError}
|
|
6751
6869
|
*/
|
|
6752
|
-
|
|
6870
|
+
accountsRemoveTag(accountId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6753
6871
|
/**
|
|
6754
|
-
*
|
|
6755
|
-
* @summary
|
|
6756
|
-
* @param {string} contactId
|
|
6872
|
+
* Associates a tag with a listing. This operation is idempotent.
|
|
6873
|
+
* @summary Add Tag To Listing
|
|
6757
6874
|
* @param {string} listingId
|
|
6758
|
-
* @param {
|
|
6875
|
+
* @param {string} tagId
|
|
6759
6876
|
* @param {*} [options] Override http request option.
|
|
6760
6877
|
* @throws {RequiredError}
|
|
6761
6878
|
*/
|
|
6762
|
-
|
|
6879
|
+
listingsAddTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6763
6880
|
/**
|
|
6764
|
-
*
|
|
6765
|
-
* @summary
|
|
6766
|
-
* @param {string}
|
|
6767
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
6881
|
+
* List all tags associated with a listing.
|
|
6882
|
+
* @summary List Listing Tags
|
|
6883
|
+
* @param {string} listingId
|
|
6768
6884
|
* @param {*} [options] Override http request option.
|
|
6769
6885
|
* @throws {RequiredError}
|
|
6770
6886
|
*/
|
|
6771
|
-
|
|
6887
|
+
listingsListTags(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Tag>>>;
|
|
6772
6888
|
/**
|
|
6773
|
-
*
|
|
6774
|
-
* @summary
|
|
6775
|
-
* @param {string}
|
|
6889
|
+
* Removes a tag association from a listing.
|
|
6890
|
+
* @summary Remove Tag From Listing
|
|
6891
|
+
* @param {string} listingId
|
|
6892
|
+
* @param {string} tagId
|
|
6776
6893
|
* @param {*} [options] Override http request option.
|
|
6777
6894
|
* @throws {RequiredError}
|
|
6778
6895
|
*/
|
|
6779
|
-
|
|
6896
|
+
listingsRemoveTag(listingId: string, tagId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6780
6897
|
/**
|
|
6781
|
-
*
|
|
6782
|
-
* @summary
|
|
6783
|
-
* @param {string
|
|
6784
|
-
* @param {string
|
|
6785
|
-
* @param {
|
|
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
|
+
/**
|
|
7413
|
+
* Contacts List
|
|
7414
|
+
* @summary Contacts List
|
|
7415
|
+
* @param {string | null} [searchString]
|
|
7416
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
7417
|
+
* @param {number} [limit]
|
|
7418
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
7419
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
7420
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
7421
|
+
* @param {*} [options] Override http request option.
|
|
7422
|
+
* @throws {RequiredError}
|
|
7423
|
+
*/
|
|
7424
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7425
|
+
/**
|
|
7426
|
+
* Removes an association between a contact and a listing.
|
|
7427
|
+
* @summary Delete Contact Listing
|
|
7428
|
+
* @param {string} contactId
|
|
7429
|
+
* @param {string} listingId
|
|
7430
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
7431
|
+
* @param {*} [options] Override http request option.
|
|
7432
|
+
* @throws {RequiredError}
|
|
7433
|
+
*/
|
|
7434
|
+
contactsRemoveListing: (contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7435
|
+
/**
|
|
7436
|
+
* Contacts Update
|
|
7437
|
+
* @summary Contacts Update
|
|
7438
|
+
* @param {string} contactId
|
|
7439
|
+
* @param {APIContactUpdate} aPIContactUpdate
|
|
7440
|
+
* @param {*} [options] Override http request option.
|
|
7441
|
+
* @throws {RequiredError}
|
|
7442
|
+
*/
|
|
7443
|
+
contactsUpdate: (contactId: string, aPIContactUpdate: APIContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7444
|
+
/**
|
|
7445
|
+
* Updates an association between a contact and a listing.
|
|
7446
|
+
* @summary Update Contact Listing
|
|
7447
|
+
* @param {string} contactId
|
|
7448
|
+
* @param {string} listingId
|
|
7449
|
+
* @param {UpdateContactListing} updateContactListing
|
|
7450
|
+
* @param {*} [options] Override http request option.
|
|
7451
|
+
* @throws {RequiredError}
|
|
7452
|
+
*/
|
|
7453
|
+
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7454
|
+
/**
|
|
7455
|
+
* Conversations Create
|
|
7456
|
+
* @summary Conversations Create
|
|
7457
|
+
* @param {string} inboxId
|
|
7458
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
7459
|
+
* @param {*} [options] Override http request option.
|
|
7460
|
+
* @throws {RequiredError}
|
|
7461
|
+
*/
|
|
7462
|
+
conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7463
|
+
/**
|
|
7464
|
+
* Conversations Get
|
|
7465
|
+
* @summary Conversations Get
|
|
7466
|
+
* @param {string} conversationId
|
|
7467
|
+
* @param {*} [options] Override http request option.
|
|
7468
|
+
* @throws {RequiredError}
|
|
7469
|
+
*/
|
|
7470
|
+
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7471
|
+
/**
|
|
7472
|
+
* List all conversations, must filter by contact_id
|
|
7473
|
+
* @summary Conversations List
|
|
7474
|
+
* @param {string | null} [searchString]
|
|
7475
|
+
* @param {string | null} [contactId]
|
|
7476
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
6786
7477
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6787
7478
|
* @param {number} [limit]
|
|
6788
7479
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -6925,6 +7616,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6925
7616
|
* @throws {RequiredError}
|
|
6926
7617
|
*/
|
|
6927
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>;
|
|
6928
7628
|
/**
|
|
6929
7629
|
* Listings Get
|
|
6930
7630
|
* @summary Listings Get
|
|
@@ -6947,6 +7647,23 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6947
7647
|
* @throws {RequiredError}
|
|
6948
7648
|
*/
|
|
6949
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>;
|
|
6950
7667
|
/**
|
|
6951
7668
|
* ManagedPhoneNumbers List
|
|
6952
7669
|
* @summary ManagedPhoneNumbers List
|
|
@@ -7077,6 +7794,73 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7077
7794
|
* @throws {RequiredError}
|
|
7078
7795
|
*/
|
|
7079
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>;
|
|
7080
7864
|
/**
|
|
7081
7865
|
* UserDevices Create
|
|
7082
7866
|
* @summary UserDevices Create
|
|
@@ -7107,6 +7891,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7107
7891
|
* @export
|
|
7108
7892
|
*/
|
|
7109
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>>;
|
|
7110
7903
|
/**
|
|
7111
7904
|
* Accounts List
|
|
7112
7905
|
* @summary Accounts List
|
|
@@ -7114,6 +7907,23 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
7114
7907
|
* @throws {RequiredError}
|
|
7115
7908
|
*/
|
|
7116
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>>;
|
|
7117
7927
|
/**
|
|
7118
7928
|
* Addresses Create
|
|
7119
7929
|
* @summary Addresses Create
|
|
@@ -7397,6 +8207,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
7397
8207
|
* @throws {RequiredError}
|
|
7398
8208
|
*/
|
|
7399
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>>;
|
|
7400
8219
|
/**
|
|
7401
8220
|
* Listings Get
|
|
7402
8221
|
* @summary Listings Get
|
|
@@ -7419,6 +8238,23 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
7419
8238
|
* @throws {RequiredError}
|
|
7420
8239
|
*/
|
|
7421
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>>;
|
|
7422
8258
|
/**
|
|
7423
8259
|
* ManagedPhoneNumbers List
|
|
7424
8260
|
* @summary ManagedPhoneNumbers List
|
|
@@ -7549,6 +8385,73 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
7549
8385
|
* @throws {RequiredError}
|
|
7550
8386
|
*/
|
|
7551
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>>;
|
|
7552
8455
|
/**
|
|
7553
8456
|
* UserDevices Create
|
|
7554
8457
|
* @summary UserDevices Create
|
|
@@ -7579,6 +8482,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
7579
8482
|
* @export
|
|
7580
8483
|
*/
|
|
7581
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>;
|
|
7582
8494
|
/**
|
|
7583
8495
|
* Accounts List
|
|
7584
8496
|
* @summary Accounts List
|
|
@@ -7586,6 +8498,23 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7586
8498
|
* @throws {RequiredError}
|
|
7587
8499
|
*/
|
|
7588
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>;
|
|
7589
8518
|
/**
|
|
7590
8519
|
* Addresses Create
|
|
7591
8520
|
* @summary Addresses Create
|
|
@@ -7869,6 +8798,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7869
8798
|
* @throws {RequiredError}
|
|
7870
8799
|
*/
|
|
7871
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>;
|
|
7872
8810
|
/**
|
|
7873
8811
|
* Listings Get
|
|
7874
8812
|
* @summary Listings Get
|
|
@@ -7891,6 +8829,23 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7891
8829
|
* @throws {RequiredError}
|
|
7892
8830
|
*/
|
|
7893
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>;
|
|
7894
8849
|
/**
|
|
7895
8850
|
* ManagedPhoneNumbers List
|
|
7896
8851
|
* @summary ManagedPhoneNumbers List
|
|
@@ -8021,6 +8976,73 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
8021
8976
|
* @throws {RequiredError}
|
|
8022
8977
|
*/
|
|
8023
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>;
|
|
8024
9046
|
/**
|
|
8025
9047
|
* UserDevices Create
|
|
8026
9048
|
* @summary UserDevices Create
|
|
@@ -8053,6 +9075,16 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
8053
9075
|
* @extends {BaseAPI}
|
|
8054
9076
|
*/
|
|
8055
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>>;
|
|
8056
9088
|
/**
|
|
8057
9089
|
* Accounts List
|
|
8058
9090
|
* @summary Accounts List
|
|
@@ -8061,6 +9093,25 @@ declare class UnboundApi extends BaseAPI {
|
|
|
8061
9093
|
* @memberof UnboundApi
|
|
8062
9094
|
*/
|
|
8063
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>>;
|
|
8064
9115
|
/**
|
|
8065
9116
|
* Addresses Create
|
|
8066
9117
|
* @summary Addresses Create
|
|
@@ -8376,6 +9427,16 @@ declare class UnboundApi extends BaseAPI {
|
|
|
8376
9427
|
* @memberof UnboundApi
|
|
8377
9428
|
*/
|
|
8378
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>>;
|
|
8379
9440
|
/**
|
|
8380
9441
|
* Listings Get
|
|
8381
9442
|
* @summary Listings Get
|
|
@@ -8400,6 +9461,25 @@ declare class UnboundApi extends BaseAPI {
|
|
|
8400
9461
|
* @memberof UnboundApi
|
|
8401
9462
|
*/
|
|
8402
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>>;
|
|
8403
9483
|
/**
|
|
8404
9484
|
* ManagedPhoneNumbers List
|
|
8405
9485
|
* @summary ManagedPhoneNumbers List
|
|
@@ -8544,6 +9624,81 @@ declare class UnboundApi extends BaseAPI {
|
|
|
8544
9624
|
* @memberof UnboundApi
|
|
8545
9625
|
*/
|
|
8546
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>>;
|
|
8547
9702
|
/**
|
|
8548
9703
|
* UserDevices Create
|
|
8549
9704
|
* @summary UserDevices Create
|
|
@@ -8665,4 +9820,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
8665
9820
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8666
9821
|
}
|
|
8667
9822
|
|
|
8668
|
-
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 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, 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 };
|