opensea-js 7.1.6 → 7.1.7

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.
@@ -200,7 +200,7 @@ export type NFT = {
200
200
  owners: {
201
201
  address: string;
202
202
  quantity: number;
203
- };
203
+ }[];
204
204
  /** Rarity of the NFT */
205
205
  rarity: null | {
206
206
  strategy_id: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opensea-js",
3
- "version": "7.1.6",
3
+ "version": "7.1.7",
4
4
  "description": "TypeScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data",
5
5
  "license": "MIT",
6
6
  "author": "OpenSea Developers",
package/src/api/types.ts CHANGED
@@ -227,7 +227,7 @@ export type NFT = {
227
227
  owners: {
228
228
  address: string;
229
229
  quantity: number;
230
- };
230
+ }[];
231
231
  /** Rarity of the NFT */
232
232
  rarity: null | {
233
233
  strategy_id: string | null;