2022-02-27 03:07:39 +01:00
|
|
|
import define from '../define.js';
|
|
|
|
import endpoints from '../endpoints.js';
|
2019-04-25 07:40:42 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2019-04-25 07:40:42 +02:00
|
|
|
|
|
|
|
tags: ['meta'],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2019-04-25 07:40:42 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
endpoint: { type: 'string' },
|
2019-04-25 07:40:42 +02:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['endpoint'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-04-25 07:40:42 +02:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2019-04-25 07:40:42 +02:00
|
|
|
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,
|
2021-12-09 15:58:30 +01:00
|
|
|
type: v.validator.name === 'ID' ? 'String' : v.validator.name,
|
|
|
|
})),
|
2019-04-25 07:40:42 +02:00
|
|
|
};
|
|
|
|
});
|