@sap/artifact-management-types 1.14.2 → 1.15.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.14.2",
3
+ "version": "1.15.0",
4
4
  "description": "Type signatures for artifact management",
5
5
  "types": "./src/index.d.ts",
6
6
  "main": "./src/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "pack": "npm run modify-types-import && npm pack"
11
11
  },
12
12
  "dependencies": {
13
- "@sap/artifact-management-base-types": "1.14.2"
13
+ "@sap/artifact-management-base-types": "1.15.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "gulp": "4.0.2"
@@ -24,7 +24,6 @@ export default class CFProjectBuilder implements ProjectBuilder {
24
24
  */
25
25
  buildFs: ProjectFileSystem;
26
26
  constructor(project: Project, fs: ProjectFileSystem, useHeadlessGenerator?: boolean);
27
- private filterWorkflowModule;
28
27
  build(): Promise<void>;
29
28
  isApplicationSummaryFilePresent(): Promise<boolean>;
30
29
  buildV2(): Promise<void>;
@@ -50,4 +49,6 @@ export default class CFProjectBuilder implements ProjectBuilder {
50
49
  getApplicationLogURL(): Promise<string | undefined>;
51
50
  getOverviewApplicationId(): Promise<string>;
52
51
  private generateOverviewApplication;
52
+ private generateURLFromMetadataService;
53
+ private generateURLFromHtml5RepoService;
53
54
  }
@@ -8,5 +8,4 @@ export default class OverviewPageGenerator {
8
8
  private render;
9
9
  private getServicesTableData;
10
10
  private addRoutesToServiceInXsApp;
11
- private getWorkflowAppsData;
12
11
  }
@@ -1,7 +1,6 @@
1
1
  export declare const PLUGIN: {
2
2
  CAP: string;
3
3
  XSUAA: string;
4
- WORKFLOW: string;
5
4
  UI5: string;
6
5
  MDK: string;
7
6
  };
@@ -1,8 +0,0 @@
1
- import { KeyIn, Service, ModuleType, ModuleGeneratorContext, ModuleManifestGenerator, MtaModuleRequires, MtaModule } from '@sap/artifact-management-base-types';
2
- export default class WorkflowModuleGenerator implements ModuleManifestGenerator {
3
- getType(): KeyIn<typeof ModuleType>;
4
- provideResources(context: ModuleGeneratorContext): Promise<Service[]>;
5
- beforeBuildCommands(): Promise<string[]>;
6
- getModuleManifest(context: ModuleGeneratorContext): Promise<MtaModule | null>;
7
- requires(): MtaModuleRequires[];
8
- }
@@ -1,3 +0,0 @@
1
- import { Plugin } from '@sap/artifact-management-base-types';
2
- declare const WorkflowPlugin: Plugin;
3
- export default WorkflowPlugin;
@@ -1,12 +0,0 @@
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[]][]>;
9
- private getJson;
10
- private getServiceRefForWorkflow;
11
- private getServiceRef;
12
- }
@@ -1,24 +0,0 @@
1
- import { ProjectFileSystem, ModuleType, Item, ModuleReader, ModuleData, ProjectEntityReaderReadOptions, DetectionMechanism, KeyIn } from '@sap/artifact-management-base-types';
2
- export default class WorkflowModuleReader extends ModuleReader {
3
- getType(): KeyIn<typeof ModuleType>;
4
- getDetectionMechanism(): DetectionMechanism;
5
- itemTags: string[];
6
- itemReaders: {
7
- matchConditions: {
8
- requiredFilePatterns: string[];
9
- };
10
- types: string[];
11
- tags: string[];
12
- read: (options: ProjectEntityReaderReadOptions) => Promise<Item[]>;
13
- }[];
14
- tags: string[];
15
- read({ fs }: {
16
- fs: ProjectFileSystem;
17
- }): Promise<ModuleData | undefined>;
18
- isWorkflowFolder(fs: ProjectFileSystem): Promise<boolean>;
19
- static asPattern(extension: string): string;
20
- private asItems;
21
- private asItem;
22
- private asWorkflowItem;
23
- private addLink;
24
- }