(item: { type: SyncEntityType; sessionId: string; createId: string })
| 920 | } |
| 921 | |
| 922 | private async upsertBackfillCheckpoint(item: { type: SyncEntityType; sessionId: string; createId: string }) { |
| 923 | const { type, sessionId, createId } = item; |
| 924 | await this.syncCheckpointRepository.upsertAll([ |
| 925 | { |
| 926 | type, |
| 927 | sessionId, |
| 928 | ack: toAck({ |
| 929 | type, |
| 930 | updateId: createId, |
| 931 | extraId: COMPLETE_ID, |
| 932 | }), |
| 933 | }, |
| 934 | ]); |
| 935 | } |
| 936 | } |
no test coverage detected