@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.
@@ -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.
@@ -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),