@expo/config-types 50.0.0-alpha.1 → 50.0.0-alpha.2

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.
@@ -41,7 +41,7 @@ export interface ExpoConfig {
41
41
  * Set this to `{"policy": "nativeVersion"}` to generate it automatically.
42
42
  */
43
43
  runtimeVersion?: string | {
44
- policy: 'nativeVersion' | 'sdkVersion' | 'appVersion';
44
+ policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprintExperimental';
45
45
  };
46
46
  /**
47
47
  * Your app version. In addition to this field, you'll also use `ios.buildNumber` and `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). On iOS this corresponds to `CFBundleShortVersionString`, and on Android, this corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
@@ -248,6 +248,14 @@ export interface ExpoConfig {
248
248
  * Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.
249
249
  */
250
250
  experiments?: {
251
+ /**
252
+ * 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).
253
+ */
254
+ basePath?: string;
255
+ /**
256
+ * If true, indicates that this project does not support tablets or handsets, and only supports Apple TV and Android TV
257
+ */
258
+ supportsTVOnly?: boolean;
251
259
  /**
252
260
  * Enable tsconfig/jsconfig `compilerOptions.paths` and `compilerOptions.baseUrl` support for import aliases in Metro.
253
261
  */
@@ -463,7 +471,7 @@ export interface IOS {
463
471
  * Set this to `{"policy": "nativeVersion"}` to generate it automatically.
464
472
  */
465
473
  runtimeVersion?: string | {
466
- policy: 'nativeVersion' | 'sdkVersion' | 'appVersion';
474
+ policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprintExperimental';
467
475
  };
468
476
  }
469
477
  /**
@@ -739,7 +747,7 @@ export interface Android {
739
747
  * Set this to `{"policy": "nativeVersion"}` to generate it automatically.
740
748
  */
741
749
  runtimeVersion?: string | {
742
- policy: 'nativeVersion' | 'sdkVersion' | 'appVersion';
750
+ policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprintExperimental';
743
751
  };
744
752
  }
745
753
  export interface AndroidIntentFiltersData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "50.0.0-alpha.1",
3
+ "version": "50.0.0-alpha.2",
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",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
45
+ "gitHead": "ee2c866ba3c7fbc35ff2a3e896041cf15d3bd7c5"
46
46
  }