@expo/config-types 52.0.0-preview.2 → 52.0.0-preview.4

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.
@@ -465,6 +465,10 @@ export interface IOS {
465
465
  * A boolean indicating if the app uses Apple Sign-In. See `AppleAuthentication` docs for details.
466
466
  */
467
467
  usesAppleSignIn?: boolean;
468
+ /**
469
+ * A boolean indicating if the app uses Push Notifications Broadcast option for Push Notifications capability. If true, EAS CLI will use the value during capability syncing. If EAS CLI is not used, this configuration will not have any effect unless another tool is used to operate on it, so enable the capability manually on the Apple Developer Portal in that case.
470
+ */
471
+ usesBroadcastPushNotifications?: boolean;
468
472
  /**
469
473
  * A Boolean value that indicates whether the app may access the notes stored in contacts. You must [receive permission from Apple](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_contacts_notes) before you can submit your app for review with this capability.
470
474
  */
@@ -533,15 +537,15 @@ export interface IOS {
533
537
  */
534
538
  export interface IOSIcons {
535
539
  /**
536
- * The icon that will appear when neither dark nor tinted icons are used, or if they are not provided.
540
+ * The light icon. It will appear when neither dark nor tinted icons are used, or if they are not provided.
537
541
  */
538
- any?: string;
542
+ light?: string;
539
543
  /**
540
- * The icon that will appear for the app when the user's system appearance is dark. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
544
+ * The dark icon. It will appear for the app when the user's system appearance is dark. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
541
545
  */
542
546
  dark?: string;
543
547
  /**
544
- * The icon that will appear for the app when the user's system appearance is tinted. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
548
+ * The tinted icon. It will appear for the app when the user's system appearance is tinted. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
545
549
  */
546
550
  tinted?: string;
547
551
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "52.0.0-preview.2",
3
+ "version": "52.0.0-preview.4",
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": "d5b7ec4949eb461634b2f02a1a0ff1df2a0e2a21"
47
+ "gitHead": "f63a767fe408dec95f810b576d2a8f555716d242"
48
48
  }