@saritasa/renewaire-frontend-sdk 0.67.0 → 0.69.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
|
@@ -2747,6 +2747,173 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImpor
|
|
|
2747
2747
|
type: Optional
|
|
2748
2748
|
}] }] });
|
|
2749
2749
|
|
|
2750
|
+
/**
|
|
2751
|
+
* RenewAire CORES API
|
|
2752
|
+
*
|
|
2753
|
+
* Contact: renewaire@saritasa.com
|
|
2754
|
+
*
|
|
2755
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2756
|
+
* https://openapi-generator.tech
|
|
2757
|
+
* Do not edit the class manually.
|
|
2758
|
+
*/
|
|
2759
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2760
|
+
class RepSalesReportsApiService extends BaseService {
|
|
2761
|
+
httpClient;
|
|
2762
|
+
constructor(httpClient, basePath, configuration) {
|
|
2763
|
+
super(basePath, configuration);
|
|
2764
|
+
this.httpClient = httpClient;
|
|
2765
|
+
}
|
|
2766
|
+
repSalesReportsCreateRepSalesReportDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2767
|
+
const repSalesReportId = requestParameters?.repSalesReportId;
|
|
2768
|
+
if (repSalesReportId === null || repSalesReportId === undefined) {
|
|
2769
|
+
throw new Error("Required parameter repSalesReportId was null or undefined when calling repSalesReportsCreateRepSalesReportDownloadUrl.");
|
|
2770
|
+
}
|
|
2771
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2772
|
+
// authentication (Bearer) required
|
|
2773
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2774
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2775
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2776
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2777
|
+
}
|
|
2778
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2779
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2780
|
+
let responseType_ = "json";
|
|
2781
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2782
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2783
|
+
responseType_ = "text";
|
|
2784
|
+
}
|
|
2785
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2786
|
+
responseType_ = "json";
|
|
2787
|
+
}
|
|
2788
|
+
else {
|
|
2789
|
+
responseType_ = "blob";
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2792
|
+
let localVarPath = `/api/rep-sales-reports/${this.configuration.encodeParam({ name: "repSalesReportId", value: repSalesReportId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/file-download-url`;
|
|
2793
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2794
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
2795
|
+
context: localVarHttpContext,
|
|
2796
|
+
responseType: responseType_,
|
|
2797
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2798
|
+
headers: localVarHeaders,
|
|
2799
|
+
observe: observe,
|
|
2800
|
+
transferCache: localVarTransferCache,
|
|
2801
|
+
reportProgress: reportProgress,
|
|
2802
|
+
});
|
|
2803
|
+
}
|
|
2804
|
+
repSalesReportsGetRepSalesReport(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2805
|
+
const repSalesReportId = requestParameters?.repSalesReportId;
|
|
2806
|
+
if (repSalesReportId === null || repSalesReportId === undefined) {
|
|
2807
|
+
throw new Error("Required parameter repSalesReportId was null or undefined when calling repSalesReportsGetRepSalesReport.");
|
|
2808
|
+
}
|
|
2809
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2810
|
+
// authentication (Bearer) required
|
|
2811
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2812
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
2813
|
+
this.configuration.selectHeaderAccept([
|
|
2814
|
+
"text/plain",
|
|
2815
|
+
"application/json",
|
|
2816
|
+
"text/json",
|
|
2817
|
+
]);
|
|
2818
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2819
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2820
|
+
}
|
|
2821
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2822
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2823
|
+
let responseType_ = "json";
|
|
2824
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2825
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2826
|
+
responseType_ = "text";
|
|
2827
|
+
}
|
|
2828
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2829
|
+
responseType_ = "json";
|
|
2830
|
+
}
|
|
2831
|
+
else {
|
|
2832
|
+
responseType_ = "blob";
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
let localVarPath = `/api/rep-sales-reports/${this.configuration.encodeParam({ name: "repSalesReportId", value: repSalesReportId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
2836
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2837
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
2838
|
+
context: localVarHttpContext,
|
|
2839
|
+
responseType: responseType_,
|
|
2840
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2841
|
+
headers: localVarHeaders,
|
|
2842
|
+
observe: observe,
|
|
2843
|
+
transferCache: localVarTransferCache,
|
|
2844
|
+
reportProgress: reportProgress,
|
|
2845
|
+
});
|
|
2846
|
+
}
|
|
2847
|
+
repSalesReportsSearchRepSalesReports(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2848
|
+
const repTerritoryCode = requestParameters?.repTerritoryCode;
|
|
2849
|
+
const date = requestParameters?.date;
|
|
2850
|
+
const report = requestParameters?.report;
|
|
2851
|
+
const orderBy = requestParameters?.orderBy;
|
|
2852
|
+
const page = requestParameters?.page;
|
|
2853
|
+
const pageSize = requestParameters?.pageSize;
|
|
2854
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2855
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, repTerritoryCode, "RepTerritoryCode");
|
|
2856
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, date, "Date");
|
|
2857
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, report, "Report");
|
|
2858
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, orderBy, "OrderBy");
|
|
2859
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, page, "Page");
|
|
2860
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, pageSize, "PageSize");
|
|
2861
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2862
|
+
// authentication (Bearer) required
|
|
2863
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2864
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
2865
|
+
this.configuration.selectHeaderAccept([
|
|
2866
|
+
"text/plain",
|
|
2867
|
+
"application/json",
|
|
2868
|
+
"text/json",
|
|
2869
|
+
]);
|
|
2870
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2871
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2872
|
+
}
|
|
2873
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2874
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2875
|
+
let responseType_ = "json";
|
|
2876
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2877
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2878
|
+
responseType_ = "text";
|
|
2879
|
+
}
|
|
2880
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2881
|
+
responseType_ = "json";
|
|
2882
|
+
}
|
|
2883
|
+
else {
|
|
2884
|
+
responseType_ = "blob";
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2887
|
+
let localVarPath = `/api/rep-sales-reports`;
|
|
2888
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2889
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
2890
|
+
context: localVarHttpContext,
|
|
2891
|
+
params: localVarQueryParameters,
|
|
2892
|
+
responseType: responseType_,
|
|
2893
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2894
|
+
headers: localVarHeaders,
|
|
2895
|
+
observe: observe,
|
|
2896
|
+
transferCache: localVarTransferCache,
|
|
2897
|
+
reportProgress: reportProgress,
|
|
2898
|
+
});
|
|
2899
|
+
}
|
|
2900
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: RepSalesReportsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2901
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: RepSalesReportsApiService, providedIn: "root" });
|
|
2902
|
+
}
|
|
2903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: RepSalesReportsApiService, decorators: [{
|
|
2904
|
+
type: Injectable,
|
|
2905
|
+
args: [{
|
|
2906
|
+
providedIn: "root",
|
|
2907
|
+
}]
|
|
2908
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2909
|
+
type: Optional
|
|
2910
|
+
}, {
|
|
2911
|
+
type: Inject,
|
|
2912
|
+
args: [BASE_PATH]
|
|
2913
|
+
}] }, { type: Configuration, decorators: [{
|
|
2914
|
+
type: Optional
|
|
2915
|
+
}] }] });
|
|
2916
|
+
|
|
2750
2917
|
/**
|
|
2751
2918
|
* RenewAire CORES API
|
|
2752
2919
|
*
|
|
@@ -3654,7 +3821,7 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
3654
3821
|
repTerritoryLocationId === undefined) {
|
|
3655
3822
|
throw new Error("Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsUpdateRepTerritoryLocation.");
|
|
3656
3823
|
}
|
|
3657
|
-
const
|
|
3824
|
+
const updateRepTerritoryLocationDto = requestParameters?.updateRepTerritoryLocationDto;
|
|
3658
3825
|
let localVarHeaders = this.defaultHeaders;
|
|
3659
3826
|
// authentication (Bearer) required
|
|
3660
3827
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -3690,7 +3857,7 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
3690
3857
|
const { basePath, withCredentials } = this.configuration;
|
|
3691
3858
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
3692
3859
|
context: localVarHttpContext,
|
|
3693
|
-
body:
|
|
3860
|
+
body: updateRepTerritoryLocationDto,
|
|
3694
3861
|
responseType: responseType_,
|
|
3695
3862
|
...(withCredentials ? { withCredentials } : {}),
|
|
3696
3863
|
headers: localVarHeaders,
|
|
@@ -3732,48 +3899,6 @@ class RsdRegionsApiService extends BaseService {
|
|
|
3732
3899
|
super(basePath, configuration);
|
|
3733
3900
|
this.httpClient = httpClient;
|
|
3734
3901
|
}
|
|
3735
|
-
rsdRegionsCreateDocumentDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3736
|
-
const rsdRegionId = requestParameters?.rsdRegionId;
|
|
3737
|
-
if (rsdRegionId === null || rsdRegionId === undefined) {
|
|
3738
|
-
throw new Error("Required parameter rsdRegionId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.");
|
|
3739
|
-
}
|
|
3740
|
-
const documentId = requestParameters?.documentId;
|
|
3741
|
-
if (documentId === null || documentId === undefined) {
|
|
3742
|
-
throw new Error("Required parameter documentId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.");
|
|
3743
|
-
}
|
|
3744
|
-
let localVarHeaders = this.defaultHeaders;
|
|
3745
|
-
// authentication (Bearer) required
|
|
3746
|
-
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
3747
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
3748
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3749
|
-
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
3750
|
-
}
|
|
3751
|
-
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3752
|
-
const localVarTransferCache = options?.transferCache ?? true;
|
|
3753
|
-
let responseType_ = "json";
|
|
3754
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
3755
|
-
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
3756
|
-
responseType_ = "text";
|
|
3757
|
-
}
|
|
3758
|
-
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3759
|
-
responseType_ = "json";
|
|
3760
|
-
}
|
|
3761
|
-
else {
|
|
3762
|
-
responseType_ = "blob";
|
|
3763
|
-
}
|
|
3764
|
-
}
|
|
3765
|
-
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`;
|
|
3766
|
-
const { basePath, withCredentials } = this.configuration;
|
|
3767
|
-
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
3768
|
-
context: localVarHttpContext,
|
|
3769
|
-
responseType: responseType_,
|
|
3770
|
-
...(withCredentials ? { withCredentials } : {}),
|
|
3771
|
-
headers: localVarHeaders,
|
|
3772
|
-
observe: observe,
|
|
3773
|
-
transferCache: localVarTransferCache,
|
|
3774
|
-
reportProgress: reportProgress,
|
|
3775
|
-
});
|
|
3776
|
-
}
|
|
3777
3902
|
rsdRegionsCreateRsdRegion(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3778
3903
|
const name = requestParameters?.name;
|
|
3779
3904
|
if (name === null || name === undefined) {
|
|
@@ -3884,6 +4009,48 @@ class RsdRegionsApiService extends BaseService {
|
|
|
3884
4009
|
reportProgress: reportProgress,
|
|
3885
4010
|
});
|
|
3886
4011
|
}
|
|
4012
|
+
rsdRegionsCreateRsdRegionDocumentDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4013
|
+
const rsdRegionId = requestParameters?.rsdRegionId;
|
|
4014
|
+
if (rsdRegionId === null || rsdRegionId === undefined) {
|
|
4015
|
+
throw new Error("Required parameter rsdRegionId was null or undefined when calling rsdRegionsCreateRsdRegionDocumentDownloadUrl.");
|
|
4016
|
+
}
|
|
4017
|
+
const documentId = requestParameters?.documentId;
|
|
4018
|
+
if (documentId === null || documentId === undefined) {
|
|
4019
|
+
throw new Error("Required parameter documentId was null or undefined when calling rsdRegionsCreateRsdRegionDocumentDownloadUrl.");
|
|
4020
|
+
}
|
|
4021
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4022
|
+
// authentication (Bearer) required
|
|
4023
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
4024
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4025
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4026
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4027
|
+
}
|
|
4028
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4029
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4030
|
+
let responseType_ = "json";
|
|
4031
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4032
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4033
|
+
responseType_ = "text";
|
|
4034
|
+
}
|
|
4035
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4036
|
+
responseType_ = "json";
|
|
4037
|
+
}
|
|
4038
|
+
else {
|
|
4039
|
+
responseType_ = "blob";
|
|
4040
|
+
}
|
|
4041
|
+
}
|
|
4042
|
+
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`;
|
|
4043
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4044
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
4045
|
+
context: localVarHttpContext,
|
|
4046
|
+
responseType: responseType_,
|
|
4047
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4048
|
+
headers: localVarHeaders,
|
|
4049
|
+
observe: observe,
|
|
4050
|
+
transferCache: localVarTransferCache,
|
|
4051
|
+
reportProgress: reportProgress,
|
|
4052
|
+
});
|
|
4053
|
+
}
|
|
3887
4054
|
rsdRegionsGetRsdRegion(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3888
4055
|
const id = requestParameters?.id;
|
|
3889
4056
|
if (id === null || id === undefined) {
|
|
@@ -6554,6 +6721,7 @@ const APIS = [
|
|
|
6554
6721
|
ProjectsApiService,
|
|
6555
6722
|
RegionsApiService,
|
|
6556
6723
|
RepContactsApiService,
|
|
6724
|
+
RepSalesReportsApiService,
|
|
6557
6725
|
RepTerritoriesApiService,
|
|
6558
6726
|
RepTerritoryLocationsApiService,
|
|
6559
6727
|
RsdRegionsApiService,
|
|
@@ -7851,5 +8019,5 @@ function provideApi(configOrBasePath) {
|
|
|
7851
8019
|
* Generated bundle index. Do not edit.
|
|
7852
8020
|
*/
|
|
7853
8021
|
|
|
7854
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, ControllerProgramDtoProgramTypeEnum, ControllerProgramDtoReleaseTypeEnum, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, CreateLeadTimeGroupDtoTypeEnum, CurrentUserDtoPreferredUnitEnum, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, FeedbackType, FeedbacksApiService, GroupCustomerType, GroupDtoCustomerTypeEnum, GroupDtoTypeEnum, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeGroupDtoTypeEnum, LeadTimeType, LeadTimesApiService, Permission, PermissionBundlesApiService, PermissionDtoIdEnum, PermissionsApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, SaveControllerProgramDtoReleaseTypeEnum, SaveGroupDtoTypeEnum, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, StaticFilesApiService, UnitSystem, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoPreferredLanguageEnum, UserPreferencesDtoPreferredUnitEnum, UserProfileSettingsDtoRegistrationStatusEnum, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
8022
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, ControllerProgramDtoProgramTypeEnum, ControllerProgramDtoReleaseTypeEnum, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, CreateLeadTimeGroupDtoTypeEnum, CurrentUserDtoPreferredUnitEnum, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, FeedbackType, FeedbacksApiService, GroupCustomerType, GroupDtoCustomerTypeEnum, GroupDtoTypeEnum, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeGroupDtoTypeEnum, LeadTimeType, LeadTimesApiService, Permission, PermissionBundlesApiService, PermissionDtoIdEnum, PermissionsApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, SaveControllerProgramDtoReleaseTypeEnum, SaveGroupDtoTypeEnum, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, StaticFilesApiService, UnitSystem, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoPreferredLanguageEnum, UserPreferencesDtoPreferredUnitEnum, UserProfileSettingsDtoRegistrationStatusEnum, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
7855
8023
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|