@medialane/sdk 0.49.0 → 0.51.0

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/index.cjs CHANGED
@@ -9687,9 +9687,9 @@ var ApiClient = class {
9687
9687
  getCollection(contract) {
9688
9688
  return this.get(`/v1/collections/${this.addr(contract)}`);
9689
9689
  }
9690
- getCollectionTokens(contract, page = 1, limit = 20) {
9690
+ getCollectionTokens(contract, page = 1, limit = 20, sort = "recent") {
9691
9691
  return this.get(
9692
- `/v1/collections/${this.addr(contract)}/tokens?page=${page}&limit=${limit}`
9692
+ `/v1/collections/${this.addr(contract)}/tokens?page=${page}&limit=${limit}&sort=${sort}`
9693
9693
  );
9694
9694
  }
9695
9695
  // ─── Activities ────────────────────────────────────────────────────────────