blob: 597911da82ab4efb4844eb2c3d86cd002f072de7 (
plain)
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
|
import $ from 'cafy';
import define from '../define';
import endpoints from '../endpoints';
export const meta = {
requireCredential: false as const,
tags: ['meta'],
params: {
endpoint: {
validator: $.str,
},
},
};
// eslint-disable-next-line import/no-default-export
export default define(meta, async (ps) => {
const ep = endpoints.find(x => x.name === ps.endpoint);
if (ep == null) return null;
return {
params: Object.entries(ep.meta.params || {}).map(([k, v]) => ({
name: k,
type: v.validator.name === 'ID' ? 'String' : v.validator.name,
})),
};
});
|