@powersync/web 1.38.6 → 1.38.7
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/dist/worker/SharedSyncImplementation.umd.js +8 -3
- package/dist/worker/SharedSyncImplementation.umd.js.map +1 -1
- package/dist/worker/WASQLiteDB.umd.js +8 -3
- package/dist/worker/WASQLiteDB.umd.js.map +1 -1
- package/lib/package.json +2 -2
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -3844,7 +3844,7 @@ class SyncStatus {
|
|
|
3844
3844
|
});
|
|
3845
3845
|
}
|
|
3846
3846
|
/**
|
|
3847
|
-
* All sync streams currently being tracked in
|
|
3847
|
+
* All sync streams currently being tracked in the database.
|
|
3848
3848
|
*
|
|
3849
3849
|
* This returns null when the database is currently being opened and we don't have reliable information about all
|
|
3850
3850
|
* included streams yet.
|
|
@@ -12709,7 +12709,7 @@ function requireDist () {
|
|
|
12709
12709
|
|
|
12710
12710
|
var distExports = requireDist();
|
|
12711
12711
|
|
|
12712
|
-
var version = "1.57.
|
|
12712
|
+
var version = "1.57.1";
|
|
12713
12713
|
var PACKAGE = {
|
|
12714
12714
|
version: version};
|
|
12715
12715
|
|
|
@@ -14460,7 +14460,12 @@ class TriggerManagerImpl {
|
|
|
14460
14460
|
// destination table consistent.
|
|
14461
14461
|
await this.db.writeTransaction(async (tx) => {
|
|
14462
14462
|
const callbackResult = await options.onChange({
|
|
14463
|
-
|
|
14463
|
+
execute: (query, params) => tx.execute(query, params),
|
|
14464
|
+
executeBatch: (query, params) => tx.executeBatch(query, params),
|
|
14465
|
+
executeRaw: (query, params) => tx.executeRaw(query, params),
|
|
14466
|
+
get: (query, params) => tx.get(query, params),
|
|
14467
|
+
getAll: (query, params) => tx.getAll(query, params),
|
|
14468
|
+
getOptional: (query, params) => tx.getOptional(query, params),
|
|
14464
14469
|
destinationTable: destination,
|
|
14465
14470
|
withDiff: async (query, params, options) => {
|
|
14466
14471
|
// Wrap the query to expose the destination table
|