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

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.
@@ -154,7 +154,7 @@ export interface ExpoConfig {
154
154
  silentLaunch?: boolean;
155
155
  };
156
156
  /**
157
- * **Custom Builds Only**. URL scheme(s) to link into your app. For example, if we set this to `'demo'`, then demo:// URLs would open your app when tapped.
157
+ * URL scheme(s) to link into your app. For example, if we set this to `'demo'`, then demo:// URLs would open your app when tapped. This is a build-time configuration, it has no effect in Expo Go.
158
158
  */
159
159
  scheme?: string | string[];
160
160
  /**
@@ -212,10 +212,6 @@ export interface ExpoConfig {
212
212
  requestHeaders?: {
213
213
  [k: string]: any;
214
214
  };
215
- /**
216
- * Whether to use deprecated Classic Updates when developing with the local Expo CLI and creating builds. Omitting this or setting it to false affects the behavior of APIs like `Constants.manifest`. SDK 49 is the last SDK version that supports Classic Updates.
217
- */
218
- useClassicUpdates?: boolean;
219
215
  };
220
216
  /**
221
217
  * Provide overrides by locale for System Dialog prompts like Permissions Boxes
@@ -225,16 +221,6 @@ export interface ExpoConfig {
225
221
  [k: string]: any;
226
222
  };
227
223
  };
228
- /**
229
- * Is app detached
230
- */
231
- isDetached?: boolean;
232
- /**
233
- * Extra fields needed by detached apps
234
- */
235
- detach?: {
236
- [k: string]: any;
237
- };
238
224
  /**
239
225
  * An array of file glob strings which point to assets that will be bundled within your standalone app binary. Read more in the [Offline Support guide](https://docs.expo.dev/guides/offline-support/)
240
226
  */
@@ -266,6 +252,10 @@ export interface ExpoConfig {
266
252
  * Enable tsconfig/jsconfig `compilerOptions.paths` and `compilerOptions.baseUrl` support for import aliases in Metro.
267
253
  */
268
254
  tsconfigPaths?: boolean;
255
+ /**
256
+ * Enable support for statically typed links in Expo Router. This feature requires TypeScript be set up in your Expo Router v2 project.
257
+ */
258
+ typedRoutes?: boolean;
269
259
  /**
270
260
  * Enables Turbo Modules, which are a type of native modules that use a different way of communicating between JS and platform code. When installing a Turbo Module you will need to enable this experimental option (the library still needs to be a part of Expo SDK already, like react-native-reanimated v2). Turbo Modules do not support remote debugging and enabling this option will disable remote debugging.
271
261
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "49.0.0-alpha.1",
3
+ "version": "50.0.0-alpha.1",
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": "b8be1f6c8dc273698908751db0555049866d899b"
45
+ "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
46
46
  }