feat: Add name column to Step model

This commit is contained in:
Faruk AYDIN
2025-01-06 16:42:00 +03:00
parent f9731824eb
commit bc87e18d3f
16 changed files with 58 additions and 2 deletions

View File

@@ -38,6 +38,14 @@ exports[`Step model > jsonSchema should have correct validations 1`] = `
"null",
],
},
"name": {
"maxLength": 255,
"minLength": 1,
"type": [
"string",
"null",
],
},
"parameters": {
"type": "object",
},