2024-05-06 15:06:30 +02:00
|
|
|
export interface ISellRequest {
|
|
|
|
Items: {
|
|
|
|
Suits?: ISellItem[];
|
|
|
|
LongGuns?: ISellItem[];
|
|
|
|
Pistols?: ISellItem[];
|
|
|
|
Melee?: ISellItem[];
|
2024-12-25 01:08:18 +01:00
|
|
|
Consumables?: ISellItem[];
|
2024-05-06 15:06:30 +02:00
|
|
|
Recipes?: ISellItem[];
|
|
|
|
Upgrades?: ISellItem[];
|
2025-01-02 08:55:04 +01:00
|
|
|
MiscItems?: ISellItem[];
|
2024-05-06 15:06:30 +02:00
|
|
|
};
|
|
|
|
SellPrice: number;
|
|
|
|
SellCurrency:
|
|
|
|
| "SC_RegularCredits"
|
|
|
|
| "SC_PrimeBucks"
|
|
|
|
| "SC_FusionPoints"
|
2024-12-23 23:32:33 +01:00
|
|
|
| "SC_DistillPoints"
|
2024-05-06 15:06:30 +02:00
|
|
|
| "SC_CrewShipFusionPoints"
|
|
|
|
| "SC_Resources";
|
|
|
|
buildLabel: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ISellItem {
|
|
|
|
String: string; // oid or uniqueName
|
|
|
|
Count: number;
|
|
|
|
}
|