mirror of
https://github.com/we-promise/sure.git
synced 2026-05-25 21:44:56 +00:00
* feat(api): expose provider connection health * fix(api): harden provider health review paths * fix(api): refine provider health responses * test(api): align provider health docs key scope * fix(api): clarify provider connection status * fix(api): batch provider connection sync status * fix(api): polish provider connection status review feedback * fix(api): correct provider connection summaries
18 lines
459 B
Ruby
18 lines
459 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.extract! provider_connection,
|
|
:id,
|
|
:provider,
|
|
:provider_type,
|
|
:name,
|
|
:status,
|
|
:requires_update,
|
|
:credentials_configured,
|
|
:scheduled_for_deletion,
|
|
:pending_account_setup,
|
|
:institution,
|
|
:accounts,
|
|
:sync,
|
|
:created_at,
|
|
:updated_at
|