typed-config-plugins 0.5.0 → 0.5.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/README.md +10 -1
- package/dist/plugin.d.ts +55 -17
- package/package.json +23 -20
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# typed-config-plugins [![npm][npm-image]][npm-url]
|
|
1
|
+
# typed-config-plugins [![npm][npm-image]][npm-url] ![npm][npm-dl-stats]
|
|
2
2
|
|
|
3
3
|
**Type Safety for Your Expo Config Plugins.**
|
|
4
4
|
|
|
@@ -60,5 +60,14 @@ declare module "typed-config-plugins" {
|
|
|
60
60
|
|
|
61
61
|
Now, when you use `plugin("my-custom-plugin", { /* ... */ })` in your `app.config.ts`, TypeScript will provide autocompletion and validate the options against the types you've defined.
|
|
62
62
|
|
|
63
|
+
## Releases
|
|
64
|
+
|
|
65
|
+
This repo uses Changesets.
|
|
66
|
+
|
|
67
|
+
1. For any user-facing package change, run `bun run changeset` and commit the generated file in `.changeset/`.
|
|
68
|
+
2. When changesets reach `main`, GitHub Actions opens or updates a release PR with the version bump and generated changelog.
|
|
69
|
+
3. Merge that release PR to publish to npm.
|
|
70
|
+
|
|
63
71
|
[npm-image]: https://img.shields.io/npm/v/typed-config-plugins
|
|
64
72
|
[npm-url]: https://www.npmjs.com/package/typed-config-plugins
|
|
73
|
+
[npm-dl-stats]: https://img.shields.io/npm/dm/typed-config-plugins
|
package/dist/plugin.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ import * as react_native_render_lynx_plugin_withRenderLynx from 'react-native-re
|
|
|
47
47
|
import * as react_native_rate_app_lib_typescript_plugin_withReactNativeRateApp from 'react-native-rate-app/lib/typescript/plugin/withReactNativeRateApp';
|
|
48
48
|
import * as react_native_radar_plugin_build_withRadar from 'react-native-radar/plugin/build/withRadar';
|
|
49
49
|
import * as react_native_permissions_dist_typescript_expo from 'react-native-permissions/dist/typescript/expo';
|
|
50
|
+
import * as react_native_pdf_jsi_plugin_build_index from 'react-native-pdf-jsi/plugin/build/index';
|
|
50
51
|
import * as react_native_package_checker_app_plugin from 'react-native-package-checker/app.plugin';
|
|
51
52
|
import * as react_native_ota_hot_update_plugin_src_index_ts from 'react-native-ota-hot-update/plugin/src/index.ts';
|
|
52
53
|
import * as react_native_orientation_director_plugin_build_index from 'react-native-orientation-director/plugin/build/index';
|
|
@@ -55,11 +56,14 @@ import * as react_native_notificare_push_ui_lib_plugin_withNotificarePushUI from
|
|
|
55
56
|
import * as react_native_notificare_push_lib_plugin_withNotificarePush from 'react-native-notificare-push/lib/plugin/withNotificarePush';
|
|
56
57
|
import * as react_native_notificare_geo_lib_plugin_withNotificareGeo from 'react-native-notificare-geo/lib/plugin/withNotificareGeo';
|
|
57
58
|
import * as react_native_notificare_lib_plugin_withNotificare from 'react-native-notificare/lib/plugin/withNotificare';
|
|
59
|
+
import * as react_native_nitro_wallpaper_app_plugin from 'react-native-nitro-wallpaper/app.plugin';
|
|
58
60
|
import * as react_native_nitro_speech_recognition_plugin_build_withNitroSpeechRecognition from 'react-native-nitro-speech-recognition/plugin/build/withNitroSpeechRecognition';
|
|
59
61
|
import * as react_native_nitro_sound_lib_typescript_plugin_src_index from 'react-native-nitro-sound/lib/typescript/plugin/src/index';
|
|
60
62
|
import * as react_native_nitro_screen_recorder_lib_typescript_expo_plugin_withScreenRecorder from 'react-native-nitro-screen-recorder/lib/typescript/expo-plugin/withScreenRecorder';
|
|
61
63
|
import * as react_native_nitro_readium_plugins_build_index from 'react-native-nitro-readium/plugins/build/index';
|
|
64
|
+
import * as react_native_nitro_ota_expo_plugins_dist_index from 'react-native-nitro-ota/expo/plugins/dist/index';
|
|
62
65
|
import * as react_native_nitro_inspire_face_lib_typescript_module_src_expo_plugin_withInspireFace from 'react-native-nitro-inspire-face/lib/typescript/module/src/expo-plugin/withInspireFace';
|
|
66
|
+
import * as react_native_nitro_auth_app_plugin from 'react-native-nitro-auth/app.plugin';
|
|
63
67
|
import * as react_native_nfc_manager_app_plugin from 'react-native-nfc-manager/app.plugin';
|
|
64
68
|
import * as react_native_navigation_mode_app_plugin from 'react-native-navigation-mode/app.plugin';
|
|
65
69
|
import * as react_native_nai_timer_plugin_build_withNaiTimer from 'react-native-nai-timer/plugin/build/withNaiTimer';
|
|
@@ -98,17 +102,16 @@ import * as react_native_fbads_plugin_build_withReactNativeFbads from 'react-nat
|
|
|
98
102
|
import * as react_native_fast_tflite_lib_typescript_src_expo_plugin_withFastTFLite from 'react-native-fast-tflite/lib/typescript/src/expo-plugin/withFastTFLite';
|
|
99
103
|
import * as react_native_face_detector_camera_plugin_build_withCamera from 'react-native-face-detector-camera/plugin/build/withCamera';
|
|
100
104
|
import * as react_native_expo_moengage_build_index from 'react-native-expo-moengage/build/index';
|
|
101
|
-
import * as react_native_expo_metamap_sdk_plugin_build_index from 'react-native-expo-metamap-sdk/plugin/build/index';
|
|
102
105
|
import * as react_native_expo_braintree_lib_typescript_src_plugin_withExpoBraintree from 'react-native-expo-braintree/lib/typescript/src/plugin/withExpoBraintree';
|
|
103
106
|
import * as react_native_epson_escposprinter_lib_typescript_module_withPluginConfigs from 'react-native-epson-escposprinter/lib/typescript/module/withPluginConfigs';
|
|
104
107
|
import * as react_native_embedded_httpd_lib_typescript_module_withoutNettyMeta from 'react-native-embedded-httpd/lib/typescript/module/withoutNettyMeta';
|
|
105
108
|
import * as react_native_email_link_plugin_withEmailLink from 'react-native-email-link/plugin/withEmailLink';
|
|
106
109
|
import * as react_native_edge_to_edge_dist_typescript_expo from 'react-native-edge-to-edge/dist/typescript/expo';
|
|
107
|
-
import * as react_native_dynamic_activities_app_plugin from 'react-native-dynamic-activities/app.plugin';
|
|
108
110
|
import * as react_native_document_scanner_plugin_expo_plugin_build_withDocumentScanner from 'react-native-document-scanner-plugin/expo-plugin/build/withDocumentScanner';
|
|
109
111
|
import * as react_native_dji_mobile_sdk_app_plugin from 'react-native-dji-mobile-sdk/app.plugin';
|
|
110
112
|
import * as react_native_device_activity_app_plugin from 'react-native-device-activity/app.plugin';
|
|
111
113
|
import * as react_native_deepgram_plugin_build_index from 'react-native-deepgram/plugin/build/index';
|
|
114
|
+
import * as react_native_custom_splash_plugin_src_index from 'react-native-custom-splash/plugin/src/index';
|
|
112
115
|
import * as react_native_crisp_chat_sdk_plugin_build_withCrispChat from 'react-native-crisp-chat-sdk/plugin/build/withCrispChat';
|
|
113
116
|
import * as react_native_credentials_manager_app_plugin from 'react-native-credentials-manager/app.plugin';
|
|
114
117
|
import * as react_native_core_bluetooth_lib_typescript_src_expo_plugin_withCoreBluetooth from 'react-native-core-bluetooth/lib/typescript/src/expo-plugin/withCoreBluetooth';
|
|
@@ -134,6 +137,7 @@ import * as react_native_app_auth_plugin_build_index from 'react-native-app-auth
|
|
|
134
137
|
import * as react_native_altitude_plugin_plugin_src_withAltitude from 'react-native-altitude-plugin/plugin/src/withAltitude';
|
|
135
138
|
import * as react_native_admob_native_ads_plugin_build_withAdmobNativeAds from 'react-native-admob-native-ads/plugin/build/withAdmobNativeAds';
|
|
136
139
|
import * as react_native_add_calendar_event_plugin_build_withAddCalendarEvent from 'react-native-add-calendar-event/plugin/build/withAddCalendarEvent';
|
|
140
|
+
import * as react_native_adapty_plugin_with_adapty from 'react-native-adapty/plugin/with-adapty';
|
|
137
141
|
import * as pushy_expo_plugin_app_plugin from 'pushy-expo-plugin/app.plugin';
|
|
138
142
|
import * as pushwoosh_expo_plugin_plugin_build_withPushwoosh from 'pushwoosh-expo-plugin/plugin/build/withPushwoosh';
|
|
139
143
|
import * as patch_project_build_withPatchPlugin from 'patch-project/build/withPatchPlugin';
|
|
@@ -165,17 +169,19 @@ import * as expo_updates_plugin_build_withUpdates from 'expo-updates/plugin/buil
|
|
|
165
169
|
import * as expo_umeng_analytics_app_plugin from 'expo-umeng-analytics/app.plugin';
|
|
166
170
|
import * as expo_umeng_app_plugin from 'expo-umeng/app.plugin';
|
|
167
171
|
import * as expo_tracking_transparency_plugin_build_withTrackingTransparency from 'expo-tracking-transparency/plugin/build/withTrackingTransparency';
|
|
172
|
+
import * as expo_tencent_trtc_plugin_build_index from 'expo-tencent-trtc/plugin/build/index';
|
|
168
173
|
import * as expo_task_manager_plugin_build_withTaskManager from 'expo-task-manager/plugin/build/withTaskManager';
|
|
169
174
|
import * as expo_tappay_line_pay_plugin_build_index from 'expo-tappay-line-pay/plugin/build/index';
|
|
170
175
|
import * as expo_system_ui_plugin_build_withSystemUI from 'expo-system-ui/plugin/build/withSystemUI';
|
|
171
|
-
import * as expo_superwall_plugin_build_index from 'expo-superwall/plugin/build/index';
|
|
172
176
|
import * as expo_stt_plugin_build_withSpeechRecognition from 'expo-stt/plugin/build/withSpeechRecognition';
|
|
177
|
+
import * as expo_stream_audio_app_plugin from 'expo-stream-audio/app.plugin';
|
|
173
178
|
import * as expo_stores_games_services_plugin_build_index from 'expo-stores-games-services/plugin/build/index';
|
|
174
179
|
import * as expo_sqlite_plugin_build_withSQLite from 'expo-sqlite/plugin/build/withSQLite';
|
|
175
180
|
import * as expo_splash_screen_plugin_build_withSplashScreen from 'expo-splash-screen/plugin/build/withSplashScreen';
|
|
176
181
|
import * as expo_speech_recognition_app_plugin from 'expo-speech-recognition/app.plugin';
|
|
177
182
|
import * as expo_signature_plugin_build_withLocalAuthentication from 'expo-signature/plugin/build/withLocalAuthentication';
|
|
178
183
|
import * as expo_shazamkit_plugin_build_withShazamKit from 'expo-shazamkit/plugin/build/withShazamKit';
|
|
184
|
+
import * as expo_sharing_plugin_build_index from 'expo-sharing/plugin/build/index';
|
|
179
185
|
import * as expo_share_intent_plugin_build_index from 'expo-share-intent/plugin/build/index';
|
|
180
186
|
import * as expo_share_extension_plugin_build_index from 'expo-share-extension/plugin/build/index';
|
|
181
187
|
import * as expo_sensors_plugin_build_withSensors from 'expo-sensors/plugin/build/withSensors';
|
|
@@ -190,6 +196,7 @@ import * as expo_release_signing_dist_index from 'expo-release-signing/dist/inde
|
|
|
190
196
|
import * as expo_react_native_freshchat_app_plugin from 'expo-react-native-freshchat/app.plugin';
|
|
191
197
|
import * as expo_quick_actions_plugin_build_index from 'expo-quick-actions/plugin/build/index';
|
|
192
198
|
import * as expo_quest_notifications_plugin_build_withNotifications from 'expo-quest-notifications/plugin/build/withNotifications';
|
|
199
|
+
import * as expo_qq_plugin_build_index from 'expo-qq/plugin/build/index';
|
|
193
200
|
import * as expo_privacy_manifest_polyfill_plugin_build_withExpoPrivacyManifestPolyfillPlugin from 'expo-privacy-manifest-polyfill-plugin/build/withExpoPrivacyManifestPolyfillPlugin';
|
|
194
201
|
import * as expo_pod_pinner_build_plugin_withPodPinner from 'expo-pod-pinner/build/plugin/withPodPinner';
|
|
195
202
|
import * as expo_pip_plugin_build_index from 'expo-pip/plugin/build/index';
|
|
@@ -204,6 +211,7 @@ import * as expo_music_picker_app_plugin from 'expo-music-picker/app.plugin';
|
|
|
204
211
|
import * as expo_moyasar_apple_pay_app_plugin from 'expo-moyasar-apple-pay/app.plugin';
|
|
205
212
|
import * as expo_motion_detector_app_plugin from 'expo-motion-detector/app.plugin';
|
|
206
213
|
import * as expo_media_library_plugin_build_withMediaLibrary from 'expo-media-library/plugin/build/withMediaLibrary';
|
|
214
|
+
import * as expo_media_control_plugin_build_index from 'expo-media-control/plugin/build/index';
|
|
207
215
|
import * as expo_mds_app_plugin from 'expo-mds/app.plugin';
|
|
208
216
|
import * as expo_maps_plugin_build_withMapsLocation from 'expo-maps/plugin/build/withMapsLocation';
|
|
209
217
|
import * as expo_mail_composer_plugin_build_withMailComposer from 'expo-mail-composer/plugin/build/withMailComposer';
|
|
@@ -227,6 +235,9 @@ import * as expo_health_connect_build_withHealthConnect from 'expo-health-connec
|
|
|
227
235
|
import * as expo_gradle_jvmargs_plugin_build_withGradleJvmArgs from 'expo-gradle-jvmargs/plugin/build/withGradleJvmArgs';
|
|
228
236
|
import * as expo_gradle_ext_vars_build_index from 'expo-gradle-ext-vars/build/index';
|
|
229
237
|
import * as expo_google_sign_in_plugin_build_withGoogleSignIn from 'expo-google-sign-in/plugin/build/withGoogleSignIn';
|
|
238
|
+
import * as expo_gbk_converter_app_plugin from 'expo-gbk-converter/app.plugin';
|
|
239
|
+
import * as expo_gaode_map_navigation_plugin_build_withGaodeMap from 'expo-gaode-map-navigation/plugin/build/withGaodeMap';
|
|
240
|
+
import * as expo_gaode_map_plugin_build_withGaodeMap from 'expo-gaode-map/plugin/build/withGaodeMap';
|
|
230
241
|
import * as expo_font_plugin_build_withFonts from 'expo-font/plugin/build/withFonts';
|
|
231
242
|
import * as expo_floating_bubble_app_plugin from 'expo-floating-bubble/app.plugin';
|
|
232
243
|
import * as expo_firebase_core_plugin_build_withFirebaseCore from 'expo-firebase-core/plugin/build/withFirebaseCore';
|
|
@@ -249,12 +260,13 @@ import * as expo_cellular_plugin_build_withCellular from 'expo-cellular/plugin/b
|
|
|
249
260
|
import * as expo_cdnbye_app_plugin from 'expo-cdnbye/app.plugin';
|
|
250
261
|
import * as expo_camera_plugin_build_withCamera from 'expo-camera/plugin/build/withCamera';
|
|
251
262
|
import * as expo_calendar_plugin_build_withCalendar from 'expo-calendar/plugin/build/withCalendar';
|
|
263
|
+
import * as expo_cafebazaar_auth_plugin_build from 'expo-cafebazaar-auth/plugin/build';
|
|
252
264
|
import * as expo_build_properties_build_withBuildProperties from 'expo-build-properties/build/withBuildProperties';
|
|
253
265
|
import * as expo_build_flags_build_config_plugin_index from 'expo-build-flags/build/config-plugin/index';
|
|
254
266
|
import * as expo_brother_printer_sdk_plugin_build_index from 'expo-brother-printer-sdk/plugin/build/index';
|
|
255
267
|
import * as expo_brightness_plugin_build_withBrightness from 'expo-brightness/plugin/build/withBrightness';
|
|
256
268
|
import * as expo_branch_plugin_build_withBranch from 'expo-branch/plugin/build/withBranch';
|
|
257
|
-
import * as
|
|
269
|
+
import * as expo_bonjour_plugin_build_index from 'expo-bonjour/plugin/build/index';
|
|
258
270
|
import * as expo_bare_kit_plugin_index from 'expo-bare-kit/plugin/index';
|
|
259
271
|
import * as expo_barcode_scanner_plugin_build_withBarcodeScanner from 'expo-barcode-scanner/plugin/build/withBarcodeScanner';
|
|
260
272
|
import * as expo_banuba_plugin_build_withBanuba from 'expo-banuba/plugin/build/withBanuba';
|
|
@@ -270,6 +282,8 @@ import * as expo_apple_authentication_plugin_build_withAppleAuth from 'expo-appl
|
|
|
270
282
|
import * as expo_appcenter_plugin_build_index from 'expo-appcenter/plugin/build/index';
|
|
271
283
|
import * as expo_app_auth_plugin_build_withAppAuth from 'expo-app-auth/plugin/build/withAppAuth';
|
|
272
284
|
import * as expo_alternate_app_icons_plugin_build_index from 'expo-alternate-app-icons/plugin/build/index';
|
|
285
|
+
import * as expo_aliyun_push_plugin_build_index from 'expo-aliyun-push/plugin/build/index';
|
|
286
|
+
import * as expo_aliyun_oss_plugin_build_index from 'expo-aliyun-oss/plugin/build/index';
|
|
273
287
|
import * as expo_alarm_module_plugin_build_withExpoAlarmModule from 'expo-alarm-module/plugin/build/withExpoAlarmModule';
|
|
274
288
|
import * as expo_ads_facebook_plugin_build_withFacebookAds from 'expo-ads-facebook/plugin/build/withFacebookAds';
|
|
275
289
|
import * as dojah_kyc_sdk_react_expo_app_plugin from 'dojah-kyc-sdk-react-expo/app.plugin';
|
|
@@ -279,6 +293,7 @@ import * as bitmovin_player_react_native_analytics_conviva_plugin_build_index fr
|
|
|
279
293
|
import * as bitmovin_player_react_native_plugin_build_index from 'bitmovin-player-react-native/plugin/build/index';
|
|
280
294
|
import * as banuba_expo_plugin_build_withBanuba from 'banuba-expo/plugin/build/withBanuba';
|
|
281
295
|
import * as apple_healthkit_export_plugin_build_index from 'apple-healthkit-export/plugin/build/index';
|
|
296
|
+
import * as apple_health_plugin_build_index from 'apple-health/plugin/build/index';
|
|
282
297
|
import * as app_icon_badge_dist_app_plugin from 'app-icon-badge/dist/app.plugin';
|
|
283
298
|
import * as android_glance_widget_expo_plugin_build_index from 'android-glance-widget-expo/plugin/build/index';
|
|
284
299
|
import * as airship_expo_plugin_plugin_build_withAirship from 'airship-expo-plugin/plugin/build/withAirship';
|
|
@@ -299,6 +314,7 @@ import * as _track_asia_trackasia_react_native_lib_typescript_module_src_plugin_
|
|
|
299
314
|
import * as _threls_expo_pusher_beams_plugin_build_withPusherBeams from '@threls/expo-pusher-beams/plugin/build/withPusherBeams';
|
|
300
315
|
import * as _thedev132_expo_widgets_plugin_build_index from '@thedev132/expo-widgets/plugin/build/index';
|
|
301
316
|
import * as _survicate_react_native_survicate_lib_typescript_expo_withSurvicate from '@survicate/react-native-survicate/lib/typescript/expo/withSurvicate';
|
|
317
|
+
import * as _superfan_app_spotify_auth_plugin_build_index from '@superfan-app/spotify-auth/plugin/build/index';
|
|
302
318
|
import * as _stripe_stripe_terminal_react_native_lib_typescript_src_plugin_withStripeTerminal from '@stripe/stripe-terminal-react-native/lib/typescript/src/plugin/withStripeTerminal';
|
|
303
319
|
import * as _stripe_stripe_react_native_lib_typescript_src_plugin_withStripe from '@stripe/stripe-react-native/lib/typescript/src/plugin/withStripe';
|
|
304
320
|
import * as _stream_io_video_react_native_sdk_expo_config_plugin_dist_index from '@stream-io/video-react-native-sdk/expo-config-plugin/dist/index';
|
|
@@ -365,11 +381,13 @@ import * as _leanplum_react_native_sdk_plugin_build_withLeanplumSDK from '@leanp
|
|
|
365
381
|
import * as _kingstinct_react_native_healthkit_app_plugin from '@kingstinct/react-native-healthkit/app.plugin';
|
|
366
382
|
import * as _kingstinct_react_native_activity_kit_app_plugin from '@kingstinct/react-native-activity-kit/app.plugin';
|
|
367
383
|
import * as _kickstartcrew_expo_financekit_build_plugin from '@kickstartcrew/expo-financekit/build/plugin';
|
|
384
|
+
import * as _kesha_antonov_react_native_background_downloader_plugin_build_index from '@kesha-antonov/react-native-background-downloader/plugin/build/index';
|
|
368
385
|
import * as _jt_technologies_expo_idnow_plugin_build_index from '@jt-technologies/expo-idnow/plugin/build/index';
|
|
369
386
|
import * as _journeyapps_react_native_quick_sqlite_lib_typescript_withUseFrameworks from '@journeyapps/react-native-quick-sqlite/lib/typescript/withUseFrameworks';
|
|
370
387
|
import * as _iterable_expo_plugin_plugin_build_withIterable from '@iterable/expo-plugin/plugin/build/withIterable';
|
|
371
388
|
import * as _isudaji_react_native_install_apk_index from '@isudaji/react-native-install-apk/index';
|
|
372
389
|
import * as _intercom_intercom_react_native_lib_typescript_module_expo_plugins_index from '@intercom/intercom-react-native/lib/typescript/module/expo-plugins/index';
|
|
390
|
+
import * as _hyoper_rn_location_app_plugin from '@hyoper/rn-location/app.plugin';
|
|
373
391
|
import * as _huymobile_react_native_sms_retriever_nitro_module_app_plugin from '@huymobile/react-native-sms-retriever-nitro-module/app.plugin';
|
|
374
392
|
import * as _huddle01_react_native_call_detection_expo_withCallDetector from '@huddle01/react-native-call-detection/expo/withCallDetector';
|
|
375
393
|
import * as _hot_updater_react_native_plugin_build_withHotUpdater from '@hot-updater/react-native/plugin/build/withHotUpdater';
|
|
@@ -378,12 +396,12 @@ import * as _heartbot_expo_google_authentication_plugin_build_index from '@heart
|
|
|
378
396
|
import * as _grupalia_react_native_photo_picker_app_plugin from '@grupalia/react-native-photo-picker/app.plugin';
|
|
379
397
|
import * as _giphy_react_native_sdk_app_plugin from '@giphy/react-native-sdk/app.plugin';
|
|
380
398
|
import * as _getcello_cello_react_native_lib_typescript_src_expo_plugin_index from '@getcello/cello-react-native/lib/typescript/src/expo-plugin/index';
|
|
399
|
+
import * as _fullstory_react_native_plugin_build_index from '@fullstory/react-native/plugin/build/index';
|
|
381
400
|
import * as _fishjam_cloud_react_native_client_plugin_build_withFishjam from '@fishjam-cloud/react-native-client/plugin/build/withFishjam';
|
|
382
401
|
import * as _fingerprintjs_fingerprintjs_pro_react_native_plugin_dist_withFingerprint from '@fingerprintjs/fingerprintjs-pro-react-native/plugin/dist/withFingerprint';
|
|
383
|
-
import * as
|
|
402
|
+
import * as _expensify_react_native_wallet_plugins_build_index from '@expensify/react-native-wallet/plugins/build/index';
|
|
384
403
|
import * as _evennit_notifee_expo_plugin_dist_plugin_withNotifee from '@evennit/notifee-expo-plugin/dist/plugin/withNotifee';
|
|
385
404
|
import * as _embrace_io_react_native_lib_src_plugin_index from '@embrace-io/react-native/lib/src/plugin/index';
|
|
386
|
-
import * as _divvi_mobile_plugin_build_index from '@divvi/mobile/plugin/build/index';
|
|
387
405
|
import * as _didomi_react_native_plugin_withDidomi from '@didomi/react-native/plugin/withDidomi';
|
|
388
406
|
import * as _deeplinknow_react_native_plugin_build_index from '@deeplinknow/react-native/plugin/build/index';
|
|
389
407
|
import * as _dbkable_react_native_speech_to_text_app_plugin from '@dbkable/react-native-speech-to-text/app.plugin';
|
|
@@ -406,7 +424,6 @@ import * as _bpm_sekeh_expo_local_authentication_plugin_build_withLocalAuthentic
|
|
|
406
424
|
import * as _bittingz_expo_widgets_plugin_build_index from '@bittingz/expo-widgets/plugin/build/index';
|
|
407
425
|
import * as _bitdrift_react_native_typescript_packages_react_native_src_plugin_withBitdrift_d_ts from '@bitdrift/react-native/typescript/packages/react-native/src/plugin/withBitdrift.d.ts';
|
|
408
426
|
import * as _beyondidentity_bi_sdk_react_native_app_plugin from '@beyondidentity/bi-sdk-react-native/app.plugin';
|
|
409
|
-
import * as _batch_com_react_native_plugin_plugin_build_withReactNativeBatch from '@batch.com/react-native-plugin/plugin/build/withReactNativeBatch';
|
|
410
427
|
import * as _bam_tech_react_native_ssl_pinning_build_withSSLPinningConfig from '@bam.tech/react-native-ssl-pinning/build/withSSLPinningConfig';
|
|
411
428
|
import * as _bam_tech_react_native_msal_plugin_build_withReactNativeMSAL from '@bam.tech/react-native-msal/plugin/build/withReactNativeMSAL';
|
|
412
429
|
import * as _bam_tech_react_native_batch_plugin_build_withReactNativeBatch from '@bam.tech/react-native-batch/plugin/build/withReactNativeBatch';
|
|
@@ -423,8 +440,9 @@ import * as _animo_id_indy_sdk_expo_plugin_build_withIndySdk from '@animo-id/ind
|
|
|
423
440
|
import * as _allboatsrise_expo_marketingcloudsdk_plugin_build_index from '@allboatsrise/expo-marketingcloudsdk/plugin/build/index';
|
|
424
441
|
import * as _allboatsrise_expo_gigya_plugin_build_index from '@allboatsrise/expo-gigya/plugin/build/index';
|
|
425
442
|
import * as _adyen_react_native_plugin_build_withAdyen from '@adyen/react-native/plugin/build/withAdyen';
|
|
426
|
-
import { ConfigPlugin } from '@expo/config-plugins';
|
|
427
443
|
|
|
444
|
+
type ExpoConfig = any;
|
|
445
|
+
type ConfigPlugin<Props = void> = (config: ExpoConfig, props: Props) => ExpoConfig;
|
|
428
446
|
type ConfigPluginOptions<T> = T extends ConfigPlugin<infer TOptions> ? Exclude<TOptions, void | undefined> : never;
|
|
429
447
|
|
|
430
448
|
interface ThirdPartyAutomatedPlugins {
|
|
@@ -444,7 +462,6 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
444
462
|
"@bam.tech/react-native-batch": ConfigPluginOptions<typeof _bam_tech_react_native_batch_plugin_build_withReactNativeBatch["default"]>;
|
|
445
463
|
"@bam.tech/react-native-msal": ConfigPluginOptions<typeof _bam_tech_react_native_msal_plugin_build_withReactNativeMSAL["default"]>;
|
|
446
464
|
"@bam.tech/react-native-ssl-pinning": ConfigPluginOptions<typeof _bam_tech_react_native_ssl_pinning_build_withSSLPinningConfig["default"]>;
|
|
447
|
-
"@batch.com/react-native-plugin": ConfigPluginOptions<typeof _batch_com_react_native_plugin_plugin_build_withReactNativeBatch["default"]>;
|
|
448
465
|
"@beyondidentity/bi-sdk-react-native": ConfigPluginOptions<typeof _beyondidentity_bi_sdk_react_native_app_plugin["default"]>;
|
|
449
466
|
"@bitdrift/react-native": ConfigPluginOptions<typeof _bitdrift_react_native_typescript_packages_react_native_src_plugin_withBitdrift_d_ts["default"]>;
|
|
450
467
|
"@bittingz/expo-widgets": ConfigPluginOptions<typeof _bittingz_expo_widgets_plugin_build_index["default"]>;
|
|
@@ -453,6 +470,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
453
470
|
"@braze/expo-plugin": ConfigPluginOptions<typeof _braze_expo_plugin_build_withBraze["default"]>;
|
|
454
471
|
"@calljmp/react-native": ConfigPluginOptions<typeof _calljmp_react_native_lib_withCalljmp["default"]>;
|
|
455
472
|
"@charmy.tech/react-native-admost": ConfigPluginOptions<typeof _charmy_tech_react_native_admost_plugin_build_index["default"]>;
|
|
473
|
+
"@clerk/clerk-expo": ConfigPluginOptions<unknown>;
|
|
456
474
|
"@clevertap/clevertap-expo-plugin": ConfigPluginOptions<typeof _clevertap_clevertap_expo_plugin_build_src_withClevertap["default"]>;
|
|
457
475
|
"@config-plugins/react-native-adjust": ConfigPluginOptions<typeof _config_plugins_react_native_adjust_build_withReactNativeAdjust["default"]>;
|
|
458
476
|
"@config-plugins/react-native-blob-util": ConfigPluginOptions<typeof _config_plugins_react_native_blob_util_build_withReactNativeBlobUtil["default"]>;
|
|
@@ -468,13 +486,13 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
468
486
|
"@dbkable/react-native-speech-to-text": ConfigPluginOptions<typeof _dbkable_react_native_speech_to_text_app_plugin["default"]>;
|
|
469
487
|
"@deeplinknow/react-native": ConfigPluginOptions<typeof _deeplinknow_react_native_plugin_build_index["default"]>;
|
|
470
488
|
"@didomi/react-native": ConfigPluginOptions<typeof _didomi_react_native_plugin_withDidomi["default"]>;
|
|
471
|
-
"@divvi/mobile": ConfigPluginOptions<typeof _divvi_mobile_plugin_build_index["default"]>;
|
|
472
489
|
"@embrace-io/react-native": ConfigPluginOptions<typeof _embrace_io_react_native_lib_src_plugin_index["default"]>;
|
|
473
490
|
"@evennit/notifee-expo-plugin": ConfigPluginOptions<typeof _evennit_notifee_expo_plugin_dist_plugin_withNotifee["default"]>;
|
|
474
|
-
"@
|
|
491
|
+
"@expensify/react-native-wallet": ConfigPluginOptions<typeof _expensify_react_native_wallet_plugins_build_index["default"]>;
|
|
475
492
|
"@fingerprintjs/fingerprintjs-pro-react-native": ConfigPluginOptions<typeof _fingerprintjs_fingerprintjs_pro_react_native_plugin_dist_withFingerprint["default"]>;
|
|
476
493
|
"@fishjam-cloud/react-native-client": ConfigPluginOptions<typeof _fishjam_cloud_react_native_client_plugin_build_withFishjam["default"]>;
|
|
477
494
|
"@fleetbase/react-native-mapbox-navigation": ConfigPluginOptions<unknown>;
|
|
495
|
+
"@fullstory/react-native": ConfigPluginOptions<typeof _fullstory_react_native_plugin_build_index["default"]>;
|
|
478
496
|
"@getcello/cello-react-native": ConfigPluginOptions<typeof _getcello_cello_react_native_lib_typescript_src_expo_plugin_index["default"]>;
|
|
479
497
|
"@giphy/react-native-sdk": ConfigPluginOptions<typeof _giphy_react_native_sdk_app_plugin["default"]>;
|
|
480
498
|
"@grupalia/react-native-photo-picker": ConfigPluginOptions<typeof _grupalia_react_native_photo_picker_app_plugin["default"]>;
|
|
@@ -483,11 +501,13 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
483
501
|
"@hot-updater/react-native": ConfigPluginOptions<typeof _hot_updater_react_native_plugin_build_withHotUpdater["default"]>;
|
|
484
502
|
"@huddle01/react-native-call-detection": ConfigPluginOptions<typeof _huddle01_react_native_call_detection_expo_withCallDetector["default"]>;
|
|
485
503
|
"@huymobile/react-native-sms-retriever-nitro-module": ConfigPluginOptions<typeof _huymobile_react_native_sms_retriever_nitro_module_app_plugin["default"]>;
|
|
504
|
+
"@hyoper/rn-location": ConfigPluginOptions<typeof _hyoper_rn_location_app_plugin["default"]>;
|
|
486
505
|
"@intercom/intercom-react-native": ConfigPluginOptions<typeof _intercom_intercom_react_native_lib_typescript_module_expo_plugins_index["default"]>;
|
|
487
506
|
"@isudaji/react-native-install-apk": ConfigPluginOptions<typeof _isudaji_react_native_install_apk_index["default"]>;
|
|
488
507
|
"@iterable/expo-plugin": ConfigPluginOptions<typeof _iterable_expo_plugin_plugin_build_withIterable["default"]>;
|
|
489
508
|
"@journeyapps/react-native-quick-sqlite": ConfigPluginOptions<typeof _journeyapps_react_native_quick_sqlite_lib_typescript_withUseFrameworks["default"]>;
|
|
490
509
|
"@jt-technologies/expo-idnow": ConfigPluginOptions<typeof _jt_technologies_expo_idnow_plugin_build_index["default"]>;
|
|
510
|
+
"@kesha-antonov/react-native-background-downloader": ConfigPluginOptions<typeof _kesha_antonov_react_native_background_downloader_plugin_build_index["default"]>;
|
|
491
511
|
"@kickstartcrew/expo-financekit": ConfigPluginOptions<typeof _kickstartcrew_expo_financekit_build_plugin["default"]>;
|
|
492
512
|
"@kingstinct/react-native-activity-kit": ConfigPluginOptions<typeof _kingstinct_react_native_activity_kit_app_plugin["default"]>;
|
|
493
513
|
"@kingstinct/react-native-healthkit": ConfigPluginOptions<typeof _kingstinct_react_native_healthkit_app_plugin["default"]>;
|
|
@@ -556,6 +576,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
556
576
|
"@stream-io/video-react-native-sdk": ConfigPluginOptions<typeof _stream_io_video_react_native_sdk_expo_config_plugin_dist_index["default"]>;
|
|
557
577
|
"@stripe/stripe-react-native": ConfigPluginOptions<typeof _stripe_stripe_react_native_lib_typescript_src_plugin_withStripe["default"]>;
|
|
558
578
|
"@stripe/stripe-terminal-react-native": ConfigPluginOptions<typeof _stripe_stripe_terminal_react_native_lib_typescript_src_plugin_withStripeTerminal["default"]>;
|
|
579
|
+
"@superfan-app/spotify-auth": ConfigPluginOptions<typeof _superfan_app_spotify_auth_plugin_build_index["default"]>;
|
|
559
580
|
"@survicate/react-native-survicate": ConfigPluginOptions<typeof _survicate_react_native_survicate_lib_typescript_expo_withSurvicate["default"]>;
|
|
560
581
|
"@thedev132/expo-widgets": ConfigPluginOptions<typeof _thedev132_expo_widgets_plugin_build_index["default"]>;
|
|
561
582
|
"@threls/expo-pusher-beams": ConfigPluginOptions<typeof _threls_expo_pusher_beams_plugin_build_withPusherBeams["default"]>;
|
|
@@ -578,6 +599,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
578
599
|
"airship-expo-plugin": ConfigPluginOptions<typeof airship_expo_plugin_plugin_build_withAirship["default"]>;
|
|
579
600
|
"android-glance-widget-expo": ConfigPluginOptions<typeof android_glance_widget_expo_plugin_build_index["default"]>;
|
|
580
601
|
"app-icon-badge": ConfigPluginOptions<typeof app_icon_badge_dist_app_plugin["default"]>;
|
|
602
|
+
"apple-health": ConfigPluginOptions<typeof apple_health_plugin_build_index["default"]>;
|
|
581
603
|
"apple-healthkit-export": ConfigPluginOptions<typeof apple_healthkit_export_plugin_build_index["default"]>;
|
|
582
604
|
"banuba-expo": ConfigPluginOptions<typeof banuba_expo_plugin_build_withBanuba["default"]>;
|
|
583
605
|
"bitmovin-player-react-native": ConfigPluginOptions<typeof bitmovin_player_react_native_plugin_build_index["default"]>;
|
|
@@ -589,6 +611,8 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
589
611
|
eos: ConfigPluginOptions<unknown>;
|
|
590
612
|
"expo-ads-facebook": ConfigPluginOptions<typeof expo_ads_facebook_plugin_build_withFacebookAds["default"]>;
|
|
591
613
|
"expo-alarm-module": ConfigPluginOptions<typeof expo_alarm_module_plugin_build_withExpoAlarmModule["default"]>;
|
|
614
|
+
"expo-aliyun-oss": ConfigPluginOptions<typeof expo_aliyun_oss_plugin_build_index["default"]>;
|
|
615
|
+
"expo-aliyun-push": ConfigPluginOptions<typeof expo_aliyun_push_plugin_build_index["default"]>;
|
|
592
616
|
"expo-alternate-app-icons": ConfigPluginOptions<typeof expo_alternate_app_icons_plugin_build_index["default"]>;
|
|
593
617
|
"expo-app-auth": ConfigPluginOptions<typeof expo_app_auth_plugin_build_withAppAuth["default"]>;
|
|
594
618
|
"expo-appcenter": ConfigPluginOptions<typeof expo_appcenter_plugin_build_index["default"]>;
|
|
@@ -604,12 +628,13 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
604
628
|
"expo-banuba": ConfigPluginOptions<typeof expo_banuba_plugin_build_withBanuba["default"]>;
|
|
605
629
|
"expo-barcode-scanner": ConfigPluginOptions<typeof expo_barcode_scanner_plugin_build_withBarcodeScanner["default"]>;
|
|
606
630
|
"expo-bare-kit": ConfigPluginOptions<typeof expo_bare_kit_plugin_index["default"]>;
|
|
607
|
-
"expo-
|
|
631
|
+
"expo-bonjour": ConfigPluginOptions<typeof expo_bonjour_plugin_build_index["default"]>;
|
|
608
632
|
"expo-branch": ConfigPluginOptions<typeof expo_branch_plugin_build_withBranch["default"]>;
|
|
609
633
|
"expo-brightness": ConfigPluginOptions<typeof expo_brightness_plugin_build_withBrightness["default"]>;
|
|
610
634
|
"expo-brother-printer-sdk": ConfigPluginOptions<typeof expo_brother_printer_sdk_plugin_build_index["default"]>;
|
|
611
635
|
"expo-build-flags": ConfigPluginOptions<typeof expo_build_flags_build_config_plugin_index["default"]>;
|
|
612
636
|
"expo-build-properties": ConfigPluginOptions<typeof expo_build_properties_build_withBuildProperties["default"]>;
|
|
637
|
+
"expo-cafebazaar-auth": ConfigPluginOptions<typeof expo_cafebazaar_auth_plugin_build["default"]>;
|
|
613
638
|
"expo-calendar": ConfigPluginOptions<typeof expo_calendar_plugin_build_withCalendar["default"]>;
|
|
614
639
|
"expo-camera": ConfigPluginOptions<typeof expo_camera_plugin_build_withCamera["default"]>;
|
|
615
640
|
"expo-cdnbye": ConfigPluginOptions<typeof expo_cdnbye_app_plugin["default"]>;
|
|
@@ -634,6 +659,9 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
634
659
|
"expo-firebase-core": ConfigPluginOptions<typeof expo_firebase_core_plugin_build_withFirebaseCore["default"]>;
|
|
635
660
|
"expo-floating-bubble": ConfigPluginOptions<typeof expo_floating_bubble_app_plugin["default"]>;
|
|
636
661
|
"expo-font": ConfigPluginOptions<typeof expo_font_plugin_build_withFonts["default"]>;
|
|
662
|
+
"expo-gaode-map": ConfigPluginOptions<typeof expo_gaode_map_plugin_build_withGaodeMap["default"]>;
|
|
663
|
+
"expo-gaode-map-navigation": ConfigPluginOptions<typeof expo_gaode_map_navigation_plugin_build_withGaodeMap["default"]>;
|
|
664
|
+
"expo-gbk-converter": ConfigPluginOptions<typeof expo_gbk_converter_app_plugin["default"]>;
|
|
637
665
|
"expo-google-sign-in": ConfigPluginOptions<typeof expo_google_sign_in_plugin_build_withGoogleSignIn["default"]>;
|
|
638
666
|
"expo-gradle-ext-vars": ConfigPluginOptions<typeof expo_gradle_ext_vars_build_index["default"]>;
|
|
639
667
|
"expo-gradle-jvmargs": ConfigPluginOptions<typeof expo_gradle_jvmargs_plugin_build_withGradleJvmArgs["default"]>;
|
|
@@ -644,6 +672,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
644
672
|
"expo-iap": ConfigPluginOptions<typeof expo_iap_plugin_build_withIAP["default"]>;
|
|
645
673
|
"expo-idnow-auto-ident-config-plugin": ConfigPluginOptions<typeof expo_idnow_auto_ident_config_plugin_build_withIdNowAutoIdent["default"]>;
|
|
646
674
|
"expo-ignore-battery-optimizations": ConfigPluginOptions<typeof expo_ignore_battery_optimizations_plugin_build_withBatteryOptimizationPermissions["default"]>;
|
|
675
|
+
"expo-image": ConfigPluginOptions<unknown>;
|
|
647
676
|
"expo-image-picker": ConfigPluginOptions<typeof expo_image_picker_plugin_build_withImagePicker["default"]>;
|
|
648
677
|
"expo-install-apps": ConfigPluginOptions<typeof expo_install_apps_plugin_build_withAppList["default"]>;
|
|
649
678
|
"expo-instant-app": ConfigPluginOptions<typeof expo_instant_app_plugin_build_lib_withInstantAppManifest["default"]>;
|
|
@@ -659,6 +688,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
659
688
|
"expo-mapbox-navigation": ConfigPluginOptions<unknown>;
|
|
660
689
|
"expo-maps": ConfigPluginOptions<typeof expo_maps_plugin_build_withMapsLocation["default"]>;
|
|
661
690
|
"expo-mds": ConfigPluginOptions<typeof expo_mds_app_plugin["default"]>;
|
|
691
|
+
"expo-media-control": ConfigPluginOptions<typeof expo_media_control_plugin_build_index["default"]>;
|
|
662
692
|
"expo-media-library": ConfigPluginOptions<typeof expo_media_library_plugin_build_withMediaLibrary["default"]>;
|
|
663
693
|
"expo-motion-detector": ConfigPluginOptions<typeof expo_motion_detector_app_plugin["default"]>;
|
|
664
694
|
"expo-moyasar-apple-pay": ConfigPluginOptions<typeof expo_moyasar_apple_pay_app_plugin["default"]>;
|
|
@@ -673,6 +703,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
673
703
|
"expo-pip": ConfigPluginOptions<typeof expo_pip_plugin_build_index["default"]>;
|
|
674
704
|
"expo-pod-pinner": ConfigPluginOptions<typeof expo_pod_pinner_build_plugin_withPodPinner["default"]>;
|
|
675
705
|
"expo-privacy-manifest-polyfill-plugin": ConfigPluginOptions<typeof expo_privacy_manifest_polyfill_plugin_build_withExpoPrivacyManifestPolyfillPlugin["default"]>;
|
|
706
|
+
"expo-qq": ConfigPluginOptions<typeof expo_qq_plugin_build_index["default"]>;
|
|
676
707
|
"expo-quest-notifications": ConfigPluginOptions<typeof expo_quest_notifications_plugin_build_withNotifications["default"]>;
|
|
677
708
|
"expo-quick-actions": ConfigPluginOptions<typeof expo_quick_actions_plugin_build_index["default"]>;
|
|
678
709
|
"expo-react-native-freshchat": ConfigPluginOptions<typeof expo_react_native_freshchat_app_plugin["default"]>;
|
|
@@ -687,17 +718,19 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
687
718
|
"expo-sensors": ConfigPluginOptions<typeof expo_sensors_plugin_build_withSensors["default"]>;
|
|
688
719
|
"expo-share-extension": ConfigPluginOptions<typeof expo_share_extension_plugin_build_index["default"]>;
|
|
689
720
|
"expo-share-intent": ConfigPluginOptions<typeof expo_share_intent_plugin_build_index["default"]>;
|
|
721
|
+
"expo-sharing": ConfigPluginOptions<typeof expo_sharing_plugin_build_index["default"]>;
|
|
690
722
|
"expo-shazamkit": ConfigPluginOptions<typeof expo_shazamkit_plugin_build_withShazamKit["default"]>;
|
|
691
723
|
"expo-signature": ConfigPluginOptions<typeof expo_signature_plugin_build_withLocalAuthentication["default"]>;
|
|
692
724
|
"expo-speech-recognition": ConfigPluginOptions<typeof expo_speech_recognition_app_plugin["default"]>;
|
|
693
725
|
"expo-splash-screen": ConfigPluginOptions<typeof expo_splash_screen_plugin_build_withSplashScreen["default"]>;
|
|
694
726
|
"expo-sqlite": ConfigPluginOptions<typeof expo_sqlite_plugin_build_withSQLite["default"]>;
|
|
695
727
|
"expo-stores-games-services": ConfigPluginOptions<typeof expo_stores_games_services_plugin_build_index["default"]>;
|
|
728
|
+
"expo-stream-audio": ConfigPluginOptions<typeof expo_stream_audio_app_plugin["default"]>;
|
|
696
729
|
"expo-stt": ConfigPluginOptions<typeof expo_stt_plugin_build_withSpeechRecognition["default"]>;
|
|
697
|
-
"expo-superwall": ConfigPluginOptions<typeof expo_superwall_plugin_build_index["default"]>;
|
|
698
730
|
"expo-system-ui": ConfigPluginOptions<typeof expo_system_ui_plugin_build_withSystemUI["default"]>;
|
|
699
731
|
"expo-tappay-line-pay": ConfigPluginOptions<typeof expo_tappay_line_pay_plugin_build_index["default"]>;
|
|
700
732
|
"expo-task-manager": ConfigPluginOptions<typeof expo_task_manager_plugin_build_withTaskManager["default"]>;
|
|
733
|
+
"expo-tencent-trtc": ConfigPluginOptions<typeof expo_tencent_trtc_plugin_build_index["default"]>;
|
|
701
734
|
"expo-tiktok-sdk": ConfigPluginOptions<unknown>;
|
|
702
735
|
"expo-tracking-transparency": ConfigPluginOptions<typeof expo_tracking_transparency_plugin_build_withTrackingTransparency["default"]>;
|
|
703
736
|
"expo-umeng": ConfigPluginOptions<typeof expo_umeng_app_plugin["default"]>;
|
|
@@ -721,7 +754,6 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
721
754
|
"instabug-reactnative": ConfigPluginOptions<typeof instabug_reactnative_plugin_src_index["default"]>;
|
|
722
755
|
"jpush-expo-config-plugin": ConfigPluginOptions<typeof jpush_expo_config_plugin_app_plugin["default"]>;
|
|
723
756
|
"karte-expo-plugin": ConfigPluginOptions<typeof karte_expo_plugin_build_withKarte["default"]>;
|
|
724
|
-
lama: ConfigPluginOptions<unknown>;
|
|
725
757
|
"letro-passport": ConfigPluginOptions<typeof letro_passport_plugin_build_index["default"]>;
|
|
726
758
|
"llama.rn": ConfigPluginOptions<typeof llama_rn_lib_typescript_expo_plugin_withLlamaRN["default"]>;
|
|
727
759
|
"mindbox-expo-plugin": ConfigPluginOptions<typeof mindbox_expo_plugin_build_withMindbox["default"]>;
|
|
@@ -732,6 +764,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
732
764
|
"patch-project": ConfigPluginOptions<typeof patch_project_build_withPatchPlugin["default"]>;
|
|
733
765
|
"pushwoosh-expo-plugin": ConfigPluginOptions<typeof pushwoosh_expo_plugin_plugin_build_withPushwoosh["default"]>;
|
|
734
766
|
"pushy-expo-plugin": ConfigPluginOptions<typeof pushy_expo_plugin_app_plugin["default"]>;
|
|
767
|
+
"react-native-adapty": ConfigPluginOptions<typeof react_native_adapty_plugin_with_adapty["default"]>;
|
|
735
768
|
"react-native-add-calendar-event": ConfigPluginOptions<typeof react_native_add_calendar_event_plugin_build_withAddCalendarEvent["default"]>;
|
|
736
769
|
"react-native-admob-native-ads": ConfigPluginOptions<typeof react_native_admob_native_ads_plugin_build_withAdmobNativeAds["default"]>;
|
|
737
770
|
"react-native-altitude-plugin": ConfigPluginOptions<typeof react_native_altitude_plugin_plugin_src_withAltitude["default"]>;
|
|
@@ -758,17 +791,17 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
758
791
|
"react-native-core-bluetooth": ConfigPluginOptions<typeof react_native_core_bluetooth_lib_typescript_src_expo_plugin_withCoreBluetooth["default"]>;
|
|
759
792
|
"react-native-credentials-manager": ConfigPluginOptions<typeof react_native_credentials_manager_app_plugin["default"]>;
|
|
760
793
|
"react-native-crisp-chat-sdk": ConfigPluginOptions<typeof react_native_crisp_chat_sdk_plugin_build_withCrispChat["default"]>;
|
|
794
|
+
"react-native-custom-splash": ConfigPluginOptions<typeof react_native_custom_splash_plugin_src_index["default"]>;
|
|
761
795
|
"react-native-deepgram": ConfigPluginOptions<typeof react_native_deepgram_plugin_build_index["default"]>;
|
|
762
796
|
"react-native-device-activity": ConfigPluginOptions<typeof react_native_device_activity_app_plugin["default"]>;
|
|
763
797
|
"react-native-dji-mobile-sdk": ConfigPluginOptions<typeof react_native_dji_mobile_sdk_app_plugin["default"]>;
|
|
764
798
|
"react-native-document-scanner-plugin": ConfigPluginOptions<typeof react_native_document_scanner_plugin_expo_plugin_build_withDocumentScanner["default"]>;
|
|
765
|
-
"react-native-dynamic-activities": ConfigPluginOptions<typeof react_native_dynamic_activities_app_plugin["default"]>;
|
|
766
799
|
"react-native-edge-to-edge": ConfigPluginOptions<typeof react_native_edge_to_edge_dist_typescript_expo["default"]>;
|
|
767
800
|
"react-native-email-link": ConfigPluginOptions<typeof react_native_email_link_plugin_withEmailLink["default"]>;
|
|
768
801
|
"react-native-embedded-httpd": ConfigPluginOptions<typeof react_native_embedded_httpd_lib_typescript_module_withoutNettyMeta["default"]>;
|
|
802
|
+
"react-native-enriched-markdown": ConfigPluginOptions<unknown>;
|
|
769
803
|
"react-native-epson-escposprinter": ConfigPluginOptions<typeof react_native_epson_escposprinter_lib_typescript_module_withPluginConfigs["default"]>;
|
|
770
804
|
"react-native-expo-braintree": ConfigPluginOptions<typeof react_native_expo_braintree_lib_typescript_src_plugin_withExpoBraintree["default"]>;
|
|
771
|
-
"react-native-expo-metamap-sdk": ConfigPluginOptions<typeof react_native_expo_metamap_sdk_plugin_build_index["default"]>;
|
|
772
805
|
"react-native-expo-moengage": ConfigPluginOptions<typeof react_native_expo_moengage_build_index["default"]>;
|
|
773
806
|
"react-native-face-detector-camera": ConfigPluginOptions<typeof react_native_face_detector_camera_plugin_build_withCamera["default"]>;
|
|
774
807
|
"react-native-fast-tflite": ConfigPluginOptions<typeof react_native_fast_tflite_lib_typescript_src_expo_plugin_withFastTFLite["default"]>;
|
|
@@ -804,18 +837,20 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
804
837
|
"react-native-mapbox-turn-by-turn-navigation": ConfigPluginOptions<typeof react_native_mapbox_turn_by_turn_navigation_lib_typescript_src_plugin_withMapbox["default"]>;
|
|
805
838
|
"react-native-maps": ConfigPluginOptions<typeof react_native_maps_dist_plugin_src_index["default"]>;
|
|
806
839
|
"react-native-metamap-sdk": ConfigPluginOptions<typeof react_native_metamap_sdk_plugin_build_index["default"]>;
|
|
807
|
-
"react-native-mlx": ConfigPluginOptions<unknown>;
|
|
808
840
|
"react-native-moyasar-apple-pay": ConfigPluginOptions<typeof react_native_moyasar_apple_pay_app_plugin["default"]>;
|
|
809
841
|
"react-native-msal": ConfigPluginOptions<typeof react_native_msal_plugin_build_withReactNativeMSAL["default"]>;
|
|
810
842
|
"react-native-multipeer": ConfigPluginOptions<unknown>;
|
|
811
843
|
"react-native-nai-timer": ConfigPluginOptions<typeof react_native_nai_timer_plugin_build_withNaiTimer["default"]>;
|
|
812
844
|
"react-native-navigation-mode": ConfigPluginOptions<typeof react_native_navigation_mode_app_plugin["default"]>;
|
|
813
845
|
"react-native-nfc-manager": ConfigPluginOptions<typeof react_native_nfc_manager_app_plugin["default"]>;
|
|
846
|
+
"react-native-nitro-auth": ConfigPluginOptions<typeof react_native_nitro_auth_app_plugin["default"]>;
|
|
814
847
|
"react-native-nitro-inspire-face": ConfigPluginOptions<typeof react_native_nitro_inspire_face_lib_typescript_module_src_expo_plugin_withInspireFace["default"]>;
|
|
848
|
+
"react-native-nitro-ota": ConfigPluginOptions<typeof react_native_nitro_ota_expo_plugins_dist_index["default"]>;
|
|
815
849
|
"react-native-nitro-readium": ConfigPluginOptions<typeof react_native_nitro_readium_plugins_build_index["default"]>;
|
|
816
850
|
"react-native-nitro-screen-recorder": ConfigPluginOptions<typeof react_native_nitro_screen_recorder_lib_typescript_expo_plugin_withScreenRecorder["default"]>;
|
|
817
851
|
"react-native-nitro-sound": ConfigPluginOptions<typeof react_native_nitro_sound_lib_typescript_plugin_src_index["default"]>;
|
|
818
852
|
"react-native-nitro-speech-recognition": ConfigPluginOptions<typeof react_native_nitro_speech_recognition_plugin_build_withNitroSpeechRecognition["default"]>;
|
|
853
|
+
"react-native-nitro-wallpaper": ConfigPluginOptions<typeof react_native_nitro_wallpaper_app_plugin["default"]>;
|
|
819
854
|
"react-native-notificare": ConfigPluginOptions<typeof react_native_notificare_lib_plugin_withNotificare["default"]>;
|
|
820
855
|
"react-native-notificare-geo": ConfigPluginOptions<typeof react_native_notificare_geo_lib_plugin_withNotificareGeo["default"]>;
|
|
821
856
|
"react-native-notificare-push": ConfigPluginOptions<typeof react_native_notificare_push_lib_plugin_withNotificarePush["default"]>;
|
|
@@ -824,6 +859,7 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
824
859
|
"react-native-orientation-director": ConfigPluginOptions<typeof react_native_orientation_director_plugin_build_index["default"]>;
|
|
825
860
|
"react-native-ota-hot-update": ConfigPluginOptions<typeof react_native_ota_hot_update_plugin_src_index_ts["default"]>;
|
|
826
861
|
"react-native-package-checker": ConfigPluginOptions<typeof react_native_package_checker_app_plugin["default"]>;
|
|
862
|
+
"react-native-pdf-jsi": ConfigPluginOptions<typeof react_native_pdf_jsi_plugin_build_index["default"]>;
|
|
827
863
|
"react-native-permissions": ConfigPluginOptions<typeof react_native_permissions_dist_typescript_expo["default"]>;
|
|
828
864
|
"react-native-quick-crypto": ConfigPluginOptions<unknown>;
|
|
829
865
|
"react-native-radar": ConfigPluginOptions<typeof react_native_radar_plugin_build_withRadar["default"]>;
|
|
@@ -836,7 +872,9 @@ interface ThirdPartyAutomatedPlugins {
|
|
|
836
872
|
"react-native-salesforce-chat-sdk": ConfigPluginOptions<typeof react_native_salesforce_chat_sdk_plugin_index["default"]>;
|
|
837
873
|
"react-native-savanitdev-thermal-printer": ConfigPluginOptions<typeof react_native_savanitdev_thermal_printer_app_plugin["default"]>;
|
|
838
874
|
"react-native-screen-time": ConfigPluginOptions<unknown>;
|
|
875
|
+
"react-native-screenguard": ConfigPluginOptions<unknown>;
|
|
839
876
|
"react-native-screenshot-aware": ConfigPluginOptions<typeof react_native_screenshot_aware_lib_typescript_plugin_withReactNativeScreenshotAware["default"]>;
|
|
877
|
+
"react-native-sensitive-info": ConfigPluginOptions<unknown>;
|
|
840
878
|
"react-native-share": ConfigPluginOptions<typeof react_native_share_plugin_build_index["default"]>;
|
|
841
879
|
"react-native-spotlight-search": ConfigPluginOptions<typeof react_native_spotlight_search_plugin_build_withSpotlight["default"]>;
|
|
842
880
|
"react-native-ssl-manager": ConfigPluginOptions<typeof react_native_ssl_manager_app_plugin["default"]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typed-config-plugins",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "adds types to expo config plugins, like @types but for expo config plugins",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "WookieFPV (Lukas Müller)",
|
|
@@ -10,19 +10,22 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/WookieFPV/typed-config-plugins"
|
|
12
12
|
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
13
16
|
"keywords": [
|
|
14
17
|
"expo",
|
|
15
18
|
"config-plugin",
|
|
16
19
|
"react-native"
|
|
17
20
|
],
|
|
18
21
|
"workspaces": [
|
|
22
|
+
".",
|
|
19
23
|
"packageList"
|
|
20
24
|
],
|
|
21
25
|
"license": "MIT",
|
|
22
26
|
"module": "dist/plugin.js",
|
|
23
27
|
"type": "module",
|
|
24
28
|
"types": "dist/plugin.d.ts",
|
|
25
|
-
"main": "dist/cli.js",
|
|
26
29
|
"exports": {
|
|
27
30
|
"types": "./dist/plugin.d.ts",
|
|
28
31
|
"default": "./dist/plugin.js"
|
|
@@ -36,32 +39,32 @@
|
|
|
36
39
|
"find": "bun run src/codegenPipeline/searchTypes/findTypesCli.ts",
|
|
37
40
|
"github": "bun run src/codegenPipeline/githubSearch/findRepos.ts",
|
|
38
41
|
"build:dev": "tsup --watch",
|
|
42
|
+
"changeset": "changeset",
|
|
39
43
|
"lint": "bunx biome check --fix --unsafe",
|
|
40
44
|
"lint:CI": "bunx biome check",
|
|
45
|
+
"release": "changeset publish",
|
|
41
46
|
"typecheck": "tsc",
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
"peerDependencies": {
|
|
45
|
-
"@expo/config-plugins": "*"
|
|
47
|
+
"version-packages": "changeset version",
|
|
48
|
+
"prepublishOnly": "bun run lint:CI && bun run typecheck && bun run build"
|
|
46
49
|
},
|
|
47
50
|
"devDependencies": {
|
|
48
|
-
"@babel/parser": "7.
|
|
49
|
-
"@babel/traverse": "7.
|
|
50
|
-
"@babel/types": "7.
|
|
51
|
-
"@biomejs/biome": "2.2
|
|
52
|
-
"@
|
|
51
|
+
"@babel/parser": "7.29.0",
|
|
52
|
+
"@babel/traverse": "7.29.0",
|
|
53
|
+
"@babel/types": "7.29.0",
|
|
54
|
+
"@biomejs/biome": "2.4.2",
|
|
55
|
+
"@changesets/cli": "2.30.0",
|
|
56
|
+
"@expo/config-plugins": "54.0.4",
|
|
53
57
|
"@octokit/rest": "22.0.1",
|
|
54
|
-
"@types/bun": "1.3.
|
|
58
|
+
"@types/bun": "1.3.9",
|
|
55
59
|
"@types/npm-registry-fetch": "8.0.9",
|
|
56
60
|
"@types/resolve": "1.20.6",
|
|
57
|
-
"es-toolkit": "1.
|
|
58
|
-
"lefthook": "1.
|
|
59
|
-
"npm-registry-fetch": "19.1.
|
|
60
|
-
"ora": "9.
|
|
61
|
-
"p-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"tsup": "8.5.0",
|
|
61
|
+
"es-toolkit": "1.44.0",
|
|
62
|
+
"lefthook": "2.1.1",
|
|
63
|
+
"npm-registry-fetch": "19.1.1",
|
|
64
|
+
"ora": "9.3.0",
|
|
65
|
+
"p-queue": "9.1.0",
|
|
66
|
+
"resolve": "1.22.11",
|
|
67
|
+
"tsup": "8.5.1",
|
|
65
68
|
"typescript": "5.9.3"
|
|
66
69
|
},
|
|
67
70
|
"patchedDependencies": {
|