@lowcodeunit/applications-flow-common 1.38.9-merge → 1.39.1-projectHostFixes
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 +7 -7
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +4 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +6 -15
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +9 -9
- 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
|
-
|
4160
|
+
...this.Environment,
|
4161
4161
|
Sources: this.Environment.Sources || {},
|
4162
4162
|
},
|
4163
|
-
|
4164
|
-
|
4163
|
+
EnvironmentLookup: this.EnvironmentLookup,
|
4164
|
+
EnterpriseDataTokens: {},
|
4165
4165
|
};
|
4166
4166
|
let source = {
|
4167
4167
|
...this.EditingSourceControl,
|
@@ -5343,14 +5343,14 @@ class BuildPipelineFormComponent {
|
|
5343
5343
|
SaveEnvironment() {
|
5344
5344
|
const saveEnvReq = {
|
5345
5345
|
Environment: {
|
5346
|
-
|
5346
|
+
...this.Environment,
|
5347
5347
|
Artifacts: this.Environment.Artifacts || {},
|
5348
|
-
//
|
5349
|
-
//
|
5350
|
-
//
|
5348
|
+
//DevOpsActions: this.Environment.DevOpsActions || {},
|
5349
|
+
//Secrets: this.Environment.Secrets || {},
|
5350
|
+
//Sources: this.Environment.Sources || {},
|
5351
5351
|
},
|
5352
|
-
|
5353
|
-
|
5352
|
+
EnvironmentLookup: this.EnvironmentLookup,
|
5353
|
+
EnterpriseDataTokens: {},
|
5354
5354
|
};
|
5355
5355
|
let artifactLookup;
|
5356
5356
|
let artifact = {
|