Skip to content

Commit fe3bbee

Browse files
committed
fixed timeout name collision
Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent cf1d42c commit fe3bbee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/2_generate-definitions.ts

+4
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ function prepareSchema(schema: any, path: string[] = ['#'], parentTitle: string
109109
if (parentTitle.trim()) {
110110
const title = !isItemWithAdditionalProperties ? parent : path.includes('switch') ? 'case' : 'item';
111111
newSchema.title = toPascalCase(`${parentTitle} ${title}`);
112+
}
113+
if (path.join('/') == '#/properties/timeout') {
114+
newSchema.title = 'WorkflowTimeout';
112115
} else {
113116
newSchema.title = toPascalCase(
114117
path
@@ -181,6 +184,7 @@ function mutateSchema(schema: any, path: string[] = ['#']): any {
181184
*/
182185
async function generate(srcFile: string, destFile: string): Promise<void> {
183186
const options: Partial<Options> = {
187+
// prefere `prepareSchema` to set a title rather than `customName` otherwise the next step (validation pointers generation) will fail
184188
customName: (schema: JSONSchema) /*, keyNameFromDefinition: string | undefined)*/ => {
185189
if (schema.$id?.includes('serverlessworkflow.io')) {
186190
return 'Workflow';

0 commit comments

Comments
 (0)