@lowcodeunit/applications-flow-common 1.37.175-oct-bugs → 1.37.176-oct-bugs
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/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +10 -9
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +4 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +20 -7
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +12 -11
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -4157,11 +4157,11 @@ class DevopsSourceControlFormComponent {
|
|
4157
4157
|
SaveSourceControl() {
|
4158
4158
|
const saveEnvReq = {
|
4159
4159
|
Environment: {
|
4160
|
-
...this.Environment,
|
4160
|
+
// ...this.Environment,
|
4161
4161
|
Sources: this.Environment.Sources || {},
|
4162
4162
|
},
|
4163
|
-
EnvironmentLookup: this.EnvironmentLookup,
|
4164
|
-
EnterpriseDataTokens: {},
|
4163
|
+
// EnvironmentLookup: this.EnvironmentLookup,
|
4164
|
+
// EnterpriseDataTokens: {},
|
4165
4165
|
};
|
4166
4166
|
let source = {
|
4167
4167
|
...this.EditingSourceControl,
|
@@ -5343,19 +5343,19 @@ class BuildPipelineFormComponent {
|
|
5343
5343
|
SaveEnvironment() {
|
5344
5344
|
const saveEnvReq = {
|
5345
5345
|
Environment: {
|
5346
|
-
...this.Environment,
|
5346
|
+
// ...this.Environment,
|
5347
5347
|
Artifacts: this.Environment.Artifacts || {},
|
5348
|
-
DevOpsActions: this.Environment.DevOpsActions || {},
|
5349
|
-
Secrets: this.Environment.Secrets || {},
|
5350
|
-
Sources: this.Environment.Sources || {},
|
5348
|
+
// DevOpsActions: this.Environment.DevOpsActions || {},
|
5349
|
+
// Secrets: this.Environment.Secrets || {},
|
5350
|
+
// Sources: this.Environment.Sources || {},
|
5351
5351
|
},
|
5352
|
-
EnvironmentLookup: this.EnvironmentLookup,
|
5353
|
-
EnterpriseDataTokens: {},
|
5352
|
+
// EnvironmentLookup: this.EnvironmentLookup,
|
5353
|
+
// EnterpriseDataTokens: {},
|
5354
5354
|
};
|
5355
5355
|
let artifactLookup;
|
5356
5356
|
let artifact = {
|
5357
|
-
|
5358
|
-
|
5357
|
+
// ...this.Artifact,
|
5358
|
+
// ...this.SelectedHostingOptionInputControlValues,
|
5359
5359
|
};
|
5360
5360
|
if (!this.ArtifactLookup) {
|
5361
5361
|
artifactLookup = Guid.CreateRaw();
|
@@ -5404,6 +5404,7 @@ class BuildPipelineFormComponent {
|
|
5404
5404
|
};
|
5405
5405
|
saveEnvReq.Environment.DevOpsActions[devOpsActionLookup] = doa;
|
5406
5406
|
}
|
5407
|
+
console.log('env req: ', saveEnvReq);
|
5407
5408
|
this.eacSvc.SaveEnvironmentAsCode(saveEnvReq).then((res) => {
|
5408
5409
|
this.ResponseEvent.emit(res);
|
5409
5410
|
});
|