yellowgrid-api-ts 3.2.30-dev.0 → 3.2.31-dev.0
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/.openapi-generator/VERSION +1 -1
- package/api.ts +3720 -8
- package/base.ts +24 -0
- package/common.ts +38 -1
- package/configuration.ts +18 -24
- package/dist/api.d.ts +3720 -8
- package/dist/api.js +371 -4
- package/dist/base.d.ts +24 -0
- package/dist/base.js +19 -0
- package/dist/common.d.ts +37 -0
- package/dist/common.js +37 -0
- package/dist/configuration.d.ts +17 -24
- package/dist/configuration.js +1 -1
- package/docs/ServicesApi.md +2 -2
- package/openapitools.json +1 -1
- package/package.json +1 -1
- package/docs/IncidentDTO.md +0 -35
- package/docs/IncidentRequestDTO.md +0 -25
- package/docs/IncidentSubscriptionModel.md +0 -23
- package/docs/IncidentUpdateDTO.md +0 -27
- package/docs/IncidentUpdateEntity.md +0 -29
- package/docs/IncidentUpdateRequestDTO.md +0 -23
- package/docs/NumberPortDTO.md +0 -51
- package/docs/NumberPortEntity.md +0 -47
- package/docs/NumberPortModel.md +0 -51
- package/docs/NumberPortRangeDTO.md +0 -33
- package/docs/NumberPortRangeRequestDTO.md +0 -27
- package/docs/NumberPortingApi.md +0 -658
- package/docs/NumberPortsModel.md +0 -27
- package/docs/SupportTicketModel.md +0 -41
package/dist/api.js
CHANGED
|
@@ -332,6 +332,7 @@ exports.UpgradeRequestModelSchoolTypeEnum = {
|
|
|
332
332
|
};
|
|
333
333
|
/**
|
|
334
334
|
* AccountsApi - axios parameter creator
|
|
335
|
+
* @export
|
|
335
336
|
*/
|
|
336
337
|
var AccountsApiAxiosParamCreator = function (configuration) {
|
|
337
338
|
var _this = this;
|
|
@@ -1055,6 +1056,7 @@ var AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
1055
1056
|
exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator;
|
|
1056
1057
|
/**
|
|
1057
1058
|
* AccountsApi - functional programming interface
|
|
1059
|
+
* @export
|
|
1058
1060
|
*/
|
|
1059
1061
|
var AccountsApiFp = function (configuration) {
|
|
1060
1062
|
var localVarAxiosParamCreator = (0, exports.AccountsApiAxiosParamCreator)(configuration);
|
|
@@ -1503,6 +1505,7 @@ var AccountsApiFp = function (configuration) {
|
|
|
1503
1505
|
exports.AccountsApiFp = AccountsApiFp;
|
|
1504
1506
|
/**
|
|
1505
1507
|
* AccountsApi - factory interface
|
|
1508
|
+
* @export
|
|
1506
1509
|
*/
|
|
1507
1510
|
var AccountsApiFactory = function (configuration, basePath, axios) {
|
|
1508
1511
|
var localVarFp = (0, exports.AccountsApiFp)(configuration);
|
|
@@ -1704,6 +1707,9 @@ var AccountsApiFactory = function (configuration, basePath, axios) {
|
|
|
1704
1707
|
exports.AccountsApiFactory = AccountsApiFactory;
|
|
1705
1708
|
/**
|
|
1706
1709
|
* AccountsApi - object-oriented interface
|
|
1710
|
+
* @export
|
|
1711
|
+
* @class AccountsApi
|
|
1712
|
+
* @extends {BaseAPI}
|
|
1707
1713
|
*/
|
|
1708
1714
|
var AccountsApi = /** @class */ (function (_super) {
|
|
1709
1715
|
__extends(AccountsApi, _super);
|
|
@@ -1716,6 +1722,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1716
1722
|
* @param {string} id OAuth 2.0 Client ID
|
|
1717
1723
|
* @param {*} [options] Override http request option.
|
|
1718
1724
|
* @throws {RequiredError}
|
|
1725
|
+
* @memberof AccountsApi
|
|
1719
1726
|
*/
|
|
1720
1727
|
AccountsApi.prototype.deleteDeleteClientCredentials = function (id, options) {
|
|
1721
1728
|
var _this = this;
|
|
@@ -1727,6 +1734,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1727
1734
|
* @param {string} email Contact Email Address
|
|
1728
1735
|
* @param {*} [options] Override http request option.
|
|
1729
1736
|
* @throws {RequiredError}
|
|
1737
|
+
* @memberof AccountsApi
|
|
1730
1738
|
*/
|
|
1731
1739
|
AccountsApi.prototype.deleteUpdateAccountContact = function (email, options) {
|
|
1732
1740
|
var _this = this;
|
|
@@ -1737,6 +1745,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1737
1745
|
* @summary Get Account
|
|
1738
1746
|
* @param {*} [options] Override http request option.
|
|
1739
1747
|
* @throws {RequiredError}
|
|
1748
|
+
* @memberof AccountsApi
|
|
1740
1749
|
*/
|
|
1741
1750
|
AccountsApi.prototype.getGetAccount = function (options) {
|
|
1742
1751
|
var _this = this;
|
|
@@ -1748,6 +1757,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1748
1757
|
* @param {string} [email] Contact Email Address
|
|
1749
1758
|
* @param {*} [options] Override http request option.
|
|
1750
1759
|
* @throws {RequiredError}
|
|
1760
|
+
* @memberof AccountsApi
|
|
1751
1761
|
*/
|
|
1752
1762
|
AccountsApi.prototype.getGetAccountContacts = function (email, options) {
|
|
1753
1763
|
var _this = this;
|
|
@@ -1759,6 +1769,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1759
1769
|
* @param {number} id Customer ID
|
|
1760
1770
|
* @param {*} [options] Override http request option.
|
|
1761
1771
|
* @throws {RequiredError}
|
|
1772
|
+
* @memberof AccountsApi
|
|
1762
1773
|
*/
|
|
1763
1774
|
AccountsApi.prototype.getGetAccountDetailedSummary = function (id, options) {
|
|
1764
1775
|
var _this = this;
|
|
@@ -1773,6 +1784,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1773
1784
|
* @param {boolean} [active] Active
|
|
1774
1785
|
* @param {*} [options] Override http request option.
|
|
1775
1786
|
* @throws {RequiredError}
|
|
1787
|
+
* @memberof AccountsApi
|
|
1776
1788
|
*/
|
|
1777
1789
|
AccountsApi.prototype.getGetAccounts = function (pageSize, page, search, active, options) {
|
|
1778
1790
|
var _this = this;
|
|
@@ -1783,6 +1795,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1783
1795
|
* @summary Get user\'s client credentials
|
|
1784
1796
|
* @param {*} [options] Override http request option.
|
|
1785
1797
|
* @throws {RequiredError}
|
|
1798
|
+
* @memberof AccountsApi
|
|
1786
1799
|
*/
|
|
1787
1800
|
AccountsApi.prototype.getGetClientCredentials = function (options) {
|
|
1788
1801
|
var _this = this;
|
|
@@ -1793,6 +1806,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1793
1806
|
* @summary Get 3CX Keys
|
|
1794
1807
|
* @param {*} [options] Override http request option.
|
|
1795
1808
|
* @throws {RequiredError}
|
|
1809
|
+
* @memberof AccountsApi
|
|
1796
1810
|
*/
|
|
1797
1811
|
AccountsApi.prototype.getGetCustomerKeys = function (options) {
|
|
1798
1812
|
var _this = this;
|
|
@@ -1804,6 +1818,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1804
1818
|
* @param {string} token Verification Token
|
|
1805
1819
|
* @param {*} [options] Override http request option.
|
|
1806
1820
|
* @throws {RequiredError}
|
|
1821
|
+
* @memberof AccountsApi
|
|
1807
1822
|
*/
|
|
1808
1823
|
AccountsApi.prototype.getVerifyEmailAddress = function (token, options) {
|
|
1809
1824
|
var _this = this;
|
|
@@ -1814,6 +1829,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1814
1829
|
* @param {PatchSetTcxWizardCnameRequest} [patchSetTcxWizardCnameRequest] CNAME Request
|
|
1815
1830
|
* @param {*} [options] Override http request option.
|
|
1816
1831
|
* @throws {RequiredError}
|
|
1832
|
+
* @memberof AccountsApi
|
|
1817
1833
|
*/
|
|
1818
1834
|
AccountsApi.prototype.patchSetTcxWizardCname = function (patchSetTcxWizardCnameRequest, options) {
|
|
1819
1835
|
var _this = this;
|
|
@@ -1826,6 +1842,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1826
1842
|
* @param {PatchUpdateAccountContactPasswordRequest} [patchUpdateAccountContactPasswordRequest] New account request
|
|
1827
1843
|
* @param {*} [options] Override http request option.
|
|
1828
1844
|
* @throws {RequiredError}
|
|
1845
|
+
* @memberof AccountsApi
|
|
1829
1846
|
*/
|
|
1830
1847
|
AccountsApi.prototype.patchUpdateAccountContactPassword = function (token, patchUpdateAccountContactPasswordRequest, options) {
|
|
1831
1848
|
var _this = this;
|
|
@@ -1837,6 +1854,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1837
1854
|
* @param {AccountContactRequestModel} [accountContactRequestModel] New account request
|
|
1838
1855
|
* @param {*} [options] Override http request option.
|
|
1839
1856
|
* @throws {RequiredError}
|
|
1857
|
+
* @memberof AccountsApi
|
|
1840
1858
|
*/
|
|
1841
1859
|
AccountsApi.prototype.postGetAccountContacts = function (accountContactRequestModel, options) {
|
|
1842
1860
|
var _this = this;
|
|
@@ -1848,6 +1866,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1848
1866
|
* @param {AccountRequestModel} [accountRequestModel] New account request
|
|
1849
1867
|
* @param {*} [options] Override http request option.
|
|
1850
1868
|
* @throws {RequiredError}
|
|
1869
|
+
* @memberof AccountsApi
|
|
1851
1870
|
*/
|
|
1852
1871
|
AccountsApi.prototype.postGetAccounts = function (accountRequestModel, options) {
|
|
1853
1872
|
var _this = this;
|
|
@@ -1858,6 +1877,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1858
1877
|
* @summary Get Admin Account
|
|
1859
1878
|
* @param {*} [options] Override http request option.
|
|
1860
1879
|
* @throws {RequiredError}
|
|
1880
|
+
* @memberof AccountsApi
|
|
1861
1881
|
*/
|
|
1862
1882
|
AccountsApi.prototype.postGetAdminAccount = function (options) {
|
|
1863
1883
|
var _this = this;
|
|
@@ -1869,6 +1889,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1869
1889
|
* @param {PostGetClientCredentialsRequest} [postGetClientCredentialsRequest] New client credentials request
|
|
1870
1890
|
* @param {*} [options] Override http request option.
|
|
1871
1891
|
* @throws {RequiredError}
|
|
1892
|
+
* @memberof AccountsApi
|
|
1872
1893
|
*/
|
|
1873
1894
|
AccountsApi.prototype.postGetClientCredentials = function (postGetClientCredentialsRequest, options) {
|
|
1874
1895
|
var _this = this;
|
|
@@ -1880,6 +1901,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1880
1901
|
* @param {string} email Email Address
|
|
1881
1902
|
* @param {*} [options] Override http request option.
|
|
1882
1903
|
* @throws {RequiredError}
|
|
1904
|
+
* @memberof AccountsApi
|
|
1883
1905
|
*/
|
|
1884
1906
|
AccountsApi.prototype.postSendEmailVerificationEmail = function (email, options) {
|
|
1885
1907
|
var _this = this;
|
|
@@ -1891,6 +1913,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1891
1913
|
* @param {string} email Email Address
|
|
1892
1914
|
* @param {*} [options] Override http request option.
|
|
1893
1915
|
* @throws {RequiredError}
|
|
1916
|
+
* @memberof AccountsApi
|
|
1894
1917
|
*/
|
|
1895
1918
|
AccountsApi.prototype.postSendPasswordReset = function (email, options) {
|
|
1896
1919
|
var _this = this;
|
|
@@ -1904,6 +1927,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1904
1927
|
* @param {string} [vatNumber] VAT Number
|
|
1905
1928
|
* @param {*} [options] Override http request option.
|
|
1906
1929
|
* @throws {RequiredError}
|
|
1930
|
+
* @memberof AccountsApi
|
|
1907
1931
|
*/
|
|
1908
1932
|
AccountsApi.prototype.postSubmitResellerApplication = function (creditRequired, companyNumber, vatNumber, options) {
|
|
1909
1933
|
var _this = this;
|
|
@@ -1916,6 +1940,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1916
1940
|
* @param {AccountContactRequestModel} [accountContactRequestModel] Account request
|
|
1917
1941
|
* @param {*} [options] Override http request option.
|
|
1918
1942
|
* @throws {RequiredError}
|
|
1943
|
+
* @memberof AccountsApi
|
|
1919
1944
|
*/
|
|
1920
1945
|
AccountsApi.prototype.putUpdateAccountContact = function (email, accountContactRequestModel, options) {
|
|
1921
1946
|
var _this = this;
|
|
@@ -1926,6 +1951,7 @@ var AccountsApi = /** @class */ (function (_super) {
|
|
|
1926
1951
|
exports.AccountsApi = AccountsApi;
|
|
1927
1952
|
/**
|
|
1928
1953
|
* CRMApi - axios parameter creator
|
|
1954
|
+
* @export
|
|
1929
1955
|
*/
|
|
1930
1956
|
var CRMApiAxiosParamCreator = function (configuration) {
|
|
1931
1957
|
var _this = this;
|
|
@@ -1967,6 +1993,7 @@ var CRMApiAxiosParamCreator = function (configuration) {
|
|
|
1967
1993
|
exports.CRMApiAxiosParamCreator = CRMApiAxiosParamCreator;
|
|
1968
1994
|
/**
|
|
1969
1995
|
* CRMApi - functional programming interface
|
|
1996
|
+
* @export
|
|
1970
1997
|
*/
|
|
1971
1998
|
var CRMApiFp = function (configuration) {
|
|
1972
1999
|
var localVarAxiosParamCreator = (0, exports.CRMApiAxiosParamCreator)(configuration);
|
|
@@ -1997,6 +2024,7 @@ var CRMApiFp = function (configuration) {
|
|
|
1997
2024
|
exports.CRMApiFp = CRMApiFp;
|
|
1998
2025
|
/**
|
|
1999
2026
|
* CRMApi - factory interface
|
|
2027
|
+
* @export
|
|
2000
2028
|
*/
|
|
2001
2029
|
var CRMApiFactory = function (configuration, basePath, axios) {
|
|
2002
2030
|
var localVarFp = (0, exports.CRMApiFp)(configuration);
|
|
@@ -2014,6 +2042,9 @@ var CRMApiFactory = function (configuration, basePath, axios) {
|
|
|
2014
2042
|
exports.CRMApiFactory = CRMApiFactory;
|
|
2015
2043
|
/**
|
|
2016
2044
|
* CRMApi - object-oriented interface
|
|
2045
|
+
* @export
|
|
2046
|
+
* @class CRMApi
|
|
2047
|
+
* @extends {BaseAPI}
|
|
2017
2048
|
*/
|
|
2018
2049
|
var CRMApi = /** @class */ (function (_super) {
|
|
2019
2050
|
__extends(CRMApi, _super);
|
|
@@ -2024,6 +2055,7 @@ var CRMApi = /** @class */ (function (_super) {
|
|
|
2024
2055
|
* Search for contacts by phone number
|
|
2025
2056
|
* @param {*} [options] Override http request option.
|
|
2026
2057
|
* @throws {RequiredError}
|
|
2058
|
+
* @memberof CRMApi
|
|
2027
2059
|
*/
|
|
2028
2060
|
CRMApi.prototype.getSearchByPhone = function (options) {
|
|
2029
2061
|
var _this = this;
|
|
@@ -2034,6 +2066,7 @@ var CRMApi = /** @class */ (function (_super) {
|
|
|
2034
2066
|
exports.CRMApi = CRMApi;
|
|
2035
2067
|
/**
|
|
2036
2068
|
* Class3CXApi - axios parameter creator
|
|
2069
|
+
* @export
|
|
2037
2070
|
*/
|
|
2038
2071
|
var Class3CXApiAxiosParamCreator = function (configuration) {
|
|
2039
2072
|
var _this = this;
|
|
@@ -2118,6 +2151,7 @@ var Class3CXApiAxiosParamCreator = function (configuration) {
|
|
|
2118
2151
|
exports.Class3CXApiAxiosParamCreator = Class3CXApiAxiosParamCreator;
|
|
2119
2152
|
/**
|
|
2120
2153
|
* Class3CXApi - functional programming interface
|
|
2154
|
+
* @export
|
|
2121
2155
|
*/
|
|
2122
2156
|
var Class3CXApiFp = function (configuration) {
|
|
2123
2157
|
var localVarAxiosParamCreator = (0, exports.Class3CXApiAxiosParamCreator)(configuration);
|
|
@@ -2173,6 +2207,7 @@ var Class3CXApiFp = function (configuration) {
|
|
|
2173
2207
|
exports.Class3CXApiFp = Class3CXApiFp;
|
|
2174
2208
|
/**
|
|
2175
2209
|
* Class3CXApi - factory interface
|
|
2210
|
+
* @export
|
|
2176
2211
|
*/
|
|
2177
2212
|
var Class3CXApiFactory = function (configuration, basePath, axios) {
|
|
2178
2213
|
var localVarFp = (0, exports.Class3CXApiFp)(configuration);
|
|
@@ -2202,6 +2237,9 @@ var Class3CXApiFactory = function (configuration, basePath, axios) {
|
|
|
2202
2237
|
exports.Class3CXApiFactory = Class3CXApiFactory;
|
|
2203
2238
|
/**
|
|
2204
2239
|
* Class3CXApi - object-oriented interface
|
|
2240
|
+
* @export
|
|
2241
|
+
* @class Class3CXApi
|
|
2242
|
+
* @extends {BaseAPI}
|
|
2205
2243
|
*/
|
|
2206
2244
|
var Class3CXApi = /** @class */ (function (_super) {
|
|
2207
2245
|
__extends(Class3CXApi, _super);
|
|
@@ -2214,6 +2252,7 @@ var Class3CXApi = /** @class */ (function (_super) {
|
|
|
2214
2252
|
* @param {string} key 3CX Licence Key
|
|
2215
2253
|
* @param {*} [options] Override http request option.
|
|
2216
2254
|
* @throws {RequiredError}
|
|
2255
|
+
* @memberof Class3CXApi
|
|
2217
2256
|
*/
|
|
2218
2257
|
Class3CXApi.prototype.getGetLicenceDetails = function (key, options) {
|
|
2219
2258
|
var _this = this;
|
|
@@ -2225,6 +2264,7 @@ var Class3CXApi = /** @class */ (function (_super) {
|
|
|
2225
2264
|
* @param {Array<string>} [requestBody] Licence Lookup Request
|
|
2226
2265
|
* @param {*} [options] Override http request option.
|
|
2227
2266
|
* @throws {RequiredError}
|
|
2267
|
+
* @memberof Class3CXApi
|
|
2228
2268
|
*/
|
|
2229
2269
|
Class3CXApi.prototype.postGetBulkLicenceDetails = function (requestBody, options) {
|
|
2230
2270
|
var _this = this;
|
|
@@ -2235,6 +2275,7 @@ var Class3CXApi = /** @class */ (function (_super) {
|
|
|
2235
2275
|
exports.Class3CXApi = Class3CXApi;
|
|
2236
2276
|
/**
|
|
2237
2277
|
* Class3CXInstallationWizardApi - axios parameter creator
|
|
2278
|
+
* @export
|
|
2238
2279
|
*/
|
|
2239
2280
|
var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
|
|
2240
2281
|
var _this = this;
|
|
@@ -3484,6 +3525,7 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
|
|
|
3484
3525
|
exports.Class3CXInstallationWizardApiAxiosParamCreator = Class3CXInstallationWizardApiAxiosParamCreator;
|
|
3485
3526
|
/**
|
|
3486
3527
|
* Class3CXInstallationWizardApi - functional programming interface
|
|
3528
|
+
* @export
|
|
3487
3529
|
*/
|
|
3488
3530
|
var Class3CXInstallationWizardApiFp = function (configuration) {
|
|
3489
3531
|
var localVarAxiosParamCreator = (0, exports.Class3CXInstallationWizardApiAxiosParamCreator)(configuration);
|
|
@@ -4256,6 +4298,7 @@ var Class3CXInstallationWizardApiFp = function (configuration) {
|
|
|
4256
4298
|
exports.Class3CXInstallationWizardApiFp = Class3CXInstallationWizardApiFp;
|
|
4257
4299
|
/**
|
|
4258
4300
|
* Class3CXInstallationWizardApi - factory interface
|
|
4301
|
+
* @export
|
|
4259
4302
|
*/
|
|
4260
4303
|
var Class3CXInstallationWizardApiFactory = function (configuration, basePath, axios) {
|
|
4261
4304
|
var localVarFp = (0, exports.Class3CXInstallationWizardApiFp)(configuration);
|
|
@@ -4599,6 +4642,9 @@ var Class3CXInstallationWizardApiFactory = function (configuration, basePath, ax
|
|
|
4599
4642
|
exports.Class3CXInstallationWizardApiFactory = Class3CXInstallationWizardApiFactory;
|
|
4600
4643
|
/**
|
|
4601
4644
|
* Class3CXInstallationWizardApi - object-oriented interface
|
|
4645
|
+
* @export
|
|
4646
|
+
* @class Class3CXInstallationWizardApi
|
|
4647
|
+
* @extends {BaseAPI}
|
|
4602
4648
|
*/
|
|
4603
4649
|
var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
4604
4650
|
__extends(Class3CXInstallationWizardApi, _super);
|
|
@@ -4611,6 +4657,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4611
4657
|
* @param {Array<TcxExtsEntity>} [tcxExtsEntity] 3CX Wizard Extensions
|
|
4612
4658
|
* @param {*} [options] Override http request option.
|
|
4613
4659
|
* @throws {RequiredError}
|
|
4660
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4614
4661
|
*/
|
|
4615
4662
|
Class3CXInstallationWizardApi.prototype.deleteAddExtensions = function (tcxExtsEntity, options) {
|
|
4616
4663
|
var _this = this;
|
|
@@ -4622,6 +4669,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4622
4669
|
* @param {Array<TcxNumbersEntity>} [tcxNumbersEntity] 3CX Wizard Numbers
|
|
4623
4670
|
* @param {*} [options] Override http request option.
|
|
4624
4671
|
* @throws {RequiredError}
|
|
4672
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4625
4673
|
*/
|
|
4626
4674
|
Class3CXInstallationWizardApi.prototype.deleteAddNumbers = function (tcxNumbersEntity, options) {
|
|
4627
4675
|
var _this = this;
|
|
@@ -4633,6 +4681,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4633
4681
|
* @param {Array<TcxPhonesEntity>} [tcxPhonesEntity] 3CX Wizard Phones
|
|
4634
4682
|
* @param {*} [options] Override http request option.
|
|
4635
4683
|
* @throws {RequiredError}
|
|
4684
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4636
4685
|
*/
|
|
4637
4686
|
Class3CXInstallationWizardApi.prototype.deleteAddPhones = function (tcxPhonesEntity, options) {
|
|
4638
4687
|
var _this = this;
|
|
@@ -4644,6 +4693,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4644
4693
|
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
4645
4694
|
* @param {*} [options] Override http request option.
|
|
4646
4695
|
* @throws {RequiredError}
|
|
4696
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4647
4697
|
*/
|
|
4648
4698
|
Class3CXInstallationWizardApi.prototype.deleteAddSbcs = function (tcxSbcModel, options) {
|
|
4649
4699
|
var _this = this;
|
|
@@ -4654,6 +4704,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4654
4704
|
* @summary Delete 3CX Installation Wizard
|
|
4655
4705
|
* @param {*} [options] Override http request option.
|
|
4656
4706
|
* @throws {RequiredError}
|
|
4707
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4657
4708
|
*/
|
|
4658
4709
|
Class3CXInstallationWizardApi.prototype.deleteGetWizard = function (options) {
|
|
4659
4710
|
var _this = this;
|
|
@@ -4664,6 +4715,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4664
4715
|
* @summary Get phones on linked order and MAC addresses
|
|
4665
4716
|
* @param {*} [options] Override http request option.
|
|
4666
4717
|
* @throws {RequiredError}
|
|
4718
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4667
4719
|
*/
|
|
4668
4720
|
Class3CXInstallationWizardApi.prototype.getAddPhones = function (options) {
|
|
4669
4721
|
var _this = this;
|
|
@@ -4674,6 +4726,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4674
4726
|
* @summary Get UK National Area Codes
|
|
4675
4727
|
* @param {*} [options] Override http request option.
|
|
4676
4728
|
* @throws {RequiredError}
|
|
4729
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4677
4730
|
*/
|
|
4678
4731
|
Class3CXInstallationWizardApi.prototype.getGetAreaCodesTcxWizard = function (options) {
|
|
4679
4732
|
var _this = this;
|
|
@@ -4685,6 +4738,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4685
4738
|
* @param {number} id SIP Trunk ID
|
|
4686
4739
|
* @param {*} [options] Override http request option.
|
|
4687
4740
|
* @throws {RequiredError}
|
|
4741
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4688
4742
|
*/
|
|
4689
4743
|
Class3CXInstallationWizardApi.prototype.getGetDdisTcxWizard = function (id, options) {
|
|
4690
4744
|
var _this = this;
|
|
@@ -4695,6 +4749,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4695
4749
|
* @summary Get Hosting Price
|
|
4696
4750
|
* @param {*} [options] Override http request option.
|
|
4697
4751
|
* @throws {RequiredError}
|
|
4752
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4698
4753
|
*/
|
|
4699
4754
|
Class3CXInstallationWizardApi.prototype.getGetHostingPrice = function (options) {
|
|
4700
4755
|
var _this = this;
|
|
@@ -4705,6 +4760,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4705
4760
|
* @summary Get 3CX Hosting Regions
|
|
4706
4761
|
* @param {*} [options] Override http request option.
|
|
4707
4762
|
* @throws {RequiredError}
|
|
4763
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4708
4764
|
*/
|
|
4709
4765
|
Class3CXInstallationWizardApi.prototype.getGetHostingRegions = function (options) {
|
|
4710
4766
|
var _this = this;
|
|
@@ -4720,6 +4776,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4720
4776
|
* @param {*} [options] Override http request option.
|
|
4721
4777
|
* @deprecated
|
|
4722
4778
|
* @throws {RequiredError}
|
|
4779
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4723
4780
|
*/
|
|
4724
4781
|
Class3CXInstallationWizardApi.prototype.getGetInstallStatus = function (id, u, c, p, options) {
|
|
4725
4782
|
var _this = this;
|
|
@@ -4730,6 +4787,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4730
4787
|
* @summary Get 3CX Instance Install Status
|
|
4731
4788
|
* @param {*} [options] Override http request option.
|
|
4732
4789
|
* @throws {RequiredError}
|
|
4790
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4733
4791
|
*/
|
|
4734
4792
|
Class3CXInstallationWizardApi.prototype.getGetInstanceInstallStatus = function (options) {
|
|
4735
4793
|
var _this = this;
|
|
@@ -4740,6 +4798,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4740
4798
|
* @summary Get PBX IP Address
|
|
4741
4799
|
* @param {*} [options] Override http request option.
|
|
4742
4800
|
* @throws {RequiredError}
|
|
4801
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4743
4802
|
*/
|
|
4744
4803
|
Class3CXInstallationWizardApi.prototype.getGetPbxIpAddress = function (options) {
|
|
4745
4804
|
var _this = this;
|
|
@@ -4751,6 +4810,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4751
4810
|
* @param {number} id SIP Trunk ID
|
|
4752
4811
|
* @param {*} [options] Override http request option.
|
|
4753
4812
|
* @throws {RequiredError}
|
|
4813
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4754
4814
|
*/
|
|
4755
4815
|
Class3CXInstallationWizardApi.prototype.getGetSipTrunkTcxWizard = function (id, options) {
|
|
4756
4816
|
var _this = this;
|
|
@@ -4764,6 +4824,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4764
4824
|
* @param {string} [search] Search
|
|
4765
4825
|
* @param {*} [options] Override http request option.
|
|
4766
4826
|
* @throws {RequiredError}
|
|
4827
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4767
4828
|
*/
|
|
4768
4829
|
Class3CXInstallationWizardApi.prototype.getGetSipTrunksTcxWizard = function (pageSize, page, search, options) {
|
|
4769
4830
|
var _this = this;
|
|
@@ -4774,6 +4835,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4774
4835
|
* @summary Get 3CX Installation Wizard
|
|
4775
4836
|
* @param {*} [options] Override http request option.
|
|
4776
4837
|
* @throws {RequiredError}
|
|
4838
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4777
4839
|
*/
|
|
4778
4840
|
Class3CXInstallationWizardApi.prototype.getGetWizard = function (options) {
|
|
4779
4841
|
var _this = this;
|
|
@@ -4785,6 +4847,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4785
4847
|
* @param {Array<TcxExtsEntity>} [tcxExtsEntity] 3CX Wizard Extensions
|
|
4786
4848
|
* @param {*} [options] Override http request option.
|
|
4787
4849
|
* @throws {RequiredError}
|
|
4850
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4788
4851
|
*/
|
|
4789
4852
|
Class3CXInstallationWizardApi.prototype.patchAddExtensions = function (tcxExtsEntity, options) {
|
|
4790
4853
|
var _this = this;
|
|
@@ -4796,6 +4859,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4796
4859
|
* @param {Array<TcxNumbersEntity>} [tcxNumbersEntity] 3CX Wizard Numbers
|
|
4797
4860
|
* @param {*} [options] Override http request option.
|
|
4798
4861
|
* @throws {RequiredError}
|
|
4862
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4799
4863
|
*/
|
|
4800
4864
|
Class3CXInstallationWizardApi.prototype.patchAddNumbers = function (tcxNumbersEntity, options) {
|
|
4801
4865
|
var _this = this;
|
|
@@ -4807,6 +4871,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4807
4871
|
* @param {Array<TcxPhonesEntity>} [tcxPhonesEntity] 3CX Wizard Phones
|
|
4808
4872
|
* @param {*} [options] Override http request option.
|
|
4809
4873
|
* @throws {RequiredError}
|
|
4874
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4810
4875
|
*/
|
|
4811
4876
|
Class3CXInstallationWizardApi.prototype.patchAddPhones = function (tcxPhonesEntity, options) {
|
|
4812
4877
|
var _this = this;
|
|
@@ -4818,6 +4883,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4818
4883
|
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
4819
4884
|
* @param {*} [options] Override http request option.
|
|
4820
4885
|
* @throws {RequiredError}
|
|
4886
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4821
4887
|
*/
|
|
4822
4888
|
Class3CXInstallationWizardApi.prototype.patchAddSbcs = function (tcxSbcModel, options) {
|
|
4823
4889
|
var _this = this;
|
|
@@ -4829,6 +4895,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4829
4895
|
* @param {TcxWizardModel} [tcxWizardModel] 3CX Wizard
|
|
4830
4896
|
* @param {*} [options] Override http request option.
|
|
4831
4897
|
* @throws {RequiredError}
|
|
4898
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4832
4899
|
*/
|
|
4833
4900
|
Class3CXInstallationWizardApi.prototype.patchGetWizard = function (tcxWizardModel, options) {
|
|
4834
4901
|
var _this = this;
|
|
@@ -4840,6 +4907,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4840
4907
|
* @param {Array<TcxExtsEntity>} [tcxExtsEntity] 3CX Wizard Extension
|
|
4841
4908
|
* @param {*} [options] Override http request option.
|
|
4842
4909
|
* @throws {RequiredError}
|
|
4910
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4843
4911
|
*/
|
|
4844
4912
|
Class3CXInstallationWizardApi.prototype.postAddExtensions = function (tcxExtsEntity, options) {
|
|
4845
4913
|
var _this = this;
|
|
@@ -4851,6 +4919,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4851
4919
|
* @param {Array<TcxNumbersEntity>} [tcxNumbersEntity] 3CX Wizard Numbers
|
|
4852
4920
|
* @param {*} [options] Override http request option.
|
|
4853
4921
|
* @throws {RequiredError}
|
|
4922
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4854
4923
|
*/
|
|
4855
4924
|
Class3CXInstallationWizardApi.prototype.postAddNumbers = function (tcxNumbersEntity, options) {
|
|
4856
4925
|
var _this = this;
|
|
@@ -4862,6 +4931,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4862
4931
|
* @param {Array<TcxPhonesEntity>} [tcxPhonesEntity] 3CX Wizard Phones
|
|
4863
4932
|
* @param {*} [options] Override http request option.
|
|
4864
4933
|
* @throws {RequiredError}
|
|
4934
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4865
4935
|
*/
|
|
4866
4936
|
Class3CXInstallationWizardApi.prototype.postAddPhones = function (tcxPhonesEntity, options) {
|
|
4867
4937
|
var _this = this;
|
|
@@ -4873,6 +4943,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4873
4943
|
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
4874
4944
|
* @param {*} [options] Override http request option.
|
|
4875
4945
|
* @throws {RequiredError}
|
|
4946
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4876
4947
|
*/
|
|
4877
4948
|
Class3CXInstallationWizardApi.prototype.postAddSbcs = function (tcxSbcModel, options) {
|
|
4878
4949
|
var _this = this;
|
|
@@ -4883,6 +4954,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4883
4954
|
* @summary Build Instance From 3CX Installation Wizard
|
|
4884
4955
|
* @param {*} [options] Override http request option.
|
|
4885
4956
|
* @throws {RequiredError}
|
|
4957
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4886
4958
|
*/
|
|
4887
4959
|
Class3CXInstallationWizardApi.prototype.postBuildInstance = function (options) {
|
|
4888
4960
|
var _this = this;
|
|
@@ -4898,6 +4970,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4898
4970
|
* @param {*} [options] Override http request option.
|
|
4899
4971
|
* @deprecated
|
|
4900
4972
|
* @throws {RequiredError}
|
|
4973
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4901
4974
|
*/
|
|
4902
4975
|
Class3CXInstallationWizardApi.prototype.postBuildInstanceFromWizard = function (id, u, c, p, options) {
|
|
4903
4976
|
var _this = this;
|
|
@@ -4908,6 +4981,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4908
4981
|
* @summary Create Instance From 3CX Installation Wizard
|
|
4909
4982
|
* @param {*} [options] Override http request option.
|
|
4910
4983
|
* @throws {RequiredError}
|
|
4984
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4911
4985
|
*/
|
|
4912
4986
|
Class3CXInstallationWizardApi.prototype.postCreateInstance = function (options) {
|
|
4913
4987
|
var _this = this;
|
|
@@ -4923,6 +4997,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4923
4997
|
* @param {*} [options] Override http request option.
|
|
4924
4998
|
* @deprecated
|
|
4925
4999
|
* @throws {RequiredError}
|
|
5000
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4926
5001
|
*/
|
|
4927
5002
|
Class3CXInstallationWizardApi.prototype.postCreateInstanceFromWizard = function (id, u, c, p, options) {
|
|
4928
5003
|
var _this = this;
|
|
@@ -4935,6 +5010,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4935
5010
|
* @param {DdiRangesRequestModel} [ddiRangesRequestModel] DDI Request
|
|
4936
5011
|
* @param {*} [options] Override http request option.
|
|
4937
5012
|
* @throws {RequiredError}
|
|
5013
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4938
5014
|
*/
|
|
4939
5015
|
Class3CXInstallationWizardApi.prototype.postGetDdisTcxWizard = function (id, ddiRangesRequestModel, options) {
|
|
4940
5016
|
var _this = this;
|
|
@@ -4946,6 +5022,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4946
5022
|
* @param {SipTrunkChangeResponseModel} [sipTrunkChangeResponseModel] Change Request
|
|
4947
5023
|
* @param {*} [options] Override http request option.
|
|
4948
5024
|
* @throws {RequiredError}
|
|
5025
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4949
5026
|
*/
|
|
4950
5027
|
Class3CXInstallationWizardApi.prototype.postGetRequestedDdisTcxWizard = function (sipTrunkChangeResponseModel, options) {
|
|
4951
5028
|
var _this = this;
|
|
@@ -4957,6 +5034,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4957
5034
|
* @param {SipTrunkCreationRequestModel} [sipTrunkCreationRequestModel] New SIP Trunk Request
|
|
4958
5035
|
* @param {*} [options] Override http request option.
|
|
4959
5036
|
* @throws {RequiredError}
|
|
5037
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4960
5038
|
*/
|
|
4961
5039
|
Class3CXInstallationWizardApi.prototype.postGetSipTrunksTcxWizard = function (sipTrunkCreationRequestModel, options) {
|
|
4962
5040
|
var _this = this;
|
|
@@ -4967,6 +5045,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4967
5045
|
* @param {File} backup 3CX Backup ZIP File
|
|
4968
5046
|
* @param {*} [options] Override http request option.
|
|
4969
5047
|
* @throws {RequiredError}
|
|
5048
|
+
* @memberof Class3CXInstallationWizardApi
|
|
4970
5049
|
*/
|
|
4971
5050
|
Class3CXInstallationWizardApi.prototype.postUploadBackup = function (backup, options) {
|
|
4972
5051
|
var _this = this;
|
|
@@ -4977,6 +5056,7 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
|
|
|
4977
5056
|
exports.Class3CXInstallationWizardApi = Class3CXInstallationWizardApi;
|
|
4978
5057
|
/**
|
|
4979
5058
|
* Class3CXInstallationsApi - axios parameter creator
|
|
5059
|
+
* @export
|
|
4980
5060
|
*/
|
|
4981
5061
|
var Class3CXInstallationsApiAxiosParamCreator = function (configuration) {
|
|
4982
5062
|
var _this = this;
|
|
@@ -5467,6 +5547,7 @@ var Class3CXInstallationsApiAxiosParamCreator = function (configuration) {
|
|
|
5467
5547
|
exports.Class3CXInstallationsApiAxiosParamCreator = Class3CXInstallationsApiAxiosParamCreator;
|
|
5468
5548
|
/**
|
|
5469
5549
|
* Class3CXInstallationsApi - functional programming interface
|
|
5550
|
+
* @export
|
|
5470
5551
|
*/
|
|
5471
5552
|
var Class3CXInstallationsApiFp = function (configuration) {
|
|
5472
5553
|
var localVarAxiosParamCreator = (0, exports.Class3CXInstallationsApiAxiosParamCreator)(configuration);
|
|
@@ -5744,6 +5825,7 @@ var Class3CXInstallationsApiFp = function (configuration) {
|
|
|
5744
5825
|
exports.Class3CXInstallationsApiFp = Class3CXInstallationsApiFp;
|
|
5745
5826
|
/**
|
|
5746
5827
|
* Class3CXInstallationsApi - factory interface
|
|
5828
|
+
* @export
|
|
5747
5829
|
*/
|
|
5748
5830
|
var Class3CXInstallationsApiFactory = function (configuration, basePath, axios) {
|
|
5749
5831
|
var localVarFp = (0, exports.Class3CXInstallationsApiFp)(configuration);
|
|
@@ -5878,6 +5960,9 @@ var Class3CXInstallationsApiFactory = function (configuration, basePath, axios)
|
|
|
5878
5960
|
exports.Class3CXInstallationsApiFactory = Class3CXInstallationsApiFactory;
|
|
5879
5961
|
/**
|
|
5880
5962
|
* Class3CXInstallationsApi - object-oriented interface
|
|
5963
|
+
* @export
|
|
5964
|
+
* @class Class3CXInstallationsApi
|
|
5965
|
+
* @extends {BaseAPI}
|
|
5881
5966
|
*/
|
|
5882
5967
|
var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
5883
5968
|
__extends(Class3CXInstallationsApi, _super);
|
|
@@ -5890,6 +5975,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5890
5975
|
* @param {number} wizardId Wizard ID
|
|
5891
5976
|
* @param {*} [options] Override http request option.
|
|
5892
5977
|
* @throws {RequiredError}
|
|
5978
|
+
* @memberof Class3CXInstallationsApi
|
|
5893
5979
|
*/
|
|
5894
5980
|
Class3CXInstallationsApi.prototype.getGetDetails = function (wizardId, options) {
|
|
5895
5981
|
var _this = this;
|
|
@@ -5907,6 +5993,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5907
5993
|
* @param {GetGetInstallationsInstallTypeEnum} [installType] Install Type
|
|
5908
5994
|
* @param {*} [options] Override http request option.
|
|
5909
5995
|
* @throws {RequiredError}
|
|
5996
|
+
* @memberof Class3CXInstallationsApi
|
|
5910
5997
|
*/
|
|
5911
5998
|
Class3CXInstallationsApi.prototype.getGetInstallations = function (pageSize, page, customerId, search, status, hosting, installType, options) {
|
|
5912
5999
|
var _this = this;
|
|
@@ -5920,6 +6007,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5920
6007
|
* @param {string} ipAddress Whitelist IP Address
|
|
5921
6008
|
* @param {*} [options] Override http request option.
|
|
5922
6009
|
* @throws {RequiredError}
|
|
6010
|
+
* @memberof Class3CXInstallationsApi
|
|
5923
6011
|
*/
|
|
5924
6012
|
Class3CXInstallationsApi.prototype.postCreateSshUser = function (instanceId, expiryDate, ipAddress, options) {
|
|
5925
6013
|
var _this = this;
|
|
@@ -5931,6 +6019,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5931
6019
|
* @param {string} instanceId Instance ID
|
|
5932
6020
|
* @param {*} [options] Override http request option.
|
|
5933
6021
|
* @throws {RequiredError}
|
|
6022
|
+
* @memberof Class3CXInstallationsApi
|
|
5934
6023
|
*/
|
|
5935
6024
|
Class3CXInstallationsApi.prototype.postDeleteInstance = function (instanceId, options) {
|
|
5936
6025
|
var _this = this;
|
|
@@ -5944,6 +6033,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5944
6033
|
* @param {string} schedule Scheduled Task (Date & Time)
|
|
5945
6034
|
* @param {*} [options] Override http request option.
|
|
5946
6035
|
* @throws {RequiredError}
|
|
6036
|
+
* @memberof Class3CXInstallationsApi
|
|
5947
6037
|
*/
|
|
5948
6038
|
Class3CXInstallationsApi.prototype.postExtendDisk = function (instanceId, gigabytes, schedule, options) {
|
|
5949
6039
|
var _this = this;
|
|
@@ -5956,6 +6046,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5956
6046
|
* @param {PostFailoverInstanceTypeEnum} type Failover Type
|
|
5957
6047
|
* @param {*} [options] Override http request option.
|
|
5958
6048
|
* @throws {RequiredError}
|
|
6049
|
+
* @memberof Class3CXInstallationsApi
|
|
5959
6050
|
*/
|
|
5960
6051
|
Class3CXInstallationsApi.prototype.postFailoverInstance = function (instanceId, type, options) {
|
|
5961
6052
|
var _this = this;
|
|
@@ -5967,6 +6058,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5967
6058
|
* @param {string} instanceId Instance ID
|
|
5968
6059
|
* @param {*} [options] Override http request option.
|
|
5969
6060
|
* @throws {RequiredError}
|
|
6061
|
+
* @memberof Class3CXInstallationsApi
|
|
5970
6062
|
*/
|
|
5971
6063
|
Class3CXInstallationsApi.prototype.postRebootInstance = function (instanceId, options) {
|
|
5972
6064
|
var _this = this;
|
|
@@ -5980,6 +6072,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5980
6072
|
* @param {string} [schedule] Scheduled Task (Date & Time)
|
|
5981
6073
|
* @param {*} [options] Override http request option.
|
|
5982
6074
|
* @throws {RequiredError}
|
|
6075
|
+
* @memberof Class3CXInstallationsApi
|
|
5983
6076
|
*/
|
|
5984
6077
|
Class3CXInstallationsApi.prototype.postResizeInstance = function (instanceId, size, schedule, options) {
|
|
5985
6078
|
var _this = this;
|
|
@@ -5992,6 +6085,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
5992
6085
|
* @param {string} [schedule] Scheduled Task (Date & Time)
|
|
5993
6086
|
* @param {*} [options] Override http request option.
|
|
5994
6087
|
* @throws {RequiredError}
|
|
6088
|
+
* @memberof Class3CXInstallationsApi
|
|
5995
6089
|
*/
|
|
5996
6090
|
Class3CXInstallationsApi.prototype.postSuspendInstance = function (instanceId, schedule, options) {
|
|
5997
6091
|
var _this = this;
|
|
@@ -6003,6 +6097,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
6003
6097
|
* @param {string} instanceId Instance ID
|
|
6004
6098
|
* @param {*} [options] Override http request option.
|
|
6005
6099
|
* @throws {RequiredError}
|
|
6100
|
+
* @memberof Class3CXInstallationsApi
|
|
6006
6101
|
*/
|
|
6007
6102
|
Class3CXInstallationsApi.prototype.postUnsuspendInstance = function (instanceId, options) {
|
|
6008
6103
|
var _this = this;
|
|
@@ -6015,6 +6110,7 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
6015
6110
|
* @param {string} schedule Scheduled Task (Date & Time)
|
|
6016
6111
|
* @param {*} [options] Override http request option.
|
|
6017
6112
|
* @throws {RequiredError}
|
|
6113
|
+
* @memberof Class3CXInstallationsApi
|
|
6018
6114
|
*/
|
|
6019
6115
|
Class3CXInstallationsApi.prototype.postUpgradeDebian = function (instanceId, schedule, options) {
|
|
6020
6116
|
var _this = this;
|
|
@@ -6023,28 +6119,43 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
6023
6119
|
return Class3CXInstallationsApi;
|
|
6024
6120
|
}(base_1.BaseAPI));
|
|
6025
6121
|
exports.Class3CXInstallationsApi = Class3CXInstallationsApi;
|
|
6122
|
+
/**
|
|
6123
|
+
* @export
|
|
6124
|
+
*/
|
|
6026
6125
|
exports.GetGetInstallationsStatusEnum = {
|
|
6027
6126
|
Completed: 'Completed',
|
|
6028
6127
|
Outstanding: 'Outstanding',
|
|
6029
6128
|
Offline: 'Offline',
|
|
6030
6129
|
FailedOver: 'Failed Over'
|
|
6031
6130
|
};
|
|
6131
|
+
/**
|
|
6132
|
+
* @export
|
|
6133
|
+
*/
|
|
6032
6134
|
exports.GetGetInstallationsHostingEnum = {
|
|
6033
6135
|
Yellowgrid: 'yellowgrid',
|
|
6034
6136
|
MultiTenant: 'multi-tenant',
|
|
6035
6137
|
Onprem: 'onprem',
|
|
6036
6138
|
All: 'all'
|
|
6037
6139
|
};
|
|
6140
|
+
/**
|
|
6141
|
+
* @export
|
|
6142
|
+
*/
|
|
6038
6143
|
exports.GetGetInstallationsInstallTypeEnum = {
|
|
6039
6144
|
New: 'new',
|
|
6040
6145
|
Restore: 'restore',
|
|
6041
6146
|
Failover: 'failover',
|
|
6042
6147
|
MultiTenant: 'multi-tenant'
|
|
6043
6148
|
};
|
|
6149
|
+
/**
|
|
6150
|
+
* @export
|
|
6151
|
+
*/
|
|
6044
6152
|
exports.PostFailoverInstanceTypeEnum = {
|
|
6045
6153
|
Config: 'config',
|
|
6046
6154
|
Image: 'image'
|
|
6047
6155
|
};
|
|
6156
|
+
/**
|
|
6157
|
+
* @export
|
|
6158
|
+
*/
|
|
6048
6159
|
exports.PostResizeInstanceSizeEnum = {
|
|
6049
6160
|
D24: 'd2-4',
|
|
6050
6161
|
D28: 'd2-8',
|
|
@@ -6054,6 +6165,7 @@ exports.PostResizeInstanceSizeEnum = {
|
|
|
6054
6165
|
};
|
|
6055
6166
|
/**
|
|
6056
6167
|
* Class3CXIntegrationsApi - axios parameter creator
|
|
6168
|
+
* @export
|
|
6057
6169
|
*/
|
|
6058
6170
|
var Class3CXIntegrationsApiAxiosParamCreator = function (configuration) {
|
|
6059
6171
|
var _this = this;
|
|
@@ -6299,6 +6411,7 @@ var Class3CXIntegrationsApiAxiosParamCreator = function (configuration) {
|
|
|
6299
6411
|
exports.Class3CXIntegrationsApiAxiosParamCreator = Class3CXIntegrationsApiAxiosParamCreator;
|
|
6300
6412
|
/**
|
|
6301
6413
|
* Class3CXIntegrationsApi - functional programming interface
|
|
6414
|
+
* @export
|
|
6302
6415
|
*/
|
|
6303
6416
|
var Class3CXIntegrationsApiFp = function (configuration) {
|
|
6304
6417
|
var localVarAxiosParamCreator = (0, exports.Class3CXIntegrationsApiAxiosParamCreator)(configuration);
|
|
@@ -6444,6 +6557,7 @@ var Class3CXIntegrationsApiFp = function (configuration) {
|
|
|
6444
6557
|
exports.Class3CXIntegrationsApiFp = Class3CXIntegrationsApiFp;
|
|
6445
6558
|
/**
|
|
6446
6559
|
* Class3CXIntegrationsApi - factory interface
|
|
6560
|
+
* @export
|
|
6447
6561
|
*/
|
|
6448
6562
|
var Class3CXIntegrationsApiFactory = function (configuration, basePath, axios) {
|
|
6449
6563
|
var localVarFp = (0, exports.Class3CXIntegrationsApiFp)(configuration);
|
|
@@ -6511,6 +6625,9 @@ var Class3CXIntegrationsApiFactory = function (configuration, basePath, axios) {
|
|
|
6511
6625
|
exports.Class3CXIntegrationsApiFactory = Class3CXIntegrationsApiFactory;
|
|
6512
6626
|
/**
|
|
6513
6627
|
* Class3CXIntegrationsApi - object-oriented interface
|
|
6628
|
+
* @export
|
|
6629
|
+
* @class Class3CXIntegrationsApi
|
|
6630
|
+
* @extends {BaseAPI}
|
|
6514
6631
|
*/
|
|
6515
6632
|
var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
6516
6633
|
__extends(Class3CXIntegrationsApi, _super);
|
|
@@ -6523,6 +6640,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6523
6640
|
* @param {GetGetPriceSchoolTypeEnum} schoolType EdTechPro School Type
|
|
6524
6641
|
* @param {*} [options] Override http request option.
|
|
6525
6642
|
* @throws {RequiredError}
|
|
6643
|
+
* @memberof Class3CXIntegrationsApi
|
|
6526
6644
|
*/
|
|
6527
6645
|
Class3CXIntegrationsApi.prototype.getGetPrice = function (licenceType, schoolType, options) {
|
|
6528
6646
|
var _this = this;
|
|
@@ -6535,6 +6653,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6535
6653
|
* @param {string} [search] Search
|
|
6536
6654
|
* @param {*} [options] Override http request option.
|
|
6537
6655
|
* @throws {RequiredError}
|
|
6656
|
+
* @memberof Class3CXIntegrationsApi
|
|
6538
6657
|
*/
|
|
6539
6658
|
Class3CXIntegrationsApi.prototype.getGetSchools = function (pageSize, page, search, options) {
|
|
6540
6659
|
var _this = this;
|
|
@@ -6544,6 +6663,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6544
6663
|
* Get EdTechPro Trusts
|
|
6545
6664
|
* @param {*} [options] Override http request option.
|
|
6546
6665
|
* @throws {RequiredError}
|
|
6666
|
+
* @memberof Class3CXIntegrationsApi
|
|
6547
6667
|
*/
|
|
6548
6668
|
Class3CXIntegrationsApi.prototype.getGetTrusts = function (options) {
|
|
6549
6669
|
var _this = this;
|
|
@@ -6556,6 +6676,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6556
6676
|
* @param {string} ref School Order Reference
|
|
6557
6677
|
* @param {*} [options] Override http request option.
|
|
6558
6678
|
* @throws {RequiredError}
|
|
6679
|
+
* @memberof Class3CXIntegrationsApi
|
|
6559
6680
|
*/
|
|
6560
6681
|
Class3CXIntegrationsApi.prototype.patchUpdateEtpOrderReference = function (clientId, schoolId, ref, options) {
|
|
6561
6682
|
var _this = this;
|
|
@@ -6566,6 +6687,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6566
6687
|
* @param {OrderRequestModel} [orderRequestModel] New EdTechPro Order Request
|
|
6567
6688
|
* @param {*} [options] Override http request option.
|
|
6568
6689
|
* @throws {RequiredError}
|
|
6690
|
+
* @memberof Class3CXIntegrationsApi
|
|
6569
6691
|
*/
|
|
6570
6692
|
Class3CXIntegrationsApi.prototype.postOrderEdTechPro = function (orderRequestModel, options) {
|
|
6571
6693
|
var _this = this;
|
|
@@ -6576,6 +6698,7 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6576
6698
|
* @param {UpgradeRequestModel} [upgradeRequestModel] New EdTechPro Upgrade Request
|
|
6577
6699
|
* @param {*} [options] Override http request option.
|
|
6578
6700
|
* @throws {RequiredError}
|
|
6701
|
+
* @memberof Class3CXIntegrationsApi
|
|
6579
6702
|
*/
|
|
6580
6703
|
Class3CXIntegrationsApi.prototype.postUpgradeEdTechPro = function (upgradeRequestModel, options) {
|
|
6581
6704
|
var _this = this;
|
|
@@ -6584,16 +6707,23 @@ var Class3CXIntegrationsApi = /** @class */ (function (_super) {
|
|
|
6584
6707
|
return Class3CXIntegrationsApi;
|
|
6585
6708
|
}(base_1.BaseAPI));
|
|
6586
6709
|
exports.Class3CXIntegrationsApi = Class3CXIntegrationsApi;
|
|
6710
|
+
/**
|
|
6711
|
+
* @export
|
|
6712
|
+
*/
|
|
6587
6713
|
exports.GetGetPriceLicenceTypeEnum = {
|
|
6588
6714
|
Lite: 'lite',
|
|
6589
6715
|
Pro: 'pro'
|
|
6590
6716
|
};
|
|
6717
|
+
/**
|
|
6718
|
+
* @export
|
|
6719
|
+
*/
|
|
6591
6720
|
exports.GetGetPriceSchoolTypeEnum = {
|
|
6592
6721
|
Primary: 'primary',
|
|
6593
6722
|
Secondary: 'secondary'
|
|
6594
6723
|
};
|
|
6595
6724
|
/**
|
|
6596
6725
|
* Class3CXMultiTenantApi - axios parameter creator
|
|
6726
|
+
* @export
|
|
6597
6727
|
*/
|
|
6598
6728
|
var Class3CXMultiTenantApiAxiosParamCreator = function (configuration) {
|
|
6599
6729
|
var _this = this;
|
|
@@ -6873,6 +7003,7 @@ var Class3CXMultiTenantApiAxiosParamCreator = function (configuration) {
|
|
|
6873
7003
|
exports.Class3CXMultiTenantApiAxiosParamCreator = Class3CXMultiTenantApiAxiosParamCreator;
|
|
6874
7004
|
/**
|
|
6875
7005
|
* Class3CXMultiTenantApi - functional programming interface
|
|
7006
|
+
* @export
|
|
6876
7007
|
*/
|
|
6877
7008
|
var Class3CXMultiTenantApiFp = function (configuration) {
|
|
6878
7009
|
var localVarAxiosParamCreator = (0, exports.Class3CXMultiTenantApiAxiosParamCreator)(configuration);
|
|
@@ -7046,6 +7177,7 @@ var Class3CXMultiTenantApiFp = function (configuration) {
|
|
|
7046
7177
|
exports.Class3CXMultiTenantApiFp = Class3CXMultiTenantApiFp;
|
|
7047
7178
|
/**
|
|
7048
7179
|
* Class3CXMultiTenantApi - factory interface
|
|
7180
|
+
* @export
|
|
7049
7181
|
*/
|
|
7050
7182
|
var Class3CXMultiTenantApiFactory = function (configuration, basePath, axios) {
|
|
7051
7183
|
var localVarFp = (0, exports.Class3CXMultiTenantApiFp)(configuration);
|
|
@@ -7128,6 +7260,9 @@ var Class3CXMultiTenantApiFactory = function (configuration, basePath, axios) {
|
|
|
7128
7260
|
exports.Class3CXMultiTenantApiFactory = Class3CXMultiTenantApiFactory;
|
|
7129
7261
|
/**
|
|
7130
7262
|
* Class3CXMultiTenantApi - object-oriented interface
|
|
7263
|
+
* @export
|
|
7264
|
+
* @class Class3CXMultiTenantApi
|
|
7265
|
+
* @extends {BaseAPI}
|
|
7131
7266
|
*/
|
|
7132
7267
|
var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
7133
7268
|
__extends(Class3CXMultiTenantApi, _super);
|
|
@@ -7140,6 +7275,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7140
7275
|
* @param {string} reference Tenant Reference
|
|
7141
7276
|
* @param {*} [options] Override http request option.
|
|
7142
7277
|
* @throws {RequiredError}
|
|
7278
|
+
* @memberof Class3CXMultiTenantApi
|
|
7143
7279
|
*/
|
|
7144
7280
|
Class3CXMultiTenantApi.prototype.deleteGetTenant = function (reference, options) {
|
|
7145
7281
|
var _this = this;
|
|
@@ -7151,6 +7287,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7151
7287
|
* @param {string} reference Tenant Reference
|
|
7152
7288
|
* @param {*} [options] Override http request option.
|
|
7153
7289
|
* @throws {RequiredError}
|
|
7290
|
+
* @memberof Class3CXMultiTenantApi
|
|
7154
7291
|
*/
|
|
7155
7292
|
Class3CXMultiTenantApi.prototype.getGetTenant = function (reference, options) {
|
|
7156
7293
|
var _this = this;
|
|
@@ -7165,6 +7302,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7165
7302
|
* @param {GetGetTenantsStatusEnum} [status] Status
|
|
7166
7303
|
* @param {*} [options] Override http request option.
|
|
7167
7304
|
* @throws {RequiredError}
|
|
7305
|
+
* @memberof Class3CXMultiTenantApi
|
|
7168
7306
|
*/
|
|
7169
7307
|
Class3CXMultiTenantApi.prototype.getGetTenants = function (pageSize, page, search, status, options) {
|
|
7170
7308
|
var _this = this;
|
|
@@ -7176,6 +7314,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7176
7314
|
* @param {string} areacode Area Code
|
|
7177
7315
|
* @param {*} [options] Override http request option.
|
|
7178
7316
|
* @throws {RequiredError}
|
|
7317
|
+
* @memberof Class3CXMultiTenantApi
|
|
7179
7318
|
*/
|
|
7180
7319
|
Class3CXMultiTenantApi.prototype.postAddMtDdi = function (areacode, options) {
|
|
7181
7320
|
var _this = this;
|
|
@@ -7187,6 +7326,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7187
7326
|
* @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
|
|
7188
7327
|
* @param {*} [options] Override http request option.
|
|
7189
7328
|
* @throws {RequiredError}
|
|
7329
|
+
* @memberof Class3CXMultiTenantApi
|
|
7190
7330
|
*/
|
|
7191
7331
|
Class3CXMultiTenantApi.prototype.postGetMtNewDdis = function (multiTenantChangeResponseModel, options) {
|
|
7192
7332
|
var _this = this;
|
|
@@ -7198,6 +7338,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7198
7338
|
* @param {TcxMultiTenantModel} [tcxMultiTenantModel] New 3CX Starter Bundle Request
|
|
7199
7339
|
* @param {*} [options] Override http request option.
|
|
7200
7340
|
* @throws {RequiredError}
|
|
7341
|
+
* @memberof Class3CXMultiTenantApi
|
|
7201
7342
|
*/
|
|
7202
7343
|
Class3CXMultiTenantApi.prototype.postGetTenants = function (tcxMultiTenantModel, options) {
|
|
7203
7344
|
var _this = this;
|
|
@@ -7209,6 +7350,7 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7209
7350
|
* @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
|
|
7210
7351
|
* @param {*} [options] Override http request option.
|
|
7211
7352
|
* @throws {RequiredError}
|
|
7353
|
+
* @memberof Class3CXMultiTenantApi
|
|
7212
7354
|
*/
|
|
7213
7355
|
Class3CXMultiTenantApi.prototype.postTrackMtChange = function (multiTenantChangeResponseModel, options) {
|
|
7214
7356
|
var _this = this;
|
|
@@ -7217,6 +7359,9 @@ var Class3CXMultiTenantApi = /** @class */ (function (_super) {
|
|
|
7217
7359
|
return Class3CXMultiTenantApi;
|
|
7218
7360
|
}(base_1.BaseAPI));
|
|
7219
7361
|
exports.Class3CXMultiTenantApi = Class3CXMultiTenantApi;
|
|
7362
|
+
/**
|
|
7363
|
+
* @export
|
|
7364
|
+
*/
|
|
7220
7365
|
exports.GetGetTenantsStatusEnum = {
|
|
7221
7366
|
Completed: 'Completed',
|
|
7222
7367
|
Outstanding: 'Outstanding',
|
|
@@ -7225,6 +7370,7 @@ exports.GetGetTenantsStatusEnum = {
|
|
|
7225
7370
|
};
|
|
7226
7371
|
/**
|
|
7227
7372
|
* MyPBXToolsApi - axios parameter creator
|
|
7373
|
+
* @export
|
|
7228
7374
|
*/
|
|
7229
7375
|
var MyPBXToolsApiAxiosParamCreator = function (configuration) {
|
|
7230
7376
|
var _this = this;
|
|
@@ -7279,6 +7425,7 @@ var MyPBXToolsApiAxiosParamCreator = function (configuration) {
|
|
|
7279
7425
|
exports.MyPBXToolsApiAxiosParamCreator = MyPBXToolsApiAxiosParamCreator;
|
|
7280
7426
|
/**
|
|
7281
7427
|
* MyPBXToolsApi - functional programming interface
|
|
7428
|
+
* @export
|
|
7282
7429
|
*/
|
|
7283
7430
|
var MyPBXToolsApiFp = function (configuration) {
|
|
7284
7431
|
var localVarAxiosParamCreator = (0, exports.MyPBXToolsApiAxiosParamCreator)(configuration);
|
|
@@ -7312,6 +7459,7 @@ var MyPBXToolsApiFp = function (configuration) {
|
|
|
7312
7459
|
exports.MyPBXToolsApiFp = MyPBXToolsApiFp;
|
|
7313
7460
|
/**
|
|
7314
7461
|
* MyPBXToolsApi - factory interface
|
|
7462
|
+
* @export
|
|
7315
7463
|
*/
|
|
7316
7464
|
var MyPBXToolsApiFactory = function (configuration, basePath, axios) {
|
|
7317
7465
|
var localVarFp = (0, exports.MyPBXToolsApiFp)(configuration);
|
|
@@ -7332,6 +7480,9 @@ var MyPBXToolsApiFactory = function (configuration, basePath, axios) {
|
|
|
7332
7480
|
exports.MyPBXToolsApiFactory = MyPBXToolsApiFactory;
|
|
7333
7481
|
/**
|
|
7334
7482
|
* MyPBXToolsApi - object-oriented interface
|
|
7483
|
+
* @export
|
|
7484
|
+
* @class MyPBXToolsApi
|
|
7485
|
+
* @extends {BaseAPI}
|
|
7335
7486
|
*/
|
|
7336
7487
|
var MyPBXToolsApi = /** @class */ (function (_super) {
|
|
7337
7488
|
__extends(MyPBXToolsApi, _super);
|
|
@@ -7345,6 +7496,7 @@ var MyPBXToolsApi = /** @class */ (function (_super) {
|
|
|
7345
7496
|
* @param {string} fileName File Name
|
|
7346
7497
|
* @param {*} [options] Override http request option.
|
|
7347
7498
|
* @throws {RequiredError}
|
|
7499
|
+
* @memberof MyPBXToolsApi
|
|
7348
7500
|
*/
|
|
7349
7501
|
MyPBXToolsApi.prototype.getGetRecording = function (licenceKey, fileName, options) {
|
|
7350
7502
|
var _this = this;
|
|
@@ -7355,6 +7507,7 @@ var MyPBXToolsApi = /** @class */ (function (_super) {
|
|
|
7355
7507
|
exports.MyPBXToolsApi = MyPBXToolsApi;
|
|
7356
7508
|
/**
|
|
7357
7509
|
* OAuth20Api - axios parameter creator
|
|
7510
|
+
* @export
|
|
7358
7511
|
*/
|
|
7359
7512
|
var OAuth20ApiAxiosParamCreator = function (configuration) {
|
|
7360
7513
|
var _this = this;
|
|
@@ -7650,6 +7803,7 @@ var OAuth20ApiAxiosParamCreator = function (configuration) {
|
|
|
7650
7803
|
exports.OAuth20ApiAxiosParamCreator = OAuth20ApiAxiosParamCreator;
|
|
7651
7804
|
/**
|
|
7652
7805
|
* OAuth20Api - functional programming interface
|
|
7806
|
+
* @export
|
|
7653
7807
|
*/
|
|
7654
7808
|
var OAuth20ApiFp = function (configuration) {
|
|
7655
7809
|
var localVarAxiosParamCreator = (0, exports.OAuth20ApiAxiosParamCreator)(configuration);
|
|
@@ -7811,6 +7965,7 @@ var OAuth20ApiFp = function (configuration) {
|
|
|
7811
7965
|
exports.OAuth20ApiFp = OAuth20ApiFp;
|
|
7812
7966
|
/**
|
|
7813
7967
|
* OAuth20Api - factory interface
|
|
7968
|
+
* @export
|
|
7814
7969
|
*/
|
|
7815
7970
|
var OAuth20ApiFactory = function (configuration, basePath, axios) {
|
|
7816
7971
|
var localVarFp = (0, exports.OAuth20ApiFp)(configuration);
|
|
@@ -7894,6 +8049,9 @@ var OAuth20ApiFactory = function (configuration, basePath, axios) {
|
|
|
7894
8049
|
exports.OAuth20ApiFactory = OAuth20ApiFactory;
|
|
7895
8050
|
/**
|
|
7896
8051
|
* OAuth20Api - object-oriented interface
|
|
8052
|
+
* @export
|
|
8053
|
+
* @class OAuth20Api
|
|
8054
|
+
* @extends {BaseAPI}
|
|
7897
8055
|
*/
|
|
7898
8056
|
var OAuth20Api = /** @class */ (function (_super) {
|
|
7899
8057
|
__extends(OAuth20Api, _super);
|
|
@@ -7905,6 +8063,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7905
8063
|
* @summary Get MFA QR Code
|
|
7906
8064
|
* @param {*} [options] Override http request option.
|
|
7907
8065
|
* @throws {RequiredError}
|
|
8066
|
+
* @memberof OAuth20Api
|
|
7908
8067
|
*/
|
|
7909
8068
|
OAuth20Api.prototype.getGetMfaQrCode = function (options) {
|
|
7910
8069
|
var _this = this;
|
|
@@ -7915,6 +8074,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7915
8074
|
* @summary Get Scopes
|
|
7916
8075
|
* @param {*} [options] Override http request option.
|
|
7917
8076
|
* @throws {RequiredError}
|
|
8077
|
+
* @memberof OAuth20Api
|
|
7918
8078
|
*/
|
|
7919
8079
|
OAuth20Api.prototype.getGetScopes = function (options) {
|
|
7920
8080
|
var _this = this;
|
|
@@ -7937,6 +8097,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7937
8097
|
* @param {boolean | null} [endUser] End User (Only used in Token Exchange)
|
|
7938
8098
|
* @param {*} [options] Override http request option.
|
|
7939
8099
|
* @throws {RequiredError}
|
|
8100
|
+
* @memberof OAuth20Api
|
|
7940
8101
|
*/
|
|
7941
8102
|
OAuth20Api.prototype.postAccessToken = function (clientId, clientSecret, grantType, scope, redirectUri, code, refreshToken, codeVerifier, token, tokenExchangeType, licenceKey, endUser, options) {
|
|
7942
8103
|
var _this = this;
|
|
@@ -7954,6 +8115,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7954
8115
|
* @param {string} [codeChallengeMethod] OAuth 2.0 Code Challenge Method
|
|
7955
8116
|
* @param {*} [options] Override http request option.
|
|
7956
8117
|
* @throws {RequiredError}
|
|
8118
|
+
* @memberof OAuth20Api
|
|
7957
8119
|
*/
|
|
7958
8120
|
OAuth20Api.prototype.postAuthorise = function (clientId, responseType, scope, redirectUri, state, codeChallenge, codeChallengeMethod, options) {
|
|
7959
8121
|
var _this = this;
|
|
@@ -7964,6 +8126,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7964
8126
|
* @summary Get Token Identity
|
|
7965
8127
|
* @param {*} [options] Override http request option.
|
|
7966
8128
|
* @throws {RequiredError}
|
|
8129
|
+
* @memberof OAuth20Api
|
|
7967
8130
|
*/
|
|
7968
8131
|
OAuth20Api.prototype.postGetIdentity = function (options) {
|
|
7969
8132
|
var _this = this;
|
|
@@ -7975,6 +8138,7 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7975
8138
|
* @param {PortalLoginModel} [portalLoginModel] Login Credentials
|
|
7976
8139
|
* @param {*} [options] Override http request option.
|
|
7977
8140
|
* @throws {RequiredError}
|
|
8141
|
+
* @memberof OAuth20Api
|
|
7978
8142
|
*/
|
|
7979
8143
|
OAuth20Api.prototype.postPortalLogin = function (portalLoginModel, options) {
|
|
7980
8144
|
var _this = this;
|
|
@@ -7983,6 +8147,9 @@ var OAuth20Api = /** @class */ (function (_super) {
|
|
|
7983
8147
|
return OAuth20Api;
|
|
7984
8148
|
}(base_1.BaseAPI));
|
|
7985
8149
|
exports.OAuth20Api = OAuth20Api;
|
|
8150
|
+
/**
|
|
8151
|
+
* @export
|
|
8152
|
+
*/
|
|
7986
8153
|
exports.PostAccessTokenGrantTypeEnum = {
|
|
7987
8154
|
ClientCredentials: 'client_credentials',
|
|
7988
8155
|
Code: 'code',
|
|
@@ -7992,6 +8159,9 @@ exports.PostAccessTokenGrantTypeEnum = {
|
|
|
7992
8159
|
TokenExchange: 'token_exchange',
|
|
7993
8160
|
Password: 'password'
|
|
7994
8161
|
};
|
|
8162
|
+
/**
|
|
8163
|
+
* @export
|
|
8164
|
+
*/
|
|
7995
8165
|
exports.PostAccessTokenScopeEnum = {
|
|
7996
8166
|
Star: '*',
|
|
7997
8167
|
Fdps: 'fdps',
|
|
@@ -8018,10 +8188,16 @@ exports.PostAccessTokenScopeEnum = {
|
|
|
8018
8188
|
TicketsRead: 'tickets.read',
|
|
8019
8189
|
TicketsWrite: 'tickets.write'
|
|
8020
8190
|
};
|
|
8191
|
+
/**
|
|
8192
|
+
* @export
|
|
8193
|
+
*/
|
|
8021
8194
|
exports.PostAccessTokenTokenExchangeTypeEnum = {
|
|
8022
8195
|
TcxWizard: 'tcx_wizard',
|
|
8023
8196
|
Portal: 'portal'
|
|
8024
8197
|
};
|
|
8198
|
+
/**
|
|
8199
|
+
* @export
|
|
8200
|
+
*/
|
|
8025
8201
|
exports.PostAuthoriseScopeEnum = {
|
|
8026
8202
|
Star: '*',
|
|
8027
8203
|
Fdps: 'fdps',
|
|
@@ -8050,6 +8226,7 @@ exports.PostAuthoriseScopeEnum = {
|
|
|
8050
8226
|
};
|
|
8051
8227
|
/**
|
|
8052
8228
|
* OrdersApi - axios parameter creator
|
|
8229
|
+
* @export
|
|
8053
8230
|
*/
|
|
8054
8231
|
var OrdersApiAxiosParamCreator = function (configuration) {
|
|
8055
8232
|
var _this = this;
|
|
@@ -8399,6 +8576,7 @@ var OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
8399
8576
|
exports.OrdersApiAxiosParamCreator = OrdersApiAxiosParamCreator;
|
|
8400
8577
|
/**
|
|
8401
8578
|
* OrdersApi - functional programming interface
|
|
8579
|
+
* @export
|
|
8402
8580
|
*/
|
|
8403
8581
|
var OrdersApiFp = function (configuration) {
|
|
8404
8582
|
var localVarAxiosParamCreator = (0, exports.OrdersApiAxiosParamCreator)(configuration);
|
|
@@ -8604,6 +8782,7 @@ var OrdersApiFp = function (configuration) {
|
|
|
8604
8782
|
exports.OrdersApiFp = OrdersApiFp;
|
|
8605
8783
|
/**
|
|
8606
8784
|
* OrdersApi - factory interface
|
|
8785
|
+
* @export
|
|
8607
8786
|
*/
|
|
8608
8787
|
var OrdersApiFactory = function (configuration, basePath, axios) {
|
|
8609
8788
|
var localVarFp = (0, exports.OrdersApiFp)(configuration);
|
|
@@ -8705,6 +8884,9 @@ var OrdersApiFactory = function (configuration, basePath, axios) {
|
|
|
8705
8884
|
exports.OrdersApiFactory = OrdersApiFactory;
|
|
8706
8885
|
/**
|
|
8707
8886
|
* OrdersApi - object-oriented interface
|
|
8887
|
+
* @export
|
|
8888
|
+
* @class OrdersApi
|
|
8889
|
+
* @extends {BaseAPI}
|
|
8708
8890
|
*/
|
|
8709
8891
|
var OrdersApi = /** @class */ (function (_super) {
|
|
8710
8892
|
__extends(OrdersApi, _super);
|
|
@@ -8717,6 +8899,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8717
8899
|
* @param {number} id Order ID
|
|
8718
8900
|
* @param {*} [options] Override http request option.
|
|
8719
8901
|
* @throws {RequiredError}
|
|
8902
|
+
* @memberof OrdersApi
|
|
8720
8903
|
*/
|
|
8721
8904
|
OrdersApi.prototype.deleteUpdateOrder = function (id, options) {
|
|
8722
8905
|
var _this = this;
|
|
@@ -8728,6 +8911,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8728
8911
|
* @param {number} id Order ID
|
|
8729
8912
|
* @param {*} [options] Override http request option.
|
|
8730
8913
|
* @throws {RequiredError}
|
|
8914
|
+
* @memberof OrdersApi
|
|
8731
8915
|
*/
|
|
8732
8916
|
OrdersApi.prototype.getGetAdminEditableOrder = function (id, options) {
|
|
8733
8917
|
var _this = this;
|
|
@@ -8739,6 +8923,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8739
8923
|
* @param {number} id Order ID
|
|
8740
8924
|
* @param {*} [options] Override http request option.
|
|
8741
8925
|
* @throws {RequiredError}
|
|
8926
|
+
* @memberof OrdersApi
|
|
8742
8927
|
*/
|
|
8743
8928
|
OrdersApi.prototype.getGetEditableOrder = function (id, options) {
|
|
8744
8929
|
var _this = this;
|
|
@@ -8756,6 +8941,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8756
8941
|
* @param {number | null} [customerId] Customer ID
|
|
8757
8942
|
* @param {*} [options] Override http request option.
|
|
8758
8943
|
* @throws {RequiredError}
|
|
8944
|
+
* @memberof OrdersApi
|
|
8759
8945
|
*/
|
|
8760
8946
|
OrdersApi.prototype.getGetOrders = function (pageSize, page, search, fulfillable, status, filter, customerId, options) {
|
|
8761
8947
|
var _this = this;
|
|
@@ -8768,6 +8954,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8768
8954
|
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
8769
8955
|
* @param {*} [options] Override http request option.
|
|
8770
8956
|
* @throws {RequiredError}
|
|
8957
|
+
* @memberof OrdersApi
|
|
8771
8958
|
*/
|
|
8772
8959
|
OrdersApi.prototype.postCreateAdminOrder = function (readonly, adminOrderRequestDTO, options) {
|
|
8773
8960
|
var _this = this;
|
|
@@ -8780,6 +8967,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8780
8967
|
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
8781
8968
|
* @param {*} [options] Override http request option.
|
|
8782
8969
|
* @throws {RequiredError}
|
|
8970
|
+
* @memberof OrdersApi
|
|
8783
8971
|
*/
|
|
8784
8972
|
OrdersApi.prototype.postGetOrders = function (readonly, customerOrderRequestDTO, options) {
|
|
8785
8973
|
var _this = this;
|
|
@@ -8793,6 +8981,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8793
8981
|
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
8794
8982
|
* @param {*} [options] Override http request option.
|
|
8795
8983
|
* @throws {RequiredError}
|
|
8984
|
+
* @memberof OrdersApi
|
|
8796
8985
|
*/
|
|
8797
8986
|
OrdersApi.prototype.putUpdateAdminOrder = function (id, readonly, adminOrderRequestDTO, options) {
|
|
8798
8987
|
var _this = this;
|
|
@@ -8806,6 +8995,7 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8806
8995
|
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
8807
8996
|
* @param {*} [options] Override http request option.
|
|
8808
8997
|
* @throws {RequiredError}
|
|
8998
|
+
* @memberof OrdersApi
|
|
8809
8999
|
*/
|
|
8810
9000
|
OrdersApi.prototype.putUpdateOrder = function (id, readonly, customerOrderRequestDTO, options) {
|
|
8811
9001
|
var _this = this;
|
|
@@ -8814,12 +9004,18 @@ var OrdersApi = /** @class */ (function (_super) {
|
|
|
8814
9004
|
return OrdersApi;
|
|
8815
9005
|
}(base_1.BaseAPI));
|
|
8816
9006
|
exports.OrdersApi = OrdersApi;
|
|
9007
|
+
/**
|
|
9008
|
+
* @export
|
|
9009
|
+
*/
|
|
8817
9010
|
exports.GetGetOrdersStatusEnum = {
|
|
8818
9011
|
Paid: 'PAID',
|
|
8819
9012
|
InvoicePaid: 'INVOICE_PAID',
|
|
8820
9013
|
Unpaid: 'UNPAID',
|
|
8821
9014
|
Quote: 'QUOTE'
|
|
8822
9015
|
};
|
|
9016
|
+
/**
|
|
9017
|
+
* @export
|
|
9018
|
+
*/
|
|
8823
9019
|
exports.GetGetOrdersFilterEnum = {
|
|
8824
9020
|
Outstanding: 'OUTSTANDING',
|
|
8825
9021
|
Quotes: 'QUOTES',
|
|
@@ -8828,6 +9024,7 @@ exports.GetGetOrdersFilterEnum = {
|
|
|
8828
9024
|
};
|
|
8829
9025
|
/**
|
|
8830
9026
|
* PricingApi - axios parameter creator
|
|
9027
|
+
* @export
|
|
8831
9028
|
*/
|
|
8832
9029
|
var PricingApiAxiosParamCreator = function (configuration) {
|
|
8833
9030
|
var _this = this;
|
|
@@ -8951,6 +9148,7 @@ var PricingApiAxiosParamCreator = function (configuration) {
|
|
|
8951
9148
|
exports.PricingApiAxiosParamCreator = PricingApiAxiosParamCreator;
|
|
8952
9149
|
/**
|
|
8953
9150
|
* PricingApi - functional programming interface
|
|
9151
|
+
* @export
|
|
8954
9152
|
*/
|
|
8955
9153
|
var PricingApiFp = function (configuration) {
|
|
8956
9154
|
var localVarAxiosParamCreator = (0, exports.PricingApiAxiosParamCreator)(configuration);
|
|
@@ -9013,6 +9211,7 @@ var PricingApiFp = function (configuration) {
|
|
|
9013
9211
|
exports.PricingApiFp = PricingApiFp;
|
|
9014
9212
|
/**
|
|
9015
9213
|
* PricingApi - factory interface
|
|
9214
|
+
* @export
|
|
9016
9215
|
*/
|
|
9017
9216
|
var PricingApiFactory = function (configuration, basePath, axios) {
|
|
9018
9217
|
var localVarFp = (0, exports.PricingApiFp)(configuration);
|
|
@@ -9049,6 +9248,9 @@ var PricingApiFactory = function (configuration, basePath, axios) {
|
|
|
9049
9248
|
exports.PricingApiFactory = PricingApiFactory;
|
|
9050
9249
|
/**
|
|
9051
9250
|
* PricingApi - object-oriented interface
|
|
9251
|
+
* @export
|
|
9252
|
+
* @class PricingApi
|
|
9253
|
+
* @extends {BaseAPI}
|
|
9052
9254
|
*/
|
|
9053
9255
|
var PricingApi = /** @class */ (function (_super) {
|
|
9054
9256
|
__extends(PricingApi, _super);
|
|
@@ -9064,6 +9266,7 @@ var PricingApi = /** @class */ (function (_super) {
|
|
|
9064
9266
|
* @param {string} [customerId] Customer ID
|
|
9065
9267
|
* @param {*} [options] Override http request option.
|
|
9066
9268
|
* @throws {RequiredError}
|
|
9269
|
+
* @memberof PricingApi
|
|
9067
9270
|
*/
|
|
9068
9271
|
PricingApi.prototype.getGetPriceList = function (type, format, category, customerId, options) {
|
|
9069
9272
|
var _this = this;
|
|
@@ -9079,6 +9282,7 @@ var PricingApi = /** @class */ (function (_super) {
|
|
|
9079
9282
|
* @param {PostSendPriceListCategoryEnum} [category] Product Category
|
|
9080
9283
|
* @param {*} [options] Override http request option.
|
|
9081
9284
|
* @throws {RequiredError}
|
|
9285
|
+
* @memberof PricingApi
|
|
9082
9286
|
*/
|
|
9083
9287
|
PricingApi.prototype.postSendPriceList = function (email, customerId, type, format, category, options) {
|
|
9084
9288
|
var _this = this;
|
|
@@ -9087,6 +9291,9 @@ var PricingApi = /** @class */ (function (_super) {
|
|
|
9087
9291
|
return PricingApi;
|
|
9088
9292
|
}(base_1.BaseAPI));
|
|
9089
9293
|
exports.PricingApi = PricingApi;
|
|
9294
|
+
/**
|
|
9295
|
+
* @export
|
|
9296
|
+
*/
|
|
9090
9297
|
exports.GetGetPriceListTypeEnum = {
|
|
9091
9298
|
Products: 'Products',
|
|
9092
9299
|
StockProducts: 'Stock Products',
|
|
@@ -9097,6 +9304,9 @@ exports.GetGetPriceListTypeEnum = {
|
|
|
9097
9304
|
Sms: 'SMS',
|
|
9098
9305
|
SipTrunks: 'SIP Trunks'
|
|
9099
9306
|
};
|
|
9307
|
+
/**
|
|
9308
|
+
* @export
|
|
9309
|
+
*/
|
|
9100
9310
|
exports.GetGetPriceListFormatEnum = {
|
|
9101
9311
|
Pdf: 'pdf',
|
|
9102
9312
|
Json: 'json',
|
|
@@ -9104,6 +9314,9 @@ exports.GetGetPriceListFormatEnum = {
|
|
|
9104
9314
|
Xml: 'xml',
|
|
9105
9315
|
Html: 'html'
|
|
9106
9316
|
};
|
|
9317
|
+
/**
|
|
9318
|
+
* @export
|
|
9319
|
+
*/
|
|
9107
9320
|
exports.GetGetPriceListCategoryEnum = {
|
|
9108
9321
|
Yealink: 'Yealink',
|
|
9109
9322
|
Mairdi: 'Mairdi',
|
|
@@ -9126,6 +9339,9 @@ exports.GetGetPriceListCategoryEnum = {
|
|
|
9126
9339
|
FanvilAccessories: 'Fanvil Accessories',
|
|
9127
9340
|
FanvilHotelPhones: 'Fanvil Hotel Phones'
|
|
9128
9341
|
};
|
|
9342
|
+
/**
|
|
9343
|
+
* @export
|
|
9344
|
+
*/
|
|
9129
9345
|
exports.PostSendPriceListTypeEnum = {
|
|
9130
9346
|
Products: 'Products',
|
|
9131
9347
|
StockProducts: 'Stock Products',
|
|
@@ -9136,6 +9352,9 @@ exports.PostSendPriceListTypeEnum = {
|
|
|
9136
9352
|
Sms: 'SMS',
|
|
9137
9353
|
SipTrunks: 'SIP Trunks'
|
|
9138
9354
|
};
|
|
9355
|
+
/**
|
|
9356
|
+
* @export
|
|
9357
|
+
*/
|
|
9139
9358
|
exports.PostSendPriceListFormatEnum = {
|
|
9140
9359
|
Pdf: 'pdf',
|
|
9141
9360
|
Json: 'json',
|
|
@@ -9143,6 +9362,9 @@ exports.PostSendPriceListFormatEnum = {
|
|
|
9143
9362
|
Xml: 'xml',
|
|
9144
9363
|
Html: 'html'
|
|
9145
9364
|
};
|
|
9365
|
+
/**
|
|
9366
|
+
* @export
|
|
9367
|
+
*/
|
|
9146
9368
|
exports.PostSendPriceListCategoryEnum = {
|
|
9147
9369
|
Yealink: 'Yealink',
|
|
9148
9370
|
Mairdi: 'Mairdi',
|
|
@@ -9167,6 +9389,7 @@ exports.PostSendPriceListCategoryEnum = {
|
|
|
9167
9389
|
};
|
|
9168
9390
|
/**
|
|
9169
9391
|
* ProductsApi - axios parameter creator
|
|
9392
|
+
* @export
|
|
9170
9393
|
*/
|
|
9171
9394
|
var ProductsApiAxiosParamCreator = function (configuration) {
|
|
9172
9395
|
var _this = this;
|
|
@@ -9516,6 +9739,7 @@ var ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
9516
9739
|
exports.ProductsApiAxiosParamCreator = ProductsApiAxiosParamCreator;
|
|
9517
9740
|
/**
|
|
9518
9741
|
* ProductsApi - functional programming interface
|
|
9742
|
+
* @export
|
|
9519
9743
|
*/
|
|
9520
9744
|
var ProductsApiFp = function (configuration) {
|
|
9521
9745
|
var localVarAxiosParamCreator = (0, exports.ProductsApiAxiosParamCreator)(configuration);
|
|
@@ -9733,6 +9957,7 @@ var ProductsApiFp = function (configuration) {
|
|
|
9733
9957
|
exports.ProductsApiFp = ProductsApiFp;
|
|
9734
9958
|
/**
|
|
9735
9959
|
* ProductsApi - factory interface
|
|
9960
|
+
* @export
|
|
9736
9961
|
*/
|
|
9737
9962
|
var ProductsApiFactory = function (configuration, basePath, axios) {
|
|
9738
9963
|
var localVarFp = (0, exports.ProductsApiFp)(configuration);
|
|
@@ -9833,6 +10058,9 @@ var ProductsApiFactory = function (configuration, basePath, axios) {
|
|
|
9833
10058
|
exports.ProductsApiFactory = ProductsApiFactory;
|
|
9834
10059
|
/**
|
|
9835
10060
|
* ProductsApi - object-oriented interface
|
|
10061
|
+
* @export
|
|
10062
|
+
* @class ProductsApi
|
|
10063
|
+
* @extends {BaseAPI}
|
|
9836
10064
|
*/
|
|
9837
10065
|
var ProductsApi = /** @class */ (function (_super) {
|
|
9838
10066
|
__extends(ProductsApi, _super);
|
|
@@ -9844,6 +10072,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9844
10072
|
* @summary Get Attribute Sets
|
|
9845
10073
|
* @param {*} [options] Override http request option.
|
|
9846
10074
|
* @throws {RequiredError}
|
|
10075
|
+
* @memberof ProductsApi
|
|
9847
10076
|
*/
|
|
9848
10077
|
ProductsApi.prototype.getGetAttributeSets = function (options) {
|
|
9849
10078
|
var _this = this;
|
|
@@ -9854,6 +10083,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9854
10083
|
* @summary Get Customer Price Lists
|
|
9855
10084
|
* @param {*} [options] Override http request option.
|
|
9856
10085
|
* @throws {RequiredError}
|
|
10086
|
+
* @memberof ProductsApi
|
|
9857
10087
|
*/
|
|
9858
10088
|
ProductsApi.prototype.getGetCustomerPriceLists = function (options) {
|
|
9859
10089
|
var _this = this;
|
|
@@ -9866,6 +10096,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9866
10096
|
* @param {*} [options] Override http request option.
|
|
9867
10097
|
* @deprecated
|
|
9868
10098
|
* @throws {RequiredError}
|
|
10099
|
+
* @memberof ProductsApi
|
|
9869
10100
|
*/
|
|
9870
10101
|
ProductsApi.prototype.getGetLegacyStockList = function (format, options) {
|
|
9871
10102
|
var _this = this;
|
|
@@ -9876,6 +10107,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9876
10107
|
* @summary Get Products
|
|
9877
10108
|
* @param {*} [options] Override http request option.
|
|
9878
10109
|
* @throws {RequiredError}
|
|
10110
|
+
* @memberof ProductsApi
|
|
9879
10111
|
*/
|
|
9880
10112
|
ProductsApi.prototype.getGetProducts = function (options) {
|
|
9881
10113
|
var _this = this;
|
|
@@ -9886,6 +10118,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9886
10118
|
* @summary Get Current Stock & Pricing
|
|
9887
10119
|
* @param {*} [options] Override http request option.
|
|
9888
10120
|
* @throws {RequiredError}
|
|
10121
|
+
* @memberof ProductsApi
|
|
9889
10122
|
*/
|
|
9890
10123
|
ProductsApi.prototype.getGetStockList = function (options) {
|
|
9891
10124
|
var _this = this;
|
|
@@ -9896,6 +10129,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9896
10129
|
* @summary Get 3CX Templates
|
|
9897
10130
|
* @param {*} [options] Override http request option.
|
|
9898
10131
|
* @throws {RequiredError}
|
|
10132
|
+
* @memberof ProductsApi
|
|
9899
10133
|
*/
|
|
9900
10134
|
ProductsApi.prototype.getGetTcxTemplates = function (options) {
|
|
9901
10135
|
var _this = this;
|
|
@@ -9909,6 +10143,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9909
10143
|
* @param {string} [search] Search
|
|
9910
10144
|
* @param {*} [options] Override http request option.
|
|
9911
10145
|
* @throws {RequiredError}
|
|
10146
|
+
* @memberof ProductsApi
|
|
9912
10147
|
*/
|
|
9913
10148
|
ProductsApi.prototype.getSearchProducts = function (pageSize, page, search, options) {
|
|
9914
10149
|
var _this = this;
|
|
@@ -9921,6 +10156,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9921
10156
|
* @param {PostGetProductRequest} postGetProductRequest Product search criteria
|
|
9922
10157
|
* @param {*} [options] Override http request option.
|
|
9923
10158
|
* @throws {RequiredError}
|
|
10159
|
+
* @memberof ProductsApi
|
|
9924
10160
|
*/
|
|
9925
10161
|
ProductsApi.prototype.postGetProduct = function (sku, postGetProductRequest, options) {
|
|
9926
10162
|
var _this = this;
|
|
@@ -9934,6 +10170,7 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9934
10170
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
9935
10171
|
* @param {*} [options] Override http request option.
|
|
9936
10172
|
* @throws {RequiredError}
|
|
10173
|
+
* @memberof ProductsApi
|
|
9937
10174
|
*/
|
|
9938
10175
|
ProductsApi.prototype.postGetProductForCustomer = function (customerId, sku, postGetProductForCustomerRequest, options) {
|
|
9939
10176
|
var _this = this;
|
|
@@ -9942,12 +10179,16 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
9942
10179
|
return ProductsApi;
|
|
9943
10180
|
}(base_1.BaseAPI));
|
|
9944
10181
|
exports.ProductsApi = ProductsApi;
|
|
10182
|
+
/**
|
|
10183
|
+
* @export
|
|
10184
|
+
*/
|
|
9945
10185
|
exports.GetGetLegacyStockListFormatEnum = {
|
|
9946
10186
|
Xml: 'XML',
|
|
9947
10187
|
Csv: 'CSV'
|
|
9948
10188
|
};
|
|
9949
10189
|
/**
|
|
9950
10190
|
* ProvisioningApi - axios parameter creator
|
|
10191
|
+
* @export
|
|
9951
10192
|
*/
|
|
9952
10193
|
var ProvisioningApiAxiosParamCreator = function (configuration) {
|
|
9953
10194
|
var _this = this;
|
|
@@ -10227,6 +10468,7 @@ var ProvisioningApiAxiosParamCreator = function (configuration) {
|
|
|
10227
10468
|
exports.ProvisioningApiAxiosParamCreator = ProvisioningApiAxiosParamCreator;
|
|
10228
10469
|
/**
|
|
10229
10470
|
* ProvisioningApi - functional programming interface
|
|
10471
|
+
* @export
|
|
10230
10472
|
*/
|
|
10231
10473
|
var ProvisioningApiFp = function (configuration) {
|
|
10232
10474
|
var localVarAxiosParamCreator = (0, exports.ProvisioningApiAxiosParamCreator)(configuration);
|
|
@@ -10400,6 +10642,7 @@ var ProvisioningApiFp = function (configuration) {
|
|
|
10400
10642
|
exports.ProvisioningApiFp = ProvisioningApiFp;
|
|
10401
10643
|
/**
|
|
10402
10644
|
* ProvisioningApi - factory interface
|
|
10645
|
+
* @export
|
|
10403
10646
|
*/
|
|
10404
10647
|
var ProvisioningApiFactory = function (configuration, basePath, axios) {
|
|
10405
10648
|
var localVarFp = (0, exports.ProvisioningApiFp)(configuration);
|
|
@@ -10482,6 +10725,9 @@ var ProvisioningApiFactory = function (configuration, basePath, axios) {
|
|
|
10482
10725
|
exports.ProvisioningApiFactory = ProvisioningApiFactory;
|
|
10483
10726
|
/**
|
|
10484
10727
|
* ProvisioningApi - object-oriented interface
|
|
10728
|
+
* @export
|
|
10729
|
+
* @class ProvisioningApi
|
|
10730
|
+
* @extends {BaseAPI}
|
|
10485
10731
|
*/
|
|
10486
10732
|
var ProvisioningApi = /** @class */ (function (_super) {
|
|
10487
10733
|
__extends(ProvisioningApi, _super);
|
|
@@ -10495,6 +10741,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10495
10741
|
* @param {string} mac MAC Address
|
|
10496
10742
|
* @param {*} [options] Override http request option.
|
|
10497
10743
|
* @throws {RequiredError}
|
|
10744
|
+
* @memberof ProvisioningApi
|
|
10498
10745
|
*/
|
|
10499
10746
|
ProvisioningApi.prototype.deleteAddFanvilMac = function (id, mac, options) {
|
|
10500
10747
|
var _this = this;
|
|
@@ -10506,6 +10753,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10506
10753
|
* @param {string} id Group ID
|
|
10507
10754
|
* @param {*} [options] Override http request option.
|
|
10508
10755
|
* @throws {RequiredError}
|
|
10756
|
+
* @memberof ProvisioningApi
|
|
10509
10757
|
*/
|
|
10510
10758
|
ProvisioningApi.prototype.deleteDeleteFanvilGroup = function (id, options) {
|
|
10511
10759
|
var _this = this;
|
|
@@ -10518,6 +10766,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10518
10766
|
* @param {string} mac MAC Address
|
|
10519
10767
|
* @param {*} [options] Override http request option.
|
|
10520
10768
|
* @throws {RequiredError}
|
|
10769
|
+
* @memberof ProvisioningApi
|
|
10521
10770
|
*/
|
|
10522
10771
|
ProvisioningApi.prototype.getGetFanvilEncryptionKey = function (id, mac, options) {
|
|
10523
10772
|
var _this = this;
|
|
@@ -10529,6 +10778,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10529
10778
|
* @param {string} id Group ID
|
|
10530
10779
|
* @param {*} [options] Override http request option.
|
|
10531
10780
|
* @throws {RequiredError}
|
|
10781
|
+
* @memberof ProvisioningApi
|
|
10532
10782
|
*/
|
|
10533
10783
|
ProvisioningApi.prototype.getGetFanvilGroupMacs = function (id, options) {
|
|
10534
10784
|
var _this = this;
|
|
@@ -10540,6 +10790,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10540
10790
|
* @param {string} [id] Customer ID
|
|
10541
10791
|
* @param {*} [options] Override http request option.
|
|
10542
10792
|
* @throws {RequiredError}
|
|
10793
|
+
* @memberof ProvisioningApi
|
|
10543
10794
|
*/
|
|
10544
10795
|
ProvisioningApi.prototype.getGetGroups = function (id, options) {
|
|
10545
10796
|
var _this = this;
|
|
@@ -10551,6 +10802,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10551
10802
|
* @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
|
|
10552
10803
|
* @param {*} [options] Override http request option.
|
|
10553
10804
|
* @throws {RequiredError}
|
|
10805
|
+
* @memberof ProvisioningApi
|
|
10554
10806
|
*/
|
|
10555
10807
|
ProvisioningApi.prototype.postAddFanvilGroup = function (provisioningRequestEntity, options) {
|
|
10556
10808
|
var _this = this;
|
|
@@ -10563,6 +10815,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10563
10815
|
* @param {string} mac MAC Address
|
|
10564
10816
|
* @param {*} [options] Override http request option.
|
|
10565
10817
|
* @throws {RequiredError}
|
|
10818
|
+
* @memberof ProvisioningApi
|
|
10566
10819
|
*/
|
|
10567
10820
|
ProvisioningApi.prototype.postAddFanvilMac = function (id, mac, options) {
|
|
10568
10821
|
var _this = this;
|
|
@@ -10573,6 +10826,7 @@ var ProvisioningApi = /** @class */ (function (_super) {
|
|
|
10573
10826
|
exports.ProvisioningApi = ProvisioningApi;
|
|
10574
10827
|
/**
|
|
10575
10828
|
* SIPTrunksApi - axios parameter creator
|
|
10829
|
+
* @export
|
|
10576
10830
|
*/
|
|
10577
10831
|
var SIPTrunksApiAxiosParamCreator = function (configuration) {
|
|
10578
10832
|
var _this = this;
|
|
@@ -11456,6 +11710,7 @@ var SIPTrunksApiAxiosParamCreator = function (configuration) {
|
|
|
11456
11710
|
exports.SIPTrunksApiAxiosParamCreator = SIPTrunksApiAxiosParamCreator;
|
|
11457
11711
|
/**
|
|
11458
11712
|
* SIPTrunksApi - functional programming interface
|
|
11713
|
+
* @export
|
|
11459
11714
|
*/
|
|
11460
11715
|
var SIPTrunksApiFp = function (configuration) {
|
|
11461
11716
|
var localVarAxiosParamCreator = (0, exports.SIPTrunksApiAxiosParamCreator)(configuration);
|
|
@@ -11984,6 +12239,7 @@ var SIPTrunksApiFp = function (configuration) {
|
|
|
11984
12239
|
exports.SIPTrunksApiFp = SIPTrunksApiFp;
|
|
11985
12240
|
/**
|
|
11986
12241
|
* SIPTrunksApi - factory interface
|
|
12242
|
+
* @export
|
|
11987
12243
|
*/
|
|
11988
12244
|
var SIPTrunksApiFactory = function (configuration, basePath, axios) {
|
|
11989
12245
|
var localVarFp = (0, exports.SIPTrunksApiFp)(configuration);
|
|
@@ -12226,6 +12482,9 @@ var SIPTrunksApiFactory = function (configuration, basePath, axios) {
|
|
|
12226
12482
|
exports.SIPTrunksApiFactory = SIPTrunksApiFactory;
|
|
12227
12483
|
/**
|
|
12228
12484
|
* SIPTrunksApi - object-oriented interface
|
|
12485
|
+
* @export
|
|
12486
|
+
* @class SIPTrunksApi
|
|
12487
|
+
* @extends {BaseAPI}
|
|
12229
12488
|
*/
|
|
12230
12489
|
var SIPTrunksApi = /** @class */ (function (_super) {
|
|
12231
12490
|
__extends(SIPTrunksApi, _super);
|
|
@@ -12238,6 +12497,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12238
12497
|
* @param {number} id SIP Trunk ID
|
|
12239
12498
|
* @param {*} [options] Override http request option.
|
|
12240
12499
|
* @throws {RequiredError}
|
|
12500
|
+
* @memberof SIPTrunksApi
|
|
12241
12501
|
*/
|
|
12242
12502
|
SIPTrunksApi.prototype.deleteGetSipTrunk = function (id, options) {
|
|
12243
12503
|
var _this = this;
|
|
@@ -12249,6 +12509,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12249
12509
|
* @param {number} id SIP Trunk ID
|
|
12250
12510
|
* @param {*} [options] Override http request option.
|
|
12251
12511
|
* @throws {RequiredError}
|
|
12512
|
+
* @memberof SIPTrunksApi
|
|
12252
12513
|
*/
|
|
12253
12514
|
SIPTrunksApi.prototype.getCanDivert = function (id, options) {
|
|
12254
12515
|
var _this = this;
|
|
@@ -12260,6 +12521,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12260
12521
|
* @param {number} id SIP Trunk ID
|
|
12261
12522
|
* @param {*} [options] Override http request option.
|
|
12262
12523
|
* @throws {RequiredError}
|
|
12524
|
+
* @memberof SIPTrunksApi
|
|
12263
12525
|
*/
|
|
12264
12526
|
SIPTrunksApi.prototype.getGetAddress = function (id, options) {
|
|
12265
12527
|
var _this = this;
|
|
@@ -12270,6 +12532,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12270
12532
|
* @summary Get UK National Area Codes
|
|
12271
12533
|
* @param {*} [options] Override http request option.
|
|
12272
12534
|
* @throws {RequiredError}
|
|
12535
|
+
* @memberof SIPTrunksApi
|
|
12273
12536
|
*/
|
|
12274
12537
|
SIPTrunksApi.prototype.getGetAreaCodes = function (options) {
|
|
12275
12538
|
var _this = this;
|
|
@@ -12281,6 +12544,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12281
12544
|
* @param {number} id SIP Trunk ID
|
|
12282
12545
|
* @param {*} [options] Override http request option.
|
|
12283
12546
|
* @throws {RequiredError}
|
|
12547
|
+
* @memberof SIPTrunksApi
|
|
12284
12548
|
*/
|
|
12285
12549
|
SIPTrunksApi.prototype.getGetCliFlexibility = function (id, options) {
|
|
12286
12550
|
var _this = this;
|
|
@@ -12292,6 +12556,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12292
12556
|
* @param {number} id SIP Trunk ID
|
|
12293
12557
|
* @param {*} [options] Override http request option.
|
|
12294
12558
|
* @throws {RequiredError}
|
|
12559
|
+
* @memberof SIPTrunksApi
|
|
12295
12560
|
*/
|
|
12296
12561
|
SIPTrunksApi.prototype.getGetDdis = function (id, options) {
|
|
12297
12562
|
var _this = this;
|
|
@@ -12304,6 +12569,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12304
12569
|
* @param {boolean} [enabled] Enabled Diverts
|
|
12305
12570
|
* @param {*} [options] Override http request option.
|
|
12306
12571
|
* @throws {RequiredError}
|
|
12572
|
+
* @memberof SIPTrunksApi
|
|
12307
12573
|
*/
|
|
12308
12574
|
SIPTrunksApi.prototype.getGetDiverts = function (id, enabled, options) {
|
|
12309
12575
|
var _this = this;
|
|
@@ -12315,6 +12581,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12315
12581
|
* @param {number} id SIP Trunk ID
|
|
12316
12582
|
* @param {*} [options] Override http request option.
|
|
12317
12583
|
* @throws {RequiredError}
|
|
12584
|
+
* @memberof SIPTrunksApi
|
|
12318
12585
|
*/
|
|
12319
12586
|
SIPTrunksApi.prototype.getGetSipTrunk = function (id, options) {
|
|
12320
12587
|
var _this = this;
|
|
@@ -12328,6 +12595,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12328
12595
|
* @param {string} [search] Search
|
|
12329
12596
|
* @param {*} [options] Override http request option.
|
|
12330
12597
|
* @throws {RequiredError}
|
|
12598
|
+
* @memberof SIPTrunksApi
|
|
12331
12599
|
*/
|
|
12332
12600
|
SIPTrunksApi.prototype.getGetSipTrunks = function (pageSize, page, search, options) {
|
|
12333
12601
|
var _this = this;
|
|
@@ -12340,6 +12608,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12340
12608
|
* @param {boolean} enabled Enabled
|
|
12341
12609
|
* @param {*} [options] Override http request option.
|
|
12342
12610
|
* @throws {RequiredError}
|
|
12611
|
+
* @memberof SIPTrunksApi
|
|
12343
12612
|
*/
|
|
12344
12613
|
SIPTrunksApi.prototype.patchGetCliFlexibility = function (id, enabled, options) {
|
|
12345
12614
|
var _this = this;
|
|
@@ -12351,6 +12620,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12351
12620
|
* @param {number} id SIP Trunk ID
|
|
12352
12621
|
* @param {*} [options] Override http request option.
|
|
12353
12622
|
* @throws {RequiredError}
|
|
12623
|
+
* @memberof SIPTrunksApi
|
|
12354
12624
|
*/
|
|
12355
12625
|
SIPTrunksApi.prototype.patchSetAsAvailable = function (id, options) {
|
|
12356
12626
|
var _this = this;
|
|
@@ -12364,6 +12634,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12364
12634
|
* @param {number} [billingCustomerId] Billing Customer ID
|
|
12365
12635
|
* @param {*} [options] Override http request option.
|
|
12366
12636
|
* @throws {RequiredError}
|
|
12637
|
+
* @memberof SIPTrunksApi
|
|
12367
12638
|
*/
|
|
12368
12639
|
SIPTrunksApi.prototype.patchSetOwnership = function (id, ownerId, billingCustomerId, options) {
|
|
12369
12640
|
var _this = this;
|
|
@@ -12376,6 +12647,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12376
12647
|
* @param {number} channels SIP Channels
|
|
12377
12648
|
* @param {*} [options] Override http request option.
|
|
12378
12649
|
* @throws {RequiredError}
|
|
12650
|
+
* @memberof SIPTrunksApi
|
|
12379
12651
|
*/
|
|
12380
12652
|
SIPTrunksApi.prototype.patchUpdateChannelCount = function (id, channels, options) {
|
|
12381
12653
|
var _this = this;
|
|
@@ -12388,6 +12660,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12388
12660
|
* @param {string} company Company Name
|
|
12389
12661
|
* @param {*} [options] Override http request option.
|
|
12390
12662
|
* @throws {RequiredError}
|
|
12663
|
+
* @memberof SIPTrunksApi
|
|
12391
12664
|
*/
|
|
12392
12665
|
SIPTrunksApi.prototype.patchUpdateCompanyName = function (id, company, options) {
|
|
12393
12666
|
var _this = this;
|
|
@@ -12400,6 +12673,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12400
12673
|
* @param {string} number Main Trunk Number
|
|
12401
12674
|
* @param {*} [options] Override http request option.
|
|
12402
12675
|
* @throws {RequiredError}
|
|
12676
|
+
* @memberof SIPTrunksApi
|
|
12403
12677
|
*/
|
|
12404
12678
|
SIPTrunksApi.prototype.patchUpdateMainTrunkNumber = function (id, number, options) {
|
|
12405
12679
|
var _this = this;
|
|
@@ -12412,6 +12686,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12412
12686
|
* @param {string} ipAddress PBX IP Address
|
|
12413
12687
|
* @param {*} [options] Override http request option.
|
|
12414
12688
|
* @throws {RequiredError}
|
|
12689
|
+
* @memberof SIPTrunksApi
|
|
12415
12690
|
*/
|
|
12416
12691
|
SIPTrunksApi.prototype.patchUpdatePbxIPAddress = function (id, ipAddress, options) {
|
|
12417
12692
|
var _this = this;
|
|
@@ -12424,6 +12699,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12424
12699
|
* @param {DdiRangesRequestModel} [ddiRangesRequestModel] DDI Request
|
|
12425
12700
|
* @param {*} [options] Override http request option.
|
|
12426
12701
|
* @throws {RequiredError}
|
|
12702
|
+
* @memberof SIPTrunksApi
|
|
12427
12703
|
*/
|
|
12428
12704
|
SIPTrunksApi.prototype.postGetDdis = function (id, ddiRangesRequestModel, options) {
|
|
12429
12705
|
var _this = this;
|
|
@@ -12435,6 +12711,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12435
12711
|
* @param {SipTrunkChangeResponseModel} [sipTrunkChangeResponseModel] Change Request
|
|
12436
12712
|
* @param {*} [options] Override http request option.
|
|
12437
12713
|
* @throws {RequiredError}
|
|
12714
|
+
* @memberof SIPTrunksApi
|
|
12438
12715
|
*/
|
|
12439
12716
|
SIPTrunksApi.prototype.postGetRequestedDdis = function (sipTrunkChangeResponseModel, options) {
|
|
12440
12717
|
var _this = this;
|
|
@@ -12446,6 +12723,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12446
12723
|
* @param {SipTrunkCreationRequestModel} [sipTrunkCreationRequestModel] New SIP Trunk Request
|
|
12447
12724
|
* @param {*} [options] Override http request option.
|
|
12448
12725
|
* @throws {RequiredError}
|
|
12726
|
+
* @memberof SIPTrunksApi
|
|
12449
12727
|
*/
|
|
12450
12728
|
SIPTrunksApi.prototype.postGetSipTrunks = function (sipTrunkCreationRequestModel, options) {
|
|
12451
12729
|
var _this = this;
|
|
@@ -12457,6 +12735,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12457
12735
|
* @param {SipTrunkChangeResponseModel} [sipTrunkChangeResponseModel] Change Request
|
|
12458
12736
|
* @param {*} [options] Override http request option.
|
|
12459
12737
|
* @throws {RequiredError}
|
|
12738
|
+
* @memberof SIPTrunksApi
|
|
12460
12739
|
*/
|
|
12461
12740
|
SIPTrunksApi.prototype.postTrackChange = function (sipTrunkChangeResponseModel, options) {
|
|
12462
12741
|
var _this = this;
|
|
@@ -12469,6 +12748,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12469
12748
|
* @param {AddressRequestModel} [addressRequestModel] Address Request
|
|
12470
12749
|
* @param {*} [options] Override http request option.
|
|
12471
12750
|
* @throws {RequiredError}
|
|
12751
|
+
* @memberof SIPTrunksApi
|
|
12472
12752
|
*/
|
|
12473
12753
|
SIPTrunksApi.prototype.putGetAddress = function (id, addressRequestModel, options) {
|
|
12474
12754
|
var _this = this;
|
|
@@ -12482,6 +12762,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12482
12762
|
* @param {DivertRequestModel} [divertRequestModel] Divert Request
|
|
12483
12763
|
* @param {*} [options] Override http request option.
|
|
12484
12764
|
* @throws {RequiredError}
|
|
12765
|
+
* @memberof SIPTrunksApi
|
|
12485
12766
|
*/
|
|
12486
12767
|
SIPTrunksApi.prototype.putGetDiverts = function (id, enabled, divertRequestModel, options) {
|
|
12487
12768
|
var _this = this;
|
|
@@ -12492,6 +12773,7 @@ var SIPTrunksApi = /** @class */ (function (_super) {
|
|
|
12492
12773
|
exports.SIPTrunksApi = SIPTrunksApi;
|
|
12493
12774
|
/**
|
|
12494
12775
|
* SMSApi - axios parameter creator
|
|
12776
|
+
* @export
|
|
12495
12777
|
*/
|
|
12496
12778
|
var SMSApiAxiosParamCreator = function (configuration) {
|
|
12497
12779
|
var _this = this;
|
|
@@ -12542,6 +12824,7 @@ var SMSApiAxiosParamCreator = function (configuration) {
|
|
|
12542
12824
|
exports.SMSApiAxiosParamCreator = SMSApiAxiosParamCreator;
|
|
12543
12825
|
/**
|
|
12544
12826
|
* SMSApi - functional programming interface
|
|
12827
|
+
* @export
|
|
12545
12828
|
*/
|
|
12546
12829
|
var SMSApiFp = function (configuration) {
|
|
12547
12830
|
var localVarAxiosParamCreator = (0, exports.SMSApiAxiosParamCreator)(configuration);
|
|
@@ -12574,6 +12857,7 @@ var SMSApiFp = function (configuration) {
|
|
|
12574
12857
|
exports.SMSApiFp = SMSApiFp;
|
|
12575
12858
|
/**
|
|
12576
12859
|
* SMSApi - factory interface
|
|
12860
|
+
* @export
|
|
12577
12861
|
*/
|
|
12578
12862
|
var SMSApiFactory = function (configuration, basePath, axios) {
|
|
12579
12863
|
var localVarFp = (0, exports.SMSApiFp)(configuration);
|
|
@@ -12593,6 +12877,9 @@ var SMSApiFactory = function (configuration, basePath, axios) {
|
|
|
12593
12877
|
exports.SMSApiFactory = SMSApiFactory;
|
|
12594
12878
|
/**
|
|
12595
12879
|
* SMSApi - object-oriented interface
|
|
12880
|
+
* @export
|
|
12881
|
+
* @class SMSApi
|
|
12882
|
+
* @extends {BaseAPI}
|
|
12596
12883
|
*/
|
|
12597
12884
|
var SMSApi = /** @class */ (function (_super) {
|
|
12598
12885
|
__extends(SMSApi, _super);
|
|
@@ -12605,6 +12892,7 @@ var SMSApi = /** @class */ (function (_super) {
|
|
|
12605
12892
|
* @param {SmsMessageModel} [smsMessageModel] SMS Message
|
|
12606
12893
|
* @param {*} [options] Override http request option.
|
|
12607
12894
|
* @throws {RequiredError}
|
|
12895
|
+
* @memberof SMSApi
|
|
12608
12896
|
*/
|
|
12609
12897
|
SMSApi.prototype.postSendSms = function (authorization, smsMessageModel, options) {
|
|
12610
12898
|
var _this = this;
|
|
@@ -12615,6 +12903,7 @@ var SMSApi = /** @class */ (function (_super) {
|
|
|
12615
12903
|
exports.SMSApi = SMSApi;
|
|
12616
12904
|
/**
|
|
12617
12905
|
* ServicesApi - axios parameter creator
|
|
12906
|
+
* @export
|
|
12618
12907
|
*/
|
|
12619
12908
|
var ServicesApiAxiosParamCreator = function (configuration) {
|
|
12620
12909
|
var _this = this;
|
|
@@ -12764,7 +13053,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
12764
13053
|
},
|
|
12765
13054
|
/**
|
|
12766
13055
|
*
|
|
12767
|
-
* @param {
|
|
13056
|
+
* @param {number} id Group ID
|
|
12768
13057
|
* @param {EventUpdateRequestDTO} [eventUpdateRequestDTO]
|
|
12769
13058
|
* @param {*} [options] Override http request option.
|
|
12770
13059
|
* @throws {RequiredError}
|
|
@@ -12842,6 +13131,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
12842
13131
|
exports.ServicesApiAxiosParamCreator = ServicesApiAxiosParamCreator;
|
|
12843
13132
|
/**
|
|
12844
13133
|
* ServicesApi - functional programming interface
|
|
13134
|
+
* @export
|
|
12845
13135
|
*/
|
|
12846
13136
|
var ServicesApiFp = function (configuration) {
|
|
12847
13137
|
var localVarAxiosParamCreator = (0, exports.ServicesApiAxiosParamCreator)(configuration);
|
|
@@ -12936,7 +13226,7 @@ var ServicesApiFp = function (configuration) {
|
|
|
12936
13226
|
},
|
|
12937
13227
|
/**
|
|
12938
13228
|
*
|
|
12939
|
-
* @param {
|
|
13229
|
+
* @param {number} id Group ID
|
|
12940
13230
|
* @param {EventUpdateRequestDTO} [eventUpdateRequestDTO]
|
|
12941
13231
|
* @param {*} [options] Override http request option.
|
|
12942
13232
|
* @throws {RequiredError}
|
|
@@ -12984,6 +13274,7 @@ var ServicesApiFp = function (configuration) {
|
|
|
12984
13274
|
exports.ServicesApiFp = ServicesApiFp;
|
|
12985
13275
|
/**
|
|
12986
13276
|
* ServicesApi - factory interface
|
|
13277
|
+
* @export
|
|
12987
13278
|
*/
|
|
12988
13279
|
var ServicesApiFactory = function (configuration, basePath, axios) {
|
|
12989
13280
|
var localVarFp = (0, exports.ServicesApiFp)(configuration);
|
|
@@ -13026,7 +13317,7 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
|
|
|
13026
13317
|
},
|
|
13027
13318
|
/**
|
|
13028
13319
|
*
|
|
13029
|
-
* @param {
|
|
13320
|
+
* @param {number} id Group ID
|
|
13030
13321
|
* @param {EventUpdateRequestDTO} [eventUpdateRequestDTO]
|
|
13031
13322
|
* @param {*} [options] Override http request option.
|
|
13032
13323
|
* @throws {RequiredError}
|
|
@@ -13048,6 +13339,9 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
|
|
|
13048
13339
|
exports.ServicesApiFactory = ServicesApiFactory;
|
|
13049
13340
|
/**
|
|
13050
13341
|
* ServicesApi - object-oriented interface
|
|
13342
|
+
* @export
|
|
13343
|
+
* @class ServicesApi
|
|
13344
|
+
* @extends {BaseAPI}
|
|
13051
13345
|
*/
|
|
13052
13346
|
var ServicesApi = /** @class */ (function (_super) {
|
|
13053
13347
|
__extends(ServicesApi, _super);
|
|
@@ -13060,6 +13354,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13060
13354
|
* @param {string} [email] Unsubscribe Email Address
|
|
13061
13355
|
* @param {*} [options] Override http request option.
|
|
13062
13356
|
* @throws {RequiredError}
|
|
13357
|
+
* @memberof ServicesApi
|
|
13063
13358
|
*/
|
|
13064
13359
|
ServicesApi.prototype.deleteUnsubscribe = function (id, email, options) {
|
|
13065
13360
|
var _this = this;
|
|
@@ -13069,6 +13364,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13069
13364
|
*
|
|
13070
13365
|
* @param {*} [options] Override http request option.
|
|
13071
13366
|
* @throws {RequiredError}
|
|
13367
|
+
* @memberof ServicesApi
|
|
13072
13368
|
*/
|
|
13073
13369
|
ServicesApi.prototype.getGetServiceHealth = function (options) {
|
|
13074
13370
|
var _this = this;
|
|
@@ -13079,6 +13375,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13079
13375
|
* @param {number} id Group ID
|
|
13080
13376
|
* @param {*} [options] Override http request option.
|
|
13081
13377
|
* @throws {RequiredError}
|
|
13378
|
+
* @memberof ServicesApi
|
|
13082
13379
|
*/
|
|
13083
13380
|
ServicesApi.prototype.patchArchiveEvent = function (id, options) {
|
|
13084
13381
|
var _this = this;
|
|
@@ -13089,6 +13386,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13089
13386
|
* @param {EventRequestDTO} [eventRequestDTO]
|
|
13090
13387
|
* @param {*} [options] Override http request option.
|
|
13091
13388
|
* @throws {RequiredError}
|
|
13389
|
+
* @memberof ServicesApi
|
|
13092
13390
|
*/
|
|
13093
13391
|
ServicesApi.prototype.postCreateEvent = function (eventRequestDTO, options) {
|
|
13094
13392
|
var _this = this;
|
|
@@ -13096,10 +13394,11 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13096
13394
|
};
|
|
13097
13395
|
/**
|
|
13098
13396
|
*
|
|
13099
|
-
* @param {
|
|
13397
|
+
* @param {number} id Group ID
|
|
13100
13398
|
* @param {EventUpdateRequestDTO} [eventUpdateRequestDTO]
|
|
13101
13399
|
* @param {*} [options] Override http request option.
|
|
13102
13400
|
* @throws {RequiredError}
|
|
13401
|
+
* @memberof ServicesApi
|
|
13103
13402
|
*/
|
|
13104
13403
|
ServicesApi.prototype.postCreateEventUpdate = function (id, eventUpdateRequestDTO, options) {
|
|
13105
13404
|
var _this = this;
|
|
@@ -13110,6 +13409,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13110
13409
|
* @param {string} [email] Subscription Email Address
|
|
13111
13410
|
* @param {*} [options] Override http request option.
|
|
13112
13411
|
* @throws {RequiredError}
|
|
13412
|
+
* @memberof ServicesApi
|
|
13113
13413
|
*/
|
|
13114
13414
|
ServicesApi.prototype.postSubscribe = function (email, options) {
|
|
13115
13415
|
var _this = this;
|
|
@@ -13120,6 +13420,7 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
13120
13420
|
exports.ServicesApi = ServicesApi;
|
|
13121
13421
|
/**
|
|
13122
13422
|
* ShippingApi - axios parameter creator
|
|
13423
|
+
* @export
|
|
13123
13424
|
*/
|
|
13124
13425
|
var ShippingApiAxiosParamCreator = function (configuration) {
|
|
13125
13426
|
var _this = this;
|
|
@@ -13207,6 +13508,7 @@ var ShippingApiAxiosParamCreator = function (configuration) {
|
|
|
13207
13508
|
exports.ShippingApiAxiosParamCreator = ShippingApiAxiosParamCreator;
|
|
13208
13509
|
/**
|
|
13209
13510
|
* ShippingApi - functional programming interface
|
|
13511
|
+
* @export
|
|
13210
13512
|
*/
|
|
13211
13513
|
var ShippingApiFp = function (configuration) {
|
|
13212
13514
|
var localVarAxiosParamCreator = (0, exports.ShippingApiAxiosParamCreator)(configuration);
|
|
@@ -13263,6 +13565,7 @@ var ShippingApiFp = function (configuration) {
|
|
|
13263
13565
|
exports.ShippingApiFp = ShippingApiFp;
|
|
13264
13566
|
/**
|
|
13265
13567
|
* ShippingApi - factory interface
|
|
13568
|
+
* @export
|
|
13266
13569
|
*/
|
|
13267
13570
|
var ShippingApiFactory = function (configuration, basePath, axios) {
|
|
13268
13571
|
var localVarFp = (0, exports.ShippingApiFp)(configuration);
|
|
@@ -13293,6 +13596,9 @@ var ShippingApiFactory = function (configuration, basePath, axios) {
|
|
|
13293
13596
|
exports.ShippingApiFactory = ShippingApiFactory;
|
|
13294
13597
|
/**
|
|
13295
13598
|
* ShippingApi - object-oriented interface
|
|
13599
|
+
* @export
|
|
13600
|
+
* @class ShippingApi
|
|
13601
|
+
* @extends {BaseAPI}
|
|
13296
13602
|
*/
|
|
13297
13603
|
var ShippingApi = /** @class */ (function (_super) {
|
|
13298
13604
|
__extends(ShippingApi, _super);
|
|
@@ -13306,6 +13612,7 @@ var ShippingApi = /** @class */ (function (_super) {
|
|
|
13306
13612
|
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
13307
13613
|
* @param {*} [options] Override http request option.
|
|
13308
13614
|
* @throws {RequiredError}
|
|
13615
|
+
* @memberof ShippingApi
|
|
13309
13616
|
*/
|
|
13310
13617
|
ShippingApi.prototype.postGetAdminShippingServices = function (customerId, shippingInformationDTO, options) {
|
|
13311
13618
|
var _this = this;
|
|
@@ -13317,6 +13624,7 @@ var ShippingApi = /** @class */ (function (_super) {
|
|
|
13317
13624
|
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
13318
13625
|
* @param {*} [options] Override http request option.
|
|
13319
13626
|
* @throws {RequiredError}
|
|
13627
|
+
* @memberof ShippingApi
|
|
13320
13628
|
*/
|
|
13321
13629
|
ShippingApi.prototype.postGetShippingServices = function (shippingInformationDTO, options) {
|
|
13322
13630
|
var _this = this;
|
|
@@ -13327,6 +13635,7 @@ var ShippingApi = /** @class */ (function (_super) {
|
|
|
13327
13635
|
exports.ShippingApi = ShippingApi;
|
|
13328
13636
|
/**
|
|
13329
13637
|
* StockManagementApi - axios parameter creator
|
|
13638
|
+
* @export
|
|
13330
13639
|
*/
|
|
13331
13640
|
var StockManagementApiAxiosParamCreator = function (configuration) {
|
|
13332
13641
|
var _this = this;
|
|
@@ -14291,6 +14600,7 @@ var StockManagementApiAxiosParamCreator = function (configuration) {
|
|
|
14291
14600
|
exports.StockManagementApiAxiosParamCreator = StockManagementApiAxiosParamCreator;
|
|
14292
14601
|
/**
|
|
14293
14602
|
* StockManagementApi - functional programming interface
|
|
14603
|
+
* @export
|
|
14294
14604
|
*/
|
|
14295
14605
|
var StockManagementApiFp = function (configuration) {
|
|
14296
14606
|
var localVarAxiosParamCreator = (0, exports.StockManagementApiAxiosParamCreator)(configuration);
|
|
@@ -14869,6 +15179,7 @@ var StockManagementApiFp = function (configuration) {
|
|
|
14869
15179
|
exports.StockManagementApiFp = StockManagementApiFp;
|
|
14870
15180
|
/**
|
|
14871
15181
|
* StockManagementApi - factory interface
|
|
15182
|
+
* @export
|
|
14872
15183
|
*/
|
|
14873
15184
|
var StockManagementApiFactory = function (configuration, basePath, axios) {
|
|
14874
15185
|
var localVarFp = (0, exports.StockManagementApiFp)(configuration);
|
|
@@ -15135,6 +15446,9 @@ var StockManagementApiFactory = function (configuration, basePath, axios) {
|
|
|
15135
15446
|
exports.StockManagementApiFactory = StockManagementApiFactory;
|
|
15136
15447
|
/**
|
|
15137
15448
|
* StockManagementApi - object-oriented interface
|
|
15449
|
+
* @export
|
|
15450
|
+
* @class StockManagementApi
|
|
15451
|
+
* @extends {BaseAPI}
|
|
15138
15452
|
*/
|
|
15139
15453
|
var StockManagementApi = /** @class */ (function (_super) {
|
|
15140
15454
|
__extends(StockManagementApi, _super);
|
|
@@ -15147,6 +15461,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15147
15461
|
* @param {number} id Stock Order ID
|
|
15148
15462
|
* @param {*} [options] Override http request option.
|
|
15149
15463
|
* @throws {RequiredError}
|
|
15464
|
+
* @memberof StockManagementApi
|
|
15150
15465
|
*/
|
|
15151
15466
|
StockManagementApi.prototype.deleteDeleteStockOrder = function (id, options) {
|
|
15152
15467
|
var _this = this;
|
|
@@ -15159,6 +15474,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15159
15474
|
* @param {number} deductionId Stock Order Deduction ID
|
|
15160
15475
|
* @param {*} [options] Override http request option.
|
|
15161
15476
|
* @throws {RequiredError}
|
|
15477
|
+
* @memberof StockManagementApi
|
|
15162
15478
|
*/
|
|
15163
15479
|
StockManagementApi.prototype.deleteDeleteStockOrderDeduction = function (orderId, deductionId, options) {
|
|
15164
15480
|
var _this = this;
|
|
@@ -15171,6 +15487,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15171
15487
|
* @param {number} itemId Stock Order Item ID
|
|
15172
15488
|
* @param {*} [options] Override http request option.
|
|
15173
15489
|
* @throws {RequiredError}
|
|
15490
|
+
* @memberof StockManagementApi
|
|
15174
15491
|
*/
|
|
15175
15492
|
StockManagementApi.prototype.deleteDeleteStockOrderItem = function (orderId, itemId, options) {
|
|
15176
15493
|
var _this = this;
|
|
@@ -15182,6 +15499,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15182
15499
|
* @param {number} id Stock Product ID
|
|
15183
15500
|
* @param {*} [options] Override http request option.
|
|
15184
15501
|
* @throws {RequiredError}
|
|
15502
|
+
* @memberof StockManagementApi
|
|
15185
15503
|
*/
|
|
15186
15504
|
StockManagementApi.prototype.deleteGetStockProduct = function (id, options) {
|
|
15187
15505
|
var _this = this;
|
|
@@ -15193,6 +15511,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15193
15511
|
* @param {number} id Stock Order ID
|
|
15194
15512
|
* @param {*} [options] Override http request option.
|
|
15195
15513
|
* @throws {RequiredError}
|
|
15514
|
+
* @memberof StockManagementApi
|
|
15196
15515
|
*/
|
|
15197
15516
|
StockManagementApi.prototype.getDeleteStockOrder = function (id, options) {
|
|
15198
15517
|
var _this = this;
|
|
@@ -15204,6 +15523,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15204
15523
|
* @param {string} sku Product SKU
|
|
15205
15524
|
* @param {*} [options] Override http request option.
|
|
15206
15525
|
* @throws {RequiredError}
|
|
15526
|
+
* @memberof StockManagementApi
|
|
15207
15527
|
*/
|
|
15208
15528
|
StockManagementApi.prototype.getGetProductDetails = function (sku, options) {
|
|
15209
15529
|
var _this = this;
|
|
@@ -15215,6 +15535,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15215
15535
|
* @param {number} id Stock Order ID
|
|
15216
15536
|
* @param {*} [options] Override http request option.
|
|
15217
15537
|
* @throws {RequiredError}
|
|
15538
|
+
* @memberof StockManagementApi
|
|
15218
15539
|
*/
|
|
15219
15540
|
StockManagementApi.prototype.getGetStockOrderPurchaseOrder = function (id, options) {
|
|
15220
15541
|
var _this = this;
|
|
@@ -15226,6 +15547,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15226
15547
|
* @param {number} id Stock Order ID
|
|
15227
15548
|
* @param {*} [options] Override http request option.
|
|
15228
15549
|
* @throws {RequiredError}
|
|
15550
|
+
* @memberof StockManagementApi
|
|
15229
15551
|
*/
|
|
15230
15552
|
StockManagementApi.prototype.getGetStockOrderSupplierEmail = function (id, options) {
|
|
15231
15553
|
var _this = this;
|
|
@@ -15240,6 +15562,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15240
15562
|
* @param {boolean} [outstanding] Outstanding Orders
|
|
15241
15563
|
* @param {*} [options] Override http request option.
|
|
15242
15564
|
* @throws {RequiredError}
|
|
15565
|
+
* @memberof StockManagementApi
|
|
15243
15566
|
*/
|
|
15244
15567
|
StockManagementApi.prototype.getGetStockOrders = function (pageSize, page, search, outstanding, options) {
|
|
15245
15568
|
var _this = this;
|
|
@@ -15251,6 +15574,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15251
15574
|
* @param {number} id Stock Product ID
|
|
15252
15575
|
* @param {*} [options] Override http request option.
|
|
15253
15576
|
* @throws {RequiredError}
|
|
15577
|
+
* @memberof StockManagementApi
|
|
15254
15578
|
*/
|
|
15255
15579
|
StockManagementApi.prototype.getGetStockProduct = function (id, options) {
|
|
15256
15580
|
var _this = this;
|
|
@@ -15261,6 +15585,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15261
15585
|
* @summary Get Stock Product Suppliers
|
|
15262
15586
|
* @param {*} [options] Override http request option.
|
|
15263
15587
|
* @throws {RequiredError}
|
|
15588
|
+
* @memberof StockManagementApi
|
|
15264
15589
|
*/
|
|
15265
15590
|
StockManagementApi.prototype.getGetStockProductSuppliers = function (options) {
|
|
15266
15591
|
var _this = this;
|
|
@@ -15274,6 +15599,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15274
15599
|
* @param {string} [search] Search
|
|
15275
15600
|
* @param {*} [options] Override http request option.
|
|
15276
15601
|
* @throws {RequiredError}
|
|
15602
|
+
* @memberof StockManagementApi
|
|
15277
15603
|
*/
|
|
15278
15604
|
StockManagementApi.prototype.getGetStockProducts = function (pageSize, page, search, options) {
|
|
15279
15605
|
var _this = this;
|
|
@@ -15285,6 +15611,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15285
15611
|
* @param {number} id Supplier ID
|
|
15286
15612
|
* @param {*} [options] Override http request option.
|
|
15287
15613
|
* @throws {RequiredError}
|
|
15614
|
+
* @memberof StockManagementApi
|
|
15288
15615
|
*/
|
|
15289
15616
|
StockManagementApi.prototype.getGetStockSupplierProducts = function (id, options) {
|
|
15290
15617
|
var _this = this;
|
|
@@ -15296,6 +15623,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15296
15623
|
* @param {number} id Stock Order ID
|
|
15297
15624
|
* @param {*} [options] Override http request option.
|
|
15298
15625
|
* @throws {RequiredError}
|
|
15626
|
+
* @memberof StockManagementApi
|
|
15299
15627
|
*/
|
|
15300
15628
|
StockManagementApi.prototype.getUploadStockOrderInvoice = function (id, options) {
|
|
15301
15629
|
var _this = this;
|
|
@@ -15308,6 +15636,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15308
15636
|
* @param {StockOrderModel} [stockOrderModel]
|
|
15309
15637
|
* @param {*} [options] Override http request option.
|
|
15310
15638
|
* @throws {RequiredError}
|
|
15639
|
+
* @memberof StockManagementApi
|
|
15311
15640
|
*/
|
|
15312
15641
|
StockManagementApi.prototype.patchDeleteStockOrder = function (id, stockOrderModel, options) {
|
|
15313
15642
|
var _this = this;
|
|
@@ -15321,6 +15650,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15321
15650
|
* @param {StockOrderDeductionModel} [stockOrderDeductionModel]
|
|
15322
15651
|
* @param {*} [options] Override http request option.
|
|
15323
15652
|
* @throws {RequiredError}
|
|
15653
|
+
* @memberof StockManagementApi
|
|
15324
15654
|
*/
|
|
15325
15655
|
StockManagementApi.prototype.patchDeleteStockOrderDeduction = function (orderId, deductionId, stockOrderDeductionModel, options) {
|
|
15326
15656
|
var _this = this;
|
|
@@ -15334,6 +15664,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15334
15664
|
* @param {StockOrderItemModel} [stockOrderItemModel]
|
|
15335
15665
|
* @param {*} [options] Override http request option.
|
|
15336
15666
|
* @throws {RequiredError}
|
|
15667
|
+
* @memberof StockManagementApi
|
|
15337
15668
|
*/
|
|
15338
15669
|
StockManagementApi.prototype.patchDeleteStockOrderItem = function (orderId, itemId, stockOrderItemModel, options) {
|
|
15339
15670
|
var _this = this;
|
|
@@ -15346,6 +15677,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15346
15677
|
* @param {Array<StockOrderDeductionRequestModel>} [stockOrderDeductionRequestModel]
|
|
15347
15678
|
* @param {*} [options] Override http request option.
|
|
15348
15679
|
* @throws {RequiredError}
|
|
15680
|
+
* @memberof StockManagementApi
|
|
15349
15681
|
*/
|
|
15350
15682
|
StockManagementApi.prototype.postAddStockOrderDeduction = function (id, stockOrderDeductionRequestModel, options) {
|
|
15351
15683
|
var _this = this;
|
|
@@ -15358,6 +15690,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15358
15690
|
* @param {Array<StockOrderItemRequestModel>} [stockOrderItemRequestModel]
|
|
15359
15691
|
* @param {*} [options] Override http request option.
|
|
15360
15692
|
* @throws {RequiredError}
|
|
15693
|
+
* @memberof StockManagementApi
|
|
15361
15694
|
*/
|
|
15362
15695
|
StockManagementApi.prototype.postAddStockOrderItem = function (id, stockOrderItemRequestModel, options) {
|
|
15363
15696
|
var _this = this;
|
|
@@ -15369,6 +15702,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15369
15702
|
* @param {StockOrderRequestModel} [stockOrderRequestModel]
|
|
15370
15703
|
* @param {*} [options] Override http request option.
|
|
15371
15704
|
* @throws {RequiredError}
|
|
15705
|
+
* @memberof StockManagementApi
|
|
15372
15706
|
*/
|
|
15373
15707
|
StockManagementApi.prototype.postGetStockOrders = function (stockOrderRequestModel, options) {
|
|
15374
15708
|
var _this = this;
|
|
@@ -15380,6 +15714,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15380
15714
|
* @param {StockProductModel} [stockProductModel] Stock Product
|
|
15381
15715
|
* @param {*} [options] Override http request option.
|
|
15382
15716
|
* @throws {RequiredError}
|
|
15717
|
+
* @memberof StockManagementApi
|
|
15383
15718
|
*/
|
|
15384
15719
|
StockManagementApi.prototype.postGetStockProducts = function (stockProductModel, options) {
|
|
15385
15720
|
var _this = this;
|
|
@@ -15392,6 +15727,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15392
15727
|
* @param {File} invoice Supplier Invoice
|
|
15393
15728
|
* @param {*} [options] Override http request option.
|
|
15394
15729
|
* @throws {RequiredError}
|
|
15730
|
+
* @memberof StockManagementApi
|
|
15395
15731
|
*/
|
|
15396
15732
|
StockManagementApi.prototype.postUploadStockOrderInvoice = function (id, invoice, options) {
|
|
15397
15733
|
var _this = this;
|
|
@@ -15404,6 +15740,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15404
15740
|
* @param {StockProductModel} [stockProductModel] Stock Product
|
|
15405
15741
|
* @param {*} [options] Override http request option.
|
|
15406
15742
|
* @throws {RequiredError}
|
|
15743
|
+
* @memberof StockManagementApi
|
|
15407
15744
|
*/
|
|
15408
15745
|
StockManagementApi.prototype.putGetStockProduct = function (id, stockProductModel, options) {
|
|
15409
15746
|
var _this = this;
|
|
@@ -15417,6 +15754,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15417
15754
|
* @param {number} received Quantity Received
|
|
15418
15755
|
* @param {*} [options] Override http request option.
|
|
15419
15756
|
* @throws {RequiredError}
|
|
15757
|
+
* @memberof StockManagementApi
|
|
15420
15758
|
*/
|
|
15421
15759
|
StockManagementApi.prototype.putReceiveStockOrderItem = function (orderId, itemId, received, options) {
|
|
15422
15760
|
var _this = this;
|
|
@@ -15427,6 +15765,7 @@ var StockManagementApi = /** @class */ (function (_super) {
|
|
|
15427
15765
|
exports.StockManagementApi = StockManagementApi;
|
|
15428
15766
|
/**
|
|
15429
15767
|
* SystemApi - axios parameter creator
|
|
15768
|
+
* @export
|
|
15430
15769
|
*/
|
|
15431
15770
|
var SystemApiAxiosParamCreator = function (configuration) {
|
|
15432
15771
|
var _this = this;
|
|
@@ -15500,6 +15839,7 @@ var SystemApiAxiosParamCreator = function (configuration) {
|
|
|
15500
15839
|
exports.SystemApiAxiosParamCreator = SystemApiAxiosParamCreator;
|
|
15501
15840
|
/**
|
|
15502
15841
|
* SystemApi - functional programming interface
|
|
15842
|
+
* @export
|
|
15503
15843
|
*/
|
|
15504
15844
|
var SystemApiFp = function (configuration) {
|
|
15505
15845
|
var localVarAxiosParamCreator = (0, exports.SystemApiAxiosParamCreator)(configuration);
|
|
@@ -15538,6 +15878,7 @@ var SystemApiFp = function (configuration) {
|
|
|
15538
15878
|
exports.SystemApiFp = SystemApiFp;
|
|
15539
15879
|
/**
|
|
15540
15880
|
* SystemApi - factory interface
|
|
15881
|
+
* @export
|
|
15541
15882
|
*/
|
|
15542
15883
|
var SystemApiFactory = function (configuration, basePath, axios) {
|
|
15543
15884
|
var localVarFp = (0, exports.SystemApiFp)(configuration);
|
|
@@ -15563,6 +15904,9 @@ var SystemApiFactory = function (configuration, basePath, axios) {
|
|
|
15563
15904
|
exports.SystemApiFactory = SystemApiFactory;
|
|
15564
15905
|
/**
|
|
15565
15906
|
* SystemApi - object-oriented interface
|
|
15907
|
+
* @export
|
|
15908
|
+
* @class SystemApi
|
|
15909
|
+
* @extends {BaseAPI}
|
|
15566
15910
|
*/
|
|
15567
15911
|
var SystemApi = /** @class */ (function (_super) {
|
|
15568
15912
|
__extends(SystemApi, _super);
|
|
@@ -15581,6 +15925,7 @@ var SystemApi = /** @class */ (function (_super) {
|
|
|
15581
15925
|
* @param {number} [page] Page Number
|
|
15582
15926
|
* @param {*} [options] Override http request option.
|
|
15583
15927
|
* @throws {RequiredError}
|
|
15928
|
+
* @memberof SystemApi
|
|
15584
15929
|
*/
|
|
15585
15930
|
SystemApi.prototype.getLogSearch = function (clientId, clientIp, responseCode, date, filterOutDomain, pageSize, page, options) {
|
|
15586
15931
|
var _this = this;
|
|
@@ -15591,6 +15936,7 @@ var SystemApi = /** @class */ (function (_super) {
|
|
|
15591
15936
|
exports.SystemApi = SystemApi;
|
|
15592
15937
|
/**
|
|
15593
15938
|
* TicketsApi - axios parameter creator
|
|
15939
|
+
* @export
|
|
15594
15940
|
*/
|
|
15595
15941
|
var TicketsApiAxiosParamCreator = function (configuration) {
|
|
15596
15942
|
var _this = this;
|
|
@@ -15814,6 +16160,7 @@ var TicketsApiAxiosParamCreator = function (configuration) {
|
|
|
15814
16160
|
exports.TicketsApiAxiosParamCreator = TicketsApiAxiosParamCreator;
|
|
15815
16161
|
/**
|
|
15816
16162
|
* TicketsApi - functional programming interface
|
|
16163
|
+
* @export
|
|
15817
16164
|
*/
|
|
15818
16165
|
var TicketsApiFp = function (configuration) {
|
|
15819
16166
|
var localVarAxiosParamCreator = (0, exports.TicketsApiAxiosParamCreator)(configuration);
|
|
@@ -15939,6 +16286,7 @@ var TicketsApiFp = function (configuration) {
|
|
|
15939
16286
|
exports.TicketsApiFp = TicketsApiFp;
|
|
15940
16287
|
/**
|
|
15941
16288
|
* TicketsApi - factory interface
|
|
16289
|
+
* @export
|
|
15942
16290
|
*/
|
|
15943
16291
|
var TicketsApiFactory = function (configuration, basePath, axios) {
|
|
15944
16292
|
var localVarFp = (0, exports.TicketsApiFp)(configuration);
|
|
@@ -15999,6 +16347,9 @@ var TicketsApiFactory = function (configuration, basePath, axios) {
|
|
|
15999
16347
|
exports.TicketsApiFactory = TicketsApiFactory;
|
|
16000
16348
|
/**
|
|
16001
16349
|
* TicketsApi - object-oriented interface
|
|
16350
|
+
* @export
|
|
16351
|
+
* @class TicketsApi
|
|
16352
|
+
* @extends {BaseAPI}
|
|
16002
16353
|
*/
|
|
16003
16354
|
var TicketsApi = /** @class */ (function (_super) {
|
|
16004
16355
|
__extends(TicketsApi, _super);
|
|
@@ -16012,6 +16363,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16012
16363
|
* @param {number} [page] Page Number
|
|
16013
16364
|
* @param {*} [options] Override http request option.
|
|
16014
16365
|
* @throws {RequiredError}
|
|
16366
|
+
* @memberof TicketsApi
|
|
16015
16367
|
*/
|
|
16016
16368
|
TicketsApi.prototype.getCreateTicket = function (search, pageSize, page, options) {
|
|
16017
16369
|
var _this = this;
|
|
@@ -16022,6 +16374,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16022
16374
|
* @param {number} id Ticket ID
|
|
16023
16375
|
* @param {*} [options] Override http request option.
|
|
16024
16376
|
* @throws {RequiredError}
|
|
16377
|
+
* @memberof TicketsApi
|
|
16025
16378
|
*/
|
|
16026
16379
|
TicketsApi.prototype.getGetTicket = function (id, options) {
|
|
16027
16380
|
var _this = this;
|
|
@@ -16032,6 +16385,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16032
16385
|
* @param {number} id Ticket ID
|
|
16033
16386
|
* @param {*} [options] Override http request option.
|
|
16034
16387
|
* @throws {RequiredError}
|
|
16388
|
+
* @memberof TicketsApi
|
|
16035
16389
|
*/
|
|
16036
16390
|
TicketsApi.prototype.patchCloseTicket = function (id, options) {
|
|
16037
16391
|
var _this = this;
|
|
@@ -16044,6 +16398,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16044
16398
|
* @param {Array<File>} [attachments] Attachments (up to 20MB combined)
|
|
16045
16399
|
* @param {*} [options] Override http request option.
|
|
16046
16400
|
* @throws {RequiredError}
|
|
16401
|
+
* @memberof TicketsApi
|
|
16047
16402
|
*/
|
|
16048
16403
|
TicketsApi.prototype.postCreateTicket = function (subject, message, attachments, options) {
|
|
16049
16404
|
var _this = this;
|
|
@@ -16056,6 +16411,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16056
16411
|
* @param {Array<File>} [attachments] Attachments (up to 20MB combined)
|
|
16057
16412
|
* @param {*} [options] Override http request option.
|
|
16058
16413
|
* @throws {RequiredError}
|
|
16414
|
+
* @memberof TicketsApi
|
|
16059
16415
|
*/
|
|
16060
16416
|
TicketsApi.prototype.postTicketReply = function (id, body, attachments, options) {
|
|
16061
16417
|
var _this = this;
|
|
@@ -16066,6 +16422,7 @@ var TicketsApi = /** @class */ (function (_super) {
|
|
|
16066
16422
|
exports.TicketsApi = TicketsApi;
|
|
16067
16423
|
/**
|
|
16068
16424
|
* WebhooksApi - axios parameter creator
|
|
16425
|
+
* @export
|
|
16069
16426
|
*/
|
|
16070
16427
|
var WebhooksApiAxiosParamCreator = function (configuration) {
|
|
16071
16428
|
var _this = this;
|
|
@@ -16153,6 +16510,7 @@ var WebhooksApiAxiosParamCreator = function (configuration) {
|
|
|
16153
16510
|
exports.WebhooksApiAxiosParamCreator = WebhooksApiAxiosParamCreator;
|
|
16154
16511
|
/**
|
|
16155
16512
|
* WebhooksApi - functional programming interface
|
|
16513
|
+
* @export
|
|
16156
16514
|
*/
|
|
16157
16515
|
var WebhooksApiFp = function (configuration) {
|
|
16158
16516
|
var localVarAxiosParamCreator = (0, exports.WebhooksApiAxiosParamCreator)(configuration);
|
|
@@ -16208,6 +16566,7 @@ var WebhooksApiFp = function (configuration) {
|
|
|
16208
16566
|
exports.WebhooksApiFp = WebhooksApiFp;
|
|
16209
16567
|
/**
|
|
16210
16568
|
* WebhooksApi - factory interface
|
|
16569
|
+
* @export
|
|
16211
16570
|
*/
|
|
16212
16571
|
var WebhooksApiFactory = function (configuration, basePath, axios) {
|
|
16213
16572
|
var localVarFp = (0, exports.WebhooksApiFp)(configuration);
|
|
@@ -16237,6 +16596,9 @@ var WebhooksApiFactory = function (configuration, basePath, axios) {
|
|
|
16237
16596
|
exports.WebhooksApiFactory = WebhooksApiFactory;
|
|
16238
16597
|
/**
|
|
16239
16598
|
* WebhooksApi - object-oriented interface
|
|
16599
|
+
* @export
|
|
16600
|
+
* @class WebhooksApi
|
|
16601
|
+
* @extends {BaseAPI}
|
|
16240
16602
|
*/
|
|
16241
16603
|
var WebhooksApi = /** @class */ (function (_super) {
|
|
16242
16604
|
__extends(WebhooksApi, _super);
|
|
@@ -16249,6 +16611,7 @@ var WebhooksApi = /** @class */ (function (_super) {
|
|
|
16249
16611
|
* @param {string} authKey Webhook Authentication Key
|
|
16250
16612
|
* @param {*} [options] Override http request option.
|
|
16251
16613
|
* @throws {RequiredError}
|
|
16614
|
+
* @memberof WebhooksApi
|
|
16252
16615
|
*/
|
|
16253
16616
|
WebhooksApi.prototype.deleteRevokeWebhook = function (authKey, options) {
|
|
16254
16617
|
var _this = this;
|
|
@@ -16260,6 +16623,7 @@ var WebhooksApi = /** @class */ (function (_super) {
|
|
|
16260
16623
|
* @param {PostAddWebhookWebhookUriEnum} webhookUri Webhook URI
|
|
16261
16624
|
* @param {*} [options] Override http request option.
|
|
16262
16625
|
* @throws {RequiredError}
|
|
16626
|
+
* @memberof WebhooksApi
|
|
16263
16627
|
*/
|
|
16264
16628
|
WebhooksApi.prototype.postAddWebhook = function (webhookUri, options) {
|
|
16265
16629
|
var _this = this;
|
|
@@ -16268,6 +16632,9 @@ var WebhooksApi = /** @class */ (function (_super) {
|
|
|
16268
16632
|
return WebhooksApi;
|
|
16269
16633
|
}(base_1.BaseAPI));
|
|
16270
16634
|
exports.WebhooksApi = WebhooksApi;
|
|
16635
|
+
/**
|
|
16636
|
+
* @export
|
|
16637
|
+
*/
|
|
16271
16638
|
exports.PostAddWebhookWebhookUriEnum = {
|
|
16272
16639
|
WebhookComposerInstall: '/webhook/composer/install',
|
|
16273
16640
|
WebhookFreshdeskCreate: '/webhook/freshdesk/create',
|