You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR adjusts the API to account for `InventoryPages` containing
different data types depending on where it is created.
Closes#1168
- converts `InventoryPages` to a generic type of `InventoryPages<T =
unknown>`
- changes the return type of `KeyframeSequenceProvider.GetAnimations()`
to `InventoryPages<number>`
- changes the return type of `AvatarEditorService.GetInventory()` to:
```ts
InventoryPages<{
AssetId: number;
AssetType: string;
Created: string;
Name: string;
}>
---------
Co-authored-by: Osyris <[email protected]>
The InventoryPages.GetCurrentPage incorrectly returns
number[]
instead of the appropriate inventory asset type.The correct inventory asset type should be
The text was updated successfully, but these errors were encountered: