@expo/config-types 52.0.1 → 52.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.
- package/build/ExpoConfig.d.ts +8 -0
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -525,6 +525,10 @@ export interface IOS {
|
|
|
525
525
|
runtimeVersion?: string | {
|
|
526
526
|
policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprint';
|
|
527
527
|
};
|
|
528
|
+
/**
|
|
529
|
+
* Your iOS app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `ios.buildNumber` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `CFBundleShortVersionString`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
|
|
530
|
+
*/
|
|
531
|
+
version?: string;
|
|
528
532
|
}
|
|
529
533
|
/**
|
|
530
534
|
* Configuration that is specific to the iOS platform icons.
|
|
@@ -773,6 +777,10 @@ export interface Android {
|
|
|
773
777
|
runtimeVersion?: string | {
|
|
774
778
|
policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprint';
|
|
775
779
|
};
|
|
780
|
+
/**
|
|
781
|
+
* Your android app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
|
|
782
|
+
*/
|
|
783
|
+
version?: string;
|
|
776
784
|
}
|
|
777
785
|
export interface AndroidIntentFiltersData {
|
|
778
786
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.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,12 +37,12 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^4.0.
|
|
40
|
+
"expo-module-scripts": "^4.0.3",
|
|
41
41
|
"json-schema-to-typescript": "^14.0.5",
|
|
42
42
|
"ts-node": "^10.9.1"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "986a4689b91f3efc527f7178a320b987c0005842"
|
|
48
48
|
}
|