@expo/config-types 53.0.0 → 53.0.1

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.
@@ -291,7 +291,10 @@ export interface ExpoConfig {
291
291
  /**
292
292
  * Service provider for remote builds.
293
293
  */
294
- provider?: 'eas';
294
+ provider: 'eas' | {
295
+ plugin: string | object;
296
+ options: any;
297
+ };
295
298
  };
296
299
  };
297
300
  /**
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.1",
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": "45bd8a319fb2d6abadac8dcb0c821a55a1f0caa3"
47
47
  }