expo-gliph-player 1.3.8 → 1.3.11

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +15 -21
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "Aleksey Ostrikov",
5
5
  "email": "alex303606@gmail.com"
6
6
  },
7
- "version": "1.3.8",
7
+ "version": "1.3.11",
8
8
  "description": "Fixed version of react-native-gliph-player with Expo compatibility",
9
9
  "main": "app.plugin.js",
10
10
  "module": "lib/module/index.js",
package/src/types.ts CHANGED
@@ -169,27 +169,21 @@ export enum IOSCategoryOptions {
169
169
  DefaultToSpeaker = 'defaultToSpeaker',
170
170
  }
171
171
 
172
- export enum AndroidAudioContentType {
173
- Unknown = 0,
174
- Speech = 1,
175
- Music = 2,
176
- Movie = 3,
177
- Sonification = 4,
178
- }
179
-
180
- export enum AndroidAudioUsage {
181
- Unknown = 0,
182
- Media = 1,
183
- VoiceCommunication = 2,
184
- VoiceCommunicationSignalling = 3,
185
- Alarm = 4,
186
- Notification = 5,
187
- NotificationRingtone = 6,
188
- NotificationEvent = 10,
189
- AssistanceAccessibility = 11,
190
- AssistanceNavigationGuidance = 12,
191
- AssistanceSonification = 13,
192
- Game = 14,
172
+ export declare enum AndroidAudioContentType {
173
+ Unknown = 'music',
174
+ Speech = 'speech',
175
+ Music = 'music',
176
+ Movie = 'movie',
177
+ Sonification = 'sonification'
178
+ }
179
+
180
+ export declare enum AndroidAudioUsage {
181
+ Unknown = 'media',
182
+ Media = 'media',
183
+ VoiceCommunication = 'voiceCommunication',
184
+ Alarm = 'alarm',
185
+ Notification = 'notification',
186
+ Game = 'game'
193
187
  }
194
188
 
195
189
  // ─── Options ─────────────────────────────────────────────────────────────────