source-front: rewrite as native connector #2150
Open
+1,375
−5,730
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description:
The
source-front
connector was not working correctly as an import. Instead of troubleshooting the low-code Airbyte import, I chose to rewrite it as a native connector with only a subset of the streams. I focused on parent streams that seemed most important for the user's use case.Backwards compatibility with the single existing, broken capture was not a goal.
The version number has been incremented since the connector is changing from an Airbyte import to a native implementation. Last time I rewrote an import as a native connector, I kept the version number the same and ran into issues with the resource path pointers after deployment. Incrementing the version number should avoid the same issue this time.
Workflow steps:
(How does one use this feature, and how has it changed)
Documentation links affected:
Documentation should be created for this connector. I'll link the docs PR here once it's ready.
Notes for reviewers:
Tested on a local stack. Confirmed:
Some streams (primarily
conversations
andevents
can take a while to complete depending on how much data is in the user's Front account.Snapshot changes are expected due to this being a full connector rewrite.
This change is