@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 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
- return this.get("/v1/metadata/signed-url");
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);