@medialane/sdk 0.85.0 → 0.85.1
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 +1 -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 +1 -0
- package/dist/index.js.map +1 -1
- package/dist/{services-L8GY_ETW.d.ts → services-B-RntQSm.d.ts} +1 -0
- package/dist/{services-IzFS_1ge.d.cts → services-ZOliCaO0.d.cts} +1 -0
- package/dist/starknet/index.cjs +1 -0
- 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 +1 -0
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1373,6 +1373,7 @@ declare class ApiClient {
|
|
|
1373
1373
|
walletType?: string;
|
|
1374
1374
|
appSource?: ApiAppSource;
|
|
1375
1375
|
chain?: ApiChain;
|
|
1376
|
+
emailVerificationToken?: string;
|
|
1376
1377
|
}): Promise<ApiUserWallet>;
|
|
1377
1378
|
/**
|
|
1378
1379
|
* Get the authenticated user's stored wallet address from the backend DB.
|
|
@@ -1373,6 +1373,7 @@ declare class ApiClient {
|
|
|
1373
1373
|
walletType?: string;
|
|
1374
1374
|
appSource?: ApiAppSource;
|
|
1375
1375
|
chain?: ApiChain;
|
|
1376
|
+
emailVerificationToken?: string;
|
|
1376
1377
|
}): Promise<ApiUserWallet>;
|
|
1377
1378
|
/**
|
|
1378
1379
|
* Get the authenticated user's stored wallet address from the backend DB.
|
package/dist/starknet/index.cjs
CHANGED
|
@@ -705,6 +705,7 @@ var ApiClient = class {
|
|
|
705
705
|
appSource: options.appSource ?? "MEDIALANE_SDK"
|
|
706
706
|
};
|
|
707
707
|
if (options.chain) body.chain = options.chain;
|
|
708
|
+
if (options.emailVerificationToken) body.emailVerificationToken = options.emailVerificationToken;
|
|
708
709
|
return this.request("/v1/users/me", {
|
|
709
710
|
method: "POST",
|
|
710
711
|
body: JSON.stringify(body),
|