@backstage/plugin-scaffolder-node-test-utils 0.0.0-nightly-20250310022211 → 0.0.0-nightly-20250312023513

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,14 +1,32 @@
1
1
  # @backstage/plugin-scaffolder-node-test-utils
2
2
 
3
- ## 0.0.0-nightly-20250310022211
3
+ ## 0.0.0-nightly-20250312023513
4
+
5
+ ### Minor Changes
6
+
7
+ - 36677bb: Use update `createTemplateAction` kinds
4
8
 
5
9
  ### Patch Changes
6
10
 
7
11
  - 09cf038: Got rid of most `@backstage/backend-common` usages
8
12
  - Updated dependencies
9
- - @backstage/plugin-scaffolder-node@0.0.0-nightly-20250310022211
10
- - @backstage/backend-plugin-api@0.0.0-nightly-20250310022211
11
- - @backstage/backend-test-utils@0.0.0-nightly-20250310022211
13
+ - @backstage/plugin-scaffolder-node@0.0.0-nightly-20250312023513
14
+ - @backstage/backend-test-utils@0.0.0-nightly-20250312023513
15
+ - @backstage/backend-plugin-api@0.0.0-nightly-20250312023513
16
+ - @backstage/types@1.2.1
17
+
18
+ ## 0.2.0-next.2
19
+
20
+ ### Minor Changes
21
+
22
+ - 36677bb: Use update `createTemplateAction` kinds
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @backstage/plugin-scaffolder-node@0.8.0-next.2
28
+ - @backstage/backend-test-utils@1.3.1-next.2
29
+ - @backstage/backend-plugin-api@1.2.1-next.1
12
30
  - @backstage/types@1.2.1
13
31
 
14
32
  ## 0.1.20-next.1
package/dist/index.d.ts CHANGED
@@ -7,6 +7,6 @@ import { ActionContext } from '@backstage/plugin-scaffolder-node';
7
7
  * @public
8
8
  * @param options - optional parameters to override default mock context
9
9
  */
10
- declare const createMockActionContext: <TActionInput extends JsonObject = JsonObject, TActionOutput extends JsonObject = JsonObject>(options?: Partial<ActionContext<TActionInput, TActionOutput>> | undefined) => ActionContext<TActionInput, TActionOutput>;
10
+ declare const createMockActionContext: <TActionInput extends JsonObject = JsonObject, TActionOutput extends JsonObject = JsonObject>(options?: Partial<ActionContext<TActionInput, TActionOutput>>) => ActionContext<TActionInput, TActionOutput>;
11
11
 
12
12
  export { createMockActionContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node-test-utils",
3
- "version": "0.0.0-nightly-20250310022211",
3
+ "version": "0.0.0-nightly-20250312023513",
4
4
  "backstage": {
5
5
  "role": "node-library",
6
6
  "pluginId": "scaffolder",
@@ -40,15 +40,15 @@
40
40
  "test": "backstage-cli package test"
41
41
  },
42
42
  "dependencies": {
43
- "@backstage/backend-plugin-api": "0.0.0-nightly-20250310022211",
44
- "@backstage/backend-test-utils": "0.0.0-nightly-20250310022211",
45
- "@backstage/plugin-scaffolder-node": "0.0.0-nightly-20250310022211",
43
+ "@backstage/backend-plugin-api": "0.0.0-nightly-20250312023513",
44
+ "@backstage/backend-test-utils": "0.0.0-nightly-20250312023513",
45
+ "@backstage/plugin-scaffolder-node": "0.0.0-nightly-20250312023513",
46
46
  "@backstage/types": "1.2.1",
47
47
  "winston": "^3.2.1",
48
48
  "winston-transport": "^4.7.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@backstage/cli": "0.0.0-nightly-20250310022211",
51
+ "@backstage/cli": "0.0.0-nightly-20250312023513",
52
52
  "@types/react": "^18.0.0",
53
53
  "react": "^18.0.2",
54
54
  "react-dom": "^18.0.2",
@@ -64,12 +64,5 @@
64
64
  "@types/react": {
65
65
  "optional": true
66
66
  }
67
- },
68
- "typesVersions": {
69
- "*": {
70
- "index": [
71
- "dist/index.d.ts"
72
- ]
73
- }
74
67
  }
75
68
  }