first commit

This commit is contained in:
2026-07-16 20:48:43 -03:00
commit 5696cee264
1111 changed files with 322270 additions and 0 deletions
+80
View File
@@ -0,0 +1,80 @@
{
"_id" : ObjectId("675ad1e1c07e4161c97928f8"),
"name" : "Básico",
"description" : "Plan gratuito para comenzar a ofrecer turnos.",
"features" : [
"Hasta 30 clientes",
"Hasta 50 turnos por mes",
"Hasta 1 colaborador",
"Notificaciones por correo"
],
"code" : "CCC",
"price" : NumberInt(0),
"anualPrice" : NumberInt(0),
"limitOrganizations" : NumberInt(1),
"limitEmployees" : NumberInt(1),
"limitServices" : NumberInt(2),
"limitAppointments" : NumberInt(50),
"limitClients" : NumberInt(30),
"mailNotifications" : true,
"smsNotifications" : false,
"wapNotifications" : false,
"bot" : false,
"active" : true,
"dateLimit" : false,
"mpPlanId" : ""
}
{
"_id" : ObjectId("675ad38ac07e4161c97928fb"),
"name" : "Intermedio",
"description" : "Plan intermedio para empresas que quieran ofrecer turnos.",
"features" : [
"Hasta 100 clientes",
"Sin límite de turnos",
"Hasta 5 colaboradores",
"Notificaciones por correo",
"Notificaciones por whatsapp"
],
"code" : "BBB",
"price" : NumberInt(5000),
"anualPrice" : NumberInt(50000),
"limitOrganizations" : NumberInt(1),
"limitEmployees" : NumberInt(5),
"limitServices" : NumberInt(10),
"limitAppointments" : NumberInt(-1),
"limitClients" : NumberInt(100),
"mailNotifications" : true,
"smsNotifications" : false,
"wapNotifications" : true,
"bot" : false,
"active" : true,
"dateLimit" : true,
"mpPlanId" : "2c93808493b073170193c084323105a6"
}
{
"_id" : ObjectId("675ad446c07e4161c97928fc"),
"name" : "Avanzado",
"description" : "Optimizá tu tiempo y desarrolla al máximo tu negocio aprovechando el plan avanzado.",
"features" : [
"Sin límite de clientes",
"Sin límite de turnos",
"Sin límite de colaboradores",
"Notificaciones por correo",
"Notificaciones por whatsapp con numero propio",
"Bot de whatsapp"
],
"code" : "AAA",
"price" : NumberInt(20000),
"anualPrice" : NumberInt(200000),
"limitOrganizations" : NumberInt(-1),
"limitEmployees" : NumberInt(-1),
"limitServices" : NumberInt(-1),
"limitAppointments" : NumberInt(-1),
"limitClients" : NumberInt(-1),
"mailNotifications" : true,
"smsNotifications" : false,
"wapNotifications" : true,
"bot" : true,
"active" : true,
"dateLimit" : true
}