From 89024796e4dc4f476d1eda06714408ac4337d86c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduard=20Bardaj=C3=AD=20Puig?= Date: Wed, 2 Oct 2024 15:15:24 +0100 Subject: [PATCH] Rename type --- src/request/types/walletMethods.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request/types/walletMethods.ts b/src/request/types/walletMethods.ts index 15b6317..07cd9cc 100644 --- a/src/request/types/walletMethods.ts +++ b/src/request/types/walletMethods.ts @@ -13,7 +13,7 @@ export const permissionWithoutClientId = v.variant('type', [ v.omit(permissions.resources.account.accountPermissionSchema, ['clientId']), v.omit(permissions.resources.wallet.walletPermissionSchema, ['clientId']), ]); -export type PermissionsWithoutClientId = v.InferOutput; +export type PermissionWithoutClientId = v.InferOutput; export const requestPermissionsMethodName = 'wallet_requestPermissions'; export const requestPermissionsParamsSchema = v.nullish(v.array(permissionWithoutClientId));