mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
removed tsconfig checks from sidebar files
This commit is contained in:
@@ -1,17 +1,3 @@
|
||||
/**
|
||||
* Creating a sidebar enables you to:
|
||||
- create an ordered group of docs
|
||||
- render a sidebar for each doc of that group
|
||||
- provide next/previous navigation
|
||||
|
||||
The sidebars can be generated from the filesystem, or explicitly defined here.
|
||||
|
||||
Create as many sidebars as you want.
|
||||
*/
|
||||
|
||||
// @ts-check
|
||||
|
||||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
||||
const sidebars = {
|
||||
openApiSidebar: [
|
||||
{
|
||||
@@ -21,19 +7,19 @@ const sidebars = {
|
||||
items: [
|
||||
{
|
||||
type: "doc",
|
||||
id: "api/getting-started"
|
||||
id: "api/getting-started",
|
||||
},
|
||||
{
|
||||
type: "doc",
|
||||
id: "api/authentication"
|
||||
id: "api/authentication",
|
||||
},
|
||||
{
|
||||
type: "doc",
|
||||
id: "api/standard-collection-parameters"
|
||||
id: "api/standard-collection-parameters",
|
||||
},
|
||||
{
|
||||
type: "doc",
|
||||
id: "api/rate-limit"
|
||||
id: "api/rate-limit",
|
||||
},
|
||||
{
|
||||
type: "category",
|
||||
@@ -61,7 +47,7 @@ const sidebars = {
|
||||
// @ts-ignore
|
||||
items: require("./api/beta/sidebar.js"),
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
],
|
||||
idnDocs: [
|
||||
@@ -72,4 +58,3 @@ const sidebars = {
|
||||
],
|
||||
};
|
||||
module.exports = sidebars;
|
||||
|
||||
@@ -1,17 +1,3 @@
|
||||
/**
|
||||
* Creating a sidebar enables you to:
|
||||
- create an ordered group of docs
|
||||
- render a sidebar for each doc of that group
|
||||
- provide next/previous navigation
|
||||
|
||||
The sidebars can be generated from the filesystem, or explicitly defined here.
|
||||
|
||||
Create as many sidebars as you want.
|
||||
*/
|
||||
|
||||
// @ts-check
|
||||
|
||||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
||||
const sidebars = {
|
||||
iiqOpenApiSidebar: [
|
||||
{
|
||||
@@ -20,14 +6,14 @@ const sidebars = {
|
||||
link: {
|
||||
type: "generated-index",
|
||||
title: "IdentityIQ API",
|
||||
description: "These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
|
||||
slug: "/api"
|
||||
description:
|
||||
"These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
|
||||
slug: "/api",
|
||||
},
|
||||
// @ts-ignore
|
||||
items: require("./api/sidebar.js")
|
||||
}
|
||||
items: require("./api/sidebar.js"),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
module.exports = sidebars;
|
||||
|
||||
Reference in New Issue
Block a user