feat(core): Allow setting folder destination when transferring workflow ownership (#14935)

This commit is contained in:
Ricardo Espinoza
2025-04-28 09:35:02 -04:00
committed by GitHub
parent 0a2b740063
commit dbffcdc2ff
5 changed files with 91 additions and 4 deletions

View File

@@ -4,4 +4,5 @@ import { Z } from 'zod-class';
export class TransferWorkflowBodyDto extends Z.class({
destinationProjectId: z.string(),
shareCredentials: z.array(z.string()).optional(),
destinationParentFolderId: z.string().optional(),
}) {}