@lowcodeunit/applications-flow-common 1.33.107-lets-get-social-ish → 1.33.111-lets-get-social-ish
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/bundles/lowcodeunit-applications-flow-common.umd.js +21 -16
- package/bundles/lowcodeunit-applications-flow-common.umd.js.map +1 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js +1 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +1 -1
- package/esm2015/lib/controls/build-pipeline-form/build-pipeline-form.component.js +17 -13
- package/esm2015/lib/services/applications-flow.service.js +6 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +21 -12
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts +0 -2
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts.map +1 -1
- package/lib/services/applications-flow.service.d.ts +1 -0
- package/lib/services/applications-flow.service.d.ts.map +1 -1
- package/lowcodeunit-applications-flow-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -598,6 +598,11 @@
|
|
|
598
598
|
headers: this.loadHeaders(),
|
|
599
599
|
});
|
|
600
600
|
};
|
|
601
|
+
ApplicationsFlowService.prototype.UserFeed = function () {
|
|
602
|
+
return this.http.post(this.apiRoot + "/api/lowcodeunit/userfeed", {}, {
|
|
603
|
+
headers: this.loadHeaders(),
|
|
604
|
+
});
|
|
605
|
+
};
|
|
601
606
|
// Helpers
|
|
602
607
|
ApplicationsFlowService.prototype.loadHeaders = function () {
|
|
603
608
|
return {};
|
|
@@ -5618,18 +5623,6 @@
|
|
|
5618
5623
|
enumerable: false,
|
|
5619
5624
|
configurable: true
|
|
5620
5625
|
});
|
|
5621
|
-
Object.defineProperty(BuildPipelineFormComponent.prototype, "EditingSourceControl", {
|
|
5622
|
-
get: function () {
|
|
5623
|
-
var _a, _b;
|
|
5624
|
-
var sc = ((_a = this.Environment) === null || _a === void 0 ? void 0 : _a.Sources) ? (_b = this.Environment) === null || _b === void 0 ? void 0 : _b.Sources[this.EditingSourceControlLookup] : null;
|
|
5625
|
-
if (sc == null && this.EditingSourceControlLookup) {
|
|
5626
|
-
sc = {};
|
|
5627
|
-
}
|
|
5628
|
-
return sc;
|
|
5629
|
-
},
|
|
5630
|
-
enumerable: false,
|
|
5631
|
-
configurable: true
|
|
5632
|
-
});
|
|
5633
5626
|
Object.defineProperty(BuildPipelineFormComponent.prototype, "NPMTokenFormControl", {
|
|
5634
5627
|
get: function () {
|
|
5635
5628
|
return this.BuildPipelineFormGroup.get('npmToken');
|
|
@@ -5738,10 +5731,22 @@
|
|
|
5738
5731
|
var doa = Object.assign(Object.assign({}, this.DevOpsAction), { Name: this.DevOpsActionNameFormControl.value });
|
|
5739
5732
|
saveEnvReq.Environment.DevOpsActions[devOpsActionLookup] = doa;
|
|
5740
5733
|
}
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5734
|
+
// let source: EaCSourceControl = {
|
|
5735
|
+
// ...this.EditingSourceControl,
|
|
5736
|
+
// Branches: this.EditingSourceControl.SelectedBranches,
|
|
5737
|
+
// MainBranch: this.EditingSourceControl.MainBranchFormControl.value,
|
|
5738
|
+
// };
|
|
5739
|
+
// source = {
|
|
5740
|
+
// ...source,
|
|
5741
|
+
// Type: 'GitHub',
|
|
5742
|
+
// Name: this.EditingSourceControlLookup,
|
|
5743
|
+
// DevOpsActionTriggerLookups: [devOpsActionLookup],
|
|
5744
|
+
// Organization:
|
|
5745
|
+
// this.EditingSourceControl.OrganizationFormControl.value,
|
|
5746
|
+
// Repository: this.EditingSourceControl.RepositoryFormControl.value,
|
|
5747
|
+
// };
|
|
5748
|
+
// const scLookup = `github://${source.Organization}/${source.Repository}`;
|
|
5749
|
+
// saveEnvReq.Environment.Sources[scLookup] = source;
|
|
5745
5750
|
this.eacSvc.SaveEnvironmentAsCode(saveEnvReq);
|
|
5746
5751
|
};
|
|
5747
5752
|
// Helpers
|