@rbxts/types 1.0.872 → 1.0.873
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 +6 -0
- 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 {
|