@expo/config-types 53.0.0 → 53.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.
@@ -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. Supported only on EAS Build. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
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,7 +291,12 @@ export interface ExpoConfig {
291
291
  /**
292
292
  * Service provider for remote builds.
293
293
  */
294
- provider?: 'eas';
294
+ provider?: 'eas' | {
295
+ plugin: string;
296
+ options?: {
297
+ [k: string]: any;
298
+ };
299
+ };
295
300
  };
296
301
  };
297
302
  /**
@@ -353,6 +358,10 @@ export interface IOS {
353
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.
354
359
  */
355
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[];
356
365
  /**
357
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.
358
367
  *
@@ -529,7 +538,7 @@ export interface IOS {
529
538
  [k: string]: any;
530
539
  };
531
540
  /**
532
- * Specifies the JavaScript engine for iOS apps. Supported only on EAS Build. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
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`.
533
542
  */
534
543
  jsEngine?: 'hermes' | 'jsc';
535
544
  /**
@@ -592,6 +601,10 @@ export interface Android {
592
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.
593
602
  */
594
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[];
595
608
  /**
596
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.
597
610
  */
@@ -781,7 +794,7 @@ export interface Android {
781
794
  */
782
795
  softwareKeyboardLayoutMode?: 'resize' | 'pan';
783
796
  /**
784
- * Specifies the JavaScript engine for Android apps. Supported only on EAS Build and in Expo Go. Defaults to `hermes`. Valid values: `hermes`, `jsc`.
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`.
785
798
  */
786
799
  jsEngine?: 'hermes' | 'jsc';
787
800
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "53.0.0",
3
+ "version": "53.0.2",
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",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "3cd208465df78e385ca9380531bbbfe33ca68e81"
46
+ "gitHead": "bb2cf89d99a9d7f70b07419cc36cdf80c2764217"
47
47
  }