@sap/artifact-management-types 1.2.0 → 1.3.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,14 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/artifact-management-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Type signatures for artifact management",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"main": "./src/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"compile": "tsc -p ./"
|
|
8
|
+
"compile": "tsc -p ./",
|
|
9
|
+
"modify-types-import": "npm i && gulp --gulpfile ../../gulpfile.js modifyTypesImport",
|
|
10
|
+
"pack": "npm run modify-types-import && npm pack"
|
|
9
11
|
},
|
|
10
12
|
"dependencies": {
|
|
11
|
-
"@sap/artifact-management-base-types": "^1.1.0"
|
|
13
|
+
"@sap/artifact-management-base-types": "^1.1.0",
|
|
14
|
+
"gulp": "4.0.2"
|
|
12
15
|
},
|
|
13
16
|
"keywords": [
|
|
14
17
|
"artifact-management-types",
|
|
Binary file
|
|
@@ -22,6 +22,7 @@ export default class CFProjectBuilder implements ProjectBuilder {
|
|
|
22
22
|
*/
|
|
23
23
|
buildFs: ProjectFileSystem;
|
|
24
24
|
constructor(project: Project, fs: ProjectFileSystem);
|
|
25
|
+
private filterWorkflowModule;
|
|
25
26
|
build(): Promise<void>;
|
|
26
27
|
generateManifest(): Promise<void>;
|
|
27
28
|
private addResources;
|
|
@@ -32,6 +32,8 @@ export default class CapModuleReader extends ModuleReader {
|
|
|
32
32
|
provideFromCds({ fs }: ProjectEntityReaderReadOptions): Promise<Item[]>;
|
|
33
33
|
detailInfo(fs: ProjectFileSystem, ref: string): Promise<Item | undefined>;
|
|
34
34
|
readCSV({ fs, matchedFiles }: ProjectEntityReaderReadOptions): Promise<Item[]>;
|
|
35
|
+
private getExternalServicePaths;
|
|
36
|
+
private getRef;
|
|
35
37
|
/**
|
|
36
38
|
* Get the service ref from service object.
|
|
37
39
|
* The method parses the service object and
|