@backstage/plugin-scaffolder-backend 0.15.13 → 0.15.17
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/CHANGELOG.md +46 -0
- package/assets/nunjucks.js.txt +10385 -0
- package/config.d.ts +12 -12
- package/dist/index.cjs.js +394 -194
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -4
- package/package.json +19 -15
package/config.d.ts
CHANGED
|
@@ -28,30 +28,30 @@ export interface Config {
|
|
|
28
28
|
* The commit message used when new components are created.
|
|
29
29
|
*/
|
|
30
30
|
defaultCommitMessage?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated Replaced by parameters for the publish:github action
|
|
33
|
+
*/
|
|
31
34
|
github?: {
|
|
32
35
|
[key: string]: string;
|
|
33
|
-
/**
|
|
34
|
-
* The visibility to set on created repositories.
|
|
35
|
-
*/
|
|
36
|
-
visibility?: 'public' | 'internal' | 'private';
|
|
37
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated Use the Gitlab integration instead
|
|
39
|
+
*/
|
|
38
40
|
gitlab?: {
|
|
39
41
|
api: { [key: string]: string };
|
|
40
|
-
/**
|
|
41
|
-
* The visibility to set on created repositories.
|
|
42
|
-
*/
|
|
43
|
-
visibility?: 'public' | 'internal' | 'private';
|
|
44
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* @deprecated Use the Azure integration instead
|
|
45
|
+
*/
|
|
45
46
|
azure?: {
|
|
46
47
|
baseUrl: string;
|
|
47
48
|
api: { [key: string]: string };
|
|
48
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Use the Bitbucket integration instead
|
|
52
|
+
*/
|
|
49
53
|
bitbucket?: {
|
|
50
54
|
api: { [key: string]: string };
|
|
51
|
-
/**
|
|
52
|
-
* The visibility to set on created repositories.
|
|
53
|
-
*/
|
|
54
|
-
visibility?: 'public' | 'private';
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
}
|