@rbxts/types 1.0.829 → 1.0.830

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.
@@ -23004,7 +23004,7 @@ interface MarketplaceService extends Instance {
23004
23004
  *
23005
23005
  * @param options Not available at this time.
23006
23006
  */
23007
- PromptBulkPurchase(this: MarketplaceService, player: Player, lineItems: Array<unknown>, options: object): void;
23007
+ PromptBulkPurchase(this: MarketplaceService, player: Player, lineItems: Array<PromptBulkPurchaseItem>, options: object): void;
23008
23008
  /**
23009
23009
  * Prompts a user to purchase a bundle with the given `bundleId`.
23010
23010
  *
@@ -3320,6 +3320,11 @@ interface ExpirationDetails {
3320
3320
  ExpirationReason: Enum.SubscriptionExpirationReason;
3321
3321
  }
3322
3322
 
3323
+ interface PromptBulkPurchaseItem {
3324
+ Id: string;
3325
+ Type: Enum.MarketplaceProductType;
3326
+ }
3327
+
3323
3328
  interface PromptBulkPurchaseFinishedResults {
3324
3329
  RobuxSpent: number;
3325
3330
  Items: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.829",
3
+ "version": "1.0.830",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },