/* eslint-disable */
// @ts-nocheck
import { lazy } from "react";
import type { Path } from "react-router-dom";
import { generateEncodedPath } from "../../utils/generateEncodedPath";
import type { AppRouteObject } from "../../routes";
export type MapperParams = {
realm: string;
id: string;
mapperId: string;
viewMode: "edit" | "new";
};
const MappingDetails = lazy(() => import("../details/MappingDetails"));
export const MapperRoute: AppRouteObject = {
path: "/:realm/client-scopes/:id/mappers/:mapperId/:viewMode",
element: ,
handle: {
access: "view-clients",
breadcrumb: (t) => t("mappingDetails"),
},
};
export const toMapper = (params: MapperParams): Partial => ({
pathname: generateEncodedPath(MapperRoute.path, params),
});