jest-expo 51.0.0 → 51.0.2
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/package.json +3 -3
- package/src/preset/expoModules.js +870 -328
|
@@ -1,38 +1,4 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
AIRGoogleMapCalloutManager: {},
|
|
3
|
-
AIRGoogleMapCalloutSubviewManager: {},
|
|
4
|
-
AIRGoogleMapCircleManager: {},
|
|
5
|
-
AIRGoogleMapHeatmapManager: {},
|
|
6
|
-
AIRGoogleMapManager: {
|
|
7
|
-
animateCamera: { type: 'function', functionType: 'async' },
|
|
8
|
-
animateToRegion: { type: 'function', functionType: 'async' },
|
|
9
|
-
coordinateForPoint: { type: 'function', functionType: 'promise' },
|
|
10
|
-
fitToCoordinates: { type: 'function', functionType: 'async' },
|
|
11
|
-
fitToElements: { type: 'function', functionType: 'async' },
|
|
12
|
-
fitToSuppliedMarkers: { type: 'function', functionType: 'async' },
|
|
13
|
-
getCamera: { type: 'function', functionType: 'promise' },
|
|
14
|
-
getConstants: { type: 'function' },
|
|
15
|
-
getMapBoundaries: { type: 'function', functionType: 'promise' },
|
|
16
|
-
getMarkersFrames: { type: 'function', functionType: 'promise' },
|
|
17
|
-
legalNotice: { type: 'string' },
|
|
18
|
-
pointForCoordinate: { type: 'function', functionType: 'promise' },
|
|
19
|
-
setCamera: { type: 'function', functionType: 'async' },
|
|
20
|
-
setIndoorActiveLevelIndex: { type: 'function', functionType: 'async' },
|
|
21
|
-
setMapBoundaries: { type: 'function', functionType: 'async' },
|
|
22
|
-
takeSnapshot: { type: 'function', functionType: 'async' },
|
|
23
|
-
},
|
|
24
|
-
AIRGoogleMapMarkerManager: {
|
|
25
|
-
getConstants: { type: 'function' },
|
|
26
|
-
hideCallout: { type: 'function', functionType: 'async' },
|
|
27
|
-
redraw: { type: 'function', functionType: 'async' },
|
|
28
|
-
redrawCallout: { type: 'function', functionType: 'async' },
|
|
29
|
-
showCallout: { type: 'function', functionType: 'async' },
|
|
30
|
-
},
|
|
31
|
-
AIRGoogleMapOverlayManager: {},
|
|
32
|
-
AIRGoogleMapPolygonManager: {},
|
|
33
|
-
AIRGoogleMapPolylineManager: {},
|
|
34
|
-
AIRGoogleMapUrlTileManager: {},
|
|
35
|
-
AIRGoogleMapWMSTileManager: {},
|
|
36
2
|
AIRMapCalloutManager: {},
|
|
37
3
|
AIRMapCalloutSubviewManager: {},
|
|
38
4
|
AIRMapCircleManager: {},
|
|
@@ -64,29 +30,16 @@ module.exports = {
|
|
|
64
30
|
AIRMapPolylineManager: {},
|
|
65
31
|
AIRMapUrlTileManager: {},
|
|
66
32
|
AIRMapWMSTileManager: {},
|
|
67
|
-
|
|
33
|
+
ExpoModulesCore: {
|
|
34
|
+
getConstants: { type: 'function' },
|
|
35
|
+
installModules: { type: 'function', functionType: 'sync' },
|
|
36
|
+
},
|
|
68
37
|
'ExpoModulesCore.ViewModuleWrapper': {},
|
|
69
38
|
ExpoNativeModuleIntrospection: {
|
|
70
39
|
getConstants: { type: 'function' },
|
|
71
40
|
getNativeModuleNamesAsync: { type: 'function', functionType: 'promise' },
|
|
72
41
|
introspectNativeModuleAsync: { type: 'function', functionType: 'promise' },
|
|
73
42
|
},
|
|
74
|
-
ExponentNotifications: {
|
|
75
|
-
cancelAllScheduledNotificationsAsync: { type: 'function', functionType: 'promise' },
|
|
76
|
-
cancelScheduledNotificationAsync: { type: 'function', functionType: 'promise' },
|
|
77
|
-
createCategoryAsync: { type: 'function', functionType: 'promise' },
|
|
78
|
-
deleteCategoryAsync: { type: 'function', functionType: 'promise' },
|
|
79
|
-
getBadgeNumberAsync: { type: 'function', functionType: 'promise' },
|
|
80
|
-
getConstants: { type: 'function' },
|
|
81
|
-
getDevicePushTokenAsync: { type: 'function', functionType: 'promise' },
|
|
82
|
-
getExponentPushTokenAsync: { type: 'function', functionType: 'promise' },
|
|
83
|
-
legacyScheduleLocalRepeatingNotification: { type: 'function', functionType: 'promise' },
|
|
84
|
-
presentLocalNotification: { type: 'function', functionType: 'promise' },
|
|
85
|
-
scheduleLocalNotification: { type: 'function', functionType: 'promise' },
|
|
86
|
-
scheduleNotificationWithCalendar: { type: 'function', functionType: 'promise' },
|
|
87
|
-
scheduleNotificationWithTimer: { type: 'function', functionType: 'promise' },
|
|
88
|
-
setBadgeNumberAsync: { type: 'function', functionType: 'promise' },
|
|
89
|
-
},
|
|
90
43
|
ExponentScopedModuleRegistry: {},
|
|
91
44
|
ExponentTest: {
|
|
92
45
|
action: { type: 'function', functionType: 'promise' },
|
|
@@ -116,20 +69,31 @@ module.exports = {
|
|
|
116
69
|
{ name: 'getCredentialStateAsync', argumentsCount: 1, key: 'getCredentialStateAsync' },
|
|
117
70
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
118
71
|
{ name: 'requestAsync', argumentsCount: 1, key: 'requestAsync' },
|
|
119
|
-
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
120
|
-
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
121
72
|
],
|
|
122
73
|
ExpoApplication: [
|
|
123
|
-
{
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
74
|
+
{
|
|
75
|
+
name: 'getApplicationReleaseTypeAsync',
|
|
76
|
+
argumentsCount: 0,
|
|
77
|
+
key: 'getApplicationReleaseTypeAsync',
|
|
78
|
+
},
|
|
79
|
+
{ name: 'getInstallationTimeAsync', argumentsCount: 0, key: 'getInstallationTimeAsync' },
|
|
80
|
+
{ name: 'getIosIdForVendorAsync', argumentsCount: 0, key: 'getIosIdForVendorAsync' },
|
|
81
|
+
{
|
|
82
|
+
name: 'getPushNotificationServiceEnvironmentAsync',
|
|
83
|
+
argumentsCount: 0,
|
|
84
|
+
key: 'getPushNotificationServiceEnvironmentAsync',
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
ExpoAsset: [{ name: 'downloadAsync', argumentsCount: 3, key: 'downloadAsync' }],
|
|
88
|
+
ExpoAudio: [
|
|
89
|
+
{ name: 'setCategory', argumentsCount: 1, key: 'setCategory' },
|
|
90
|
+
{ name: 'setIsAudioActive', argumentsCount: 1, key: 'setIsAudioActive' },
|
|
127
91
|
],
|
|
128
92
|
ExpoBackgroundFetch: [
|
|
129
|
-
{ name: '
|
|
130
|
-
{ name: '
|
|
131
|
-
{ name: '
|
|
132
|
-
{ name: '
|
|
93
|
+
{ name: 'getStatusAsync', argumentsCount: 0, key: 'getStatusAsync' },
|
|
94
|
+
{ name: 'registerTaskAsync', argumentsCount: 2, key: 'registerTaskAsync' },
|
|
95
|
+
{ name: 'setMinimumIntervalAsync', argumentsCount: 1, key: 'setMinimumIntervalAsync' },
|
|
96
|
+
{ name: 'unregisterTaskAsync', argumentsCount: 1, key: 'unregisterTaskAsync' },
|
|
133
97
|
],
|
|
134
98
|
ExpoBackgroundNotificationTasksModule: [
|
|
135
99
|
{ name: 'unregisterTaskAsync', argumentsCount: 1, key: 0 },
|
|
@@ -145,8 +109,8 @@ module.exports = {
|
|
|
145
109
|
{ name: 'scanFromURLAsync', argumentsCount: 2, key: 'scanFromURLAsync' },
|
|
146
110
|
],
|
|
147
111
|
ExpoBarometer: [
|
|
148
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
149
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key:
|
|
112
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
113
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
150
114
|
],
|
|
151
115
|
ExpoBattery: [
|
|
152
116
|
{ name: 'getBatteryLevelAsync', argumentsCount: 0, key: 'getBatteryLevelAsync' },
|
|
@@ -156,8 +120,6 @@ module.exports = {
|
|
|
156
120
|
argumentsCount: 0,
|
|
157
121
|
key: 'isLowPowerModeEnabledAsync',
|
|
158
122
|
},
|
|
159
|
-
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
160
|
-
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
161
123
|
],
|
|
162
124
|
ExpoBlurView: [],
|
|
163
125
|
ExpoBrightness: [
|
|
@@ -182,30 +144,112 @@ module.exports = {
|
|
|
182
144
|
argumentsCount: 0,
|
|
183
145
|
key: 'setSystemBrightnessModeAsync',
|
|
184
146
|
},
|
|
185
|
-
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
186
|
-
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
187
147
|
{ name: 'useSystemBrightnessAsync', argumentsCount: 0, key: 'useSystemBrightnessAsync' },
|
|
188
148
|
],
|
|
189
149
|
ExpoCalendar: [
|
|
190
|
-
{ name: 'deleteCalendarAsync', argumentsCount: 1, key:
|
|
191
|
-
{ name: '
|
|
192
|
-
{ name: '
|
|
193
|
-
{
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
{
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
{ name: 'getCalendarsAsync', argumentsCount: 1, key:
|
|
204
|
-
{ name: '
|
|
205
|
-
{ name: '
|
|
206
|
-
{ name: '
|
|
207
|
-
{ name: '
|
|
208
|
-
{ name: '
|
|
150
|
+
{ name: 'deleteCalendarAsync', argumentsCount: 1, key: 'deleteCalendarAsync' },
|
|
151
|
+
{ name: 'deleteEventAsync', argumentsCount: 2, key: 'deleteEventAsync' },
|
|
152
|
+
{ name: 'deleteReminderAsync', argumentsCount: 1, key: 'deleteReminderAsync' },
|
|
153
|
+
{
|
|
154
|
+
name: 'getAttendeesForEventAsync',
|
|
155
|
+
argumentsCount: 1,
|
|
156
|
+
key: 'getAttendeesForEventAsync',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
name: 'getCalendarPermissionsAsync',
|
|
160
|
+
argumentsCount: 0,
|
|
161
|
+
key: 'getCalendarPermissionsAsync',
|
|
162
|
+
},
|
|
163
|
+
{ name: 'getCalendarsAsync', argumentsCount: 1, key: 'getCalendarsAsync' },
|
|
164
|
+
{ name: 'getDefaultCalendarAsync', argumentsCount: 0, key: 'getDefaultCalendarAsync' },
|
|
165
|
+
{ name: 'getEventByIdAsync', argumentsCount: 2, key: 'getEventByIdAsync' },
|
|
166
|
+
{ name: 'getEventsAsync', argumentsCount: 3, key: 'getEventsAsync' },
|
|
167
|
+
{ name: 'getReminderByIdAsync', argumentsCount: 1, key: 'getReminderByIdAsync' },
|
|
168
|
+
{ name: 'getRemindersAsync', argumentsCount: 4, key: 'getRemindersAsync' },
|
|
169
|
+
{
|
|
170
|
+
name: 'getRemindersPermissionsAsync',
|
|
171
|
+
argumentsCount: 0,
|
|
172
|
+
key: 'getRemindersPermissionsAsync',
|
|
173
|
+
},
|
|
174
|
+
{ name: 'getSourceByIdAsync', argumentsCount: 1, key: 'getSourceByIdAsync' },
|
|
175
|
+
{ name: 'getSourcesAsync', argumentsCount: 0, key: 'getSourcesAsync' },
|
|
176
|
+
{
|
|
177
|
+
name: 'requestCalendarPermissionsAsync',
|
|
178
|
+
argumentsCount: 0,
|
|
179
|
+
key: 'requestCalendarPermissionsAsync',
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'requestRemindersPermissionsAsync',
|
|
183
|
+
argumentsCount: 0,
|
|
184
|
+
key: 'requestRemindersPermissionsAsync',
|
|
185
|
+
},
|
|
186
|
+
{ name: 'saveCalendarAsync', argumentsCount: 1, key: 'saveCalendarAsync' },
|
|
187
|
+
{ name: 'saveEventAsync', argumentsCount: 2, key: 'saveEventAsync' },
|
|
188
|
+
{ name: 'saveReminderAsync', argumentsCount: 1, key: 'saveReminderAsync' },
|
|
189
|
+
],
|
|
190
|
+
ExpoCamera: [
|
|
191
|
+
{ name: 'dismissScanner', argumentsCount: 0, key: 'dismissScanner' },
|
|
192
|
+
{
|
|
193
|
+
name: 'getAvailableVideoCodecsAsync',
|
|
194
|
+
argumentsCount: 0,
|
|
195
|
+
key: 'getAvailableVideoCodecsAsync',
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
name: 'getCameraPermissionsAsync',
|
|
199
|
+
argumentsCount: 0,
|
|
200
|
+
key: 'getCameraPermissionsAsync',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
name: 'getMicrophonePermissionsAsync',
|
|
204
|
+
argumentsCount: 0,
|
|
205
|
+
key: 'getMicrophonePermissionsAsync',
|
|
206
|
+
},
|
|
207
|
+
{ name: 'launchScanner', argumentsCount: 1, key: 'launchScanner' },
|
|
208
|
+
{
|
|
209
|
+
name: 'requestCameraPermissionsAsync',
|
|
210
|
+
argumentsCount: 0,
|
|
211
|
+
key: 'requestCameraPermissionsAsync',
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: 'requestMicrophonePermissionsAsync',
|
|
215
|
+
argumentsCount: 0,
|
|
216
|
+
key: 'requestMicrophonePermissionsAsync',
|
|
217
|
+
},
|
|
218
|
+
],
|
|
219
|
+
ExpoCameraLegacy: [
|
|
220
|
+
{ name: 'getAvailablePictureSizes', argumentsCount: 2, key: 'getAvailablePictureSizes' },
|
|
221
|
+
{
|
|
222
|
+
name: 'getAvailableVideoCodecsAsync',
|
|
223
|
+
argumentsCount: 0,
|
|
224
|
+
key: 'getAvailableVideoCodecsAsync',
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: 'getCameraPermissionsAsync',
|
|
228
|
+
argumentsCount: 0,
|
|
229
|
+
key: 'getCameraPermissionsAsync',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'getMicrophonePermissionsAsync',
|
|
233
|
+
argumentsCount: 0,
|
|
234
|
+
key: 'getMicrophonePermissionsAsync',
|
|
235
|
+
},
|
|
236
|
+
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
237
|
+
{ name: 'pausePreview', argumentsCount: 1, key: 'pausePreview' },
|
|
238
|
+
{ name: 'record', argumentsCount: 2, key: 'record' },
|
|
239
|
+
{
|
|
240
|
+
name: 'requestCameraPermissionsAsync',
|
|
241
|
+
argumentsCount: 0,
|
|
242
|
+
key: 'requestCameraPermissionsAsync',
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
name: 'requestMicrophonePermissionsAsync',
|
|
246
|
+
argumentsCount: 0,
|
|
247
|
+
key: 'requestMicrophonePermissionsAsync',
|
|
248
|
+
},
|
|
249
|
+
{ name: 'requestPermissionsAsync', argumentsCount: 0, key: 'requestPermissionsAsync' },
|
|
250
|
+
{ name: 'resumePreview', argumentsCount: 1, key: 'resumePreview' },
|
|
251
|
+
{ name: 'stopRecording', argumentsCount: 1, key: 'stopRecording' },
|
|
252
|
+
{ name: 'takePicture', argumentsCount: 2, key: 'takePicture' },
|
|
209
253
|
],
|
|
210
254
|
ExpoCellular: [
|
|
211
255
|
{ name: 'allowsVoipAsync', argumentsCount: 0, key: 'allowsVoipAsync' },
|
|
@@ -228,24 +272,45 @@ module.exports = {
|
|
|
228
272
|
},
|
|
229
273
|
],
|
|
230
274
|
ExpoContacts: [
|
|
231
|
-
{ name: '
|
|
232
|
-
{
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
{
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
{ name: '
|
|
243
|
-
{ name: '
|
|
244
|
-
{ name: '
|
|
245
|
-
{ name: '
|
|
246
|
-
{
|
|
247
|
-
|
|
248
|
-
|
|
275
|
+
{ name: 'addContactAsync', argumentsCount: 2, key: 'addContactAsync' },
|
|
276
|
+
{
|
|
277
|
+
name: 'addExistingContactToGroupAsync',
|
|
278
|
+
argumentsCount: 2,
|
|
279
|
+
key: 'addExistingContactToGroupAsync',
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
name: 'addExistingGroupToContainerAsync',
|
|
283
|
+
argumentsCount: 2,
|
|
284
|
+
key: 'addExistingGroupToContainerAsync',
|
|
285
|
+
},
|
|
286
|
+
{ name: 'createGroupAsync', argumentsCount: 2, key: 'createGroupAsync' },
|
|
287
|
+
{ name: 'dismissFormAsync', argumentsCount: 0, key: 'dismissFormAsync' },
|
|
288
|
+
{ name: 'getContactsAsync', argumentsCount: 1, key: 'getContactsAsync' },
|
|
289
|
+
{ name: 'getContainersAsync', argumentsCount: 1, key: 'getContainersAsync' },
|
|
290
|
+
{
|
|
291
|
+
name: 'getDefaultContainerIdentifierAsync',
|
|
292
|
+
argumentsCount: 0,
|
|
293
|
+
key: 'getDefaultContainerIdentifierAsync',
|
|
294
|
+
},
|
|
295
|
+
{ name: 'getGroupsAsync', argumentsCount: 1, key: 'getGroupsAsync' },
|
|
296
|
+
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
297
|
+
{
|
|
298
|
+
name: 'presentContactPickerAsync',
|
|
299
|
+
argumentsCount: 0,
|
|
300
|
+
key: 'presentContactPickerAsync',
|
|
301
|
+
},
|
|
302
|
+
{ name: 'presentFormAsync', argumentsCount: 3, key: 'presentFormAsync' },
|
|
303
|
+
{ name: 'removeContactAsync', argumentsCount: 1, key: 'removeContactAsync' },
|
|
304
|
+
{
|
|
305
|
+
name: 'removeContactFromGroupAsync',
|
|
306
|
+
argumentsCount: 2,
|
|
307
|
+
key: 'removeContactFromGroupAsync',
|
|
308
|
+
},
|
|
309
|
+
{ name: 'removeGroupAsync', argumentsCount: 1, key: 'removeGroupAsync' },
|
|
310
|
+
{ name: 'requestPermissionsAsync', argumentsCount: 0, key: 'requestPermissionsAsync' },
|
|
311
|
+
{ name: 'updateContactAsync', argumentsCount: 1, key: 'updateContactAsync' },
|
|
312
|
+
{ name: 'updateGroupNameAsync', argumentsCount: 2, key: 'updateGroupNameAsync' },
|
|
313
|
+
{ name: 'writeContactToFileAsync', argumentsCount: 1, key: 'writeContactToFileAsync' },
|
|
249
314
|
],
|
|
250
315
|
ExpoDevice: [
|
|
251
316
|
{ name: 'getDeviceTypeAsync', argumentsCount: 0, key: 'getDeviceTypeAsync' },
|
|
@@ -259,19 +324,26 @@ module.exports = {
|
|
|
259
324
|
ExpoDocumentPicker: [
|
|
260
325
|
{ name: 'getDocumentAsync', argumentsCount: 1, key: 'getDocumentAsync' },
|
|
261
326
|
],
|
|
262
|
-
ExpoFontLoader: [{ name: 'loadAsync', argumentsCount: 2, key:
|
|
327
|
+
ExpoFontLoader: [{ name: 'loadAsync', argumentsCount: 2, key: 'loadAsync' }],
|
|
328
|
+
ExpoGo: [],
|
|
263
329
|
ExpoHaptics: [
|
|
264
330
|
{ name: 'impactAsync', argumentsCount: 1, key: 'impactAsync' },
|
|
265
331
|
{ name: 'notificationAsync', argumentsCount: 1, key: 'notificationAsync' },
|
|
266
332
|
{ name: 'selectionAsync', argumentsCount: 0, key: 'selectionAsync' },
|
|
267
333
|
],
|
|
334
|
+
ExpoHead: [
|
|
335
|
+
{ name: 'clearActivitiesAsync', argumentsCount: 1, key: 'clearActivitiesAsync' },
|
|
336
|
+
{ name: 'createActivity', argumentsCount: 1, key: 'createActivity' },
|
|
337
|
+
{ name: 'getLaunchActivity', argumentsCount: 0, key: 'getLaunchActivity' },
|
|
338
|
+
{ name: 'revokeActivity', argumentsCount: 1, key: 'revokeActivity' },
|
|
339
|
+
{ name: 'suspendActivity', argumentsCount: 1, key: 'suspendActivity' },
|
|
340
|
+
],
|
|
268
341
|
ExpoImage: [
|
|
269
342
|
{ name: 'clearDiskCache', argumentsCount: 0, key: 'clearDiskCache' },
|
|
270
343
|
{ name: 'clearMemoryCache', argumentsCount: 0, key: 'clearMemoryCache' },
|
|
271
|
-
{ name: '
|
|
344
|
+
{ name: 'generateBlurhashAsync', argumentsCount: 2, key: 'generateBlurhashAsync' },
|
|
272
345
|
{ name: 'getCachePathAsync', argumentsCount: 1, key: 'getCachePathAsync' },
|
|
273
|
-
{ name: '
|
|
274
|
-
{ name: 'stopAnimating', argumentsCount: 0, key: 'stopAnimating' },
|
|
346
|
+
{ name: 'prefetch', argumentsCount: 3, key: 'prefetch' },
|
|
275
347
|
],
|
|
276
348
|
ExpoImageManipulator: [
|
|
277
349
|
{ name: 'manipulateAsync', argumentsCount: 3, key: 'manipulateAsync' },
|
|
@@ -297,8 +369,6 @@ module.exports = {
|
|
|
297
369
|
{ name: 'getCalendars', argumentsCount: 0, key: 'getCalendars' },
|
|
298
370
|
{ name: 'getLocales', argumentsCount: 0, key: 'getLocales' },
|
|
299
371
|
{ name: 'getLocalizationAsync', argumentsCount: 0, key: 'getLocalizationAsync' },
|
|
300
|
-
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
301
|
-
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
302
372
|
],
|
|
303
373
|
ExpoLocation: [
|
|
304
374
|
{ name: 'watchPositionImplAsync', argumentsCount: 2, key: 0 },
|
|
@@ -328,25 +398,33 @@ module.exports = {
|
|
|
328
398
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
329
399
|
],
|
|
330
400
|
ExpoMediaLibrary: [
|
|
331
|
-
{ name: '
|
|
332
|
-
{ name: '
|
|
333
|
-
{ name: '
|
|
334
|
-
{ name: '
|
|
335
|
-
{ name: '
|
|
336
|
-
{ name: '
|
|
337
|
-
{ name: 'getAlbumsAsync', argumentsCount: 1, key:
|
|
338
|
-
{ name: '
|
|
339
|
-
{ name: '
|
|
340
|
-
{ name: '
|
|
341
|
-
{ name: '
|
|
342
|
-
{
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
401
|
+
{ name: 'addAssetsToAlbumAsync', argumentsCount: 2, key: 'addAssetsToAlbumAsync' },
|
|
402
|
+
{ name: 'createAlbumAsync', argumentsCount: 2, key: 'createAlbumAsync' },
|
|
403
|
+
{ name: 'createAssetAsync', argumentsCount: 1, key: 'createAssetAsync' },
|
|
404
|
+
{ name: 'deleteAlbumsAsync', argumentsCount: 2, key: 'deleteAlbumsAsync' },
|
|
405
|
+
{ name: 'deleteAssetsAsync', argumentsCount: 1, key: 'deleteAssetsAsync' },
|
|
406
|
+
{ name: 'getAlbumAsync', argumentsCount: 1, key: 'getAlbumAsync' },
|
|
407
|
+
{ name: 'getAlbumsAsync', argumentsCount: 1, key: 'getAlbumsAsync' },
|
|
408
|
+
{ name: 'getAssetInfoAsync', argumentsCount: 2, key: 'getAssetInfoAsync' },
|
|
409
|
+
{ name: 'getAssetsAsync', argumentsCount: 1, key: 'getAssetsAsync' },
|
|
410
|
+
{ name: 'getMomentsAsync', argumentsCount: 0, key: 'getMomentsAsync' },
|
|
411
|
+
{ name: 'getPermissionsAsync', argumentsCount: 1, key: 'getPermissionsAsync' },
|
|
412
|
+
{
|
|
413
|
+
name: 'presentPermissionsPickerAsync',
|
|
414
|
+
argumentsCount: 0,
|
|
415
|
+
key: 'presentPermissionsPickerAsync',
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
name: 'removeAssetsFromAlbumAsync',
|
|
419
|
+
argumentsCount: 2,
|
|
420
|
+
key: 'removeAssetsFromAlbumAsync',
|
|
421
|
+
},
|
|
422
|
+
{ name: 'requestPermissionsAsync', argumentsCount: 1, key: 'requestPermissionsAsync' },
|
|
423
|
+
{ name: 'saveToLibraryAsync', argumentsCount: 1, key: 'saveToLibraryAsync' },
|
|
346
424
|
],
|
|
347
425
|
ExponentAccelerometer: [
|
|
348
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
349
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key:
|
|
426
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
427
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
350
428
|
],
|
|
351
429
|
ExponentAV: [
|
|
352
430
|
{ name: 'getStatusForVideo', argumentsCount: 1, key: 0 },
|
|
@@ -373,65 +451,42 @@ module.exports = {
|
|
|
373
451
|
{ name: 'getCurrentInput', argumentsCount: 0, key: 21 },
|
|
374
452
|
{ name: 'startAudioRecording', argumentsCount: 0, key: 22 },
|
|
375
453
|
],
|
|
376
|
-
|
|
377
|
-
{ name: '
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
},
|
|
454
|
+
ExponentConstants: [
|
|
455
|
+
{ name: 'getWebViewUserAgentAsync', argumentsCount: 0, key: 'getWebViewUserAgentAsync' },
|
|
456
|
+
],
|
|
457
|
+
ExponentDeviceMotion: [
|
|
458
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
459
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
460
|
+
],
|
|
461
|
+
ExponentFileSystem: [
|
|
462
|
+
{ name: 'copyAsync', argumentsCount: 1, key: 'copyAsync' },
|
|
463
|
+
{ name: 'deleteAsync', argumentsCount: 2, key: 'deleteAsync' },
|
|
464
|
+
{ name: 'downloadAsync', argumentsCount: 3, key: 'downloadAsync' },
|
|
388
465
|
{
|
|
389
|
-
name: '
|
|
390
|
-
argumentsCount:
|
|
391
|
-
key: '
|
|
466
|
+
name: 'downloadResumablePauseAsync',
|
|
467
|
+
argumentsCount: 1,
|
|
468
|
+
key: 'downloadResumablePauseAsync',
|
|
392
469
|
},
|
|
393
|
-
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
394
|
-
{ name: 'pausePreview', argumentsCount: 1, key: 'pausePreview' },
|
|
395
|
-
{ name: 'record', argumentsCount: 2, key: 'record' },
|
|
396
470
|
{
|
|
397
|
-
name: '
|
|
398
|
-
argumentsCount:
|
|
399
|
-
key: '
|
|
471
|
+
name: 'downloadResumableStartAsync',
|
|
472
|
+
argumentsCount: 5,
|
|
473
|
+
key: 'downloadResumableStartAsync',
|
|
400
474
|
},
|
|
475
|
+
{ name: 'getFreeDiskStorageAsync', argumentsCount: 0, key: 'getFreeDiskStorageAsync' },
|
|
476
|
+
{ name: 'getInfoAsync', argumentsCount: 2, key: 'getInfoAsync' },
|
|
401
477
|
{
|
|
402
|
-
name: '
|
|
478
|
+
name: 'getTotalDiskCapacityAsync',
|
|
403
479
|
argumentsCount: 0,
|
|
404
|
-
key: '
|
|
480
|
+
key: 'getTotalDiskCapacityAsync',
|
|
405
481
|
},
|
|
406
|
-
{ name: '
|
|
407
|
-
{ name: '
|
|
408
|
-
{ name: '
|
|
409
|
-
{ name: '
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
{ name: '
|
|
413
|
-
|
|
414
|
-
ExponentDeviceMotion: [
|
|
415
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key: 0 },
|
|
416
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key: 1 },
|
|
417
|
-
],
|
|
418
|
-
ExponentFileSystem: [
|
|
419
|
-
{ name: 'uploadAsync', argumentsCount: 3, key: 0 },
|
|
420
|
-
{ name: 'readDirectoryAsync', argumentsCount: 1, key: 1 },
|
|
421
|
-
{ name: 'getTotalDiskCapacityAsync', argumentsCount: 0, key: 2 },
|
|
422
|
-
{ name: 'getInfoAsync', argumentsCount: 2, key: 3 },
|
|
423
|
-
{ name: 'downloadAsync', argumentsCount: 3, key: 4 },
|
|
424
|
-
{ name: 'writeAsStringAsync', argumentsCount: 3, key: 5 },
|
|
425
|
-
{ name: 'deleteAsync', argumentsCount: 2, key: 6 },
|
|
426
|
-
{ name: 'moveAsync', argumentsCount: 1, key: 7 },
|
|
427
|
-
{ name: 'getFreeDiskStorageAsync', argumentsCount: 0, key: 8 },
|
|
428
|
-
{ name: 'readAsStringAsync', argumentsCount: 2, key: 9 },
|
|
429
|
-
{ name: 'downloadResumableStartAsync', argumentsCount: 5, key: 10 },
|
|
430
|
-
{ name: 'makeDirectoryAsync', argumentsCount: 2, key: 11 },
|
|
431
|
-
{ name: 'uploadTaskStartAsync', argumentsCount: 4, key: 12 },
|
|
432
|
-
{ name: 'copyAsync', argumentsCount: 1, key: 13 },
|
|
433
|
-
{ name: 'networkTaskCancelAsync', argumentsCount: 1, key: 14 },
|
|
434
|
-
{ name: 'downloadResumablePauseAsync', argumentsCount: 1, key: 15 },
|
|
482
|
+
{ name: 'makeDirectoryAsync', argumentsCount: 2, key: 'makeDirectoryAsync' },
|
|
483
|
+
{ name: 'moveAsync', argumentsCount: 1, key: 'moveAsync' },
|
|
484
|
+
{ name: 'networkTaskCancelAsync', argumentsCount: 1, key: 'networkTaskCancelAsync' },
|
|
485
|
+
{ name: 'readAsStringAsync', argumentsCount: 2, key: 'readAsStringAsync' },
|
|
486
|
+
{ name: 'readDirectoryAsync', argumentsCount: 1, key: 'readDirectoryAsync' },
|
|
487
|
+
{ name: 'uploadAsync', argumentsCount: 3, key: 'uploadAsync' },
|
|
488
|
+
{ name: 'uploadTaskStartAsync', argumentsCount: 4, key: 'uploadTaskStartAsync' },
|
|
489
|
+
{ name: 'writeAsStringAsync', argumentsCount: 3, key: 'writeAsStringAsync' },
|
|
435
490
|
],
|
|
436
491
|
ExponentGLObjectManager: [
|
|
437
492
|
{ name: 'createContextAsync', argumentsCount: 0, key: 0 },
|
|
@@ -442,8 +497,8 @@ module.exports = {
|
|
|
442
497
|
],
|
|
443
498
|
ExponentGLView: [],
|
|
444
499
|
ExponentGyroscope: [
|
|
445
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
446
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key:
|
|
500
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
501
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
447
502
|
],
|
|
448
503
|
ExponentImagePicker: [
|
|
449
504
|
{
|
|
@@ -470,18 +525,18 @@ module.exports = {
|
|
|
470
525
|
},
|
|
471
526
|
],
|
|
472
527
|
ExponentMagnetometer: [
|
|
473
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
474
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key:
|
|
528
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
529
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
475
530
|
],
|
|
476
531
|
ExponentMagnetometerUncalibrated: [
|
|
477
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
478
|
-
{ name: 'setUpdateInterval', argumentsCount: 1, key:
|
|
532
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
533
|
+
{ name: 'setUpdateInterval', argumentsCount: 1, key: 'setUpdateInterval' },
|
|
479
534
|
],
|
|
480
535
|
ExponentPedometer: [
|
|
481
|
-
{ name: '
|
|
482
|
-
{ name: '
|
|
483
|
-
{ name: 'isAvailableAsync', argumentsCount: 0, key:
|
|
484
|
-
{ name: '
|
|
536
|
+
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
537
|
+
{ name: 'getStepCountAsync', argumentsCount: 2, key: 'getStepCountAsync' },
|
|
538
|
+
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
539
|
+
{ name: 'requestPermissionsAsync', argumentsCount: 0, key: 'requestPermissionsAsync' },
|
|
485
540
|
],
|
|
486
541
|
ExpoNetwork: [
|
|
487
542
|
{ name: 'getIpAddressAsync', argumentsCount: 0, key: 'getIpAddressAsync' },
|
|
@@ -515,10 +570,6 @@ module.exports = {
|
|
|
515
570
|
ExpoNotificationsHandlerModule: [
|
|
516
571
|
{ name: 'handleNotificationAsync', argumentsCount: 2, key: 0 },
|
|
517
572
|
],
|
|
518
|
-
ExpoPermissions: [
|
|
519
|
-
{ name: 'getAsync', argumentsCount: 1, key: 0 },
|
|
520
|
-
{ name: 'askAsync', argumentsCount: 1, key: 1 },
|
|
521
|
-
],
|
|
522
573
|
ExpoPrint: [
|
|
523
574
|
{ name: 'print', argumentsCount: 1, key: 'print' },
|
|
524
575
|
{ name: 'printToFileAsync', argumentsCount: 1, key: 'printToFileAsync' },
|
|
@@ -537,8 +588,8 @@ module.exports = {
|
|
|
537
588
|
},
|
|
538
589
|
],
|
|
539
590
|
ExpoScreenCapture: [
|
|
540
|
-
{ name: '
|
|
541
|
-
{ name: '
|
|
591
|
+
{ name: 'allowScreenCapture', argumentsCount: 0, key: 'allowScreenCapture' },
|
|
592
|
+
{ name: 'preventScreenCapture', argumentsCount: 0, key: 'preventScreenCapture' },
|
|
542
593
|
],
|
|
543
594
|
ExpoScreenOrientation: [
|
|
544
595
|
{ name: 'getOrientationAsync', argumentsCount: 0, key: 'getOrientationAsync' },
|
|
@@ -550,8 +601,6 @@ module.exports = {
|
|
|
550
601
|
},
|
|
551
602
|
{ name: 'lockAsync', argumentsCount: 1, key: 'lockAsync' },
|
|
552
603
|
{ name: 'lockPlatformAsync', argumentsCount: 1, key: 'lockPlatformAsync' },
|
|
553
|
-
{ name: 'startObserving', argumentsCount: 0, key: 'startObserving' },
|
|
554
|
-
{ name: 'stopObserving', argumentsCount: 0, key: 'stopObserving' },
|
|
555
604
|
{
|
|
556
605
|
name: 'supportsOrientationLockAsync',
|
|
557
606
|
argumentsCount: 1,
|
|
@@ -559,9 +608,16 @@ module.exports = {
|
|
|
559
608
|
},
|
|
560
609
|
],
|
|
561
610
|
ExpoSecureStore: [
|
|
611
|
+
{
|
|
612
|
+
name: 'canUseBiometricAuthentication',
|
|
613
|
+
argumentsCount: 0,
|
|
614
|
+
key: 'canUseBiometricAuthentication',
|
|
615
|
+
},
|
|
562
616
|
{ name: 'deleteValueWithKeyAsync', argumentsCount: 2, key: 'deleteValueWithKeyAsync' },
|
|
563
617
|
{ name: 'getValueWithKeyAsync', argumentsCount: 2, key: 'getValueWithKeyAsync' },
|
|
618
|
+
{ name: 'getValueWithKeySync', argumentsCount: 2, key: 'getValueWithKeySync' },
|
|
564
619
|
{ name: 'setValueWithKeyAsync', argumentsCount: 3, key: 'setValueWithKeyAsync' },
|
|
620
|
+
{ name: 'setValueWithKeySync', argumentsCount: 3, key: 'setValueWithKeySync' },
|
|
565
621
|
],
|
|
566
622
|
ExpoSharing: [{ name: 'shareAsync', argumentsCount: 2, key: 'shareAsync' }],
|
|
567
623
|
ExpoSMS: [
|
|
@@ -582,9 +638,15 @@ module.exports = {
|
|
|
582
638
|
],
|
|
583
639
|
ExpoSQLite: [
|
|
584
640
|
{ name: 'close', argumentsCount: 1, key: 'close' },
|
|
641
|
+
{ name: 'closeSync', argumentsCount: 1, key: 'closeSync' },
|
|
585
642
|
{ name: 'deleteAsync', argumentsCount: 1, key: 'deleteAsync' },
|
|
586
643
|
{ name: 'exec', argumentsCount: 3, key: 'exec' },
|
|
587
644
|
],
|
|
645
|
+
ExpoSQLiteNext: [
|
|
646
|
+
{ name: 'deleteDatabaseAsync', argumentsCount: 1, key: 'deleteDatabaseAsync' },
|
|
647
|
+
{ name: 'deleteDatabaseSync', argumentsCount: 1, key: 'deleteDatabaseSync' },
|
|
648
|
+
{ name: 'importAssetDatabaseAsync', argumentsCount: 3, key: 'importAssetDatabaseAsync' },
|
|
649
|
+
],
|
|
588
650
|
ExpoStoreReview: [
|
|
589
651
|
{ name: 'isAvailableAsync', argumentsCount: 0, key: 'isAvailableAsync' },
|
|
590
652
|
{ name: 'requestReview', argumentsCount: 0, key: 'requestReview' },
|
|
@@ -603,6 +665,7 @@ module.exports = {
|
|
|
603
665
|
{ name: 'getRegisteredTasksAsync', argumentsCount: 0, key: 6 },
|
|
604
666
|
],
|
|
605
667
|
ExpoTrackingTransparency: [
|
|
668
|
+
{ name: 'getAdvertisingId', argumentsCount: 0, key: 'getAdvertisingId' },
|
|
606
669
|
{ name: 'getPermissionsAsync', argumentsCount: 0, key: 'getPermissionsAsync' },
|
|
607
670
|
{ name: 'requestPermissionsAsync', argumentsCount: 0, key: 'requestPermissionsAsync' },
|
|
608
671
|
],
|
|
@@ -611,10 +674,22 @@ module.exports = {
|
|
|
611
674
|
{ name: 'clearLogEntriesAsync', argumentsCount: 0, key: 'clearLogEntriesAsync' },
|
|
612
675
|
{ name: 'fetchUpdateAsync', argumentsCount: 0, key: 'fetchUpdateAsync' },
|
|
613
676
|
{ name: 'getExtraParamsAsync', argumentsCount: 0, key: 'getExtraParamsAsync' },
|
|
677
|
+
{
|
|
678
|
+
name: 'getNativeStateMachineContextAsync',
|
|
679
|
+
argumentsCount: 0,
|
|
680
|
+
key: 'getNativeStateMachineContextAsync',
|
|
681
|
+
},
|
|
614
682
|
{ name: 'readLogEntriesAsync', argumentsCount: 1, key: 'readLogEntriesAsync' },
|
|
615
683
|
{ name: 'reload', argumentsCount: 0, key: 'reload' },
|
|
616
684
|
{ name: 'setExtraParamAsync', argumentsCount: 2, key: 'setExtraParamAsync' },
|
|
617
685
|
],
|
|
686
|
+
ExpoVideo: [
|
|
687
|
+
{
|
|
688
|
+
name: 'isPictureInPictureSupported',
|
|
689
|
+
argumentsCount: 0,
|
|
690
|
+
key: 'isPictureInPictureSupported',
|
|
691
|
+
},
|
|
692
|
+
],
|
|
618
693
|
ExpoVideoThumbnails: [{ name: 'getThumbnail', argumentsCount: 2, key: 'getThumbnail' }],
|
|
619
694
|
ExpoVideoView: [{ name: 'setFullscreen', argumentsCount: 2, key: 'setFullscreen' }],
|
|
620
695
|
ExpoWebBrowser: [
|
|
@@ -631,44 +706,206 @@ module.exports = {
|
|
|
631
706
|
{ name: 'openBrowserAsync', argumentsCount: 2, key: 'openBrowserAsync' },
|
|
632
707
|
{ name: 'warmUpAsync', argumentsCount: 0, key: 'warmUpAsync' },
|
|
633
708
|
],
|
|
634
|
-
NativeModulesProxy: [{ name: 'callMethod', argumentsCount: 3, key: 'callMethod' }],
|
|
635
709
|
NotificationsServerRegistrationModule: [
|
|
636
710
|
{ name: 'getRegistrationInfoAsync', argumentsCount: 0, key: 0 },
|
|
637
711
|
{ name: 'setRegistrationInfoAsync', argumentsCount: 1, key: 1 },
|
|
638
712
|
{ name: 'getInstallationIdAsync', argumentsCount: 0, key: 2 },
|
|
639
713
|
],
|
|
714
|
+
SymbolModule: [],
|
|
640
715
|
},
|
|
641
716
|
},
|
|
642
717
|
getConstants: { type: 'function' },
|
|
643
718
|
modulesConstants: {
|
|
644
719
|
type: 'mock',
|
|
645
720
|
mockDefinition: {
|
|
646
|
-
EASClient: {
|
|
647
|
-
|
|
721
|
+
EASClient: {
|
|
722
|
+
addListener: { type: 'function' },
|
|
723
|
+
clientID: { type: 'string' },
|
|
724
|
+
removeListeners: { type: 'function' },
|
|
725
|
+
},
|
|
726
|
+
ExpoAppleAuthentication: {
|
|
727
|
+
addListener: { type: 'function' },
|
|
728
|
+
getCredentialStateAsync: { type: 'function' },
|
|
729
|
+
isAvailableAsync: { type: 'function' },
|
|
730
|
+
removeListeners: { type: 'function' },
|
|
731
|
+
requestAsync: { type: 'function' },
|
|
732
|
+
},
|
|
648
733
|
ExpoApplication: {
|
|
734
|
+
addListener: { type: 'function' },
|
|
649
735
|
applicationId: { type: 'string' },
|
|
650
736
|
applicationName: { type: 'string' },
|
|
737
|
+
getApplicationReleaseTypeAsync: { type: 'function' },
|
|
738
|
+
getInstallationTimeAsync: { type: 'function' },
|
|
739
|
+
getIosIdForVendorAsync: { type: 'function' },
|
|
740
|
+
getPushNotificationServiceEnvironmentAsync: { type: 'function' },
|
|
651
741
|
nativeApplicationVersion: { type: 'string' },
|
|
652
742
|
nativeBuildVersion: { type: 'string' },
|
|
743
|
+
removeListeners: { type: 'function' },
|
|
744
|
+
},
|
|
745
|
+
ExpoAsset: {
|
|
746
|
+
addListener: { type: 'function' },
|
|
747
|
+
downloadAsync: { type: 'function' },
|
|
748
|
+
removeListeners: { type: 'function' },
|
|
749
|
+
},
|
|
750
|
+
ExpoAudio: {
|
|
751
|
+
addListener: { type: 'function' },
|
|
752
|
+
removeListeners: { type: 'function' },
|
|
753
|
+
setCategory: { type: 'function' },
|
|
754
|
+
setIsAudioActive: { type: 'function' },
|
|
755
|
+
},
|
|
756
|
+
ExpoBackgroundFetch: {
|
|
757
|
+
addListener: { type: 'function' },
|
|
758
|
+
getStatusAsync: { type: 'function' },
|
|
759
|
+
registerTaskAsync: { type: 'function' },
|
|
760
|
+
removeListeners: { type: 'function' },
|
|
761
|
+
setMinimumIntervalAsync: { type: 'function' },
|
|
762
|
+
unregisterTaskAsync: { type: 'function' },
|
|
763
|
+
},
|
|
764
|
+
ExpoBarCodeScanner: {
|
|
765
|
+
addListener: { type: 'function' },
|
|
766
|
+
BarCodeType: { type: 'object' },
|
|
767
|
+
getPermissionsAsync: { type: 'function' },
|
|
768
|
+
removeListeners: { type: 'function' },
|
|
769
|
+
requestPermissionsAsync: { type: 'function' },
|
|
770
|
+
scanFromURLAsync: { type: 'function' },
|
|
771
|
+
Type: { type: 'object' },
|
|
772
|
+
},
|
|
773
|
+
ExpoBarometer: {
|
|
774
|
+
addListener: { type: 'function' },
|
|
775
|
+
isAvailableAsync: { type: 'function' },
|
|
776
|
+
removeListeners: { type: 'function' },
|
|
777
|
+
setUpdateInterval: { type: 'function' },
|
|
778
|
+
},
|
|
779
|
+
ExpoBattery: {
|
|
780
|
+
addListener: { type: 'function' },
|
|
781
|
+
getBatteryLevelAsync: { type: 'function' },
|
|
782
|
+
getBatteryStateAsync: { type: 'function' },
|
|
783
|
+
isLowPowerModeEnabledAsync: { type: 'function' },
|
|
784
|
+
isSupported: { type: 'boolean', mock: false },
|
|
785
|
+
removeListeners: { type: 'function' },
|
|
786
|
+
},
|
|
787
|
+
ExpoBlurView: { addListener: { type: 'function' }, removeListeners: { type: 'function' } },
|
|
788
|
+
ExpoBrightness: {
|
|
789
|
+
addListener: { type: 'function' },
|
|
790
|
+
getBrightnessAsync: { type: 'function' },
|
|
791
|
+
getPermissionsAsync: { type: 'function' },
|
|
792
|
+
getSystemBrightnessAsync: { type: 'function' },
|
|
793
|
+
getSystemBrightnessModeAsync: { type: 'function' },
|
|
794
|
+
isUsingSystemBrightnessAsync: { type: 'function' },
|
|
795
|
+
removeListeners: { type: 'function' },
|
|
796
|
+
requestPermissionsAsync: { type: 'function' },
|
|
797
|
+
setBrightnessAsync: { type: 'function' },
|
|
798
|
+
setSystemBrightnessAsync: { type: 'function' },
|
|
799
|
+
setSystemBrightnessModeAsync: { type: 'function' },
|
|
800
|
+
useSystemBrightnessAsync: { type: 'function' },
|
|
801
|
+
},
|
|
802
|
+
ExpoCalendar: {
|
|
803
|
+
addListener: { type: 'function' },
|
|
804
|
+
deleteCalendarAsync: { type: 'function' },
|
|
805
|
+
deleteEventAsync: { type: 'function' },
|
|
806
|
+
deleteReminderAsync: { type: 'function' },
|
|
807
|
+
getAttendeesForEventAsync: { type: 'function' },
|
|
808
|
+
getCalendarPermissionsAsync: { type: 'function' },
|
|
809
|
+
getCalendarsAsync: { type: 'function' },
|
|
810
|
+
getDefaultCalendarAsync: { type: 'function' },
|
|
811
|
+
getEventByIdAsync: { type: 'function' },
|
|
812
|
+
getEventsAsync: { type: 'function' },
|
|
813
|
+
getReminderByIdAsync: { type: 'function' },
|
|
814
|
+
getRemindersAsync: { type: 'function' },
|
|
815
|
+
getRemindersPermissionsAsync: { type: 'function' },
|
|
816
|
+
getSourceByIdAsync: { type: 'function' },
|
|
817
|
+
getSourcesAsync: { type: 'function' },
|
|
818
|
+
removeListeners: { type: 'function' },
|
|
819
|
+
requestCalendarPermissionsAsync: { type: 'function' },
|
|
820
|
+
requestRemindersPermissionsAsync: { type: 'function' },
|
|
821
|
+
saveCalendarAsync: { type: 'function' },
|
|
822
|
+
saveEventAsync: { type: 'function' },
|
|
823
|
+
saveReminderAsync: { type: 'function' },
|
|
824
|
+
},
|
|
825
|
+
ExpoCamera: {
|
|
826
|
+
addListener: { type: 'function' },
|
|
827
|
+
dismissScanner: { type: 'function' },
|
|
828
|
+
getAvailableVideoCodecsAsync: { type: 'function' },
|
|
829
|
+
getCameraPermissionsAsync: { type: 'function' },
|
|
830
|
+
getMicrophonePermissionsAsync: { type: 'function' },
|
|
831
|
+
launchScanner: { type: 'function' },
|
|
832
|
+
removeListeners: { type: 'function' },
|
|
833
|
+
requestCameraPermissionsAsync: { type: 'function' },
|
|
834
|
+
requestMicrophonePermissionsAsync: { type: 'function' },
|
|
835
|
+
},
|
|
836
|
+
ExpoCameraLegacy: {
|
|
837
|
+
addListener: { type: 'function' },
|
|
838
|
+
AutoFocus: { type: 'object' },
|
|
839
|
+
FlashMode: { type: 'object' },
|
|
840
|
+
getAvailablePictureSizes: { type: 'function' },
|
|
841
|
+
getAvailableVideoCodecsAsync: { type: 'function' },
|
|
842
|
+
getCameraPermissionsAsync: { type: 'function' },
|
|
843
|
+
getMicrophonePermissionsAsync: { type: 'function' },
|
|
844
|
+
getPermissionsAsync: { type: 'function' },
|
|
845
|
+
pausePreview: { type: 'function' },
|
|
846
|
+
record: { type: 'function' },
|
|
847
|
+
removeListeners: { type: 'function' },
|
|
848
|
+
requestCameraPermissionsAsync: { type: 'function' },
|
|
849
|
+
requestMicrophonePermissionsAsync: { type: 'function' },
|
|
850
|
+
requestPermissionsAsync: { type: 'function' },
|
|
851
|
+
resumePreview: { type: 'function' },
|
|
852
|
+
stopRecording: { type: 'function' },
|
|
853
|
+
takePicture: { type: 'function' },
|
|
854
|
+
Type: { type: 'object' },
|
|
855
|
+
VideoCodec: { type: 'object' },
|
|
856
|
+
VideoQuality: { type: 'object' },
|
|
857
|
+
VideoStabilization: { type: 'object' },
|
|
858
|
+
WhiteBalance: { type: 'object' },
|
|
653
859
|
},
|
|
654
|
-
ExpoBarCodeScanner: { BarCodeType: { type: 'object' }, Type: { type: 'object' } },
|
|
655
|
-
ExpoBattery: { isSupported: { type: 'boolean', mock: false } },
|
|
656
|
-
ExpoBlurView: {},
|
|
657
|
-
ExpoBrightness: {},
|
|
658
860
|
ExpoCellular: {
|
|
861
|
+
addListener: { type: 'function' },
|
|
659
862
|
allowsVoip: { type: 'object', mock: null },
|
|
863
|
+
allowsVoipAsync: { type: 'function' },
|
|
660
864
|
carrier: { type: 'object', mock: null },
|
|
661
865
|
generation: { type: 'number', mock: 0 },
|
|
866
|
+
getCarrierNameAsync: { type: 'function' },
|
|
867
|
+
getCellularGenerationAsync: { type: 'function' },
|
|
868
|
+
getIsoCountryCodeAsync: { type: 'function' },
|
|
869
|
+
getMobileCountryCodeAsync: { type: 'function' },
|
|
870
|
+
getMobileNetworkCodeAsync: { type: 'function' },
|
|
662
871
|
isoCountryCode: { type: 'object', mock: null },
|
|
663
872
|
mobileCountryCode: { type: 'object', mock: null },
|
|
664
873
|
mobileNetworkCode: { type: 'object', mock: null },
|
|
874
|
+
removeListeners: { type: 'function' },
|
|
875
|
+
},
|
|
876
|
+
ExpoContacts: {
|
|
877
|
+
addContactAsync: { type: 'function' },
|
|
878
|
+
addExistingContactToGroupAsync: { type: 'function' },
|
|
879
|
+
addExistingGroupToContainerAsync: { type: 'function' },
|
|
880
|
+
addListener: { type: 'function' },
|
|
881
|
+
createGroupAsync: { type: 'function' },
|
|
882
|
+
dismissFormAsync: { type: 'function' },
|
|
883
|
+
getContactsAsync: { type: 'function' },
|
|
884
|
+
getContainersAsync: { type: 'function' },
|
|
885
|
+
getDefaultContainerIdentifierAsync: { type: 'function' },
|
|
886
|
+
getGroupsAsync: { type: 'function' },
|
|
887
|
+
getPermissionsAsync: { type: 'function' },
|
|
888
|
+
presentContactPickerAsync: { type: 'function' },
|
|
889
|
+
presentFormAsync: { type: 'function' },
|
|
890
|
+
removeContactAsync: { type: 'function' },
|
|
891
|
+
removeContactFromGroupAsync: { type: 'function' },
|
|
892
|
+
removeGroupAsync: { type: 'function' },
|
|
893
|
+
removeListeners: { type: 'function' },
|
|
894
|
+
requestPermissionsAsync: { type: 'function' },
|
|
895
|
+
updateContactAsync: { type: 'function' },
|
|
896
|
+
updateGroupNameAsync: { type: 'function' },
|
|
897
|
+
writeContactToFileAsync: { type: 'function' },
|
|
665
898
|
},
|
|
666
899
|
ExpoDevice: {
|
|
900
|
+
addListener: { type: 'function' },
|
|
667
901
|
brand: { type: 'string' },
|
|
668
902
|
deviceName: { type: 'string' },
|
|
669
903
|
deviceType: { type: 'number', mock: 1 },
|
|
670
|
-
deviceYearClass: { type: 'number', mock:
|
|
904
|
+
deviceYearClass: { type: 'number', mock: 2024 },
|
|
905
|
+
getDeviceTypeAsync: { type: 'function' },
|
|
906
|
+
getUptimeAsync: { type: 'function' },
|
|
671
907
|
isDevice: { type: 'boolean', mock: false },
|
|
908
|
+
isRootedExperimentalAsync: { type: 'function' },
|
|
672
909
|
manufacturer: { type: 'string' },
|
|
673
910
|
modelId: { type: 'string' },
|
|
674
911
|
modelName: { type: 'string' },
|
|
@@ -676,116 +913,420 @@ module.exports = {
|
|
|
676
913
|
osInternalBuildId: { type: 'string' },
|
|
677
914
|
osName: { type: 'string' },
|
|
678
915
|
osVersion: { type: 'string' },
|
|
916
|
+
removeListeners: { type: 'function' },
|
|
679
917
|
supportedCpuArchitectures: { type: 'array' },
|
|
680
|
-
totalMemory: { type: 'number', mock:
|
|
918
|
+
totalMemory: { type: 'number', mock: 34359738368 },
|
|
919
|
+
},
|
|
920
|
+
ExpoDocumentPicker: {
|
|
921
|
+
addListener: { type: 'function' },
|
|
922
|
+
getDocumentAsync: { type: 'function' },
|
|
923
|
+
removeListeners: { type: 'function' },
|
|
681
924
|
},
|
|
682
|
-
ExpoDocumentPicker: {},
|
|
683
925
|
ExpoFontLoader: {
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
926
|
+
addListener: { type: 'function' },
|
|
927
|
+
loadAsync: { type: 'function' },
|
|
928
|
+
removeListeners: { type: 'function' },
|
|
929
|
+
},
|
|
930
|
+
ExpoGo: {
|
|
931
|
+
addListener: { type: 'function' },
|
|
932
|
+
expoVersion: { type: 'string' },
|
|
933
|
+
projectConfig: { type: 'object' },
|
|
934
|
+
removeListeners: { type: 'function' },
|
|
935
|
+
},
|
|
936
|
+
ExpoHaptics: {
|
|
937
|
+
addListener: { type: 'function' },
|
|
938
|
+
impactAsync: { type: 'function' },
|
|
939
|
+
notificationAsync: { type: 'function' },
|
|
940
|
+
removeListeners: { type: 'function' },
|
|
941
|
+
selectionAsync: { type: 'function' },
|
|
942
|
+
},
|
|
943
|
+
ExpoHead: {
|
|
944
|
+
activities: { type: 'object' },
|
|
945
|
+
addListener: { type: 'function' },
|
|
946
|
+
clearActivitiesAsync: { type: 'function' },
|
|
947
|
+
createActivity: { type: 'function' },
|
|
948
|
+
getLaunchActivity: { type: 'function' },
|
|
949
|
+
removeListeners: { type: 'function' },
|
|
950
|
+
revokeActivity: { type: 'function' },
|
|
951
|
+
suspendActivity: { type: 'function' },
|
|
952
|
+
},
|
|
953
|
+
ExpoImage: {
|
|
954
|
+
addListener: { type: 'function' },
|
|
955
|
+
clearDiskCache: { type: 'function' },
|
|
956
|
+
clearMemoryCache: { type: 'function' },
|
|
957
|
+
generateBlurhashAsync: { type: 'function' },
|
|
958
|
+
getCachePathAsync: { type: 'function' },
|
|
959
|
+
prefetch: { type: 'function' },
|
|
960
|
+
removeListeners: { type: 'function' },
|
|
961
|
+
},
|
|
962
|
+
ExpoImageManipulator: {
|
|
963
|
+
addListener: { type: 'function' },
|
|
964
|
+
manipulateAsync: { type: 'function' },
|
|
965
|
+
removeListeners: { type: 'function' },
|
|
966
|
+
},
|
|
967
|
+
ExpoKeepAwake: {
|
|
968
|
+
activate: { type: 'function' },
|
|
969
|
+
addListener: { type: 'function' },
|
|
970
|
+
deactivate: { type: 'function' },
|
|
971
|
+
isActivated: { type: 'function' },
|
|
972
|
+
removeListeners: { type: 'function' },
|
|
973
|
+
},
|
|
974
|
+
ExpoLinearGradient: {
|
|
975
|
+
addListener: { type: 'function' },
|
|
976
|
+
removeListeners: { type: 'function' },
|
|
977
|
+
},
|
|
978
|
+
ExpoLocalAuthentication: {
|
|
979
|
+
addListener: { type: 'function' },
|
|
980
|
+
authenticateAsync: { type: 'function' },
|
|
981
|
+
getEnrolledLevelAsync: { type: 'function' },
|
|
982
|
+
hasHardwareAsync: { type: 'function' },
|
|
983
|
+
isEnrolledAsync: { type: 'function' },
|
|
984
|
+
removeListeners: { type: 'function' },
|
|
985
|
+
supportedAuthenticationTypesAsync: { type: 'function' },
|
|
986
|
+
},
|
|
692
987
|
ExpoLocalization: {
|
|
988
|
+
addListener: { type: 'function' },
|
|
693
989
|
currency: { type: 'string' },
|
|
694
990
|
decimalSeparator: { type: 'string' },
|
|
695
991
|
digitGroupingSeparator: { type: 'string' },
|
|
696
|
-
|
|
992
|
+
getCalendars: { type: 'function' },
|
|
993
|
+
getLocales: { type: 'function' },
|
|
994
|
+
getLocalizationAsync: { type: 'function' },
|
|
995
|
+
isMetric: { type: 'boolean', mock: true },
|
|
697
996
|
isoCurrencyCodes: { type: 'array' },
|
|
698
997
|
isRTL: { type: 'boolean', mock: false },
|
|
699
998
|
locale: { type: 'string' },
|
|
700
999
|
locales: { type: 'array' },
|
|
701
1000
|
region: { type: 'string' },
|
|
1001
|
+
removeListeners: { type: 'function' },
|
|
702
1002
|
timezone: { type: 'string' },
|
|
703
1003
|
},
|
|
704
|
-
ExpoMailComposer: {
|
|
1004
|
+
ExpoMailComposer: {
|
|
1005
|
+
addListener: { type: 'function' },
|
|
1006
|
+
composeAsync: { type: 'function' },
|
|
1007
|
+
isAvailableAsync: { type: 'function' },
|
|
1008
|
+
removeListeners: { type: 'function' },
|
|
1009
|
+
},
|
|
705
1010
|
ExpoMediaLibrary: {
|
|
1011
|
+
addAssetsToAlbumAsync: { type: 'function' },
|
|
1012
|
+
addListener: { type: 'function' },
|
|
706
1013
|
CHANGE_LISTENER_NAME: { type: 'string' },
|
|
1014
|
+
createAlbumAsync: { type: 'function' },
|
|
1015
|
+
createAssetAsync: { type: 'function' },
|
|
1016
|
+
deleteAlbumsAsync: { type: 'function' },
|
|
1017
|
+
deleteAssetsAsync: { type: 'function' },
|
|
1018
|
+
getAlbumAsync: { type: 'function' },
|
|
1019
|
+
getAlbumsAsync: { type: 'function' },
|
|
1020
|
+
getAssetInfoAsync: { type: 'function' },
|
|
1021
|
+
getAssetsAsync: { type: 'function' },
|
|
1022
|
+
getMomentsAsync: { type: 'function' },
|
|
1023
|
+
getPermissionsAsync: { type: 'function' },
|
|
707
1024
|
MediaType: { type: 'object' },
|
|
1025
|
+
presentPermissionsPickerAsync: { type: 'function' },
|
|
1026
|
+
removeAssetsFromAlbumAsync: { type: 'function' },
|
|
1027
|
+
removeListeners: { type: 'function' },
|
|
1028
|
+
requestPermissionsAsync: { type: 'function' },
|
|
1029
|
+
saveToLibraryAsync: { type: 'function' },
|
|
708
1030
|
SortBy: { type: 'object' },
|
|
709
1031
|
},
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
1032
|
+
ExponentAccelerometer: {
|
|
1033
|
+
addListener: { type: 'function' },
|
|
1034
|
+
isAvailableAsync: { type: 'function' },
|
|
1035
|
+
removeListeners: { type: 'function' },
|
|
1036
|
+
setUpdateInterval: { type: 'function' },
|
|
1037
|
+
},
|
|
1038
|
+
ExponentAV: {
|
|
1039
|
+
addListener: { type: 'function' },
|
|
1040
|
+
getAudioRecordingStatus: { type: 'function' },
|
|
1041
|
+
getAvailableInputs: { type: 'function' },
|
|
1042
|
+
getCurrentInput: { type: 'function' },
|
|
1043
|
+
getPermissionsAsync: { type: 'function' },
|
|
1044
|
+
getStatusForSound: { type: 'function' },
|
|
1045
|
+
getStatusForVideo: { type: 'function' },
|
|
1046
|
+
loadForSound: { type: 'function' },
|
|
1047
|
+
loadForVideo: { type: 'function' },
|
|
1048
|
+
pauseAudioRecording: { type: 'function' },
|
|
1049
|
+
prepareAudioRecorder: { type: 'function' },
|
|
1050
|
+
Qualities: { type: 'object' },
|
|
1051
|
+
removeListeners: { type: 'function' },
|
|
1052
|
+
replaySound: { type: 'function' },
|
|
1053
|
+
replayVideo: { type: 'function' },
|
|
1054
|
+
requestPermissionsAsync: { type: 'function' },
|
|
1055
|
+
setAudioIsEnabled: { type: 'function' },
|
|
1056
|
+
setAudioMode: { type: 'function' },
|
|
1057
|
+
setInput: { type: 'function' },
|
|
1058
|
+
setStatusForSound: { type: 'function' },
|
|
1059
|
+
setStatusForVideo: { type: 'function' },
|
|
1060
|
+
startAudioRecording: { type: 'function' },
|
|
1061
|
+
stopAudioRecording: { type: 'function' },
|
|
1062
|
+
unloadAudioRecorder: { type: 'function' },
|
|
1063
|
+
unloadForSound: { type: 'function' },
|
|
1064
|
+
unloadForVideo: { type: 'function' },
|
|
719
1065
|
},
|
|
720
1066
|
ExponentConstants: {
|
|
721
|
-
|
|
1067
|
+
addListener: { type: 'function' },
|
|
722
1068
|
appOwnership: { type: 'string' },
|
|
723
|
-
debugMode: { type: 'boolean', mock:
|
|
1069
|
+
debugMode: { type: 'boolean', mock: true },
|
|
724
1070
|
deviceName: { type: 'string' },
|
|
725
1071
|
executionEnvironment: { type: 'string' },
|
|
726
1072
|
experienceUrl: { type: 'string' },
|
|
727
1073
|
expoRuntimeVersion: { type: 'string' },
|
|
728
1074
|
expoVersion: { type: 'string' },
|
|
729
|
-
|
|
1075
|
+
getWebViewUserAgentAsync: { type: 'function' },
|
|
730
1076
|
isDetached: { type: 'boolean', mock: false },
|
|
731
|
-
isDevice: { type: 'boolean', mock: false },
|
|
732
1077
|
isHeadless: { type: 'boolean', mock: false },
|
|
733
1078
|
linkingUri: { type: 'string' },
|
|
734
1079
|
manifest: { type: 'object' },
|
|
735
|
-
nativeAppVersion: { type: 'string' },
|
|
736
|
-
nativeBuildVersion: { type: 'string' },
|
|
737
1080
|
platform: { type: 'object' },
|
|
1081
|
+
removeListeners: { type: 'function' },
|
|
738
1082
|
sessionId: { type: 'string' },
|
|
739
1083
|
statusBarHeight: { type: 'number', mock: 54 },
|
|
740
1084
|
supportedExpoSdks: { type: 'array' },
|
|
741
1085
|
systemFonts: { type: 'array' },
|
|
742
1086
|
},
|
|
743
|
-
ExponentDeviceMotion: {
|
|
1087
|
+
ExponentDeviceMotion: {
|
|
1088
|
+
addListener: { type: 'function' },
|
|
1089
|
+
Gravity: { type: 'number', mock: 9.80665 },
|
|
1090
|
+
isAvailableAsync: { type: 'function' },
|
|
1091
|
+
removeListeners: { type: 'function' },
|
|
1092
|
+
setUpdateInterval: { type: 'function' },
|
|
1093
|
+
},
|
|
744
1094
|
ExponentFileSystem: {
|
|
745
|
-
|
|
1095
|
+
addListener: { type: 'function' },
|
|
1096
|
+
bundleDirectory: { type: 'string' },
|
|
746
1097
|
cacheDirectory: { type: 'string' },
|
|
1098
|
+
copyAsync: { type: 'function' },
|
|
1099
|
+
deleteAsync: { type: 'function' },
|
|
747
1100
|
documentDirectory: { type: 'string' },
|
|
1101
|
+
downloadAsync: { type: 'function' },
|
|
1102
|
+
downloadResumablePauseAsync: { type: 'function' },
|
|
1103
|
+
downloadResumableStartAsync: { type: 'function' },
|
|
1104
|
+
getFreeDiskStorageAsync: { type: 'function' },
|
|
1105
|
+
getInfoAsync: { type: 'function' },
|
|
1106
|
+
getTotalDiskCapacityAsync: { type: 'function' },
|
|
1107
|
+
makeDirectoryAsync: { type: 'function' },
|
|
1108
|
+
moveAsync: { type: 'function' },
|
|
1109
|
+
networkTaskCancelAsync: { type: 'function' },
|
|
1110
|
+
readAsStringAsync: { type: 'function' },
|
|
1111
|
+
readDirectoryAsync: { type: 'function' },
|
|
1112
|
+
removeListeners: { type: 'function' },
|
|
1113
|
+
uploadAsync: { type: 'function' },
|
|
1114
|
+
uploadTaskStartAsync: { type: 'function' },
|
|
1115
|
+
writeAsStringAsync: { type: 'function' },
|
|
1116
|
+
},
|
|
1117
|
+
ExponentGLView: {
|
|
1118
|
+
addListener: { type: 'function' },
|
|
1119
|
+
removeListeners: { type: 'function' },
|
|
1120
|
+
},
|
|
1121
|
+
ExponentGyroscope: {
|
|
1122
|
+
addListener: { type: 'function' },
|
|
1123
|
+
isAvailableAsync: { type: 'function' },
|
|
1124
|
+
removeListeners: { type: 'function' },
|
|
1125
|
+
setUpdateInterval: { type: 'function' },
|
|
1126
|
+
},
|
|
1127
|
+
ExponentImagePicker: {
|
|
1128
|
+
addListener: { type: 'function' },
|
|
1129
|
+
getCameraPermissionsAsync: { type: 'function' },
|
|
1130
|
+
getMediaLibraryPermissionsAsync: { type: 'function' },
|
|
1131
|
+
launchCameraAsync: { type: 'function' },
|
|
1132
|
+
launchImageLibraryAsync: { type: 'function' },
|
|
1133
|
+
removeListeners: { type: 'function' },
|
|
1134
|
+
requestCameraPermissionsAsync: { type: 'function' },
|
|
1135
|
+
requestMediaLibraryPermissionsAsync: { type: 'function' },
|
|
1136
|
+
},
|
|
1137
|
+
ExponentMagnetometer: {
|
|
1138
|
+
addListener: { type: 'function' },
|
|
1139
|
+
isAvailableAsync: { type: 'function' },
|
|
1140
|
+
removeListeners: { type: 'function' },
|
|
1141
|
+
setUpdateInterval: { type: 'function' },
|
|
1142
|
+
},
|
|
1143
|
+
ExponentMagnetometerUncalibrated: {
|
|
1144
|
+
addListener: { type: 'function' },
|
|
1145
|
+
isAvailableAsync: { type: 'function' },
|
|
1146
|
+
removeListeners: { type: 'function' },
|
|
1147
|
+
setUpdateInterval: { type: 'function' },
|
|
1148
|
+
},
|
|
1149
|
+
ExponentPedometer: {
|
|
1150
|
+
addListener: { type: 'function' },
|
|
1151
|
+
getPermissionsAsync: { type: 'function' },
|
|
1152
|
+
getStepCountAsync: { type: 'function' },
|
|
1153
|
+
isAvailableAsync: { type: 'function' },
|
|
1154
|
+
removeListeners: { type: 'function' },
|
|
1155
|
+
requestPermissionsAsync: { type: 'function' },
|
|
1156
|
+
},
|
|
1157
|
+
ExpoNetwork: {
|
|
1158
|
+
addListener: { type: 'function' },
|
|
1159
|
+
getIpAddressAsync: { type: 'function' },
|
|
1160
|
+
getNetworkStateAsync: { type: 'function' },
|
|
1161
|
+
removeListeners: { type: 'function' },
|
|
1162
|
+
},
|
|
1163
|
+
ExpoPrint: {
|
|
1164
|
+
addListener: { type: 'function' },
|
|
1165
|
+
Orientation: { type: 'object' },
|
|
1166
|
+
print: { type: 'function' },
|
|
1167
|
+
printToFileAsync: { type: 'function' },
|
|
1168
|
+
removeListeners: { type: 'function' },
|
|
1169
|
+
selectPrinter: { type: 'function' },
|
|
1170
|
+
},
|
|
1171
|
+
ExpoRandom: {
|
|
1172
|
+
addListener: { type: 'function' },
|
|
1173
|
+
getRandomBase64String: { type: 'function' },
|
|
1174
|
+
getRandomBase64StringAsync: { type: 'function' },
|
|
1175
|
+
removeListeners: { type: 'function' },
|
|
1176
|
+
},
|
|
1177
|
+
ExpoScreenCapture: {
|
|
1178
|
+
addListener: { type: 'function' },
|
|
1179
|
+
allowScreenCapture: { type: 'function' },
|
|
1180
|
+
preventScreenCapture: { type: 'function' },
|
|
1181
|
+
removeListeners: { type: 'function' },
|
|
1182
|
+
},
|
|
1183
|
+
ExpoScreenOrientation: {
|
|
1184
|
+
addListener: { type: 'function' },
|
|
1185
|
+
getOrientationAsync: { type: 'function' },
|
|
1186
|
+
getOrientationLockAsync: { type: 'function' },
|
|
1187
|
+
getPlatformOrientationLockAsync: { type: 'function' },
|
|
1188
|
+
lockAsync: { type: 'function' },
|
|
1189
|
+
lockPlatformAsync: { type: 'function' },
|
|
1190
|
+
removeListeners: { type: 'function' },
|
|
1191
|
+
supportsOrientationLockAsync: { type: 'function' },
|
|
748
1192
|
},
|
|
749
|
-
ExponentGLView: {},
|
|
750
|
-
ExponentImagePicker: {},
|
|
751
|
-
ExpoNetwork: {},
|
|
752
|
-
ExpoPrint: { Orientation: { type: 'object' } },
|
|
753
|
-
ExpoRandom: {},
|
|
754
|
-
ExpoScreenOrientation: {},
|
|
755
1193
|
ExpoSecureStore: {
|
|
1194
|
+
addListener: { type: 'function' },
|
|
756
1195
|
AFTER_FIRST_UNLOCK: { type: 'number', mock: 0 },
|
|
757
1196
|
AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY: { type: 'number', mock: 1 },
|
|
758
1197
|
ALWAYS: { type: 'number', mock: 2 },
|
|
759
1198
|
ALWAYS_THIS_DEVICE_ONLY: { type: 'number', mock: 4 },
|
|
1199
|
+
canUseBiometricAuthentication: { type: 'function' },
|
|
1200
|
+
deleteValueWithKeyAsync: { type: 'function' },
|
|
1201
|
+
getValueWithKeyAsync: { type: 'function' },
|
|
1202
|
+
getValueWithKeySync: { type: 'function' },
|
|
1203
|
+
removeListeners: { type: 'function' },
|
|
1204
|
+
setValueWithKeyAsync: { type: 'function' },
|
|
1205
|
+
setValueWithKeySync: { type: 'function' },
|
|
760
1206
|
WHEN_PASSCODE_SET_THIS_DEVICE_ONLY: { type: 'number', mock: 3 },
|
|
761
1207
|
WHEN_UNLOCKED: { type: 'number', mock: 5 },
|
|
762
|
-
WHEN_UNLOCKED_THIS_DEVICE_ONLY: { type: 'number', mock:
|
|
763
|
-
},
|
|
764
|
-
ExpoSharing: {
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
1208
|
+
WHEN_UNLOCKED_THIS_DEVICE_ONLY: { type: 'number', mock: 6 },
|
|
1209
|
+
},
|
|
1210
|
+
ExpoSharing: {
|
|
1211
|
+
addListener: { type: 'function' },
|
|
1212
|
+
removeListeners: { type: 'function' },
|
|
1213
|
+
shareAsync: { type: 'function' },
|
|
1214
|
+
},
|
|
1215
|
+
ExpoSMS: {
|
|
1216
|
+
addListener: { type: 'function' },
|
|
1217
|
+
isAvailableAsync: { type: 'function' },
|
|
1218
|
+
removeListeners: { type: 'function' },
|
|
1219
|
+
sendSMSAsync: { type: 'function' },
|
|
1220
|
+
},
|
|
1221
|
+
ExpoSpeech: {
|
|
1222
|
+
addListener: { type: 'function' },
|
|
1223
|
+
getVoices: { type: 'function' },
|
|
1224
|
+
isSpeaking: { type: 'function' },
|
|
1225
|
+
pause: { type: 'function' },
|
|
1226
|
+
removeListeners: { type: 'function' },
|
|
1227
|
+
resume: { type: 'function' },
|
|
1228
|
+
speak: { type: 'function' },
|
|
1229
|
+
stop: { type: 'function' },
|
|
1230
|
+
},
|
|
1231
|
+
ExpoSQLite: {
|
|
1232
|
+
addListener: { type: 'function' },
|
|
1233
|
+
close: { type: 'function' },
|
|
1234
|
+
closeSync: { type: 'function' },
|
|
1235
|
+
deleteAsync: { type: 'function' },
|
|
1236
|
+
exec: { type: 'function' },
|
|
1237
|
+
removeListeners: { type: 'function' },
|
|
1238
|
+
},
|
|
1239
|
+
ExpoSQLiteNext: {
|
|
1240
|
+
addListener: { type: 'function' },
|
|
1241
|
+
deleteDatabaseAsync: { type: 'function' },
|
|
1242
|
+
deleteDatabaseSync: { type: 'function' },
|
|
1243
|
+
importAssetDatabaseAsync: { type: 'function' },
|
|
1244
|
+
removeListeners: { type: 'function' },
|
|
1245
|
+
},
|
|
1246
|
+
ExpoStoreReview: {
|
|
1247
|
+
addListener: { type: 'function' },
|
|
1248
|
+
isAvailableAsync: { type: 'function' },
|
|
1249
|
+
removeListeners: { type: 'function' },
|
|
1250
|
+
requestReview: { type: 'function' },
|
|
1251
|
+
},
|
|
1252
|
+
ExpoSystemUI: {
|
|
1253
|
+
addListener: { type: 'function' },
|
|
1254
|
+
getBackgroundColorAsync: { type: 'function' },
|
|
1255
|
+
removeListeners: { type: 'function' },
|
|
1256
|
+
setBackgroundColorAsync: { type: 'function' },
|
|
1257
|
+
},
|
|
1258
|
+
ExpoTaskManager: {
|
|
1259
|
+
addListener: { type: 'function' },
|
|
1260
|
+
EVENT_NAME: { type: 'string' },
|
|
1261
|
+
getRegisteredTasksAsync: { type: 'function' },
|
|
1262
|
+
getTaskOptionsAsync: { type: 'function' },
|
|
1263
|
+
isAvailableAsync: { type: 'function' },
|
|
1264
|
+
isTaskRegisteredAsync: { type: 'function' },
|
|
1265
|
+
notifyTaskFinishedAsync: { type: 'function' },
|
|
1266
|
+
removeListeners: { type: 'function' },
|
|
1267
|
+
unregisterAllTasksAsync: { type: 'function' },
|
|
1268
|
+
unregisterTaskAsync: { type: 'function' },
|
|
1269
|
+
},
|
|
1270
|
+
ExpoTrackingTransparency: {
|
|
1271
|
+
addListener: { type: 'function' },
|
|
1272
|
+
getAdvertisingId: { type: 'function' },
|
|
1273
|
+
getPermissionsAsync: { type: 'function' },
|
|
1274
|
+
removeListeners: { type: 'function' },
|
|
1275
|
+
requestPermissionsAsync: { type: 'function' },
|
|
1276
|
+
},
|
|
772
1277
|
ExpoUpdates: {
|
|
1278
|
+
addListener: { type: 'function' },
|
|
773
1279
|
channel: { type: 'string' },
|
|
774
1280
|
checkAutomatically: { type: 'string' },
|
|
1281
|
+
checkForUpdateAsync: { type: 'function' },
|
|
1282
|
+
clearLogEntriesAsync: { type: 'function' },
|
|
1283
|
+
emergencyLaunchReason: { type: 'object', mock: null },
|
|
1284
|
+
fetchUpdateAsync: { type: 'function' },
|
|
1285
|
+
getExtraParamsAsync: { type: 'function' },
|
|
1286
|
+
getNativeStateMachineContextAsync: { type: 'function' },
|
|
775
1287
|
isEmbeddedLaunch: { type: 'boolean', mock: false },
|
|
1288
|
+
isEmergencyLaunch: { type: 'boolean', mock: false },
|
|
776
1289
|
isEnabled: { type: 'boolean', mock: false },
|
|
777
|
-
|
|
778
|
-
|
|
1290
|
+
nativeDebug: { type: 'boolean', mock: false },
|
|
1291
|
+
readLogEntriesAsync: { type: 'function' },
|
|
1292
|
+
reload: { type: 'function' },
|
|
1293
|
+
removeListeners: { type: 'function' },
|
|
779
1294
|
runtimeVersion: { type: 'string' },
|
|
1295
|
+
setExtraParamAsync: { type: 'function' },
|
|
1296
|
+
shouldDeferToNativeForAPIMethodAvailabilityInDevelopment: { type: 'boolean', mock: true },
|
|
1297
|
+
},
|
|
1298
|
+
ExpoVideo: {
|
|
1299
|
+
addListener: { type: 'function' },
|
|
1300
|
+
isPictureInPictureSupported: { type: 'function' },
|
|
1301
|
+
removeListeners: { type: 'function' },
|
|
1302
|
+
},
|
|
1303
|
+
ExpoVideoThumbnails: {
|
|
1304
|
+
addListener: { type: 'function' },
|
|
1305
|
+
getThumbnail: { type: 'function' },
|
|
1306
|
+
removeListeners: { type: 'function' },
|
|
780
1307
|
},
|
|
781
|
-
ExpoVideoThumbnails: {},
|
|
782
1308
|
ExpoVideoView: {
|
|
1309
|
+
addListener: { type: 'function' },
|
|
1310
|
+
removeListeners: { type: 'function' },
|
|
783
1311
|
ScaleAspectFill: { type: 'string' },
|
|
784
1312
|
ScaleAspectFit: { type: 'string' },
|
|
785
1313
|
ScaleNone: { type: 'string' },
|
|
786
1314
|
ScaleToFill: { type: 'string' },
|
|
1315
|
+
setFullscreen: { type: 'function' },
|
|
787
1316
|
},
|
|
788
|
-
ExpoWebBrowser: {
|
|
1317
|
+
ExpoWebBrowser: {
|
|
1318
|
+
addListener: { type: 'function' },
|
|
1319
|
+
coolDownAsync: { type: 'function' },
|
|
1320
|
+
dismissAuthSession: { type: 'function' },
|
|
1321
|
+
dismissBrowser: { type: 'function' },
|
|
1322
|
+
getCustomTabsSupportingBrowsers: { type: 'function' },
|
|
1323
|
+
mayInitWithUrlAsync: { type: 'function' },
|
|
1324
|
+
openAuthSessionAsync: { type: 'function' },
|
|
1325
|
+
openBrowserAsync: { type: 'function' },
|
|
1326
|
+
removeListeners: { type: 'function' },
|
|
1327
|
+
warmUpAsync: { type: 'function' },
|
|
1328
|
+
},
|
|
1329
|
+
SymbolModule: { addListener: { type: 'function' }, removeListeners: { type: 'function' } },
|
|
789
1330
|
},
|
|
790
1331
|
},
|
|
791
1332
|
viewManagersMetadata: {
|
|
@@ -794,10 +1335,54 @@ module.exports = {
|
|
|
794
1335
|
ExpoAppleAuthentication: { propsNames: ['buttonStyle', 'buttonType', 'cornerRadius'] },
|
|
795
1336
|
ExpoBarCodeScanner: { propsNames: ['barCodeTypes', 'type'] },
|
|
796
1337
|
ExpoBlurView: { propsNames: ['intensity', 'tint'] },
|
|
1338
|
+
ExpoCamera: {
|
|
1339
|
+
propsNames: [
|
|
1340
|
+
'animateShutter',
|
|
1341
|
+
'barcodeScannerEnabled',
|
|
1342
|
+
'barcodeScannerSettings',
|
|
1343
|
+
'enableTorch',
|
|
1344
|
+
'facing',
|
|
1345
|
+
'flashMode',
|
|
1346
|
+
'mode',
|
|
1347
|
+
'mute',
|
|
1348
|
+
'pictureSize',
|
|
1349
|
+
'responsiveOrientationWhenOrientationLocked',
|
|
1350
|
+
'videoQuality',
|
|
1351
|
+
'zoom',
|
|
1352
|
+
],
|
|
1353
|
+
},
|
|
1354
|
+
ExpoCameraLegacy: {
|
|
1355
|
+
propsNames: [
|
|
1356
|
+
'autoFocus',
|
|
1357
|
+
'barCodeScannerEnabled',
|
|
1358
|
+
'barCodeScannerSettings',
|
|
1359
|
+
'faceDetectorEnabled',
|
|
1360
|
+
'faceDetectorSettings',
|
|
1361
|
+
'flashMode',
|
|
1362
|
+
'focusDepth',
|
|
1363
|
+
'pictureSize',
|
|
1364
|
+
'responsiveOrientationWhenOrientationLocked',
|
|
1365
|
+
'type',
|
|
1366
|
+
'whiteBalance',
|
|
1367
|
+
'zoom',
|
|
1368
|
+
],
|
|
1369
|
+
},
|
|
1370
|
+
ExpoClipboard: {
|
|
1371
|
+
propsNames: [
|
|
1372
|
+
'acceptedContentTypes',
|
|
1373
|
+
'backgroundColor',
|
|
1374
|
+
'cornerStyle',
|
|
1375
|
+
'displayMode',
|
|
1376
|
+
'foregroundColor',
|
|
1377
|
+
'imageOptions',
|
|
1378
|
+
],
|
|
1379
|
+
},
|
|
797
1380
|
ExpoImage: {
|
|
798
1381
|
propsNames: [
|
|
799
1382
|
'accessibilityLabel',
|
|
800
1383
|
'accessible',
|
|
1384
|
+
'allowDownscaling',
|
|
1385
|
+
'autoplay',
|
|
801
1386
|
'blurRadius',
|
|
802
1387
|
'cachePolicy',
|
|
803
1388
|
'contentFit',
|
|
@@ -813,24 +1398,34 @@ module.exports = {
|
|
|
813
1398
|
],
|
|
814
1399
|
},
|
|
815
1400
|
ExpoLinearGradient: { propsNames: ['colors', 'endPoint', 'locations', 'startPoint'] },
|
|
816
|
-
|
|
1401
|
+
ExponentGLView: { propsNames: ['enableExperimentalWorkletSupport', 'msaaSamples'] },
|
|
1402
|
+
ExpoVideo: {
|
|
817
1403
|
propsNames: [
|
|
818
|
-
'
|
|
819
|
-
'
|
|
820
|
-
'
|
|
821
|
-
'
|
|
822
|
-
'
|
|
823
|
-
'
|
|
824
|
-
'
|
|
825
|
-
'
|
|
826
|
-
'
|
|
827
|
-
'type',
|
|
828
|
-
'whiteBalance',
|
|
829
|
-
'zoom',
|
|
1404
|
+
'allowsFullscreen',
|
|
1405
|
+
'allowsPictureInPicture',
|
|
1406
|
+
'contentFit',
|
|
1407
|
+
'contentPosition',
|
|
1408
|
+
'nativeControls',
|
|
1409
|
+
'player',
|
|
1410
|
+
'requiresLinearPlayback',
|
|
1411
|
+
'showsTimecodes',
|
|
1412
|
+
'startsPictureInPictureAutomatically',
|
|
830
1413
|
],
|
|
831
1414
|
},
|
|
832
|
-
ExponentGLView: { propsNames: ['enableExperimentalWorkletSupport', 'msaaSamples'] },
|
|
833
1415
|
ExpoVideoView: { propsNames: ['resizeMode', 'source', 'status', 'useNativeControls'] },
|
|
1416
|
+
SymbolModule: {
|
|
1417
|
+
propsNames: [
|
|
1418
|
+
'animated',
|
|
1419
|
+
'animationSpec',
|
|
1420
|
+
'colors',
|
|
1421
|
+
'name',
|
|
1422
|
+
'resizeMode',
|
|
1423
|
+
'scale',
|
|
1424
|
+
'tintColor',
|
|
1425
|
+
'type',
|
|
1426
|
+
'weight',
|
|
1427
|
+
],
|
|
1428
|
+
},
|
|
834
1429
|
},
|
|
835
1430
|
},
|
|
836
1431
|
},
|
|
@@ -846,64 +1441,6 @@ module.exports = {
|
|
|
846
1441
|
getConstants: { type: 'function' },
|
|
847
1442
|
getRandomBase64: { type: 'function', functionType: 'sync' },
|
|
848
1443
|
},
|
|
849
|
-
RNBranch: {
|
|
850
|
-
createUniversalObject: { type: 'function', functionType: 'promise' },
|
|
851
|
-
disableTracking: { type: 'function', functionType: 'async' },
|
|
852
|
-
generateShortUrl: { type: 'function', functionType: 'promise' },
|
|
853
|
-
getConstants: { type: 'function' },
|
|
854
|
-
getCreditHistory: { type: 'function', functionType: 'promise' },
|
|
855
|
-
getFirstReferringParams: { type: 'function', functionType: 'promise' },
|
|
856
|
-
getLatestReferringParams: { type: 'function', functionType: 'promise' },
|
|
857
|
-
getShortUrl: { type: 'function', functionType: 'promise' },
|
|
858
|
-
INIT_SESSION_ERROR: { type: 'string' },
|
|
859
|
-
INIT_SESSION_START: { type: 'string' },
|
|
860
|
-
INIT_SESSION_SUCCESS: { type: 'string' },
|
|
861
|
-
initializeBranch: { type: 'function', functionType: 'promise' },
|
|
862
|
-
isTrackingDisabled: { type: 'function', functionType: 'promise' },
|
|
863
|
-
listOnSpotlight: { type: 'function', functionType: 'promise' },
|
|
864
|
-
loadRewards: { type: 'function', functionType: 'promise' },
|
|
865
|
-
logEvent: { type: 'function', functionType: 'promise' },
|
|
866
|
-
logout: { type: 'function', functionType: 'async' },
|
|
867
|
-
openURL: { type: 'function', functionType: 'async' },
|
|
868
|
-
redeemInitSessionResult: { type: 'function', functionType: 'promise' },
|
|
869
|
-
redeemRewards: { type: 'function', functionType: 'promise' },
|
|
870
|
-
registerView: { type: 'function', functionType: 'promise' },
|
|
871
|
-
releaseUniversalObject: { type: 'function', functionType: 'async' },
|
|
872
|
-
sendCommerceEvent: { type: 'function', functionType: 'promise' },
|
|
873
|
-
setIdentity: { type: 'function', functionType: 'async' },
|
|
874
|
-
setRequestMetadataKey: { type: 'function', functionType: 'async' },
|
|
875
|
-
showShareSheet: { type: 'function', functionType: 'promise' },
|
|
876
|
-
STANDARD_EVENT_ACHIEVE_LEVEL: { type: 'string' },
|
|
877
|
-
STANDARD_EVENT_ADD_PAYMENT_INFO: { type: 'string' },
|
|
878
|
-
STANDARD_EVENT_ADD_TO_CART: { type: 'string' },
|
|
879
|
-
STANDARD_EVENT_ADD_TO_WISHLIST: { type: 'string' },
|
|
880
|
-
STANDARD_EVENT_CLICK_AD: { type: 'string' },
|
|
881
|
-
STANDARD_EVENT_COMPLETE_REGISTRATION: { type: 'string' },
|
|
882
|
-
STANDARD_EVENT_COMPLETE_TUTORIAL: { type: 'string' },
|
|
883
|
-
STANDARD_EVENT_INITIATE_PURCHASE: { type: 'string' },
|
|
884
|
-
STANDARD_EVENT_INVITE: { type: 'string' },
|
|
885
|
-
STANDARD_EVENT_LOGIN: { type: 'string' },
|
|
886
|
-
STANDARD_EVENT_PURCHASE: { type: 'string' },
|
|
887
|
-
STANDARD_EVENT_RATE: { type: 'string' },
|
|
888
|
-
STANDARD_EVENT_RESERVE: { type: 'string' },
|
|
889
|
-
STANDARD_EVENT_SEARCH: { type: 'string' },
|
|
890
|
-
STANDARD_EVENT_SHARE: { type: 'string' },
|
|
891
|
-
STANDARD_EVENT_SPEND_CREDITS: { type: 'string' },
|
|
892
|
-
STANDARD_EVENT_START_TRIAL: { type: 'string' },
|
|
893
|
-
STANDARD_EVENT_SUBSCRIBE: { type: 'string' },
|
|
894
|
-
STANDARD_EVENT_UNLOCK_ACHIEVEMENT: { type: 'string' },
|
|
895
|
-
STANDARD_EVENT_VIEW_AD: { type: 'string' },
|
|
896
|
-
STANDARD_EVENT_VIEW_CART: { type: 'string' },
|
|
897
|
-
STANDARD_EVENT_VIEW_ITEM: { type: 'string' },
|
|
898
|
-
STANDARD_EVENT_VIEW_ITEMS: { type: 'string' },
|
|
899
|
-
userCompletedAction: { type: 'function', functionType: 'async' },
|
|
900
|
-
userCompletedActionOnUniversalObject: { type: 'function', functionType: 'promise' },
|
|
901
|
-
},
|
|
902
|
-
RNBranchEventEmitter: {
|
|
903
|
-
addListener: { type: 'function', functionType: 'async' },
|
|
904
|
-
getConstants: { type: 'function' },
|
|
905
|
-
removeListeners: { type: 'function', functionType: 'async' },
|
|
906
|
-
},
|
|
907
1444
|
RNCMaskedViewManager: {},
|
|
908
1445
|
RNCNetInfo: {
|
|
909
1446
|
addListener: { type: 'function', functionType: 'async' },
|
|
@@ -912,6 +1449,7 @@ module.exports = {
|
|
|
912
1449
|
getCurrentState: { type: 'function', functionType: 'promise' },
|
|
913
1450
|
removeListeners: { type: 'function', functionType: 'async' },
|
|
914
1451
|
},
|
|
1452
|
+
RNCPickerManager: {},
|
|
915
1453
|
RNCSafeAreaContext: {
|
|
916
1454
|
getConstants: { type: 'function' },
|
|
917
1455
|
initialWindowMetrics: { type: 'object' },
|
|
@@ -924,9 +1462,10 @@ module.exports = {
|
|
|
924
1462
|
getConstants: { type: 'function' },
|
|
925
1463
|
setPage: { type: 'function', functionType: 'async' },
|
|
926
1464
|
setPageWithoutAnimation: { type: 'function', functionType: 'async' },
|
|
927
|
-
|
|
1465
|
+
setScrollEnabledImperatively: { type: 'function', functionType: 'async' },
|
|
928
1466
|
},
|
|
929
1467
|
RNCWebView: {
|
|
1468
|
+
clearCache: { type: 'function', functionType: 'async' },
|
|
930
1469
|
getConstants: { type: 'function' },
|
|
931
1470
|
goBack: { type: 'function', functionType: 'async' },
|
|
932
1471
|
goForward: { type: 'function', functionType: 'async' },
|
|
@@ -954,10 +1493,12 @@ module.exports = {
|
|
|
954
1493
|
updateGestureHandler: { type: 'function', functionType: 'async' },
|
|
955
1494
|
},
|
|
956
1495
|
RNSFullWindowOverlayManager: {},
|
|
957
|
-
|
|
1496
|
+
RNSkiaModule: {
|
|
958
1497
|
getConstants: { type: 'function' },
|
|
959
1498
|
install: { type: 'function', functionType: 'sync' },
|
|
960
1499
|
},
|
|
1500
|
+
RNSModalScreenManager: {},
|
|
1501
|
+
RNSModule: {},
|
|
961
1502
|
RNSScreenContainerManager: {},
|
|
962
1503
|
RNSScreenManager: {},
|
|
963
1504
|
RNSScreenNavigationContainerManager: {},
|
|
@@ -966,6 +1507,7 @@ module.exports = {
|
|
|
966
1507
|
RNSScreenStackManager: {},
|
|
967
1508
|
RNSSearchBarManager: {
|
|
968
1509
|
blur: { type: 'function', functionType: 'async' },
|
|
1510
|
+
cancelSearch: { type: 'function', functionType: 'async' },
|
|
969
1511
|
clearText: { type: 'function', functionType: 'async' },
|
|
970
1512
|
focus: { type: 'function', functionType: 'async' },
|
|
971
1513
|
getConstants: { type: 'function' },
|