export type GenderCode = 'male' | 'female' | 'not-stated' | 'unknown' export type ReligionCode = 'islam' | 'protestan' | 'katolik' | 'hindu' | 'buda' | 'konghucu' export type EducationCode = 'TS' | 'TK' | 'SD' | 'SMP' | 'SMA' | 'D1' | 'D2' | 'D3' | 'S1' | 'S2' | 'S3' export type OccupationCode = 'tidak-bekerja' | 'pns' | 'polisi' | 'tni' | 'guru' | 'wiraswasta' | 'kary-swasta' | 'lainnya' export type AddressLocationTypeCode = 'identity' | 'domicile' export type PersonContactType = 'phone' | 'm-phone' | 'email' | 'fax' export type RelationshipCode = 'mother' | 'father' | 'uncle' | 'aunt' | 'sibling' | 'gd-mother' | 'gd-father' | 'child' | 'nephew' | 'gd-child' | 'friend' | 'spouse' | 'self' | 'other' export type MaritalStatus_Code = 'S' | 'M' | 'D' | 'W' export const genderCodes: Record = { male: 'Laki', female: 'Perempuan', 'not-stated': 'Tidak Disebutkan', unknown: 'Tidak Diketahui', } export const religionCodes: Record = { islam: 'Islam', protestan: 'Protestan', katolik: 'Katolik', hindu: 'Hindu', buda: 'Buda', konghucu: 'Konghucu', } export const educationCodes: Record = { TS: 'TS', TK: 'TK', SD: 'SD', SMP: 'SMP', SMA: 'SMA', D1: 'D1', D2: 'D2', D3: 'D3', S1: 'S1', S2: 'S2', S3: 'S3', } export const occupationCodes: Record = { 'tidak-bekerja': 'Tidak Bekerja', pns: 'Pegawai Negeri Sipil', polisi: 'Polisi', tni: 'TNI', guru: 'Guru', wiraswasta: 'Wiraswasta', 'kary-swasta': 'Karyawan Swasta', lainnya: 'Lainnya', } export const personContactTypes: Record = { phone: 'Telepon', 'm-phone': 'HP / Ponsel', email: 'Email', fax: 'Fax', } export const relationshipCodes: Record = { mother: 'Ibu', father: 'Ayah', uncle: 'Paman', aunt: 'Bibi', sibling: 'Saudara', 'gd-mother': 'Nenek', 'gd-father': 'Kakek', child: 'Anak', nephew: 'Keponakan', 'gd-child': 'Cucu', friend: 'Teman', spouse: 'Pasangan (Suami / Istri)', self: 'Diri sendiri', other: 'Lainnya', } export const maritalStatusCodes: Record = { S: 'Single (Belum Kawin)', M: 'Married (Kawin)', D: 'Divorced (Cerai Hidup)', W: 'Widowed (Cerai Mati)', }