@saritasa/renewaire-frontend-sdk 0.42.0 → 0.44.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/README.md
CHANGED
|
@@ -1552,6 +1552,61 @@ class ProjectsApiService extends BaseService {
|
|
|
1552
1552
|
super(basePath, configuration);
|
|
1553
1553
|
this.httpClient = httpClient;
|
|
1554
1554
|
}
|
|
1555
|
+
projectsCancelQuoteRequest(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1556
|
+
const projectId = requestParameters?.projectId;
|
|
1557
|
+
if (projectId === null || projectId === undefined) {
|
|
1558
|
+
throw new Error("Required parameter projectId was null or undefined when calling projectsCancelQuoteRequest.");
|
|
1559
|
+
}
|
|
1560
|
+
const cancelQuoteRequestCommand = requestParameters?.cancelQuoteRequestCommand;
|
|
1561
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1562
|
+
// authentication (Bearer) required
|
|
1563
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1564
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1565
|
+
this.configuration.selectHeaderAccept([
|
|
1566
|
+
"text/plain",
|
|
1567
|
+
"application/json",
|
|
1568
|
+
"text/json",
|
|
1569
|
+
]);
|
|
1570
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1571
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1572
|
+
}
|
|
1573
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1574
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1575
|
+
// to determine the Content-Type header
|
|
1576
|
+
const consumes = [
|
|
1577
|
+
"application/json",
|
|
1578
|
+
"text/json",
|
|
1579
|
+
"application/*+json",
|
|
1580
|
+
];
|
|
1581
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1582
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1583
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1584
|
+
}
|
|
1585
|
+
let responseType_ = "json";
|
|
1586
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1587
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1588
|
+
responseType_ = "text";
|
|
1589
|
+
}
|
|
1590
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1591
|
+
responseType_ = "json";
|
|
1592
|
+
}
|
|
1593
|
+
else {
|
|
1594
|
+
responseType_ = "blob";
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "object", dataFormat: "int64" })}/cancel-quote-request`;
|
|
1598
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1599
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1600
|
+
context: localVarHttpContext,
|
|
1601
|
+
body: cancelQuoteRequestCommand,
|
|
1602
|
+
responseType: responseType_,
|
|
1603
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1604
|
+
headers: localVarHeaders,
|
|
1605
|
+
observe: observe,
|
|
1606
|
+
transferCache: localVarTransferCache,
|
|
1607
|
+
reportProgress: reportProgress,
|
|
1608
|
+
});
|
|
1609
|
+
}
|
|
1555
1610
|
projectsCreateProject(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1556
1611
|
const body = requestParameters?.body;
|
|
1557
1612
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -1603,6 +1658,61 @@ class ProjectsApiService extends BaseService {
|
|
|
1603
1658
|
reportProgress: reportProgress,
|
|
1604
1659
|
});
|
|
1605
1660
|
}
|
|
1661
|
+
projectsRequestOrder(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1662
|
+
const projectId = requestParameters?.projectId;
|
|
1663
|
+
if (projectId === null || projectId === undefined) {
|
|
1664
|
+
throw new Error("Required parameter projectId was null or undefined when calling projectsRequestOrder.");
|
|
1665
|
+
}
|
|
1666
|
+
const requestOrderCommand = requestParameters?.requestOrderCommand;
|
|
1667
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1668
|
+
// authentication (Bearer) required
|
|
1669
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1670
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1671
|
+
this.configuration.selectHeaderAccept([
|
|
1672
|
+
"text/plain",
|
|
1673
|
+
"application/json",
|
|
1674
|
+
"text/json",
|
|
1675
|
+
]);
|
|
1676
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1677
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1678
|
+
}
|
|
1679
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1680
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1681
|
+
// to determine the Content-Type header
|
|
1682
|
+
const consumes = [
|
|
1683
|
+
"application/json",
|
|
1684
|
+
"text/json",
|
|
1685
|
+
"application/*+json",
|
|
1686
|
+
];
|
|
1687
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1688
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1689
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1690
|
+
}
|
|
1691
|
+
let responseType_ = "json";
|
|
1692
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1693
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1694
|
+
responseType_ = "text";
|
|
1695
|
+
}
|
|
1696
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1697
|
+
responseType_ = "json";
|
|
1698
|
+
}
|
|
1699
|
+
else {
|
|
1700
|
+
responseType_ = "blob";
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "object", dataFormat: "int64" })}/request-order`;
|
|
1704
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1705
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1706
|
+
context: localVarHttpContext,
|
|
1707
|
+
body: requestOrderCommand,
|
|
1708
|
+
responseType: responseType_,
|
|
1709
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1710
|
+
headers: localVarHeaders,
|
|
1711
|
+
observe: observe,
|
|
1712
|
+
transferCache: localVarTransferCache,
|
|
1713
|
+
reportProgress: reportProgress,
|
|
1714
|
+
});
|
|
1715
|
+
}
|
|
1606
1716
|
projectsRequestQuote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1607
1717
|
const projectId = requestParameters?.projectId;
|
|
1608
1718
|
if (projectId === null || projectId === undefined) {
|
|
@@ -1658,6 +1768,171 @@ class ProjectsApiService extends BaseService {
|
|
|
1658
1768
|
reportProgress: reportProgress,
|
|
1659
1769
|
});
|
|
1660
1770
|
}
|
|
1771
|
+
projectsRequestQuote_1(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1772
|
+
const projectId = requestParameters?.projectId;
|
|
1773
|
+
if (projectId === null || projectId === undefined) {
|
|
1774
|
+
throw new Error("Required parameter projectId was null or undefined when calling projectsRequestQuote_1.");
|
|
1775
|
+
}
|
|
1776
|
+
const rejectQuoteCommand = requestParameters?.rejectQuoteCommand;
|
|
1777
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1778
|
+
// authentication (Bearer) required
|
|
1779
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1780
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1781
|
+
this.configuration.selectHeaderAccept([
|
|
1782
|
+
"text/plain",
|
|
1783
|
+
"application/json",
|
|
1784
|
+
"text/json",
|
|
1785
|
+
]);
|
|
1786
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1787
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1788
|
+
}
|
|
1789
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1790
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1791
|
+
// to determine the Content-Type header
|
|
1792
|
+
const consumes = [
|
|
1793
|
+
"application/json",
|
|
1794
|
+
"text/json",
|
|
1795
|
+
"application/*+json",
|
|
1796
|
+
];
|
|
1797
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1798
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1799
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1800
|
+
}
|
|
1801
|
+
let responseType_ = "json";
|
|
1802
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1803
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1804
|
+
responseType_ = "text";
|
|
1805
|
+
}
|
|
1806
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1807
|
+
responseType_ = "json";
|
|
1808
|
+
}
|
|
1809
|
+
else {
|
|
1810
|
+
responseType_ = "blob";
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "object", dataFormat: "int64" })}/reject-quote`;
|
|
1814
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1815
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1816
|
+
context: localVarHttpContext,
|
|
1817
|
+
body: rejectQuoteCommand,
|
|
1818
|
+
responseType: responseType_,
|
|
1819
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1820
|
+
headers: localVarHeaders,
|
|
1821
|
+
observe: observe,
|
|
1822
|
+
transferCache: localVarTransferCache,
|
|
1823
|
+
reportProgress: reportProgress,
|
|
1824
|
+
});
|
|
1825
|
+
}
|
|
1826
|
+
projectsSubmitQuote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1827
|
+
const projectId = requestParameters?.projectId;
|
|
1828
|
+
if (projectId === null || projectId === undefined) {
|
|
1829
|
+
throw new Error("Required parameter projectId was null or undefined when calling projectsSubmitQuote.");
|
|
1830
|
+
}
|
|
1831
|
+
const submitQuoteCommand = requestParameters?.submitQuoteCommand;
|
|
1832
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1833
|
+
// authentication (Bearer) required
|
|
1834
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1835
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1836
|
+
this.configuration.selectHeaderAccept([
|
|
1837
|
+
"text/plain",
|
|
1838
|
+
"application/json",
|
|
1839
|
+
"text/json",
|
|
1840
|
+
]);
|
|
1841
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1842
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1843
|
+
}
|
|
1844
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1845
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1846
|
+
// to determine the Content-Type header
|
|
1847
|
+
const consumes = [
|
|
1848
|
+
"application/json",
|
|
1849
|
+
"text/json",
|
|
1850
|
+
"application/*+json",
|
|
1851
|
+
];
|
|
1852
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1853
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1854
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1855
|
+
}
|
|
1856
|
+
let responseType_ = "json";
|
|
1857
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1858
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1859
|
+
responseType_ = "text";
|
|
1860
|
+
}
|
|
1861
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1862
|
+
responseType_ = "json";
|
|
1863
|
+
}
|
|
1864
|
+
else {
|
|
1865
|
+
responseType_ = "blob";
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "object", dataFormat: "int64" })}/submit-quote`;
|
|
1869
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1870
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1871
|
+
context: localVarHttpContext,
|
|
1872
|
+
body: submitQuoteCommand,
|
|
1873
|
+
responseType: responseType_,
|
|
1874
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1875
|
+
headers: localVarHeaders,
|
|
1876
|
+
observe: observe,
|
|
1877
|
+
transferCache: localVarTransferCache,
|
|
1878
|
+
reportProgress: reportProgress,
|
|
1879
|
+
});
|
|
1880
|
+
}
|
|
1881
|
+
projectsSubmitToRenewAire(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1882
|
+
const projectId = requestParameters?.projectId;
|
|
1883
|
+
if (projectId === null || projectId === undefined) {
|
|
1884
|
+
throw new Error("Required parameter projectId was null or undefined when calling projectsSubmitToRenewAire.");
|
|
1885
|
+
}
|
|
1886
|
+
const submitToRenewAireCommand = requestParameters?.submitToRenewAireCommand;
|
|
1887
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1888
|
+
// authentication (Bearer) required
|
|
1889
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1890
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1891
|
+
this.configuration.selectHeaderAccept([
|
|
1892
|
+
"text/plain",
|
|
1893
|
+
"application/json",
|
|
1894
|
+
"text/json",
|
|
1895
|
+
]);
|
|
1896
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1897
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1898
|
+
}
|
|
1899
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1900
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1901
|
+
// to determine the Content-Type header
|
|
1902
|
+
const consumes = [
|
|
1903
|
+
"application/json",
|
|
1904
|
+
"text/json",
|
|
1905
|
+
"application/*+json",
|
|
1906
|
+
];
|
|
1907
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1908
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1909
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1910
|
+
}
|
|
1911
|
+
let responseType_ = "json";
|
|
1912
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1913
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1914
|
+
responseType_ = "text";
|
|
1915
|
+
}
|
|
1916
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1917
|
+
responseType_ = "json";
|
|
1918
|
+
}
|
|
1919
|
+
else {
|
|
1920
|
+
responseType_ = "blob";
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "object", dataFormat: "int64" })}/submit-to-renewaire`;
|
|
1924
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1925
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1926
|
+
context: localVarHttpContext,
|
|
1927
|
+
body: submitToRenewAireCommand,
|
|
1928
|
+
responseType: responseType_,
|
|
1929
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1930
|
+
headers: localVarHeaders,
|
|
1931
|
+
observe: observe,
|
|
1932
|
+
transferCache: localVarTransferCache,
|
|
1933
|
+
reportProgress: reportProgress,
|
|
1934
|
+
});
|
|
1935
|
+
}
|
|
1661
1936
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ProjectsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1662
1937
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ProjectsApiService, providedIn: "root" });
|
|
1663
1938
|
}
|
|
@@ -4513,6 +4788,52 @@ class UsersApiService extends BaseService {
|
|
|
4513
4788
|
reportProgress: reportProgress,
|
|
4514
4789
|
});
|
|
4515
4790
|
}
|
|
4791
|
+
usersSendInvite(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4792
|
+
const inviteDto = requestParameters?.inviteDto;
|
|
4793
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4794
|
+
// authentication (Bearer) required
|
|
4795
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
4796
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4797
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4798
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4799
|
+
}
|
|
4800
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4801
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4802
|
+
// to determine the Content-Type header
|
|
4803
|
+
const consumes = [
|
|
4804
|
+
"application/json",
|
|
4805
|
+
"text/json",
|
|
4806
|
+
"application/*+json",
|
|
4807
|
+
];
|
|
4808
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
4809
|
+
if (httpContentTypeSelected !== undefined) {
|
|
4810
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
4811
|
+
}
|
|
4812
|
+
let responseType_ = "json";
|
|
4813
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4814
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4815
|
+
responseType_ = "text";
|
|
4816
|
+
}
|
|
4817
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4818
|
+
responseType_ = "json";
|
|
4819
|
+
}
|
|
4820
|
+
else {
|
|
4821
|
+
responseType_ = "blob";
|
|
4822
|
+
}
|
|
4823
|
+
}
|
|
4824
|
+
let localVarPath = `/api/users/invite`;
|
|
4825
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4826
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
4827
|
+
context: localVarHttpContext,
|
|
4828
|
+
body: inviteDto,
|
|
4829
|
+
responseType: responseType_,
|
|
4830
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4831
|
+
headers: localVarHeaders,
|
|
4832
|
+
observe: observe,
|
|
4833
|
+
transferCache: localVarTransferCache,
|
|
4834
|
+
reportProgress: reportProgress,
|
|
4835
|
+
});
|
|
4836
|
+
}
|
|
4516
4837
|
usersSetPreferredLanguage(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4517
4838
|
const setPreferredLanguageCommand = requestParameters?.setPreferredLanguageCommand;
|
|
4518
4839
|
if (setPreferredLanguageCommand === null ||
|
|
@@ -5853,6 +6174,26 @@ var AuditEntity;
|
|
|
5853
6174
|
* Do not edit the class manually.
|
|
5854
6175
|
*/
|
|
5855
6176
|
|
|
6177
|
+
/**
|
|
6178
|
+
* RenewAire CORES API
|
|
6179
|
+
*
|
|
6180
|
+
* Contact: renewaire@saritasa.com
|
|
6181
|
+
*
|
|
6182
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6183
|
+
* https://openapi-generator.tech
|
|
6184
|
+
* Do not edit the class manually.
|
|
6185
|
+
*/
|
|
6186
|
+
|
|
6187
|
+
/**
|
|
6188
|
+
* RenewAire CORES API
|
|
6189
|
+
*
|
|
6190
|
+
* Contact: renewaire@saritasa.com
|
|
6191
|
+
*
|
|
6192
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6193
|
+
* https://openapi-generator.tech
|
|
6194
|
+
* Do not edit the class manually.
|
|
6195
|
+
*/
|
|
6196
|
+
|
|
5856
6197
|
/**
|
|
5857
6198
|
* RenewAire CORES API
|
|
5858
6199
|
*
|
|
@@ -6128,12 +6469,14 @@ var Language;
|
|
|
6128
6469
|
* Do not edit the class manually.
|
|
6129
6470
|
*/
|
|
6130
6471
|
/**
|
|
6131
|
-
* Permission<br />0 = SystemAdmin<br />1 = UserAdministration
|
|
6472
|
+
* Permission<br />0 = SystemAdmin<br />1 = UserAdministration<br />100 = SubmitOrder<br />101 = CanImportOrdersToErp
|
|
6132
6473
|
*/
|
|
6133
6474
|
var Permission;
|
|
6134
6475
|
(function (Permission) {
|
|
6135
6476
|
Permission["SystemAdmin"] = "SystemAdmin";
|
|
6136
6477
|
Permission["UserAdministration"] = "UserAdministration";
|
|
6478
|
+
Permission["SubmitOrder"] = "SubmitOrder";
|
|
6479
|
+
Permission["CanImportOrdersToErp"] = "CanImportOrdersToErp";
|
|
6137
6480
|
})(Permission || (Permission = {}));
|
|
6138
6481
|
|
|
6139
6482
|
/**
|
|
@@ -6156,6 +6499,16 @@ var Permission;
|
|
|
6156
6499
|
* Do not edit the class manually.
|
|
6157
6500
|
*/
|
|
6158
6501
|
|
|
6502
|
+
/**
|
|
6503
|
+
* RenewAire CORES API
|
|
6504
|
+
*
|
|
6505
|
+
* Contact: renewaire@saritasa.com
|
|
6506
|
+
*
|
|
6507
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6508
|
+
* https://openapi-generator.tech
|
|
6509
|
+
* Do not edit the class manually.
|
|
6510
|
+
*/
|
|
6511
|
+
|
|
6159
6512
|
/**
|
|
6160
6513
|
* RenewAire CORES API
|
|
6161
6514
|
*
|
|
@@ -6267,6 +6620,26 @@ var RegistrationStatus;
|
|
|
6267
6620
|
* Do not edit the class manually.
|
|
6268
6621
|
*/
|
|
6269
6622
|
|
|
6623
|
+
/**
|
|
6624
|
+
* RenewAire CORES API
|
|
6625
|
+
*
|
|
6626
|
+
* Contact: renewaire@saritasa.com
|
|
6627
|
+
*
|
|
6628
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6629
|
+
* https://openapi-generator.tech
|
|
6630
|
+
* Do not edit the class manually.
|
|
6631
|
+
*/
|
|
6632
|
+
|
|
6633
|
+
/**
|
|
6634
|
+
* RenewAire CORES API
|
|
6635
|
+
*
|
|
6636
|
+
* Contact: renewaire@saritasa.com
|
|
6637
|
+
*
|
|
6638
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6639
|
+
* https://openapi-generator.tech
|
|
6640
|
+
* Do not edit the class manually.
|
|
6641
|
+
*/
|
|
6642
|
+
|
|
6270
6643
|
var SaveGroupDtoTypeEnum;
|
|
6271
6644
|
(function (SaveGroupDtoTypeEnum) {
|
|
6272
6645
|
SaveGroupDtoTypeEnum["None"] = "None";
|
|
@@ -6412,6 +6785,26 @@ var SetPreferredLanguageCommandPreferredLanguageEnum;
|
|
|
6412
6785
|
* Do not edit the class manually.
|
|
6413
6786
|
*/
|
|
6414
6787
|
|
|
6788
|
+
/**
|
|
6789
|
+
* RenewAire CORES API
|
|
6790
|
+
*
|
|
6791
|
+
* Contact: renewaire@saritasa.com
|
|
6792
|
+
*
|
|
6793
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6794
|
+
* https://openapi-generator.tech
|
|
6795
|
+
* Do not edit the class manually.
|
|
6796
|
+
*/
|
|
6797
|
+
|
|
6798
|
+
/**
|
|
6799
|
+
* RenewAire CORES API
|
|
6800
|
+
*
|
|
6801
|
+
* Contact: renewaire@saritasa.com
|
|
6802
|
+
*
|
|
6803
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6804
|
+
* https://openapi-generator.tech
|
|
6805
|
+
* Do not edit the class manually.
|
|
6806
|
+
*/
|
|
6807
|
+
|
|
6415
6808
|
/**
|
|
6416
6809
|
* RenewAire CORES API
|
|
6417
6810
|
*
|
|
@@ -6466,6 +6859,8 @@ var UserPermissionDtoPermissionEnum;
|
|
|
6466
6859
|
(function (UserPermissionDtoPermissionEnum) {
|
|
6467
6860
|
UserPermissionDtoPermissionEnum["SystemAdmin"] = "SystemAdmin";
|
|
6468
6861
|
UserPermissionDtoPermissionEnum["UserAdministration"] = "UserAdministration";
|
|
6862
|
+
UserPermissionDtoPermissionEnum["SubmitOrder"] = "SubmitOrder";
|
|
6863
|
+
UserPermissionDtoPermissionEnum["CanImportOrdersToErp"] = "CanImportOrdersToErp";
|
|
6469
6864
|
})(UserPermissionDtoPermissionEnum || (UserPermissionDtoPermissionEnum = {}));
|
|
6470
6865
|
|
|
6471
6866
|
/**
|