(message: string)
| 1514 | Effect.gen(function* () { |
| 1515 | const owner = row.owner as Owner; |
| 1516 | const reauth = (message: string): CredentialResolutionError => |
| 1517 | new CredentialResolutionError({ |
| 1518 | owner, |
| 1519 | integration: IntegrationSlug.make(row.integration), |
| 1520 | name: ConnectionName.make(row.name), |
| 1521 | message, |
| 1522 | reauthRequired: true, |
| 1523 | }); |
| 1524 | |
| 1525 | // Load the backing app by the owner STORED on the connection (a Personal |
| 1526 | // connection may be backed by a shared Workspace app) — no derivation. |
no outgoing calls
no test coverage detected