(name: string)
| 505 | : `input${endpoint.operation.inputMode === "optional" ? "?" : ""}: ${prefix}Input, requestOptions?: RequestOptions` |
| 506 | const path = promisePath(endpoint.endpoint.path, endpoint.input) |
| 507 | const access = (name: string) => |
| 508 | `input${endpoint.operation.inputMode === "optional" ? "?." : ""}[${JSON.stringify(name)}]` |
| 509 | const part = (source: InputField["source"]) => { |
| 510 | const inputs = endpoint.input.filter((field) => field.source === source) |
| 511 | return inputs.length === 0 |