chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-22 00:17:20 +02:00
commit fe01649d39
161 changed files with 18517 additions and 0 deletions

50
db/annotations.ts Normal file
View File

@@ -0,0 +1,50 @@
import type { DbClassificationMap } from '../packages/functions/.pikku/db/classification-map.gen.d.ts'
export const classifications = {
"account": {},
"audit_log": {},
"bathroom": {},
"booking": {
"booking_id": { security: 'public' },
"event_name": { security: 'public' },
"start_date": { security: 'public' },
"end_date": { security: 'public' },
"status": { security: 'public' },
"half_house": { security: 'public' },
"online_ad": { security: 'public' },
"cover_image_url": { security: 'public' },
"description": { security: 'public' },
"organiser_website": { security: 'public' },
"expected_persons": { security: 'public' },
"event_outline": { security: 'public' },
},
"booking_extra": {
"booking_id": { security: 'public' },
},
"booking_session": {},
"client": {
"name": { security: 'public' },
"website": { security: 'public' },
},
"client_member": {},
"enquiry": {
"half_house": { security: 'public' },
},
"enquiry_date_option": {},
"invoice": {
"booking_id": { security: 'public' },
},
"participant": {
"booking_id": { security: 'public' },
},
"participant_allergy": {},
"room": {},
"room_assignment": {
"booking_id": { security: 'public' },
},
"seminar_room": {},
"session": {},
"user": {},
"venue": {},
"verification": {},
} satisfies DbClassificationMap