-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sync-status): [nan-2207] add connection_id to response (#3224)
<!-- Describe the problem and your solution --> Currently, we can request sync statuses from all connection IDs, but we don't know to which connection they belong to, making them unusable. This adds the `connection_id` to the response: ``` { "syncs": [ { "id": "4d8069c7-71d7-4147-b36a-01b7c0327718", "connection_id": "u-1", "type": "INITIAL", "nextScheduledSyncAt": null, "name": "fake-data", "status": "PAUSED", "frequency": "every 5m", "recordCount": { "Test2": 0 } } ] } ``` Updates docs to reflect the update. <!-- Issue ticket number and link (if applicable) --> NAN-2207 <!-- Testing instructions (skip if just adding/editing providers) -->
- Loading branch information
1 parent
531357b
commit 70a5daa
Showing
5 changed files
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters