(body)
| 197 | |
| 198 | // generic |
| 199 | static bodyToOptions (body) { |
| 200 | return { |
| 201 | ...(body.id) && { id: body.id }, |
| 202 | ...(body.type) && { type: body.type }, |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | async createConfigCommand ({ positionalArgs, flags }) { |
| 207 | const { providerName, providerEntity, providerHostname } = this.constructor |
no outgoing calls
no test coverage detected