@saritasa/renewaire-frontend-sdk 0.256.0 → 0.258.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 +303 -243
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +341 -410
- 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,7 +1789,7 @@ class BombParametersApiService extends BaseService {
|
|
|
1789
1789
|
responseType_ = "blob";
|
|
1790
1790
|
}
|
|
1791
1791
|
}
|
|
1792
|
-
let localVarPath = `/api/bomb/model-parameters/
|
|
1792
|
+
let localVarPath = `/api/bomb/model-parameters/downloads`;
|
|
1793
1793
|
const { basePath, withCredentials } = this.configuration;
|
|
1794
1794
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1795
1795
|
context: localVarHttpContext,
|
|
@@ -1802,14 +1802,14 @@ class BombParametersApiService extends BaseService {
|
|
|
1802
1802
|
reportProgress: reportProgress,
|
|
1803
1803
|
});
|
|
1804
1804
|
}
|
|
1805
|
-
|
|
1805
|
+
modelParametersSearchModelValidationLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1806
1806
|
const modelNumber = requestParameters?.modelNumber;
|
|
1807
1807
|
if (modelNumber === null || modelNumber === undefined) {
|
|
1808
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling
|
|
1808
|
+
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchModelValidationLayers.");
|
|
1809
1809
|
}
|
|
1810
1810
|
const buildDate = requestParameters?.buildDate;
|
|
1811
1811
|
if (buildDate === null || buildDate === undefined) {
|
|
1812
|
-
throw new Error("Required parameter buildDate was null or undefined when calling
|
|
1812
|
+
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchModelValidationLayers.");
|
|
1813
1813
|
}
|
|
1814
1814
|
const modelParameters = requestParameters?.modelParameters;
|
|
1815
1815
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
@@ -1846,7 +1846,7 @@ class BombParametersApiService extends BaseService {
|
|
|
1846
1846
|
responseType_ = "blob";
|
|
1847
1847
|
}
|
|
1848
1848
|
}
|
|
1849
|
-
let localVarPath = `/api/bomb/model-parameters/
|
|
1849
|
+
let localVarPath = `/api/bomb/model-parameters/validations`;
|
|
1850
1850
|
const { basePath, withCredentials } = this.configuration;
|
|
1851
1851
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1852
1852
|
context: localVarHttpContext,
|
|
@@ -1859,14 +1859,14 @@ class BombParametersApiService extends BaseService {
|
|
|
1859
1859
|
reportProgress: reportProgress,
|
|
1860
1860
|
});
|
|
1861
1861
|
}
|
|
1862
|
-
|
|
1862
|
+
modelParametersSearchRoutingLayersAggregate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1863
1863
|
const modelNumber = requestParameters?.modelNumber;
|
|
1864
1864
|
if (modelNumber === null || modelNumber === undefined) {
|
|
1865
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling
|
|
1865
|
+
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchRoutingLayersAggregate.");
|
|
1866
1866
|
}
|
|
1867
1867
|
const buildDate = requestParameters?.buildDate;
|
|
1868
1868
|
if (buildDate === null || buildDate === undefined) {
|
|
1869
|
-
throw new Error("Required parameter buildDate was null or undefined when calling
|
|
1869
|
+
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchRoutingLayersAggregate.");
|
|
1870
1870
|
}
|
|
1871
1871
|
const modelParameters = requestParameters?.modelParameters;
|
|
1872
1872
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
@@ -1903,7 +1903,7 @@ class BombParametersApiService extends BaseService {
|
|
|
1903
1903
|
responseType_ = "blob";
|
|
1904
1904
|
}
|
|
1905
1905
|
}
|
|
1906
|
-
let localVarPath = `/api/bomb/model-parameters/
|
|
1906
|
+
let localVarPath = `/api/bomb/model-parameters/routings/aggregate`;
|
|
1907
1907
|
const { basePath, withCredentials } = this.configuration;
|
|
1908
1908
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1909
1909
|
context: localVarHttpContext,
|
|
@@ -2025,10 +2025,10 @@ class BombParametersApiService extends BaseService {
|
|
|
2025
2025
|
reportProgress: reportProgress,
|
|
2026
2026
|
});
|
|
2027
2027
|
}
|
|
2028
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2029
|
-
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" });
|
|
2030
2030
|
}
|
|
2031
|
-
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: [{
|
|
2032
2032
|
type: Injectable,
|
|
2033
2033
|
args: [{
|
|
2034
2034
|
providedIn: "root",
|
|
@@ -2392,10 +2392,10 @@ class BombRoutingsApiService extends BaseService {
|
|
|
2392
2392
|
reportProgress: reportProgress,
|
|
2393
2393
|
});
|
|
2394
2394
|
}
|
|
2395
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2396
|
-
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" });
|
|
2397
2397
|
}
|
|
2398
|
-
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: [{
|
|
2399
2399
|
type: Injectable,
|
|
2400
2400
|
args: [{
|
|
2401
2401
|
providedIn: "root",
|
|
@@ -2426,7 +2426,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2426
2426
|
this.httpClient = httpClient;
|
|
2427
2427
|
}
|
|
2428
2428
|
schematicsCreateSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2429
|
-
const
|
|
2429
|
+
const createDownloadLayerCommand = requestParameters?.createDownloadLayerCommand;
|
|
2430
2430
|
let localVarHeaders = this.defaultHeaders;
|
|
2431
2431
|
// authentication (Bearer) required
|
|
2432
2432
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2468,7 +2468,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2468
2468
|
const { basePath, withCredentials } = this.configuration;
|
|
2469
2469
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2470
2470
|
context: localVarHttpContext,
|
|
2471
|
-
body:
|
|
2471
|
+
body: createDownloadLayerCommand,
|
|
2472
2472
|
responseType: responseType_,
|
|
2473
2473
|
...(withCredentials ? { withCredentials } : {}),
|
|
2474
2474
|
headers: localVarHeaders,
|
|
@@ -2657,7 +2657,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2657
2657
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2658
2658
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsMoveSchematicLayer.");
|
|
2659
2659
|
}
|
|
2660
|
-
const
|
|
2660
|
+
const downloadLayerIdMoveLayerDto = requestParameters?.downloadLayerIdMoveLayerDto;
|
|
2661
2661
|
let localVarHeaders = this.defaultHeaders;
|
|
2662
2662
|
// authentication (Bearer) required
|
|
2663
2663
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2694,7 +2694,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2694
2694
|
const { basePath, withCredentials } = this.configuration;
|
|
2695
2695
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2696
2696
|
context: localVarHttpContext,
|
|
2697
|
-
body:
|
|
2697
|
+
body: downloadLayerIdMoveLayerDto,
|
|
2698
2698
|
responseType: responseType_,
|
|
2699
2699
|
...(withCredentials ? { withCredentials } : {}),
|
|
2700
2700
|
headers: localVarHeaders,
|
|
@@ -2742,9 +2742,9 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2742
2742
|
});
|
|
2743
2743
|
}
|
|
2744
2744
|
schematicsSearchSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2745
|
-
const
|
|
2745
|
+
const parentDownloadLayerId = requestParameters?.parentDownloadLayerId;
|
|
2746
2746
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2747
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
2747
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentDownloadLayerId, "ParentDownloadLayerId");
|
|
2748
2748
|
let localVarHeaders = this.defaultHeaders;
|
|
2749
2749
|
// authentication (Bearer) required
|
|
2750
2750
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2789,7 +2789,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2789
2789
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2790
2790
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsUpdateSchematicLayer.");
|
|
2791
2791
|
}
|
|
2792
|
-
const
|
|
2792
|
+
const saveDownloadLayerDto = requestParameters?.saveDownloadLayerDto;
|
|
2793
2793
|
let localVarHeaders = this.defaultHeaders;
|
|
2794
2794
|
// authentication (Bearer) required
|
|
2795
2795
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2826,7 +2826,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2826
2826
|
const { basePath, withCredentials } = this.configuration;
|
|
2827
2827
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
2828
2828
|
context: localVarHttpContext,
|
|
2829
|
-
body:
|
|
2829
|
+
body: saveDownloadLayerDto,
|
|
2830
2830
|
responseType: responseType_,
|
|
2831
2831
|
...(withCredentials ? { withCredentials } : {}),
|
|
2832
2832
|
headers: localVarHeaders,
|
|
@@ -2835,10 +2835,10 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2835
2835
|
reportProgress: reportProgress,
|
|
2836
2836
|
});
|
|
2837
2837
|
}
|
|
2838
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2839
|
-
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" });
|
|
2840
2840
|
}
|
|
2841
|
-
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: [{
|
|
2842
2842
|
type: Injectable,
|
|
2843
2843
|
args: [{
|
|
2844
2844
|
providedIn: "root",
|
|
@@ -3070,10 +3070,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3070
3070
|
reportProgress: reportProgress,
|
|
3071
3071
|
});
|
|
3072
3072
|
}
|
|
3073
|
-
|
|
3073
|
+
validationsRemoveValidationLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3074
3074
|
const validationLayerId = requestParameters?.validationLayerId;
|
|
3075
3075
|
if (validationLayerId === null || validationLayerId === undefined) {
|
|
3076
|
-
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.");
|
|
3077
3077
|
}
|
|
3078
3078
|
let localVarHeaders = this.defaultHeaders;
|
|
3079
3079
|
// authentication (Bearer) required
|
|
@@ -3202,10 +3202,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3202
3202
|
reportProgress: reportProgress,
|
|
3203
3203
|
});
|
|
3204
3204
|
}
|
|
3205
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3206
|
-
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" });
|
|
3207
3207
|
}
|
|
3208
|
-
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: [{
|
|
3209
3209
|
type: Injectable,
|
|
3210
3210
|
args: [{
|
|
3211
3211
|
providedIn: "root",
|
|
@@ -3491,10 +3491,90 @@ class ControllerProgramsApiService extends BaseService {
|
|
|
3491
3491
|
reportProgress: reportProgress,
|
|
3492
3492
|
});
|
|
3493
3493
|
}
|
|
3494
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3495
|
-
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" });
|
|
3496
|
+
}
|
|
3497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, decorators: [{
|
|
3498
|
+
type: Injectable,
|
|
3499
|
+
args: [{
|
|
3500
|
+
providedIn: "root",
|
|
3501
|
+
}]
|
|
3502
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
3503
|
+
type: Optional
|
|
3504
|
+
}, {
|
|
3505
|
+
type: Inject,
|
|
3506
|
+
args: [BASE_PATH]
|
|
3507
|
+
}] }, { type: Configuration, decorators: [{
|
|
3508
|
+
type: Optional
|
|
3509
|
+
}] }] });
|
|
3510
|
+
|
|
3511
|
+
/**
|
|
3512
|
+
* RenewAire CORES API
|
|
3513
|
+
*
|
|
3514
|
+
* Contact: renewaire@saritasa.com
|
|
3515
|
+
*
|
|
3516
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3517
|
+
* https://openapi-generator.tech
|
|
3518
|
+
* Do not edit the class manually.
|
|
3519
|
+
*/
|
|
3520
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
3521
|
+
class CsiApiService extends BaseService {
|
|
3522
|
+
httpClient;
|
|
3523
|
+
constructor(httpClient, basePath, configuration) {
|
|
3524
|
+
super(basePath, configuration);
|
|
3525
|
+
this.httpClient = httpClient;
|
|
3526
|
+
}
|
|
3527
|
+
csiCreateCsiItem(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3528
|
+
const searchBombDto = requestParameters?.searchBombDto;
|
|
3529
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3530
|
+
// authentication (Bearer) required
|
|
3531
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
3532
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
3533
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3534
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
3535
|
+
}
|
|
3536
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3537
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3538
|
+
// to determine the Content-Type header
|
|
3539
|
+
const consumes = [
|
|
3540
|
+
"application/json-patch+json",
|
|
3541
|
+
"application/json",
|
|
3542
|
+
"text/json",
|
|
3543
|
+
"application/*+json",
|
|
3544
|
+
];
|
|
3545
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3546
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3547
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
3548
|
+
}
|
|
3549
|
+
let responseType_ = "json";
|
|
3550
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3551
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
3552
|
+
responseType_ = "text";
|
|
3553
|
+
}
|
|
3554
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3555
|
+
responseType_ = "json";
|
|
3556
|
+
}
|
|
3557
|
+
else {
|
|
3558
|
+
responseType_ = "blob";
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
let localVarPath = `/api/csi/item`;
|
|
3562
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3563
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
3564
|
+
context: localVarHttpContext,
|
|
3565
|
+
body: searchBombDto,
|
|
3566
|
+
responseType: responseType_,
|
|
3567
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3568
|
+
headers: localVarHeaders,
|
|
3569
|
+
observe: observe,
|
|
3570
|
+
transferCache: localVarTransferCache,
|
|
3571
|
+
reportProgress: reportProgress,
|
|
3572
|
+
});
|
|
3573
|
+
}
|
|
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" });
|
|
3496
3576
|
}
|
|
3497
|
-
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: [{
|
|
3498
3578
|
type: Injectable,
|
|
3499
3579
|
args: [{
|
|
3500
3580
|
providedIn: "root",
|
|
@@ -3619,10 +3699,10 @@ class FeedbacksApiService extends BaseService {
|
|
|
3619
3699
|
reportProgress: reportProgress,
|
|
3620
3700
|
});
|
|
3621
3701
|
}
|
|
3622
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3623
|
-
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" });
|
|
3624
3704
|
}
|
|
3625
|
-
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: [{
|
|
3626
3706
|
type: Injectable,
|
|
3627
3707
|
args: [{
|
|
3628
3708
|
providedIn: "root",
|
|
@@ -3922,10 +4002,10 @@ class GroupsApiService extends BaseService {
|
|
|
3922
4002
|
reportProgress: reportProgress,
|
|
3923
4003
|
});
|
|
3924
4004
|
}
|
|
3925
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3926
|
-
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" });
|
|
3927
4007
|
}
|
|
3928
|
-
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: [{
|
|
3929
4009
|
type: Injectable,
|
|
3930
4010
|
args: [{
|
|
3931
4011
|
providedIn: "root",
|
|
@@ -4158,10 +4238,10 @@ class KnownContactsApiService extends BaseService {
|
|
|
4158
4238
|
reportProgress: reportProgress,
|
|
4159
4239
|
});
|
|
4160
4240
|
}
|
|
4161
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4162
|
-
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" });
|
|
4163
4243
|
}
|
|
4164
|
-
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: [{
|
|
4165
4245
|
type: Injectable,
|
|
4166
4246
|
args: [{
|
|
4167
4247
|
providedIn: "root",
|
|
@@ -4335,10 +4415,10 @@ class LeadTimesApiService extends BaseService {
|
|
|
4335
4415
|
reportProgress: reportProgress,
|
|
4336
4416
|
});
|
|
4337
4417
|
}
|
|
4338
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4339
|
-
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" });
|
|
4340
4420
|
}
|
|
4341
|
-
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: [{
|
|
4342
4422
|
type: Injectable,
|
|
4343
4423
|
args: [{
|
|
4344
4424
|
providedIn: "root",
|
|
@@ -4404,10 +4484,10 @@ class MaintenanceApiService extends BaseService {
|
|
|
4404
4484
|
reportProgress: reportProgress,
|
|
4405
4485
|
});
|
|
4406
4486
|
}
|
|
4407
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4408
|
-
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" });
|
|
4409
4489
|
}
|
|
4410
|
-
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: [{
|
|
4411
4491
|
type: Injectable,
|
|
4412
4492
|
args: [{
|
|
4413
4493
|
providedIn: "root",
|
|
@@ -4486,10 +4566,10 @@ class PartsApiService extends BaseService {
|
|
|
4486
4566
|
reportProgress: reportProgress,
|
|
4487
4567
|
});
|
|
4488
4568
|
}
|
|
4489
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4490
|
-
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" });
|
|
4491
4571
|
}
|
|
4492
|
-
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: [{
|
|
4493
4573
|
type: Injectable,
|
|
4494
4574
|
args: [{
|
|
4495
4575
|
providedIn: "root",
|
|
@@ -4766,10 +4846,10 @@ class PermissionBundlesApiService extends BaseService {
|
|
|
4766
4846
|
reportProgress: reportProgress,
|
|
4767
4847
|
});
|
|
4768
4848
|
}
|
|
4769
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4770
|
-
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" });
|
|
4771
4851
|
}
|
|
4772
|
-
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: [{
|
|
4773
4853
|
type: Injectable,
|
|
4774
4854
|
args: [{
|
|
4775
4855
|
providedIn: "root",
|
|
@@ -4838,10 +4918,10 @@ class PermissionsApiService extends BaseService {
|
|
|
4838
4918
|
reportProgress: reportProgress,
|
|
4839
4919
|
});
|
|
4840
4920
|
}
|
|
4841
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4842
|
-
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" });
|
|
4843
4923
|
}
|
|
4844
|
-
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: [{
|
|
4845
4925
|
type: Injectable,
|
|
4846
4926
|
args: [{
|
|
4847
4927
|
providedIn: "root",
|
|
@@ -4923,10 +5003,10 @@ class PricingApiService extends BaseService {
|
|
|
4923
5003
|
reportProgress: reportProgress,
|
|
4924
5004
|
});
|
|
4925
5005
|
}
|
|
4926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4927
|
-
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" });
|
|
4928
5008
|
}
|
|
4929
|
-
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: [{
|
|
4930
5010
|
type: Injectable,
|
|
4931
5011
|
args: [{
|
|
4932
5012
|
providedIn: "root",
|
|
@@ -5181,10 +5261,10 @@ class ProjectBidStatusesApiService extends BaseService {
|
|
|
5181
5261
|
reportProgress: reportProgress,
|
|
5182
5262
|
});
|
|
5183
5263
|
}
|
|
5184
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5185
|
-
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" });
|
|
5186
5266
|
}
|
|
5187
|
-
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: [{
|
|
5188
5268
|
type: Injectable,
|
|
5189
5269
|
args: [{
|
|
5190
5270
|
providedIn: "root",
|
|
@@ -5490,10 +5570,10 @@ class ProjectDiscountsApiService extends BaseService {
|
|
|
5490
5570
|
reportProgress: reportProgress,
|
|
5491
5571
|
});
|
|
5492
5572
|
}
|
|
5493
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5494
|
-
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" });
|
|
5495
5575
|
}
|
|
5496
|
-
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: [{
|
|
5497
5577
|
type: Injectable,
|
|
5498
5578
|
args: [{
|
|
5499
5579
|
providedIn: "root",
|
|
@@ -5677,10 +5757,10 @@ class ProjectLinesApiService extends BaseService {
|
|
|
5677
5757
|
reportProgress: reportProgress,
|
|
5678
5758
|
});
|
|
5679
5759
|
}
|
|
5680
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5681
|
-
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" });
|
|
5682
5762
|
}
|
|
5683
|
-
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: [{
|
|
5684
5764
|
type: Injectable,
|
|
5685
5765
|
args: [{
|
|
5686
5766
|
providedIn: "root",
|
|
@@ -5903,10 +5983,10 @@ class ProjectLinksApiService extends BaseService {
|
|
|
5903
5983
|
reportProgress: reportProgress,
|
|
5904
5984
|
});
|
|
5905
5985
|
}
|
|
5906
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5907
|
-
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" });
|
|
5908
5988
|
}
|
|
5909
|
-
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: [{
|
|
5910
5990
|
type: Injectable,
|
|
5911
5991
|
args: [{
|
|
5912
5992
|
providedIn: "root",
|
|
@@ -6220,10 +6300,10 @@ class ProjectNotesApiService extends BaseService {
|
|
|
6220
6300
|
reportProgress: reportProgress,
|
|
6221
6301
|
});
|
|
6222
6302
|
}
|
|
6223
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6224
|
-
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" });
|
|
6225
6305
|
}
|
|
6226
|
-
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: [{
|
|
6227
6307
|
type: Injectable,
|
|
6228
6308
|
args: [{
|
|
6229
6309
|
providedIn: "root",
|
|
@@ -6439,10 +6519,10 @@ class ProjectQualifiedSpecificationsApiService extends BaseService {
|
|
|
6439
6519
|
reportProgress: reportProgress,
|
|
6440
6520
|
});
|
|
6441
6521
|
}
|
|
6442
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6443
|
-
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" });
|
|
6444
6524
|
}
|
|
6445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, decorators: [{
|
|
6446
6526
|
type: Injectable,
|
|
6447
6527
|
args: [{
|
|
6448
6528
|
providedIn: "root",
|
|
@@ -6851,10 +6931,10 @@ class ProjectRevisionsApiService extends BaseService {
|
|
|
6851
6931
|
reportProgress: reportProgress,
|
|
6852
6932
|
});
|
|
6853
6933
|
}
|
|
6854
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6855
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
6934
|
+
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 });
|
|
6935
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectRevisionsApiService, providedIn: "root" });
|
|
6856
6936
|
}
|
|
6857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectRevisionsApiService, decorators: [{
|
|
6858
6938
|
type: Injectable,
|
|
6859
6939
|
args: [{
|
|
6860
6940
|
providedIn: "root",
|
|
@@ -7064,10 +7144,10 @@ class ProjectSharingApiService extends BaseService {
|
|
|
7064
7144
|
reportProgress: reportProgress,
|
|
7065
7145
|
});
|
|
7066
7146
|
}
|
|
7067
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7068
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7147
|
+
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 });
|
|
7148
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSharingApiService, providedIn: "root" });
|
|
7069
7149
|
}
|
|
7070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSharingApiService, decorators: [{
|
|
7071
7151
|
type: Injectable,
|
|
7072
7152
|
args: [{
|
|
7073
7153
|
providedIn: "root",
|
|
@@ -7335,10 +7415,10 @@ class ProjectShippingApiService extends BaseService {
|
|
|
7335
7415
|
reportProgress: reportProgress,
|
|
7336
7416
|
});
|
|
7337
7417
|
}
|
|
7338
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7339
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7418
|
+
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 });
|
|
7419
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectShippingApiService, providedIn: "root" });
|
|
7340
7420
|
}
|
|
7341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectShippingApiService, decorators: [{
|
|
7342
7422
|
type: Injectable,
|
|
7343
7423
|
args: [{
|
|
7344
7424
|
providedIn: "root",
|
|
@@ -7417,10 +7497,10 @@ class ProjectSoldToApiService extends BaseService {
|
|
|
7417
7497
|
reportProgress: reportProgress,
|
|
7418
7498
|
});
|
|
7419
7499
|
}
|
|
7420
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7421
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7500
|
+
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 });
|
|
7501
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSoldToApiService, providedIn: "root" });
|
|
7422
7502
|
}
|
|
7423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectSoldToApiService, decorators: [{
|
|
7424
7504
|
type: Injectable,
|
|
7425
7505
|
args: [{
|
|
7426
7506
|
providedIn: "root",
|
|
@@ -7786,10 +7866,10 @@ class ProjectStatusesApiService extends BaseService {
|
|
|
7786
7866
|
reportProgress: reportProgress,
|
|
7787
7867
|
});
|
|
7788
7868
|
}
|
|
7789
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7790
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7869
|
+
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 });
|
|
7870
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectStatusesApiService, providedIn: "root" });
|
|
7791
7871
|
}
|
|
7792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectStatusesApiService, decorators: [{
|
|
7793
7873
|
type: Injectable,
|
|
7794
7874
|
args: [{
|
|
7795
7875
|
providedIn: "root",
|
|
@@ -8216,10 +8296,10 @@ class ProjectsApiService extends BaseService {
|
|
|
8216
8296
|
reportProgress: reportProgress,
|
|
8217
8297
|
});
|
|
8218
8298
|
}
|
|
8219
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8220
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8299
|
+
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 });
|
|
8300
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectsApiService, providedIn: "root" });
|
|
8221
8301
|
}
|
|
8222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectsApiService, decorators: [{
|
|
8223
8303
|
type: Injectable,
|
|
8224
8304
|
args: [{
|
|
8225
8305
|
providedIn: "root",
|
|
@@ -8306,10 +8386,10 @@ class RegionsApiService extends BaseService {
|
|
|
8306
8386
|
reportProgress: reportProgress,
|
|
8307
8387
|
});
|
|
8308
8388
|
}
|
|
8309
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8310
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8389
|
+
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 });
|
|
8390
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RegionsApiService, providedIn: "root" });
|
|
8311
8391
|
}
|
|
8312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RegionsApiService, decorators: [{
|
|
8313
8393
|
type: Injectable,
|
|
8314
8394
|
args: [{
|
|
8315
8395
|
providedIn: "root",
|
|
@@ -8550,10 +8630,10 @@ class RepContactsApiService extends BaseService {
|
|
|
8550
8630
|
reportProgress: reportProgress,
|
|
8551
8631
|
});
|
|
8552
8632
|
}
|
|
8553
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8554
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8633
|
+
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 });
|
|
8634
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepContactsApiService, providedIn: "root" });
|
|
8555
8635
|
}
|
|
8556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepContactsApiService, decorators: [{
|
|
8557
8637
|
type: Injectable,
|
|
8558
8638
|
args: [{
|
|
8559
8639
|
providedIn: "root",
|
|
@@ -8807,10 +8887,10 @@ class RepSalesReportsApiService extends BaseService {
|
|
|
8807
8887
|
reportProgress: reportProgress,
|
|
8808
8888
|
});
|
|
8809
8889
|
}
|
|
8810
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8811
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
8890
|
+
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 });
|
|
8891
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepSalesReportsApiService, providedIn: "root" });
|
|
8812
8892
|
}
|
|
8813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepSalesReportsApiService, decorators: [{
|
|
8814
8894
|
type: Injectable,
|
|
8815
8895
|
args: [{
|
|
8816
8896
|
providedIn: "root",
|
|
@@ -9614,10 +9694,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
9614
9694
|
reportProgress: reportProgress,
|
|
9615
9695
|
});
|
|
9616
9696
|
}
|
|
9617
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9618
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
9697
|
+
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 });
|
|
9698
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoriesApiService, providedIn: "root" });
|
|
9619
9699
|
}
|
|
9620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoriesApiService, decorators: [{
|
|
9621
9701
|
type: Injectable,
|
|
9622
9702
|
args: [{
|
|
9623
9703
|
providedIn: "root",
|
|
@@ -9858,10 +9938,10 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
9858
9938
|
reportProgress: reportProgress,
|
|
9859
9939
|
});
|
|
9860
9940
|
}
|
|
9861
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9862
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
9941
|
+
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 });
|
|
9942
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoryLocationsApiService, providedIn: "root" });
|
|
9863
9943
|
}
|
|
9864
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RepTerritoryLocationsApiService, decorators: [{
|
|
9865
9945
|
type: Injectable,
|
|
9866
9946
|
args: [{
|
|
9867
9947
|
providedIn: "root",
|
|
@@ -10413,10 +10493,10 @@ class RsdRegionsApiService extends BaseService {
|
|
|
10413
10493
|
reportProgress: reportProgress,
|
|
10414
10494
|
});
|
|
10415
10495
|
}
|
|
10416
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10417
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10496
|
+
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 });
|
|
10497
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RsdRegionsApiService, providedIn: "root" });
|
|
10418
10498
|
}
|
|
10419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RsdRegionsApiService, decorators: [{
|
|
10420
10500
|
type: Injectable,
|
|
10421
10501
|
args: [{
|
|
10422
10502
|
providedIn: "root",
|
|
@@ -10498,10 +10578,10 @@ class S3ApiService extends BaseService {
|
|
|
10498
10578
|
reportProgress: reportProgress,
|
|
10499
10579
|
});
|
|
10500
10580
|
}
|
|
10501
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10502
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10581
|
+
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 });
|
|
10582
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: S3ApiService, providedIn: "root" });
|
|
10503
10583
|
}
|
|
10504
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: S3ApiService, decorators: [{
|
|
10505
10585
|
type: Injectable,
|
|
10506
10586
|
args: [{
|
|
10507
10587
|
providedIn: "root",
|
|
@@ -10567,10 +10647,10 @@ class StaticFilesApiService extends BaseService {
|
|
|
10567
10647
|
reportProgress: reportProgress,
|
|
10568
10648
|
});
|
|
10569
10649
|
}
|
|
10570
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10571
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10650
|
+
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 });
|
|
10651
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: StaticFilesApiService, providedIn: "root" });
|
|
10572
10652
|
}
|
|
10573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: StaticFilesApiService, decorators: [{
|
|
10574
10654
|
type: Injectable,
|
|
10575
10655
|
args: [{
|
|
10576
10656
|
providedIn: "root",
|
|
@@ -10733,10 +10813,10 @@ class UserTablesApiService extends BaseService {
|
|
|
10733
10813
|
reportProgress: reportProgress,
|
|
10734
10814
|
});
|
|
10735
10815
|
}
|
|
10736
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10737
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10816
|
+
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 });
|
|
10817
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UserTablesApiService, providedIn: "root" });
|
|
10738
10818
|
}
|
|
10739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UserTablesApiService, decorators: [{
|
|
10740
10820
|
type: Injectable,
|
|
10741
10821
|
args: [{
|
|
10742
10822
|
providedIn: "root",
|
|
@@ -12162,10 +12242,10 @@ class UsersApiService extends BaseService {
|
|
|
12162
12242
|
reportProgress: reportProgress,
|
|
12163
12243
|
});
|
|
12164
12244
|
}
|
|
12165
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12166
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
12245
|
+
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 });
|
|
12246
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
12167
12247
|
}
|
|
12168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersApiService, decorators: [{
|
|
12169
12249
|
type: Injectable,
|
|
12170
12250
|
args: [{
|
|
12171
12251
|
providedIn: "root",
|
|
@@ -12778,10 +12858,10 @@ class UsersManagementApiService extends BaseService {
|
|
|
12778
12858
|
reportProgress: reportProgress,
|
|
12779
12859
|
});
|
|
12780
12860
|
}
|
|
12781
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12782
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
12861
|
+
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 });
|
|
12862
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersManagementApiService, providedIn: "root" });
|
|
12783
12863
|
}
|
|
12784
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UsersManagementApiService, decorators: [{
|
|
12785
12865
|
type: Injectable,
|
|
12786
12866
|
args: [{
|
|
12787
12867
|
providedIn: "root",
|
|
@@ -12798,13 +12878,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
12798
12878
|
const APIS = [
|
|
12799
12879
|
AuditLogsApiService,
|
|
12800
12880
|
AuthApiService,
|
|
12801
|
-
|
|
12881
|
+
BombDownloadsApiService,
|
|
12802
12882
|
BombMaterialsApiService,
|
|
12803
12883
|
BombParametersApiService,
|
|
12804
12884
|
BombRoutingsApiService,
|
|
12805
12885
|
BombSchematicsApiService,
|
|
12806
12886
|
BombValidationsApiService,
|
|
12807
12887
|
ControllerProgramsApiService,
|
|
12888
|
+
CsiApiService,
|
|
12808
12889
|
FeedbacksApiService,
|
|
12809
12890
|
GroupsApiService,
|
|
12810
12891
|
KnownContactsApiService,
|
|
@@ -12891,7 +12972,7 @@ var AshraeVersion;
|
|
|
12891
12972
|
* Do not edit the class manually.
|
|
12892
12973
|
*/
|
|
12893
12974
|
/**
|
|
12894
|
-
* 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 =
|
|
12975
|
+
* 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
|
|
12895
12976
|
*/
|
|
12896
12977
|
var AuditEntity;
|
|
12897
12978
|
(function (AuditEntity) {
|
|
@@ -12908,10 +12989,9 @@ var AuditEntity;
|
|
|
12908
12989
|
AuditEntity["Project"] = "Project";
|
|
12909
12990
|
AuditEntity["ProjectLine"] = "ProjectLine";
|
|
12910
12991
|
AuditEntity["MaterialLayer"] = "MaterialLayer";
|
|
12911
|
-
AuditEntity["
|
|
12992
|
+
AuditEntity["DownloadLayer"] = "DownloadLayer";
|
|
12912
12993
|
AuditEntity["RoutingLayer"] = "RoutingLayer";
|
|
12913
12994
|
AuditEntity["ValidationLayer"] = "ValidationLayer";
|
|
12914
|
-
AuditEntity["DrawingLayer"] = "DrawingLayer";
|
|
12915
12995
|
})(AuditEntity || (AuditEntity = {}));
|
|
12916
12996
|
|
|
12917
12997
|
/**
|
|
@@ -13191,16 +13271,6 @@ var CoolingDesignBasis;
|
|
|
13191
13271
|
* Do not edit the class manually.
|
|
13192
13272
|
*/
|
|
13193
13273
|
|
|
13194
|
-
/**
|
|
13195
|
-
* RenewAire CORES API
|
|
13196
|
-
*
|
|
13197
|
-
* Contact: renewaire@saritasa.com
|
|
13198
|
-
*
|
|
13199
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13200
|
-
* https://openapi-generator.tech
|
|
13201
|
-
* Do not edit the class manually.
|
|
13202
|
-
*/
|
|
13203
|
-
|
|
13204
13274
|
/**
|
|
13205
13275
|
* RenewAire CORES API
|
|
13206
13276
|
*
|
|
@@ -13322,7 +13392,7 @@ var FeedbackType;
|
|
|
13322
13392
|
* Do not edit the class manually.
|
|
13323
13393
|
*/
|
|
13324
13394
|
/**
|
|
13325
|
-
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 =
|
|
13395
|
+
* 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
|
|
13326
13396
|
*/
|
|
13327
13397
|
var FileType;
|
|
13328
13398
|
(function (FileType) {
|
|
@@ -13331,7 +13401,7 @@ var FileType;
|
|
|
13331
13401
|
FileType["RepSalesReport"] = "RepSalesReport";
|
|
13332
13402
|
FileType["ProjectNoteAttachment"] = "ProjectNoteAttachment";
|
|
13333
13403
|
FileType["BidStatusAttachment"] = "BidStatusAttachment";
|
|
13334
|
-
FileType["
|
|
13404
|
+
FileType["DownloadLayerFile"] = "DownloadLayerFile";
|
|
13335
13405
|
FileType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
13336
13406
|
FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
|
|
13337
13407
|
FileType["DrawingLayerFile"] = "DrawingLayerFile";
|
|
@@ -13581,6 +13651,16 @@ var ModelNumberValidationErrorType;
|
|
|
13581
13651
|
* Do not edit the class manually.
|
|
13582
13652
|
*/
|
|
13583
13653
|
|
|
13654
|
+
/**
|
|
13655
|
+
* RenewAire CORES API
|
|
13656
|
+
*
|
|
13657
|
+
* Contact: renewaire@saritasa.com
|
|
13658
|
+
*
|
|
13659
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13660
|
+
* https://openapi-generator.tech
|
|
13661
|
+
* Do not edit the class manually.
|
|
13662
|
+
*/
|
|
13663
|
+
|
|
13584
13664
|
/**
|
|
13585
13665
|
* RenewAire CORES API
|
|
13586
13666
|
*
|
|
@@ -13691,7 +13771,7 @@ var ParameterType;
|
|
|
13691
13771
|
* Do not edit the class manually.
|
|
13692
13772
|
*/
|
|
13693
13773
|
/**
|
|
13694
|
-
* 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 =
|
|
13774
|
+
* 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
|
|
13695
13775
|
*/
|
|
13696
13776
|
var Permission;
|
|
13697
13777
|
(function (Permission) {
|
|
@@ -13753,7 +13833,7 @@ var Permission;
|
|
|
13753
13833
|
Permission["EditUsers"] = "EditUsers";
|
|
13754
13834
|
Permission["BombMaterialsAdmin"] = "BombMaterialsAdmin";
|
|
13755
13835
|
Permission["BombRoutingAdmin"] = "BombRoutingAdmin";
|
|
13756
|
-
Permission["
|
|
13836
|
+
Permission["BombDownloadsAdmin"] = "BombDownloadsAdmin";
|
|
13757
13837
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
13758
13838
|
Permission["AccessBomb"] = "AccessBomb";
|
|
13759
13839
|
Permission["BombDrawingsAdmin"] = "BombDrawingsAdmin";
|
|
@@ -14429,26 +14509,6 @@ var RegistrationStatus;
|
|
|
14429
14509
|
* Do not edit the class manually.
|
|
14430
14510
|
*/
|
|
14431
14511
|
|
|
14432
|
-
/**
|
|
14433
|
-
* RenewAire CORES API
|
|
14434
|
-
*
|
|
14435
|
-
* Contact: renewaire@saritasa.com
|
|
14436
|
-
*
|
|
14437
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14438
|
-
* https://openapi-generator.tech
|
|
14439
|
-
* Do not edit the class manually.
|
|
14440
|
-
*/
|
|
14441
|
-
|
|
14442
|
-
/**
|
|
14443
|
-
* RenewAire CORES API
|
|
14444
|
-
*
|
|
14445
|
-
* Contact: renewaire@saritasa.com
|
|
14446
|
-
*
|
|
14447
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14448
|
-
* https://openapi-generator.tech
|
|
14449
|
-
* Do not edit the class manually.
|
|
14450
|
-
*/
|
|
14451
|
-
|
|
14452
14512
|
/**
|
|
14453
14513
|
* RenewAire CORES API
|
|
14454
14514
|
*
|
|
@@ -14622,11 +14682,11 @@ class ApiModule {
|
|
|
14622
14682
|
"See also https://github.com/angular/angular/issues/20575");
|
|
14623
14683
|
}
|
|
14624
14684
|
}
|
|
14625
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14626
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
14627
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
14685
|
+
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 });
|
|
14686
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: ApiModule });
|
|
14687
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiModule });
|
|
14628
14688
|
}
|
|
14629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiModule, decorators: [{
|
|
14630
14690
|
type: NgModule,
|
|
14631
14691
|
args: [{
|
|
14632
14692
|
imports: [],
|
|
@@ -14658,5 +14718,5 @@ function provideApi(configOrBasePath) {
|
|
|
14658
14718
|
* Generated bundle index. Do not edit.
|
|
14659
14719
|
*/
|
|
14660
14720
|
|
|
14661
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH,
|
|
14721
|
+
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, 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 };
|
|
14662
14722
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|