Sindbad~EG File Manager
import { ValidatorCompiler } from '@fastify/ajv-compiler'
import { FastifyInstance, FastifyServerOptions } from '../fastify'
/**
* Schemas in Fastify follow the JSON-Schema standard. For this reason
* we have opted to not ship strict schema based types. Instead we provide
* an example in our documentation on how to solve this problem. Check it
* out here: https://github.com/fastify/fastify/blob/main/docs/TypeScript.md#json-schema
*/
export interface FastifySchema {
body?: unknown;
querystring?: unknown;
params?: unknown;
headers?: unknown;
response?: unknown;
}
export interface FastifyRouteSchemaDef<T> {
schema: T;
method: string;
url: string;
httpPart?: string;
httpStatus?: string;
}
export interface FastifySchemaValidationError {
message?: string;
dataPath: string;
}
export interface FastifyValidationResult {
(data: any): boolean | PromiseLike<any> | { error?: Error, value?: any }
errors?: FastifySchemaValidationError[] | null;
}
/**
* Compiler for FastifySchema Type
*/
export type FastifySchemaCompiler<T> = (routeSchema: FastifyRouteSchemaDef<T>) => FastifyValidationResult
export type FastifySerializerCompiler<T> = (routeSchema: FastifyRouteSchemaDef<T>) => (data: any) => string
export interface FastifySchemaControllerOptions{
bucket?: (parentSchemas?: unknown) => {
addSchema(schema: unknown): FastifyInstance;
getSchema(schemaId: string): unknown;
getSchemas(): Record<string, unknown>;
};
compilersFactory?: {
buildValidator?: ValidatorCompiler;
buildSerializer?: (externalSchemas: unknown, serializerOptsServerOption: FastifyServerOptions['serializerOpts']) => FastifySerializerCompiler<unknown>;
};
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists