builder-server
builder-server copied to clipboard
Builder app backend
## 🎉 Description Remove old the old code that fetched the Third Party items that were stored in the old contract and were queried through the graph.
The endpoint will be used in different parts of the UI to check in which state the items of a collection are and if they're able to be published. Update...
Currently both are being used. Isomorphic is only useful when the same code is run both on the server and the browser and that is not the case with this...
Each published third party item will have an associated ItemCuration created for it. Once it's approved, another item curation might be created to signify changes on the item. But what...
When inserting or updating an item, the item is returned, but this item is not bridged, meaning that if the item was published and it's being updated some of the...
Replace local types with @dcl/schemas, like `WearableCategory` and `Rarity`
As of today, when a collection is published, a forum post is created through the UI by hitting the builder-server with the content of the post. To complete this task,...
In the current process of uploading the items content, the size of the whole item is not computed, allowing the upload of an unlimited amount of files. To complete this...
We're currently using a new implementation in the authentication middleware that uses `Date.now`, but there are tests that mock this function creating an issue that might be hard to track....
Today we noticed the server started stalling when calling the /committee and /curations endpoints, we suspect it has to do with the `paginate()` internal while loop + await.