From 2e65f7ffc0fa360bbd211d41fac8384c240848cc Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Fri, 18 Apr 2025 14:41:39 +0300 Subject: [PATCH] chore(types): small tsdoc change to file service (#12240) --- packages/core/types/src/file/common.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/core/types/src/file/common.ts b/packages/core/types/src/file/common.ts index 31fe4ba532..9b436bea71 100644 --- a/packages/core/types/src/file/common.ts +++ b/packages/core/types/src/file/common.ts @@ -36,7 +36,12 @@ export interface UploadFileUrlDTO { */ url: string /** - * The key of the file. + * The file's key allowing you to later + * identify the file in the third-party + * system. For example, the S3 Module Provider + * returns the file's key in S3, whereas the + * Local File Module Provider returns the file's + * path. */ key: string }