mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
209 lines
6.5 KiB
TypeScript
209 lines
6.5 KiB
TypeScript
const {createApiPageMD} = require('./createApiPageMD');
|
|
import clsx from "clsx";
|
|
|
|
const pluginConfig = [
|
|
// function disableExpensiveBundlerOptimizationPlugin() {
|
|
// return {
|
|
// name: 'disable-expensive-bundler-optimizations',
|
|
// configureWebpack() {
|
|
// return {
|
|
// optimization: {
|
|
// concatenateModules: false,
|
|
// mergeDuplicateChunks: false,
|
|
// removeAvailableModules: true,
|
|
// },
|
|
// experiments: {
|
|
// parallelCodeSplitting: false,
|
|
// } as any,
|
|
// };
|
|
// },
|
|
// };
|
|
// },
|
|
|
|
[
|
|
'@docusaurus/plugin-google-tag-manager',
|
|
{
|
|
containerId: 'GTM-TSD78J',
|
|
},
|
|
],
|
|
[
|
|
'@docusaurus/plugin-client-redirects',
|
|
{
|
|
redirects: [
|
|
{
|
|
to: '/',
|
|
from: ['/conf', '/developerdays', '/developerdays/agenda'],
|
|
},
|
|
{
|
|
to: '/ambassadors',
|
|
from: ['/ambassador-program', '/ambassador'],
|
|
},
|
|
],
|
|
createRedirects(existingPath) {
|
|
if (existingPath.startsWith('/docs')) {
|
|
return [existingPath.replace('/docs', '/idn')];
|
|
}
|
|
return undefined; // Return a falsy value: no redirect created
|
|
},
|
|
},
|
|
],
|
|
[
|
|
'docusaurus-plugin-openapi-docs',
|
|
{
|
|
id: 'idn-api',
|
|
docsPluginId: 'idn',
|
|
config: {
|
|
idn_v3: {
|
|
specPath: 'static/api-specs/idn/sailpoint-api.v3.yaml',
|
|
outputDir: 'docs/api/v3',
|
|
downloadUrl:
|
|
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v3.yaml',
|
|
sidebarOptions: {
|
|
groupPathsBy: 'tag',
|
|
categoryLinkSource: 'tag',
|
|
},
|
|
template: 'api.mustache',
|
|
},
|
|
idn_beta: {
|
|
specPath: 'static/api-specs/idn/sailpoint-api.beta.yaml',
|
|
outputDir: 'docs/api/beta',
|
|
downloadUrl:
|
|
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.beta.yaml',
|
|
sidebarOptions: {
|
|
groupPathsBy: 'tag',
|
|
categoryLinkSource: 'tag',
|
|
},
|
|
template: 'api.mustache',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
[
|
|
'docusaurus-plugin-openapi-docs',
|
|
{
|
|
id: 'isc-api',
|
|
docsPluginId: 'isc',
|
|
config: {
|
|
isc_versioned: {
|
|
specPath: 'static/code-examples/v2025/v2025.yaml',
|
|
outputDir: 'docs/api/v2025',
|
|
sidebarOptions: {
|
|
groupPathsBy: 'tag',
|
|
categoryLinkSource: 'tag',
|
|
sidebarGenerators: {
|
|
createDocItem(
|
|
item,
|
|
{ sidebarOptions: { customProps }, basePath }
|
|
) {
|
|
const sidebar_label = item.frontMatter.sidebar_label;
|
|
const title = item.title;
|
|
const id =
|
|
item.type === "schema" ? `schemas/${item.id}` : item.id;
|
|
const className =
|
|
item.type === "api"
|
|
? clsx(
|
|
{
|
|
"menu__list-item--deprecated": item.api.deprecated,
|
|
"menu__list-item--experimental": !!item.api.parameters?.find(header => header.name === 'X-SailPoint-Experimental'), // checks for existence of extension and adds "experimental" class
|
|
"api-method": !!item.api.method,
|
|
},
|
|
item.api.method
|
|
)
|
|
: clsx(
|
|
{
|
|
"menu__list-item--deprecated": item.schema.deprecated,
|
|
},
|
|
"schema"
|
|
);
|
|
return {
|
|
type: "doc" as const,
|
|
id:
|
|
basePath === "" || undefined
|
|
? `${id}`
|
|
: `${basePath}/${id}`,
|
|
label: (sidebar_label as string) ?? title ?? id,
|
|
customProps: customProps,
|
|
className: className ? className : undefined,
|
|
};
|
|
},
|
|
}},
|
|
version: 'v2025',
|
|
label: 'v2025',
|
|
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/refs/heads/main/dereferenced/deref-sailpoint-api.v2025.yaml',
|
|
baseUrl: '/docs/api/v2025',
|
|
template: 'api.mustache',
|
|
markdownGenerators: {
|
|
createApiPageMD,
|
|
},
|
|
versions: {
|
|
v2024: {
|
|
specPath: 'static/code-examples/v2024/v2024.yaml',
|
|
outputDir: 'docs/api/v2024',
|
|
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v2024.yaml',
|
|
label: 'v2024',
|
|
baseUrl: '/docs/api/v2024',
|
|
},
|
|
v3: {
|
|
specPath: 'static/code-examples/v3/v3.yaml',
|
|
outputDir: 'docs/api/v3',
|
|
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v3.yaml',
|
|
label: 'v3',
|
|
baseUrl: '/docs/api/v3',
|
|
},
|
|
beta: {
|
|
specPath: 'static/code-examples/beta/beta.yaml',
|
|
outputDir: 'docs/api/beta',
|
|
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.beta.yaml',
|
|
label: 'Beta',
|
|
baseUrl: '/docs/api/beta',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
[
|
|
'docusaurus-plugin-openapi-docs',
|
|
{
|
|
id: 'iiq-api',
|
|
docsPluginId: 'iiq',
|
|
config: {
|
|
iiq: {
|
|
specPath: 'static/api-specs/iiq/sailpoint-api.iiq.yaml',
|
|
outputDir: 'docs/api/iiq',
|
|
downloadUrl:
|
|
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/iiq/sailpoint-api.iiq.yaml',
|
|
sidebarOptions: {
|
|
groupPathsBy: 'tag',
|
|
categoryLinkSource: 'tag',
|
|
},
|
|
template: 'api.mustache',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
[
|
|
'docusaurus-plugin-openapi-docs',
|
|
{
|
|
id: 'nerm-api',
|
|
docsPluginId: 'nerm',
|
|
config: {
|
|
nerm: {
|
|
specPath: 'static/api-specs/nerm/openapi.yaml',
|
|
outputDir: 'docs/api/nerm/v1',
|
|
downloadUrl:
|
|
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.nerm.yaml',
|
|
sidebarOptions: {
|
|
groupPathsBy: 'tag',
|
|
categoryLinkSource: 'tag',
|
|
},
|
|
template: 'api.mustache',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
];
|
|
|
|
|
|
export default pluginConfig;
|