@firestartr/cli 1.43.1-snapshot-1 → 1.43.1-snapshot-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/build/index.js +66673 -71727
- package/build/packages/catalog_common/src/features/tarballs.d.ts +1 -1
- package/build/packages/features_preparer/src/index.d.ts +1 -2
- package/build/packages/features_preparer/src/installer.d.ts +1 -2
- package/build/packages/features_renderer/src/traceability.d.ts +1 -0
- package/build/packages/github/src/branches.d.ts +4 -4
- package/package.json +1 -1
- package/build/packages/features_renderer/src/trazability.d.ts +0 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare function
|
1
|
+
export declare function getFeatureZipDownloadPath(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,9 +1,8 @@
|
|
1
|
-
import {
|
1
|
+
import { 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;
|
7
6
|
prepareFeature: typeof prepareFeature;
|
8
7
|
};
|
9
8
|
export default _default;
|
@@ -1,5 +1,4 @@
|
|
1
|
-
export declare function listFeatures(repo?: string, owner?: string): Promise<string[]>;
|
2
1
|
export declare function getFeatureConfig(featureName: string, version: string, featureOwner: any, // -> cr
|
3
2
|
featureArgs?: any, repo?: string, owner?: string): Promise<any>;
|
4
3
|
export declare function prepareFeature(featureName: string, version: string, repo?: string, owner?: string): Promise<void>;
|
5
|
-
export declare function
|
4
|
+
export declare function downloadFeatureZip(repo: string, featureName: string, version: string, owner?: string): Promise<string>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function addTraceability(context: any, src: string, content: string): string;
|
@@ -428,7 +428,7 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
428
428
|
verified_at: string;
|
429
429
|
};
|
430
430
|
};
|
431
|
-
author:
|
431
|
+
author: {
|
432
432
|
name?: string;
|
433
433
|
email?: string;
|
434
434
|
login: string;
|
@@ -451,8 +451,8 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
451
451
|
site_admin: boolean;
|
452
452
|
starred_at?: string;
|
453
453
|
user_view_type?: string;
|
454
|
-
}
|
455
|
-
committer:
|
454
|
+
} | Record<string, never>;
|
455
|
+
committer: {
|
456
456
|
name?: string;
|
457
457
|
email?: string;
|
458
458
|
login: string;
|
@@ -475,7 +475,7 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
475
475
|
site_admin: boolean;
|
476
476
|
starred_at?: string;
|
477
477
|
user_view_type?: string;
|
478
|
-
}
|
478
|
+
} | Record<string, never>;
|
479
479
|
parents: {
|
480
480
|
sha: string;
|
481
481
|
url: string;
|
package/package.json
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
export declare function addTrazability(context: any, src: string, content: string): string;
|