@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 +7 -0
- 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 +7 -0
- package/dist/index.js.map +1 -1
- package/dist/{services-CQKFABiG.d.cts → services-BN4c7iT1.d.cts} +4 -0
- package/dist/{services-okgZ2AMD.d.ts → services-B_7IX3dM.d.ts} +4 -0
- package/dist/starknet/index.cjs +94 -0
- package/dist/starknet/index.cjs.map +1 -1
- package/dist/starknet/index.d.cts +26 -2
- package/dist/starknet/index.d.ts +26 -2
- package/dist/starknet/index.js +86 -1
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
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));
|