@jacobhumston/roblox-openapi-ts 1.0.50 → 1.0.51
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/dist/types.d.ts +128 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -44444,6 +44444,133 @@ export interface components {
|
|
|
44444
44444
|
doesOwnerPrivacyRestrictJoins?: boolean;
|
|
44445
44445
|
inviteResponseType?: components["schemas"]["PrivateServerInviteResponseType"];
|
|
44446
44446
|
};
|
|
44447
|
+
/** @description This is the beta (non game-engine) version of our hydration model representing asset or bundle in marketplace. */
|
|
44448
|
+
"CatalogApi.Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2": {
|
|
44449
|
+
/** @description The System.Collections.Generic.IEnumerable`1 contained in the bundle, serialized if item is a bundle. */
|
|
44450
|
+
bundledItems?: components["schemas"]["Roblox.Catalog.Api.BundleItemDetailModelV2"][];
|
|
44451
|
+
/** @description The taxonomy ids and names for this item. */
|
|
44452
|
+
taxonomy?: components["schemas"]["Roblox.Catalog.Api.TaxonomyModel"][];
|
|
44453
|
+
/**
|
|
44454
|
+
* Format: date-time
|
|
44455
|
+
* @description The UTC creation date-time of the asset or bundle.
|
|
44456
|
+
*/
|
|
44457
|
+
itemCreatedUtc?: string;
|
|
44458
|
+
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
44459
|
+
/**
|
|
44460
|
+
* Format: int64
|
|
44461
|
+
* @description The Item Id.
|
|
44462
|
+
*/
|
|
44463
|
+
id?: number;
|
|
44464
|
+
/**
|
|
44465
|
+
* Format: int32
|
|
44466
|
+
* @description The Roblox.Catalog.Api.CatalogSearchDetailedResponseItem.ItemType item type. ['Asset' = 1, 'Bundle' = 2]
|
|
44467
|
+
* @enum {integer}
|
|
44468
|
+
*/
|
|
44469
|
+
itemType?: 1 | 2;
|
|
44470
|
+
/**
|
|
44471
|
+
* Format: int32
|
|
44472
|
+
* @description The Roblox.Platform.Assets.AssetType serialized if item is an asset.
|
|
44473
|
+
* @enum {integer}
|
|
44474
|
+
*/
|
|
44475
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
44476
|
+
/**
|
|
44477
|
+
* Format: int32
|
|
44478
|
+
* @description The Roblox.Platform.Bundles.Core.BundleType serialized if item is a bundle.
|
|
44479
|
+
* @enum {integer}
|
|
44480
|
+
*/
|
|
44481
|
+
bundleType?: 1 | 2 | 3 | 4;
|
|
44482
|
+
/** @description Gets or sets the property whether a bundle is recolorable or not. Not serialized for asset. */
|
|
44483
|
+
isRecolorable?: boolean;
|
|
44484
|
+
/** @description The item name. */
|
|
44485
|
+
name?: string;
|
|
44486
|
+
/** @description The item description. */
|
|
44487
|
+
description?: string;
|
|
44488
|
+
/**
|
|
44489
|
+
* Format: int64
|
|
44490
|
+
* @description The product id of corresponding item.
|
|
44491
|
+
*/
|
|
44492
|
+
productId?: number;
|
|
44493
|
+
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
44494
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
44495
|
+
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
44496
|
+
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
44497
|
+
/** @description The verified status of a creator. */
|
|
44498
|
+
creatorHasVerifiedBadge?: boolean;
|
|
44499
|
+
/**
|
|
44500
|
+
* Format: int32
|
|
44501
|
+
* @description The Roblox.Catalog.Api.CatalogSearchDetailedResponseItem.CreatorType of the item's creator.
|
|
44502
|
+
* @enum {integer}
|
|
44503
|
+
*/
|
|
44504
|
+
creatorType?: 0 | 1 | 2;
|
|
44505
|
+
/**
|
|
44506
|
+
* Format: int64
|
|
44507
|
+
* @description The creator id of the item's creator.
|
|
44508
|
+
*/
|
|
44509
|
+
creatorTargetId?: number;
|
|
44510
|
+
/** @description The creator name of the item's creator. */
|
|
44511
|
+
creatorName?: string;
|
|
44512
|
+
/**
|
|
44513
|
+
* Format: int64
|
|
44514
|
+
* @description The item's price.
|
|
44515
|
+
*/
|
|
44516
|
+
price?: number;
|
|
44517
|
+
/**
|
|
44518
|
+
* Format: int64
|
|
44519
|
+
* @description The item's lowest price, only if the item is resellable and there are resellers.
|
|
44520
|
+
*/
|
|
44521
|
+
lowestPrice?: number;
|
|
44522
|
+
/**
|
|
44523
|
+
* Format: int64
|
|
44524
|
+
* @description The item's lowest resale price, only if the item is resellable and there are resellers, including current user.
|
|
44525
|
+
*/
|
|
44526
|
+
lowestResalePrice?: number;
|
|
44527
|
+
/** @description The localized string item status if the item's price should not be displayed. */
|
|
44528
|
+
priceStatus?: string;
|
|
44529
|
+
/**
|
|
44530
|
+
* Format: int64
|
|
44531
|
+
* @description The number of items in stock, only if the item is resellable and is limitedEdition.
|
|
44532
|
+
*/
|
|
44533
|
+
unitsAvailableForConsumption?: number;
|
|
44534
|
+
/**
|
|
44535
|
+
* Format: int64
|
|
44536
|
+
* @description The number of times the item has been favorited.
|
|
44537
|
+
*/
|
|
44538
|
+
favoriteCount?: number;
|
|
44539
|
+
/**
|
|
44540
|
+
* Format: date-time
|
|
44541
|
+
* @description When the item will go off sale, if the item has an off deadline.
|
|
44542
|
+
*/
|
|
44543
|
+
offSaleDeadline?: string;
|
|
44544
|
+
/**
|
|
44545
|
+
* @description The item's collectible item id.
|
|
44546
|
+
* It is an UUID if a item is collectible type. Otherwise, it is null.
|
|
44547
|
+
*/
|
|
44548
|
+
collectibleItemId?: string;
|
|
44549
|
+
/**
|
|
44550
|
+
* Format: int64
|
|
44551
|
+
* @description The collectible or limited-unique item's total quantity of unique instances.
|
|
44552
|
+
*/
|
|
44553
|
+
totalQuantity?: number;
|
|
44554
|
+
/**
|
|
44555
|
+
* Format: int32
|
|
44556
|
+
* @description The sale location type of the item. ['NotApplicable' = 0, 'ShopOnly' = 1, 'MyExperiencesOnly' = 2, 'ShopAndMyExperiences' = 3, 'ExperiencesById' = 4, 'ShopAndAllExperiences' = 5, 'ExperiencesDevApiOnly' = 6, 'ShopAndExperiencesById' = 7]
|
|
44557
|
+
* @enum {integer}
|
|
44558
|
+
*/
|
|
44559
|
+
saleLocationType?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
44560
|
+
/** @description An indicator if the item has resellers or not (null if not resellable). */
|
|
44561
|
+
hasResellers?: boolean;
|
|
44562
|
+
/** @description An indicator if the item is off sale or not. */
|
|
44563
|
+
isOffSale?: boolean;
|
|
44564
|
+
/**
|
|
44565
|
+
* Format: int32
|
|
44566
|
+
* @description Quantity limit for how many instances a user can buy.
|
|
44567
|
+
*/
|
|
44568
|
+
quantityLimitPerUser?: number;
|
|
44569
|
+
/** @description Whether the item supports head shapes. */
|
|
44570
|
+
supportsHeadShapes?: boolean;
|
|
44571
|
+
/** @description The timed options for the item. */
|
|
44572
|
+
timedOptions?: components["schemas"]["Roblox.Catalog.Api.TimedOption"][];
|
|
44573
|
+
};
|
|
44447
44574
|
CategoryResponse: {
|
|
44448
44575
|
/**
|
|
44449
44576
|
* @description The event category type of an event.
|
|
@@ -52533,7 +52660,7 @@ export interface components {
|
|
|
52533
52660
|
elasticsearchDebugInfo?: components["schemas"]["Roblox.Catalog.Api.ElasticsearchDebugInfo"];
|
|
52534
52661
|
previousPageCursor?: string;
|
|
52535
52662
|
nextPageCursor?: string;
|
|
52536
|
-
data?: components["schemas"]["Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
52663
|
+
data?: components["schemas"]["CatalogApi.Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
52537
52664
|
};
|
|
52538
52665
|
/** @description Response model for category. */
|
|
52539
52666
|
"Roblox.Catalog.Api.CategoryModel": {
|