react-native-wakeword 1.1.35 → 1.1.39

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.
Files changed (36) hide show
  1. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  2. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  3. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  4. package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
  5. package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar +0 -0
  6. package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar.md5 +1 -1
  7. package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar.sha1 +1 -1
  8. package/android/src/main/AndroidManifest.xml +0 -4
  9. package/android/src/main/java/com/davoice/DaVoiceUnifiedPackage.java +29 -0
  10. package/android/src/main/java/com/davoice/keywordspotting/KeyWordRNBridge.java +112 -0
  11. package/android/src/main/java/com/davoice/speakeridrn/SpeakerIdRNBridge.java +588 -0
  12. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/KeyWordDetection +0 -0
  13. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.abi.json +406 -41
  14. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.private.swiftinterface +5 -0
  15. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.swiftinterface +5 -0
  16. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/KeyWordDetection +0 -0
  17. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json +406 -41
  18. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +5 -0
  19. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftinterface +5 -0
  20. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json +406 -41
  21. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +5 -0
  22. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +5 -0
  23. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeDirectory +0 -0
  24. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeRequirements-1 +0 -0
  25. package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeResources +24 -24
  26. package/package.json +3 -1
  27. package/react-native.config.js +10 -0
  28. package/speakerid/SpeakerIdRNBridge.d.ts +49 -0
  29. package/speakerid/SpeakerIdRNBridge.js +193 -0
  30. package/speakerid/index.d.ts +22 -0
  31. package/speakerid/index.js +28 -0
  32. package/speakerid/models/speaker_id.dm +0 -0
  33. package/wakewords/index.d.ts +8 -8
  34. package/android/src/main/assets/coca_cola_model_28_05052025.dm +0 -0
  35. package/android/src/main/java/com/davoice/keywordspotting/KeyWordRNBridgePackage.java +0 -25
  36. package/wakewords/index.d.ts.chat_idiot +0 -2
@@ -4,6 +4,7 @@
4
4
  // swift-module-flags-ignorable: -no-verify-emitted-module-interface -interface-compiler-version 6.1.2
5
5
  import AVFAudio
6
6
  import AVFoundation
7
+ import Accelerate
7
8
  import AudioToolbox
8
9
  import CommonCrypto
9
10
  import Foundation
@@ -125,6 +126,10 @@ public class AVAudioWrapper {
125
126
  @objc public func stopVADListening()
126
127
  @objc deinit
127
128
  }
129
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
130
+ public enum AudioPlaybackHook {
131
+ public static var engineScheduleFile: KeyWordDetection.EngineSchedule?
132
+ }
128
133
  @_inheritsConvenienceInitializers @objc public class AudioSessionAndDuckingManager : ObjectiveC.NSObject {
129
134
  @objc public static let shared: KeyWordDetection.AudioSessionAndDuckingManager
130
135
  @objc public func initAudioSessAndDuckManage()
@@ -4,6 +4,7 @@
4
4
  // swift-module-flags-ignorable: -no-verify-emitted-module-interface -interface-compiler-version 6.1.2
5
5
  import AVFAudio
6
6
  import AVFoundation
7
+ import Accelerate
7
8
  import AudioToolbox
8
9
  import CommonCrypto
9
10
  import Foundation
@@ -125,6 +126,10 @@ public class AVAudioWrapper {
125
126
  @objc public func stopVADListening()
126
127
  @objc deinit
127
128
  }
129
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
130
+ public enum AudioPlaybackHook {
131
+ public static var engineScheduleFile: KeyWordDetection.EngineSchedule?
132
+ }
128
133
  @_inheritsConvenienceInitializers @objc public class AudioSessionAndDuckingManager : ObjectiveC.NSObject {
129
134
  @objc public static let shared: KeyWordDetection.AudioSessionAndDuckingManager
130
135
  @objc public func initAudioSessAndDuckManage()