File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/lib/seam/connect-webviews Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,22 @@ export interface UseCreateConnectWebviewParams {
1212 willNavigateToWebview ?: boolean
1313}
1414
15+ export type UseCreateConnectWebviewData = ConnectWebview
1516export type UseCreateConnectWebviewMutationParams = ConnectWebviewCreateRequest
1617
1718export function useCreateConnectWebview ( {
1819 willNavigateToWebview = false ,
1920} : UseCreateConnectWebviewParams = { } ) : UseMutationResult <
20- ConnectWebview ,
21+ UseCreateConnectWebviewData ,
2122 SeamError ,
22- ConnectWebviewCreateRequest
23+ UseCreateConnectWebviewMutationParams
2324> {
2425 const { client } = useSeamClient ( )
2526
2627 return useMutation <
2728 ConnectWebviewCreateResponse [ 'connect_webview' ] ,
2829 SeamError ,
29- UseCreateConnectWebviewMutationParams
30+ ConnectWebviewCreateRequest
3031 > ( {
3132 mutationFn : async (
3233 mutationParams : UseCreateConnectWebviewMutationParams
You can’t perform that action at this time.
0 commit comments