@lowcodeunit/applications-flow-common 1.34.59-krakyn-app → 1.34.60-social-ui-bug-fixes
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/lcu.api.mjs +4 -5
- package/esm2020/lib/applications-flow.module.mjs +26 -42
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +3 -3
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +8 -15
- package/esm2020/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.mjs +3 -3
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +8 -15
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +2 -2
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +75 -0
- package/esm2020/lib/elements/gh-control/gh-control.component.mjs +107 -0
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +5 -6
- package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +2 -3
- package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +4 -2
- package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +4 -6
- package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +6 -4
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +2 -2
- package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +2 -2
- package/esm2020/lib/models/user-feed.model.mjs +1 -3
- package/esm2020/lib/services/applications-flow.service.mjs +25 -15
- package/esm2020/lib/services/eac.service.mjs +15 -78
- package/esm2020/lib/services/project.service.mjs +69 -36
- package/esm2020/lib/state/applications-flow.state.mjs +1 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +2084 -2728
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +2046 -2669
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lcu.api.d.ts +3 -4
- package/lib/applications-flow.module.d.ts +18 -21
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +0 -2
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +0 -2
- package/lib/elements/flow-tool/flow-tool.component.d.ts +28 -0
- package/lib/elements/{feed-header/feed-header.component.d.ts → gh-control/gh-control.component.d.ts} +7 -9
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +1 -1
- package/lib/models/user-feed.model.d.ts +0 -17
- package/lib/services/applications-flow.service.d.ts +5 -4
- package/lib/services/eac.service.d.ts +8 -12
- package/lib/services/project.service.d.ts +7 -5
- package/lib/state/applications-flow.state.d.ts +1 -2
- package/package.json +1 -1
- package/esm2020/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +0 -275
- package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +0 -109
- package/esm2020/lib/dialogs/feed-header-dialog/feed-header-dialog.component.mjs +0 -280
- package/esm2020/lib/elements/feed-header/feed-header.component.mjs +0 -131
- package/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.d.ts +0 -62
- package/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.d.ts +0 -41
- package/lib/dialogs/feed-header-dialog/feed-header-dialog.component.d.ts +0 -71
package/lcu.api.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export * from './lib/models/project-actions.model';
|
|
|
10
10
|
export * from './lib/models/user-feed.model';
|
|
11
11
|
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
12
12
|
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
13
|
-
export * from './lib/controls/dfs-modifiers-form/dfs-modifiers-form.component';
|
|
14
13
|
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
15
14
|
export * from './lib/controls/processor-details-form/processor-details-form.component';
|
|
16
15
|
export * from './lib/controls/security-toggle/security-toggle.component';
|
|
@@ -58,11 +57,13 @@ export * from './lib/elements/form-card/form-card.component';
|
|
|
58
57
|
export * from './lib/elements/base-form/base-form.component';
|
|
59
58
|
export * from './lib/elements/projects/controls/recent-activities/recent-activities.component';
|
|
60
59
|
export * from './lib/elements/projects/projects.component';
|
|
60
|
+
export * from './lib/elements/flow-tool/flow-tool.component';
|
|
61
61
|
export * from './lib/elements/slotted-card/slotted-card.component';
|
|
62
62
|
export * from './lib/elements/analytics-card/analytics-card.component';
|
|
63
63
|
export * from './lib/elements/feed-card-sm/feed-card-sm.component';
|
|
64
64
|
export * from './lib/elements/three-column/three-column.component';
|
|
65
|
-
export * from './lib/elements/
|
|
65
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
66
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
66
67
|
export * from './lib/elements/main-feed-card/main-feed-card.component';
|
|
67
68
|
export * from './lib/elements/project-info-card/project-info-card.component';
|
|
68
69
|
export * from './lib/elements/two-column-header/two-column-header.component';
|
|
@@ -74,9 +75,7 @@ export * from './lib/controls/processor-details-form/processor-details-form.comp
|
|
|
74
75
|
export * from './lib/controls/source-control-form/source-control-form.component';
|
|
75
76
|
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
76
77
|
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
77
|
-
export * from './lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component';
|
|
78
78
|
export * from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
79
79
|
export * from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
80
|
-
export * from './lib/dialogs/feed-header-dialog/feed-header-dialog.component';
|
|
81
80
|
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
82
81
|
export * from './lib/elements/breadcrumb/breadcrumb.component';
|
|
@@ -21,13 +21,13 @@ import * as i18 from "./elements/projects/controls/tabs/apps-flow/apps-flow.comp
|
|
|
21
21
|
import * as i19 from "./elements/projects/controls/tabs/devops/devops.component";
|
|
22
22
|
import * as i20 from "./elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component";
|
|
23
23
|
import * as i21 from "./elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component";
|
|
24
|
-
import * as i22 from "./
|
|
24
|
+
import * as i22 from "./elements/flow-tool/flow-tool.component";
|
|
25
25
|
import * as i23 from "./elements/three-column/three-column.component";
|
|
26
26
|
import * as i24 from "./elements/slotted-card/slotted-card.component";
|
|
27
27
|
import * as i25 from "./elements/project-info-card/project-info-card.component";
|
|
28
28
|
import * as i26 from "./elements/analytics-card/analytics-card.component";
|
|
29
29
|
import * as i27 from "./elements/feed-card-sm/feed-card-sm.component";
|
|
30
|
-
import * as i28 from "./elements/
|
|
30
|
+
import * as i28 from "./elements/gh-control/gh-control.component";
|
|
31
31
|
import * as i29 from "./elements/main-feed-card/main-feed-card.component";
|
|
32
32
|
import * as i30 from "./elements/two-column-header/two-column-header.component";
|
|
33
33
|
import * as i31 from "./elements/card-carousel/card-carousel.component";
|
|
@@ -40,27 +40,24 @@ import * as i37 from "./dialogs/source-control-dialog/source-control-dialog.comp
|
|
|
40
40
|
import * as i38 from "./dialogs/build-pipeline-dialog/build-pipeline-dialog.component";
|
|
41
41
|
import * as i39 from "./controls/edit-application-form/edit-application-form.component";
|
|
42
42
|
import * as i40 from "./elements/breadcrumb/breadcrumb.component";
|
|
43
|
-
import * as i41 from "./dialogs/
|
|
44
|
-
import * as i42 from "./dialogs/
|
|
45
|
-
import * as i43 from "./dialogs/
|
|
46
|
-
import * as i44 from "./dialogs/
|
|
47
|
-
import * as i45 from "./
|
|
48
|
-
import * as i46 from "./
|
|
49
|
-
import * as i47 from "./
|
|
50
|
-
import * as i48 from "
|
|
51
|
-
import * as i49 from "
|
|
52
|
-
import * as i50 from "@
|
|
53
|
-
import * as i51 from "@angular/
|
|
54
|
-
import * as i52 from "@
|
|
55
|
-
import * as i53 from "@angular/
|
|
56
|
-
import * as i54 from "@angular/
|
|
57
|
-
import * as i55 from "
|
|
58
|
-
import * as i56 from "@angular/material/tooltip";
|
|
59
|
-
import * as i57 from "@angular/material/slide-toggle";
|
|
60
|
-
import * as i58 from "skeleton-elements/angular";
|
|
43
|
+
import * as i41 from "./dialogs/custom-domain-dialog/custom-domain-dialog.component";
|
|
44
|
+
import * as i42 from "./dialogs/edit-application-dialog/edit-application-dialog.component";
|
|
45
|
+
import * as i43 from "./dialogs/new-application-dialog/new-application-dialog.component";
|
|
46
|
+
import * as i44 from "./dialogs/processor-details-dialog/processor-details-dialog.component";
|
|
47
|
+
import * as i45 from "./elements/skeleton-feed-card/skeleton-feed-card.component";
|
|
48
|
+
import * as i46 from "./dialogs/upgrade-dialog/upgrade-dialog.component";
|
|
49
|
+
import * as i47 from "./controls/emulated-devices-toggle/emulated-devices-toggle.component";
|
|
50
|
+
import * as i48 from "@angular/cdk/clipboard";
|
|
51
|
+
import * as i49 from "@lcu/common";
|
|
52
|
+
import * as i50 from "@angular/forms";
|
|
53
|
+
import * as i51 from "@angular/flex-layout";
|
|
54
|
+
import * as i52 from "@lowcodeunit/app-host-common";
|
|
55
|
+
import * as i53 from "@angular/material/tooltip";
|
|
56
|
+
import * as i54 from "@angular/material/slide-toggle";
|
|
57
|
+
import * as i55 from "skeleton-elements/angular";
|
|
61
58
|
export declare class ApplicationsFlowModule {
|
|
62
59
|
static forRoot(): ModuleWithProviders<ApplicationsFlowModule>;
|
|
63
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowModule, never>;
|
|
64
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ApplicationsFlowModule, [typeof i1.ApplicationsFlowProjectsElementComponent, typeof i2.HostingDetailsFormGroupComponent, typeof i3.CreateProjectWizardComponent, typeof i4.DynamicTabsComponent, typeof i5.HeaderComponent, typeof i6.ProjectTabsComponent, typeof i7.DomainsComponent, typeof i8.ProjectItemsComponent, typeof i9.BuildsComponent, typeof i10.RecentActivitiesComponent, typeof i11.FormCardComponent, typeof i12.ProjectNameComponent, typeof i13.RootDirectoryComponent, typeof i14.BaseFormComponent, typeof i15.BaseFormTestComponent, typeof i16.GitAuthComponent, typeof i17.SourceControlFormControlsComponent, typeof i18.AppsFlowComponent, typeof i19.DevOpsComponent, typeof i20.DFSModifiersComponent, typeof i21.NpmPackageSelectComponent, typeof i22.
|
|
61
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ApplicationsFlowModule, [typeof i1.ApplicationsFlowProjectsElementComponent, typeof i2.HostingDetailsFormGroupComponent, typeof i3.CreateProjectWizardComponent, typeof i4.DynamicTabsComponent, typeof i5.HeaderComponent, typeof i6.ProjectTabsComponent, typeof i7.DomainsComponent, typeof i8.ProjectItemsComponent, typeof i9.BuildsComponent, typeof i10.RecentActivitiesComponent, typeof i11.FormCardComponent, typeof i12.ProjectNameComponent, typeof i13.RootDirectoryComponent, typeof i14.BaseFormComponent, typeof i15.BaseFormTestComponent, typeof i16.GitAuthComponent, typeof i17.SourceControlFormControlsComponent, typeof i18.AppsFlowComponent, typeof i19.DevOpsComponent, typeof i20.DFSModifiersComponent, typeof i21.NpmPackageSelectComponent, typeof i22.FlowToolComponent, typeof i23.ThreeColumnComponent, typeof i24.SlottedCardComponent, typeof i25.ProjectInfoCardComponent, typeof i26.AnalyticsCardComponent, typeof i27.FeedCardSmComponent, typeof i28.GhControlComponent, typeof i29.MainFeedCardComponent, typeof i30.TwoColumnHeaderComponent, typeof i31.CardCarouselComponent, typeof i32.SecurityToggleComponent, typeof i33.ProcessorDetailsFormComponent, typeof i34.SourceControlFormComponent, typeof i35.BuildPipelineFormComponent, typeof i36.DevopsSourceControlFormComponent, typeof i37.SourceControlDialogComponent, typeof i38.BuildPipelineDialogComponent, typeof i39.EditApplicationFormComponent, typeof i40.BreadcrumbComponent, typeof i41.CustomDomainDialogComponent, typeof i42.EditApplicationDialogComponent, typeof i43.NewApplicationDialogComponent, typeof i44.ProcessorDetailsDialogComponent, typeof i45.SkeletonFeedCardComponent, typeof i46.UpgradeDialogComponent, typeof i47.EmulatedDevicesToggleComponent], [typeof i48.ClipboardModule, typeof i49.FathymSharedModule, typeof i50.FormsModule, typeof i50.ReactiveFormsModule, typeof i51.FlexLayoutModule, typeof i49.MaterialModule, typeof i52.AppHostModule, typeof i53.MatTooltipModule, typeof i54.MatSlideToggleModule, typeof i55.SkeletonElementsModule], [typeof i1.ApplicationsFlowProjectsElementComponent, typeof i2.HostingDetailsFormGroupComponent, typeof i3.CreateProjectWizardComponent, typeof i4.DynamicTabsComponent, typeof i5.HeaderComponent, typeof i6.ProjectTabsComponent, typeof i7.DomainsComponent, typeof i8.ProjectItemsComponent, typeof i9.BuildsComponent, typeof i10.RecentActivitiesComponent, typeof i11.FormCardComponent, typeof i12.ProjectNameComponent, typeof i13.RootDirectoryComponent, typeof i14.BaseFormComponent, typeof i15.BaseFormTestComponent, typeof i16.GitAuthComponent, typeof i17.SourceControlFormControlsComponent, typeof i18.AppsFlowComponent, typeof i19.DevOpsComponent, typeof i20.DFSModifiersComponent, typeof i21.NpmPackageSelectComponent, typeof i22.FlowToolComponent, typeof i23.ThreeColumnComponent, typeof i24.SlottedCardComponent, typeof i25.ProjectInfoCardComponent, typeof i26.AnalyticsCardComponent, typeof i27.FeedCardSmComponent, typeof i28.GhControlComponent, typeof i29.MainFeedCardComponent, typeof i30.TwoColumnHeaderComponent, typeof i31.CardCarouselComponent, typeof i32.SecurityToggleComponent, typeof i33.ProcessorDetailsFormComponent, typeof i34.SourceControlFormComponent, typeof i35.BuildPipelineFormComponent, typeof i36.DevopsSourceControlFormComponent, typeof i37.SourceControlDialogComponent, typeof i38.BuildPipelineDialogComponent, typeof i39.EditApplicationFormComponent, typeof i40.BreadcrumbComponent, typeof i41.CustomDomainDialogComponent, typeof i42.EditApplicationDialogComponent, typeof i43.NewApplicationDialogComponent, typeof i44.ProcessorDetailsDialogComponent, typeof i45.SkeletonFeedCardComponent, typeof i46.UpgradeDialogComponent, typeof i47.EmulatedDevicesToggleComponent]>;
|
|
65
62
|
static ɵinj: i0.ɵɵInjectorDeclaration<ApplicationsFlowModule>;
|
|
66
63
|
}
|
|
@@ -10,7 +10,6 @@ import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export interface BPDialogData {
|
|
12
12
|
devopsActionLookup: string;
|
|
13
|
-
doaName: string;
|
|
14
13
|
environment: EaCEnvironmentAsCode;
|
|
15
14
|
environmentLookup: string;
|
|
16
15
|
}
|
|
@@ -27,7 +26,6 @@ export declare class BuildPipelineDialogComponent implements OnInit {
|
|
|
27
26
|
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, eacSvc: EaCService, data: BPDialogData, snackBar: MatSnackBar);
|
|
28
27
|
ngOnInit(): void;
|
|
29
28
|
CloseDialog(): void;
|
|
30
|
-
DeleteDevOpsAction(): void;
|
|
31
29
|
HandleResponseEvent(event: Status): void;
|
|
32
30
|
SaveBuildPipeline(): void;
|
|
33
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
@@ -12,7 +12,6 @@ export interface SCDialogData {
|
|
|
12
12
|
environment: EaCEnvironmentAsCode;
|
|
13
13
|
environmentLookup: string;
|
|
14
14
|
scLookup: string;
|
|
15
|
-
scName: string;
|
|
16
15
|
}
|
|
17
16
|
export declare class SourceControlDialogComponent implements OnInit {
|
|
18
17
|
dialogRef: MatDialogRef<SourceControlDialogComponent>;
|
|
@@ -27,7 +26,6 @@ export declare class SourceControlDialogComponent implements OnInit {
|
|
|
27
26
|
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
|
|
28
27
|
ngOnInit(): void;
|
|
29
28
|
CloseDialog(): void;
|
|
30
|
-
DeleteSourceControl(): void;
|
|
31
29
|
HandleSaveStatusEvent(event: Status): void;
|
|
32
30
|
SaveSourceControl(): void;
|
|
33
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
3
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
4
|
+
import { ProjectService } from '../../services/project.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FlowToolComponent implements OnInit {
|
|
7
|
+
protected injector: Injector;
|
|
8
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
9
|
+
protected projectService: ProjectService;
|
|
10
|
+
State: ApplicationsFlowState;
|
|
11
|
+
KrakynData: any;
|
|
12
|
+
SideMenuItems: any;
|
|
13
|
+
Title: string;
|
|
14
|
+
TabMenuItems: Array<{
|
|
15
|
+
Label: string;
|
|
16
|
+
Target: string;
|
|
17
|
+
Class?: string;
|
|
18
|
+
}>;
|
|
19
|
+
constructor(injector: Injector, appsFlowSvc: ApplicationsFlowService, projectService: ProjectService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Import tool data
|
|
23
|
+
*/
|
|
24
|
+
protected importData(): void;
|
|
25
|
+
protected handleStateChange(): Promise<void>;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowToolComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowToolComponent, "lcu-flow-tool", never, {}, {}, never, never>;
|
|
28
|
+
}
|
package/lib/elements/{feed-header/feed-header.component.d.ts → gh-control/gh-control.component.d.ts}
RENAMED
|
@@ -1,30 +1,28 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { FeedItemAction } from '../../models/user-feed.model';
|
|
4
3
|
import { EaCService } from '../../services/eac.service';
|
|
5
4
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class
|
|
6
|
+
export declare class GhControlComponent implements OnInit {
|
|
8
7
|
protected eacSvc: EaCService;
|
|
9
8
|
protected dialog: MatDialog;
|
|
10
|
-
SourceControlLookup: string;
|
|
11
9
|
get ActiveEnvironmentLookup(): string;
|
|
12
|
-
get FeedHeaderActions(): Array<FeedItemAction>;
|
|
13
10
|
get State(): ApplicationsFlowState;
|
|
14
|
-
|
|
11
|
+
InputLabel: string;
|
|
15
12
|
SkeletonEffect: string;
|
|
16
13
|
protected selectedBtn: string;
|
|
17
14
|
value: string;
|
|
18
15
|
constructor(eacSvc: EaCService, dialog: MatDialog);
|
|
19
16
|
ngOnInit(): void;
|
|
20
17
|
ngAfterViewInit(): void;
|
|
21
|
-
|
|
18
|
+
CreateFeatureBranch(): void;
|
|
19
|
+
OpenIssue(): void;
|
|
20
|
+
CreatePullRequest(): void;
|
|
22
21
|
CreateNewApp(): void;
|
|
23
|
-
OpenFHDialog(modalType: string, modalHeader: string): void;
|
|
24
22
|
RouteToPath(path: string): void;
|
|
25
23
|
Submit(): void;
|
|
26
24
|
protected addSelectBtn(): void;
|
|
27
25
|
protected removeSelectedBtn(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GhControlComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GhControlComponent, "lcu-gh-control", never, {}, {}, never, never>;
|
|
30
28
|
}
|
|
@@ -21,7 +21,7 @@ export declare class MainFeedCardComponent implements OnInit {
|
|
|
21
21
|
ngOnInit(): void;
|
|
22
22
|
CalculateTimelapse(timestamp: Date): string;
|
|
23
23
|
HandleAction(action: FeedItemAction): void;
|
|
24
|
-
OpenSourceControlDialog(scLookup: string
|
|
24
|
+
OpenSourceControlDialog(scLookup: string): void;
|
|
25
25
|
SafeHtml(html: string): SafeHtml;
|
|
26
26
|
protected handleRefresh(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { BaseResponse, Status } from '@lcu/common';
|
|
2
2
|
export declare class UserFeedResponse extends BaseResponse {
|
|
3
|
-
Actions: Array<FeedItemAction>;
|
|
4
3
|
Items: Array<FeedItem>;
|
|
5
4
|
SourceControlLookups: Array<string>;
|
|
6
5
|
}
|
|
@@ -43,19 +42,3 @@ export declare class FeedItemTab {
|
|
|
43
42
|
};
|
|
44
43
|
Title: string;
|
|
45
44
|
}
|
|
46
|
-
export declare class FeedEntry {
|
|
47
|
-
ActionIcon: string;
|
|
48
|
-
ActionLink: string;
|
|
49
|
-
ActionText: string;
|
|
50
|
-
Avatar: string;
|
|
51
|
-
Content: string;
|
|
52
|
-
ExpiresAt: Date;
|
|
53
|
-
Organization: string;
|
|
54
|
-
Repositroy: string;
|
|
55
|
-
SourceBranch: string;
|
|
56
|
-
SourceControlLookup: string;
|
|
57
|
-
Subtitle: string;
|
|
58
|
-
TargetBranch: string;
|
|
59
|
-
Title: string;
|
|
60
|
-
Type: string;
|
|
61
|
-
}
|
|
@@ -3,7 +3,6 @@ import { LCUServiceSettings } from '@lcu/common';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
5
5
|
import { UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
6
|
-
import { FeedEntry } from '../models/user-feed.model';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class ApplicationsFlowService {
|
|
9
8
|
protected http: HttpClient;
|
|
@@ -12,8 +11,11 @@ export declare class ApplicationsFlowService {
|
|
|
12
11
|
constructor(http: HttpClient, settings: LCUServiceSettings);
|
|
13
12
|
ConfigureDevOpsAction(actionLookup: string): Observable<object>;
|
|
14
13
|
CreateRepository(organization: string, repoName: string): Observable<object>;
|
|
14
|
+
DeleteApplication(appLookup: string): Observable<object>;
|
|
15
|
+
DeleteDevOpsAction(doaLookup: string): Observable<object>;
|
|
16
|
+
DeleteProject(projectLookup: string): Observable<object>;
|
|
17
|
+
DeleteSourceControl(scLookup: string): Observable<object>;
|
|
15
18
|
EnsureUserEnterprise(): Observable<object>;
|
|
16
|
-
EnterpriseAsCodeRemovals(removals: EnterpriseAsCode): Observable<object>;
|
|
17
19
|
GetActiveEnterprise(): Observable<object>;
|
|
18
20
|
HasValidConnection(): Observable<object>;
|
|
19
21
|
ListProjects(): Observable<object>;
|
|
@@ -24,11 +26,10 @@ export declare class ApplicationsFlowService {
|
|
|
24
26
|
ListRepositories(organization: string): Observable<object>;
|
|
25
27
|
LoadEnterpriseAsCode(): Observable<object>;
|
|
26
28
|
LoadProjectHostingDetails(): Observable<object>;
|
|
27
|
-
LoadUserFeed(page: number, pageSize: number, project: string, applications: string[]): Observable<object>;
|
|
28
29
|
SaveEnterpriseAsCode(eac: EnterpriseAsCode): Observable<object>;
|
|
29
30
|
SetActiveEnterprise(activeEntLookup: string): Observable<object>;
|
|
30
|
-
SubmitFeedEntry(entry: FeedEntry): Observable<object>;
|
|
31
31
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Observable<object>;
|
|
32
|
+
LoadUserFeed(page: number, pageSize: number, project: string, applications: string[]): Observable<object>;
|
|
32
33
|
protected loadHeaders(): {
|
|
33
34
|
[header: string]: string | string[];
|
|
34
35
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ProjectService } from './project.service';
|
|
2
2
|
import { ApplicationsFlowState, UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
3
3
|
import { EaCApplicationAsCode, EaCDataToken, EaCDFSModifier, EaCEnvironmentAsCode, EaCProjectAsCode, EnterpriseAsCode } from '@semanticjs/common';
|
|
4
|
-
import {
|
|
4
|
+
import { FeedItem } from '../models/user-feed.model';
|
|
5
5
|
import { HttpClient } from '@angular/common/http';
|
|
6
6
|
import { Status } from '@lcu/common';
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
@@ -12,10 +12,9 @@ export declare class SaveApplicationAsCodeEventRequest {
|
|
|
12
12
|
ProjectLookup?: string;
|
|
13
13
|
}
|
|
14
14
|
export declare class SaveDFSModifierEventRequest {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
ProjectLookups?: Array<string>;
|
|
15
|
+
Modifier: EaCDFSModifier;
|
|
16
|
+
ModifierLookup: string;
|
|
17
|
+
ProjectLookup?: string;
|
|
19
18
|
}
|
|
20
19
|
export declare class SaveEnvironmentAsCodeEventRequest {
|
|
21
20
|
EnterpriseDataTokens?: {
|
|
@@ -36,13 +35,11 @@ export declare class EaCService {
|
|
|
36
35
|
State: ApplicationsFlowState;
|
|
37
36
|
constructor(projectService: ProjectService, http: HttpClient);
|
|
38
37
|
CheckUserFeedItem(feedItem: FeedItem): Observable<object>;
|
|
39
|
-
DeleteApplication(appLookup: string, appName: string): Promise<
|
|
40
|
-
DeleteDevOpsAction(doaLookup: string
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
DeleteSourceControl(srcLookup: string, srcName: string): Promise<Status>;
|
|
38
|
+
DeleteApplication(appLookup: string, appName: string): Promise<void>;
|
|
39
|
+
DeleteDevOpsAction(doaLookup: string): Promise<void>;
|
|
40
|
+
DeleteProject(projectLookup: string): Promise<void>;
|
|
41
|
+
DeleteSourceControl(scLookup: string): Promise<void>;
|
|
44
42
|
EnsureUserEnterprise(): Promise<void>;
|
|
45
|
-
EnterpriseAsCodeRemovals(eac: EnterpriseAsCode): Promise<Status>;
|
|
46
43
|
GetActiveEnterprise(): Promise<void>;
|
|
47
44
|
LoadUserFeed(page: number, pageSize: number): Promise<void>;
|
|
48
45
|
GenerateRoutedApplications(applications: {
|
|
@@ -63,7 +60,6 @@ export declare class EaCService {
|
|
|
63
60
|
SetActiveEnterprise(entLookup: any): Promise<void>;
|
|
64
61
|
SetCreatingProject(creatingProject: boolean): Promise<void>;
|
|
65
62
|
SetEditProjectSettings(projectLookup: string): Promise<void>;
|
|
66
|
-
SubmitFeedEntry(entry: FeedEntry): Promise<Status>;
|
|
67
63
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Promise<void>;
|
|
68
64
|
protected handleSaveApplication(req: SaveApplicationAsCodeEventRequest): Promise<Status>;
|
|
69
65
|
protected handleSaveDFSModifier(req: SaveDFSModifierEventRequest): Promise<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Status } from '@lcu/common';
|
|
2
2
|
import { EaCApplicationAsCode, EnterpriseAsCode } from '@semanticjs/common';
|
|
3
3
|
import { ApplicationsFlowState, UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
4
4
|
import { ApplicationsFlowService } from './applications-flow.service';
|
|
5
|
-
import {
|
|
5
|
+
import { FeedItem } from '../models/user-feed.model';
|
|
6
6
|
import { ActivatedRoute } from '@angular/router';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class ProjectService {
|
|
@@ -11,8 +11,11 @@ export declare class ProjectService {
|
|
|
11
11
|
CreatingProject: boolean;
|
|
12
12
|
EditingProjectLookup: string;
|
|
13
13
|
constructor(appsFlowSvc: ApplicationsFlowService, activatedRoute: ActivatedRoute);
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
DeleteApplication(state: ApplicationsFlowState, appLookup: string): Promise<EnterpriseAsCode>;
|
|
15
|
+
DeleteDevOpsAction(state: ApplicationsFlowState, doaLookup: string): Promise<EnterpriseAsCode>;
|
|
16
|
+
DeleteProject(state: ApplicationsFlowState, projectLookup: string): Promise<EnterpriseAsCode>;
|
|
17
|
+
DeleteSourceControl(state: ApplicationsFlowState, scLookup: string): Promise<EnterpriseAsCode>;
|
|
18
|
+
EnsureUserEnterprise(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
|
|
16
19
|
GenerateRoutedApplications(applications: {
|
|
17
20
|
[lookup: string]: EaCApplicationAsCode;
|
|
18
21
|
}, state: ApplicationsFlowState): {
|
|
@@ -29,7 +32,6 @@ export declare class ProjectService {
|
|
|
29
32
|
SaveEnterpriseAsCode(state: ApplicationsFlowState, eac: EnterpriseAsCode): Promise<Status>;
|
|
30
33
|
SetCreatingProject(creatingProject: boolean): void;
|
|
31
34
|
SetEditProjectSettings(state: ApplicationsFlowState, projectLookup: string): Promise<any>;
|
|
32
|
-
SubmitFeedEntry(state: ApplicationsFlowState, entry: FeedEntry): Promise<Status>;
|
|
33
35
|
ToggleCreateProject(): void;
|
|
34
36
|
UnpackLowCodeUnit(state: ApplicationsFlowState, req: UnpackLowCodeUnitRequest): Promise<EnterpriseAsCode>;
|
|
35
37
|
protected loadApplicationsForFeed(state: ApplicationsFlowState, paramMap: any): {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
2
|
-
import { FeedItem
|
|
2
|
+
import { FeedItem } from '../models/user-feed.model';
|
|
3
3
|
export declare class ApplicationsFlowState {
|
|
4
4
|
ActiveEnterpriseLookup?: string;
|
|
5
5
|
EaC?: EnterpriseAsCode;
|
|
@@ -8,7 +8,6 @@ export declare class ApplicationsFlowState {
|
|
|
8
8
|
Lookup: string;
|
|
9
9
|
}>;
|
|
10
10
|
Feed?: Array<FeedItem>;
|
|
11
|
-
FeedActions?: Array<FeedItemAction>;
|
|
12
11
|
FeedSourceControlLookups?: Array<string>;
|
|
13
12
|
GitHub?: GitHubSetupState;
|
|
14
13
|
HostingDetails?: ProjectHostingDetails;
|