File tree 2 files changed +17
-5
lines changed
2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -788,7 +788,7 @@ describe('RetoolRPC', () => {
788
788
789
789
const result = await fn ( { } , context ) ;
790
790
791
- expectTypeOf ( result ) . toEqualTypeOf < { a ?: number } > ( )
791
+ expectTypeOf ( result . a ) . toEqualTypeOf < number | undefined > ( )
792
792
} )
793
793
794
794
} )
Original file line number Diff line number Diff line change @@ -36,11 +36,17 @@ export type ArgumentType = 'string' | 'boolean' | 'number' | 'dict' | 'json'
36
36
export type Argument = {
37
37
/** The type of the argument. */
38
38
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
+ */
40
43
array ?: boolean
41
44
/** The description of the argument. */
42
45
description ?: string
43
- /** Specifies whether the argument is required. */
46
+ /**
47
+ * Specifies whether the argument is required.
48
+ * @default false
49
+ */
44
50
required ?: boolean
45
51
}
46
52
@@ -68,10 +74,16 @@ export type TransformedArgument<TArg extends Argument> = TArg['array'] extends t
68
74
? Array < ArgumentTypeMap < TArg > >
69
75
: ArgumentTypeMap < TArg >
70
76
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
+
71
83
/** Represents a map of argument names to argument types. */
72
- export type TransformedArguments < TArgs extends Arguments > = {
84
+ export type TransformedArguments < TArgs extends Arguments > = PartialBy < {
73
85
[ TArg in keyof TArgs ] : TransformedArgument < TArgs [ TArg ] >
74
- }
86
+ } , GetOptionalArgs < TArgs > >
75
87
76
88
/** Represents the specification for registering a Retool function. */
77
89
export type RegisterFunctionSpec < TArgs extends Arguments , TReturn > = {
You can’t perform that action at this time.
0 commit comments