docs: digital product media content binary -> base64 as of v2.11.0 (#14497)

This commit is contained in:
420coupe
2026-01-13 11:53:42 -05:00
committed by GitHub
parent 00fc32bc37
commit d4173478f4

View File

@@ -851,7 +851,7 @@ export const POST = async (
files: input?.map((f) => ({
filename: f.originalname,
mimeType: f.mimetype,
content: f.buffer.toString("binary"),
content: f.buffer.toString("base64"),
access,
})),
},