@medialane/sdk 0.85.12 → 0.85.13
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 +3 -2
- 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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/{services-B_7IX3dM.d.ts → services-BMVi2U8T.d.ts} +1 -1
- package/dist/{services-BN4c7iT1.d.cts → services-yppVbYf6.d.cts} +1 -1
- package/dist/starknet/index.cjs +3 -2
- 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 +3 -2
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -495,8 +495,9 @@ var ApiClient = class {
|
|
|
495
495
|
if (query.limit !== void 0) params.set("limit", String(query.limit));
|
|
496
496
|
return this.get(`/v1/orders/counter-offers?${params}`);
|
|
497
497
|
}
|
|
498
|
-
getMetadataSignedUrl() {
|
|
499
|
-
|
|
498
|
+
getMetadataSignedUrl(kind) {
|
|
499
|
+
const params = kind ? `?kind=${kind}` : "";
|
|
500
|
+
return this.get(`/v1/metadata/signed-url${params}`);
|
|
500
501
|
}
|
|
501
502
|
uploadMetadata(metadata) {
|
|
502
503
|
return this.post("/v1/metadata/upload", metadata);
|