@medialane/sdk 0.85.4 → 0.85.5

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
@@ -381,12 +381,13 @@ var ApiClient = class {
381
381
  );
382
382
  }
383
383
  // ─── Collections ───────────────────────────────────────────────────────────
384
- getCollections(page = 1, limit = 20, isKnown, sort, service, chain) {
384
+ getCollections(page = 1, limit = 20, isKnown, sort, service, chain, standard) {
385
385
  const params = new URLSearchParams({ page: String(page), limit: String(limit) });
386
386
  if (isKnown !== void 0) params.set("isKnown", String(isKnown));
387
387
  if (sort) params.set("sort", sort);
388
388
  if (service) params.set("service", service);
389
389
  if (chain) params.set("chain", chain);
390
+ if (standard) params.set("standard", standard);
390
391
  return this.get(`/v1/collections?${params}`);
391
392
  }
392
393
  getCollectionsByOwner(owner, page = 1, limit = 50) {