@sap-ux/project-access 1.10.1 → 1.10.2
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/dist/project/search.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export declare function getAppRootFromWebappPath(webappPath: string): Promise<st
|
|
|
23
23
|
* @param wsFolders - list of roots, either as vscode WorkspaceFolder[] or array of paths
|
|
24
24
|
* @returns - results as path to apps plus files already parsed, e.g. manifest.json
|
|
25
25
|
*/
|
|
26
|
-
export declare function findAllApps(wsFolders: WorkspaceFolder[] | string[] | undefined): Promise<AllAppResults[]>;
|
|
26
|
+
export declare function findAllApps(wsFolders: readonly WorkspaceFolder[] | string[] | undefined): Promise<AllAppResults[]>;
|
|
27
27
|
/**
|
|
28
28
|
* Find all requested Fiori artifacts like apps, adaptations, extensions, that are supported by Fiori tools, for a given list of roots (workspace folders).
|
|
29
29
|
*
|
|
@@ -33,7 +33,7 @@ export declare function findAllApps(wsFolders: WorkspaceFolder[] | string[] | un
|
|
|
33
33
|
* @returns - data structure containing the search results, for app e.g. as path to app plus files already parsed, e.g. manifest.json
|
|
34
34
|
*/
|
|
35
35
|
export declare function findFioriArtifacts(options: {
|
|
36
|
-
wsFolders?: WorkspaceFolder[] | string[];
|
|
36
|
+
wsFolders?: readonly WorkspaceFolder[] | string[];
|
|
37
37
|
artifacts: FioriArtifactTypes[];
|
|
38
38
|
}): Promise<FoundFioriArtifacts>;
|
|
39
39
|
//# sourceMappingURL=search.d.ts.map
|
package/dist/project/search.js
CHANGED