@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.
@@ -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
- var source = Object.assign(Object.assign({}, this.EditingSourceControl), { Branches: this.EditingSourceControl.SelectedBranches, MainBranch: this.EditingSourceControl.MainBranchFormControl.value });
5742
- source = Object.assign(Object.assign({}, source), { Type: 'GitHub', Name: this.EditingSourceControlLookup, DevOpsActionTriggerLookups: [devOpsActionLookup], Organization: this.EditingSourceControl.OrganizationFormControl.value, Repository: this.EditingSourceControl.RepositoryFormControl.value });
5743
- var scLookup = "github://" + source.Organization + "/" + source.Repository;
5744
- saveEnvReq.Environment.Sources[scLookup] = source;
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