@recallai/desktop-sdk 2024.10.23-a2d33aaf383389d53441077d931612496f8089f5 → 2024.10.25-e2700cc689552670d113b382afa0516527f580b1
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/desktop_sdk_macos.framework.tar +0 -0
- package/index.js +3 -3
- package/package.json +1 -1
|
Binary file
|
package/index.js
CHANGED
|
@@ -8,9 +8,9 @@ function toggle(enabled) {
|
|
|
8
8
|
addon.toggle(enabled);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
function startRecording({
|
|
12
|
-
console.log("got ",
|
|
13
|
-
addon.start_recording(
|
|
11
|
+
function startRecording({ windowId, uploadToken }) {
|
|
12
|
+
console.log("got ", windowId, uploadToken);
|
|
13
|
+
addon.start_recording(windowId, uploadToken);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
function addEventListener(type, callback) {
|
package/package.json
CHANGED