-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreferenceBuilder.ts
36 lines (35 loc) · 1000 Bytes
/
referenceBuilder.ts
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
import { ReferenceObject } from "openapi3-ts/oas31";
export const RequestBodyRef = (names: TemplateStringsArray) => {
if (names.length !== 1) {
throw new Error("Too many template strings");
}
return <ReferenceObject>{
$ref: `#/components/requestBodies/${names[0]}`,
};
};
export const ResponseRef = (
names: TemplateStringsArray,
{ summary, description }: { summary?: string; description?: string } = {}
) => {
return <ReferenceObject>{
$ref: `#/components/responses/${names[0]}`,
summary,
description,
};
};
export const SchemaRef = (names: TemplateStringsArray) => {
if (names.length !== 1) {
throw new Error("Too many template strings");
}
return <ReferenceObject>{
$ref: `#/components/schemas/${names[0]}`,
};
};
export const ParameterRef = (names: TemplateStringsArray) => {
if (names.length !== 1) {
throw new Error("Too many template strings");
}
return <ReferenceObject>{
$ref: `#/components/parameters/${names[0]}`,
};
};