@@ -97,7 +97,10 @@ export function createCli<R extends AnyRouter>({router, ...params}: TrpcCliParam
97
97
} ,
98
98
} ,
99
99
} ,
100
- getPojoInput : parsedCliParams => JSON . parse ( parsedCliParams . options . input as string ) as { } ,
100
+ getPojoInput : parsedCliParams => {
101
+ if ( parsedCliParams . options . input == null ) return parsedCliParams . options . input
102
+ return JSON . parse ( parsedCliParams . options . input as string ) as { }
103
+ } ,
101
104
} ,
102
105
incompatiblePairs : [ ] ,
103
106
type,
@@ -182,7 +185,7 @@ export function createCli<R extends AnyRouter>({router, ...params}: TrpcCliParam
182
185
} )
183
186
184
187
const unusedFlagAliases : Record < string , string > = { ...meta . aliases ?. flags }
185
- Object . entries ( flagJsonSchemaProperties ) . forEach ( ( [ propertyKey , propertyValue ] ) => {
188
+ const addOptionForProperty = ( [ propertyKey , propertyValue ] : [ string , JsonSchema7Type ] ) => {
186
189
const description = getDescription ( propertyValue )
187
190
188
191
const longOption = `--${ kebabCase ( propertyKey ) } `
@@ -356,7 +359,19 @@ export function createCli<R extends AnyRouter>({router, ...params}: TrpcCliParam
356
359
)
357
360
358
361
command . addOption ( option )
359
- } )
362
+ }
363
+
364
+ if (
365
+ 'additionalProperties' in procedureInputs . optionsJsonSchema &&
366
+ procedureInputs . optionsJsonSchema . additionalProperties !== false
367
+ ) {
368
+ program . allowUnknownOption ( )
369
+ program . allowExcessArguments ( )
370
+ command . allowUnknownOption ( )
371
+ command . allowExcessArguments ( )
372
+ }
373
+
374
+ Object . entries ( flagJsonSchemaProperties ) . forEach ( addOptionForProperty )
360
375
361
376
const invalidFlagAliases = Object . entries ( unusedFlagAliases ) . map ( ( [ flag , alias ] ) => `${ flag } : ${ alias } ` )
362
377
if ( invalidFlagAliases . length ) {
@@ -368,6 +383,7 @@ export function createCli<R extends AnyRouter>({router, ...params}: TrpcCliParam
368
383
program . __ran ||= [ ]
369
384
program . __ran . push ( command )
370
385
const options = command . opts ( )
386
+ // console.dir({options, args}, {depth: null})
371
387
372
388
if ( args . at ( - 2 ) !== options ) {
373
389
// This is a code bug and not recoverable. Will hopefully never happen but if commander totally changes their API this will break
0 commit comments