Skip to content

Commit

Permalink
Added SyncRejectedIds to allow time for migration
Browse files Browse the repository at this point in the history
  • Loading branch information
primus11 committed Jan 19, 2024
1 parent 3599f99 commit 3548886
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sync/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ export type SyncPullResult =

export type SyncIds = { [tableName: TableName<any>]: RecordId[] }

export type SyncRejectedIds = SyncIds

export type SyncPushArgs = $Exact<{ changes: SyncDatabaseChangeSet; lastPulledAt: Timestamp }>

export type SyncPushResult = $Exact<{
Expand Down
2 changes: 2 additions & 0 deletions src/sync/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export type SyncPullResult =

export type SyncIds = { [TableName<any>]: RecordId[] }

export type SyncRejectedIds = SyncIds

export type SyncPushArgs = $Exact<{ changes: SyncDatabaseChangeSet, lastPulledAt: Timestamp }>

export type SyncPushResult = $Exact<{
Expand Down

0 comments on commit 3548886

Please sign in to comment.