@lowcodeunit/applications-flow-common 1.33.100-lets-get-social-ish → 1.33.101-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 +7 -2
- 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 +3 -3
- package/esm2015/lib/services/applications-flow.service.js +6 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +7 -2
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- 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
|
@@ -576,6 +576,11 @@
|
|
|
576
576
|
headers: this.loadHeaders(),
|
|
577
577
|
});
|
|
578
578
|
};
|
|
579
|
+
ApplicationsFlowService.prototype.NewLoadProjectHostingDetails = function () {
|
|
580
|
+
return this.http.get(this.apiRoot + "/api/lowcodeunit/manage/projects/hosting/details", {
|
|
581
|
+
headers: this.loadHeaders(),
|
|
582
|
+
});
|
|
583
|
+
};
|
|
579
584
|
ApplicationsFlowService.prototype.SaveEnterpriseAsCode = function (eac) {
|
|
580
585
|
return this.http.post(this.apiRoot + "/api/lowcodeunit/manage/eac", eac, {
|
|
581
586
|
headers: this.loadHeaders(),
|
|
@@ -5642,11 +5647,11 @@
|
|
|
5642
5647
|
// this.Organization,
|
|
5643
5648
|
// this.Repository,
|
|
5644
5649
|
// this.MainBranch
|
|
5645
|
-
//
|
|
5650
|
+
// "powhound4",
|
|
5646
5651
|
// "RedwoodCrystals",
|
|
5647
5652
|
// "master"
|
|
5648
5653
|
this.appsFlowSvc
|
|
5649
|
-
.
|
|
5654
|
+
.NewLoadProjectHostingDetails()
|
|
5650
5655
|
.subscribe(function (response) {
|
|
5651
5656
|
_this.HostingDetails = response.Model;
|
|
5652
5657
|
console.log("response: ", response);
|