summary refs log tree commit diff
path: root/src/util/schemas/InviteCreateSchema.ts
blob: cac1114745fc1c0764c26dc16a99daa955c6cf7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export interface InviteCreateSchema {
	target_user_id?: string;
	target_type?: string;
	validate?: string; // ? what is this
	max_age?: number;
	max_uses?: number;
	temporary?: boolean;
	unique?: boolean;
	target_user?: string;
	target_user_type?: number;
}