@rbxts/types 1.0.872 → 1.0.874
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/include/roblox.d.ts +7 -1
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -1344,6 +1344,12 @@ interface CatalogSearchParams {
|
|
|
1344
1344
|
IncludeOffSale: boolean;
|
|
1345
1345
|
/** Search for items with the given creator. */
|
|
1346
1346
|
CreatorName: string;
|
|
1347
|
+
/** Search for items created by the given creator type. */
|
|
1348
|
+
CreatorType: Enum.CreatorTypeFilter;
|
|
1349
|
+
/** Search for items created by the given creator ID. */
|
|
1350
|
+
CreatorId: number;
|
|
1351
|
+
/** Specifies the number of items to return. Accepts 10, 28, 30, 60, and 120. Defaults to 30. */
|
|
1352
|
+
Limit: 10 | 28 | 30 | 60 | 120;
|
|
1347
1353
|
}
|
|
1348
1354
|
|
|
1349
1355
|
interface CatalogSearchParamsConstructor {
|
|
@@ -3251,7 +3257,7 @@ interface SubscriptionInfo {
|
|
|
3251
3257
|
/**
|
|
3252
3258
|
* The asset ID of the subscription product icon.
|
|
3253
3259
|
*/
|
|
3254
|
-
|
|
3260
|
+
IconImageAssetId: number;
|
|
3255
3261
|
/**
|
|
3256
3262
|
* The duration of the subscription (for example, `Month`, `Year`, etc.).
|
|
3257
3263
|
*/
|