diff --git a/packages/core-plugin-api/api-report.md b/packages/core-plugin-api/api-report.md index 1647d1c2cb..8c49deec2b 100644 --- a/packages/core-plugin-api/api-report.md +++ b/packages/core-plugin-api/api-report.md @@ -566,9 +566,7 @@ export type OAuthRequester = ( // @public export type OAuthRequesterOptions = { - provider: Omit & { - id?: string; - }; + provider: AuthProviderInfo; onAuthRequest(scopes: Set): Promise; }; @@ -637,9 +635,7 @@ export type PathParams = { // @public export type PendingOAuthRequest = { - provider: Omit & { - id?: string; - }; + provider: AuthProviderInfo; reject(): void; trigger(): Promise; };