Adjustment based on feedback

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2024-01-10 16:22:33 -06:00
parent 25b2d72238
commit e508999a63
4 changed files with 13 additions and 8 deletions
@@ -10,10 +10,12 @@ import { PassportOAuthAuthenticatorHelper } from '@backstage/plugin-auth-node';
import { PassportProfile } from '@backstage/plugin-auth-node';
import { SignInResolverFactory } from '@backstage/plugin-auth-node';
// @public @deprecated (undocumented)
export const authModuleMicrosoftProvider: () => BackendFeature;
// @public (undocumented)
const authModuleMicrosoftProvider: () => BackendFeature;
export { authModuleMicrosoftProvider };
export default authModuleMicrosoftProvider;
const authModuleMicrosoftProvider_2: () => BackendFeature;
export default authModuleMicrosoftProvider_2;
// @public (undocumented)
export const microsoftAuthenticator: OAuthAuthenticator<
@@ -20,4 +20,5 @@ import { authModuleMicrosoftProvider as deprecatedAuthModuleMicrosoftProvider }
* @public
* @deprecated Use default import instead
*/
export { deprecatedAuthModuleMicrosoftProvider as authModuleMicrosoftProvider };
export const authModuleMicrosoftProvider =
deprecatedAuthModuleMicrosoftProvider;
@@ -10,10 +10,12 @@ import { OAuthAuthenticator } from '@backstage/plugin-auth-node';
import { Strategy } from 'openid-client';
import { TokenSet } from 'openid-client';
// @public @deprecated (undocumented)
export const authModulePinnipedProvider: () => BackendFeature;
// @public (undocumented)
const authModulePinnipedProvider: () => BackendFeature;
export { authModulePinnipedProvider };
export default authModulePinnipedProvider;
const authModulePinnipedProvider_2: () => BackendFeature;
export default authModulePinnipedProvider_2;
// @public (undocumented)
export const pinnipedAuthenticator: OAuthAuthenticator<
@@ -20,4 +20,4 @@ import { authModulePinnipedProvider as deprecatedAuthModulePinnipedProvider } fr
* @public
* @deprecated Use default import instead
*/
export { deprecatedAuthModulePinnipedProvider as authModulePinnipedProvider };
export const authModulePinnipedProvider = deprecatedAuthModulePinnipedProvider;