react-native-wakeword 1.0.68 → 1.0.70

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 (23) hide show
  1. package/ios/KeyWordDetection.xcframework/Info.plist +2 -1
  2. package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/KeyWordDetection +0 -0
  3. package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  4. package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.abi.json +84 -84
  5. package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Headers/KeyWordDetection-Swift.h +358 -0
  6. package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/KeyWordDetection +0 -0
  7. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  8. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  9. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json +5482 -0
  10. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +45 -0
  11. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  12. package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftinterface +45 -0
  13. package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json +84 -84
  14. package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/_CodeSignature/CodeResources +74 -8
  15. package/package.json +1 -1
  16. package/ios/KeyWordDetection.xcframework/ios-x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  17. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Headers/KeyWordDetection.h +0 -0
  18. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Headers/module.modulemap +0 -0
  19. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Info.plist +0 -0
  20. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -0
  21. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  22. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -0
  23. /package/ios/KeyWordDetection.xcframework/{ios-x86_64-simulator → ios-arm64_x86_64-simulator}/KeyWordDetection.framework/Modules/module.modulemap +0 -0
@@ -0,0 +1,45 @@
1
+ // swift-interface-format-version: 1.0
2
+ // swift-compiler-version: Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
3
+ // swift-module-flags: -target arm64-apple-ios13.4-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -module-name KeyWordDetection
4
+ // swift-module-flags-ignorable: -no-verify-emitted-module-interface
5
+ import AVFoundation
6
+ import CommonCrypto
7
+ import Foundation
8
+ @_exported import KeyWordDetection
9
+ import Swift
10
+ import _Concurrency
11
+ import _StringProcessing
12
+ import _SwiftConcurrencyShims
13
+ import ios_voice_processor
14
+ import os.log
15
+ import onnxruntime_objc
16
+ import os
17
+ @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class GlobalVariables : ObjectiveC.NSObject {
18
+ @objc public static let shared: KeyWordDetection.GlobalVariables
19
+ @objc public var keyWordsDetectionInstance: KeyWordDetection.KeyWordsDetection?
20
+ @objc public var modelName: Swift.String?
21
+ @objc public var threshold: Swift.Float
22
+ @objc public var bufferCnt: Swift.Int
23
+ @objc deinit
24
+ }
25
+ @objc public protocol KeywordDetectionRNDelegate {
26
+ @objc func KeywordDetectionDidDetectEvent(_ eventInfo: [Swift.String : Any])
27
+ }
28
+ @objc public class KeyWordsDetection : ObjectiveC.NSObject {
29
+ @objc weak public var delegate: (any KeyWordDetection.KeywordDetectionRNDelegate)?
30
+ public var eventSink: (([Swift.String : Any]) -> Swift.Void)?
31
+ @objc public init(modelPath: Swift.String, threshold: Swift.Float, bufferCnt: Swift.Int) throws
32
+ @objc public func replaceKeywordDetectionModel(modelPath: Swift.String, threshold: Swift.Float, bufferCnt: Swift.Int) throws
33
+ @objc public func getKeywordDetectionModel() -> Swift.String
34
+ @objc public func getRecordingWav() -> Swift.String
35
+ @objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
36
+ @objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
37
+ @objc public func callBack(frame: [Swift.Int16])
38
+ @objc public func startListening() -> Swift.Bool
39
+ @objc public func stopListening()
40
+ @objc deinit
41
+ }
42
+ @_inheritsConvenienceInitializers @objc public class LicenseManager : ObjectiveC.NSObject {
43
+ @objc override dynamic public init()
44
+ @objc deinit
45
+ }
@@ -0,0 +1,45 @@
1
+ // swift-interface-format-version: 1.0
2
+ // swift-compiler-version: Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
3
+ // swift-module-flags: -target arm64-apple-ios13.4-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -enable-experimental-feature OpaqueTypeErasure -enable-bare-slash-regex -module-name KeyWordDetection
4
+ // swift-module-flags-ignorable: -no-verify-emitted-module-interface
5
+ import AVFoundation
6
+ import CommonCrypto
7
+ import Foundation
8
+ @_exported import KeyWordDetection
9
+ import Swift
10
+ import _Concurrency
11
+ import _StringProcessing
12
+ import _SwiftConcurrencyShims
13
+ import ios_voice_processor
14
+ import os.log
15
+ import onnxruntime_objc
16
+ import os
17
+ @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class GlobalVariables : ObjectiveC.NSObject {
18
+ @objc public static let shared: KeyWordDetection.GlobalVariables
19
+ @objc public var keyWordsDetectionInstance: KeyWordDetection.KeyWordsDetection?
20
+ @objc public var modelName: Swift.String?
21
+ @objc public var threshold: Swift.Float
22
+ @objc public var bufferCnt: Swift.Int
23
+ @objc deinit
24
+ }
25
+ @objc public protocol KeywordDetectionRNDelegate {
26
+ @objc func KeywordDetectionDidDetectEvent(_ eventInfo: [Swift.String : Any])
27
+ }
28
+ @objc public class KeyWordsDetection : ObjectiveC.NSObject {
29
+ @objc weak public var delegate: (any KeyWordDetection.KeywordDetectionRNDelegate)?
30
+ public var eventSink: (([Swift.String : Any]) -> Swift.Void)?
31
+ @objc public init(modelPath: Swift.String, threshold: Swift.Float, bufferCnt: Swift.Int) throws
32
+ @objc public func replaceKeywordDetectionModel(modelPath: Swift.String, threshold: Swift.Float, bufferCnt: Swift.Int) throws
33
+ @objc public func getKeywordDetectionModel() -> Swift.String
34
+ @objc public func getRecordingWav() -> Swift.String
35
+ @objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
36
+ @objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
37
+ @objc public func callBack(frame: [Swift.Int16])
38
+ @objc public func startListening() -> Swift.Bool
39
+ @objc public func stopListening()
40
+ @objc deinit
41
+ }
42
+ @_inheritsConvenienceInitializers @objc public class LicenseManager : ObjectiveC.NSObject {
43
+ @objc override dynamic public init()
44
+ @objc deinit
45
+ }