We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e577134 commit 149db50Copy full SHA for 149db50
.changeset/sharp-singers-search.md
@@ -1,5 +1,8 @@
1
---
2
'@powersync/common': minor
3
+'@powersync/web': minor
4
+'@powersync/node': minor
5
+'@powersync/react-native': minor
6
7
8
Report progress information about downloaded rows.
packages/common/src/client/sync/bucket/BucketStorageAdapter.ts
@@ -30,13 +30,12 @@ export interface SyncLocalDatabaseResult {
30
checkpointFailures?: string[];
31
}
32
33
-export type BucketOperationProgress = Record<
34
- string,
35
- {
36
- atLast: number;
37
- sinceLast: number;
38
- }
39
->;
+export type SavedProgress = {
+ atLast: number;
+ sinceLast: number;
+};
+
+export type BucketOperationProgress = Record<string, SavedProgress>;
40
41
export interface BucketChecksum {
42
bucket: string;
0 commit comments