@ember-home/unbound-ts-client 0.0.2 → 0.0.3
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 +394 -1
- package/dist/index.d.ts +394 -1
- package/dist/index.js +698 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +697 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1700,5 +1700,398 @@ declare class TasksApi extends BaseAPI {
|
|
|
1700
1700
|
*/
|
|
1701
1701
|
tasksUpdate(taskId: string, taskUpdate: TaskUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<TasksUpdateResponse, any>>;
|
|
1702
1702
|
}
|
|
1703
|
+
/**
|
|
1704
|
+
* UnboundApi - axios parameter creator
|
|
1705
|
+
* @export
|
|
1706
|
+
*/
|
|
1707
|
+
declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1708
|
+
/**
|
|
1709
|
+
* Create a new contact
|
|
1710
|
+
* @summary Contacts Create
|
|
1711
|
+
* @param {ContactCreate} contactCreate
|
|
1712
|
+
* @param {*} [options] Override http request option.
|
|
1713
|
+
* @throws {RequiredError}
|
|
1714
|
+
*/
|
|
1715
|
+
contactsCreate: (contactCreate: ContactCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1716
|
+
/**
|
|
1717
|
+
* Delete a contact
|
|
1718
|
+
* @summary Contacts Delete
|
|
1719
|
+
* @param {string} contactId
|
|
1720
|
+
* @param {*} [options] Override http request option.
|
|
1721
|
+
* @throws {RequiredError}
|
|
1722
|
+
*/
|
|
1723
|
+
contactsDelete: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1724
|
+
/**
|
|
1725
|
+
* Get a contact by ID
|
|
1726
|
+
* @summary Contacts Get
|
|
1727
|
+
* @param {string} contactId
|
|
1728
|
+
* @param {*} [options] Override http request option.
|
|
1729
|
+
* @throws {RequiredError}
|
|
1730
|
+
*/
|
|
1731
|
+
contactsGet: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1732
|
+
/**
|
|
1733
|
+
* List all contacts
|
|
1734
|
+
* @summary Contacts List
|
|
1735
|
+
* @param {*} [options] Override http request option.
|
|
1736
|
+
* @throws {RequiredError}
|
|
1737
|
+
*/
|
|
1738
|
+
contactsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1739
|
+
/**
|
|
1740
|
+
* Update a contact
|
|
1741
|
+
* @summary Contacts Update
|
|
1742
|
+
* @param {string} contactId
|
|
1743
|
+
* @param {ContactUpdate} contactUpdate
|
|
1744
|
+
* @param {*} [options] Override http request option.
|
|
1745
|
+
* @throws {RequiredError}
|
|
1746
|
+
*/
|
|
1747
|
+
contactsUpdate: (contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1748
|
+
/**
|
|
1749
|
+
*
|
|
1750
|
+
* @summary Tasks Create
|
|
1751
|
+
* @param {string} projectId
|
|
1752
|
+
* @param {TaskCreate} taskCreate
|
|
1753
|
+
* @param {*} [options] Override http request option.
|
|
1754
|
+
* @throws {RequiredError}
|
|
1755
|
+
*/
|
|
1756
|
+
tasksCreate: (projectId: string, taskCreate: TaskCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @summary Tasks Delete
|
|
1760
|
+
* @param {string} taskId
|
|
1761
|
+
* @param {*} [options] Override http request option.
|
|
1762
|
+
* @throws {RequiredError}
|
|
1763
|
+
*/
|
|
1764
|
+
tasksDelete: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1765
|
+
/**
|
|
1766
|
+
*
|
|
1767
|
+
* @summary Tasks Get
|
|
1768
|
+
* @param {string} taskId
|
|
1769
|
+
* @param {*} [options] Override http request option.
|
|
1770
|
+
* @throws {RequiredError}
|
|
1771
|
+
*/
|
|
1772
|
+
tasksGet: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @summary Tasks List
|
|
1776
|
+
* @param {*} [options] Override http request option.
|
|
1777
|
+
* @throws {RequiredError}
|
|
1778
|
+
*/
|
|
1779
|
+
tasksList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1780
|
+
/**
|
|
1781
|
+
*
|
|
1782
|
+
* @summary Tasks Update
|
|
1783
|
+
* @param {string} taskId
|
|
1784
|
+
* @param {TaskUpdate} taskUpdate
|
|
1785
|
+
* @param {*} [options] Override http request option.
|
|
1786
|
+
* @throws {RequiredError}
|
|
1787
|
+
*/
|
|
1788
|
+
tasksUpdate: (taskId: string, taskUpdate: TaskUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1789
|
+
/**
|
|
1790
|
+
*
|
|
1791
|
+
* @summary Unifiedwebhook
|
|
1792
|
+
* @param {object} body
|
|
1793
|
+
* @param {*} [options] Override http request option.
|
|
1794
|
+
* @throws {RequiredError}
|
|
1795
|
+
*/
|
|
1796
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1797
|
+
};
|
|
1798
|
+
/**
|
|
1799
|
+
* UnboundApi - functional programming interface
|
|
1800
|
+
* @export
|
|
1801
|
+
*/
|
|
1802
|
+
declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
1803
|
+
/**
|
|
1804
|
+
* Create a new contact
|
|
1805
|
+
* @summary Contacts Create
|
|
1806
|
+
* @param {ContactCreate} contactCreate
|
|
1807
|
+
* @param {*} [options] Override http request option.
|
|
1808
|
+
* @throws {RequiredError}
|
|
1809
|
+
*/
|
|
1810
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreateResponse>>;
|
|
1811
|
+
/**
|
|
1812
|
+
* Delete a contact
|
|
1813
|
+
* @summary Contacts Delete
|
|
1814
|
+
* @param {string} contactId
|
|
1815
|
+
* @param {*} [options] Override http request option.
|
|
1816
|
+
* @throws {RequiredError}
|
|
1817
|
+
*/
|
|
1818
|
+
contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1819
|
+
/**
|
|
1820
|
+
* Get a contact by ID
|
|
1821
|
+
* @summary Contacts Get
|
|
1822
|
+
* @param {string} contactId
|
|
1823
|
+
* @param {*} [options] Override http request option.
|
|
1824
|
+
* @throws {RequiredError}
|
|
1825
|
+
*/
|
|
1826
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGetResponse>>;
|
|
1827
|
+
/**
|
|
1828
|
+
* List all contacts
|
|
1829
|
+
* @summary Contacts List
|
|
1830
|
+
* @param {*} [options] Override http request option.
|
|
1831
|
+
* @throws {RequiredError}
|
|
1832
|
+
*/
|
|
1833
|
+
contactsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsListResponse>>;
|
|
1834
|
+
/**
|
|
1835
|
+
* Update a contact
|
|
1836
|
+
* @summary Contacts Update
|
|
1837
|
+
* @param {string} contactId
|
|
1838
|
+
* @param {ContactUpdate} contactUpdate
|
|
1839
|
+
* @param {*} [options] Override http request option.
|
|
1840
|
+
* @throws {RequiredError}
|
|
1841
|
+
*/
|
|
1842
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsUpdateResponse>>;
|
|
1843
|
+
/**
|
|
1844
|
+
*
|
|
1845
|
+
* @summary Tasks Create
|
|
1846
|
+
* @param {string} projectId
|
|
1847
|
+
* @param {TaskCreate} taskCreate
|
|
1848
|
+
* @param {*} [options] Override http request option.
|
|
1849
|
+
* @throws {RequiredError}
|
|
1850
|
+
*/
|
|
1851
|
+
tasksCreate(projectId: string, taskCreate: TaskCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TasksCreateResponse>>;
|
|
1852
|
+
/**
|
|
1853
|
+
*
|
|
1854
|
+
* @summary Tasks Delete
|
|
1855
|
+
* @param {string} taskId
|
|
1856
|
+
* @param {*} [options] Override http request option.
|
|
1857
|
+
* @throws {RequiredError}
|
|
1858
|
+
*/
|
|
1859
|
+
tasksDelete(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @summary Tasks Get
|
|
1863
|
+
* @param {string} taskId
|
|
1864
|
+
* @param {*} [options] Override http request option.
|
|
1865
|
+
* @throws {RequiredError}
|
|
1866
|
+
*/
|
|
1867
|
+
tasksGet(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TasksGetResponse>>;
|
|
1868
|
+
/**
|
|
1869
|
+
*
|
|
1870
|
+
* @summary Tasks List
|
|
1871
|
+
* @param {*} [options] Override http request option.
|
|
1872
|
+
* @throws {RequiredError}
|
|
1873
|
+
*/
|
|
1874
|
+
tasksList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TasksListResponse>>;
|
|
1875
|
+
/**
|
|
1876
|
+
*
|
|
1877
|
+
* @summary Tasks Update
|
|
1878
|
+
* @param {string} taskId
|
|
1879
|
+
* @param {TaskUpdate} taskUpdate
|
|
1880
|
+
* @param {*} [options] Override http request option.
|
|
1881
|
+
* @throws {RequiredError}
|
|
1882
|
+
*/
|
|
1883
|
+
tasksUpdate(taskId: string, taskUpdate: TaskUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TasksUpdateResponse>>;
|
|
1884
|
+
/**
|
|
1885
|
+
*
|
|
1886
|
+
* @summary Unifiedwebhook
|
|
1887
|
+
* @param {object} body
|
|
1888
|
+
* @param {*} [options] Override http request option.
|
|
1889
|
+
* @throws {RequiredError}
|
|
1890
|
+
*/
|
|
1891
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1892
|
+
};
|
|
1893
|
+
/**
|
|
1894
|
+
* UnboundApi - factory interface
|
|
1895
|
+
* @export
|
|
1896
|
+
*/
|
|
1897
|
+
declare const UnboundApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1898
|
+
/**
|
|
1899
|
+
* Create a new contact
|
|
1900
|
+
* @summary Contacts Create
|
|
1901
|
+
* @param {ContactCreate} contactCreate
|
|
1902
|
+
* @param {*} [options] Override http request option.
|
|
1903
|
+
* @throws {RequiredError}
|
|
1904
|
+
*/
|
|
1905
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreateResponse>;
|
|
1906
|
+
/**
|
|
1907
|
+
* Delete a contact
|
|
1908
|
+
* @summary Contacts Delete
|
|
1909
|
+
* @param {string} contactId
|
|
1910
|
+
* @param {*} [options] Override http request option.
|
|
1911
|
+
* @throws {RequiredError}
|
|
1912
|
+
*/
|
|
1913
|
+
contactsDelete(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1914
|
+
/**
|
|
1915
|
+
* Get a contact by ID
|
|
1916
|
+
* @summary Contacts Get
|
|
1917
|
+
* @param {string} contactId
|
|
1918
|
+
* @param {*} [options] Override http request option.
|
|
1919
|
+
* @throws {RequiredError}
|
|
1920
|
+
*/
|
|
1921
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGetResponse>;
|
|
1922
|
+
/**
|
|
1923
|
+
* List all contacts
|
|
1924
|
+
* @summary Contacts List
|
|
1925
|
+
* @param {*} [options] Override http request option.
|
|
1926
|
+
* @throws {RequiredError}
|
|
1927
|
+
*/
|
|
1928
|
+
contactsList(options?: RawAxiosRequestConfig): AxiosPromise<ContactsListResponse>;
|
|
1929
|
+
/**
|
|
1930
|
+
* Update a contact
|
|
1931
|
+
* @summary Contacts Update
|
|
1932
|
+
* @param {string} contactId
|
|
1933
|
+
* @param {ContactUpdate} contactUpdate
|
|
1934
|
+
* @param {*} [options] Override http request option.
|
|
1935
|
+
* @throws {RequiredError}
|
|
1936
|
+
*/
|
|
1937
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdateResponse>;
|
|
1938
|
+
/**
|
|
1939
|
+
*
|
|
1940
|
+
* @summary Tasks Create
|
|
1941
|
+
* @param {string} projectId
|
|
1942
|
+
* @param {TaskCreate} taskCreate
|
|
1943
|
+
* @param {*} [options] Override http request option.
|
|
1944
|
+
* @throws {RequiredError}
|
|
1945
|
+
*/
|
|
1946
|
+
tasksCreate(projectId: string, taskCreate: TaskCreate, options?: RawAxiosRequestConfig): AxiosPromise<TasksCreateResponse>;
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @summary Tasks Delete
|
|
1950
|
+
* @param {string} taskId
|
|
1951
|
+
* @param {*} [options] Override http request option.
|
|
1952
|
+
* @throws {RequiredError}
|
|
1953
|
+
*/
|
|
1954
|
+
tasksDelete(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1955
|
+
/**
|
|
1956
|
+
*
|
|
1957
|
+
* @summary Tasks Get
|
|
1958
|
+
* @param {string} taskId
|
|
1959
|
+
* @param {*} [options] Override http request option.
|
|
1960
|
+
* @throws {RequiredError}
|
|
1961
|
+
*/
|
|
1962
|
+
tasksGet(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<TasksGetResponse>;
|
|
1963
|
+
/**
|
|
1964
|
+
*
|
|
1965
|
+
* @summary Tasks List
|
|
1966
|
+
* @param {*} [options] Override http request option.
|
|
1967
|
+
* @throws {RequiredError}
|
|
1968
|
+
*/
|
|
1969
|
+
tasksList(options?: RawAxiosRequestConfig): AxiosPromise<TasksListResponse>;
|
|
1970
|
+
/**
|
|
1971
|
+
*
|
|
1972
|
+
* @summary Tasks Update
|
|
1973
|
+
* @param {string} taskId
|
|
1974
|
+
* @param {TaskUpdate} taskUpdate
|
|
1975
|
+
* @param {*} [options] Override http request option.
|
|
1976
|
+
* @throws {RequiredError}
|
|
1977
|
+
*/
|
|
1978
|
+
tasksUpdate(taskId: string, taskUpdate: TaskUpdate, options?: RawAxiosRequestConfig): AxiosPromise<TasksUpdateResponse>;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @summary Unifiedwebhook
|
|
1982
|
+
* @param {object} body
|
|
1983
|
+
* @param {*} [options] Override http request option.
|
|
1984
|
+
* @throws {RequiredError}
|
|
1985
|
+
*/
|
|
1986
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
1987
|
+
};
|
|
1988
|
+
/**
|
|
1989
|
+
* UnboundApi - object-oriented interface
|
|
1990
|
+
* @export
|
|
1991
|
+
* @class UnboundApi
|
|
1992
|
+
* @extends {BaseAPI}
|
|
1993
|
+
*/
|
|
1994
|
+
declare class UnboundApi extends BaseAPI {
|
|
1995
|
+
/**
|
|
1996
|
+
* Create a new contact
|
|
1997
|
+
* @summary Contacts Create
|
|
1998
|
+
* @param {ContactCreate} contactCreate
|
|
1999
|
+
* @param {*} [options] Override http request option.
|
|
2000
|
+
* @throws {RequiredError}
|
|
2001
|
+
* @memberof UnboundApi
|
|
2002
|
+
*/
|
|
2003
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreateResponse, any>>;
|
|
2004
|
+
/**
|
|
2005
|
+
* Delete a contact
|
|
2006
|
+
* @summary Contacts Delete
|
|
2007
|
+
* @param {string} contactId
|
|
2008
|
+
* @param {*} [options] Override http request option.
|
|
2009
|
+
* @throws {RequiredError}
|
|
2010
|
+
* @memberof UnboundApi
|
|
2011
|
+
*/
|
|
2012
|
+
contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2013
|
+
/**
|
|
2014
|
+
* Get a contact by ID
|
|
2015
|
+
* @summary Contacts Get
|
|
2016
|
+
* @param {string} contactId
|
|
2017
|
+
* @param {*} [options] Override http request option.
|
|
2018
|
+
* @throws {RequiredError}
|
|
2019
|
+
* @memberof UnboundApi
|
|
2020
|
+
*/
|
|
2021
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGetResponse, any>>;
|
|
2022
|
+
/**
|
|
2023
|
+
* List all contacts
|
|
2024
|
+
* @summary Contacts List
|
|
2025
|
+
* @param {*} [options] Override http request option.
|
|
2026
|
+
* @throws {RequiredError}
|
|
2027
|
+
* @memberof UnboundApi
|
|
2028
|
+
*/
|
|
2029
|
+
contactsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsListResponse, any>>;
|
|
2030
|
+
/**
|
|
2031
|
+
* Update a contact
|
|
2032
|
+
* @summary Contacts Update
|
|
2033
|
+
* @param {string} contactId
|
|
2034
|
+
* @param {ContactUpdate} contactUpdate
|
|
2035
|
+
* @param {*} [options] Override http request option.
|
|
2036
|
+
* @throws {RequiredError}
|
|
2037
|
+
* @memberof UnboundApi
|
|
2038
|
+
*/
|
|
2039
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdateResponse, any>>;
|
|
2040
|
+
/**
|
|
2041
|
+
*
|
|
2042
|
+
* @summary Tasks Create
|
|
2043
|
+
* @param {string} projectId
|
|
2044
|
+
* @param {TaskCreate} taskCreate
|
|
2045
|
+
* @param {*} [options] Override http request option.
|
|
2046
|
+
* @throws {RequiredError}
|
|
2047
|
+
* @memberof UnboundApi
|
|
2048
|
+
*/
|
|
2049
|
+
tasksCreate(projectId: string, taskCreate: TaskCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<TasksCreateResponse, any>>;
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @summary Tasks Delete
|
|
2053
|
+
* @param {string} taskId
|
|
2054
|
+
* @param {*} [options] Override http request option.
|
|
2055
|
+
* @throws {RequiredError}
|
|
2056
|
+
* @memberof UnboundApi
|
|
2057
|
+
*/
|
|
2058
|
+
tasksDelete(taskId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2059
|
+
/**
|
|
2060
|
+
*
|
|
2061
|
+
* @summary Tasks Get
|
|
2062
|
+
* @param {string} taskId
|
|
2063
|
+
* @param {*} [options] Override http request option.
|
|
2064
|
+
* @throws {RequiredError}
|
|
2065
|
+
* @memberof UnboundApi
|
|
2066
|
+
*/
|
|
2067
|
+
tasksGet(taskId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<TasksGetResponse, any>>;
|
|
2068
|
+
/**
|
|
2069
|
+
*
|
|
2070
|
+
* @summary Tasks List
|
|
2071
|
+
* @param {*} [options] Override http request option.
|
|
2072
|
+
* @throws {RequiredError}
|
|
2073
|
+
* @memberof UnboundApi
|
|
2074
|
+
*/
|
|
2075
|
+
tasksList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<TasksListResponse, any>>;
|
|
2076
|
+
/**
|
|
2077
|
+
*
|
|
2078
|
+
* @summary Tasks Update
|
|
2079
|
+
* @param {string} taskId
|
|
2080
|
+
* @param {TaskUpdate} taskUpdate
|
|
2081
|
+
* @param {*} [options] Override http request option.
|
|
2082
|
+
* @throws {RequiredError}
|
|
2083
|
+
* @memberof UnboundApi
|
|
2084
|
+
*/
|
|
2085
|
+
tasksUpdate(taskId: string, taskUpdate: TaskUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<TasksUpdateResponse, any>>;
|
|
2086
|
+
/**
|
|
2087
|
+
*
|
|
2088
|
+
* @summary Unifiedwebhook
|
|
2089
|
+
* @param {object} body
|
|
2090
|
+
* @param {*} [options] Override http request option.
|
|
2091
|
+
* @throws {RequiredError}
|
|
2092
|
+
* @memberof UnboundApi
|
|
2093
|
+
*/
|
|
2094
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2095
|
+
}
|
|
1703
2096
|
|
|
1704
|
-
export { type APIValidationError, type APIValidationErrorLocInner, Configuration, type ConfigurationParameters, type Contact, type ContactAddress, type ContactAvatar, ContactAvatarAvatarTypeEnum, type ContactCreate, type ContactTag, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, type EmailMarketingListSuppression, type EmailMarketingSubscription, type EmailMarketingSuppression, type EmailSubscriptionsInput, type EmailSubscriptionsOutput, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type PredictiveAnalytics, type SmsMarketingSubscription, type SmsSubscriptionsInput, type SmsSubscriptionsOutput, type SmsTransactionalSubscription, type SubscriptionMethodMetadata, type SubscriptionsInput, type SubscriptionsOutput, type Task, type TaskCreate, type TaskUpdate, TasksApi, TasksApiAxiosParamCreator, TasksApiFactory, TasksApiFp, type TasksCreateResponse, type TasksGetResponse, type TasksListResponse, type TasksUpdateResponse };
|
|
2097
|
+
export { type APIValidationError, type APIValidationErrorLocInner, Configuration, type ConfigurationParameters, type Contact, type ContactAddress, type ContactAvatar, ContactAvatarAvatarTypeEnum, type ContactCreate, type ContactTag, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, type EmailMarketingListSuppression, type EmailMarketingSubscription, type EmailMarketingSuppression, type EmailSubscriptionsInput, type EmailSubscriptionsOutput, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type PredictiveAnalytics, type SmsMarketingSubscription, type SmsSubscriptionsInput, type SmsSubscriptionsOutput, type SmsTransactionalSubscription, type SubscriptionMethodMetadata, type SubscriptionsInput, type SubscriptionsOutput, type Task, type TaskCreate, type TaskUpdate, TasksApi, TasksApiAxiosParamCreator, TasksApiFactory, TasksApiFp, type TasksCreateResponse, type TasksGetResponse, type TasksListResponse, type TasksUpdateResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|