const defaultCalendarId = '' const defaultOwner = '17838303' export type BusinessUnit = { phone: string owner: string calendarId: string } export const businessUnitTypes = [ 'default', 'alta', 'altas', 'battery', 'batteryPartnerTesla', 'solar', 'cloud', 'cloudAlta', 'gas', 'webVariantA', 'webVariantB', 'webVariantC', ] as const export type BusinessUnitType = (typeof businessUnitTypes)[number] export type BusinessUnitByType = { [type in BusinessUnitType]: BusinessUnit } export const businessUnits: BusinessUnitByType = { default: { phone: '900 67 07 07', owner: defaultOwner, calendarId: defaultCalendarId, }, alta: { phone: '900 64 94 92', owner: defaultOwner, calendarId: defaultCalendarId, }, altas: { phone: '900 64 94 93', owner: defaultOwner, calendarId: defaultCalendarId, }, battery: { phone: '900 90 37 82', owner: '18144585', calendarId: '3383113', }, batteryPartnerTesla: { phone: '900 90 37 81', owner: '18144585', calendarId: '3383113', }, solar: { phone: '900 67 01 70', owner: '18144585', calendarId: '3383113', }, cloud: { phone: '900 67 03 62', owner: defaultOwner, calendarId: defaultCalendarId, }, cloudAlta: { phone: '900 90 37 31', owner: defaultOwner, calendarId: '7513663', }, gas: { phone: '900 67 05 23', owner: defaultOwner, calendarId: defaultCalendarId, }, webVariantA: { phone: '900 67 00 81', owner: defaultOwner, calendarId: defaultCalendarId, }, webVariantB: { phone: '900 67 00 78', owner: defaultOwner, calendarId: defaultCalendarId, }, webVariantC: { phone: '900 67 00 88', owner: defaultOwner, calendarId: defaultCalendarId, }, }