(info, env, from)
| 190 | return input.configure?.(info) ?? info |
| 191 | }, |
| 192 | async create(info, env, from) { |
| 193 | calls.create.push({ |
| 194 | info: structuredClone(info), |
| 195 | env: { ...env }, |
| 196 | from: from ? structuredClone(from) : undefined, |
| 197 | }) |
| 198 | await input.create?.(info, env, from) |
| 199 | }, |
| 200 | ...(input.list |
| 201 | ? { |
| 202 | async list() { |