(r: CliUpdateProjectResponse)
| 588 | } |
| 589 | |
| 590 | function renderUpdateText(r: CliUpdateProjectResponse): string { |
| 591 | return [ |
| 592 | `id: ${r.id}`, |
| 593 | `updatedFields: ${r.updatedFields?.join(', ') ?? '(none)'}`, |
| 594 | `updatedAt: ${r.updatedAt}`, |
| 595 | ].join('\n'); |
| 596 | } |
| 597 | |
| 598 | function localValidationError(message: string): ApiError { |
| 599 | return ApiError.fromEnvelope({ |