Skip to content

Commit

Permalink
Add BOUND and RESERVED Pollinator statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
0KepOnline committed Aug 10, 2024
1 parent 60ee564 commit 4e11443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SporeDwrApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type Locale = "en_US" | string;

export type Products = "SPORE_CORE" | "CUTE_AND_CREEPY" | "INSECT_LIMBS" | "EXPANSION_PACK1" | "DR_PEPPER_PARTS";

export type AssetStatus = "CLASSIFIED" | "INVALID" | "PURGED" | "DELETED" | "MAXIS" | "BANNED";
export type AssetStatus = "CLASSIFIED" | "INVALID" | "PURGED" | "DELETED" | "MAXIS" | "BANNED" | "BOUND" | "RESERVED";

/** Represents an item in the Spore Pollinator database. Includes users, assets, Sporecasts. */
export interface SporeItem {
Expand Down Expand Up @@ -859,4 +859,4 @@ console.log("Found " + creationsToDownload.length + " creations to download");*/
/*const sporecasts = await sporeServer.listSporecasts({ type: "THEME", fetchAssetIdCount: 1, index: 0, count: 1000, sort: "RATING" });
sporecasts.forEach(s => {
console.log(s.id + " | " + s.title + " | " + s.author.name + " | " + s.count + " creations");
});*/
});*/

0 comments on commit 4e11443

Please sign in to comment.