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:
@@ -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"
|
||||
* }
|
||||
* ]
|
||||
|
||||
Reference in New Issue
Block a user