(ctx context.Context, req pluginapi.AuthRefreshRequest)
| 411 | } |
| 412 | |
| 413 | func (a *rpcPluginAdapter) RefreshAuth(ctx context.Context, req pluginapi.AuthRefreshRequest) (pluginapi.AuthRefreshResponse, error) { |
| 414 | callbackID, closeCallback := a.openHostCallbackContext(ctx) |
| 415 | defer closeCallback() |
| 416 | return callPlugin[pluginapi.AuthRefreshResponse](ctx, a.client, pluginabi.MethodAuthRefresh, rpcAuthRefreshRequest{ |
| 417 | AuthRefreshRequest: req, |
| 418 | HostCallbackID: callbackID, |
| 419 | }) |
| 420 | } |
| 421 | |
| 422 | func (a *rpcPluginAdapter) Authenticate(ctx context.Context, req pluginapi.FrontendAuthRequest) (pluginapi.FrontendAuthResponse, error) { |
| 423 | return callPlugin[pluginapi.FrontendAuthResponse](ctx, a.client, pluginabi.MethodFrontendAuthAuthenticate, req) |
nothing calls this directly
no test coverage detected