EcosystemWalletCreationOptions
type EcosystemWalletCreationOptions = {  auth?: {    defaultSmsCountryCode?: SupportedSmsCountry;    mode?: "popup" | "redirect" | "window";    redirectUrl?: string;  };  partnerId?: string;};
type auth = {  defaultSmsCountryCode?: SupportedSmsCountry;  mode?: "popup" | "redirect" | "window";  redirectUrl?: string;};
The partnerId of the ecosystem wallet to connect to
type partnerId = string;