Skip to content

Commit a3e032d

Browse files
committed
fix it
1 parent 9423d21 commit a3e032d

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

javascript/src/rpc.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ describe('RetoolRPC', () => {
788788

789789
const result = await fn({}, context);
790790

791-
expectTypeOf(result).toEqualTypeOf<{ a?: number }>()
791+
expectTypeOf(result.a).toEqualTypeOf<number | undefined>()
792792
})
793793

794794
})

javascript/src/types.ts

+16-4
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,17 @@ export type ArgumentType = 'string' | 'boolean' | 'number' | 'dict' | 'json'
3636
export type Argument = {
3737
/** The type of the argument. */
3838
type: ArgumentType
39-
/** Specifies whether the argument is expected to be an array. */
39+
/**
40+
* Specifies whether the argument is expected to be an array.
41+
* @default false
42+
*/
4043
array?: boolean
4144
/** The description of the argument. */
4245
description?: string
43-
/** Specifies whether the argument is required. */
46+
/**
47+
* Specifies whether the argument is required.
48+
* @default false
49+
*/
4450
required?: boolean
4551
}
4652

@@ -68,10 +74,16 @@ export type TransformedArgument<TArg extends Argument> = TArg['array'] extends t
6874
? Array<ArgumentTypeMap<TArg>>
6975
: ArgumentTypeMap<TArg>
7076

77+
type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
78+
type GetOptionalArgs<TArgs extends Arguments> = {
79+
[TArg in keyof TArgs]: TArgs[TArg]['required'] extends true ? never : TArg
80+
}[keyof TArgs]
81+
82+
7183
/** Represents a map of argument names to argument types. */
72-
export type TransformedArguments<TArgs extends Arguments> = {
84+
export type TransformedArguments<TArgs extends Arguments> = PartialBy<{
7385
[TArg in keyof TArgs]: TransformedArgument<TArgs[TArg]>
74-
}
86+
}, GetOptionalArgs<TArgs>>
7587

7688
/** Represents the specification for registering a Retool function. */
7789
export type RegisterFunctionSpec<TArgs extends Arguments, TReturn> = {

0 commit comments

Comments
 (0)