react-native-davoice 1.0.16 → 1.0.18
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.
- package/TTSRNBridge.podspec +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar +0 -0
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.md5 +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.sha1 +1 -1
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/DavoiceTTS +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.abi.json +5330 -5253
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.private.swiftinterface +18 -18
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.swiftinterface +18 -18
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/DavoiceTTS +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.abi.json +159 -82
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json +159 -82
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeDirectory +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeResources +12 -12
- package/package.json +1 -1
|
@@ -17,24 +17,6 @@ import _SwiftConcurrencyShims
|
|
|
17
17
|
import onnxruntime_objc
|
|
18
18
|
import phonemes
|
|
19
19
|
import ObjectiveC.runtime
|
|
20
|
-
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
21
|
-
public typealias IsEngineReady = () -> Swift.Bool
|
|
22
|
-
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
23
|
-
public typealias StopEnginePlayback = () -> Swift.Void
|
|
24
|
-
public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
|
|
25
|
-
public enum AudioPlaybackHook {
|
|
26
|
-
public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
|
|
27
|
-
public static var isEngineReady: DavoiceTTS.IsEngineReady?
|
|
28
|
-
public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
|
|
29
|
-
public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
|
|
30
|
-
public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
|
|
31
|
-
public static var isMicPaused: (() -> Swift.Bool)?
|
|
32
|
-
}
|
|
33
|
-
@_inheritsConvenienceInitializers @objc final public class LicenseManager : ObjectiveC.NSObject {
|
|
34
|
-
@objc public static func isLicenseValid(licenseKey: Swift.String) -> Swift.Bool
|
|
35
|
-
@objc override dynamic public init()
|
|
36
|
-
@objc deinit
|
|
37
|
-
}
|
|
38
20
|
public enum SVLogLevel : Swift.Int, Swift.Codable {
|
|
39
21
|
case off, error, warn, info, debug, trace
|
|
40
22
|
public init?(rawValue: Swift.Int)
|
|
@@ -214,6 +196,24 @@ public enum SpeakerVerificationError : Swift.Error, Swift.CustomStringConvertibl
|
|
|
214
196
|
@objc final public func playWav(_ url: Foundation.URL, markAsLastUtterance: Swift.Bool = true)
|
|
215
197
|
@objc final public func playBuffer(_ buffer: AVFAudio.AVAudioPCMBuffer, markAsLastUtterance: Swift.Bool = true)
|
|
216
198
|
}
|
|
199
|
+
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
200
|
+
public typealias IsEngineReady = () -> Swift.Bool
|
|
201
|
+
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
202
|
+
public typealias StopEnginePlayback = () -> Swift.Void
|
|
203
|
+
public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
|
|
204
|
+
public enum AudioPlaybackHook {
|
|
205
|
+
public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
|
|
206
|
+
public static var isEngineReady: DavoiceTTS.IsEngineReady?
|
|
207
|
+
public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
|
|
208
|
+
public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
|
|
209
|
+
public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
|
|
210
|
+
public static var isMicPaused: (() -> Swift.Bool)?
|
|
211
|
+
}
|
|
212
|
+
@_inheritsConvenienceInitializers @objc final public class LicenseManager : ObjectiveC.NSObject {
|
|
213
|
+
@objc public static func isLicenseValid(licenseKey: Swift.String) -> Swift.Bool
|
|
214
|
+
@objc override dynamic public init()
|
|
215
|
+
@objc deinit
|
|
216
|
+
}
|
|
217
217
|
extension DavoiceTTS.SVLogLevel : Swift.Equatable {}
|
|
218
218
|
extension DavoiceTTS.SVLogLevel : Swift.Hashable {}
|
|
219
219
|
extension DavoiceTTS.SVLogLevel : Swift.RawRepresentable {}
|
|
@@ -17,24 +17,6 @@ import _SwiftConcurrencyShims
|
|
|
17
17
|
import onnxruntime_objc
|
|
18
18
|
import phonemes
|
|
19
19
|
import ObjectiveC.runtime
|
|
20
|
-
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
21
|
-
public typealias IsEngineReady = () -> Swift.Bool
|
|
22
|
-
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
23
|
-
public typealias StopEnginePlayback = () -> Swift.Void
|
|
24
|
-
public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
|
|
25
|
-
public enum AudioPlaybackHook {
|
|
26
|
-
public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
|
|
27
|
-
public static var isEngineReady: DavoiceTTS.IsEngineReady?
|
|
28
|
-
public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
|
|
29
|
-
public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
|
|
30
|
-
public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
|
|
31
|
-
public static var isMicPaused: (() -> Swift.Bool)?
|
|
32
|
-
}
|
|
33
|
-
@_inheritsConvenienceInitializers @objc final public class LicenseManager : ObjectiveC.NSObject {
|
|
34
|
-
@objc public static func isLicenseValid(licenseKey: Swift.String) -> Swift.Bool
|
|
35
|
-
@objc override dynamic public init()
|
|
36
|
-
@objc deinit
|
|
37
|
-
}
|
|
38
20
|
public enum SVLogLevel : Swift.Int, Swift.Codable {
|
|
39
21
|
case off, error, warn, info, debug, trace
|
|
40
22
|
public init?(rawValue: Swift.Int)
|
|
@@ -214,6 +196,24 @@ public enum SpeakerVerificationError : Swift.Error, Swift.CustomStringConvertibl
|
|
|
214
196
|
@objc final public func playWav(_ url: Foundation.URL, markAsLastUtterance: Swift.Bool = true)
|
|
215
197
|
@objc final public func playBuffer(_ buffer: AVFAudio.AVAudioPCMBuffer, markAsLastUtterance: Swift.Bool = true)
|
|
216
198
|
}
|
|
199
|
+
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
200
|
+
public typealias IsEngineReady = () -> Swift.Bool
|
|
201
|
+
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
202
|
+
public typealias StopEnginePlayback = () -> Swift.Void
|
|
203
|
+
public typealias CurrentEngineProvider = () -> AVFAudio.AVAudioEngine?
|
|
204
|
+
public enum AudioPlaybackHook {
|
|
205
|
+
public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
|
|
206
|
+
public static var isEngineReady: DavoiceTTS.IsEngineReady?
|
|
207
|
+
public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
|
|
208
|
+
public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
|
|
209
|
+
public static var currentEngine: DavoiceTTS.CurrentEngineProvider?
|
|
210
|
+
public static var isMicPaused: (() -> Swift.Bool)?
|
|
211
|
+
}
|
|
212
|
+
@_inheritsConvenienceInitializers @objc final public class LicenseManager : ObjectiveC.NSObject {
|
|
213
|
+
@objc public static func isLicenseValid(licenseKey: Swift.String) -> Swift.Bool
|
|
214
|
+
@objc override dynamic public init()
|
|
215
|
+
@objc deinit
|
|
216
|
+
}
|
|
217
217
|
extension DavoiceTTS.SVLogLevel : Swift.Equatable {}
|
|
218
218
|
extension DavoiceTTS.SVLogLevel : Swift.Hashable {}
|
|
219
219
|
extension DavoiceTTS.SVLogLevel : Swift.RawRepresentable {}
|