@sap/artifact-management-types 1.1.3 → 1.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/artifact-management-types",
3
- "version": "1.1.3",
3
+ "version": "1.2.0",
4
4
  "description": "Type signatures for artifact management",
5
5
  "types": "./src/index.d.ts",
6
6
  "main": "./src/index.d.ts",
@@ -5,4 +5,5 @@ export default class OverviewPageGenerator {
5
5
  private render;
6
6
  private getServicesTableData;
7
7
  private addRoutesToServiceInXsApp;
8
+ private getWorkflowAppsData;
8
9
  }
@@ -1,3 +1,4 @@
1
1
  import { Plugin } from '@sap/artifact-management-base-types';
2
2
  declare const CapPlugin: Plugin;
3
3
  export default CapPlugin;
4
+ export { InfoList } from './InfoList';
@@ -1,3 +1,4 @@
1
1
  import { Plugin } from '@sap/artifact-management-base-types';
2
2
  declare const UI5Plugin: Plugin;
3
3
  export default UI5Plugin;
4
+ export { InfoList } from './InfoList';
@@ -0,0 +1,12 @@
1
+ import { ProjectFileSystem } from '@sap/artifact-management-base-types';
2
+ export default class WorkflowModuleParser {
3
+ private fs;
4
+ private path;
5
+ private json;
6
+ constructor(fs: ProjectFileSystem, path: string);
7
+ findTaskUIDependencies(): Promise<string[]>;
8
+ findSchemaDependencies(): Promise<[string, [string, boolean][]][]>;
9
+ private getJson;
10
+ private getServiceAndEntitiesForWorkflow;
11
+ private getServiceRef;
12
+ }
@@ -19,4 +19,6 @@ export default class WorkflowModuleReader extends ModuleReader {
19
19
  static asPattern(extension: string): string;
20
20
  private asItems;
21
21
  private asItem;
22
+ private asWorkflowItem;
23
+ private addLink;
22
24
  }
@@ -1,3 +1,4 @@
1
1
  import { Plugin } from '@sap/artifact-management-base-types';
2
2
  declare const XsSecurityPlugin: Plugin;
3
3
  export default XsSecurityPlugin;
4
+ export { InfoList } from './InfoList';
@@ -9,6 +9,7 @@ declare class ModuleInstance extends ProjectEntityInstance<ModuleData | undefine
9
9
  loadItemSets(moduleData: ModuleData | undefined): Promise<ItemSetInstance[]>;
10
10
  getData(): Promise<ModuleData | undefined>;
11
11
  getItemSets(): Promise<ItemSetInstance[]>;
12
+ getModuleType(): Promise<string>;
12
13
  getItems(): Promise<{
13
14
  items: Item[];
14
15
  info?: StateMessage[] | undefined;
@@ -12,6 +12,7 @@ export default class ProjectImpl implements ProjectApi {
12
12
  private watchClients;
13
13
  private watchManager?;
14
14
  private readModuleAsProject;
15
+ private cachedLaunchURL;
15
16
  constructor(path: string, readModuleAsProject?: boolean);
16
17
  autoBuild(logger?: IChildLogger): Promise<AutoBuilder>;
17
18
  projectInstance(): ProjectInstance;
@@ -54,4 +55,5 @@ export default class ProjectImpl implements ProjectApi {
54
55
  getProjectInfo(logger?: IChildLogger): Promise<ProjectData | undefined>;
55
56
  getModulesInfo(logger?: IChildLogger): Promise<ModuleData[]>;
56
57
  getProjectOverviewURL(logger?: IChildLogger): Promise<string | undefined>;
58
+ invalidate_cachedLaunchURL(): Promise<void>;
57
59
  }