@powersync/service-core 1.15.1 → 1.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -84,6 +84,9 @@ export interface SyncRulesBucketStorage extends ObserverClient<SyncRulesBucketSt
|
|
|
84
84
|
* Compute checksums for a given list of buckets.
|
|
85
85
|
*
|
|
86
86
|
* Returns zero checksums for any buckets not found.
|
|
87
|
+
*
|
|
88
|
+
* This may be slow, depending on the size of the buckets.
|
|
89
|
+
* The checksums are cached internally to compensate for this, but does not cover all cases.
|
|
87
90
|
*/
|
|
88
91
|
getChecksums(checkpoint: util.InternalOpId, buckets: string[]): Promise<util.ChecksumMap>;
|
|
89
92
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SyncRulesBucketStorage.js","sourceRoot":"","sources":["../../src/storage/SyncRulesBucketStorage.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SyncRulesBucketStorage.js","sourceRoot":"","sources":["../../src/storage/SyncRulesBucketStorage.ts"],"names":[],"mappings":"AAkTA,MAAM,CAAC,MAAM,yBAAyB,GAAsB;IAC1D,kBAAkB,EAAE,IAAI,GAAG,EAAU;IACrC,qBAAqB,EAAE,IAAI;IAC3B,uBAAuB,EAAE,IAAI,GAAG,EAAU;IAC1C,0BAA0B,EAAE,IAAI;CACjC,CAAC"}
|
package/package.json
CHANGED
|
@@ -111,6 +111,9 @@ export interface SyncRulesBucketStorage
|
|
|
111
111
|
* Compute checksums for a given list of buckets.
|
|
112
112
|
*
|
|
113
113
|
* Returns zero checksums for any buckets not found.
|
|
114
|
+
*
|
|
115
|
+
* This may be slow, depending on the size of the buckets.
|
|
116
|
+
* The checksums are cached internally to compensate for this, but does not cover all cases.
|
|
114
117
|
*/
|
|
115
118
|
getChecksums(checkpoint: util.InternalOpId, buckets: string[]): Promise<util.ChecksumMap>;
|
|
116
119
|
|