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