@saritasa/renewaire-frontend-sdk 0.257.0 → 0.259.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 +2 -2
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs +406 -283
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +555 -456
- package/package.json +2 -2
|
@@ -375,10 +375,10 @@ class AuditLogsApiService extends BaseService {
|
|
|
375
375
|
reportProgress: reportProgress,
|
|
376
376
|
});
|
|
377
377
|
}
|
|
378
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
379
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
378
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
379
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, providedIn: "root" });
|
|
380
380
|
}
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, decorators: [{
|
|
382
382
|
type: Injectable,
|
|
383
383
|
args: [{
|
|
384
384
|
providedIn: "root",
|
|
@@ -671,10 +671,10 @@ class AuthApiService extends BaseService {
|
|
|
671
671
|
reportProgress: reportProgress,
|
|
672
672
|
});
|
|
673
673
|
}
|
|
674
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
675
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
674
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
675
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, providedIn: "root" });
|
|
676
676
|
}
|
|
677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, decorators: [{
|
|
678
678
|
type: Injectable,
|
|
679
679
|
args: [{
|
|
680
680
|
providedIn: "root",
|
|
@@ -698,14 +698,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
698
698
|
* Do not edit the class manually.
|
|
699
699
|
*/
|
|
700
700
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
701
|
-
class
|
|
701
|
+
class BombDownloadsApiService extends BaseService {
|
|
702
702
|
httpClient;
|
|
703
703
|
constructor(httpClient, basePath, configuration) {
|
|
704
704
|
super(basePath, configuration);
|
|
705
705
|
this.httpClient = httpClient;
|
|
706
706
|
}
|
|
707
|
-
|
|
708
|
-
const
|
|
707
|
+
downloadsCreateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
708
|
+
const createDownloadLayerCommand = requestParameters?.createDownloadLayerCommand;
|
|
709
709
|
let localVarHeaders = this.defaultHeaders;
|
|
710
710
|
// authentication (Bearer) required
|
|
711
711
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -743,11 +743,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
743
743
|
responseType_ = "blob";
|
|
744
744
|
}
|
|
745
745
|
}
|
|
746
|
-
let localVarPath = `/api/bomb/
|
|
746
|
+
let localVarPath = `/api/bomb/downloads`;
|
|
747
747
|
const { basePath, withCredentials } = this.configuration;
|
|
748
748
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
749
749
|
context: localVarHttpContext,
|
|
750
|
-
body:
|
|
750
|
+
body: createDownloadLayerCommand,
|
|
751
751
|
responseType: responseType_,
|
|
752
752
|
...(withCredentials ? { withCredentials } : {}),
|
|
753
753
|
headers: localVarHeaders,
|
|
@@ -756,10 +756,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
756
756
|
reportProgress: reportProgress,
|
|
757
757
|
});
|
|
758
758
|
}
|
|
759
|
-
|
|
760
|
-
const
|
|
761
|
-
if (
|
|
762
|
-
throw new Error("Required parameter
|
|
759
|
+
downloadsDuplicateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
760
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
761
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
762
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsDuplicateDownloadLayer.");
|
|
763
763
|
}
|
|
764
764
|
const duplicateBombLayerDto = requestParameters?.duplicateBombLayerDto;
|
|
765
765
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -799,7 +799,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
799
799
|
responseType_ = "blob";
|
|
800
800
|
}
|
|
801
801
|
}
|
|
802
|
-
let localVarPath = `/api/bomb/
|
|
802
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/duplicate`;
|
|
803
803
|
const { basePath, withCredentials } = this.configuration;
|
|
804
804
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
805
805
|
context: localVarHttpContext,
|
|
@@ -812,10 +812,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
812
812
|
reportProgress: reportProgress,
|
|
813
813
|
});
|
|
814
814
|
}
|
|
815
|
-
|
|
816
|
-
const
|
|
817
|
-
if (
|
|
818
|
-
throw new Error("Required parameter
|
|
815
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
816
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
817
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
818
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadFilePreviewUrl.");
|
|
819
819
|
}
|
|
820
820
|
let localVarHeaders = this.defaultHeaders;
|
|
821
821
|
// authentication (Bearer) required
|
|
@@ -838,7 +838,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
838
838
|
responseType_ = "blob";
|
|
839
839
|
}
|
|
840
840
|
}
|
|
841
|
-
let localVarPath = `/api/bomb/
|
|
841
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/preview-url`;
|
|
842
842
|
const { basePath, withCredentials } = this.configuration;
|
|
843
843
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
844
844
|
context: localVarHttpContext,
|
|
@@ -850,15 +850,20 @@ class BombDrawingsApiService extends BaseService {
|
|
|
850
850
|
reportProgress: reportProgress,
|
|
851
851
|
});
|
|
852
852
|
}
|
|
853
|
-
|
|
854
|
-
const
|
|
855
|
-
if (
|
|
856
|
-
throw new Error("Required parameter
|
|
853
|
+
downloadsGetDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
854
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
855
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
856
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadLayer.");
|
|
857
857
|
}
|
|
858
858
|
let localVarHeaders = this.defaultHeaders;
|
|
859
859
|
// authentication (Bearer) required
|
|
860
860
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
861
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
861
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
862
|
+
this.configuration.selectHeaderAccept([
|
|
863
|
+
"text/plain",
|
|
864
|
+
"application/json",
|
|
865
|
+
"text/json",
|
|
866
|
+
]);
|
|
862
867
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
863
868
|
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
864
869
|
}
|
|
@@ -876,7 +881,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
876
881
|
responseType_ = "blob";
|
|
877
882
|
}
|
|
878
883
|
}
|
|
879
|
-
let localVarPath = `/api/bomb/
|
|
884
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
880
885
|
const { basePath, withCredentials } = this.configuration;
|
|
881
886
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
882
887
|
context: localVarHttpContext,
|
|
@@ -888,20 +893,15 @@ class BombDrawingsApiService extends BaseService {
|
|
|
888
893
|
reportProgress: reportProgress,
|
|
889
894
|
});
|
|
890
895
|
}
|
|
891
|
-
|
|
892
|
-
const
|
|
893
|
-
if (
|
|
894
|
-
throw new Error("Required parameter
|
|
896
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
897
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
898
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
899
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadLayerFileDownloadUrl.");
|
|
895
900
|
}
|
|
896
901
|
let localVarHeaders = this.defaultHeaders;
|
|
897
902
|
// authentication (Bearer) required
|
|
898
903
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
899
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
900
|
-
this.configuration.selectHeaderAccept([
|
|
901
|
-
"text/plain",
|
|
902
|
-
"application/json",
|
|
903
|
-
"text/json",
|
|
904
|
-
]);
|
|
904
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
905
905
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
906
906
|
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
907
907
|
}
|
|
@@ -919,7 +919,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
919
919
|
responseType_ = "blob";
|
|
920
920
|
}
|
|
921
921
|
}
|
|
922
|
-
let localVarPath = `/api/bomb/
|
|
922
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/download-url`;
|
|
923
923
|
const { basePath, withCredentials } = this.configuration;
|
|
924
924
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
925
925
|
context: localVarHttpContext,
|
|
@@ -931,12 +931,12 @@ class BombDrawingsApiService extends BaseService {
|
|
|
931
931
|
reportProgress: reportProgress,
|
|
932
932
|
});
|
|
933
933
|
}
|
|
934
|
-
|
|
935
|
-
const
|
|
936
|
-
if (
|
|
937
|
-
throw new Error("Required parameter
|
|
934
|
+
downloadsMoveDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
935
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
936
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
937
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsMoveDownloadLayer.");
|
|
938
938
|
}
|
|
939
|
-
const
|
|
939
|
+
const downloadLayerIdMoveLayerDto = requestParameters?.downloadLayerIdMoveLayerDto;
|
|
940
940
|
let localVarHeaders = this.defaultHeaders;
|
|
941
941
|
// authentication (Bearer) required
|
|
942
942
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -969,11 +969,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
969
969
|
responseType_ = "blob";
|
|
970
970
|
}
|
|
971
971
|
}
|
|
972
|
-
let localVarPath = `/api/bomb/
|
|
972
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/move`;
|
|
973
973
|
const { basePath, withCredentials } = this.configuration;
|
|
974
974
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
975
975
|
context: localVarHttpContext,
|
|
976
|
-
body:
|
|
976
|
+
body: downloadLayerIdMoveLayerDto,
|
|
977
977
|
responseType: responseType_,
|
|
978
978
|
...(withCredentials ? { withCredentials } : {}),
|
|
979
979
|
headers: localVarHeaders,
|
|
@@ -982,10 +982,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
982
982
|
reportProgress: reportProgress,
|
|
983
983
|
});
|
|
984
984
|
}
|
|
985
|
-
|
|
986
|
-
const
|
|
987
|
-
if (
|
|
988
|
-
throw new Error("Required parameter
|
|
985
|
+
downloadsRemoveDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
986
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
987
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
988
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsRemoveDownloadLayer.");
|
|
989
989
|
}
|
|
990
990
|
let localVarHeaders = this.defaultHeaders;
|
|
991
991
|
// authentication (Bearer) required
|
|
@@ -1008,7 +1008,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1008
1008
|
responseType_ = "blob";
|
|
1009
1009
|
}
|
|
1010
1010
|
}
|
|
1011
|
-
let localVarPath = `/api/bomb/
|
|
1011
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
1012
1012
|
const { basePath, withCredentials } = this.configuration;
|
|
1013
1013
|
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
1014
1014
|
context: localVarHttpContext,
|
|
@@ -1020,10 +1020,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1020
1020
|
reportProgress: reportProgress,
|
|
1021
1021
|
});
|
|
1022
1022
|
}
|
|
1023
|
-
|
|
1024
|
-
const
|
|
1023
|
+
downloadsSearchDownloadLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1024
|
+
const parentDownloadLayerId = requestParameters?.parentDownloadLayerId;
|
|
1025
1025
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1026
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
1026
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentDownloadLayerId, "ParentDownloadLayerId");
|
|
1027
1027
|
let localVarHeaders = this.defaultHeaders;
|
|
1028
1028
|
// authentication (Bearer) required
|
|
1029
1029
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -1050,7 +1050,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1050
1050
|
responseType_ = "blob";
|
|
1051
1051
|
}
|
|
1052
1052
|
}
|
|
1053
|
-
let localVarPath = `/api/bomb/
|
|
1053
|
+
let localVarPath = `/api/bomb/downloads`;
|
|
1054
1054
|
const { basePath, withCredentials } = this.configuration;
|
|
1055
1055
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1056
1056
|
context: localVarHttpContext,
|
|
@@ -1063,12 +1063,12 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1063
1063
|
reportProgress: reportProgress,
|
|
1064
1064
|
});
|
|
1065
1065
|
}
|
|
1066
|
-
|
|
1067
|
-
const
|
|
1068
|
-
if (
|
|
1069
|
-
throw new Error("Required parameter
|
|
1066
|
+
downloadsUpdateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1067
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
1068
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
1069
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsUpdateDownloadLayer.");
|
|
1070
1070
|
}
|
|
1071
|
-
const
|
|
1071
|
+
const saveDownloadLayerDto = requestParameters?.saveDownloadLayerDto;
|
|
1072
1072
|
let localVarHeaders = this.defaultHeaders;
|
|
1073
1073
|
// authentication (Bearer) required
|
|
1074
1074
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -1101,11 +1101,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1101
1101
|
responseType_ = "blob";
|
|
1102
1102
|
}
|
|
1103
1103
|
}
|
|
1104
|
-
let localVarPath = `/api/bomb/
|
|
1104
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
1105
1105
|
const { basePath, withCredentials } = this.configuration;
|
|
1106
1106
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1107
1107
|
context: localVarHttpContext,
|
|
1108
|
-
body:
|
|
1108
|
+
body: saveDownloadLayerDto,
|
|
1109
1109
|
responseType: responseType_,
|
|
1110
1110
|
...(withCredentials ? { withCredentials } : {}),
|
|
1111
1111
|
headers: localVarHeaders,
|
|
@@ -1114,10 +1114,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1114
1114
|
reportProgress: reportProgress,
|
|
1115
1115
|
});
|
|
1116
1116
|
}
|
|
1117
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1118
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1117
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1118
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, providedIn: "root" });
|
|
1119
1119
|
}
|
|
1120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, decorators: [{
|
|
1121
1121
|
type: Injectable,
|
|
1122
1122
|
args: [{
|
|
1123
1123
|
providedIn: "root",
|
|
@@ -1481,10 +1481,10 @@ class BombMaterialsApiService extends BaseService {
|
|
|
1481
1481
|
reportProgress: reportProgress,
|
|
1482
1482
|
});
|
|
1483
1483
|
}
|
|
1484
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1485
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1484
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1485
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, providedIn: "root" });
|
|
1486
1486
|
}
|
|
1487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, decorators: [{
|
|
1488
1488
|
type: Injectable,
|
|
1489
1489
|
args: [{
|
|
1490
1490
|
providedIn: "root",
|
|
@@ -1745,14 +1745,14 @@ class BombParametersApiService extends BaseService {
|
|
|
1745
1745
|
reportProgress: reportProgress,
|
|
1746
1746
|
});
|
|
1747
1747
|
}
|
|
1748
|
-
|
|
1748
|
+
modelParametersSearchModelDownloadLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1749
1749
|
const modelNumber = requestParameters?.modelNumber;
|
|
1750
1750
|
if (modelNumber === null || modelNumber === undefined) {
|
|
1751
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling
|
|
1751
|
+
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchModelDownloadLayers.");
|
|
1752
1752
|
}
|
|
1753
1753
|
const buildDate = requestParameters?.buildDate;
|
|
1754
1754
|
if (buildDate === null || buildDate === undefined) {
|
|
1755
|
-
throw new Error("Required parameter buildDate was null or undefined when calling
|
|
1755
|
+
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchModelDownloadLayers.");
|
|
1756
1756
|
}
|
|
1757
1757
|
const modelParameters = requestParameters?.modelParameters;
|
|
1758
1758
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
@@ -1789,64 +1789,7 @@ class BombParametersApiService extends BaseService {
|
|
|
1789
1789
|
responseType_ = "blob";
|
|
1790
1790
|
}
|
|
1791
1791
|
}
|
|
1792
|
-
let localVarPath = `/api/bomb/model-parameters/
|
|
1793
|
-
const { basePath, withCredentials } = this.configuration;
|
|
1794
|
-
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1795
|
-
context: localVarHttpContext,
|
|
1796
|
-
params: localVarQueryParameters,
|
|
1797
|
-
responseType: responseType_,
|
|
1798
|
-
...(withCredentials ? { withCredentials } : {}),
|
|
1799
|
-
headers: localVarHeaders,
|
|
1800
|
-
observe: observe,
|
|
1801
|
-
transferCache: localVarTransferCache,
|
|
1802
|
-
reportProgress: reportProgress,
|
|
1803
|
-
});
|
|
1804
|
-
}
|
|
1805
|
-
modelParametersSearchModelSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1806
|
-
const modelNumber = requestParameters?.modelNumber;
|
|
1807
|
-
if (modelNumber === null || modelNumber === undefined) {
|
|
1808
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchModelSchematicLayers.");
|
|
1809
|
-
}
|
|
1810
|
-
const buildDate = requestParameters?.buildDate;
|
|
1811
|
-
if (buildDate === null || buildDate === undefined) {
|
|
1812
|
-
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchModelSchematicLayers.");
|
|
1813
|
-
}
|
|
1814
|
-
const modelParameters = requestParameters?.modelParameters;
|
|
1815
|
-
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1816
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, modelNumber, "ModelNumber");
|
|
1817
|
-
if (modelParameters) {
|
|
1818
|
-
modelParameters.forEach((element) => {
|
|
1819
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, element, "ModelParameters");
|
|
1820
|
-
});
|
|
1821
|
-
}
|
|
1822
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, buildDate, "BuildDate");
|
|
1823
|
-
let localVarHeaders = this.defaultHeaders;
|
|
1824
|
-
// authentication (Bearer) required
|
|
1825
|
-
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1826
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1827
|
-
this.configuration.selectHeaderAccept([
|
|
1828
|
-
"text/plain",
|
|
1829
|
-
"application/json",
|
|
1830
|
-
"text/json",
|
|
1831
|
-
]);
|
|
1832
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1833
|
-
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1834
|
-
}
|
|
1835
|
-
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1836
|
-
const localVarTransferCache = options?.transferCache ?? true;
|
|
1837
|
-
let responseType_ = "json";
|
|
1838
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
1839
|
-
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1840
|
-
responseType_ = "text";
|
|
1841
|
-
}
|
|
1842
|
-
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1843
|
-
responseType_ = "json";
|
|
1844
|
-
}
|
|
1845
|
-
else {
|
|
1846
|
-
responseType_ = "blob";
|
|
1847
|
-
}
|
|
1848
|
-
}
|
|
1849
|
-
let localVarPath = `/api/bomb/model-parameters/schematics`;
|
|
1792
|
+
let localVarPath = `/api/bomb/model-parameters/downloads`;
|
|
1850
1793
|
const { basePath, withCredentials } = this.configuration;
|
|
1851
1794
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1852
1795
|
context: localVarHttpContext,
|
|
@@ -2082,10 +2025,10 @@ class BombParametersApiService extends BaseService {
|
|
|
2082
2025
|
reportProgress: reportProgress,
|
|
2083
2026
|
});
|
|
2084
2027
|
}
|
|
2085
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2086
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2028
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2029
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, providedIn: "root" });
|
|
2087
2030
|
}
|
|
2088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, decorators: [{
|
|
2089
2032
|
type: Injectable,
|
|
2090
2033
|
args: [{
|
|
2091
2034
|
providedIn: "root",
|
|
@@ -2449,10 +2392,10 @@ class BombRoutingsApiService extends BaseService {
|
|
|
2449
2392
|
reportProgress: reportProgress,
|
|
2450
2393
|
});
|
|
2451
2394
|
}
|
|
2452
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2453
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2395
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2396
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, providedIn: "root" });
|
|
2454
2397
|
}
|
|
2455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, decorators: [{
|
|
2456
2399
|
type: Injectable,
|
|
2457
2400
|
args: [{
|
|
2458
2401
|
providedIn: "root",
|
|
@@ -2483,7 +2426,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2483
2426
|
this.httpClient = httpClient;
|
|
2484
2427
|
}
|
|
2485
2428
|
schematicsCreateSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2486
|
-
const
|
|
2429
|
+
const createDownloadLayerCommand = requestParameters?.createDownloadLayerCommand;
|
|
2487
2430
|
let localVarHeaders = this.defaultHeaders;
|
|
2488
2431
|
// authentication (Bearer) required
|
|
2489
2432
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2525,7 +2468,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2525
2468
|
const { basePath, withCredentials } = this.configuration;
|
|
2526
2469
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2527
2470
|
context: localVarHttpContext,
|
|
2528
|
-
body:
|
|
2471
|
+
body: createDownloadLayerCommand,
|
|
2529
2472
|
responseType: responseType_,
|
|
2530
2473
|
...(withCredentials ? { withCredentials } : {}),
|
|
2531
2474
|
headers: localVarHeaders,
|
|
@@ -2714,7 +2657,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2714
2657
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2715
2658
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsMoveSchematicLayer.");
|
|
2716
2659
|
}
|
|
2717
|
-
const
|
|
2660
|
+
const downloadLayerIdMoveLayerDto = requestParameters?.downloadLayerIdMoveLayerDto;
|
|
2718
2661
|
let localVarHeaders = this.defaultHeaders;
|
|
2719
2662
|
// authentication (Bearer) required
|
|
2720
2663
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2751,7 +2694,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2751
2694
|
const { basePath, withCredentials } = this.configuration;
|
|
2752
2695
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2753
2696
|
context: localVarHttpContext,
|
|
2754
|
-
body:
|
|
2697
|
+
body: downloadLayerIdMoveLayerDto,
|
|
2755
2698
|
responseType: responseType_,
|
|
2756
2699
|
...(withCredentials ? { withCredentials } : {}),
|
|
2757
2700
|
headers: localVarHeaders,
|
|
@@ -2799,9 +2742,9 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2799
2742
|
});
|
|
2800
2743
|
}
|
|
2801
2744
|
schematicsSearchSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2802
|
-
const
|
|
2745
|
+
const parentDownloadLayerId = requestParameters?.parentDownloadLayerId;
|
|
2803
2746
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2804
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
2747
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentDownloadLayerId, "ParentDownloadLayerId");
|
|
2805
2748
|
let localVarHeaders = this.defaultHeaders;
|
|
2806
2749
|
// authentication (Bearer) required
|
|
2807
2750
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2846,7 +2789,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2846
2789
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2847
2790
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsUpdateSchematicLayer.");
|
|
2848
2791
|
}
|
|
2849
|
-
const
|
|
2792
|
+
const saveDownloadLayerDto = requestParameters?.saveDownloadLayerDto;
|
|
2850
2793
|
let localVarHeaders = this.defaultHeaders;
|
|
2851
2794
|
// authentication (Bearer) required
|
|
2852
2795
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2883,7 +2826,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2883
2826
|
const { basePath, withCredentials } = this.configuration;
|
|
2884
2827
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
2885
2828
|
context: localVarHttpContext,
|
|
2886
|
-
body:
|
|
2829
|
+
body: saveDownloadLayerDto,
|
|
2887
2830
|
responseType: responseType_,
|
|
2888
2831
|
...(withCredentials ? { withCredentials } : {}),
|
|
2889
2832
|
headers: localVarHeaders,
|
|
@@ -2892,10 +2835,10 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2892
2835
|
reportProgress: reportProgress,
|
|
2893
2836
|
});
|
|
2894
2837
|
}
|
|
2895
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2896
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2838
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2839
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, providedIn: "root" });
|
|
2897
2840
|
}
|
|
2898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, decorators: [{
|
|
2899
2842
|
type: Injectable,
|
|
2900
2843
|
args: [{
|
|
2901
2844
|
providedIn: "root",
|
|
@@ -3127,10 +3070,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3127
3070
|
reportProgress: reportProgress,
|
|
3128
3071
|
});
|
|
3129
3072
|
}
|
|
3130
|
-
|
|
3073
|
+
validationsRemoveValidationLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3131
3074
|
const validationLayerId = requestParameters?.validationLayerId;
|
|
3132
3075
|
if (validationLayerId === null || validationLayerId === undefined) {
|
|
3133
|
-
throw new Error("Required parameter validationLayerId was null or undefined when calling
|
|
3076
|
+
throw new Error("Required parameter validationLayerId was null or undefined when calling validationsRemoveValidationLayer.");
|
|
3134
3077
|
}
|
|
3135
3078
|
let localVarHeaders = this.defaultHeaders;
|
|
3136
3079
|
// authentication (Bearer) required
|
|
@@ -3259,10 +3202,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3259
3202
|
reportProgress: reportProgress,
|
|
3260
3203
|
});
|
|
3261
3204
|
}
|
|
3262
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3263
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3205
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3206
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, providedIn: "root" });
|
|
3264
3207
|
}
|
|
3265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, decorators: [{
|
|
3266
3209
|
type: Injectable,
|
|
3267
3210
|
args: [{
|
|
3268
3211
|
providedIn: "root",
|
|
@@ -3548,10 +3491,10 @@ class ControllerProgramsApiService extends BaseService {
|
|
|
3548
3491
|
reportProgress: reportProgress,
|
|
3549
3492
|
});
|
|
3550
3493
|
}
|
|
3551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3494
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3495
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, providedIn: "root" });
|
|
3553
3496
|
}
|
|
3554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, decorators: [{
|
|
3555
3498
|
type: Injectable,
|
|
3556
3499
|
args: [{
|
|
3557
3500
|
providedIn: "root",
|
|
@@ -3628,10 +3571,10 @@ class CsiApiService extends BaseService {
|
|
|
3628
3571
|
reportProgress: reportProgress,
|
|
3629
3572
|
});
|
|
3630
3573
|
}
|
|
3631
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3632
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3574
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3575
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, providedIn: "root" });
|
|
3633
3576
|
}
|
|
3634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, decorators: [{
|
|
3635
3578
|
type: Injectable,
|
|
3636
3579
|
args: [{
|
|
3637
3580
|
providedIn: "root",
|
|
@@ -3756,10 +3699,10 @@ class FeedbacksApiService extends BaseService {
|
|
|
3756
3699
|
reportProgress: reportProgress,
|
|
3757
3700
|
});
|
|
3758
3701
|
}
|
|
3759
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3760
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3702
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3703
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, providedIn: "root" });
|
|
3761
3704
|
}
|
|
3762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, decorators: [{
|
|
3763
3706
|
type: Injectable,
|
|
3764
3707
|
args: [{
|
|
3765
3708
|
providedIn: "root",
|
|
@@ -4059,10 +4002,10 @@ class GroupsApiService extends BaseService {
|
|
|
4059
4002
|
reportProgress: reportProgress,
|
|
4060
4003
|
});
|
|
4061
4004
|
}
|
|
4062
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4063
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4005
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4006
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, providedIn: "root" });
|
|
4064
4007
|
}
|
|
4065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, decorators: [{
|
|
4066
4009
|
type: Injectable,
|
|
4067
4010
|
args: [{
|
|
4068
4011
|
providedIn: "root",
|
|
@@ -4295,10 +4238,10 @@ class KnownContactsApiService extends BaseService {
|
|
|
4295
4238
|
reportProgress: reportProgress,
|
|
4296
4239
|
});
|
|
4297
4240
|
}
|
|
4298
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4299
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4241
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4242
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, providedIn: "root" });
|
|
4300
4243
|
}
|
|
4301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, decorators: [{
|
|
4302
4245
|
type: Injectable,
|
|
4303
4246
|
args: [{
|
|
4304
4247
|
providedIn: "root",
|
|
@@ -4472,10 +4415,10 @@ class LeadTimesApiService extends BaseService {
|
|
|
4472
4415
|
reportProgress: reportProgress,
|
|
4473
4416
|
});
|
|
4474
4417
|
}
|
|
4475
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4476
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4418
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4419
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, providedIn: "root" });
|
|
4477
4420
|
}
|
|
4478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, decorators: [{
|
|
4479
4422
|
type: Injectable,
|
|
4480
4423
|
args: [{
|
|
4481
4424
|
providedIn: "root",
|
|
@@ -4541,10 +4484,10 @@ class MaintenanceApiService extends BaseService {
|
|
|
4541
4484
|
reportProgress: reportProgress,
|
|
4542
4485
|
});
|
|
4543
4486
|
}
|
|
4544
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4545
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4487
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4488
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, providedIn: "root" });
|
|
4546
4489
|
}
|
|
4547
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, decorators: [{
|
|
4548
4491
|
type: Injectable,
|
|
4549
4492
|
args: [{
|
|
4550
4493
|
providedIn: "root",
|
|
@@ -4623,10 +4566,10 @@ class PartsApiService extends BaseService {
|
|
|
4623
4566
|
reportProgress: reportProgress,
|
|
4624
4567
|
});
|
|
4625
4568
|
}
|
|
4626
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4627
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4569
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4570
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, providedIn: "root" });
|
|
4628
4571
|
}
|
|
4629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, decorators: [{
|
|
4630
4573
|
type: Injectable,
|
|
4631
4574
|
args: [{
|
|
4632
4575
|
providedIn: "root",
|
|
@@ -4903,10 +4846,10 @@ class PermissionBundlesApiService extends BaseService {
|
|
|
4903
4846
|
reportProgress: reportProgress,
|
|
4904
4847
|
});
|
|
4905
4848
|
}
|
|
4906
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4907
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4849
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4850
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, providedIn: "root" });
|
|
4908
4851
|
}
|
|
4909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, decorators: [{
|
|
4910
4853
|
type: Injectable,
|
|
4911
4854
|
args: [{
|
|
4912
4855
|
providedIn: "root",
|
|
@@ -4975,10 +4918,10 @@ class PermissionsApiService extends BaseService {
|
|
|
4975
4918
|
reportProgress: reportProgress,
|
|
4976
4919
|
});
|
|
4977
4920
|
}
|
|
4978
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4979
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4921
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4922
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, providedIn: "root" });
|
|
4980
4923
|
}
|
|
4981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, decorators: [{
|
|
4982
4925
|
type: Injectable,
|
|
4983
4926
|
args: [{
|
|
4984
4927
|
providedIn: "root",
|
|
@@ -5060,10 +5003,10 @@ class PricingApiService extends BaseService {
|
|
|
5060
5003
|
reportProgress: reportProgress,
|
|
5061
5004
|
});
|
|
5062
5005
|
}
|
|
5063
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5064
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5006
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5007
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, providedIn: "root" });
|
|
5065
5008
|
}
|
|
5066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, decorators: [{
|
|
5067
5010
|
type: Injectable,
|
|
5068
5011
|
args: [{
|
|
5069
5012
|
providedIn: "root",
|
|
@@ -5318,10 +5261,10 @@ class ProjectBidStatusesApiService extends BaseService {
|
|
|
5318
5261
|
reportProgress: reportProgress,
|
|
5319
5262
|
});
|
|
5320
5263
|
}
|
|
5321
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5322
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5265
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, providedIn: "root" });
|
|
5323
5266
|
}
|
|
5324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, decorators: [{
|
|
5325
5268
|
type: Injectable,
|
|
5326
5269
|
args: [{
|
|
5327
5270
|
providedIn: "root",
|
|
@@ -5627,10 +5570,10 @@ class ProjectDiscountsApiService extends BaseService {
|
|
|
5627
5570
|
reportProgress: reportProgress,
|
|
5628
5571
|
});
|
|
5629
5572
|
}
|
|
5630
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5631
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5573
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5574
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, providedIn: "root" });
|
|
5632
5575
|
}
|
|
5633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, decorators: [{
|
|
5634
5577
|
type: Injectable,
|
|
5635
5578
|
args: [{
|
|
5636
5579
|
providedIn: "root",
|
|
@@ -5814,10 +5757,10 @@ class ProjectLinesApiService extends BaseService {
|
|
|
5814
5757
|
reportProgress: reportProgress,
|
|
5815
5758
|
});
|
|
5816
5759
|
}
|
|
5817
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5818
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5760
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5761
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, providedIn: "root" });
|
|
5819
5762
|
}
|
|
5820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, decorators: [{
|
|
5821
5764
|
type: Injectable,
|
|
5822
5765
|
args: [{
|
|
5823
5766
|
providedIn: "root",
|
|
@@ -6040,10 +5983,10 @@ class ProjectLinksApiService extends BaseService {
|
|
|
6040
5983
|
reportProgress: reportProgress,
|
|
6041
5984
|
});
|
|
6042
5985
|
}
|
|
6043
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6044
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5986
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5987
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, providedIn: "root" });
|
|
6045
5988
|
}
|
|
6046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, decorators: [{
|
|
6047
5990
|
type: Injectable,
|
|
6048
5991
|
args: [{
|
|
6049
5992
|
providedIn: "root",
|
|
@@ -6357,10 +6300,10 @@ class ProjectNotesApiService extends BaseService {
|
|
|
6357
6300
|
reportProgress: reportProgress,
|
|
6358
6301
|
});
|
|
6359
6302
|
}
|
|
6360
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6361
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
6303
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6304
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, providedIn: "root" });
|
|
6362
6305
|
}
|
|
6363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, decorators: [{
|
|
6364
6307
|
type: Injectable,
|
|
6365
6308
|
args: [{
|
|
6366
6309
|
providedIn: "root",
|
|
@@ -6576,10 +6519,145 @@ class ProjectQualifiedSpecificationsApiService extends BaseService {
|
|
|
6576
6519
|
reportProgress: reportProgress,
|
|
6577
6520
|
});
|
|
6578
6521
|
}
|
|
6579
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6580
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
6522
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6523
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, providedIn: "root" });
|
|
6524
|
+
}
|
|
6525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, decorators: [{
|
|
6526
|
+
type: Injectable,
|
|
6527
|
+
args: [{
|
|
6528
|
+
providedIn: "root",
|
|
6529
|
+
}]
|
|
6530
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
6531
|
+
type: Optional
|
|
6532
|
+
}, {
|
|
6533
|
+
type: Inject,
|
|
6534
|
+
args: [BASE_PATH]
|
|
6535
|
+
}] }, { type: Configuration, decorators: [{
|
|
6536
|
+
type: Optional
|
|
6537
|
+
}] }] });
|
|
6538
|
+
|
|
6539
|
+
/**
|
|
6540
|
+
* RenewAire CORES API
|
|
6541
|
+
*
|
|
6542
|
+
* Contact: renewaire@saritasa.com
|
|
6543
|
+
*
|
|
6544
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6545
|
+
* https://openapi-generator.tech
|
|
6546
|
+
* Do not edit the class manually.
|
|
6547
|
+
*/
|
|
6548
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
6549
|
+
class ProjectQuotesApiService extends BaseService {
|
|
6550
|
+
httpClient;
|
|
6551
|
+
constructor(httpClient, basePath, configuration) {
|
|
6552
|
+
super(basePath, configuration);
|
|
6553
|
+
this.httpClient = httpClient;
|
|
6554
|
+
}
|
|
6555
|
+
projectQuoteUpdateProjectQuoteCustomItems(requestParameters, observe = "body", reportProgress = false, options) {
|
|
6556
|
+
const projectRevisionId = requestParameters?.projectRevisionId;
|
|
6557
|
+
if (projectRevisionId === null || projectRevisionId === undefined) {
|
|
6558
|
+
throw new Error("Required parameter projectRevisionId was null or undefined when calling projectQuoteUpdateProjectQuoteCustomItems.");
|
|
6559
|
+
}
|
|
6560
|
+
const updateProjectQuoteCustomItemDto = requestParameters?.updateProjectQuoteCustomItemDto;
|
|
6561
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6562
|
+
// authentication (Bearer) required
|
|
6563
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
6564
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
6565
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6566
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
6567
|
+
}
|
|
6568
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6569
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6570
|
+
// to determine the Content-Type header
|
|
6571
|
+
const consumes = [
|
|
6572
|
+
"application/json-patch+json",
|
|
6573
|
+
"application/json",
|
|
6574
|
+
"text/json",
|
|
6575
|
+
"application/*+json",
|
|
6576
|
+
];
|
|
6577
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6578
|
+
if (httpContentTypeSelected !== undefined) {
|
|
6579
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
6580
|
+
}
|
|
6581
|
+
let responseType_ = "json";
|
|
6582
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6583
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
6584
|
+
responseType_ = "text";
|
|
6585
|
+
}
|
|
6586
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6587
|
+
responseType_ = "json";
|
|
6588
|
+
}
|
|
6589
|
+
else {
|
|
6590
|
+
responseType_ = "blob";
|
|
6591
|
+
}
|
|
6592
|
+
}
|
|
6593
|
+
let localVarPath = `/api/project-revisions/${this.configuration.encodeParam({ name: "projectRevisionId", value: projectRevisionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/quote-custom-items`;
|
|
6594
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6595
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
6596
|
+
context: localVarHttpContext,
|
|
6597
|
+
body: updateProjectQuoteCustomItemDto,
|
|
6598
|
+
responseType: responseType_,
|
|
6599
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6600
|
+
headers: localVarHeaders,
|
|
6601
|
+
observe: observe,
|
|
6602
|
+
transferCache: localVarTransferCache,
|
|
6603
|
+
reportProgress: reportProgress,
|
|
6604
|
+
});
|
|
6605
|
+
}
|
|
6606
|
+
projectQuoteUpdateQuote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
6607
|
+
const projectRevisionId = requestParameters?.projectRevisionId;
|
|
6608
|
+
if (projectRevisionId === null || projectRevisionId === undefined) {
|
|
6609
|
+
throw new Error("Required parameter projectRevisionId was null or undefined when calling projectQuoteUpdateQuote.");
|
|
6610
|
+
}
|
|
6611
|
+
const updateProjectQuoteDtoOperation = requestParameters?.updateProjectQuoteDtoOperation;
|
|
6612
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6613
|
+
// authentication (Bearer) required
|
|
6614
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
6615
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
6616
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6617
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
6618
|
+
}
|
|
6619
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6620
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6621
|
+
// to determine the Content-Type header
|
|
6622
|
+
const consumes = [
|
|
6623
|
+
"application/json-patch+json",
|
|
6624
|
+
"application/json",
|
|
6625
|
+
"text/json",
|
|
6626
|
+
"application/*+json",
|
|
6627
|
+
];
|
|
6628
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6629
|
+
if (httpContentTypeSelected !== undefined) {
|
|
6630
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
6631
|
+
}
|
|
6632
|
+
let responseType_ = "json";
|
|
6633
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6634
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
6635
|
+
responseType_ = "text";
|
|
6636
|
+
}
|
|
6637
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6638
|
+
responseType_ = "json";
|
|
6639
|
+
}
|
|
6640
|
+
else {
|
|
6641
|
+
responseType_ = "blob";
|
|
6642
|
+
}
|
|
6643
|
+
}
|
|
6644
|
+
let localVarPath = `/api/project-revisions/${this.configuration.encodeParam({ name: "projectRevisionId", value: projectRevisionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/quote`;
|
|
6645
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6646
|
+
return this.httpClient.request("patch", `${basePath}${localVarPath}`, {
|
|
6647
|
+
context: localVarHttpContext,
|
|
6648
|
+
body: updateProjectQuoteDtoOperation,
|
|
6649
|
+
responseType: responseType_,
|
|
6650
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6651
|
+
headers: localVarHeaders,
|
|
6652
|
+
observe: observe,
|
|
6653
|
+
transferCache: localVarTransferCache,
|
|
6654
|
+
reportProgress: reportProgress,
|
|
6655
|
+
});
|
|
6656
|
+
}
|
|
6657
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQuotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6658
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQuotesApiService, providedIn: "root" });
|
|
6581
6659
|
}
|
|
6582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQuotesApiService, decorators: [{
|
|
6583
6661
|
type: Injectable,
|
|
6584
6662
|
args: [{
|
|
6585
6663
|
providedIn: "root",
|
|
@@ -6988,10 +7066,10 @@ class ProjectRevisionsApiService extends BaseService {
|
|
|
6988
7066
|
reportProgress: reportProgress,
|
|
6989
7067
|
});
|
|
6990
7068
|
}
|
|
6991
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6992
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7069
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectRevisionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7070
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectRevisionsApiService, providedIn: "root" });
|
|
6993
7071
|
}
|
|
6994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectRevisionsApiService, decorators: [{
|
|
6995
7073
|
type: Injectable,
|
|
6996
7074
|
args: [{
|
|
6997
7075
|
providedIn: "root",
|
|
@@ -7201,10 +7279,10 @@ class ProjectSharingApiService extends BaseService {
|
|
|
7201
7279
|
reportProgress: reportProgress,
|
|
7202
7280
|
});
|
|
7203
7281
|
}
|
|
7204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7205
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7282
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSharingApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7283
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSharingApiService, providedIn: "root" });
|
|
7206
7284
|
}
|
|
7207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSharingApiService, decorators: [{
|
|
7208
7286
|
type: Injectable,
|
|
7209
7287
|
args: [{
|
|
7210
7288
|
providedIn: "root",
|
|
@@ -7472,10 +7550,10 @@ class ProjectShippingApiService extends BaseService {
|
|
|
7472
7550
|
reportProgress: reportProgress,
|
|
7473
7551
|
});
|
|
7474
7552
|
}
|
|
7475
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7476
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7553
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectShippingApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7554
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectShippingApiService, providedIn: "root" });
|
|
7477
7555
|
}
|
|
7478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectShippingApiService, decorators: [{
|
|
7479
7557
|
type: Injectable,
|
|
7480
7558
|
args: [{
|
|
7481
7559
|
providedIn: "root",
|
|
@@ -7554,10 +7632,10 @@ class ProjectSoldToApiService extends BaseService {
|
|
|
7554
7632
|
reportProgress: reportProgress,
|
|
7555
7633
|
});
|
|
7556
7634
|
}
|
|
7557
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7558
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7635
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSoldToApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7636
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSoldToApiService, providedIn: "root" });
|
|
7559
7637
|
}
|
|
7560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSoldToApiService, decorators: [{
|
|
7561
7639
|
type: Injectable,
|
|
7562
7640
|
args: [{
|
|
7563
7641
|
providedIn: "root",
|
|
@@ -7923,10 +8001,10 @@ class ProjectStatusesApiService extends BaseService {
|
|
|
7923
8001
|
reportProgress: reportProgress,
|
|
7924
8002
|
});
|
|
7925
8003
|
}
|
|
7926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7927
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8004
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectStatusesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8005
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectStatusesApiService, providedIn: "root" });
|
|
7928
8006
|
}
|
|
7929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectStatusesApiService, decorators: [{
|
|
7930
8008
|
type: Injectable,
|
|
7931
8009
|
args: [{
|
|
7932
8010
|
providedIn: "root",
|
|
@@ -8353,10 +8431,10 @@ class ProjectsApiService extends BaseService {
|
|
|
8353
8431
|
reportProgress: reportProgress,
|
|
8354
8432
|
});
|
|
8355
8433
|
}
|
|
8356
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8357
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8434
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8435
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectsApiService, providedIn: "root" });
|
|
8358
8436
|
}
|
|
8359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectsApiService, decorators: [{
|
|
8360
8438
|
type: Injectable,
|
|
8361
8439
|
args: [{
|
|
8362
8440
|
providedIn: "root",
|
|
@@ -8443,10 +8521,10 @@ class RegionsApiService extends BaseService {
|
|
|
8443
8521
|
reportProgress: reportProgress,
|
|
8444
8522
|
});
|
|
8445
8523
|
}
|
|
8446
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8447
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8524
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8525
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RegionsApiService, providedIn: "root" });
|
|
8448
8526
|
}
|
|
8449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RegionsApiService, decorators: [{
|
|
8450
8528
|
type: Injectable,
|
|
8451
8529
|
args: [{
|
|
8452
8530
|
providedIn: "root",
|
|
@@ -8687,10 +8765,10 @@ class RepContactsApiService extends BaseService {
|
|
|
8687
8765
|
reportProgress: reportProgress,
|
|
8688
8766
|
});
|
|
8689
8767
|
}
|
|
8690
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8691
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8768
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepContactsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8769
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepContactsApiService, providedIn: "root" });
|
|
8692
8770
|
}
|
|
8693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepContactsApiService, decorators: [{
|
|
8694
8772
|
type: Injectable,
|
|
8695
8773
|
args: [{
|
|
8696
8774
|
providedIn: "root",
|
|
@@ -8944,10 +9022,10 @@ class RepSalesReportsApiService extends BaseService {
|
|
|
8944
9022
|
reportProgress: reportProgress,
|
|
8945
9023
|
});
|
|
8946
9024
|
}
|
|
8947
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8948
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
9025
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepSalesReportsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9026
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepSalesReportsApiService, providedIn: "root" });
|
|
8949
9027
|
}
|
|
8950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepSalesReportsApiService, decorators: [{
|
|
8951
9029
|
type: Injectable,
|
|
8952
9030
|
args: [{
|
|
8953
9031
|
providedIn: "root",
|
|
@@ -9751,10 +9829,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
9751
9829
|
reportProgress: reportProgress,
|
|
9752
9830
|
});
|
|
9753
9831
|
}
|
|
9754
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9755
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
9832
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoriesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9833
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoriesApiService, providedIn: "root" });
|
|
9756
9834
|
}
|
|
9757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoriesApiService, decorators: [{
|
|
9758
9836
|
type: Injectable,
|
|
9759
9837
|
args: [{
|
|
9760
9838
|
providedIn: "root",
|
|
@@ -9995,10 +10073,10 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
9995
10073
|
reportProgress: reportProgress,
|
|
9996
10074
|
});
|
|
9997
10075
|
}
|
|
9998
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9999
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10076
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoryLocationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10077
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoryLocationsApiService, providedIn: "root" });
|
|
10000
10078
|
}
|
|
10001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoryLocationsApiService, decorators: [{
|
|
10002
10080
|
type: Injectable,
|
|
10003
10081
|
args: [{
|
|
10004
10082
|
providedIn: "root",
|
|
@@ -10550,10 +10628,10 @@ class RsdRegionsApiService extends BaseService {
|
|
|
10550
10628
|
reportProgress: reportProgress,
|
|
10551
10629
|
});
|
|
10552
10630
|
}
|
|
10553
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10554
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10631
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RsdRegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10632
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RsdRegionsApiService, providedIn: "root" });
|
|
10555
10633
|
}
|
|
10556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RsdRegionsApiService, decorators: [{
|
|
10557
10635
|
type: Injectable,
|
|
10558
10636
|
args: [{
|
|
10559
10637
|
providedIn: "root",
|
|
@@ -10635,10 +10713,10 @@ class S3ApiService extends BaseService {
|
|
|
10635
10713
|
reportProgress: reportProgress,
|
|
10636
10714
|
});
|
|
10637
10715
|
}
|
|
10638
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10639
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10716
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: S3ApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10717
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: S3ApiService, providedIn: "root" });
|
|
10640
10718
|
}
|
|
10641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: S3ApiService, decorators: [{
|
|
10642
10720
|
type: Injectable,
|
|
10643
10721
|
args: [{
|
|
10644
10722
|
providedIn: "root",
|
|
@@ -10704,10 +10782,10 @@ class StaticFilesApiService extends BaseService {
|
|
|
10704
10782
|
reportProgress: reportProgress,
|
|
10705
10783
|
});
|
|
10706
10784
|
}
|
|
10707
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10708
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10785
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: StaticFilesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10786
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: StaticFilesApiService, providedIn: "root" });
|
|
10709
10787
|
}
|
|
10710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: StaticFilesApiService, decorators: [{
|
|
10711
10789
|
type: Injectable,
|
|
10712
10790
|
args: [{
|
|
10713
10791
|
providedIn: "root",
|
|
@@ -10870,10 +10948,10 @@ class UserTablesApiService extends BaseService {
|
|
|
10870
10948
|
reportProgress: reportProgress,
|
|
10871
10949
|
});
|
|
10872
10950
|
}
|
|
10873
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10874
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10951
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UserTablesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10952
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UserTablesApiService, providedIn: "root" });
|
|
10875
10953
|
}
|
|
10876
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UserTablesApiService, decorators: [{
|
|
10877
10955
|
type: Injectable,
|
|
10878
10956
|
args: [{
|
|
10879
10957
|
providedIn: "root",
|
|
@@ -12299,10 +12377,10 @@ class UsersApiService extends BaseService {
|
|
|
12299
12377
|
reportProgress: reportProgress,
|
|
12300
12378
|
});
|
|
12301
12379
|
}
|
|
12302
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12303
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
12380
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12381
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
12304
12382
|
}
|
|
12305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersApiService, decorators: [{
|
|
12306
12384
|
type: Injectable,
|
|
12307
12385
|
args: [{
|
|
12308
12386
|
providedIn: "root",
|
|
@@ -12915,10 +12993,10 @@ class UsersManagementApiService extends BaseService {
|
|
|
12915
12993
|
reportProgress: reportProgress,
|
|
12916
12994
|
});
|
|
12917
12995
|
}
|
|
12918
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12919
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
12996
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersManagementApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12997
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersManagementApiService, providedIn: "root" });
|
|
12920
12998
|
}
|
|
12921
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersManagementApiService, decorators: [{
|
|
12922
13000
|
type: Injectable,
|
|
12923
13001
|
args: [{
|
|
12924
13002
|
providedIn: "root",
|
|
@@ -12935,7 +13013,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
12935
13013
|
const APIS = [
|
|
12936
13014
|
AuditLogsApiService,
|
|
12937
13015
|
AuthApiService,
|
|
12938
|
-
|
|
13016
|
+
BombDownloadsApiService,
|
|
12939
13017
|
BombMaterialsApiService,
|
|
12940
13018
|
BombParametersApiService,
|
|
12941
13019
|
BombRoutingsApiService,
|
|
@@ -12958,6 +13036,7 @@ const APIS = [
|
|
|
12958
13036
|
ProjectLinksApiService,
|
|
12959
13037
|
ProjectNotesApiService,
|
|
12960
13038
|
ProjectQualifiedSpecificationsApiService,
|
|
13039
|
+
ProjectQuotesApiService,
|
|
12961
13040
|
ProjectRevisionsApiService,
|
|
12962
13041
|
ProjectSharingApiService,
|
|
12963
13042
|
ProjectShippingApiService,
|
|
@@ -13029,7 +13108,7 @@ var AshraeVersion;
|
|
|
13029
13108
|
* Do not edit the class manually.
|
|
13030
13109
|
*/
|
|
13031
13110
|
/**
|
|
13032
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 =
|
|
13111
|
+
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 = DownloadLayer<br />14 = RoutingLayer<br />15 = ValidationLayer
|
|
13033
13112
|
*/
|
|
13034
13113
|
var AuditEntity;
|
|
13035
13114
|
(function (AuditEntity) {
|
|
@@ -13046,10 +13125,9 @@ var AuditEntity;
|
|
|
13046
13125
|
AuditEntity["Project"] = "Project";
|
|
13047
13126
|
AuditEntity["ProjectLine"] = "ProjectLine";
|
|
13048
13127
|
AuditEntity["MaterialLayer"] = "MaterialLayer";
|
|
13049
|
-
AuditEntity["
|
|
13128
|
+
AuditEntity["DownloadLayer"] = "DownloadLayer";
|
|
13050
13129
|
AuditEntity["RoutingLayer"] = "RoutingLayer";
|
|
13051
13130
|
AuditEntity["ValidationLayer"] = "ValidationLayer";
|
|
13052
|
-
AuditEntity["DrawingLayer"] = "DrawingLayer";
|
|
13053
13131
|
})(AuditEntity || (AuditEntity = {}));
|
|
13054
13132
|
|
|
13055
13133
|
/**
|
|
@@ -13329,16 +13407,6 @@ var CoolingDesignBasis;
|
|
|
13329
13407
|
* Do not edit the class manually.
|
|
13330
13408
|
*/
|
|
13331
13409
|
|
|
13332
|
-
/**
|
|
13333
|
-
* RenewAire CORES API
|
|
13334
|
-
*
|
|
13335
|
-
* Contact: renewaire@saritasa.com
|
|
13336
|
-
*
|
|
13337
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13338
|
-
* https://openapi-generator.tech
|
|
13339
|
-
* Do not edit the class manually.
|
|
13340
|
-
*/
|
|
13341
|
-
|
|
13342
13410
|
/**
|
|
13343
13411
|
* RenewAire CORES API
|
|
13344
13412
|
*
|
|
@@ -13460,7 +13528,7 @@ var FeedbackType;
|
|
|
13460
13528
|
* Do not edit the class manually.
|
|
13461
13529
|
*/
|
|
13462
13530
|
/**
|
|
13463
|
-
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 =
|
|
13531
|
+
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = DownloadLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = DrawingLayerFile
|
|
13464
13532
|
*/
|
|
13465
13533
|
var FileType;
|
|
13466
13534
|
(function (FileType) {
|
|
@@ -13469,7 +13537,7 @@ var FileType;
|
|
|
13469
13537
|
FileType["RepSalesReport"] = "RepSalesReport";
|
|
13470
13538
|
FileType["ProjectNoteAttachment"] = "ProjectNoteAttachment";
|
|
13471
13539
|
FileType["BidStatusAttachment"] = "BidStatusAttachment";
|
|
13472
|
-
FileType["
|
|
13540
|
+
FileType["DownloadLayerFile"] = "DownloadLayerFile";
|
|
13473
13541
|
FileType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
13474
13542
|
FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
|
|
13475
13543
|
FileType["DrawingLayerFile"] = "DrawingLayerFile";
|
|
@@ -13839,7 +13907,7 @@ var ParameterType;
|
|
|
13839
13907
|
* Do not edit the class manually.
|
|
13840
13908
|
*/
|
|
13841
13909
|
/**
|
|
13842
|
-
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 =
|
|
13910
|
+
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 = BombDownloadsAdmin<br />67 = BombValidationsAdmin<br />68 = AccessBomb<br />69 = BombDrawingsAdmin<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 = AccessProjectSalesChannelNotes
|
|
13843
13911
|
*/
|
|
13844
13912
|
var Permission;
|
|
13845
13913
|
(function (Permission) {
|
|
@@ -13901,7 +13969,7 @@ var Permission;
|
|
|
13901
13969
|
Permission["EditUsers"] = "EditUsers";
|
|
13902
13970
|
Permission["BombMaterialsAdmin"] = "BombMaterialsAdmin";
|
|
13903
13971
|
Permission["BombRoutingAdmin"] = "BombRoutingAdmin";
|
|
13904
|
-
Permission["
|
|
13972
|
+
Permission["BombDownloadsAdmin"] = "BombDownloadsAdmin";
|
|
13905
13973
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
13906
13974
|
Permission["AccessBomb"] = "AccessBomb";
|
|
13907
13975
|
Permission["BombDrawingsAdmin"] = "BombDrawingsAdmin";
|
|
@@ -14153,6 +14221,61 @@ var ProjectNoteType;
|
|
|
14153
14221
|
ProjectNoteType["SalesChannel"] = "SalesChannel";
|
|
14154
14222
|
})(ProjectNoteType || (ProjectNoteType = {}));
|
|
14155
14223
|
|
|
14224
|
+
/**
|
|
14225
|
+
* RenewAire CORES API
|
|
14226
|
+
*
|
|
14227
|
+
* Contact: renewaire@saritasa.com
|
|
14228
|
+
*
|
|
14229
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14230
|
+
* https://openapi-generator.tech
|
|
14231
|
+
* Do not edit the class manually.
|
|
14232
|
+
*/
|
|
14233
|
+
/**
|
|
14234
|
+
* Quote accessories view.<br />ProjectQuoteLogAccessoriesView<br />0 = OrderedByProjectLineNumber<br />1 = GroupedByLinkedErvLines
|
|
14235
|
+
*/
|
|
14236
|
+
var ProjectQuoteLogAccessoriesView;
|
|
14237
|
+
(function (ProjectQuoteLogAccessoriesView) {
|
|
14238
|
+
ProjectQuoteLogAccessoriesView["OrderedByProjectLineNumber"] = "OrderedByProjectLineNumber";
|
|
14239
|
+
ProjectQuoteLogAccessoriesView["GroupedByLinkedErvLines"] = "GroupedByLinkedErvLines";
|
|
14240
|
+
})(ProjectQuoteLogAccessoriesView || (ProjectQuoteLogAccessoriesView = {}));
|
|
14241
|
+
|
|
14242
|
+
/**
|
|
14243
|
+
* RenewAire CORES API
|
|
14244
|
+
*
|
|
14245
|
+
* Contact: renewaire@saritasa.com
|
|
14246
|
+
*
|
|
14247
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14248
|
+
* https://openapi-generator.tech
|
|
14249
|
+
* Do not edit the class manually.
|
|
14250
|
+
*/
|
|
14251
|
+
/**
|
|
14252
|
+
* Project quote multiplier.<br />ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom
|
|
14253
|
+
*/
|
|
14254
|
+
var ProjectQuoteMultiplier;
|
|
14255
|
+
(function (ProjectQuoteMultiplier) {
|
|
14256
|
+
ProjectQuoteMultiplier["ListPrice"] = "ListPrice";
|
|
14257
|
+
ProjectQuoteMultiplier["Custom"] = "Custom";
|
|
14258
|
+
})(ProjectQuoteMultiplier || (ProjectQuoteMultiplier = {}));
|
|
14259
|
+
|
|
14260
|
+
/**
|
|
14261
|
+
* RenewAire CORES API
|
|
14262
|
+
*
|
|
14263
|
+
* Contact: renewaire@saritasa.com
|
|
14264
|
+
*
|
|
14265
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14266
|
+
* https://openapi-generator.tech
|
|
14267
|
+
* Do not edit the class manually.
|
|
14268
|
+
*/
|
|
14269
|
+
/**
|
|
14270
|
+
* Quote pricing options.<br />ProjectQuotePricing<br />0 = ShowLineItemPricing<br />1 = HideAllPricing<br />2 = OnlyShowTotal
|
|
14271
|
+
*/
|
|
14272
|
+
var ProjectQuotePricing;
|
|
14273
|
+
(function (ProjectQuotePricing) {
|
|
14274
|
+
ProjectQuotePricing["ShowLineItemPricing"] = "ShowLineItemPricing";
|
|
14275
|
+
ProjectQuotePricing["HideAllPricing"] = "HideAllPricing";
|
|
14276
|
+
ProjectQuotePricing["OnlyShowTotal"] = "OnlyShowTotal";
|
|
14277
|
+
})(ProjectQuotePricing || (ProjectQuotePricing = {}));
|
|
14278
|
+
|
|
14156
14279
|
/**
|
|
14157
14280
|
* RenewAire CORES API
|
|
14158
14281
|
*
|
|
@@ -14586,6 +14709,14 @@ var RegistrationStatus;
|
|
|
14586
14709
|
* https://openapi-generator.tech
|
|
14587
14710
|
* Do not edit the class manually.
|
|
14588
14711
|
*/
|
|
14712
|
+
/**
|
|
14713
|
+
* Unit systems.<br />UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
14714
|
+
*/
|
|
14715
|
+
var UnitSystem;
|
|
14716
|
+
(function (UnitSystem) {
|
|
14717
|
+
UnitSystem["Imperial"] = "Imperial";
|
|
14718
|
+
UnitSystem["Metric"] = "Metric";
|
|
14719
|
+
})(UnitSystem || (UnitSystem = {}));
|
|
14589
14720
|
|
|
14590
14721
|
/**
|
|
14591
14722
|
* RenewAire CORES API
|
|
@@ -14606,14 +14737,6 @@ var RegistrationStatus;
|
|
|
14606
14737
|
* https://openapi-generator.tech
|
|
14607
14738
|
* Do not edit the class manually.
|
|
14608
14739
|
*/
|
|
14609
|
-
/**
|
|
14610
|
-
* Unit systems.<br />UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
14611
|
-
*/
|
|
14612
|
-
var UnitSystem;
|
|
14613
|
-
(function (UnitSystem) {
|
|
14614
|
-
UnitSystem["Imperial"] = "Imperial";
|
|
14615
|
-
UnitSystem["Metric"] = "Metric";
|
|
14616
|
-
})(UnitSystem || (UnitSystem = {}));
|
|
14617
14740
|
|
|
14618
14741
|
/**
|
|
14619
14742
|
* RenewAire CORES API
|
|
@@ -14770,11 +14893,11 @@ class ApiModule {
|
|
|
14770
14893
|
"See also https://github.com/angular/angular/issues/20575");
|
|
14771
14894
|
}
|
|
14772
14895
|
}
|
|
14773
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14774
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
14775
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
14896
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
14897
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: ApiModule });
|
|
14898
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiModule });
|
|
14776
14899
|
}
|
|
14777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14900
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiModule, decorators: [{
|
|
14778
14901
|
type: NgModule,
|
|
14779
14902
|
args: [{
|
|
14780
14903
|
imports: [],
|
|
@@ -14806,5 +14929,5 @@ function provideApi(configOrBasePath) {
|
|
|
14806
14929
|
* Generated bundle index. Do not edit.
|
|
14807
14930
|
*/
|
|
14808
14931
|
|
|
14809
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH,
|
|
14932
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombDownloadsApiService, BombMaterialsApiService, BombParametersApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, CsiApiService, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, ModelNumberValidationErrorType, OperationType, OperatorType, ParameterKind, ParameterType, PartsApiService, Permission, PermissionBundlesApiService, PermissionsApiService, PricingApiService, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectDiscountStatus, ProjectDiscountType, ProjectDiscountsApiService, ProjectLineStatus, ProjectLineType, ProjectLinesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectQualifiedSpecificationsApiService, ProjectQuoteLogAccessoriesView, ProjectQuoteMultiplier, ProjectQuotePricing, ProjectQuotesApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
14810
14933
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|