@saritasa/renewaire-frontend-sdk 0.1.0-dev.367 → 0.1.0-dev.420
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
|
@@ -1628,6 +1628,99 @@ class RsdRegionsApiService extends BaseService {
|
|
|
1628
1628
|
super(basePath, configuration);
|
|
1629
1629
|
this.httpClient = httpClient;
|
|
1630
1630
|
}
|
|
1631
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1632
|
+
const rsdRegionId = requestParameters?.rsdRegionId;
|
|
1633
|
+
if (rsdRegionId === null || rsdRegionId === undefined) {
|
|
1634
|
+
throw new Error("Required parameter rsdRegionId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.");
|
|
1635
|
+
}
|
|
1636
|
+
const documentId = requestParameters?.documentId;
|
|
1637
|
+
if (documentId === null || documentId === undefined) {
|
|
1638
|
+
throw new Error("Required parameter documentId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.");
|
|
1639
|
+
}
|
|
1640
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1641
|
+
// authentication (Bearer) required
|
|
1642
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1643
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
1644
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1645
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1646
|
+
}
|
|
1647
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1648
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1649
|
+
let responseType_ = "json";
|
|
1650
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1651
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1652
|
+
responseType_ = "text";
|
|
1653
|
+
}
|
|
1654
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1655
|
+
responseType_ = "json";
|
|
1656
|
+
}
|
|
1657
|
+
else {
|
|
1658
|
+
responseType_ = "blob";
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: "rsdRegionId", value: rsdRegionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/documents/${this.configuration.encodeParam({ name: "documentId", value: documentId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/download-url`;
|
|
1662
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1663
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1664
|
+
context: localVarHttpContext,
|
|
1665
|
+
responseType: responseType_,
|
|
1666
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1667
|
+
headers: localVarHeaders,
|
|
1668
|
+
observe: observe,
|
|
1669
|
+
transferCache: localVarTransferCache,
|
|
1670
|
+
reportProgress: reportProgress,
|
|
1671
|
+
});
|
|
1672
|
+
}
|
|
1673
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1674
|
+
const createUploadUrlCommand = requestParameters?.createUploadUrlCommand;
|
|
1675
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1676
|
+
// authentication (Bearer) required
|
|
1677
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1678
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1679
|
+
this.configuration.selectHeaderAccept([
|
|
1680
|
+
"text/plain",
|
|
1681
|
+
"application/json",
|
|
1682
|
+
"text/json",
|
|
1683
|
+
]);
|
|
1684
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1685
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1686
|
+
}
|
|
1687
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1688
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1689
|
+
// to determine the Content-Type header
|
|
1690
|
+
const consumes = [
|
|
1691
|
+
"application/json",
|
|
1692
|
+
"text/json",
|
|
1693
|
+
"application/*+json",
|
|
1694
|
+
];
|
|
1695
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1696
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1697
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1698
|
+
}
|
|
1699
|
+
let responseType_ = "json";
|
|
1700
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1701
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1702
|
+
responseType_ = "text";
|
|
1703
|
+
}
|
|
1704
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1705
|
+
responseType_ = "json";
|
|
1706
|
+
}
|
|
1707
|
+
else {
|
|
1708
|
+
responseType_ = "blob";
|
|
1709
|
+
}
|
|
1710
|
+
}
|
|
1711
|
+
let localVarPath = `/api/rsd-regions/documents/upload-url`;
|
|
1712
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1713
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
1714
|
+
context: localVarHttpContext,
|
|
1715
|
+
body: createUploadUrlCommand,
|
|
1716
|
+
responseType: responseType_,
|
|
1717
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1718
|
+
headers: localVarHeaders,
|
|
1719
|
+
observe: observe,
|
|
1720
|
+
transferCache: localVarTransferCache,
|
|
1721
|
+
reportProgress: reportProgress,
|
|
1722
|
+
});
|
|
1723
|
+
}
|
|
1631
1724
|
rsdRegionsCreateRsdRegion(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1632
1725
|
const createRsdRegionDto = requestParameters?.createRsdRegionDto;
|
|
1633
1726
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -1679,6 +1772,56 @@ class RsdRegionsApiService extends BaseService {
|
|
|
1679
1772
|
reportProgress: reportProgress,
|
|
1680
1773
|
});
|
|
1681
1774
|
}
|
|
1775
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1776
|
+
const id = requestParameters?.id;
|
|
1777
|
+
if (id === null || id === undefined) {
|
|
1778
|
+
throw new Error("Required parameter id was null or undefined when calling rsdRegionsCreateRsdRegionDocuments.");
|
|
1779
|
+
}
|
|
1780
|
+
const createDocumentsDto = requestParameters?.createDocumentsDto;
|
|
1781
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1782
|
+
// authentication (Bearer) required
|
|
1783
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1784
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
1785
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1786
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1787
|
+
}
|
|
1788
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1789
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1790
|
+
// to determine the Content-Type header
|
|
1791
|
+
const consumes = [
|
|
1792
|
+
"application/json",
|
|
1793
|
+
"text/json",
|
|
1794
|
+
"application/*+json",
|
|
1795
|
+
];
|
|
1796
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1797
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1798
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1799
|
+
}
|
|
1800
|
+
let responseType_ = "json";
|
|
1801
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1802
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1803
|
+
responseType_ = "text";
|
|
1804
|
+
}
|
|
1805
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1806
|
+
responseType_ = "json";
|
|
1807
|
+
}
|
|
1808
|
+
else {
|
|
1809
|
+
responseType_ = "blob";
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/documents`;
|
|
1813
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1814
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
1815
|
+
context: localVarHttpContext,
|
|
1816
|
+
body: createDocumentsDto,
|
|
1817
|
+
responseType: responseType_,
|
|
1818
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1819
|
+
headers: localVarHeaders,
|
|
1820
|
+
observe: observe,
|
|
1821
|
+
transferCache: localVarTransferCache,
|
|
1822
|
+
reportProgress: reportProgress,
|
|
1823
|
+
});
|
|
1824
|
+
}
|
|
1682
1825
|
rsdRegionsGetRsdRegion(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1683
1826
|
const id = requestParameters?.id;
|
|
1684
1827
|
if (id === null || id === undefined) {
|
|
@@ -1760,6 +1903,52 @@ class RsdRegionsApiService extends BaseService {
|
|
|
1760
1903
|
reportProgress: reportProgress,
|
|
1761
1904
|
});
|
|
1762
1905
|
}
|
|
1906
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1907
|
+
const removeDocumentsCommand = requestParameters?.removeDocumentsCommand;
|
|
1908
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1909
|
+
// authentication (Bearer) required
|
|
1910
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1911
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
1912
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1913
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1914
|
+
}
|
|
1915
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1916
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1917
|
+
// to determine the Content-Type header
|
|
1918
|
+
const consumes = [
|
|
1919
|
+
"application/json",
|
|
1920
|
+
"text/json",
|
|
1921
|
+
"application/*+json",
|
|
1922
|
+
];
|
|
1923
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1924
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1925
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1926
|
+
}
|
|
1927
|
+
let responseType_ = "json";
|
|
1928
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1929
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1930
|
+
responseType_ = "text";
|
|
1931
|
+
}
|
|
1932
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1933
|
+
responseType_ = "json";
|
|
1934
|
+
}
|
|
1935
|
+
else {
|
|
1936
|
+
responseType_ = "blob";
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
let localVarPath = `/api/rsd-regions/documents`;
|
|
1940
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1941
|
+
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
1942
|
+
context: localVarHttpContext,
|
|
1943
|
+
body: removeDocumentsCommand,
|
|
1944
|
+
responseType: responseType_,
|
|
1945
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1946
|
+
headers: localVarHeaders,
|
|
1947
|
+
observe: observe,
|
|
1948
|
+
transferCache: localVarTransferCache,
|
|
1949
|
+
reportProgress: reportProgress,
|
|
1950
|
+
});
|
|
1951
|
+
}
|
|
1763
1952
|
rsdRegionsSearchRsdRegions(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1764
1953
|
const name = requestParameters?.name;
|
|
1765
1954
|
const isActive = requestParameters?.isActive;
|
|
@@ -1886,6 +2075,128 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
|
1886
2075
|
type: Optional
|
|
1887
2076
|
}] }] });
|
|
1888
2077
|
|
|
2078
|
+
/**
|
|
2079
|
+
* RenewAire CORES API
|
|
2080
|
+
*
|
|
2081
|
+
* Contact: renewaire@saritasa.com
|
|
2082
|
+
*
|
|
2083
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2084
|
+
* https://openapi-generator.tech
|
|
2085
|
+
* Do not edit the class manually.
|
|
2086
|
+
*/
|
|
2087
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2088
|
+
class UserDesignConditionsApiService extends BaseService {
|
|
2089
|
+
httpClient;
|
|
2090
|
+
constructor(httpClient, basePath, configuration) {
|
|
2091
|
+
super(basePath, configuration);
|
|
2092
|
+
this.httpClient = httpClient;
|
|
2093
|
+
}
|
|
2094
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2095
|
+
const userId = requestParameters?.userId;
|
|
2096
|
+
if (userId === null || userId === undefined) {
|
|
2097
|
+
throw new Error("Required parameter userId was null or undefined when calling userDesignConditionsGetProjectDesignConditions.");
|
|
2098
|
+
}
|
|
2099
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2100
|
+
// authentication (Bearer) required
|
|
2101
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2102
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
2103
|
+
this.configuration.selectHeaderAccept([
|
|
2104
|
+
"text/plain",
|
|
2105
|
+
"application/json",
|
|
2106
|
+
"text/json",
|
|
2107
|
+
]);
|
|
2108
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2109
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2110
|
+
}
|
|
2111
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2112
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2113
|
+
let responseType_ = "json";
|
|
2114
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2115
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2116
|
+
responseType_ = "text";
|
|
2117
|
+
}
|
|
2118
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2119
|
+
responseType_ = "json";
|
|
2120
|
+
}
|
|
2121
|
+
else {
|
|
2122
|
+
responseType_ = "blob";
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
let localVarPath = `/api/users/design-conditions/${this.configuration.encodeParam({ name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
2126
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2127
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
2128
|
+
context: localVarHttpContext,
|
|
2129
|
+
responseType: responseType_,
|
|
2130
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2131
|
+
headers: localVarHeaders,
|
|
2132
|
+
observe: observe,
|
|
2133
|
+
transferCache: localVarTransferCache,
|
|
2134
|
+
reportProgress: reportProgress,
|
|
2135
|
+
});
|
|
2136
|
+
}
|
|
2137
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2138
|
+
const saveUserDesignConditionsDto = requestParameters?.saveUserDesignConditionsDto;
|
|
2139
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2140
|
+
// authentication (Bearer) required
|
|
2141
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2142
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2143
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2144
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2145
|
+
}
|
|
2146
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2147
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2148
|
+
// to determine the Content-Type header
|
|
2149
|
+
const consumes = [
|
|
2150
|
+
"application/json",
|
|
2151
|
+
"text/json",
|
|
2152
|
+
"application/*+json",
|
|
2153
|
+
];
|
|
2154
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
2155
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2156
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
2157
|
+
}
|
|
2158
|
+
let responseType_ = "json";
|
|
2159
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2160
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2161
|
+
responseType_ = "text";
|
|
2162
|
+
}
|
|
2163
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2164
|
+
responseType_ = "json";
|
|
2165
|
+
}
|
|
2166
|
+
else {
|
|
2167
|
+
responseType_ = "blob";
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
let localVarPath = `/api/users/design-conditions`;
|
|
2171
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2172
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2173
|
+
context: localVarHttpContext,
|
|
2174
|
+
body: saveUserDesignConditionsDto,
|
|
2175
|
+
responseType: responseType_,
|
|
2176
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2177
|
+
headers: localVarHeaders,
|
|
2178
|
+
observe: observe,
|
|
2179
|
+
transferCache: localVarTransferCache,
|
|
2180
|
+
reportProgress: reportProgress,
|
|
2181
|
+
});
|
|
2182
|
+
}
|
|
2183
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UserDesignConditionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2184
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UserDesignConditionsApiService, providedIn: "root" });
|
|
2185
|
+
}
|
|
2186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UserDesignConditionsApiService, decorators: [{
|
|
2187
|
+
type: Injectable,
|
|
2188
|
+
args: [{
|
|
2189
|
+
providedIn: "root",
|
|
2190
|
+
}]
|
|
2191
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2192
|
+
type: Optional
|
|
2193
|
+
}, {
|
|
2194
|
+
type: Inject,
|
|
2195
|
+
args: [BASE_PATH]
|
|
2196
|
+
}] }, { type: Configuration, decorators: [{
|
|
2197
|
+
type: Optional
|
|
2198
|
+
}] }] });
|
|
2199
|
+
|
|
1889
2200
|
/**
|
|
1890
2201
|
* RenewAire CORES API
|
|
1891
2202
|
*
|
|
@@ -2235,6 +2546,7 @@ const APIS = [
|
|
|
2235
2546
|
RepTerritoriesApiService,
|
|
2236
2547
|
RepTerritoryLocationsApiService,
|
|
2237
2548
|
RsdRegionsApiService,
|
|
2549
|
+
UserDesignConditionsApiService,
|
|
2238
2550
|
UsersApiService,
|
|
2239
2551
|
];
|
|
2240
2552
|
|
|
@@ -2275,6 +2587,72 @@ var AddressDtoCountryEnum;
|
|
|
2275
2587
|
AddressDtoCountryEnum["Mexico"] = "Mexico";
|
|
2276
2588
|
})(AddressDtoCountryEnum || (AddressDtoCountryEnum = {}));
|
|
2277
2589
|
|
|
2590
|
+
/**
|
|
2591
|
+
* RenewAire CORES API
|
|
2592
|
+
*
|
|
2593
|
+
* Contact: renewaire@saritasa.com
|
|
2594
|
+
*
|
|
2595
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2596
|
+
* https://openapi-generator.tech
|
|
2597
|
+
* Do not edit the class manually.
|
|
2598
|
+
*/
|
|
2599
|
+
/**
|
|
2600
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
2601
|
+
*/
|
|
2602
|
+
var CoolingDesignBasis;
|
|
2603
|
+
(function (CoolingDesignBasis) {
|
|
2604
|
+
CoolingDesignBasis["Cooling"] = "Cooling";
|
|
2605
|
+
CoolingDesignBasis["Dehumidification"] = "Dehumidification";
|
|
2606
|
+
})(CoolingDesignBasis || (CoolingDesignBasis = {}));
|
|
2607
|
+
|
|
2608
|
+
/**
|
|
2609
|
+
* RenewAire CORES API
|
|
2610
|
+
*
|
|
2611
|
+
* Contact: renewaire@saritasa.com
|
|
2612
|
+
*
|
|
2613
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2614
|
+
* https://openapi-generator.tech
|
|
2615
|
+
* Do not edit the class manually.
|
|
2616
|
+
*/
|
|
2617
|
+
|
|
2618
|
+
/**
|
|
2619
|
+
* RenewAire CORES API
|
|
2620
|
+
*
|
|
2621
|
+
* Contact: renewaire@saritasa.com
|
|
2622
|
+
*
|
|
2623
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2624
|
+
* https://openapi-generator.tech
|
|
2625
|
+
* Do not edit the class manually.
|
|
2626
|
+
*/
|
|
2627
|
+
|
|
2628
|
+
/**
|
|
2629
|
+
* RenewAire CORES API
|
|
2630
|
+
*
|
|
2631
|
+
* Contact: renewaire@saritasa.com
|
|
2632
|
+
*
|
|
2633
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2634
|
+
* https://openapi-generator.tech
|
|
2635
|
+
* Do not edit the class manually.
|
|
2636
|
+
*/
|
|
2637
|
+
/**
|
|
2638
|
+
* DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
2639
|
+
*/
|
|
2640
|
+
var DesignWeatherMode;
|
|
2641
|
+
(function (DesignWeatherMode) {
|
|
2642
|
+
DesignWeatherMode["RelativeHumidity"] = "RelativeHumidity";
|
|
2643
|
+
DesignWeatherMode["WetBulb"] = "WetBulb";
|
|
2644
|
+
})(DesignWeatherMode || (DesignWeatherMode = {}));
|
|
2645
|
+
|
|
2646
|
+
/**
|
|
2647
|
+
* RenewAire CORES API
|
|
2648
|
+
*
|
|
2649
|
+
* Contact: renewaire@saritasa.com
|
|
2650
|
+
*
|
|
2651
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2652
|
+
* https://openapi-generator.tech
|
|
2653
|
+
* Do not edit the class manually.
|
|
2654
|
+
*/
|
|
2655
|
+
|
|
2278
2656
|
/**
|
|
2279
2657
|
* RenewAire CORES API
|
|
2280
2658
|
*
|
|
@@ -2478,6 +2856,12 @@ var RegionLevel;
|
|
|
2478
2856
|
* Do not edit the class manually.
|
|
2479
2857
|
*/
|
|
2480
2858
|
|
|
2859
|
+
var SaveUserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
2860
|
+
(function (SaveUserDesignConditionsDtoCoolingDesignBasisEnum) {
|
|
2861
|
+
SaveUserDesignConditionsDtoCoolingDesignBasisEnum["Cooling"] = "Cooling";
|
|
2862
|
+
SaveUserDesignConditionsDtoCoolingDesignBasisEnum["Dehumidification"] = "Dehumidification";
|
|
2863
|
+
})(SaveUserDesignConditionsDtoCoolingDesignBasisEnum || (SaveUserDesignConditionsDtoCoolingDesignBasisEnum = {}));
|
|
2864
|
+
|
|
2481
2865
|
/**
|
|
2482
2866
|
* RenewAire CORES API
|
|
2483
2867
|
*
|
|
@@ -2534,6 +2918,48 @@ var SearchRegionDtoLevelEnum;
|
|
|
2534
2918
|
* Do not edit the class manually.
|
|
2535
2919
|
*/
|
|
2536
2920
|
|
|
2921
|
+
/**
|
|
2922
|
+
* RenewAire CORES API
|
|
2923
|
+
*
|
|
2924
|
+
* Contact: renewaire@saritasa.com
|
|
2925
|
+
*
|
|
2926
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2927
|
+
* https://openapi-generator.tech
|
|
2928
|
+
* Do not edit the class manually.
|
|
2929
|
+
*/
|
|
2930
|
+
|
|
2931
|
+
/**
|
|
2932
|
+
* RenewAire CORES API
|
|
2933
|
+
*
|
|
2934
|
+
* Contact: renewaire@saritasa.com
|
|
2935
|
+
*
|
|
2936
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2937
|
+
* https://openapi-generator.tech
|
|
2938
|
+
* Do not edit the class manually.
|
|
2939
|
+
*/
|
|
2940
|
+
|
|
2941
|
+
/**
|
|
2942
|
+
* RenewAire CORES API
|
|
2943
|
+
*
|
|
2944
|
+
* Contact: renewaire@saritasa.com
|
|
2945
|
+
*
|
|
2946
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2947
|
+
* https://openapi-generator.tech
|
|
2948
|
+
* Do not edit the class manually.
|
|
2949
|
+
*/
|
|
2950
|
+
|
|
2951
|
+
var UserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
2952
|
+
(function (UserDesignConditionsDtoCoolingDesignBasisEnum) {
|
|
2953
|
+
UserDesignConditionsDtoCoolingDesignBasisEnum["Cooling"] = "Cooling";
|
|
2954
|
+
UserDesignConditionsDtoCoolingDesignBasisEnum["Dehumidification"] = "Dehumidification";
|
|
2955
|
+
})(UserDesignConditionsDtoCoolingDesignBasisEnum || (UserDesignConditionsDtoCoolingDesignBasisEnum = {}));
|
|
2956
|
+
|
|
2957
|
+
var UserDesignWeatherConditionDtoDesignWeatherModeEnum;
|
|
2958
|
+
(function (UserDesignWeatherConditionDtoDesignWeatherModeEnum) {
|
|
2959
|
+
UserDesignWeatherConditionDtoDesignWeatherModeEnum["RelativeHumidity"] = "RelativeHumidity";
|
|
2960
|
+
UserDesignWeatherConditionDtoDesignWeatherModeEnum["WetBulb"] = "WetBulb";
|
|
2961
|
+
})(UserDesignWeatherConditionDtoDesignWeatherModeEnum || (UserDesignWeatherConditionDtoDesignWeatherModeEnum = {}));
|
|
2962
|
+
|
|
2537
2963
|
/**
|
|
2538
2964
|
* RenewAire CORES API
|
|
2539
2965
|
*
|
|
@@ -2616,5 +3042,5 @@ function provideApi(configOrBasePath) {
|
|
|
2616
3042
|
* Generated bundle index. Do not edit.
|
|
2617
3043
|
*/
|
|
2618
3044
|
|
|
2619
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
|
|
3045
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, DesignWeatherMode, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UsersApiService, provideApi };
|
|
2620
3046
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|