@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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/{services-CovenF1m.d.ts → services-hDpCpw3d.d.ts} +3 -1
- package/dist/{services-D8saJqJw.d.cts → services-xJvXhXQi.d.cts} +3 -1
- package/dist/starknet/index.cjs +2 -1
- package/dist/starknet/index.cjs.map +1 -1
- package/dist/starknet/index.d.cts +1 -1
- package/dist/starknet/index.d.ts +1 -1
- package/dist/starknet/index.js +2 -1
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
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) {
|