added docs to sidebar

This commit is contained in:
philip-ellis-sp
2022-08-26 17:01:25 -04:00
parent 311b34449a
commit b0935db3c8
150 changed files with 1016 additions and 270 deletions

View File

@@ -1 +1,124 @@
module.exports = {};
/**
* 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: [
{
type: "category",
label: "IDN V3",
link: {
type: "generated-index",
title: "IDN V3",
description:
"These are the public APIs for SailPoint's SaaS services. 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: "/category/identity-now-api-v3",
},
// @ts-ignore
items: require("./docs/idn/api/v3/sidebar.js"),
},
{
type: "category",
label: "IDN Beta",
link: {
type: "generated-index",
title: "IDN Beta",
description:
"These are the public APIs for SailPoint's SaaS services. 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: "/category/identity-now-api-beta",
},
// @ts-ignore
items: require("./docs/idn/api/beta/sidebar.js"),
},
],
idnDocs: [
{
type: "category",
label: "Getting Started",
collapsible: true,
collapsed: true,
items: [
"idn/docs/getting-started/getting-started",
"idn/docs/getting-started/authentication",
"idn/docs/getting-started/standard-collection-parameters",
],
},
{
type: "category",
label: "Transforms",
collapsible: true,
collapsed: true,
items: [
"idn/docs/transforms/building-transforms/building-transforms",
"idn/docs/transforms/building-transforms/creating-your-first-transform",
"idn/docs/transforms/building-transforms/transform-operations",
"idn/docs/transforms/building-transforms/temporary-password-usecase",
{
type: "category",
label: "Operations",
collapsible: true,
collapsed: true,
items: [
{
type: "autogenerated",
dirName: "idn/docs/transforms/operations",
},
],
},
],
},
{
type: "category",
label: "Event Triggers",
collapsible: true,
collapsed: true,
items: [
{
type: "category",
label: "Getting Started",
collapsible: true,
collapsed: true,
items: [
"idn/docs/event-triggers/getting-started/getting-started",
],
},
{
type: "category",
label: "Event Triggers",
collapsible: true,
collapsed: true,
items: [
{
type: "autogenerated",
dirName: "idn/docs/event-triggers/available",
},
],
},
{
type: "category",
label: "Early Access Event Triggers",
collapsible: true,
collapsed: true,
items: [
{
type: "autogenerated",
dirName: "idn/docs/event-triggers/early-access",
},
],
},
],
},
],
};
module.exports = sidebars;