anyonecandesign-types
Advanced tools
Comparing version 0.0.0 to 0.0.1
@@ -8,2 +8,12 @@ export type DatabaseResource<T = unknown> = T & { | ||
}; | ||
export type Organization = DatabaseResource<{ | ||
name: string; | ||
memberUserIds: string[]; | ||
administratorUserIds: string[]; | ||
}>; | ||
export type OrganizationInvitation = DatabaseResource<{ | ||
email: string; | ||
organizationId: string; | ||
acceptedAt: string; | ||
}>; | ||
export type User = DatabaseResource<{ | ||
@@ -27,10 +37,2 @@ email: string; | ||
}>; | ||
export type RevisionFile = { | ||
path: string; | ||
content: string; | ||
}; | ||
export type RevisionImplicitFile = { | ||
path: string; | ||
type: 'shadcn'; | ||
}; | ||
export type Email = DatabaseResource<{ | ||
@@ -46,1 +48,9 @@ to: string; | ||
export type ProjectStatus = 'prompting' | 'building' | 'deploying' | 'done'; | ||
export type RevisionFile = { | ||
path: string; | ||
content: string; | ||
}; | ||
export type RevisionImplicitFile = { | ||
path: string; | ||
type: 'shadcn'; | ||
}; |
{ | ||
"name": "anyonecandesign-types", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"description": "TypeScript types for anyonecandesign.com", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.d.ts", |
1723
53