@expo/config-types 53.0.2 → 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.
- package/build/ExpoConfig.d.ts +19 -1
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -285,7 +285,16 @@ export interface ExpoConfig {
|
|
|
285
285
|
*/
|
|
286
286
|
reactServerFunctions?: boolean;
|
|
287
287
|
/**
|
|
288
|
-
* Experimentally enable downloading cached builds from
|
|
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
|
/**
|
|
@@ -841,6 +850,15 @@ export interface AndroidIntentFiltersData {
|
|
|
841
850
|
* Prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
|
|
842
851
|
*/
|
|
843
852
|
pathPrefix?: string;
|
|
853
|
+
/**
|
|
854
|
+
* Suffix for paths that should be matched by the filter, e.g. `.pdf` will match `/docs/file.pdf`
|
|
855
|
+
*/
|
|
856
|
+
pathSuffix?: string;
|
|
857
|
+
/**
|
|
858
|
+
* Advanced pattern for paths, available in API 31+ (Android 12 and later),
|
|
859
|
+
* supports regular expressions. Example: `/records/[0-9]+`
|
|
860
|
+
*/
|
|
861
|
+
pathAdvancedPattern?: string;
|
|
844
862
|
/**
|
|
845
863
|
* MIME type for URLs that should be matched by the filter
|
|
846
864
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "53.0.
|
|
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",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^4.1.
|
|
40
|
+
"expo-module-scripts": "^4.1.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": "907224d194d100adb3dff522d4d7be91ee43be51"
|
|
47
47
|
}
|