@expo/config-types 53.0.3 → 53.0.4

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.
@@ -285,7 +285,16 @@ export interface ExpoConfig {
285
285
  */
286
286
  reactServerFunctions?: boolean;
287
287
  /**
288
- * Experimentally enable downloading cached builds from remote.
288
+ * Experimentally enable downloading cached builds from a provider.
289
+ */
290
+ buildCacheProvider?: 'eas' | {
291
+ plugin: string;
292
+ options?: {
293
+ [k: string]: any;
294
+ };
295
+ };
296
+ /**
297
+ * @deprecated This field will be removed in a future release, use the `buildCacheProvider` field instead.
289
298
  */
290
299
  remoteBuildCache?: {
291
300
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "53.0.3",
3
+ "version": "53.0.4",
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": "2055b46ab64df8f8f0211b9557d1c5f65a8e15d5"
46
+ "gitHead": "907224d194d100adb3dff522d4d7be91ee43be51"
47
47
  }