@xoxno/sdk-js 0.1.330 → 0.1.332
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/user.d.ts +6 -1
- package/package.json +1 -1
package/dist/types/user.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ export interface UserInventory {
|
|
|
83
83
|
profile: string;
|
|
84
84
|
banner: string;
|
|
85
85
|
value: number;
|
|
86
|
+
chain?: ActivityChain;
|
|
86
87
|
}
|
|
87
88
|
export interface UserOffers {
|
|
88
89
|
hasMoreResults: boolean;
|
|
@@ -237,7 +238,11 @@ export interface Max {
|
|
|
237
238
|
identifier: string;
|
|
238
239
|
}
|
|
239
240
|
export interface UserStats {
|
|
240
|
-
wallet: Wallet
|
|
241
|
+
wallet: Wallet & {
|
|
242
|
+
owned: number;
|
|
243
|
+
listed: number;
|
|
244
|
+
followCount: number;
|
|
245
|
+
};
|
|
241
246
|
totalVolume: number;
|
|
242
247
|
totalTrades: number;
|
|
243
248
|
totalCollections: number;
|