@peers-app/peers-sdk 0.14.0 → 0.14.1
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/rpc-types.d.ts +2 -0
- package/dist/rpc-types.js +2 -0
- package/package.json +1 -1
package/dist/rpc-types.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ export declare const rpcServerCalls: {
|
|
|
58
58
|
}>);
|
|
59
59
|
injectUIBundle: ((uiBundleFileId: string) => Promise<void>);
|
|
60
60
|
resetAllDeviceSyncInfo: (() => Promise<void>);
|
|
61
|
+
/** Clear change tracking and rebuild from current rows for the default data context (same as Data Explorer). */
|
|
62
|
+
resetChangeTracking: (() => Promise<void>);
|
|
61
63
|
deleteLocalDatabase: (() => Promise<void>);
|
|
62
64
|
importGroupShare: ((groupShareJson: string) => Promise<string>);
|
|
63
65
|
appQuit: (() => Promise<void>);
|
package/dist/rpc-types.js
CHANGED
|
@@ -29,6 +29,8 @@ exports.rpcServerCalls = {
|
|
|
29
29
|
// Inject UI bundle directly into WebView (bypasses slow postMessage for large strings)
|
|
30
30
|
injectUIBundle: rpcStub('injectUIBundle'),
|
|
31
31
|
resetAllDeviceSyncInfo: rpcStub('resetAllDeviceSyncInfo'),
|
|
32
|
+
/** Clear change tracking and rebuild from current rows for the default data context (same as Data Explorer). */
|
|
33
|
+
resetChangeTracking: rpcStub('resetChangeTracking'),
|
|
32
34
|
deleteLocalDatabase: rpcStub('deleteLocalDatabase'),
|
|
33
35
|
importGroupShare: rpcStub('importGroupShare'),
|
|
34
36
|
// App lifecycle commands (for CLI control)
|