-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathschemas.ts
78 lines (65 loc) · 1.47 KB
/
schemas.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { z } from 'zod';
// Common types
export interface SupabaseResponse<T> {
data: T;
error: null | {
message: string;
};
}
export interface Project {
id: string;
organization_id: string;
name: string;
region: string;
created_at: string;
}
export interface Organization {
id: string;
name: string;
billing_email: string;
created_at: string;
}
export interface ProjectApiKey {
api_key: string;
name: string;
tags?: string[];
created_at: string;
}
// Input Schemas
// Projects
export const ListProjectsInputSchema = z.object({
ref: z.string().optional()
});
export const GetProjectInputSchema = z.object({
ref: z.string()
});
export const CreateProjectInputSchema = z.object({
name: z.string(),
organization_id: z.string(),
region: z.string(),
db_pass: z.string(),
plan: z.string().optional()
});
export const DeleteProjectInputSchema = z.object({
ref: z.string()
});
// Organizations
export const ListOrganizationsInputSchema = z.object({});
export const GetOrganizationInputSchema = z.object({
slug: z.string()
});
export const CreateOrganizationInputSchema = z.object({
name: z.string(),
billing_email: z.string()
});
export const UpdateOrganizationInputSchema = z.object({
slug: z.string(),
name: z.string().optional(),
billing_email: z.string().optional()
});
// Project API Keys
export const GetProjectApiKeysInputSchema = z.object({
ref: z.string(),
// Optional filter by key name
name: z.string().optional()
});