fix visibility tags
Signed-off-by: Aramis <sennyeyaramis@gmail.com> Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
## API Report File for "@backstage/plugin-auth-backend-module-guest-provider"
|
||||
|
||||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||||
|
||||
```ts
|
||||
import type { AuthProviderFactory } from '@backstage/plugin-auth-node';
|
||||
import { BackendFeature } from '@backstage/backend-plugin-api';
|
||||
import type { ProfileTransform } from '@backstage/plugin-auth-node';
|
||||
import type { SignInResolver } from '@backstage/plugin-auth-node';
|
||||
import { SignInResolverFactory } from '@backstage/plugin-auth-node';
|
||||
|
||||
// @public (undocumented)
|
||||
const authModuleGuestProvider: () => BackendFeature;
|
||||
export default authModuleGuestProvider;
|
||||
|
||||
// @public (undocumented)
|
||||
export function createGuestAuthProviderFactory(options?: {
|
||||
profileTransform?: ProfileTransform<{}>;
|
||||
signInResolver?: SignInResolver<{}>;
|
||||
signInResolverFactories?: Record<string, SignInResolverFactory<{}, unknown>>;
|
||||
}): AuthProviderFactory;
|
||||
```
|
||||
@@ -26,7 +26,6 @@ import {
|
||||
sendWebMessageResponse,
|
||||
} from '@backstage/plugin-auth-node';
|
||||
|
||||
/** @public */
|
||||
export interface GuestAuthRouteHandlersOptions {
|
||||
config: Config;
|
||||
baseUrl: string;
|
||||
@@ -36,7 +35,6 @@ export interface GuestAuthRouteHandlersOptions {
|
||||
profileTransform: ProfileTransform<{}>;
|
||||
}
|
||||
|
||||
/** @public */
|
||||
export function createGuestAuthRouteHandlers(
|
||||
options: GuestAuthRouteHandlersOptions,
|
||||
): AuthProviderRouteHandlers {
|
||||
|
||||
@@ -20,6 +20,7 @@ import {
|
||||
import { authProvidersExtensionPoint } from '@backstage/plugin-auth-node';
|
||||
import { createGuestAuthProviderFactory } from './createGuestAuthFactory';
|
||||
|
||||
/** @public */
|
||||
export const authModuleGuestProvider = createBackendModule({
|
||||
pluginId: 'auth',
|
||||
moduleId: 'guest-provider',
|
||||
|
||||
Reference in New Issue
Block a user