@lowcodeunit/applications-flow-common 1.34.63-lets-get-social-ish → 1.34.64-krakyn-app

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.
Files changed (26) hide show
  1. package/esm2020/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +2 -4
  2. package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +3 -3
  3. package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +2 -2
  4. package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +9 -9
  5. package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +12 -12
  6. package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +2 -2
  7. package/esm2020/lib/elements/feed-header/feed-header.component.mjs +2 -2
  8. package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +6 -5
  9. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +2 -2
  10. package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +2 -4
  11. package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +6 -4
  12. package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +2 -4
  13. package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +2 -2
  14. package/esm2020/lib/services/applications-flow.service.mjs +2 -22
  15. package/esm2020/lib/services/eac.service.mjs +53 -13
  16. package/esm2020/lib/services/project.service.mjs +1 -81
  17. package/fesm2015/lowcodeunit-applications-flow-common.mjs +99 -162
  18. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
  19. package/fesm2020/lowcodeunit-applications-flow-common.mjs +97 -160
  20. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
  21. package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +2 -1
  22. package/lib/elements/main-feed-card/main-feed-card.component.d.ts +1 -1
  23. package/lib/services/applications-flow.service.d.ts +0 -4
  24. package/lib/services/eac.service.d.ts +5 -4
  25. package/lib/services/project.service.d.ts +0 -4
  26. package/package.json +1 -1
@@ -12,6 +12,7 @@ export interface SCDialogData {
12
12
  environment: EaCEnvironmentAsCode;
13
13
  environmentLookup: string;
14
14
  scLookup: string;
15
+ scName: string;
15
16
  }
16
17
  export declare class SourceControlDialogComponent implements OnInit {
17
18
  dialogRef: MatDialogRef<SourceControlDialogComponent>;
@@ -26,7 +27,7 @@ export declare class SourceControlDialogComponent implements OnInit {
26
27
  constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
27
28
  ngOnInit(): void;
28
29
  CloseDialog(): void;
29
- DeleteSourceControl(scLookup: string): void;
30
+ DeleteSourceControl(): void;
30
31
  HandleSaveStatusEvent(event: Status): void;
31
32
  SaveSourceControl(): void;
32
33
  static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
@@ -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): void;
24
+ OpenSourceControlDialog(scLookup: string, scName: string): void;
25
25
  SafeHtml(html: string): SafeHtml;
26
26
  protected handleRefresh(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
@@ -12,10 +12,6 @@ export declare class ApplicationsFlowService {
12
12
  constructor(http: HttpClient, settings: LCUServiceSettings);
13
13
  ConfigureDevOpsAction(actionLookup: string): Observable<object>;
14
14
  CreateRepository(organization: string, repoName: string): Observable<object>;
15
- DeleteApplication(appLookup: string): Observable<object>;
16
- DeleteDevOpsAction(doaLookup: string): Observable<object>;
17
- DeleteProject(projectLookup: string): Observable<object>;
18
- DeleteSourceControl(scLookup: string): Observable<object>;
19
15
  EnsureUserEnterprise(): Observable<object>;
20
16
  EnterpriseAsCodeRemovals(removals: EnterpriseAsCode): Observable<object>;
21
17
  GetActiveEnterprise(): Observable<object>;
@@ -36,10 +36,11 @@ export declare class EaCService {
36
36
  State: ApplicationsFlowState;
37
37
  constructor(projectService: ProjectService, http: HttpClient);
38
38
  CheckUserFeedItem(feedItem: FeedItem): Observable<object>;
39
- DeleteApplication(appLookup: string, appName: string): Promise<void>;
40
- DeleteDevOpsAction(doaLookup: string): Promise<void>;
41
- DeleteProject(projectLookup: string): Promise<void>;
42
- DeleteSourceControl(scLookup: string): Promise<void>;
39
+ DeleteApplication(appLookup: string, appName: string): Promise<Status>;
40
+ DeleteDevOpsAction(doaLookup: string, doaName: string): Promise<Status>;
41
+ DeleteModifier(modifierLookup: string, modifierName: string): Promise<Status>;
42
+ DeleteProject(projectLookup: string, projectName: string): Promise<Status>;
43
+ DeleteSourceControl(srcLookup: string, srcName: string): Promise<Status>;
43
44
  EnsureUserEnterprise(): Promise<void>;
44
45
  EnterpriseAsCodeRemovals(eac: EnterpriseAsCode): Promise<Status>;
45
46
  GetActiveEnterprise(): Promise<void>;
@@ -11,10 +11,6 @@ export declare class ProjectService {
11
11
  CreatingProject: boolean;
12
12
  EditingProjectLookup: string;
13
13
  constructor(appsFlowSvc: ApplicationsFlowService, activatedRoute: ActivatedRoute);
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
14
  EnsureUserEnterprise(state: ApplicationsFlowState): Promise<BaseResponse>;
19
15
  EnterpriseAsCodeRemovals(state: ApplicationsFlowState, eac: EnterpriseAsCode): Promise<Status>;
20
16
  GenerateRoutedApplications(applications: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowcodeunit/applications-flow-common",
3
- "version": "1.34.63-lets-get-social-ish",
3
+ "version": "1.34.64-krakyn-app",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },