1- import { StoredOptions , LogoutOptions , InitOptions , AuthorizeOptions , OnboardOptions , ExchangeTokenOptions , RequestLoginLinkOptions , TokenInfo , AuthorizeUrlOptions , LogoutUrlOptions , OnboardUrlOptions , LinkKitOpenServiceUrlOptions , MyAccountOpenServiceUrlOptions , VaultOpenServiceUrlOptions , VaultOpenServiceOptions , LinkKitOpenServiceOptions , MyAccountOpenServiceOptions } from './typings' ;
1+ import { StoredOptions , LogoutOptions , InitOptions , AuthorizeOptions , OnboardOptions , ExchangeTokenOptions , RequestLoginLinkOptions , TokenInfo , AuthorizeUrlOptions , LogoutUrlOptions , OnboardUrlOptions , LinkKitOpenServiceUrlOptions , MyAccountOpenServiceUrlOptions , LinkKitOpenServiceOptions , MyAccountOpenServiceOptions , ConfigsOptions , ConfigsOptionsWithoutIsNewTab , VaultOpenServiceUrlViewServiceList , VaultOpenServiceUrlViewServiceConnection , VaultOpenServiceUrlViewConnectionSetting , VaultOpenServiceUrlViewCustomerSupport , VaultOpenServiceViewServiceList , VaultOpenServiceViewServiceConnection , VaultOpenServiceViewConnectionSetting , VaultOpenServiceViewCustomerSupport } from './typings' ;
22export * from './typings' ;
33export declare class MtLinkSdk {
44 storedOptions : StoredOptions ;
@@ -12,10 +12,18 @@ export declare class MtLinkSdk {
1212 logoutUrl ( options ?: LogoutUrlOptions ) : string ;
1313 openService ( serviceId : 'link-kit' , options ?: LinkKitOpenServiceOptions ) : void ;
1414 openService ( serviceId : 'myaccount' , options ?: MyAccountOpenServiceOptions ) : void ;
15- openService ( serviceId : 'vault' , options ?: VaultOpenServiceOptions ) : void ;
15+ openService ( serviceId : 'vault' , options ?: ConfigsOptions ) : void ;
16+ openService ( serviceId : 'vault' , options ?: VaultOpenServiceViewServiceList ) : void ;
17+ openService ( serviceId : 'vault' , options ?: VaultOpenServiceViewServiceConnection ) : void ;
18+ openService ( serviceId : 'vault' , options ?: VaultOpenServiceViewConnectionSetting ) : void ;
19+ openService ( serviceId : 'vault' , options ?: VaultOpenServiceViewCustomerSupport ) : void ;
1620 openServiceUrl ( serviceId : 'link-kit' , options ?: LinkKitOpenServiceUrlOptions ) : string ;
1721 openServiceUrl ( serviceId : 'myaccount' , options ?: MyAccountOpenServiceUrlOptions ) : string ;
18- openServiceUrl ( serviceId : 'vault' , options ?: VaultOpenServiceUrlOptions ) : string ;
22+ openServiceUrl ( serviceId : 'vault' , options ?: ConfigsOptionsWithoutIsNewTab ) : string ;
23+ openServiceUrl ( serviceId : 'vault' , options ?: VaultOpenServiceUrlViewServiceList ) : string ;
24+ openServiceUrl ( serviceId : 'vault' , options ?: VaultOpenServiceUrlViewServiceConnection ) : string ;
25+ openServiceUrl ( serviceId : 'vault' , options ?: VaultOpenServiceUrlViewConnectionSetting ) : string ;
26+ openServiceUrl ( serviceId : 'vault' , options ?: VaultOpenServiceUrlViewCustomerSupport ) : string ;
1927 requestLoginLink ( options ?: RequestLoginLinkOptions ) : Promise < void > ;
2028 exchangeToken ( options ?: ExchangeTokenOptions ) : Promise < string > ;
2129 tokenInfo ( token : string ) : Promise < TokenInfo > ;
0 commit comments