@eka-care/ekascribe-ts-sdk 2.0.10 → 2.0.12
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.mjs +1 -7
- package/package.json +1 -1
- package/dist/worker.bundle.js +0 -44
package/dist/index.mjs
CHANGED
|
@@ -38545,13 +38545,7 @@ class AudioFileManager {
|
|
|
38545
38545
|
}
|
|
38546
38546
|
createSharedWorkerInstance() {
|
|
38547
38547
|
try {
|
|
38548
|
-
const a = new SharedWorker(
|
|
38549
|
-
new URL(
|
|
38550
|
-
/* @vite-ignore */
|
|
38551
|
-
"" + new URL("worker.bundle.js", import.meta.url).href,
|
|
38552
|
-
import.meta.url
|
|
38553
|
-
)
|
|
38554
|
-
);
|
|
38548
|
+
const a = new SharedWorker(new URL("../shared-worker/s3-file-upload.js"));
|
|
38555
38549
|
this.sharedWorkerInstance = a;
|
|
38556
38550
|
const s = EkaScribeStore$1.eventCallback;
|
|
38557
38551
|
return this.sharedWorkerInstance.port.onmessage = async (n) => {
|