@lowcodeunit/applications-flow-common 1.33.154-social-ish-angular-13-test → 1.33.157-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/lcu.api.mjs +12 -1
- package/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +7 -10
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +3 -5
- package/esm2020/lib/elements/projects/projects.component.mjs +1 -7
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +3 -3
- package/esm2020/lib/models/user-feed.model.mjs +12 -0
- package/esm2020/lib/services/eac.service.mjs +4 -1
- package/esm2020/lib/services/project.service.mjs +21 -1
- package/esm2020/lib/state/applications-flow.state.mjs +1 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +48 -22
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +44 -21
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lcu.api.d.ts +11 -0
- package/lib/models/user-feed.model.d.ts +41 -0
- package/lib/services/eac.service.d.ts +1 -0
- package/lib/services/project.service.d.ts +2 -0
- package/lib/state/applications-flow.state.d.ts +3 -0
- package/package.json +1 -1
package/lcu.api.d.ts
CHANGED
|
@@ -7,6 +7,17 @@ export * from './lib/elements/projects/controls/create-project-wizard/create-pro
|
|
|
7
7
|
export * from './lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component';
|
|
8
8
|
export * from './lib/models/dynamic-tabs.model';
|
|
9
9
|
export * from './lib/models/project-actions.model';
|
|
10
|
+
export * from './lib/models/user-feed.model';
|
|
11
|
+
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
12
|
+
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
13
|
+
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
14
|
+
export * from './lib/controls/processor-details-form/processor-details-form.component';
|
|
15
|
+
export * from './lib/controls/security-toggle/security-toggle.component';
|
|
16
|
+
export * from './lib/controls/source-control-form/source-control-form.component';
|
|
17
|
+
export * from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
18
|
+
export * from './lib/dialogs/custom-domain-dialog/custom-domain-dialog.component';
|
|
19
|
+
export * from './lib/dialogs/edit-application-dialog/edit-application-dialog.component';
|
|
20
|
+
export * from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
10
21
|
export * from './lib/services/project.service';
|
|
11
22
|
export * from './lib/services/npm.service';
|
|
12
23
|
export * from './lib/models/actions.model';
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { BaseResponse, Status } from '@lcu/common';
|
|
2
|
+
export declare class UserFeedResponse extends BaseResponse {
|
|
3
|
+
Items: Array<FeedItem>;
|
|
4
|
+
}
|
|
5
|
+
export declare class FeedItem {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
Actions: Array<FeedItemAction>;
|
|
8
|
+
Avatar: string;
|
|
9
|
+
Badge: string;
|
|
10
|
+
Contributors: Array<FeedItemContributor>;
|
|
11
|
+
IsPinned: boolean;
|
|
12
|
+
IsShortForm: boolean;
|
|
13
|
+
Status: Status;
|
|
14
|
+
Subtitle: string;
|
|
15
|
+
Tabs: Array<FeedItemTab>;
|
|
16
|
+
Timestamp: Date;
|
|
17
|
+
Title: string;
|
|
18
|
+
Type: string;
|
|
19
|
+
}
|
|
20
|
+
export declare class FeedItemContributor {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
Status: string;
|
|
23
|
+
StatusIcon: string;
|
|
24
|
+
UserImage: string;
|
|
25
|
+
Username: string;
|
|
26
|
+
}
|
|
27
|
+
export declare class FeedItemAction {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
Action: string;
|
|
30
|
+
ActionType: string;
|
|
31
|
+
Color: string;
|
|
32
|
+
Icon: string;
|
|
33
|
+
Text: string;
|
|
34
|
+
}
|
|
35
|
+
export declare class FeedItemTab {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
Data: {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
};
|
|
40
|
+
Title: string;
|
|
41
|
+
}
|
|
@@ -47,6 +47,7 @@ export declare class EaCService {
|
|
|
47
47
|
SetCreatingProject(creatingProject: boolean): Promise<void>;
|
|
48
48
|
SetEditProjectSettings(projectLookup: string): Promise<void>;
|
|
49
49
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Promise<void>;
|
|
50
|
+
UserFeed(page: number, pageSize: number): Promise<void>;
|
|
50
51
|
protected handleSaveApplication(req: SaveApplicationAsCodeEventRequest): Promise<void>;
|
|
51
52
|
protected handleSaveDFSModifier(req: SaveDFSModifierEventRequest): Promise<void>;
|
|
52
53
|
protected handleSaveEnvironment(req: SaveEnvironmentAsCodeEventRequest): Promise<void>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
2
2
|
import { ApplicationsFlowState, UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
3
3
|
import { ApplicationsFlowService } from './applications-flow.service';
|
|
4
|
+
import { FeedItem } from '../models/user-feed.model';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ProjectService {
|
|
6
7
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -22,6 +23,7 @@ export declare class ProjectService {
|
|
|
22
23
|
SetEditProjectSettings(state: ApplicationsFlowState, projectLookup: string): Promise<any>;
|
|
23
24
|
ToggleCreateProject(): void;
|
|
24
25
|
UnpackLowCodeUnit(state: ApplicationsFlowState, req: UnpackLowCodeUnitRequest): Promise<EnterpriseAsCode>;
|
|
26
|
+
UserFeed(page: number, pageSize: number, state: ApplicationsFlowState): Promise<Array<FeedItem>>;
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectService, never>;
|
|
26
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProjectService>;
|
|
27
29
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
2
|
+
import { FeedItem } from '../models/user-feed.model';
|
|
2
3
|
export declare class ApplicationsFlowState {
|
|
3
4
|
ActiveEnterpriseLookup?: string;
|
|
4
5
|
EaC?: EnterpriseAsCode;
|
|
@@ -6,9 +7,11 @@ export declare class ApplicationsFlowState {
|
|
|
6
7
|
Name: string;
|
|
7
8
|
Lookup: string;
|
|
8
9
|
}>;
|
|
10
|
+
Feed?: Array<FeedItem>;
|
|
9
11
|
GitHub?: GitHubSetupState;
|
|
10
12
|
HostingDetails?: ProjectHostingDetails;
|
|
11
13
|
Loading?: boolean;
|
|
14
|
+
LoadingFeed?: boolean;
|
|
12
15
|
Unleashed?: boolean;
|
|
13
16
|
UserEnterpriseLookup?: string;
|
|
14
17
|
constructor();
|