@sap/artifact-management-types 1.36.2 → 1.37.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.
|
|
3
|
+
"version": "1.37.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.
|
|
13
|
+
"@sap/artifact-management-base-types": "1.37.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"gulp": "4.0.2"
|
|
@@ -76,7 +76,7 @@ export default interface ProjectApi {
|
|
|
76
76
|
/**
|
|
77
77
|
* Get contents of mta.yaml file
|
|
78
78
|
*/
|
|
79
|
-
getManifest(logger?: IChildLogger): Promise<any>;
|
|
79
|
+
getManifest(options?: MtaGeneratorSettings, logger?: IChildLogger): Promise<any>;
|
|
80
80
|
/**
|
|
81
81
|
* Get summary of application deployment
|
|
82
82
|
*/
|
|
@@ -55,7 +55,7 @@ export default class ProjectImpl implements ProjectApi {
|
|
|
55
55
|
getDetailInfo(type: KeyIn<typeof ItemType>, ref: string, entityPath?: string, options?: ItemDetailInfoOptions, logger?: IChildLogger): Promise<Item | undefined>;
|
|
56
56
|
prepareForRun(options?: string[] | undefined, logger?: IChildLogger): Promise<void>;
|
|
57
57
|
buildManifest(options?: MtaGeneratorSettings, logger?: IChildLogger): Promise<void>;
|
|
58
|
-
getManifest(logger?: IChildLogger): Promise<any>;
|
|
58
|
+
getManifest(options?: MtaGeneratorSettings, logger?: IChildLogger): Promise<any>;
|
|
59
59
|
build(options?: MtaGeneratorSettings, logger?: IChildLogger): Promise<void>;
|
|
60
60
|
kymaDeploy(kymaNS?: string, tag?: string, dockerNS?: string): Promise<void>;
|
|
61
61
|
deploy(logger?: IChildLogger): Promise<void>;
|