@expo/config-types 56.0.3 → 56.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.
@@ -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.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",
@@ -36,7 +36,7 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "40f0a6f6711d93762e0506b37e6e077e4bd9a541",
39
+ "gitHead": "51c27fce31a5b3a877a4b05d832dabf4a99db5e1",
40
40
  "scripts": {
41
41
  "build": "expo-module tsc",
42
42
  "clean": "expo-module clean",