react-native-davoice-tts 1.0.208 → 1.0.209

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.
@@ -14,15 +14,25 @@ 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 enum AudioPlaybackHook {
22
- public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
23
- public static var isEngineReady: DavoiceTTS.IsEngineReady?
24
- public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
25
- public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
17
+ @objc public protocol STTDelegate {
18
+ @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
19
+ }
20
+ @objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
21
+ @objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
22
+ @objc final public var continuous: Swift.Bool
23
+ @objc public static let supportedEvents: [Swift.String]
24
+ @objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
25
+ @objc final public func isRecognizing() -> Swift.Bool
26
+ @objc final public func pauseMicrophone()
27
+ @objc final public func unPauseMicrophone()
28
+ @objc final public func startSpeech(localeStr: Swift.String?)
29
+ @objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
30
+ @objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
31
+ @objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
32
+ @objc final public func teardown()
33
+ @objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
34
+ @objc override dynamic public init()
35
+ @objc deinit
26
36
  }
27
37
  @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers final public class SwiftSoundQueue : ObjectiveC.NSObject, AVFAudio.AVAudioPlayerDelegate {
28
38
  @objc deinit
@@ -52,23 +62,13 @@ public enum AudioPlaybackHook {
52
62
  final public func synthesize(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID, terminal: Swift.Character? = nil) throws -> (AVFAudio.AVAudioPCMBuffer, Swift.Int)
53
63
  @objc final public func synthesize_top(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID) throws -> AVFAudio.AVAudioPCMBuffer
54
64
  }
55
- @objc public protocol STTDelegate {
56
- @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
57
- }
58
- @objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
59
- @objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
60
- @objc final public var continuous: Swift.Bool
61
- @objc public static let supportedEvents: [Swift.String]
62
- @objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
63
- @objc final public func isRecognizing() -> Swift.Bool
64
- @objc final public func pauseMicrophone()
65
- @objc final public func unPauseMicrophone()
66
- @objc final public func startSpeech(localeStr: Swift.String?)
67
- @objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
68
- @objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
69
- @objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
70
- @objc final public func teardown()
71
- @objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
72
- @objc override dynamic public init()
73
- @objc deinit
65
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
66
+ public typealias IsEngineReady = () -> Swift.Bool
67
+ public typealias useOnlyEnginePlayback = () -> Swift.Bool
68
+ public typealias StopEnginePlayback = () -> Swift.Void
69
+ public enum AudioPlaybackHook {
70
+ public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
71
+ public static var isEngineReady: DavoiceTTS.IsEngineReady?
72
+ public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
73
+ public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
74
74
  }
@@ -14,15 +14,25 @@ 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 enum AudioPlaybackHook {
22
- public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
23
- public static var isEngineReady: DavoiceTTS.IsEngineReady?
24
- public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
25
- public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
17
+ @objc public protocol STTDelegate {
18
+ @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
19
+ }
20
+ @objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
21
+ @objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
22
+ @objc final public var continuous: Swift.Bool
23
+ @objc public static let supportedEvents: [Swift.String]
24
+ @objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
25
+ @objc final public func isRecognizing() -> Swift.Bool
26
+ @objc final public func pauseMicrophone()
27
+ @objc final public func unPauseMicrophone()
28
+ @objc final public func startSpeech(localeStr: Swift.String?)
29
+ @objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
30
+ @objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
31
+ @objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
32
+ @objc final public func teardown()
33
+ @objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
34
+ @objc override dynamic public init()
35
+ @objc deinit
26
36
  }
27
37
  @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers final public class SwiftSoundQueue : ObjectiveC.NSObject, AVFAudio.AVAudioPlayerDelegate {
28
38
  @objc deinit
@@ -52,23 +62,13 @@ public enum AudioPlaybackHook {
52
62
  final public func synthesize(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID, terminal: Swift.Character? = nil) throws -> (AVFAudio.AVAudioPCMBuffer, Swift.Int)
53
63
  @objc final public func synthesize_top(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID) throws -> AVFAudio.AVAudioPCMBuffer
54
64
  }
55
- @objc public protocol STTDelegate {
56
- @objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
57
- }
58
- @objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
59
- @objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
60
- @objc final public var continuous: Swift.Bool
61
- @objc public static let supportedEvents: [Swift.String]
62
- @objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
63
- @objc final public func isRecognizing() -> Swift.Bool
64
- @objc final public func pauseMicrophone()
65
- @objc final public func unPauseMicrophone()
66
- @objc final public func startSpeech(localeStr: Swift.String?)
67
- @objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
68
- @objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
69
- @objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
70
- @objc final public func teardown()
71
- @objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
72
- @objc override dynamic public init()
73
- @objc deinit
65
+ public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
66
+ public typealias IsEngineReady = () -> Swift.Bool
67
+ public typealias useOnlyEnginePlayback = () -> Swift.Bool
68
+ public typealias StopEnginePlayback = () -> Swift.Void
69
+ public enum AudioPlaybackHook {
70
+ public static var engineScheduleFile: DavoiceTTS.EngineSchedule?
71
+ public static var isEngineReady: DavoiceTTS.IsEngineReady?
72
+ public static var useOnlyEnginePlayback: DavoiceTTS.useOnlyEnginePlayback?
73
+ public static var stopEnginePlayback: DavoiceTTS.StopEnginePlayback?
74
74
  }
@@ -3096,105 +3096,98 @@
3096
3096
  {
3097
3097
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3098
3098
  "kind": "BooleanLiteral",
3099
- "offset": 2435,
3100
- "length": 5,
3101
- "value": "false"
3102
- },
3103
- {
3104
- "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3105
- "kind": "BooleanLiteral",
3106
- "offset": 2739,
3099
+ "offset": 2699,
3107
3100
  "length": 5,
3108
3101
  "value": "false"
3109
3102
  },
3110
3103
  {
3111
3104
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3112
3105
  "kind": "IntegerLiteral",
3113
- "offset": 2817,
3106
+ "offset": 2777,
3114
3107
  "length": 1,
3115
3108
  "value": "0"
3116
3109
  },
3117
3110
  {
3118
3111
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3119
3112
  "kind": "FloatLiteral",
3120
- "offset": 2911,
3113
+ "offset": 2871,
3121
3114
  "length": 3,
3122
3115
  "value": "0.3"
3123
3116
  },
3124
3117
  {
3125
3118
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3126
3119
  "kind": "IntegerLiteral",
3127
- "offset": 2992,
3120
+ "offset": 2952,
3128
3121
  "length": 1,
3129
3122
  "value": "0"
3130
3123
  },
3131
3124
  {
3132
3125
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3133
3126
  "kind": "BooleanLiteral",
3134
- "offset": 3053,
3127
+ "offset": 3013,
3135
3128
  "length": 5,
3136
3129
  "value": "false"
3137
3130
  },
3138
3131
  {
3139
3132
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3140
3133
  "kind": "Array",
3141
- "offset": 3117,
3134
+ "offset": 3077,
3142
3135
  "length": 2,
3143
3136
  "value": "[]"
3144
3137
  },
3145
3138
  {
3146
3139
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3147
3140
  "kind": "StringLiteral",
3148
- "offset": 3169,
3141
+ "offset": 3129,
3149
3142
  "length": 16,
3150
3143
  "value": "\"stt.tts.serial\""
3151
3144
  },
3152
3145
  {
3153
3146
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3154
3147
  "kind": "BooleanLiteral",
3155
- "offset": 3258,
3148
+ "offset": 3218,
3156
3149
  "length": 5,
3157
3150
  "value": "false"
3158
3151
  },
3159
3152
  {
3160
3153
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3161
3154
  "kind": "BooleanLiteral",
3162
- "offset": 3371,
3155
+ "offset": 3331,
3163
3156
  "length": 5,
3164
3157
  "value": "false"
3165
3158
  },
3166
3159
  {
3167
3160
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3168
3161
  "kind": "Array",
3169
- "offset": 4033,
3162
+ "offset": 3993,
3170
3163
  "length": 203,
3171
3164
  "value": "[\"onSpeechResults\", \"onSpeechStart\", \"onSpeechPartialResults\", \"onSpeechError\", \"onSpeechEnd\", \"onSpeechRecognized\", \"onSpeechVolumeChanged\"]"
3172
3165
  },
3173
3166
  {
3174
3167
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3175
3168
  "kind": "IntegerLiteral",
3176
- "offset": 4273,
3169
+ "offset": 4233,
3177
3170
  "length": 1,
3178
3171
  "value": "0"
3179
3172
  },
3180
3173
  {
3181
3174
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3182
3175
  "kind": "IntegerLiteral",
3183
- "offset": 4464,
3176
+ "offset": 4424,
3184
3177
  "length": 1,
3185
3178
  "value": "0"
3186
3179
  },
3187
3180
  {
3188
3181
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3189
3182
  "kind": "BooleanLiteral",
3190
- "offset": 12819,
3183
+ "offset": 12611,
3191
3184
  "length": 4,
3192
3185
  "value": "true"
3193
3186
  },
3194
3187
  {
3195
3188
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3196
3189
  "kind": "FloatLiteral",
3197
- "offset": 36519,
3190
+ "offset": 36281,
3198
3191
  "length": 3,
3199
3192
  "value": "0.7"
3200
3193
  },
@@ -3096,105 +3096,98 @@
3096
3096
  {
3097
3097
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3098
3098
  "kind": "BooleanLiteral",
3099
- "offset": 2435,
3100
- "length": 5,
3101
- "value": "false"
3102
- },
3103
- {
3104
- "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3105
- "kind": "BooleanLiteral",
3106
- "offset": 2739,
3099
+ "offset": 2699,
3107
3100
  "length": 5,
3108
3101
  "value": "false"
3109
3102
  },
3110
3103
  {
3111
3104
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3112
3105
  "kind": "IntegerLiteral",
3113
- "offset": 2817,
3106
+ "offset": 2777,
3114
3107
  "length": 1,
3115
3108
  "value": "0"
3116
3109
  },
3117
3110
  {
3118
3111
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3119
3112
  "kind": "FloatLiteral",
3120
- "offset": 2911,
3113
+ "offset": 2871,
3121
3114
  "length": 3,
3122
3115
  "value": "0.3"
3123
3116
  },
3124
3117
  {
3125
3118
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3126
3119
  "kind": "IntegerLiteral",
3127
- "offset": 2992,
3120
+ "offset": 2952,
3128
3121
  "length": 1,
3129
3122
  "value": "0"
3130
3123
  },
3131
3124
  {
3132
3125
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3133
3126
  "kind": "BooleanLiteral",
3134
- "offset": 3053,
3127
+ "offset": 3013,
3135
3128
  "length": 5,
3136
3129
  "value": "false"
3137
3130
  },
3138
3131
  {
3139
3132
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3140
3133
  "kind": "Array",
3141
- "offset": 3117,
3134
+ "offset": 3077,
3142
3135
  "length": 2,
3143
3136
  "value": "[]"
3144
3137
  },
3145
3138
  {
3146
3139
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3147
3140
  "kind": "StringLiteral",
3148
- "offset": 3169,
3141
+ "offset": 3129,
3149
3142
  "length": 16,
3150
3143
  "value": "\"stt.tts.serial\""
3151
3144
  },
3152
3145
  {
3153
3146
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3154
3147
  "kind": "BooleanLiteral",
3155
- "offset": 3258,
3148
+ "offset": 3218,
3156
3149
  "length": 5,
3157
3150
  "value": "false"
3158
3151
  },
3159
3152
  {
3160
3153
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3161
3154
  "kind": "BooleanLiteral",
3162
- "offset": 3371,
3155
+ "offset": 3331,
3163
3156
  "length": 5,
3164
3157
  "value": "false"
3165
3158
  },
3166
3159
  {
3167
3160
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3168
3161
  "kind": "Array",
3169
- "offset": 4033,
3162
+ "offset": 3993,
3170
3163
  "length": 203,
3171
3164
  "value": "[\"onSpeechResults\", \"onSpeechStart\", \"onSpeechPartialResults\", \"onSpeechError\", \"onSpeechEnd\", \"onSpeechRecognized\", \"onSpeechVolumeChanged\"]"
3172
3165
  },
3173
3166
  {
3174
3167
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3175
3168
  "kind": "IntegerLiteral",
3176
- "offset": 4273,
3169
+ "offset": 4233,
3177
3170
  "length": 1,
3178
3171
  "value": "0"
3179
3172
  },
3180
3173
  {
3181
3174
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3182
3175
  "kind": "IntegerLiteral",
3183
- "offset": 4464,
3176
+ "offset": 4424,
3184
3177
  "length": 1,
3185
3178
  "value": "0"
3186
3179
  },
3187
3180
  {
3188
3181
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3189
3182
  "kind": "BooleanLiteral",
3190
- "offset": 12819,
3183
+ "offset": 12611,
3191
3184
  "length": 4,
3192
3185
  "value": "true"
3193
3186
  },
3194
3187
  {
3195
3188
  "filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
3196
3189
  "kind": "FloatLiteral",
3197
- "offset": 36519,
3190
+ "offset": 36281,
3198
3191
  "length": 3,
3199
3192
  "value": "0.7"
3200
3193
  },
@@ -30,7 +30,7 @@
30
30
  </data>
31
31
  <key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
32
32
  <data>
33
- Uh4vDxnm5Ya8iedN7438kWjH4uE=
33
+ EaZHFVHaKALt5uhsT22SZoql+NE=
34
34
  </data>
35
35
  <key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
36
36
  <data>
@@ -46,11 +46,11 @@
46
46
  </data>
47
47
  <key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
48
48
  <data>
49
- Jx/sgPMVSIbQ9MNVPGvRwD1oEQo=
49
+ 1LOFpnfavFQC8FVpr5+0axP8Gno=
50
50
  </data>
51
51
  <key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
52
52
  <data>
53
- Uh4vDxnm5Ya8iedN7438kWjH4uE=
53
+ EaZHFVHaKALt5uhsT22SZoql+NE=
54
54
  </data>
55
55
  <key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
56
56
  <data>
@@ -66,7 +66,7 @@
66
66
  </data>
67
67
  <key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
68
68
  <data>
69
- 6g093VbEMhApoVRbVEtgUlanDbo=
69
+ KMJsY1omLdyfF17Op6av0jcOuyA=
70
70
  </data>
71
71
  <key>Modules/module.modulemap</key>
72
72
  <data>
@@ -134,11 +134,11 @@
134
134
  <dict>
135
135
  <key>hash</key>
136
136
  <data>
137
- Uh4vDxnm5Ya8iedN7438kWjH4uE=
137
+ EaZHFVHaKALt5uhsT22SZoql+NE=
138
138
  </data>
139
139
  <key>hash2</key>
140
140
  <data>
141
- /DkE0b3gruuxJeCZNbWV7TO/yFpKmIUatApJ+8MGLPg=
141
+ XJOxXjsT2TPmyu9LF/9yG9s5WsXmIWG7mevKa+r9PRQ=
142
142
  </data>
143
143
  </dict>
144
144
  <key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
@@ -178,22 +178,22 @@
178
178
  <dict>
179
179
  <key>hash</key>
180
180
  <data>
181
- Jx/sgPMVSIbQ9MNVPGvRwD1oEQo=
181
+ 1LOFpnfavFQC8FVpr5+0axP8Gno=
182
182
  </data>
183
183
  <key>hash2</key>
184
184
  <data>
185
- DRFiz1ig+oi2hizsNZemIm+ldHAwUEf0SBqgSjPXthc=
185
+ tgm9+KJIuFopF1um5lNArcBfTSHrliOPTClVgizF8pE=
186
186
  </data>
187
187
  </dict>
188
188
  <key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
189
189
  <dict>
190
190
  <key>hash</key>
191
191
  <data>
192
- Uh4vDxnm5Ya8iedN7438kWjH4uE=
192
+ EaZHFVHaKALt5uhsT22SZoql+NE=
193
193
  </data>
194
194
  <key>hash2</key>
195
195
  <data>
196
- /DkE0b3gruuxJeCZNbWV7TO/yFpKmIUatApJ+8MGLPg=
196
+ XJOxXjsT2TPmyu9LF/9yG9s5WsXmIWG7mevKa+r9PRQ=
197
197
  </data>
198
198
  </dict>
199
199
  <key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
@@ -233,11 +233,11 @@
233
233
  <dict>
234
234
  <key>hash</key>
235
235
  <data>
236
- 6g093VbEMhApoVRbVEtgUlanDbo=
236
+ KMJsY1omLdyfF17Op6av0jcOuyA=
237
237
  </data>
238
238
  <key>hash2</key>
239
239
  <data>
240
- QmQBVhIMn3dCq9HxdmM+mGNSvrkpyfN9vNLaVY3u1EU=
240
+ CKyNPWLEVY5u+DNb0qI8avF3pVMknd/1lxuOdeaJ8RA=
241
241
  </data>
242
242
  </dict>
243
243
  <key>Modules/module.modulemap</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-davoice-tts",
3
- "version": "1.0.208",
3
+ "version": "1.0.209",
4
4
  "description": "tts library for React Native",
5
5
  "main": "tts/index.js",
6
6
  "types": "tts/index.d.ts",