Files
SimpleClient-releases/config.json
2025-09-04 11:43:50 -04:00

109 lines
2.8 KiB
JSON

{
"agents": [
{
"id": "agent1",
"name": "Marie DUPONT",
"email": "marie.dupont@callcenter.fr",
"password": "demo123",
"centresAssignes": ["centre1", "centre2", "centre3"]
},
{
"id": "agent2",
"name": "Jean MARTIN",
"email": "jean.martin@callcenter.fr",
"password": "demo456",
"centresAssignes": ["centre2", "centre4", "centre5"]
},
{
"id": "agent3",
"name": "Sophie BERNARD",
"email": "sophie.bernard@callcenter.fr",
"password": "demo789",
"centresAssignes": ["centre1", "centre3", "centre4", "centre5"]
}
],
"centres": [
{
"id": "centre1",
"nom": "Centre Cardio Lyon",
"url": "https://www.doctolib.fr/centre-de-sante/lyon/centre-de-cardiologie-lyon",
"telephone": "+33478901234",
"couleur": "#FF6B6B",
"credentials": {
"username": "agent_cardio",
"password": "pass123"
}
},
{
"id": "centre2",
"nom": "Clinique Saint-Jean",
"url": "https://www.doctolib.fr/clinique-privee/lyon/clinique-saint-jean",
"telephone": "+33478905678",
"couleur": "#4ECDC4",
"credentials": {
"username": "agent_stjean",
"password": "pass456"
}
},
{
"id": "centre3",
"nom": "Cabinet Dr Martin",
"url": "https://www.doctolib.fr/medecin-generaliste/villeurbanne/martin",
"telephone": "+33472334455",
"couleur": "#45B7D1",
"credentials": {
"username": "cabinet_martin",
"password": "pass789"
}
},
{
"id": "centre4",
"nom": "Centre Radiologie Villeurbanne",
"url": "https://www.doctolib.fr/centre-de-radiologie/villeurbanne/centre-imagerie-medicale",
"telephone": "+33472667788",
"couleur": "#96CEB4",
"credentials": {
"username": "radio_vlb",
"password": "passabc"
}
},
{
"id": "centre5",
"nom": "Laboratoire BioLab",
"url": "https://www.doctolib.fr/laboratoire/lyon/laboratoire-biolab",
"telephone": "+33478112233",
"couleur": "#DDA0DD",
"credentials": {
"username": "lab_bio",
"password": "passdef"
}
}
],
"cti": {
"simulationMode": true,
"webhookUrl": "http://localhost:3000/cti-webhook",
"appelSimules": [
{
"numero": "+33612345678",
"nom": "Patient Test 1",
"centreId": "centre1"
},
{
"numero": "+33687654321",
"nom": "Patient Test 2",
"centreId": "centre2"
},
{
"numero": "+33611223344",
"nom": "Patient Test 3",
"centreId": "centre3"
}
]
},
"preferences": {
"tempsSessionMinutes": 480,
"autoConnexion": true,
"notificationSonore": true,
"affichageCompact": false
}
}