@syncular/tauri 0.15.44 → 0.15.46
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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* (`useRawSql`, `useMutation`, `usePresence`, …) work UNCHANGED against a
|
|
9
9
|
* Tauri app. It is the fourth host of one interface, after the direct
|
|
10
10
|
* `SyncClient`, the worker-leader `SyncClientHandle`, and the multi-tab
|
|
11
|
-
* follower
|
|
11
|
+
* follower.
|
|
12
12
|
*
|
|
13
13
|
* Every method forwards to the plugin's `syncular_command` command (the whole
|
|
14
14
|
* command surface in one JSON envelope — `{method, params}`), mirroring the FFI
|
|
@@ -112,7 +112,7 @@ export declare class TauriSyncClient {
|
|
|
112
112
|
rebootstrapLocalData(input: LocalDataRebootstrapInput): Promise<LocalDataRebootstrapResult>;
|
|
113
113
|
/**
|
|
114
114
|
* Replace the native transport's request headers at runtime — the auth
|
|
115
|
-
* rotation path
|
|
115
|
+
* rotation path. Pass the FULL header set (it replaces,
|
|
116
116
|
* it does not merge). HTTP requests use the new set from the next call;
|
|
117
117
|
* the realtime socket applies it on its next (re)connect.
|
|
118
118
|
*/
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* (`useRawSql`, `useMutation`, `usePresence`, …) work UNCHANGED against a
|
|
9
9
|
* Tauri app. It is the fourth host of one interface, after the direct
|
|
10
10
|
* `SyncClient`, the worker-leader `SyncClientHandle`, and the multi-tab
|
|
11
|
-
* follower
|
|
11
|
+
* follower.
|
|
12
12
|
*
|
|
13
13
|
* Every method forwards to the plugin's `syncular_command` command (the whole
|
|
14
14
|
* command surface in one JSON envelope — `{method, params}`), mirroring the FFI
|
|
@@ -408,7 +408,7 @@ export class TauriSyncClient {
|
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
410
410
|
* Replace the native transport's request headers at runtime — the auth
|
|
411
|
-
* rotation path
|
|
411
|
+
* rotation path. Pass the FULL header set (it replaces,
|
|
412
412
|
* it does not merge). HTTP requests use the new set from the next call;
|
|
413
413
|
* the realtime socket applies it on its next (re)connect.
|
|
414
414
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncular/tauri",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.46",
|
|
4
4
|
"description": "Tauri integration for the Syncular client",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Benjamin Kniffler",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"test": "bun test"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@syncular/client": "0.15.
|
|
51
|
+
"@syncular/client": "0.15.46"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@tauri-apps/api": ">=2.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@syncular/react": "0.15.
|
|
57
|
+
"@syncular/react": "0.15.46"
|
|
58
58
|
}
|
|
59
59
|
}
|
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* (`useRawSql`, `useMutation`, `usePresence`, …) work UNCHANGED against a
|
|
9
9
|
* Tauri app. It is the fourth host of one interface, after the direct
|
|
10
10
|
* `SyncClient`, the worker-leader `SyncClientHandle`, and the multi-tab
|
|
11
|
-
* follower
|
|
11
|
+
* follower.
|
|
12
12
|
*
|
|
13
13
|
* Every method forwards to the plugin's `syncular_command` command (the whole
|
|
14
14
|
* command surface in one JSON envelope — `{method, params}`), mirroring the FFI
|
|
@@ -588,7 +588,7 @@ export class TauriSyncClient {
|
|
|
588
588
|
|
|
589
589
|
/**
|
|
590
590
|
* Replace the native transport's request headers at runtime — the auth
|
|
591
|
-
* rotation path
|
|
591
|
+
* rotation path. Pass the FULL header set (it replaces,
|
|
592
592
|
* it does not merge). HTTP requests use the new set from the next call;
|
|
593
593
|
* the realtime socket applies it on its next (re)connect.
|
|
594
594
|
*/
|