@expo/config-types 53.0.1 → 53.0.3
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/build/ExpoConfig.d.ts +25 -6
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -234,7 +234,7 @@ export interface ExpoConfig {
|
|
|
234
234
|
plugins?: (string | [] | [string] | [string, any])[];
|
|
235
235
|
splash?: Splash;
|
|
236
236
|
/**
|
|
237
|
-
* Specifies the JavaScript engine for apps.
|
|
237
|
+
* @deprecated This field will be removed in a future release. When it is removed, you can continue using JavaScriptCore instead of Hermes by following the instructions in [@react-native-community/javascriptcore](https://github.com/react-native-community/javascriptcore). Specifies the JavaScript engine for Android apps. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
|
|
238
238
|
*/
|
|
239
239
|
jsEngine?: 'hermes' | 'jsc';
|
|
240
240
|
/**
|
|
@@ -291,9 +291,11 @@ export interface ExpoConfig {
|
|
|
291
291
|
/**
|
|
292
292
|
* Service provider for remote builds.
|
|
293
293
|
*/
|
|
294
|
-
provider
|
|
295
|
-
plugin: string
|
|
296
|
-
options
|
|
294
|
+
provider?: 'eas' | {
|
|
295
|
+
plugin: string;
|
|
296
|
+
options?: {
|
|
297
|
+
[k: string]: any;
|
|
298
|
+
};
|
|
297
299
|
};
|
|
298
300
|
};
|
|
299
301
|
};
|
|
@@ -356,6 +358,10 @@ export interface IOS {
|
|
|
356
358
|
* The background color for your iOS app, behind any of your React views. Overrides the top-level `backgroundColor` key if it is present. Requires `expo-system-ui` be installed in your project to work on iOS.
|
|
357
359
|
*/
|
|
358
360
|
backgroundColor?: string;
|
|
361
|
+
/**
|
|
362
|
+
* URL scheme(s) to link into your iOS app. Schemes added to this field will be merged with the schemes in the `scheme` key at the top level of the config.
|
|
363
|
+
*/
|
|
364
|
+
scheme?: string | string[];
|
|
359
365
|
/**
|
|
360
366
|
* Local path or remote URL to an image to use for your app's icon on iOS. Alternatively, an object specifying different icons for various system appearances (e.g., dark, tinted) can be provided. If specified, this overrides the top-level `icon` key. Use a 1024x1024 icon which follows Apple's interface guidelines for icons, including color profile and transparency.
|
|
361
367
|
*
|
|
@@ -532,7 +538,7 @@ export interface IOS {
|
|
|
532
538
|
[k: string]: any;
|
|
533
539
|
};
|
|
534
540
|
/**
|
|
535
|
-
* Specifies the JavaScript engine for iOS apps.
|
|
541
|
+
* @deprecated This field will be removed in a future release. When it is removed, you can continue using JavaScriptCore instead of Hermes by following the instructions in [@react-native-community/javascriptcore](https://github.com/react-native-community/javascriptcore). Specifies the JavaScript engine for iOS apps. Not supported in Expo Go. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
|
|
536
542
|
*/
|
|
537
543
|
jsEngine?: 'hermes' | 'jsc';
|
|
538
544
|
/**
|
|
@@ -595,6 +601,10 @@ export interface Android {
|
|
|
595
601
|
* Configuration to force the app to always use the light or dark user-interface appearance, such as "dark mode", or make it automatically adapt to the system preferences. If not provided, defaults to `light`. Requires `expo-system-ui` be installed in your project to work on Android.
|
|
596
602
|
*/
|
|
597
603
|
userInterfaceStyle?: 'light' | 'dark' | 'automatic';
|
|
604
|
+
/**
|
|
605
|
+
* URL scheme(s) to link into your Android app. Schemes added to this field will be merged with the schemes in the `scheme` key at the top level of the config.
|
|
606
|
+
*/
|
|
607
|
+
scheme?: string | string[];
|
|
598
608
|
/**
|
|
599
609
|
* Local path or remote URL to an image to use for your app's icon on Android. If specified, this overrides the top-level `icon` key. We recommend that you use a 1024x1024 png file (transparency is recommended for the Google Play Store). This icon will appear on the home screen and within the Expo Go app.
|
|
600
610
|
*/
|
|
@@ -784,7 +794,7 @@ export interface Android {
|
|
|
784
794
|
*/
|
|
785
795
|
softwareKeyboardLayoutMode?: 'resize' | 'pan';
|
|
786
796
|
/**
|
|
787
|
-
*
|
|
797
|
+
* @deprecated This field will be removed in a future release. When it is removed, you can continue using JavaScriptCore instead of Hermes by following the instructions in [@react-native-community/javascriptcore](https://github.com/react-native-community/javascriptcore). Specifies the JavaScript engine for Android apps. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
|
|
788
798
|
*/
|
|
789
799
|
jsEngine?: 'hermes' | 'jsc';
|
|
790
800
|
/**
|
|
@@ -831,6 +841,15 @@ export interface AndroidIntentFiltersData {
|
|
|
831
841
|
* Prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
|
|
832
842
|
*/
|
|
833
843
|
pathPrefix?: string;
|
|
844
|
+
/**
|
|
845
|
+
* Suffix for paths that should be matched by the filter, e.g. `.pdf` will match `/docs/file.pdf`
|
|
846
|
+
*/
|
|
847
|
+
pathSuffix?: string;
|
|
848
|
+
/**
|
|
849
|
+
* Advanced pattern for paths, available in API 31+ (Android 12 and later),
|
|
850
|
+
* supports regular expressions. Example: `/records/[0-9]+`
|
|
851
|
+
*/
|
|
852
|
+
pathAdvancedPattern?: string;
|
|
834
853
|
/**
|
|
835
854
|
* MIME type for URLs that should be matched by the filter
|
|
836
855
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "53.0.
|
|
3
|
+
"version": "53.0.3",
|
|
4
4
|
"description": "Types for the Expo config object app.config.ts",
|
|
5
5
|
"types": "build/ExpoConfig.d.ts",
|
|
6
6
|
"main": "build/ExpoConfig.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^4.1.
|
|
40
|
+
"expo-module-scripts": "^4.1.6",
|
|
41
41
|
"json-schema-to-typescript": "^14.0.5"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "2055b46ab64df8f8f0211b9557d1c5f65a8e15d5"
|
|
47
47
|
}
|