Signed-off-by: Julian Pearce <git@julian.mp>
This commit is contained in:
Julian Pearce
2021-05-07 03:24:00 +01:00
committed by Julian Pearce
parent 67b16c4935
commit 10c008a3a6
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/catalog-model': patch
---
Renamed parameters to input in template schema
@@ -51,7 +51,7 @@ describe('templateEntityV1beta2Validator', () => {
id: 'fetch',
name: 'Fetch',
action: 'fetch:plan',
parameters: {
input: {
url: './template',
},
},
@@ -38,7 +38,7 @@ export interface TemplateEntityV1beta2 extends Entity {
id?: string;
name?: string;
action: string;
parameters?: JsonObject;
input?: JsonObject;
}>;
output?: { [name: string]: string };
};
@@ -125,7 +125,7 @@
"type": "string",
"description": "The name of the action to execute."
},
"parameters": {
"input": {
"type": "object",
"description": "A templated object describing the inputs to the action."
}