@xoxno/sdk-js 0.1.26-alpha → 0.1.28-alpha

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.
@@ -591,7 +591,7 @@ export type GetCollectionStatsArgs = {
591
591
  filters?: {
592
592
  collection?: string[];
593
593
  isVerified?: boolean;
594
- range: [
594
+ range?: [
595
595
  {
596
596
  min: number;
597
597
  max: number;
@@ -599,8 +599,8 @@ export type GetCollectionStatsArgs = {
599
599
  }
600
600
  ];
601
601
  };
602
- orderBy: CollectionStatsOrderBy[];
603
- select: CollectionStatsSelectFields[];
602
+ orderBy?: CollectionStatsOrderBy[];
603
+ select?: CollectionStatsSelectFields[];
604
604
  top: number;
605
605
  skip: number;
606
606
  };
@@ -91,7 +91,7 @@ export interface NftData {
91
91
  saleInfo?: SaleInfo;
92
92
  gameData?: GameData[];
93
93
  owner?: Owner;
94
- originalOwner?: Owner;
94
+ currentOwner?: Owner;
95
95
  balance?: number;
96
96
  collectionInfo?: CollectionInfo;
97
97
  isStaked?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/sdk-js",
3
- "version": "0.1.26-alpha",
3
+ "version": "0.1.28-alpha",
4
4
  "description": "The SDK to interact with the XOXNO Protocol!",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -49,25 +49,25 @@
49
49
  "@semantic-release/changelog": "^6.0.3",
50
50
  "@semantic-release/git": "^10.0.1",
51
51
  "@types/jest": "^29.5.11",
52
- "@types/node": "^20.10.7",
53
- "@typescript-eslint/eslint-plugin": "^6.18.0",
54
- "@typescript-eslint/parser": "^6.18.0",
52
+ "@types/node": "^20.11.4",
53
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
54
+ "@typescript-eslint/parser": "^6.19.0",
55
55
  "commitizen": "^4.3.0",
56
56
  "cz-conventional-changelog": "^3.3.0",
57
57
  "eslint": "^8.56.0",
58
58
  "eslint-config-prettier": "^9.1.0",
59
- "eslint-plugin-prettier": "^5.1.2",
59
+ "eslint-plugin-prettier": "^5.1.3",
60
60
  "husky": "^8.0.3",
61
61
  "jest": "^29.7.0",
62
- "prettier": "^3.1.1",
63
- "semantic-release": "^22.0.12",
62
+ "prettier": "^3.2.2",
63
+ "semantic-release": "^23.0.0",
64
64
  "ts-jest": "^29.1.1",
65
65
  "ts-loader": "^9.5.1",
66
- "typedoc": "^0.25.6",
66
+ "typedoc": "^0.25.7",
67
67
  "typescript": "^5.3.3"
68
68
  },
69
69
  "dependencies": {
70
- "@multiversx/sdk-core": "^12.17.0",
71
- "@multiversx/sdk-network-providers": "^2.2.0"
70
+ "@multiversx/sdk-core": "^12.18.0",
71
+ "@multiversx/sdk-network-providers": "^2.2.1"
72
72
  }
73
73
  }