chore(core-flows, types): change base64 comment fo files in TSDocs to binary (#12627)

* chore(core-flows, types): change base64 comment fo files in TSDocs to binary

* add in generatd
This commit is contained in:
Shahed Nasser
2025-05-27 18:35:39 +03:00
committed by GitHub
parent 562f6288cd
commit d155f492be
27 changed files with 53 additions and 53 deletions
@@ -23,7 +23,7 @@ export type UploadFilesStepInput = {
mimeType: string
/**
* The content of the file. For images, for example,
* use base64 encoding. For CSV files, use the CSV content.
* use binary string. For CSV files, use the CSV content.
*/
content: string
/**
@@ -48,7 +48,7 @@ export const uploadFilesStepId = "upload-files"
* {
* filename: "test.jpg",
* mimeType: "img/jpg",
* content: "base64Content",
* content: "binary-string",
* access: "public"
* }
* ]
@@ -27,7 +27,7 @@ export type UploadFilesWorkflowInput = {
mimeType: string
/**
* The content of the file. For images, for example,
* use base64 encoding. For CSV files, use the CSV content.
* use binary string. For CSV files, use the CSV content.
*/
content: string
/**
@@ -58,7 +58,7 @@ export const uploadFilesWorkflowId = "upload-files"
* {
* filename: "test.jpg",
* mimeType: "img/jpg",
* content: "base64Content",
* content: "binary-string",
* access: "public"
* }
* ]