@sap/artifact-management-types 1.39.0 → 1.39.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.39.0",
3
+ "version": "1.39.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.39.0"
13
+ "@sap/artifact-management-base-types": "1.39.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "gulp": "4.0.2"
@@ -5,5 +5,5 @@ export default class PathUtil {
5
5
  * we need to find the correct root drive and we need to prefix the path with the correct root drive (C:, D: etc.)
6
6
  */
7
7
  static getLocationForWindows(path: string, rootPath: string): string;
8
- static getExternalServicePaths(fs: ProjectFileSystem): Promise<Set<string>>;
8
+ static getExternalServiceInfo(fs: ProjectFileSystem): Promise<Set<any>>;
9
9
  }