Skip to content

Commit

Permalink
move ProConnectLogoutQueryParams in proConnect.routes.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
celineung committed Sep 17, 2024
1 parent 893adc0 commit 2ac352b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ import {
InclusionConnectAccessTokenResponse,
InclusionConnectLogoutQueryParams,
InclusionConnectRoutes,
ProConnectLogoutQueryParams,
} from "./inclusionConnect.routes";
import { ProConnectRoutes } from "./proConnect.routes";
import {
ProConnectLogoutQueryParams,
ProConnectRoutes,
} from "./proConnect.routes";

const logger = createLogger(__filename);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ export type InclusionConnectLogoutQueryParams = {
id_token: string;
};

export type ProConnectLogoutQueryParams = {
post_logout_redirect_uri: AbsoluteUrl;
id_token_hint: string;
state: string;
};

export type InclusionConnectRoutes = ReturnType<
typeof makeInclusionConnectRoutes
>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ const withContentTypeUrlEncodedSchema = z.object({
});

export type ProConnectLogoutQueryParams = {
client_id: string;
post_logout_redirect_uri: AbsoluteUrl;
id_token: string;
id_token_hint: string;
state: string;
};

export type ProConnectRoutes = ReturnType<typeof makeProConnectRoutes>;
Expand Down

0 comments on commit 2ac352b

Please sign in to comment.