(_, data)
| 64 | const appId = await chooseApp(command, argv.id) |
| 65 | |
| 66 | const executeUpdate: ActionFunction<void, AppUpdateRequest, AppResponse> = async (_, data) => { |
| 67 | if (argv.authorize) { |
| 68 | await authorizeApp(data, argv.principal, argv.statement) |
| 69 | } |
| 70 | return command.client.apps.update(appId, data) |
| 71 | } |
| 72 | |
| 73 | const config: TableCommonOutputProducer<AppResponse> = { tableFieldDefinitions } |
| 74 | await inputAndOutputItem( |
no test coverage detected