openrtc-tauri 1.0.3 → 1.0.4

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.
@@ -1,4 +1,4 @@
1
- import { type PlutoIpcBridge } from 'openrtc/runtime';
1
+ import type { PlutoIpcBridge } from 'openrtc/runtime';
2
2
  export interface TauriIpcBridgeOptions {
3
3
  commandNamespace?: string | null;
4
4
  fallbackCommandNamespaces?: string[];
@@ -1,5 +1,5 @@
1
1
  import { registerDesktopAuthRelay } from 'openrtc/auth/internal';
2
- import { isNativeIpcCommandUnavailable } from 'openrtc/runtime';
2
+ import { isNativeIpcCommandUnavailable } from 'openrtc/native';
3
3
  const DEFAULT_COMMAND_NAMESPACE = 'plugin:openrtc-tauri-plugin|';
4
4
  const LEGACY_COMMAND_NAMESPACE = 'plugin:openrtc|';
5
5
  export function createTauriIpcBridge(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openrtc-tauri",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -29,7 +29,7 @@
29
29
  "prepublishOnly": "pnpm run build && pnpm run test:import"
30
30
  },
31
31
  "dependencies": {
32
- "openrtc": "^1.0.7"
32
+ "openrtc": "^1.0.8"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@tauri-apps/api": "^2.0.0"