(message: string)
| 1753 | Effect.gen(function* () { |
| 1754 | const owner = row.owner as Owner; |
| 1755 | const reauth = (message: string): CredentialResolutionError => |
| 1756 | new CredentialResolutionError({ |
| 1757 | owner, |
| 1758 | integration: IntegrationSlug.make(row.integration), |
| 1759 | name: ConnectionName.make(row.name), |
| 1760 | message, |
| 1761 | reauthRequired: true, |
| 1762 | }); |
| 1763 | |
| 1764 | // Load the backing app by the owner STORED on the connection (a Personal |
| 1765 | // connection may be backed by a shared Workspace app) — no derivation. |
no outgoing calls
no test coverage detected