mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 12:27:46 +00:00
71 lines
1.9 KiB
JavaScript
71 lines
1.9 KiB
JavaScript
module.exports = [
|
|
[
|
|
"@docusaurus/plugin-content-docs",
|
|
{
|
|
id: "idn",
|
|
path: "products/idn",
|
|
routeBasePath: "idn",
|
|
editUrl: "https://github.com/sailpoint-oss/developer-community-site/edit/main/",
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
sidebarPath: require.resolve("./products/idn/sidebar.js"),
|
|
docItemComponent: "@theme/ApiItem"
|
|
},
|
|
],
|
|
[
|
|
"@docusaurus/plugin-content-docs",
|
|
{
|
|
id: "iiq",
|
|
path: "products/iiq",
|
|
routeBasePath: "iiq",
|
|
editUrl: "https://github.com/sailpoint-oss/developer-community-site/edit/main/",
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
sidebarPath: require.resolve("./products/iiq/sidebar.js"),
|
|
docItemComponent: "@theme/ApiItem"
|
|
},
|
|
],
|
|
|
|
[
|
|
"docusaurus-plugin-openapi-docs",
|
|
{
|
|
id: "idn",
|
|
docsPluginId: "idn",
|
|
config: {
|
|
idn_v3: {
|
|
specPath: "static/idn-api/sailpoint-api.v3.yaml",
|
|
outputDir: "products/idn/api/v3",
|
|
sidebarOptions: {
|
|
groupPathsBy: "tag",
|
|
categoryLinkSource: "tag"
|
|
}
|
|
},
|
|
idn_beta: {
|
|
specPath: "static/idn-api/sailpoint-api.beta.yaml",
|
|
outputDir: "products/idn/api/beta",
|
|
sidebarOptions: {
|
|
groupPathsBy: "tag",
|
|
categoryLinkSource: "tag"
|
|
}
|
|
},
|
|
}
|
|
},
|
|
],
|
|
[
|
|
"docusaurus-plugin-openapi-docs",
|
|
{
|
|
id: "iiq",
|
|
docsPluginId: "iiq",
|
|
config: {
|
|
iiq: {
|
|
specPath: "static/iiq-api/swagger.json",
|
|
outputDir: "products/iiq/api",
|
|
sidebarOptions: {
|
|
groupPathsBy: "tag",
|
|
categoryLinkSource: "tag"
|
|
}
|
|
},
|
|
}
|
|
}
|
|
]
|
|
] |