2022-03-23 14:41:12 +00:00
|
|
|
import { System } from "./system";
|
2022-03-20 08:56:28 +00:00
|
|
|
|
|
|
|
export interface Manifest<HookT> {
|
2022-04-26 17:04:36 +00:00
|
|
|
name: string;
|
2022-03-25 11:03:06 +00:00
|
|
|
requiredPermissions?: string[];
|
2022-05-13 12:36:26 +00:00
|
|
|
dependencies?: {
|
|
|
|
[key: string]: string;
|
|
|
|
};
|
2022-03-20 08:56:28 +00:00
|
|
|
functions: {
|
2022-03-27 09:26:13 +00:00
|
|
|
[key: string]: FunctionDef<HookT>;
|
2022-03-20 08:56:28 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-03-27 09:26:13 +00:00
|
|
|
export type FunctionDef<HookT> = {
|
2022-03-20 08:56:28 +00:00
|
|
|
path?: string;
|
|
|
|
code?: string;
|
2022-03-23 14:41:12 +00:00
|
|
|
env?: RuntimeEnvironment;
|
2022-03-27 09:26:13 +00:00
|
|
|
} & HookT;
|
2022-03-20 08:56:28 +00:00
|
|
|
|
2022-03-23 14:41:12 +00:00
|
|
|
export type RuntimeEnvironment = "client" | "server";
|
|
|
|
|
2022-03-29 09:21:32 +00:00
|
|
|
export interface Hook<HookT> {
|
2022-03-23 14:41:12 +00:00
|
|
|
validateManifest(manifest: Manifest<HookT>): string[];
|
2022-03-21 14:21:34 +00:00
|
|
|
|
2022-03-23 14:41:12 +00:00
|
|
|
apply(system: System<HookT>): void;
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|