You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Optional JSON input to be given to the Actor.',
40
40
required: false,
41
-
allowStdin: true,
41
+
stdin: StdinMode.Stringified,
42
42
exclusive: ['input-file'],
43
43
}),
44
44
'input-file': Flags.string({
45
45
aliases: ['if'],
46
46
description:
47
47
'Optional path to a file with JSON input to be given to the Actor. The file must be a valid JSON file. You can also specify `-` to read from standard input.',
@@ -30,15 +30,15 @@ export class ActorsStartCommand extends ApifyCommand<typeof ActorsStartCommand>
30
30
char: 'i',
31
31
description: 'Optional JSON input to be given to the Actor.',
32
32
required: false,
33
-
allowStdin: true,
33
+
stdin: StdinMode.Stringified,
34
34
exclusive: ['input-file'],
35
35
}),
36
36
'input-file': Flags.string({
37
37
aliases: ['if'],
38
38
description:
39
39
'Optional path to a file with JSON input to be given to the Actor. The file must be a valid JSON file. You can also specify `-` to read from standard input.',
description: 'Optional JSON input to be given to the Actor.',
91
91
required: false,
92
-
allowStdin: true,
92
+
stdin: StdinMode.Stringified,
93
93
exclusive: ['input-file'],
94
94
}),
95
95
'input-file': Flags.string({
96
96
aliases: ['if'],
97
97
description:
98
98
'Optional path to a file with JSON input to be given to the Actor. The file must be a valid JSON file. You can also specify `-` to read from standard input.',
0 commit comments