@expo/config-types 50.0.0 → 50.0.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.
- package/build/ExpoConfig.d.ts +17 -0
- package/package.json +2 -2
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -400,6 +400,23 @@ export interface IOS {
|
|
|
400
400
|
entitlements?: {
|
|
401
401
|
[k: string]: any;
|
|
402
402
|
};
|
|
403
|
+
/**
|
|
404
|
+
* Configuration to add to your app's native *.xcprivacy file. [Learn more](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files).
|
|
405
|
+
*/
|
|
406
|
+
privacyManifests?: {
|
|
407
|
+
NSPrivacyAccessedAPITypes?: {
|
|
408
|
+
NSPrivacyAccessedAPIType: string;
|
|
409
|
+
NSPrivacyAccessedAPITypeReasons: string[];
|
|
410
|
+
}[];
|
|
411
|
+
NSPrivacyTrackingDomains?: string[];
|
|
412
|
+
NSPrivacyTracking?: boolean;
|
|
413
|
+
NSPrivacyCollectedDataTypes?: {
|
|
414
|
+
NSPrivacyCollectedDataType: string;
|
|
415
|
+
NSPrivacyCollectedDataTypeLinked: boolean;
|
|
416
|
+
NSPrivacyCollectedDataTypeTracking: boolean;
|
|
417
|
+
NSPrivacyCollectedDataTypePurposes: string[];
|
|
418
|
+
}[];
|
|
419
|
+
};
|
|
403
420
|
/**
|
|
404
421
|
* An array that contains Associated Domains for the standalone app. [Learn more](https://developer.apple.com/documentation/safariservices/supporting_associated_domains).
|
|
405
422
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "50.0.
|
|
3
|
+
"version": "50.0.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",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "88a8226609b870c0635c39da43ac8306c4dc7031"
|
|
48
48
|
}
|