@lowcodeunit/applications-flow-common 1.33.286-lets-get-social-ish → 1.33.289-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.
@@ -278,13 +278,20 @@ class ApplicationsFlowService {
278
278
  headers: this.loadHeaders(),
279
279
  });
280
280
  }
281
- LoadProjectHostingDetails(organization, repository, branch) {
282
- branch = encodeURIComponent(branch);
283
- return this.http.get(`${this.apiRoot}/api/lowcodeunit/manage/projects/organizations/${organization}/repositories/${repository}/branches/${branch}/hosting/details`, {
284
- headers: this.loadHeaders(),
285
- });
286
- }
287
- NewLoadProjectHostingDetails() {
281
+ // public LoadProjectHostingDetails(
282
+ // organization: string,
283
+ // repository: string,
284
+ // branch: string
285
+ // ): Observable<object> {
286
+ // branch = encodeURIComponent(branch);
287
+ // return this.http.get(
288
+ // `${this.apiRoot}/api/lowcodeunit/manage/projects/organizations/${organization}/repositories/${repository}/branches/${branch}/hosting/details`,
289
+ // {
290
+ // headers: this.loadHeaders(),
291
+ // }
292
+ // );
293
+ // }
294
+ LoadProjectHostingDetails() {
288
295
  return this.http.get(`${this.apiRoot}/api/lowcodeunit/manage/projects/hosting/details`, {
289
296
  headers: this.loadHeaders(),
290
297
  });
@@ -2472,7 +2479,7 @@ class DevOpsComponent {
2472
2479
  if (this.SourceControlFormControls?.SelectedBranches?.length > 0) {
2473
2480
  this.HostingDetails.Loading = true;
2474
2481
  this.appsFlowSvc
2475
- .LoadProjectHostingDetails(this.SourceControlFormControls?.OrganizationFormControl?.value, this.SourceControlFormControls?.RepositoryFormControl?.value, this.SourceControlFormControls?.MainBranchFormControl?.value)
2482
+ .LoadProjectHostingDetails()
2476
2483
  .subscribe((response) => {
2477
2484
  this.HostingDetails = response.Model;
2478
2485
  this.HostingDetails.Loading = false;
@@ -3016,7 +3023,7 @@ class CreateProjectWizardComponent {
3016
3023
  loadProjectHostingDetails() {
3017
3024
  this.HostingDetails.Loading = true;
3018
3025
  this.appsFlowSvc
3019
- .LoadProjectHostingDetails(this.RepoDetailsFormGroup.get('organization').value, this.RepoDetailsFormGroup.get('repository').value, this.SourceControl?.SelectedBranches?.join(','))
3026
+ .LoadProjectHostingDetails()
3020
3027
  .subscribe((response) => {
3021
3028
  this.HostingDetails = response.Model;
3022
3029
  this.HostingDetails.Loading = false;
@@ -4148,7 +4155,7 @@ class DevopsSourceControlFormComponent {
4148
4155
  if (this.SelectedBranches?.length > 0) {
4149
4156
  this.HostingDetails.Loading = true;
4150
4157
  this.appsFlowSvc
4151
- .LoadProjectHostingDetails(this.OrganizationFormControl?.value, this.RepositoryFormControl?.value, this.MainBranchFormControl?.value)
4158
+ .LoadProjectHostingDetails()
4152
4159
  .subscribe((response) => {
4153
4160
  this.HostingDetails = response.Model;
4154
4161
  this.HostingDetails.Loading = false;
@@ -4780,8 +4787,9 @@ class ProcessorDetailsFormComponent {
4780
4787
  this.ProcessorDetailsFormGroup = this.formBldr.group({
4781
4788
  procType: [this.ProcessorType, [Validators.required]],
4782
4789
  });
4783
- this.setupDfsForm();
4784
- this.setupLcuTypeSubForm();
4790
+ // this.setupDfsForm();
4791
+ // this.setupLcuTypeSubForm();
4792
+ this.setupProcessorTypeSubForm();
4785
4793
  }
4786
4794
  }
4787
4795
  setupLCUGitHubForm() {
@@ -5137,7 +5145,7 @@ class BuildPipelineFormComponent {
5137
5145
  }
5138
5146
  loadProjectHostingDetails() {
5139
5147
  this.HostingDetails.Loading = true;
5140
- this.appsFlowSvc.NewLoadProjectHostingDetails().subscribe((response) => {
5148
+ this.appsFlowSvc.LoadProjectHostingDetails().subscribe((response) => {
5141
5149
  this.HostingDetails = response.Model;
5142
5150
  // console.log("response: ", response);
5143
5151
  this.HostingDetails.Loading = false;