feat: Add support for private files to file module (#8169)

This commit is contained in:
Stevche Radevski
2024-07-18 09:46:10 +02:00
committed by GitHub
parent 76173afdfc
commit c58a35f0c0
11 changed files with 98 additions and 63 deletions
@@ -7,6 +7,7 @@ type UploadFilesStepInput = {
filename: string
mimeType: string
content: string
access: "public" | "private"
}[]
}
@@ -7,6 +7,7 @@ type WorkflowInput = {
filename: string
mimeType: string
content: string
access: "public" | "private"
}[]
}