@expo/config-types 53.0.0-preview.0 → 53.0.0-preview.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.
@@ -284,6 +284,15 @@ export interface ExpoConfig {
284
284
  * Experimentally enable React Server Functions support in Expo CLI and Expo Router.
285
285
  */
286
286
  reactServerFunctions?: boolean;
287
+ /**
288
+ * Experimentally enable downloading cached builds from remote.
289
+ */
290
+ remoteBuildCache?: {
291
+ /**
292
+ * Service provider for remote builds.
293
+ */
294
+ provider?: 'eas';
295
+ };
287
296
  };
288
297
  /**
289
298
  * Internal properties for developer tools
@@ -789,6 +798,10 @@ export interface Android {
789
798
  * Your android app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
790
799
  */
791
800
  version?: string;
801
+ /**
802
+ * Enable your app to run in [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge) mode. Default to false.
803
+ */
804
+ edgeToEdgeEnabled?: boolean;
792
805
  }
793
806
  export interface AndroidIntentFiltersData {
794
807
  /**
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "53.0.0-preview.0",
3
+ "version": "53.0.0-preview.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",
7
7
  "scripts": {
8
8
  "build": "expo-module tsc",
9
9
  "clean": "expo-module clean",
10
- "generate": "ts-node ./scripts/generate.ts",
10
+ "generate": "node ./scripts/generate.js",
11
11
  "lint": "expo-module lint",
12
12
  "prepare": "expo-module clean && expo-module tsc",
13
13
  "prepublishOnly": "expo-module prepublishOnly",
@@ -37,12 +37,11 @@
37
37
  "build"
38
38
  ],
39
39
  "devDependencies": {
40
- "expo-module-scripts": "^4.1.0",
41
- "json-schema-to-typescript": "^14.0.5",
42
- "ts-node": "^10.9.1"
40
+ "expo-module-scripts": "^4.1.1",
41
+ "json-schema-to-typescript": "^14.0.5"
43
42
  },
44
43
  "publishConfig": {
45
44
  "access": "public"
46
45
  },
47
- "gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
46
+ "gitHead": "c81263062bf24ad09e51e019f1d7dc29fa651c55"
48
47
  }