@medialane/sdk 0.85.6 → 0.85.8

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
@@ -667,6 +667,13 @@ var ApiClient = class {
667
667
  { allow404: true }
668
668
  );
669
669
  }
670
+ changeMyEmail(email, siwsToken) {
671
+ return this.request("/v1/users/me/email", {
672
+ method: "POST",
673
+ headers: this.bearer(siwsToken),
674
+ body: JSON.stringify({ email })
675
+ });
676
+ }
670
677
  getTokenRemixes(contract, tokenId, opts = {}) {
671
678
  const params = new URLSearchParams();
672
679
  if (opts.page !== void 0) params.set("page", String(opts.page));