@lowcodeunit/applications-flow-common 1.33.288-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.
- package/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +2 -2
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +2 -2
- package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +2 -2
- package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +2 -2
- package/esm2020/lib/services/applications-flow.service.mjs +15 -8
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +20 -14
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +18 -11
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/services/applications-flow.service.d.ts +1 -2
- package/package.json +1 -1
|
@@ -278,13 +278,20 @@ class ApplicationsFlowService {
|
|
|
278
278
|
headers: this.loadHeaders(),
|
|
279
279
|
});
|
|
280
280
|
}
|
|
281
|
-
LoadProjectHostingDetails(
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
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(
|
|
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(
|
|
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(
|
|
4158
|
+
.LoadProjectHostingDetails()
|
|
4152
4159
|
.subscribe((response) => {
|
|
4153
4160
|
this.HostingDetails = response.Model;
|
|
4154
4161
|
this.HostingDetails.Loading = false;
|
|
@@ -5138,7 +5145,7 @@ class BuildPipelineFormComponent {
|
|
|
5138
5145
|
}
|
|
5139
5146
|
loadProjectHostingDetails() {
|
|
5140
5147
|
this.HostingDetails.Loading = true;
|
|
5141
|
-
this.appsFlowSvc.
|
|
5148
|
+
this.appsFlowSvc.LoadProjectHostingDetails().subscribe((response) => {
|
|
5142
5149
|
this.HostingDetails = response.Model;
|
|
5143
5150
|
// console.log("response: ", response);
|
|
5144
5151
|
this.HostingDetails.Loading = false;
|