@sap/artifact-management-types 1.17.2 → 1.18.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.17.2",
3
+ "version": "1.18.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.16.0"
13
+ "@sap/artifact-management-base-types": "1.18.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "gulp": "4.0.2"
package/src/index.d.ts CHANGED
@@ -4,5 +4,6 @@ export { default as ProjectImpl } from './project-api/ProjectImpl';
4
4
  export { default as WorkspaceImpl } from './project-api/WorkspaceImpl';
5
5
  export { default as ItemWatcherApi, ItemWatcherType } from './project-api/ItemWatcherApi';
6
6
  export { default as AutoBuilder } from './project-api/AutoBuilder';
7
+ export { default as CommandExecutor } from './project-api/CommandExecutor';
7
8
  export * from './project-api/buildServiceInfo';
8
9
  export * from '@sap/artifact-management-base-types';
@@ -0,0 +1,5 @@
1
+ declare class CommandExecutorClass {
2
+ execute(command: string, ...params: any[]): Promise<any>;
3
+ }
4
+ declare const CommandExecutor: CommandExecutorClass;
5
+ export default CommandExecutor;
@@ -1,2 +1 @@
1
- #!/usr/bin/env node
2
1
  export declare function cli(): Promise<void>;