From dbf3e8709bea84baaf63c60adc772ff1c08e27b0 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Tue, 8 Jul 2025 18:25:48 +0200 Subject: [PATCH] update s3Types.d.ts --- typescript-client/s3Types.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/typescript-client/s3Types.d.ts b/typescript-client/s3Types.d.ts index 246ca61fea..4903edc8ff 100644 --- a/typescript-client/s3Types.d.ts +++ b/typescript-client/s3Types.d.ts @@ -1,4 +1,7 @@ -export type S3Object = { +export type S3Object = S3ObjectURI | S3ObjectRecord; + +export type S3ObjectURI = `s3://${string}/${string}`; +export type S3ObjectRecord = { s3: string; storage?: string; };