react-native-wakeword 1.0.46 → 1.0.48

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 +1 @@
1
- 91857f2139b544f39326588c340c4650 keyworddetection-1.0.0.aar
1
+ 344f475e506daa8aa3a6272f4dae1230 keyworddetection-1.0.0.aar
@@ -1 +1 @@
1
- 64cfa225482b566dc06647130fbcccdd67b25e8e keyworddetection-1.0.0.aar
1
+ a4ed3dbbc981a673ba4c4a5de0a16751a9d0784a keyworddetection-1.0.0.aar
package/module.modulemap CHANGED
@@ -4,5 +4,3 @@ framework module KeyWordDetection {
4
4
  export *
5
5
  module * { export * }
6
6
  }
7
-
8
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-wakeword",
3
- "version": "1.0.46",
3
+ "version": "1.0.48",
4
4
  "description": "Voice/Wake-word detection library for React Native",
5
5
  "main": "wakewords/index.js",
6
6
  "types": "wakewords/index.d.ts",
@@ -1,3 +1,6 @@
1
- export { useModel };
2
1
  export default useModel;
2
+ import { removeAllRNBridgeListeners } from "./KeyWordRNBridge";
3
+ import { createKeyWordRNBridgeInstance } from "./KeyWordRNBridge";
4
+ import { KeyWordRNBridgeInstance } from "./KeyWordRNBridge";
3
5
  import useModel from "./useModel";
6
+ export { removeAllRNBridgeListeners, createKeyWordRNBridgeInstance, KeyWordRNBridgeInstance, useModel };
@@ -1,4 +1,16 @@
1
1
  import useModel from './useModel';
2
+ import {
3
+ createKeyWordRNBridgeInstance,
4
+ removeAllRNBridgeListeners,
5
+ KeyWordRNBridgeInstance,
6
+ } from './KeyWordRNBridge';
2
7
 
8
+
9
+ export { removeAllRNBridgeListeners }
10
+ export { createKeyWordRNBridgeInstance }
11
+ export { KeyWordRNBridgeInstance }
3
12
  export { useModel }; // Export only useModel
4
13
  export default useModel; // Allow default import
14
+ export default KeyWordRNBridgeInstance; // Allow default import
15
+ export default removeAllRNBridgeListeners; // Allow default import
16
+ export default createKeyWordRNBridgeInstance; // Allow default import