react-native-davoice-tts 1.0.304 → 1.0.305

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 (20) hide show
  1. package/TTSRNBridge.podspec +1 -1
  2. package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar +0 -0
  3. package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.md5 +1 -1
  4. package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.sha1 +1 -1
  5. package/ios/TTSRNBridge/DavoiceTTS.xcframework/Info.plist +5 -5
  6. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/DavoiceTTS +0 -0
  7. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.abi.json +213 -213
  8. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.private.swiftinterface +1 -1
  9. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.swiftinterface +1 -1
  10. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/DavoiceTTS +0 -0
  11. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.abi.json +3761 -3761
  12. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +13 -13
  13. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.swiftinterface +13 -13
  14. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json +3761 -3761
  15. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +13 -13
  16. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +13 -13
  17. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeDirectory +0 -0
  18. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeRequirements-1 +0 -0
  19. package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeResources +24 -24
  20. package/package.json +1 -1
@@ -14,18 +14,6 @@ import _StringProcessing
14
14
  import _SwiftConcurrencyShims
15
15
  import onnxruntime_objc
16
16
  import phonemes
17
- public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
18
- public typealias IsEngineReady = () -> Swift.Bool
19
- public typealias useOnlyEnginePlayback = () -> Swift.Bool
20
- public typealias StopEnginePlayback = () -> Swift.Void
21
- public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
22
- public enum AudioPlaybackHook {
23
- public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
24
- public static var isEngineReady: DavoiceTTS.IsEngineReady?
25
- public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
26
- public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
27
- public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
28
- }
29
17
  public enum SVLogLevel : Swift.Int, Swift.Codable {
30
18
  case off, error, warn, info, debug, trace
31
19
  public init?(rawValue: Swift.Int)
@@ -39,7 +27,7 @@ public protocol SVLogger {
39
27
  }
40
28
  final public class SVDefaultLogger : DavoiceTTS.SVLogger {
41
29
  final public var level: DavoiceTTS.SVLogLevel
42
- public init(level: DavoiceTTS.SVLogLevel = .debug)
30
+ public init(level: DavoiceTTS.SVLogLevel = .trace)
43
31
  final public func log(_ level: DavoiceTTS.SVLogLevel, _ tag: Swift.String, _ msg: Swift.String)
44
32
  @objc deinit
45
33
  }
@@ -128,6 +116,18 @@ public enum SpeakerVerificationError : Swift.Error, Swift.CustomStringConvertibl
128
116
  @objc override dynamic public init()
129
117
  @objc deinit
130
118
  }
119
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
120
+ public typealias IsEngineReady = () -> Swift.Bool
121
+ public typealias useOnlyEnginePlayback = () -> Swift.Bool
122
+ public typealias StopEnginePlayback = () -> Swift.Void
123
+ public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
124
+ public enum AudioPlaybackHook {
125
+ public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
126
+ public static var isEngineReady: DavoiceTTS.IsEngineReady?
127
+ public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
128
+ public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
129
+ public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
130
+ }
131
131
  @objc public protocol STTDelegate {
132
132
  @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
133
133
  }
@@ -14,18 +14,6 @@ import _StringProcessing
14
14
  import _SwiftConcurrencyShims
15
15
  import onnxruntime_objc
16
16
  import phonemes
17
- public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
18
- public typealias IsEngineReady = () -> Swift.Bool
19
- public typealias useOnlyEnginePlayback = () -> Swift.Bool
20
- public typealias StopEnginePlayback = () -> Swift.Void
21
- public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
22
- public enum AudioPlaybackHook {
23
- public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
24
- public static var isEngineReady: DavoiceTTS.IsEngineReady?
25
- public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
26
- public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
27
- public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
28
- }
29
17
  public enum SVLogLevel : Swift.Int, Swift.Codable {
30
18
  case off, error, warn, info, debug, trace
31
19
  public init?(rawValue: Swift.Int)
@@ -39,7 +27,7 @@ public protocol SVLogger {
39
27
  }
40
28
  final public class SVDefaultLogger : DavoiceTTS.SVLogger {
41
29
  final public var level: DavoiceTTS.SVLogLevel
42
- public init(level: DavoiceTTS.SVLogLevel = .debug)
30
+ public init(level: DavoiceTTS.SVLogLevel = .trace)
43
31
  final public func log(_ level: DavoiceTTS.SVLogLevel, _ tag: Swift.String, _ msg: Swift.String)
44
32
  @objc deinit
45
33
  }
@@ -128,6 +116,18 @@ public enum SpeakerVerificationError : Swift.Error, Swift.CustomStringConvertibl
128
116
  @objc override dynamic public init()
129
117
  @objc deinit
130
118
  }
119
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
120
+ public typealias IsEngineReady = () -> Swift.Bool
121
+ public typealias useOnlyEnginePlayback = () -> Swift.Bool
122
+ public typealias StopEnginePlayback = () -> Swift.Void
123
+ public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
124
+ public enum AudioPlaybackHook {
125
+ public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
126
+ public static var isEngineReady: DavoiceTTS.IsEngineReady?
127
+ public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
128
+ public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
129
+ public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
130
+ }
131
131
  @objc public protocol STTDelegate {
132
132
  @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
133
133
  }