feat: add EventBlock type and refactor SyncConnectionRequest fields#112
Merged
feat: add EventBlock type and refactor SyncConnectionRequest fields#112
Conversation
…nnectionRequest fields
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR introduces the
EventBlocktype to the GraphQL schema and SDK, and refactors fields onSyncConnectionRequestto support the new event-driven ingestion architecture. These are primarily auto-generated type and query updates reflecting backend schema changes.Changes
GraphQL Schema & Generated Types (
clients/graphql/generated/graphql.ts)EventBlocktype definition to the generated GraphQL typesEventBlockin the schemaSDK Types (
sdk/types.gen.ts)SyncConnectionRequesttype fields to align with the new event-driven ingestion modelSDK Client (
sdk/sdk.gen.ts)Key Improvements
EventBlockas a first-class typeSyncConnectionRequestfields likely improve clarity and alignment with the new ingestion pipelineBreaking Changes
SyncConnectionRequestfields may require updates in any code that constructs or consumes this type. Consumers of the SDK should verify their usage ofSyncConnectionRequeststill compiles and behaves correctly.EventBlocktype is additive and should not break existing functionality.Testing Notes for Reviewers
SyncConnectionRequestfieldsEventBlocktype is correctly generated and matches the backend schematsc --noEmit) to ensure no downstream compilation errorsBrowser Compatibility
🤖 Generated with Claude Code
Branch Info:
feature/event-driven-ingestmainCo-Authored-By: Claude noreply@anthropic.com