From fef1566b4650d7f8cc53baf46fae37fef9c4433c Mon Sep 17 00:00:00 2001 From: Thibaut Cuchet Date: Thu, 22 Feb 2024 16:52:30 +0100 Subject: [PATCH] fix: add baseUrl to SmartActionOptions --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index e775b68a..3a0a457c 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -332,6 +332,7 @@ export interface SmartActionOptions { fields?: SmartActionField[]; download?: boolean; endpoint?: string; + baseUrl?: string; httpMethod?: string; hooks?: SmartActionHooks; }