just a few more circular dependencies

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2025-06-16 10:43:28 +02:00
parent 2c95bc5190
commit 0169b23ed3
9 changed files with 19 additions and 14 deletions
+2 -4
View File
@@ -3,8 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackstageIdentityResponse as BackstageIdentityResponse_2 } from '@backstage/plugin-auth-node';
import { BackstageSignInResult as BackstageSignInResult_2 } from '@backstage/plugin-auth-node';
import { Config } from '@backstage/config';
import { DiscoveryService } from '@backstage/backend-plugin-api';
import { Entity } from '@backstage/catalog-model';
@@ -575,8 +573,8 @@ export type PassportProfile = Profile & {
// @public
export function prepareBackstageIdentityResponse(
result: BackstageSignInResult_2,
): BackstageIdentityResponse_2;
result: BackstageSignInResult,
): BackstageIdentityResponse;
// @public
export type ProfileInfo = {
@@ -15,10 +15,7 @@
*/
import { InputError } from '@backstage/errors';
import {
BackstageIdentityResponse,
BackstageSignInResult,
} from '@backstage/plugin-auth-node';
import { BackstageIdentityResponse, BackstageSignInResult } from '../types';
function parseJwtPayload(token: string) {
const [_header, payload, _signature] = token.split('.');