@saritasa/renewaire-frontend-sdk 0.257.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 +207 -295
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +230 -442
- package/package.json +2 -2
|
@@ -375,10 +375,10 @@ class AuditLogsApiService extends BaseService {
|
|
|
375
375
|
reportProgress: reportProgress,
|
|
376
376
|
});
|
|
377
377
|
}
|
|
378
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
379
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
378
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
379
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, providedIn: "root" });
|
|
380
380
|
}
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuditLogsApiService, decorators: [{
|
|
382
382
|
type: Injectable,
|
|
383
383
|
args: [{
|
|
384
384
|
providedIn: "root",
|
|
@@ -671,10 +671,10 @@ class AuthApiService extends BaseService {
|
|
|
671
671
|
reportProgress: reportProgress,
|
|
672
672
|
});
|
|
673
673
|
}
|
|
674
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
675
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
674
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
675
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, providedIn: "root" });
|
|
676
676
|
}
|
|
677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AuthApiService, decorators: [{
|
|
678
678
|
type: Injectable,
|
|
679
679
|
args: [{
|
|
680
680
|
providedIn: "root",
|
|
@@ -698,14 +698,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
698
698
|
* Do not edit the class manually.
|
|
699
699
|
*/
|
|
700
700
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
701
|
-
class
|
|
701
|
+
class BombDownloadsApiService extends BaseService {
|
|
702
702
|
httpClient;
|
|
703
703
|
constructor(httpClient, basePath, configuration) {
|
|
704
704
|
super(basePath, configuration);
|
|
705
705
|
this.httpClient = httpClient;
|
|
706
706
|
}
|
|
707
|
-
|
|
708
|
-
const
|
|
707
|
+
downloadsCreateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
708
|
+
const createDownloadLayerCommand = requestParameters?.createDownloadLayerCommand;
|
|
709
709
|
let localVarHeaders = this.defaultHeaders;
|
|
710
710
|
// authentication (Bearer) required
|
|
711
711
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -743,11 +743,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
743
743
|
responseType_ = "blob";
|
|
744
744
|
}
|
|
745
745
|
}
|
|
746
|
-
let localVarPath = `/api/bomb/
|
|
746
|
+
let localVarPath = `/api/bomb/downloads`;
|
|
747
747
|
const { basePath, withCredentials } = this.configuration;
|
|
748
748
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
749
749
|
context: localVarHttpContext,
|
|
750
|
-
body:
|
|
750
|
+
body: createDownloadLayerCommand,
|
|
751
751
|
responseType: responseType_,
|
|
752
752
|
...(withCredentials ? { withCredentials } : {}),
|
|
753
753
|
headers: localVarHeaders,
|
|
@@ -756,10 +756,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
756
756
|
reportProgress: reportProgress,
|
|
757
757
|
});
|
|
758
758
|
}
|
|
759
|
-
|
|
760
|
-
const
|
|
761
|
-
if (
|
|
762
|
-
throw new Error("Required parameter
|
|
759
|
+
downloadsDuplicateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
760
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
761
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
762
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsDuplicateDownloadLayer.");
|
|
763
763
|
}
|
|
764
764
|
const duplicateBombLayerDto = requestParameters?.duplicateBombLayerDto;
|
|
765
765
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -799,7 +799,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
799
799
|
responseType_ = "blob";
|
|
800
800
|
}
|
|
801
801
|
}
|
|
802
|
-
let localVarPath = `/api/bomb/
|
|
802
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/duplicate`;
|
|
803
803
|
const { basePath, withCredentials } = this.configuration;
|
|
804
804
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
805
805
|
context: localVarHttpContext,
|
|
@@ -812,10 +812,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
812
812
|
reportProgress: reportProgress,
|
|
813
813
|
});
|
|
814
814
|
}
|
|
815
|
-
|
|
816
|
-
const
|
|
817
|
-
if (
|
|
818
|
-
throw new Error("Required parameter
|
|
815
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
816
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
817
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
818
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadFilePreviewUrl.");
|
|
819
819
|
}
|
|
820
820
|
let localVarHeaders = this.defaultHeaders;
|
|
821
821
|
// authentication (Bearer) required
|
|
@@ -838,7 +838,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
838
838
|
responseType_ = "blob";
|
|
839
839
|
}
|
|
840
840
|
}
|
|
841
|
-
let localVarPath = `/api/bomb/
|
|
841
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/preview-url`;
|
|
842
842
|
const { basePath, withCredentials } = this.configuration;
|
|
843
843
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
844
844
|
context: localVarHttpContext,
|
|
@@ -850,15 +850,20 @@ class BombDrawingsApiService extends BaseService {
|
|
|
850
850
|
reportProgress: reportProgress,
|
|
851
851
|
});
|
|
852
852
|
}
|
|
853
|
-
|
|
854
|
-
const
|
|
855
|
-
if (
|
|
856
|
-
throw new Error("Required parameter
|
|
853
|
+
downloadsGetDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
854
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
855
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
856
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadLayer.");
|
|
857
857
|
}
|
|
858
858
|
let localVarHeaders = this.defaultHeaders;
|
|
859
859
|
// authentication (Bearer) required
|
|
860
860
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
861
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
861
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
862
|
+
this.configuration.selectHeaderAccept([
|
|
863
|
+
"text/plain",
|
|
864
|
+
"application/json",
|
|
865
|
+
"text/json",
|
|
866
|
+
]);
|
|
862
867
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
863
868
|
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
864
869
|
}
|
|
@@ -876,7 +881,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
876
881
|
responseType_ = "blob";
|
|
877
882
|
}
|
|
878
883
|
}
|
|
879
|
-
let localVarPath = `/api/bomb/
|
|
884
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
880
885
|
const { basePath, withCredentials } = this.configuration;
|
|
881
886
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
882
887
|
context: localVarHttpContext,
|
|
@@ -888,20 +893,15 @@ class BombDrawingsApiService extends BaseService {
|
|
|
888
893
|
reportProgress: reportProgress,
|
|
889
894
|
});
|
|
890
895
|
}
|
|
891
|
-
|
|
892
|
-
const
|
|
893
|
-
if (
|
|
894
|
-
throw new Error("Required parameter
|
|
896
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
897
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
898
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
899
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsGetDownloadLayerFileDownloadUrl.");
|
|
895
900
|
}
|
|
896
901
|
let localVarHeaders = this.defaultHeaders;
|
|
897
902
|
// authentication (Bearer) required
|
|
898
903
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
899
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
900
|
-
this.configuration.selectHeaderAccept([
|
|
901
|
-
"text/plain",
|
|
902
|
-
"application/json",
|
|
903
|
-
"text/json",
|
|
904
|
-
]);
|
|
904
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
905
905
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
906
906
|
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
907
907
|
}
|
|
@@ -919,7 +919,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
919
919
|
responseType_ = "blob";
|
|
920
920
|
}
|
|
921
921
|
}
|
|
922
|
-
let localVarPath = `/api/bomb/
|
|
922
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/download-url`;
|
|
923
923
|
const { basePath, withCredentials } = this.configuration;
|
|
924
924
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
925
925
|
context: localVarHttpContext,
|
|
@@ -931,12 +931,12 @@ class BombDrawingsApiService extends BaseService {
|
|
|
931
931
|
reportProgress: reportProgress,
|
|
932
932
|
});
|
|
933
933
|
}
|
|
934
|
-
|
|
935
|
-
const
|
|
936
|
-
if (
|
|
937
|
-
throw new Error("Required parameter
|
|
934
|
+
downloadsMoveDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
935
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
936
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
937
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsMoveDownloadLayer.");
|
|
938
938
|
}
|
|
939
|
-
const
|
|
939
|
+
const downloadLayerIdMoveLayerDto = requestParameters?.downloadLayerIdMoveLayerDto;
|
|
940
940
|
let localVarHeaders = this.defaultHeaders;
|
|
941
941
|
// authentication (Bearer) required
|
|
942
942
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -969,11 +969,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
969
969
|
responseType_ = "blob";
|
|
970
970
|
}
|
|
971
971
|
}
|
|
972
|
-
let localVarPath = `/api/bomb/
|
|
972
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/move`;
|
|
973
973
|
const { basePath, withCredentials } = this.configuration;
|
|
974
974
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
975
975
|
context: localVarHttpContext,
|
|
976
|
-
body:
|
|
976
|
+
body: downloadLayerIdMoveLayerDto,
|
|
977
977
|
responseType: responseType_,
|
|
978
978
|
...(withCredentials ? { withCredentials } : {}),
|
|
979
979
|
headers: localVarHeaders,
|
|
@@ -982,10 +982,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
982
982
|
reportProgress: reportProgress,
|
|
983
983
|
});
|
|
984
984
|
}
|
|
985
|
-
|
|
986
|
-
const
|
|
987
|
-
if (
|
|
988
|
-
throw new Error("Required parameter
|
|
985
|
+
downloadsRemoveDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
986
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
987
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
988
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsRemoveDownloadLayer.");
|
|
989
989
|
}
|
|
990
990
|
let localVarHeaders = this.defaultHeaders;
|
|
991
991
|
// authentication (Bearer) required
|
|
@@ -1008,7 +1008,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1008
1008
|
responseType_ = "blob";
|
|
1009
1009
|
}
|
|
1010
1010
|
}
|
|
1011
|
-
let localVarPath = `/api/bomb/
|
|
1011
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
1012
1012
|
const { basePath, withCredentials } = this.configuration;
|
|
1013
1013
|
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
1014
1014
|
context: localVarHttpContext,
|
|
@@ -1020,10 +1020,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1020
1020
|
reportProgress: reportProgress,
|
|
1021
1021
|
});
|
|
1022
1022
|
}
|
|
1023
|
-
|
|
1024
|
-
const
|
|
1023
|
+
downloadsSearchDownloadLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1024
|
+
const parentDownloadLayerId = requestParameters?.parentDownloadLayerId;
|
|
1025
1025
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1026
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
1026
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentDownloadLayerId, "ParentDownloadLayerId");
|
|
1027
1027
|
let localVarHeaders = this.defaultHeaders;
|
|
1028
1028
|
// authentication (Bearer) required
|
|
1029
1029
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -1050,7 +1050,7 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1050
1050
|
responseType_ = "blob";
|
|
1051
1051
|
}
|
|
1052
1052
|
}
|
|
1053
|
-
let localVarPath = `/api/bomb/
|
|
1053
|
+
let localVarPath = `/api/bomb/downloads`;
|
|
1054
1054
|
const { basePath, withCredentials } = this.configuration;
|
|
1055
1055
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1056
1056
|
context: localVarHttpContext,
|
|
@@ -1063,12 +1063,12 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1063
1063
|
reportProgress: reportProgress,
|
|
1064
1064
|
});
|
|
1065
1065
|
}
|
|
1066
|
-
|
|
1067
|
-
const
|
|
1068
|
-
if (
|
|
1069
|
-
throw new Error("Required parameter
|
|
1066
|
+
downloadsUpdateDownloadLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1067
|
+
const downloadLayerId = requestParameters?.downloadLayerId;
|
|
1068
|
+
if (downloadLayerId === null || downloadLayerId === undefined) {
|
|
1069
|
+
throw new Error("Required parameter downloadLayerId was null or undefined when calling downloadsUpdateDownloadLayer.");
|
|
1070
1070
|
}
|
|
1071
|
-
const
|
|
1071
|
+
const saveDownloadLayerDto = requestParameters?.saveDownloadLayerDto;
|
|
1072
1072
|
let localVarHeaders = this.defaultHeaders;
|
|
1073
1073
|
// authentication (Bearer) required
|
|
1074
1074
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -1101,11 +1101,11 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1101
1101
|
responseType_ = "blob";
|
|
1102
1102
|
}
|
|
1103
1103
|
}
|
|
1104
|
-
let localVarPath = `/api/bomb/
|
|
1104
|
+
let localVarPath = `/api/bomb/downloads/${this.configuration.encodeParam({ name: "downloadLayerId", value: downloadLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
1105
1105
|
const { basePath, withCredentials } = this.configuration;
|
|
1106
1106
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
1107
1107
|
context: localVarHttpContext,
|
|
1108
|
-
body:
|
|
1108
|
+
body: saveDownloadLayerDto,
|
|
1109
1109
|
responseType: responseType_,
|
|
1110
1110
|
...(withCredentials ? { withCredentials } : {}),
|
|
1111
1111
|
headers: localVarHeaders,
|
|
@@ -1114,10 +1114,10 @@ class BombDrawingsApiService extends BaseService {
|
|
|
1114
1114
|
reportProgress: reportProgress,
|
|
1115
1115
|
});
|
|
1116
1116
|
}
|
|
1117
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1118
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1117
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1118
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, providedIn: "root" });
|
|
1119
1119
|
}
|
|
1120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombDownloadsApiService, decorators: [{
|
|
1121
1121
|
type: Injectable,
|
|
1122
1122
|
args: [{
|
|
1123
1123
|
providedIn: "root",
|
|
@@ -1481,10 +1481,10 @@ class BombMaterialsApiService extends BaseService {
|
|
|
1481
1481
|
reportProgress: reportProgress,
|
|
1482
1482
|
});
|
|
1483
1483
|
}
|
|
1484
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1485
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1484
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1485
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, providedIn: "root" });
|
|
1486
1486
|
}
|
|
1487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombMaterialsApiService, decorators: [{
|
|
1488
1488
|
type: Injectable,
|
|
1489
1489
|
args: [{
|
|
1490
1490
|
providedIn: "root",
|
|
@@ -1745,14 +1745,14 @@ class BombParametersApiService extends BaseService {
|
|
|
1745
1745
|
reportProgress: reportProgress,
|
|
1746
1746
|
});
|
|
1747
1747
|
}
|
|
1748
|
-
|
|
1748
|
+
modelParametersSearchModelDownloadLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1749
1749
|
const modelNumber = requestParameters?.modelNumber;
|
|
1750
1750
|
if (modelNumber === null || modelNumber === undefined) {
|
|
1751
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling
|
|
1751
|
+
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchModelDownloadLayers.");
|
|
1752
1752
|
}
|
|
1753
1753
|
const buildDate = requestParameters?.buildDate;
|
|
1754
1754
|
if (buildDate === null || buildDate === undefined) {
|
|
1755
|
-
throw new Error("Required parameter buildDate was null or undefined when calling
|
|
1755
|
+
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchModelDownloadLayers.");
|
|
1756
1756
|
}
|
|
1757
1757
|
const modelParameters = requestParameters?.modelParameters;
|
|
1758
1758
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
@@ -1789,64 +1789,7 @@ class BombParametersApiService extends BaseService {
|
|
|
1789
1789
|
responseType_ = "blob";
|
|
1790
1790
|
}
|
|
1791
1791
|
}
|
|
1792
|
-
let localVarPath = `/api/bomb/model-parameters/
|
|
1793
|
-
const { basePath, withCredentials } = this.configuration;
|
|
1794
|
-
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1795
|
-
context: localVarHttpContext,
|
|
1796
|
-
params: localVarQueryParameters,
|
|
1797
|
-
responseType: responseType_,
|
|
1798
|
-
...(withCredentials ? { withCredentials } : {}),
|
|
1799
|
-
headers: localVarHeaders,
|
|
1800
|
-
observe: observe,
|
|
1801
|
-
transferCache: localVarTransferCache,
|
|
1802
|
-
reportProgress: reportProgress,
|
|
1803
|
-
});
|
|
1804
|
-
}
|
|
1805
|
-
modelParametersSearchModelSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1806
|
-
const modelNumber = requestParameters?.modelNumber;
|
|
1807
|
-
if (modelNumber === null || modelNumber === undefined) {
|
|
1808
|
-
throw new Error("Required parameter modelNumber was null or undefined when calling modelParametersSearchModelSchematicLayers.");
|
|
1809
|
-
}
|
|
1810
|
-
const buildDate = requestParameters?.buildDate;
|
|
1811
|
-
if (buildDate === null || buildDate === undefined) {
|
|
1812
|
-
throw new Error("Required parameter buildDate was null or undefined when calling modelParametersSearchModelSchematicLayers.");
|
|
1813
|
-
}
|
|
1814
|
-
const modelParameters = requestParameters?.modelParameters;
|
|
1815
|
-
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1816
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, modelNumber, "ModelNumber");
|
|
1817
|
-
if (modelParameters) {
|
|
1818
|
-
modelParameters.forEach((element) => {
|
|
1819
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, element, "ModelParameters");
|
|
1820
|
-
});
|
|
1821
|
-
}
|
|
1822
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, buildDate, "BuildDate");
|
|
1823
|
-
let localVarHeaders = this.defaultHeaders;
|
|
1824
|
-
// authentication (Bearer) required
|
|
1825
|
-
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1826
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1827
|
-
this.configuration.selectHeaderAccept([
|
|
1828
|
-
"text/plain",
|
|
1829
|
-
"application/json",
|
|
1830
|
-
"text/json",
|
|
1831
|
-
]);
|
|
1832
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1833
|
-
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1834
|
-
}
|
|
1835
|
-
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1836
|
-
const localVarTransferCache = options?.transferCache ?? true;
|
|
1837
|
-
let responseType_ = "json";
|
|
1838
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
1839
|
-
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1840
|
-
responseType_ = "text";
|
|
1841
|
-
}
|
|
1842
|
-
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1843
|
-
responseType_ = "json";
|
|
1844
|
-
}
|
|
1845
|
-
else {
|
|
1846
|
-
responseType_ = "blob";
|
|
1847
|
-
}
|
|
1848
|
-
}
|
|
1849
|
-
let localVarPath = `/api/bomb/model-parameters/schematics`;
|
|
1792
|
+
let localVarPath = `/api/bomb/model-parameters/downloads`;
|
|
1850
1793
|
const { basePath, withCredentials } = this.configuration;
|
|
1851
1794
|
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1852
1795
|
context: localVarHttpContext,
|
|
@@ -2082,10 +2025,10 @@ class BombParametersApiService extends BaseService {
|
|
|
2082
2025
|
reportProgress: reportProgress,
|
|
2083
2026
|
});
|
|
2084
2027
|
}
|
|
2085
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2086
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2028
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2029
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, providedIn: "root" });
|
|
2087
2030
|
}
|
|
2088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombParametersApiService, decorators: [{
|
|
2089
2032
|
type: Injectable,
|
|
2090
2033
|
args: [{
|
|
2091
2034
|
providedIn: "root",
|
|
@@ -2449,10 +2392,10 @@ class BombRoutingsApiService extends BaseService {
|
|
|
2449
2392
|
reportProgress: reportProgress,
|
|
2450
2393
|
});
|
|
2451
2394
|
}
|
|
2452
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2453
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2395
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2396
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, providedIn: "root" });
|
|
2454
2397
|
}
|
|
2455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombRoutingsApiService, decorators: [{
|
|
2456
2399
|
type: Injectable,
|
|
2457
2400
|
args: [{
|
|
2458
2401
|
providedIn: "root",
|
|
@@ -2483,7 +2426,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2483
2426
|
this.httpClient = httpClient;
|
|
2484
2427
|
}
|
|
2485
2428
|
schematicsCreateSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2486
|
-
const
|
|
2429
|
+
const createDownloadLayerCommand = requestParameters?.createDownloadLayerCommand;
|
|
2487
2430
|
let localVarHeaders = this.defaultHeaders;
|
|
2488
2431
|
// authentication (Bearer) required
|
|
2489
2432
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2525,7 +2468,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2525
2468
|
const { basePath, withCredentials } = this.configuration;
|
|
2526
2469
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2527
2470
|
context: localVarHttpContext,
|
|
2528
|
-
body:
|
|
2471
|
+
body: createDownloadLayerCommand,
|
|
2529
2472
|
responseType: responseType_,
|
|
2530
2473
|
...(withCredentials ? { withCredentials } : {}),
|
|
2531
2474
|
headers: localVarHeaders,
|
|
@@ -2714,7 +2657,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2714
2657
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2715
2658
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsMoveSchematicLayer.");
|
|
2716
2659
|
}
|
|
2717
|
-
const
|
|
2660
|
+
const downloadLayerIdMoveLayerDto = requestParameters?.downloadLayerIdMoveLayerDto;
|
|
2718
2661
|
let localVarHeaders = this.defaultHeaders;
|
|
2719
2662
|
// authentication (Bearer) required
|
|
2720
2663
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2751,7 +2694,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2751
2694
|
const { basePath, withCredentials } = this.configuration;
|
|
2752
2695
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2753
2696
|
context: localVarHttpContext,
|
|
2754
|
-
body:
|
|
2697
|
+
body: downloadLayerIdMoveLayerDto,
|
|
2755
2698
|
responseType: responseType_,
|
|
2756
2699
|
...(withCredentials ? { withCredentials } : {}),
|
|
2757
2700
|
headers: localVarHeaders,
|
|
@@ -2799,9 +2742,9 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2799
2742
|
});
|
|
2800
2743
|
}
|
|
2801
2744
|
schematicsSearchSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2802
|
-
const
|
|
2745
|
+
const parentDownloadLayerId = requestParameters?.parentDownloadLayerId;
|
|
2803
2746
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2804
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
2747
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentDownloadLayerId, "ParentDownloadLayerId");
|
|
2805
2748
|
let localVarHeaders = this.defaultHeaders;
|
|
2806
2749
|
// authentication (Bearer) required
|
|
2807
2750
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2846,7 +2789,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2846
2789
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
2847
2790
|
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsUpdateSchematicLayer.");
|
|
2848
2791
|
}
|
|
2849
|
-
const
|
|
2792
|
+
const saveDownloadLayerDto = requestParameters?.saveDownloadLayerDto;
|
|
2850
2793
|
let localVarHeaders = this.defaultHeaders;
|
|
2851
2794
|
// authentication (Bearer) required
|
|
2852
2795
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -2883,7 +2826,7 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2883
2826
|
const { basePath, withCredentials } = this.configuration;
|
|
2884
2827
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
2885
2828
|
context: localVarHttpContext,
|
|
2886
|
-
body:
|
|
2829
|
+
body: saveDownloadLayerDto,
|
|
2887
2830
|
responseType: responseType_,
|
|
2888
2831
|
...(withCredentials ? { withCredentials } : {}),
|
|
2889
2832
|
headers: localVarHeaders,
|
|
@@ -2892,10 +2835,10 @@ class BombSchematicsApiService extends BaseService {
|
|
|
2892
2835
|
reportProgress: reportProgress,
|
|
2893
2836
|
});
|
|
2894
2837
|
}
|
|
2895
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2896
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2838
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2839
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, providedIn: "root" });
|
|
2897
2840
|
}
|
|
2898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombSchematicsApiService, decorators: [{
|
|
2899
2842
|
type: Injectable,
|
|
2900
2843
|
args: [{
|
|
2901
2844
|
providedIn: "root",
|
|
@@ -3127,10 +3070,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3127
3070
|
reportProgress: reportProgress,
|
|
3128
3071
|
});
|
|
3129
3072
|
}
|
|
3130
|
-
|
|
3073
|
+
validationsRemoveValidationLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3131
3074
|
const validationLayerId = requestParameters?.validationLayerId;
|
|
3132
3075
|
if (validationLayerId === null || validationLayerId === undefined) {
|
|
3133
|
-
throw new Error("Required parameter validationLayerId was null or undefined when calling
|
|
3076
|
+
throw new Error("Required parameter validationLayerId was null or undefined when calling validationsRemoveValidationLayer.");
|
|
3134
3077
|
}
|
|
3135
3078
|
let localVarHeaders = this.defaultHeaders;
|
|
3136
3079
|
// authentication (Bearer) required
|
|
@@ -3259,10 +3202,10 @@ class BombValidationsApiService extends BaseService {
|
|
|
3259
3202
|
reportProgress: reportProgress,
|
|
3260
3203
|
});
|
|
3261
3204
|
}
|
|
3262
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3263
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3205
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3206
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, providedIn: "root" });
|
|
3264
3207
|
}
|
|
3265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: BombValidationsApiService, decorators: [{
|
|
3266
3209
|
type: Injectable,
|
|
3267
3210
|
args: [{
|
|
3268
3211
|
providedIn: "root",
|
|
@@ -3548,10 +3491,10 @@ class ControllerProgramsApiService extends BaseService {
|
|
|
3548
3491
|
reportProgress: reportProgress,
|
|
3549
3492
|
});
|
|
3550
3493
|
}
|
|
3551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3494
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3495
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, providedIn: "root" });
|
|
3553
3496
|
}
|
|
3554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ControllerProgramsApiService, decorators: [{
|
|
3555
3498
|
type: Injectable,
|
|
3556
3499
|
args: [{
|
|
3557
3500
|
providedIn: "root",
|
|
@@ -3628,10 +3571,10 @@ class CsiApiService extends BaseService {
|
|
|
3628
3571
|
reportProgress: reportProgress,
|
|
3629
3572
|
});
|
|
3630
3573
|
}
|
|
3631
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3632
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3574
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3575
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, providedIn: "root" });
|
|
3633
3576
|
}
|
|
3634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CsiApiService, decorators: [{
|
|
3635
3578
|
type: Injectable,
|
|
3636
3579
|
args: [{
|
|
3637
3580
|
providedIn: "root",
|
|
@@ -3756,10 +3699,10 @@ class FeedbacksApiService extends BaseService {
|
|
|
3756
3699
|
reportProgress: reportProgress,
|
|
3757
3700
|
});
|
|
3758
3701
|
}
|
|
3759
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3760
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3702
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3703
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, providedIn: "root" });
|
|
3761
3704
|
}
|
|
3762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: FeedbacksApiService, decorators: [{
|
|
3763
3706
|
type: Injectable,
|
|
3764
3707
|
args: [{
|
|
3765
3708
|
providedIn: "root",
|
|
@@ -4059,10 +4002,10 @@ class GroupsApiService extends BaseService {
|
|
|
4059
4002
|
reportProgress: reportProgress,
|
|
4060
4003
|
});
|
|
4061
4004
|
}
|
|
4062
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4063
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4005
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4006
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, providedIn: "root" });
|
|
4064
4007
|
}
|
|
4065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GroupsApiService, decorators: [{
|
|
4066
4009
|
type: Injectable,
|
|
4067
4010
|
args: [{
|
|
4068
4011
|
providedIn: "root",
|
|
@@ -4295,10 +4238,10 @@ class KnownContactsApiService extends BaseService {
|
|
|
4295
4238
|
reportProgress: reportProgress,
|
|
4296
4239
|
});
|
|
4297
4240
|
}
|
|
4298
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4299
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4241
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4242
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, providedIn: "root" });
|
|
4300
4243
|
}
|
|
4301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KnownContactsApiService, decorators: [{
|
|
4302
4245
|
type: Injectable,
|
|
4303
4246
|
args: [{
|
|
4304
4247
|
providedIn: "root",
|
|
@@ -4472,10 +4415,10 @@ class LeadTimesApiService extends BaseService {
|
|
|
4472
4415
|
reportProgress: reportProgress,
|
|
4473
4416
|
});
|
|
4474
4417
|
}
|
|
4475
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4476
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4418
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4419
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, providedIn: "root" });
|
|
4477
4420
|
}
|
|
4478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LeadTimesApiService, decorators: [{
|
|
4479
4422
|
type: Injectable,
|
|
4480
4423
|
args: [{
|
|
4481
4424
|
providedIn: "root",
|
|
@@ -4541,10 +4484,10 @@ class MaintenanceApiService extends BaseService {
|
|
|
4541
4484
|
reportProgress: reportProgress,
|
|
4542
4485
|
});
|
|
4543
4486
|
}
|
|
4544
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4545
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4487
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4488
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, providedIn: "root" });
|
|
4546
4489
|
}
|
|
4547
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MaintenanceApiService, decorators: [{
|
|
4548
4491
|
type: Injectable,
|
|
4549
4492
|
args: [{
|
|
4550
4493
|
providedIn: "root",
|
|
@@ -4623,10 +4566,10 @@ class PartsApiService extends BaseService {
|
|
|
4623
4566
|
reportProgress: reportProgress,
|
|
4624
4567
|
});
|
|
4625
4568
|
}
|
|
4626
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4627
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4569
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4570
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, providedIn: "root" });
|
|
4628
4571
|
}
|
|
4629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PartsApiService, decorators: [{
|
|
4630
4573
|
type: Injectable,
|
|
4631
4574
|
args: [{
|
|
4632
4575
|
providedIn: "root",
|
|
@@ -4903,10 +4846,10 @@ class PermissionBundlesApiService extends BaseService {
|
|
|
4903
4846
|
reportProgress: reportProgress,
|
|
4904
4847
|
});
|
|
4905
4848
|
}
|
|
4906
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4907
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4849
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4850
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, providedIn: "root" });
|
|
4908
4851
|
}
|
|
4909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionBundlesApiService, decorators: [{
|
|
4910
4853
|
type: Injectable,
|
|
4911
4854
|
args: [{
|
|
4912
4855
|
providedIn: "root",
|
|
@@ -4975,10 +4918,10 @@ class PermissionsApiService extends BaseService {
|
|
|
4975
4918
|
reportProgress: reportProgress,
|
|
4976
4919
|
});
|
|
4977
4920
|
}
|
|
4978
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4979
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4921
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4922
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, providedIn: "root" });
|
|
4980
4923
|
}
|
|
4981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PermissionsApiService, decorators: [{
|
|
4982
4925
|
type: Injectable,
|
|
4983
4926
|
args: [{
|
|
4984
4927
|
providedIn: "root",
|
|
@@ -5060,10 +5003,10 @@ class PricingApiService extends BaseService {
|
|
|
5060
5003
|
reportProgress: reportProgress,
|
|
5061
5004
|
});
|
|
5062
5005
|
}
|
|
5063
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5064
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5006
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5007
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, providedIn: "root" });
|
|
5065
5008
|
}
|
|
5066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: PricingApiService, decorators: [{
|
|
5067
5010
|
type: Injectable,
|
|
5068
5011
|
args: [{
|
|
5069
5012
|
providedIn: "root",
|
|
@@ -5318,10 +5261,10 @@ class ProjectBidStatusesApiService extends BaseService {
|
|
|
5318
5261
|
reportProgress: reportProgress,
|
|
5319
5262
|
});
|
|
5320
5263
|
}
|
|
5321
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5322
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5265
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, providedIn: "root" });
|
|
5323
5266
|
}
|
|
5324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectBidStatusesApiService, decorators: [{
|
|
5325
5268
|
type: Injectable,
|
|
5326
5269
|
args: [{
|
|
5327
5270
|
providedIn: "root",
|
|
@@ -5627,10 +5570,10 @@ class ProjectDiscountsApiService extends BaseService {
|
|
|
5627
5570
|
reportProgress: reportProgress,
|
|
5628
5571
|
});
|
|
5629
5572
|
}
|
|
5630
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5631
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5573
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5574
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, providedIn: "root" });
|
|
5632
5575
|
}
|
|
5633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectDiscountsApiService, decorators: [{
|
|
5634
5577
|
type: Injectable,
|
|
5635
5578
|
args: [{
|
|
5636
5579
|
providedIn: "root",
|
|
@@ -5814,10 +5757,10 @@ class ProjectLinesApiService extends BaseService {
|
|
|
5814
5757
|
reportProgress: reportProgress,
|
|
5815
5758
|
});
|
|
5816
5759
|
}
|
|
5817
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5818
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5760
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5761
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, providedIn: "root" });
|
|
5819
5762
|
}
|
|
5820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinesApiService, decorators: [{
|
|
5821
5764
|
type: Injectable,
|
|
5822
5765
|
args: [{
|
|
5823
5766
|
providedIn: "root",
|
|
@@ -6040,10 +5983,10 @@ class ProjectLinksApiService extends BaseService {
|
|
|
6040
5983
|
reportProgress: reportProgress,
|
|
6041
5984
|
});
|
|
6042
5985
|
}
|
|
6043
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6044
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5986
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5987
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, providedIn: "root" });
|
|
6045
5988
|
}
|
|
6046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectLinksApiService, decorators: [{
|
|
6047
5990
|
type: Injectable,
|
|
6048
5991
|
args: [{
|
|
6049
5992
|
providedIn: "root",
|
|
@@ -6357,10 +6300,10 @@ class ProjectNotesApiService extends BaseService {
|
|
|
6357
6300
|
reportProgress: reportProgress,
|
|
6358
6301
|
});
|
|
6359
6302
|
}
|
|
6360
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6361
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
6303
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6304
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, providedIn: "root" });
|
|
6362
6305
|
}
|
|
6363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectNotesApiService, decorators: [{
|
|
6364
6307
|
type: Injectable,
|
|
6365
6308
|
args: [{
|
|
6366
6309
|
providedIn: "root",
|
|
@@ -6576,10 +6519,10 @@ class ProjectQualifiedSpecificationsApiService extends BaseService {
|
|
|
6576
6519
|
reportProgress: reportProgress,
|
|
6577
6520
|
});
|
|
6578
6521
|
}
|
|
6579
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6580
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
6522
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6523
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ProjectQualifiedSpecificationsApiService, providedIn: "root" });
|
|
6581
6524
|
}
|
|
6582
|
-
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: [{
|
|
6583
6526
|
type: Injectable,
|
|
6584
6527
|
args: [{
|
|
6585
6528
|
providedIn: "root",
|
|
@@ -6988,10 +6931,10 @@ class ProjectRevisionsApiService extends BaseService {
|
|
|
6988
6931
|
reportProgress: reportProgress,
|
|
6989
6932
|
});
|
|
6990
6933
|
}
|
|
6991
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6992
|
-
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" });
|
|
6993
6936
|
}
|
|
6994
|
-
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: [{
|
|
6995
6938
|
type: Injectable,
|
|
6996
6939
|
args: [{
|
|
6997
6940
|
providedIn: "root",
|
|
@@ -7201,10 +7144,10 @@ class ProjectSharingApiService extends BaseService {
|
|
|
7201
7144
|
reportProgress: reportProgress,
|
|
7202
7145
|
});
|
|
7203
7146
|
}
|
|
7204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7205
|
-
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" });
|
|
7206
7149
|
}
|
|
7207
|
-
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: [{
|
|
7208
7151
|
type: Injectable,
|
|
7209
7152
|
args: [{
|
|
7210
7153
|
providedIn: "root",
|
|
@@ -7472,10 +7415,10 @@ class ProjectShippingApiService extends BaseService {
|
|
|
7472
7415
|
reportProgress: reportProgress,
|
|
7473
7416
|
});
|
|
7474
7417
|
}
|
|
7475
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7476
|
-
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" });
|
|
7477
7420
|
}
|
|
7478
|
-
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: [{
|
|
7479
7422
|
type: Injectable,
|
|
7480
7423
|
args: [{
|
|
7481
7424
|
providedIn: "root",
|
|
@@ -7554,10 +7497,10 @@ class ProjectSoldToApiService extends BaseService {
|
|
|
7554
7497
|
reportProgress: reportProgress,
|
|
7555
7498
|
});
|
|
7556
7499
|
}
|
|
7557
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7558
|
-
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" });
|
|
7559
7502
|
}
|
|
7560
|
-
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: [{
|
|
7561
7504
|
type: Injectable,
|
|
7562
7505
|
args: [{
|
|
7563
7506
|
providedIn: "root",
|
|
@@ -7923,10 +7866,10 @@ class ProjectStatusesApiService extends BaseService {
|
|
|
7923
7866
|
reportProgress: reportProgress,
|
|
7924
7867
|
});
|
|
7925
7868
|
}
|
|
7926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7927
|
-
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" });
|
|
7928
7871
|
}
|
|
7929
|
-
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: [{
|
|
7930
7873
|
type: Injectable,
|
|
7931
7874
|
args: [{
|
|
7932
7875
|
providedIn: "root",
|
|
@@ -8353,10 +8296,10 @@ class ProjectsApiService extends BaseService {
|
|
|
8353
8296
|
reportProgress: reportProgress,
|
|
8354
8297
|
});
|
|
8355
8298
|
}
|
|
8356
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8357
|
-
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" });
|
|
8358
8301
|
}
|
|
8359
|
-
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: [{
|
|
8360
8303
|
type: Injectable,
|
|
8361
8304
|
args: [{
|
|
8362
8305
|
providedIn: "root",
|
|
@@ -8443,10 +8386,10 @@ class RegionsApiService extends BaseService {
|
|
|
8443
8386
|
reportProgress: reportProgress,
|
|
8444
8387
|
});
|
|
8445
8388
|
}
|
|
8446
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8447
|
-
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" });
|
|
8448
8391
|
}
|
|
8449
|
-
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: [{
|
|
8450
8393
|
type: Injectable,
|
|
8451
8394
|
args: [{
|
|
8452
8395
|
providedIn: "root",
|
|
@@ -8687,10 +8630,10 @@ class RepContactsApiService extends BaseService {
|
|
|
8687
8630
|
reportProgress: reportProgress,
|
|
8688
8631
|
});
|
|
8689
8632
|
}
|
|
8690
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8691
|
-
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" });
|
|
8692
8635
|
}
|
|
8693
|
-
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: [{
|
|
8694
8637
|
type: Injectable,
|
|
8695
8638
|
args: [{
|
|
8696
8639
|
providedIn: "root",
|
|
@@ -8944,10 +8887,10 @@ class RepSalesReportsApiService extends BaseService {
|
|
|
8944
8887
|
reportProgress: reportProgress,
|
|
8945
8888
|
});
|
|
8946
8889
|
}
|
|
8947
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8948
|
-
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" });
|
|
8949
8892
|
}
|
|
8950
|
-
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: [{
|
|
8951
8894
|
type: Injectable,
|
|
8952
8895
|
args: [{
|
|
8953
8896
|
providedIn: "root",
|
|
@@ -9751,10 +9694,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
9751
9694
|
reportProgress: reportProgress,
|
|
9752
9695
|
});
|
|
9753
9696
|
}
|
|
9754
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9755
|
-
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" });
|
|
9756
9699
|
}
|
|
9757
|
-
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: [{
|
|
9758
9701
|
type: Injectable,
|
|
9759
9702
|
args: [{
|
|
9760
9703
|
providedIn: "root",
|
|
@@ -9995,10 +9938,10 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
9995
9938
|
reportProgress: reportProgress,
|
|
9996
9939
|
});
|
|
9997
9940
|
}
|
|
9998
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9999
|
-
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" });
|
|
10000
9943
|
}
|
|
10001
|
-
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: [{
|
|
10002
9945
|
type: Injectable,
|
|
10003
9946
|
args: [{
|
|
10004
9947
|
providedIn: "root",
|
|
@@ -10550,10 +10493,10 @@ class RsdRegionsApiService extends BaseService {
|
|
|
10550
10493
|
reportProgress: reportProgress,
|
|
10551
10494
|
});
|
|
10552
10495
|
}
|
|
10553
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10554
|
-
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" });
|
|
10555
10498
|
}
|
|
10556
|
-
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: [{
|
|
10557
10500
|
type: Injectable,
|
|
10558
10501
|
args: [{
|
|
10559
10502
|
providedIn: "root",
|
|
@@ -10635,10 +10578,10 @@ class S3ApiService extends BaseService {
|
|
|
10635
10578
|
reportProgress: reportProgress,
|
|
10636
10579
|
});
|
|
10637
10580
|
}
|
|
10638
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10639
|
-
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" });
|
|
10640
10583
|
}
|
|
10641
|
-
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: [{
|
|
10642
10585
|
type: Injectable,
|
|
10643
10586
|
args: [{
|
|
10644
10587
|
providedIn: "root",
|
|
@@ -10704,10 +10647,10 @@ class StaticFilesApiService extends BaseService {
|
|
|
10704
10647
|
reportProgress: reportProgress,
|
|
10705
10648
|
});
|
|
10706
10649
|
}
|
|
10707
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10708
|
-
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" });
|
|
10709
10652
|
}
|
|
10710
|
-
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: [{
|
|
10711
10654
|
type: Injectable,
|
|
10712
10655
|
args: [{
|
|
10713
10656
|
providedIn: "root",
|
|
@@ -10870,10 +10813,10 @@ class UserTablesApiService extends BaseService {
|
|
|
10870
10813
|
reportProgress: reportProgress,
|
|
10871
10814
|
});
|
|
10872
10815
|
}
|
|
10873
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10874
|
-
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" });
|
|
10875
10818
|
}
|
|
10876
|
-
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: [{
|
|
10877
10820
|
type: Injectable,
|
|
10878
10821
|
args: [{
|
|
10879
10822
|
providedIn: "root",
|
|
@@ -12299,10 +12242,10 @@ class UsersApiService extends BaseService {
|
|
|
12299
12242
|
reportProgress: reportProgress,
|
|
12300
12243
|
});
|
|
12301
12244
|
}
|
|
12302
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12303
|
-
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" });
|
|
12304
12247
|
}
|
|
12305
|
-
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: [{
|
|
12306
12249
|
type: Injectable,
|
|
12307
12250
|
args: [{
|
|
12308
12251
|
providedIn: "root",
|
|
@@ -12915,10 +12858,10 @@ class UsersManagementApiService extends BaseService {
|
|
|
12915
12858
|
reportProgress: reportProgress,
|
|
12916
12859
|
});
|
|
12917
12860
|
}
|
|
12918
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12919
|
-
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" });
|
|
12920
12863
|
}
|
|
12921
|
-
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: [{
|
|
12922
12865
|
type: Injectable,
|
|
12923
12866
|
args: [{
|
|
12924
12867
|
providedIn: "root",
|
|
@@ -12935,7 +12878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
12935
12878
|
const APIS = [
|
|
12936
12879
|
AuditLogsApiService,
|
|
12937
12880
|
AuthApiService,
|
|
12938
|
-
|
|
12881
|
+
BombDownloadsApiService,
|
|
12939
12882
|
BombMaterialsApiService,
|
|
12940
12883
|
BombParametersApiService,
|
|
12941
12884
|
BombRoutingsApiService,
|
|
@@ -13029,7 +12972,7 @@ var AshraeVersion;
|
|
|
13029
12972
|
* Do not edit the class manually.
|
|
13030
12973
|
*/
|
|
13031
12974
|
/**
|
|
13032
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 =
|
|
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
|
|
13033
12976
|
*/
|
|
13034
12977
|
var AuditEntity;
|
|
13035
12978
|
(function (AuditEntity) {
|
|
@@ -13046,10 +12989,9 @@ var AuditEntity;
|
|
|
13046
12989
|
AuditEntity["Project"] = "Project";
|
|
13047
12990
|
AuditEntity["ProjectLine"] = "ProjectLine";
|
|
13048
12991
|
AuditEntity["MaterialLayer"] = "MaterialLayer";
|
|
13049
|
-
AuditEntity["
|
|
12992
|
+
AuditEntity["DownloadLayer"] = "DownloadLayer";
|
|
13050
12993
|
AuditEntity["RoutingLayer"] = "RoutingLayer";
|
|
13051
12994
|
AuditEntity["ValidationLayer"] = "ValidationLayer";
|
|
13052
|
-
AuditEntity["DrawingLayer"] = "DrawingLayer";
|
|
13053
12995
|
})(AuditEntity || (AuditEntity = {}));
|
|
13054
12996
|
|
|
13055
12997
|
/**
|
|
@@ -13329,16 +13271,6 @@ var CoolingDesignBasis;
|
|
|
13329
13271
|
* Do not edit the class manually.
|
|
13330
13272
|
*/
|
|
13331
13273
|
|
|
13332
|
-
/**
|
|
13333
|
-
* RenewAire CORES API
|
|
13334
|
-
*
|
|
13335
|
-
* Contact: renewaire@saritasa.com
|
|
13336
|
-
*
|
|
13337
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13338
|
-
* https://openapi-generator.tech
|
|
13339
|
-
* Do not edit the class manually.
|
|
13340
|
-
*/
|
|
13341
|
-
|
|
13342
13274
|
/**
|
|
13343
13275
|
* RenewAire CORES API
|
|
13344
13276
|
*
|
|
@@ -13460,7 +13392,7 @@ var FeedbackType;
|
|
|
13460
13392
|
* Do not edit the class manually.
|
|
13461
13393
|
*/
|
|
13462
13394
|
/**
|
|
13463
|
-
* 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
|
|
13464
13396
|
*/
|
|
13465
13397
|
var FileType;
|
|
13466
13398
|
(function (FileType) {
|
|
@@ -13469,7 +13401,7 @@ var FileType;
|
|
|
13469
13401
|
FileType["RepSalesReport"] = "RepSalesReport";
|
|
13470
13402
|
FileType["ProjectNoteAttachment"] = "ProjectNoteAttachment";
|
|
13471
13403
|
FileType["BidStatusAttachment"] = "BidStatusAttachment";
|
|
13472
|
-
FileType["
|
|
13404
|
+
FileType["DownloadLayerFile"] = "DownloadLayerFile";
|
|
13473
13405
|
FileType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
13474
13406
|
FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
|
|
13475
13407
|
FileType["DrawingLayerFile"] = "DrawingLayerFile";
|
|
@@ -13839,7 +13771,7 @@ var ParameterType;
|
|
|
13839
13771
|
* Do not edit the class manually.
|
|
13840
13772
|
*/
|
|
13841
13773
|
/**
|
|
13842
|
-
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 =
|
|
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
|
|
13843
13775
|
*/
|
|
13844
13776
|
var Permission;
|
|
13845
13777
|
(function (Permission) {
|
|
@@ -13901,7 +13833,7 @@ var Permission;
|
|
|
13901
13833
|
Permission["EditUsers"] = "EditUsers";
|
|
13902
13834
|
Permission["BombMaterialsAdmin"] = "BombMaterialsAdmin";
|
|
13903
13835
|
Permission["BombRoutingAdmin"] = "BombRoutingAdmin";
|
|
13904
|
-
Permission["
|
|
13836
|
+
Permission["BombDownloadsAdmin"] = "BombDownloadsAdmin";
|
|
13905
13837
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
13906
13838
|
Permission["AccessBomb"] = "AccessBomb";
|
|
13907
13839
|
Permission["BombDrawingsAdmin"] = "BombDrawingsAdmin";
|
|
@@ -14577,26 +14509,6 @@ var RegistrationStatus;
|
|
|
14577
14509
|
* Do not edit the class manually.
|
|
14578
14510
|
*/
|
|
14579
14511
|
|
|
14580
|
-
/**
|
|
14581
|
-
* RenewAire CORES API
|
|
14582
|
-
*
|
|
14583
|
-
* Contact: renewaire@saritasa.com
|
|
14584
|
-
*
|
|
14585
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14586
|
-
* https://openapi-generator.tech
|
|
14587
|
-
* Do not edit the class manually.
|
|
14588
|
-
*/
|
|
14589
|
-
|
|
14590
|
-
/**
|
|
14591
|
-
* RenewAire CORES API
|
|
14592
|
-
*
|
|
14593
|
-
* Contact: renewaire@saritasa.com
|
|
14594
|
-
*
|
|
14595
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
14596
|
-
* https://openapi-generator.tech
|
|
14597
|
-
* Do not edit the class manually.
|
|
14598
|
-
*/
|
|
14599
|
-
|
|
14600
14512
|
/**
|
|
14601
14513
|
* RenewAire CORES API
|
|
14602
14514
|
*
|
|
@@ -14770,11 +14682,11 @@ class ApiModule {
|
|
|
14770
14682
|
"See also https://github.com/angular/angular/issues/20575");
|
|
14771
14683
|
}
|
|
14772
14684
|
}
|
|
14773
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14774
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
14775
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
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 });
|
|
14776
14688
|
}
|
|
14777
|
-
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: [{
|
|
14778
14690
|
type: NgModule,
|
|
14779
14691
|
args: [{
|
|
14780
14692
|
imports: [],
|
|
@@ -14806,5 +14718,5 @@ function provideApi(configOrBasePath) {
|
|
|
14806
14718
|
* Generated bundle index. Do not edit.
|
|
14807
14719
|
*/
|
|
14808
14720
|
|
|
14809
|
-
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 };
|
|
14810
14722
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|