@firestartr/cli 1.41.1-snapshot-4 → 1.41.1-snapshot-5
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.
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare function
|
1
|
+
export declare function getFeatureTarballDownloadPath(featureName: string, version: string): string;
|
2
2
|
export declare function removeFeatureTarball(featureName: string, version: string): void;
|
3
3
|
export declare function featureTarballExists(featureName: string, version: string): boolean;
|
4
4
|
export declare function getFeaturesExtractPath(featureName: string, version: string, options?: any): string;
|
@@ -1,8 +1,9 @@
|
|
1
|
-
import { getFeatureConfig, prepareFeature } from './installer';
|
1
|
+
import { listFeatures, getFeatureConfig, prepareFeature } from './installer';
|
2
2
|
import { renderFeature } from './renderer';
|
3
3
|
declare const _default: {
|
4
4
|
renderFeature: typeof renderFeature;
|
5
5
|
getFeatureConfig: typeof getFeatureConfig;
|
6
|
+
listFeatures: typeof listFeatures;
|
6
7
|
prepareFeature: typeof prepareFeature;
|
7
8
|
};
|
8
9
|
export default _default;
|
@@ -1,4 +1,5 @@
|
|
1
|
+
export declare function listFeatures(repo?: string, owner?: string): Promise<string[]>;
|
1
2
|
export declare function getFeatureConfig(featureName: string, version: string, featureOwner: any, // -> cr
|
2
3
|
featureArgs?: any, repo?: string, owner?: string): Promise<any>;
|
3
4
|
export declare function prepareFeature(featureName: string, version: string, repo?: string, owner?: string): Promise<void>;
|
4
|
-
export declare function
|
5
|
+
export declare function downloadFeatureTarball(repo: string, featureName: string, version: string, owner?: string): Promise<string>;
|