@lowcodeunit/applications-flow-common 1.33.300-lets-get-social-ish → 1.33.301-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.
@@ -29,7 +29,7 @@ export declare class ApplicationsFlowService {
29
29
  SaveEnterpriseAsCode(eac: EnterpriseAsCode): Observable<object>;
30
30
  SetActiveEnterprise(activeEntLookup: string): Observable<object>;
31
31
  UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Observable<object>;
32
- LoadUserFeed(page: number, pageSize: number): Observable<object>;
32
+ LoadUserFeed(page: number, pageSize: number, project: string, applications: string[]): Observable<object>;
33
33
  protected loadHeaders(): {
34
34
  [header: string]: string | string[];
35
35
  };
@@ -42,6 +42,13 @@ export declare class EaCService {
42
42
  EnsureUserEnterprise(): Promise<void>;
43
43
  GetActiveEnterprise(): Promise<void>;
44
44
  LoadUserFeed(page: number, pageSize: number): Promise<void>;
45
+ GenerateRoutedApplications(applications: {
46
+ [lookup: string]: EaCApplicationAsCode;
47
+ }): {
48
+ [route: string]: {
49
+ [lookup: string]: EaCApplicationAsCode;
50
+ };
51
+ };
45
52
  HasValidConnection(): Promise<void>;
46
53
  ListEnterprises(): Promise<void>;
47
54
  LoadEnterpriseAsCode(): Promise<void>;
@@ -1,30 +1,43 @@
1
1
  import { Status } from '@lcu/common';
2
- import { EnterpriseAsCode } from '@semanticjs/common';
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
5
  import { FeedItem } from '../models/user-feed.model';
6
+ import { ActivatedRoute } from '@angular/router';
6
7
  import * as i0 from "@angular/core";
7
8
  export declare class ProjectService {
8
9
  protected appsFlowSvc: ApplicationsFlowService;
10
+ protected activatedRoute: ActivatedRoute;
9
11
  CreatingProject: boolean;
10
12
  EditingProjectLookup: string;
11
- constructor(appsFlowSvc: ApplicationsFlowService);
13
+ constructor(appsFlowSvc: ApplicationsFlowService, activatedRoute: ActivatedRoute);
12
14
  DeleteApplication(state: ApplicationsFlowState, appLookup: string): Promise<EnterpriseAsCode>;
13
15
  DeleteDevOpsAction(state: ApplicationsFlowState, doaLookup: string): Promise<EnterpriseAsCode>;
14
16
  DeleteProject(state: ApplicationsFlowState, projectLookup: string): Promise<EnterpriseAsCode>;
15
17
  DeleteSourceControl(state: ApplicationsFlowState, scLookup: string): Promise<EnterpriseAsCode>;
16
18
  EnsureUserEnterprise(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
19
+ GenerateRoutedApplications(applications: {
20
+ [lookup: string]: EaCApplicationAsCode;
21
+ }, state: ApplicationsFlowState): {
22
+ [route: string]: {
23
+ [lookup: string]: EaCApplicationAsCode;
24
+ };
25
+ };
17
26
  GetActiveEnterprise(state: ApplicationsFlowState): Promise<void>;
18
- LoadUserFeed(page: number, pageSize: number, state: ApplicationsFlowState): Promise<Array<FeedItem>>;
19
27
  HasValidConnection(state: ApplicationsFlowState, forceEnsureUser?: boolean): Promise<EnterpriseAsCode>;
20
28
  ListEnterprises(state: ApplicationsFlowState): Promise<any[]>;
21
29
  LoadEnterpriseAsCode(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
30
+ LoadUserFeed(page: number, pageSize: number, state: ApplicationsFlowState): Promise<Array<FeedItem>>;
22
31
  SetActiveEnterprise(state: ApplicationsFlowState, activeEntLookup: string): Promise<EnterpriseAsCode>;
23
32
  SaveEnterpriseAsCode(state: ApplicationsFlowState, eac: EnterpriseAsCode): Promise<Status>;
24
33
  SetCreatingProject(creatingProject: boolean): void;
25
34
  SetEditProjectSettings(state: ApplicationsFlowState, projectLookup: string): Promise<any>;
26
35
  ToggleCreateProject(): void;
27
36
  UnpackLowCodeUnit(state: ApplicationsFlowState, req: UnpackLowCodeUnitRequest): Promise<EnterpriseAsCode>;
37
+ protected loadApplicationsForFeed(state: ApplicationsFlowState, paramMap: any): {
38
+ Applications: string[];
39
+ Project: any;
40
+ };
28
41
  static ɵfac: i0.ɵɵFactoryDeclaration<ProjectService, never>;
29
42
  static ɵprov: i0.ɵɵInjectableDeclaration<ProjectService>;
30
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowcodeunit/applications-flow-common",
3
- "version": "1.33.300-lets-get-social-ish",
3
+ "version": "1.33.301-lets-get-social-ish",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },