@sap/artifact-management-types 1.1.2 → 1.1.3
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,4 +1,4 @@
|
|
|
1
|
-
import { Project, ItemFilter, Tag, ItemType, ModuleData, ProjectData, KeyIn } from '@sap/artifact-management-base-types';
|
|
1
|
+
import { Project, ItemFilter, Tag, ItemType, ModuleData, ProjectData, KeyIn, ProjectFileSystem, Item } from '@sap/artifact-management-base-types';
|
|
2
2
|
import { ProjectInstance } from './ProjectInstance';
|
|
3
3
|
import ProjectApi from './ProjectApi';
|
|
4
4
|
import ItemWatcher from './ItemWatcher';
|
|
@@ -32,21 +32,21 @@ export default class ProjectImpl implements ProjectApi {
|
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
tryRead(): Promise<Project>;
|
|
35
|
-
fs():
|
|
35
|
+
fs(): ProjectFileSystem;
|
|
36
36
|
/**
|
|
37
37
|
* Read entities provided by the project
|
|
38
38
|
*
|
|
39
39
|
* @param filter
|
|
40
40
|
*/
|
|
41
|
-
readItems(filter?: ItemFilter, logger?: IChildLogger): Promise<
|
|
41
|
+
readItems(filter?: ItemFilter, logger?: IChildLogger): Promise<Item[]>;
|
|
42
42
|
/**
|
|
43
43
|
* Read detail information for the required type and ref provided by the project
|
|
44
44
|
*
|
|
45
45
|
* @param type
|
|
46
46
|
* @param ref
|
|
47
47
|
*/
|
|
48
|
-
getDetailInfo(type: KeyIn<typeof ItemType>, ref: string, entityPath?: string, logger?: IChildLogger): Promise<
|
|
49
|
-
run(options?: string[] | undefined, logger?: IChildLogger): Promise<
|
|
48
|
+
getDetailInfo(type: KeyIn<typeof ItemType>, ref: string, entityPath?: string, logger?: IChildLogger): Promise<Item | undefined>;
|
|
49
|
+
run(options?: string[] | undefined, logger?: IChildLogger): Promise<void>;
|
|
50
50
|
buildManifest(context?: PlatformContext, logger?: IChildLogger): Promise<void>;
|
|
51
51
|
getManifest(logger?: IChildLogger): Promise<any>;
|
|
52
52
|
build(context?: PlatformContext, logger?: IChildLogger): Promise<void>;
|