@rbxts/types 1.0.771 → 1.0.772

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.
@@ -536,10 +536,14 @@ interface SendNotificationConfig {
536
536
  }
537
537
 
538
538
  interface PolicyInfo {
539
+ /** When true, the player might see immersive ads within an experience. */
540
+ AreAdsAllowed: boolean;
539
541
  /** When true, the player cannot interact with paid (via in-experience currency or Robux) random item generators. */
540
542
  ArePaidRandomItemsRestricted: boolean;
541
543
  /** A list of external link references (for example, social media links, handles, or iconography) a player is permitted to see. Possible values include: “Discord”, “Facebook”, “Twitch”, and “YouTube”. */
542
544
  AllowedExternalLinkReferences: Array<string>;
545
+ /** When true, the player is eligible to purchase subscriptions within an experience. */
546
+ IsEligibleToPurchaseSubscription: boolean;
543
547
  /** When true, the player can trade virtual items that they purchased with in-experience currency or Robux. */
544
548
  IsPaidItemTradingAllowed: boolean;
545
549
  /** When true, an experience should enforce compliance changes. See [here](https://devforum.roblox.com/t/about-our-upcoming-global-compliance-system/461447) for details. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.771",
3
+ "version": "1.0.772",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },