@backstage/plugin-scaffolder-common 1.1.1 → 1.2.0-next.0

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,5 +1,25 @@
1
1
  # @backstage/plugin-scaffolder-common
2
2
 
3
+ ## 1.2.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1ff817b3f0: add entity metadata to the template info type
8
+
9
+ ## 1.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/catalog-model@1.1.0
15
+
16
+ ## 1.1.2-next.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/catalog-model@1.1.0-next.0
22
+
3
23
  ## 1.1.1
4
24
 
5
25
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { UserEntity, Entity, KindValidator } from '@backstage/catalog-model';
1
+ import { EntityMeta, UserEntity, Entity, KindValidator } from '@backstage/catalog-model';
2
2
  import { JsonObject, JsonValue } from '@backstage/types';
3
3
 
4
4
  /**
@@ -16,6 +16,15 @@ declare type TemplateInfo = {
16
16
  * Where the template is stored, so we can resolve relative paths for things like `fetch:template` paths.
17
17
  */
18
18
  baseUrl?: string;
19
+ /**
20
+ * the Template entity
21
+ */
22
+ entity?: {
23
+ /**
24
+ * The metadata of the Template
25
+ */
26
+ metadata: EntityMeta;
27
+ };
19
28
  };
20
29
  /**
21
30
  * An individual step of a scaffolder task, as stored in the database.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-common",
3
3
  "description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
4
- "version": "1.1.1",
4
+ "version": "1.2.0-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -39,12 +39,12 @@
39
39
  "url": "https://github.com/backstage/backstage/issues"
40
40
  },
41
41
  "dependencies": {
42
- "@backstage/catalog-model": "^1.0.3",
42
+ "@backstage/catalog-model": "^1.1.0",
43
43
  "@backstage/types": "^1.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.17.2"
46
+ "@backstage/cli": "^0.18.2-next.0"
47
47
  },
48
- "gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee",
48
+ "gitHead": "c6c0b1978a7ab4d29d813996c56beb7e6b48a268",
49
49
  "module": "dist/index.esm.js"
50
50
  }