From 4bb6b66788628c154b6f24f2a3df43e208db37df Mon Sep 17 00:00:00 2001 From: Matei Trandafir Date: Wed, 25 Sep 2024 00:46:16 +0300 Subject: [PATCH] fix: metadata field datasource type --- types/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 5b39d8ce..2d3431e2 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -710,7 +710,9 @@ declare module 'cloudinary' { mandatory?: boolean; default_value?: number; validation?: object; //there are 4 types, we need to discuss documentation team about it before implementing. - datasource?: DatasourceEntry; + datasource?: { + values: Array + }; default_disabled?: boolean; [futureKey: string]: any;