wip
This commit is contained in:
@@ -2,7 +2,7 @@ import type { JSONSchema7 } from 'schema-type';
|
||||
import { IEndpointMeta } from './endpoints.types';
|
||||
import { localUsernameSchema, passwordSchema } from './schemas/user';
|
||||
import ms from 'ms';
|
||||
import { getJsonSchema } from './schemas';
|
||||
import { chartSchemaToJSONSchema } from './schemas';
|
||||
import { chartsSchemas } from './schemas/charts.js';
|
||||
|
||||
export const endpoints = {
|
||||
@@ -3005,7 +3005,27 @@ export const endpoints = {
|
||||
},
|
||||
required: ['span', 'userId'],
|
||||
},
|
||||
res: getJsonSchema(chartsSchemas.perUserDrive) satisfies JSONSchema7,
|
||||
res: chartSchemaToJSONSchema(chartsSchemas.perUserDrive) satisfies JSONSchema7,
|
||||
}],
|
||||
},
|
||||
'charts/user/following': {
|
||||
tags: ['charts', 'users', 'following'],
|
||||
|
||||
allowGet: true,
|
||||
cacheSec: 60 * 60,
|
||||
|
||||
defines: [{
|
||||
req: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
span: { type: 'string', enum: ['day', 'hour'] },
|
||||
limit: { type: 'integer', minimum: 1, maximum: 500, default: 30 },
|
||||
offset: { type: 'integer', nullable: true, default: null },
|
||||
userId: { type: 'string', format: 'misskey:id' },
|
||||
},
|
||||
required: ['span', 'userId'],
|
||||
},
|
||||
res: chartSchemaToJSONSchema(chartsSchemas.perUserFollowing) satisfies JSONSchema7,
|
||||
}],
|
||||
},
|
||||
//#endregion
|
||||
|
@@ -157,7 +157,7 @@ type ToJsonSchema<S> = {
|
||||
required: (keyof S)[];
|
||||
};
|
||||
|
||||
export function getJsonSchema<S extends ChartSchema>(schema: S): ToJsonSchema<Unflatten<ChartResult<S>>> {
|
||||
export function chartSchemaToJSONSchema<S extends ChartSchema>(schema: S): ToJsonSchema<Unflatten<ChartResult<S>>> {
|
||||
const jsonSchema = {
|
||||
type: 'object',
|
||||
properties: {} as Record<string, unknown>,
|
||||
|
Reference in New Issue
Block a user