@sap/artifact-management-types 1.35.0 → 1.36.1
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.
|
|
3
|
+
"version": "1.36.1",
|
|
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.
|
|
13
|
+
"@sap/artifact-management-base-types": "1.36.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"gulp": "4.0.2"
|
|
@@ -54,6 +54,8 @@ export default class CFProjectBuilder implements ProjectBuilder {
|
|
|
54
54
|
getOverviewApplicationId(): Promise<string>;
|
|
55
55
|
private generateOverviewApplication;
|
|
56
56
|
private generateURLFromMetadataService;
|
|
57
|
+
private getURLFromHtml5List;
|
|
58
|
+
getHtml5AppName(): Promise<string>;
|
|
57
59
|
private generateURLFromHtml5RepoService;
|
|
58
60
|
private modifyMtx;
|
|
59
61
|
}
|
|
@@ -9,6 +9,7 @@ export default class CapModuleReader extends ModuleReader {
|
|
|
9
9
|
requiredFilePatterns: string[];
|
|
10
10
|
};
|
|
11
11
|
itemTags: string[];
|
|
12
|
+
testTag: string;
|
|
12
13
|
itemReaders: ({
|
|
13
14
|
matchConditions: {
|
|
14
15
|
requiredFilePatterns: string[];
|
|
@@ -40,5 +41,6 @@ export default class CapModuleReader extends ModuleReader {
|
|
|
40
41
|
private addUnboundFunctionItems;
|
|
41
42
|
private addUnboundActionItems;
|
|
42
43
|
private addEventItems;
|
|
44
|
+
private getExtenalServices;
|
|
43
45
|
}
|
|
44
46
|
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ProjectFileSystem, ModuleData, ProjectEntityReaderReadOptions } from '@sap/artifact-management-base-types';
|
|
2
|
+
import CapModuleReader from './CapModuleReader';
|
|
3
|
+
export default class CapSampleDataModuleReader extends CapModuleReader {
|
|
4
|
+
getType(): string;
|
|
5
|
+
matchConditions: {
|
|
6
|
+
requiredFilePatterns: string[];
|
|
7
|
+
};
|
|
8
|
+
itemReaders: {
|
|
9
|
+
matchConditions: {
|
|
10
|
+
requiredFilePatterns: string[];
|
|
11
|
+
};
|
|
12
|
+
types: string[];
|
|
13
|
+
tags: string[];
|
|
14
|
+
read: (options: ProjectEntityReaderReadOptions) => Promise<import("@sap/artifact-management-base").Item[]>;
|
|
15
|
+
}[];
|
|
16
|
+
read({ fs }: {
|
|
17
|
+
fs: ProjectFileSystem;
|
|
18
|
+
}): Promise<ModuleData | undefined>;
|
|
19
|
+
}
|
|
@@ -11,6 +11,7 @@ export default class CalculationViewItemReader {
|
|
|
11
11
|
private getExposedColumns;
|
|
12
12
|
private getParsedXML;
|
|
13
13
|
private getNameAndNamespace;
|
|
14
|
+
private getEntityDetails;
|
|
14
15
|
getDetails({ fs, matchedFiles }: ProjectEntityReaderReadOptions): Promise<Item[]>;
|
|
15
16
|
static getDetail(fs: ProjectFileSystem, filePath: string): Promise<ViewModel | null>;
|
|
16
17
|
static viewModelToItem(viewModel: ViewModel, file: string): Item;
|