Skip to content

Commit

Permalink
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/api/src/app/workflows-v2/generate-preview.e2e.ts
Original file line number Diff line number Diff line change
@@ -237,6 +237,7 @@ describe('Generate Preview', () => {
}
async function createWorkflowWithDigest() {
const createWorkflowDto: CreateWorkflowDto = {
tags: [],
__source: WorkflowCreationSourceEnum.EDITOR,
name: 'John',
workflowId: `john:${randomUUID()}`,
4 changes: 2 additions & 2 deletions packages/shared/src/dto/workflows/workflow-commons-fields.ts
Original file line number Diff line number Diff line change
@@ -59,10 +59,10 @@ export type StepDto = {
};

export type WorkflowCommonsFields = {
tags: string[];
active?: boolean;
name: string;
description?: string;
tags?: string[];
active?: boolean;
};

export type PreferencesResponseDto = {

0 comments on commit c02e1b2

Please sign in to comment.