@medialane/sdk 0.85.2 → 0.85.3

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.
@@ -1377,6 +1377,7 @@ declare class ApiClient {
1377
1377
  chain?: ApiChain;
1378
1378
  emailVerificationToken?: string;
1379
1379
  email?: string;
1380
+ accountToken?: string;
1380
1381
  }): Promise<ApiUserWallet>;
1381
1382
  /** Whether an email already has an account attached — used by io's onboarding to branch into an "already exists" message instead of creating a duplicate account. */
1382
1383
  checkEmailExists(email: string): Promise<boolean>;
@@ -1377,6 +1377,7 @@ declare class ApiClient {
1377
1377
  chain?: ApiChain;
1378
1378
  emailVerificationToken?: string;
1379
1379
  email?: string;
1380
+ accountToken?: string;
1380
1381
  }): Promise<ApiUserWallet>;
1381
1382
  /** Whether an email already has an account attached — used by io's onboarding to branch into an "already exists" message instead of creating a duplicate account. */
1382
1383
  checkEmailExists(email: string): Promise<boolean>;
@@ -707,6 +707,7 @@ var ApiClient = class {
707
707
  if (options.chain) body.chain = options.chain;
708
708
  if (options.emailVerificationToken) body.emailVerificationToken = options.emailVerificationToken;
709
709
  if (options.email) body.email = options.email;
710
+ if (options.accountToken) body.accountToken = options.accountToken;
710
711
  return this.request("/v1/users/me", {
711
712
  method: "POST",
712
713
  body: JSON.stringify(body),