From 4a8c58e905042187d7468afc92a845374ad944e9 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 22 Aug 2024 17:02:22 -0400 Subject: [PATCH] fix: Updated the response of `groups.list` from `any` to `GroupResponseItem[]` --- src/core/pinataSDK.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pinataSDK.ts b/src/core/pinataSDK.ts index 1c7a48e..391a89f 100644 --- a/src/core/pinataSDK.ts +++ b/src/core/pinataSDK.ts @@ -788,7 +788,7 @@ class FilterGroups { then( onfulfilled?: ((value: GroupResponseItem[]) => any) | null, - ): Promise { + ): Promise { return listGroups(this.config, this.query).then(onfulfilled); }