@backstage/plugin-scaffolder-backend-module-cookiecutter 0.0.0-nightly-2022122206 → 0.0.0-nightly-20220216022224

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 CHANGED
@@ -1,11 +1,50 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-cookiecutter
2
2
 
3
- ## 0.0.0-nightly-2022122206
3
+ ## 0.0.0-nightly-20220216022224
4
+
5
+ ### Minor Changes
6
+
7
+ - 661594bf43: Updated to the latest version of `@backstage/plugin-scaffolder-backend`, meaning the `TemplateAction` now exposes the precise input type rather than `any`.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.0.0-nightly-20220216022224
13
+ - @backstage/errors@0.0.0-nightly-20220216022224
14
+ - @backstage/integration@0.0.0-nightly-20220216022224
15
+ - @backstage/plugin-scaffolder-backend@0.0.0-nightly-20220216022224
16
+
17
+ ## 0.1.11
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/backend-common@0.10.7
23
+ - @backstage/plugin-scaffolder-backend@0.15.24
24
+
25
+ ## 0.1.11-next.0
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ - @backstage/backend-common@0.10.7-next.0
31
+ - @backstage/plugin-scaffolder-backend@0.15.24-next.0
32
+
33
+ ## 0.1.10
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies
38
+ - @backstage/plugin-scaffolder-backend@0.15.23
39
+ - @backstage/backend-common@0.10.6
40
+
41
+ ## 0.1.10-next.1
4
42
 
5
43
  ### Patch Changes
6
44
 
7
45
  - Updated dependencies
8
- - @backstage/plugin-scaffolder-backend@0.0.0-nightly-2022122206
46
+ - @backstage/backend-common@0.10.6-next.0
47
+ - @backstage/plugin-scaffolder-backend@0.15.23-next.1
9
48
 
10
49
  ## 0.1.10-next.0
11
50
 
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  import * as _backstage_plugin_scaffolder_backend from '@backstage/plugin-scaffolder-backend';
3
3
  import { UrlReader, ContainerRunner } from '@backstage/backend-common';
4
+ import { JsonObject } from '@backstage/types';
4
5
  import { ScmIntegrations } from '@backstage/integration';
5
6
 
6
7
  /**
@@ -16,6 +17,13 @@ declare function createFetchCookiecutterAction(options: {
16
17
  reader: UrlReader;
17
18
  integrations: ScmIntegrations;
18
19
  containerRunner: ContainerRunner;
19
- }): _backstage_plugin_scaffolder_backend.TemplateAction<any>;
20
+ }): _backstage_plugin_scaffolder_backend.TemplateAction<{
21
+ url: string;
22
+ targetPath?: string | undefined;
23
+ values: JsonObject;
24
+ copyWithoutRender?: string[] | undefined;
25
+ extensions?: string[] | undefined;
26
+ imageName?: string | undefined;
27
+ }>;
20
28
 
21
29
  export { createFetchCookiecutterAction };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
3
3
  "description": "A module for the scaffolder backend that lets you template projects using cookiecutter",
4
- "version": "0.0.0-nightly-2022122206",
4
+ "version": "0.0.0-nightly-20220216022224",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -20,10 +20,10 @@
20
20
  "clean": "backstage-cli clean"
21
21
  },
22
22
  "dependencies": {
23
- "@backstage/backend-common": "^0.10.5",
24
- "@backstage/errors": "^0.2.0",
25
- "@backstage/integration": "^0.7.2",
26
- "@backstage/plugin-scaffolder-backend": "^0.0.0-nightly-2022122206",
23
+ "@backstage/backend-common": "^0.0.0-nightly-20220216022224",
24
+ "@backstage/errors": "^0.0.0-nightly-20220216022224",
25
+ "@backstage/integration": "^0.0.0-nightly-20220216022224",
26
+ "@backstage/plugin-scaffolder-backend": "^0.0.0-nightly-20220216022224",
27
27
  "@backstage/config": "^0.1.13",
28
28
  "@backstage/types": "^0.1.1",
29
29
  "command-exists": "^1.2.9",
@@ -32,7 +32,7 @@
32
32
  "yn": "^4.0.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@backstage/cli": "^0.0.0-nightly-2022122206",
35
+ "@backstage/cli": "^0.0.0-nightly-20220216022224",
36
36
  "@types/fs-extra": "^9.0.1",
37
37
  "@types/mock-fs": "^4.13.0",
38
38
  "@types/jest": "^26.0.7",