(
row: ConnectionRow,
)
| 2811 | // two distinct inputs yields one entry per variable. OAuth connections refresh |
| 2812 | // first (always single-input → `{ token: <access> }`). |
| 2813 | const resolveConnectionValues = ( |
| 2814 | row: ConnectionRow, |
| 2815 | ): Effect.Effect<Record<string, string | null>, StorageFailure | CredentialResolutionError> => |
| 2816 | Effect.gen(function* () { |
| 2817 | const provider = credentialProviders.get(row.provider); |
| 2818 | if (!provider) { |
| 2819 | return yield* new CredentialProviderNotRegisteredError({ |
| 2820 | provider: ProviderKey.make(row.provider), |
| 2821 | }); |
| 2822 | } |
| 2823 | // OAuth connections refresh their access token before resolving when |
| 2824 | // it has expired (or is within the skew window). |
| 2825 | const expiresAt = row.expires_at == null ? null : Number(row.expires_at); |
| 2826 | if (row.oauth_client != null && shouldRefreshToken({ expiresAt })) { |
| 2827 | const access = yield* refreshConnectionToken(row, provider); |
| 2828 | return { [PRIMARY_INPUT_VARIABLE]: access }; |
| 2829 | } |
| 2830 | const out: Record<string, string | null> = {}; |
| 2831 | for (const [variable, itemId] of Object.entries(connectionItemIds(row))) { |
| 2832 | out[variable] = yield* provider.get(ProviderItemId.make(itemId)); |
| 2833 | } |
| 2834 | return out; |
| 2835 | }).pipe( |
| 2836 | // CredentialProviderNotRegisteredError is part of CredentialResolution |
| 2837 | // for ctx.connections.resolveValue's StorageFailure channel — fold it. |
| 2838 | Effect.catchTag("CredentialProviderNotRegisteredError", (err) => |
| 2839 | Effect.fail( |
| 2840 | new StorageError({ |
| 2841 | message: `Credential provider "${err.provider}" is not registered.`, |
| 2842 | cause: err, |
| 2843 | }), |
| 2844 | ), |
| 2845 | ), |
| 2846 | ); |
| 2847 | |
| 2848 | /** Re-mint an OAuth connection's access token unconditionally, ignoring the |
| 2849 | * stored expiry. Drives the reactive path: the upstream just rejected the |
no test coverage detected