From 4b3aef57578c173cd27a44cf667805124c48660e Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Tue, 25 Mar 2025 16:44:38 +0000 Subject: [PATCH] fix(types): support shorthand prop defs See https://github.com/PipedreamHQ/pipedream/blob/3aea15a61225ce3a782f9ef3563a9a3bf60ee788/components/pipedream/sources/new-scheduled-tasks/new-scheduled-tasks.mjs#L29C5-L29C23 --- types/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/src/index.ts b/types/src/index.ts index efcf1b25083d7..90fe47167e06b 100644 --- a/types/src/index.ts +++ b/types/src/index.ts @@ -258,7 +258,7 @@ export interface HttpRequestProp extends BasePropInterface { } export interface SourcePropDefinitions { - [name: string]: PropDefinitionReference | App | UserProp | InterfaceProp | ServiceDBProp | HttpRequestProp; + [name: string]: PropDefinitionReference | App | UserProp | InterfaceProp | ServiceDBProp | HttpRequestProp | ServiceDBProp["type"]; } export interface ActionPropDefinitions {