@expo/config-types 53.0.2 → 53.0.3

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.
@@ -841,6 +841,15 @@ export interface AndroidIntentFiltersData {
841
841
  * Prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
842
842
  */
843
843
  pathPrefix?: string;
844
+ /**
845
+ * Suffix for paths that should be matched by the filter, e.g. `.pdf` will match `/docs/file.pdf`
846
+ */
847
+ pathSuffix?: string;
848
+ /**
849
+ * Advanced pattern for paths, available in API 31+ (Android 12 and later),
850
+ * supports regular expressions. Example: `/records/[0-9]+`
851
+ */
852
+ pathAdvancedPattern?: string;
844
853
  /**
845
854
  * MIME type for URLs that should be matched by the filter
846
855
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "53.0.2",
3
+ "version": "53.0.3",
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.5",
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": "bb2cf89d99a9d7f70b07419cc36cdf80c2764217"
46
+ "gitHead": "2055b46ab64df8f8f0211b9557d1c5f65a8e15d5"
47
47
  }