@expo/config-types 56.0.3 → 56.0.5

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.
@@ -169,7 +169,7 @@ export interface ExpoConfig {
169
169
  */
170
170
  useNativeDebug?: boolean;
171
171
  /**
172
- * Whether to enable support for downloading and applying bundle diffs using bsdiff. Defaults to false.
172
+ * Whether to enable support for downloading and applying bundle diffs using bsdiff. Defaults to true.
173
173
  */
174
174
  enableBsdiffPatchSupport?: boolean;
175
175
  };
@@ -602,10 +602,18 @@ export interface AndroidIntentFiltersData {
602
602
  * Pattern for paths that should be matched by the filter, e.g. `.*`. Must begin with `/`
603
603
  */
604
604
  pathPattern?: string;
605
+ /**
606
+ * Advanced pattern for paths that should be matched by the filter. Available on Android 12 (API level 31) and later.
607
+ */
608
+ pathAdvancedPattern?: string;
605
609
  /**
606
610
  * Prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
607
611
  */
608
612
  pathPrefix?: string;
613
+ /**
614
+ * Suffix for paths that should be matched by the filter. Available on Android 12 (API level 31) and later.
615
+ */
616
+ pathSuffix?: string;
609
617
  /**
610
618
  * MIME type for URLs that should be matched by the filter
611
619
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "56.0.3",
3
+ "version": "56.0.5",
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",
@@ -36,7 +36,7 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "40f0a6f6711d93762e0506b37e6e077e4bd9a541",
39
+ "gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
40
40
  "scripts": {
41
41
  "build": "expo-module tsc",
42
42
  "clean": "expo-module clean",