(message: string)
| 1486 | Effect.gen(function* () { |
| 1487 | const owner = row.owner as Owner; |
| 1488 | const reauth = (message: string): CredentialResolutionError => |
| 1489 | new CredentialResolutionError({ |
| 1490 | owner, |
| 1491 | integration: IntegrationSlug.make(row.integration), |
| 1492 | name: ConnectionName.make(row.name), |
| 1493 | message, |
| 1494 | reauthRequired: true, |
| 1495 | }); |
| 1496 | |
| 1497 | // Load the backing app by the owner STORED on the connection (a Personal |
| 1498 | // connection may be backed by a shared Workspace app) — no derivation. |
no outgoing calls
no test coverage detected