sdk hotfix

This commit is contained in:
Aiden McClelland
2025-02-12 17:11:54 -07:00
parent b88b24e231
commit 44aa3cc9b5
5 changed files with 15 additions and 18 deletions

View File

@@ -301,14 +301,12 @@ export class StartSdk<Manifest extends T.SDKManifest, Store> {
| Record<string, any>
| InputSpec<any, any>
| InputSpec<any, never>,
Type extends
ExtractInputSpecType<InputSpecType> = ExtractInputSpecType<InputSpecType>,
>(
id: Id,
metadata: MaybeFn<Omit<T.ActionMetadata, "hasInput">>,
inputSpec: InputSpecType,
getInput: GetInput<Type>,
run: Run<Type>,
getInput: GetInput<InputSpecType>,
run: Run<InputSpecType>,
) => Action.withInput(id, metadata, inputSpec, getInput, run),
/**
* @description Use this function to create an action that does not accept form input