@expo/config-types 54.0.5 → 54.0.7
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 +19 -24
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export interface ExpoConfig {
|
|
|
69
69
|
*/
|
|
70
70
|
icon?: string;
|
|
71
71
|
/**
|
|
72
|
-
* Configuration for remote (push) notifications.
|
|
72
|
+
* @deprecated in favor of expo-notifications config plugin. Configuration for remote (push) notifications.
|
|
73
73
|
*/
|
|
74
74
|
notification?: {
|
|
75
75
|
/**
|
|
@@ -246,6 +246,15 @@ export interface ExpoConfig {
|
|
|
246
246
|
* A Boolean value that indicates whether the app should use the new architecture. Defaults to true.
|
|
247
247
|
*/
|
|
248
248
|
newArchEnabled?: boolean;
|
|
249
|
+
/**
|
|
250
|
+
* Enable downloading cached builds from remote.
|
|
251
|
+
*/
|
|
252
|
+
buildCacheProvider?: 'eas' | {
|
|
253
|
+
plugin: string;
|
|
254
|
+
options?: {
|
|
255
|
+
[k: string]: any;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
249
258
|
ios?: IOS;
|
|
250
259
|
android?: Android;
|
|
251
260
|
web?: Web;
|
|
@@ -261,6 +270,15 @@ export interface ExpoConfig {
|
|
|
261
270
|
* Export a website relative to a subpath of a domain. The path will be prepended as-is to links to all bundled resources. Prefix the path with a `/` (recommended) to load all resources relative to the server root. If the path **does not** start with a `/` then resources will be loaded relative to the code that requests them, this could lead to unexpected behavior. Example '/subpath'. Defaults to '' (empty string).
|
|
262
271
|
*/
|
|
263
272
|
baseUrl?: string;
|
|
273
|
+
/**
|
|
274
|
+
* @deprecated This field is not longer marked as experimental and will be removed in a future release, use the `buildCacheProvider` field instead.
|
|
275
|
+
*/
|
|
276
|
+
buildCacheProvider?: 'eas' | {
|
|
277
|
+
plugin: string;
|
|
278
|
+
options?: {
|
|
279
|
+
[k: string]: any;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
264
282
|
/**
|
|
265
283
|
* If true, indicates that this project does not support tablets or handsets, and only supports Apple TV and Android TV
|
|
266
284
|
*/
|
|
@@ -293,29 +311,6 @@ export interface ExpoConfig {
|
|
|
293
311
|
* Experimentally enable React Server Functions support in Expo CLI and Expo Router.
|
|
294
312
|
*/
|
|
295
313
|
reactServerFunctions?: boolean;
|
|
296
|
-
/**
|
|
297
|
-
* Experimentally enable downloading cached builds from a provider.
|
|
298
|
-
*/
|
|
299
|
-
buildCacheProvider?: 'eas' | {
|
|
300
|
-
plugin: string;
|
|
301
|
-
options?: {
|
|
302
|
-
[k: string]: any;
|
|
303
|
-
};
|
|
304
|
-
};
|
|
305
|
-
/**
|
|
306
|
-
* @deprecated This field will be removed in a future release, use the `buildCacheProvider` field instead.
|
|
307
|
-
*/
|
|
308
|
-
remoteBuildCache?: {
|
|
309
|
-
/**
|
|
310
|
-
* Service provider for remote builds.
|
|
311
|
-
*/
|
|
312
|
-
provider?: 'eas' | {
|
|
313
|
-
plugin: string;
|
|
314
|
-
options?: {
|
|
315
|
-
[k: string]: any;
|
|
316
|
-
};
|
|
317
|
-
};
|
|
318
|
-
};
|
|
319
314
|
};
|
|
320
315
|
/**
|
|
321
316
|
* Internal properties for developer tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "54.0.
|
|
3
|
+
"version": "54.0.7",
|
|
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": "^5.0.
|
|
40
|
+
"expo-module-scripts": "^5.0.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": "d635404a12ea7996b987ce0fb7679a238ebcf31b"
|
|
47
47
|
}
|