forked from PaloAltoNetworks/docusaurus-openapi-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
178 lines (158 loc) · 4.33 KB
/
types.ts
File metadata and controls
178 lines (158 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* ============================================================================
* Copyright (c) Palo Alto Networks
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* ========================================================================== */
import { SidebarItemDoc } from "@docusaurus/plugin-content-docs/src/sidebars/types";
import Request from "postman-collection";
import {
InfoObject,
OperationObject,
SchemaObject,
SecuritySchemeObject,
TagObject,
} from "./openapi/types";
export type {
PropSidebarItemCategory,
SidebarItemLink,
PropSidebar,
PropSidebarItem,
} from "@docusaurus/plugin-content-docs-types";
export interface PluginOptions {
id?: string;
docsPlugin?: string;
docsPluginId: string;
config: {
[key: string]: APIOptions;
};
}
export interface APIOptions {
specPath: string;
outputDir: string;
template?: string;
infoTemplate?: string;
tagTemplate?: string;
schemaTemplate?: string;
downloadUrl?: string;
hideSendButton?: boolean;
showExtensions?: boolean;
sidebarOptions?: SidebarOptions;
version?: string;
label?: string;
baseUrl?: string;
versions?: {
[key: string]: APIVersionOptions;
};
proxy?: string;
markdownGenerators?: MarkdownGenerator;
showSchemas?: boolean;
disableCompression?: boolean;
maskCredentials?: boolean;
}
export interface MarkdownGenerator {
createApiPageMD?: (pageData: ApiPageMetadata) => string;
createInfoPageMD?: (pageData: InfoPageMetadata) => string;
createTagPageMD?: (pageData: TagPageMetadata) => string;
createSchemaPageMD?: (pageData: SchemaPageMetadata) => string;
}
export type ApiDocItemGenerator = (
item: ApiPageMetadata | SchemaPageMetadata,
context: { sidebarOptions: SidebarOptions; basePath: string }
) => SidebarItemDoc;
export interface SidebarGenerators {
createDocItem?: ApiDocItemGenerator;
}
export interface SidebarOptions {
groupPathsBy?: string;
categoryLinkSource?: "info" | "tag" | "auto";
customProps?: { [key: string]: unknown };
sidebarCollapsible?: boolean;
sidebarCollapsed?: boolean;
sidebarGenerators?: SidebarGenerators;
}
export interface APIVersionOptions {
specPath: string;
outputDir: string;
label: string;
baseUrl: string;
downloadUrl?: string;
}
export interface LoadedContent {
loadedApi: ApiMetadata[];
// loadedDocs: DocPageMetadata[]; TODO: cleanup
}
export type ApiMetadata =
| ApiPageMetadata
| InfoPageMetadata
| TagPageMetadata
| SchemaPageMetadata;
export interface ApiMetadataBase {
sidebar?: string;
previous?: ApiNavLink;
next?: ApiNavLink;
//
id: string; // TODO legacy versioned id => try to remove
unversionedId: string; // TODO new unversioned id => try to rename to "id"
infoId?: string;
infoPath?: string;
downloadUrl?: string;
title: string;
description: string;
source: string; // @site aliased source => "@site/docs/folder/subFolder/subSubFolder/myDoc.md"
sourceDirName: string; // relative to the versioned docs folder (can be ".") => "folder/subFolder/subSubFolder"
slug?: string;
permalink: string;
sidebarPosition?: number;
frontMatter: Record<string, unknown>;
method?: string;
path?: string;
position?: number;
}
export interface ApiPageMetadata extends ApiMetadataBase {
json?: string;
type: "api";
api: ApiItem;
markdown?: string;
}
export interface ApiItem extends OperationObject {
method: string; // get, post, put, etc...
path: string; // The endpoint path => "/api/getPets"
jsonRequestBodyExample: string;
securitySchemes?: {
[key: string]: SecuritySchemeObject;
};
postman?: Request;
proxy?: string;
info: InfoObject;
extensions?: object;
}
export interface InfoPageMetadata extends ApiMetadataBase {
type: "info";
info: ApiInfo;
markdown?: string;
securitySchemes?: {
[key: string]: SecuritySchemeObject;
};
}
export interface TagPageMetadata extends ApiMetadataBase {
type: "tag";
tag: TagObject;
markdown?: string;
}
export interface SchemaPageMetadata extends ApiMetadataBase {
type: "schema";
schema: SchemaObject;
markdown?: string;
}
export interface TagGroupPageMetadata extends ApiMetadataBase {
type: "tagGroup";
name: string;
tags: TagObject[];
markdown?: string;
}
export type ApiInfo = InfoObject;
export interface ApiNavLink {
title: string;
permalink: string;
}