@blackcode_sa/metaestetics-api 1.12.72 → 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/admin/index.d.mts +872 -1
  2. package/dist/admin/index.d.ts +872 -1
  3. package/dist/admin/index.js +3604 -356
  4. package/dist/admin/index.mjs +3594 -357
  5. package/dist/index.d.mts +1349 -1
  6. package/dist/index.d.ts +1349 -1
  7. package/dist/index.js +5325 -2141
  8. package/dist/index.mjs +4939 -1767
  9. package/package.json +1 -1
  10. package/src/admin/analytics/analytics.admin.service.ts +278 -0
  11. package/src/admin/analytics/index.ts +2 -0
  12. package/src/admin/index.ts +6 -0
  13. package/src/backoffice/services/analytics.service.proposal.md +4 -0
  14. package/src/services/analytics/ARCHITECTURE.md +199 -0
  15. package/src/services/analytics/CLOUD_FUNCTIONS.md +225 -0
  16. package/src/services/analytics/GROUPED_ANALYTICS.md +501 -0
  17. package/src/services/analytics/QUICK_START.md +393 -0
  18. package/src/services/analytics/README.md +304 -0
  19. package/src/services/analytics/SUMMARY.md +141 -0
  20. package/src/services/analytics/TRENDS.md +380 -0
  21. package/src/services/analytics/USAGE_GUIDE.md +518 -0
  22. package/src/services/analytics/analytics-cloud.service.ts +222 -0
  23. package/src/services/analytics/analytics.service.ts +2142 -0
  24. package/src/services/analytics/index.ts +4 -0
  25. package/src/services/analytics/review-analytics.service.ts +941 -0
  26. package/src/services/analytics/utils/appointment-filtering.utils.ts +138 -0
  27. package/src/services/analytics/utils/cost-calculation.utils.ts +182 -0
  28. package/src/services/analytics/utils/grouping.utils.ts +434 -0
  29. package/src/services/analytics/utils/stored-analytics.utils.ts +347 -0
  30. package/src/services/analytics/utils/time-calculation.utils.ts +186 -0
  31. package/src/services/analytics/utils/trend-calculation.utils.ts +200 -0
  32. package/src/services/index.ts +1 -0
  33. package/src/types/analytics/analytics.types.ts +597 -0
  34. package/src/types/analytics/grouped-analytics.types.ts +173 -0
  35. package/src/types/analytics/index.ts +4 -0
  36. package/src/types/analytics/stored-analytics.types.ts +137 -0
  37. package/src/types/index.ts +3 -0
@@ -0,0 +1,434 @@
1
+ import { Appointment, AppointmentStatus } from '../../../types/appointment';
2
+ import { EntityType } from '../../../types/analytics';
3
+ import {
4
+ GroupedRevenueMetrics,
5
+ GroupedProductUsageMetrics,
6
+ GroupedTimeEfficiencyMetrics,
7
+ GroupedPatientBehaviorMetrics,
8
+ } from '../../../types/analytics/grouped-analytics.types';
9
+ import { calculateAppointmentCost, extractProductUsage, calculateTotalRevenue } from './cost-calculation.utils';
10
+ import { calculateTimeEfficiency, calculateAverageTimeMetrics } from './time-calculation.utils';
11
+ import { getCompletedAppointments, getCanceledAppointments, getNoShowAppointments, calculatePercentage } from './appointment-filtering.utils';
12
+
13
+ /**
14
+ * Helper to get technology ID from appointment
15
+ */
16
+ function getTechnologyId(appointment: Appointment): string {
17
+ return (
18
+ appointment.procedureExtendedInfo?.procedureTechnologyId || 'unknown-technology'
19
+ );
20
+ }
21
+
22
+ /**
23
+ * Helper to get technology name from appointment
24
+ */
25
+ function getTechnologyName(appointment: Appointment): string {
26
+ return (
27
+ appointment.procedureExtendedInfo?.procedureTechnologyName ||
28
+ appointment.procedureInfo?.technologyName ||
29
+ 'Unknown'
30
+ );
31
+ }
32
+
33
+ /**
34
+ * Helper to get entity name from appointment
35
+ */
36
+ function getEntityName(appointment: Appointment, entityType: EntityType): string {
37
+ switch (entityType) {
38
+ case 'clinic':
39
+ return appointment.clinicInfo?.name || 'Unknown';
40
+ case 'practitioner':
41
+ return appointment.practitionerInfo?.name || 'Unknown';
42
+ case 'patient':
43
+ return appointment.patientInfo?.fullName || 'Unknown';
44
+ case 'procedure':
45
+ return appointment.procedureInfo?.name || 'Unknown';
46
+ case 'technology':
47
+ return appointment.procedureExtendedInfo?.procedureTechnologyName ||
48
+ appointment.procedureInfo?.technologyName ||
49
+ 'Unknown';
50
+ }
51
+ }
52
+
53
+ /**
54
+ * Helper to get entity ID from appointment
55
+ */
56
+ function getEntityId(appointment: Appointment, entityType: EntityType): string {
57
+ switch (entityType) {
58
+ case 'clinic':
59
+ return appointment.clinicBranchId;
60
+ case 'practitioner':
61
+ return appointment.practitionerId;
62
+ case 'patient':
63
+ return appointment.patientId;
64
+ case 'procedure':
65
+ return appointment.procedureId;
66
+ case 'technology':
67
+ return appointment.procedureExtendedInfo?.procedureTechnologyId ||
68
+ 'unknown-technology';
69
+ }
70
+ }
71
+
72
+ /**
73
+ * Groups appointments by entity type
74
+ */
75
+ export function groupAppointmentsByEntity(
76
+ appointments: Appointment[],
77
+ entityType: EntityType,
78
+ ): Map<string, { name: string; appointments: Appointment[] }> {
79
+ const entityMap = new Map<string, { name: string; appointments: Appointment[] }>();
80
+
81
+ appointments.forEach(appointment => {
82
+ let entityId: string;
83
+ let entityName: string;
84
+
85
+ if (entityType === 'technology') {
86
+ entityId = getTechnologyId(appointment);
87
+ entityName = getTechnologyName(appointment);
88
+ } else {
89
+ entityId = getEntityId(appointment, entityType);
90
+ entityName = getEntityName(appointment, entityType);
91
+ }
92
+
93
+ if (!entityMap.has(entityId)) {
94
+ entityMap.set(entityId, { name: entityName, appointments: [] });
95
+ }
96
+ entityMap.get(entityId)!.appointments.push(appointment);
97
+ });
98
+
99
+ return entityMap;
100
+ }
101
+
102
+ /**
103
+ * Calculates grouped revenue metrics
104
+ *
105
+ * IMPORTANT: Only COMPLETED appointments are included in revenue calculations.
106
+ * Confirmed, pending, canceled, and no-show appointments are excluded from financial metrics.
107
+ */
108
+ export function calculateGroupedRevenueMetrics(
109
+ appointments: Appointment[],
110
+ entityType: EntityType,
111
+ ): GroupedRevenueMetrics[] {
112
+ const entityMap = groupAppointmentsByEntity(appointments, entityType);
113
+ const completed = getCompletedAppointments(appointments);
114
+
115
+ return Array.from(entityMap.entries()).map(([entityId, data]) => {
116
+ const entityAppointments = data.appointments;
117
+ const entityCompleted = entityAppointments.filter(a =>
118
+ completed.some(c => c.id === a.id),
119
+ );
120
+
121
+ const { totalRevenue, currency } = calculateTotalRevenue(entityCompleted);
122
+
123
+ // Calculate tax and subtotal
124
+ let totalTax = 0;
125
+ let totalSubtotal = 0;
126
+ let unpaidRevenue = 0;
127
+ let refundedRevenue = 0;
128
+
129
+ entityCompleted.forEach(appointment => {
130
+ const costData = calculateAppointmentCost(appointment);
131
+ if (costData.source === 'finalbilling') {
132
+ totalTax += costData.tax || 0;
133
+ totalSubtotal += costData.subtotal || 0;
134
+ } else {
135
+ totalSubtotal += costData.cost;
136
+ }
137
+
138
+ if (appointment.paymentStatus === 'unpaid') {
139
+ unpaidRevenue += costData.cost;
140
+ } else if (appointment.paymentStatus === 'refunded') {
141
+ refundedRevenue += costData.cost;
142
+ }
143
+ });
144
+
145
+ // Get practitioner info when grouping by procedure
146
+ let practitionerId: string | undefined;
147
+ let practitionerName: string | undefined;
148
+ if (entityType === 'procedure' && entityAppointments.length > 0) {
149
+ const firstAppointment = entityAppointments[0];
150
+ practitionerId = firstAppointment.practitionerId;
151
+ practitionerName = firstAppointment.practitionerInfo?.name;
152
+ }
153
+
154
+ return {
155
+ entityId,
156
+ entityName: data.name,
157
+ entityType,
158
+ totalRevenue,
159
+ averageRevenuePerAppointment:
160
+ entityCompleted.length > 0 ? totalRevenue / entityCompleted.length : 0,
161
+ totalAppointments: entityAppointments.length,
162
+ completedAppointments: entityCompleted.length,
163
+ currency,
164
+ unpaidRevenue,
165
+ refundedRevenue,
166
+ totalTax,
167
+ totalSubtotal,
168
+ ...(practitionerId && { practitionerId }),
169
+ ...(practitionerName && { practitionerName }),
170
+ };
171
+ });
172
+ }
173
+
174
+ /**
175
+ * Calculates grouped product usage metrics
176
+ *
177
+ * IMPORTANT: Only COMPLETED appointments are included in product usage calculations.
178
+ * Products are only considered "used" when the procedure has been completed.
179
+ * Confirmed, pending, canceled, and no-show appointments are excluded from product metrics.
180
+ */
181
+ export function calculateGroupedProductUsageMetrics(
182
+ appointments: Appointment[],
183
+ entityType: EntityType,
184
+ ): GroupedProductUsageMetrics[] {
185
+ const entityMap = groupAppointmentsByEntity(appointments, entityType);
186
+ const completed = getCompletedAppointments(appointments);
187
+
188
+ return Array.from(entityMap.entries()).map(([entityId, data]) => {
189
+ const entityAppointments = data.appointments;
190
+ const entityCompleted = entityAppointments.filter(a =>
191
+ completed.some(c => c.id === a.id),
192
+ );
193
+
194
+ // Extract all products from completed appointments
195
+ const productMap = new Map<
196
+ string,
197
+ {
198
+ name: string;
199
+ brandName: string;
200
+ quantity: number;
201
+ revenue: number;
202
+ usageCount: number;
203
+ }
204
+ >();
205
+
206
+ entityCompleted.forEach(appointment => {
207
+ const products = extractProductUsage(appointment);
208
+ products.forEach(product => {
209
+ if (productMap.has(product.productId)) {
210
+ const existing = productMap.get(product.productId)!;
211
+ existing.quantity += product.quantity;
212
+ existing.revenue += product.subtotal;
213
+ existing.usageCount++;
214
+ } else {
215
+ productMap.set(product.productId, {
216
+ name: product.productName,
217
+ brandName: product.brandName,
218
+ quantity: product.quantity,
219
+ revenue: product.subtotal,
220
+ usageCount: 1,
221
+ });
222
+ }
223
+ });
224
+ });
225
+
226
+ const topProducts = Array.from(productMap.entries())
227
+ .map(([productId, productData]) => ({
228
+ productId,
229
+ productName: productData.name,
230
+ brandName: productData.brandName,
231
+ totalQuantity: productData.quantity,
232
+ totalRevenue: productData.revenue,
233
+ usageCount: productData.usageCount,
234
+ }))
235
+ .sort((a, b) => b.totalRevenue - a.totalRevenue)
236
+ .slice(0, 10);
237
+
238
+ const totalProductRevenue = topProducts.reduce((sum, p) => sum + p.totalRevenue, 0);
239
+ const totalProductQuantity = topProducts.reduce((sum, p) => sum + p.totalQuantity, 0);
240
+
241
+ // Get practitioner info when grouping by procedure
242
+ let practitionerId: string | undefined;
243
+ let practitionerName: string | undefined;
244
+ if (entityType === 'procedure' && entityAppointments.length > 0) {
245
+ const firstAppointment = entityAppointments[0];
246
+ practitionerId = firstAppointment.practitionerId;
247
+ practitionerName = firstAppointment.practitionerInfo?.name;
248
+ }
249
+
250
+ return {
251
+ entityId,
252
+ entityName: data.name,
253
+ entityType,
254
+ totalProductsUsed: productMap.size,
255
+ uniqueProducts: productMap.size,
256
+ totalProductRevenue,
257
+ totalProductQuantity,
258
+ averageProductsPerAppointment:
259
+ entityCompleted.length > 0 ? productMap.size / entityCompleted.length : 0,
260
+ topProducts,
261
+ ...(practitionerId && { practitionerId }),
262
+ ...(practitionerName && { practitionerName }),
263
+ };
264
+ });
265
+ }
266
+
267
+ /**
268
+ * Calculates grouped time efficiency metrics
269
+ */
270
+ export function calculateGroupedTimeEfficiencyMetrics(
271
+ appointments: Appointment[],
272
+ entityType: EntityType,
273
+ ): GroupedTimeEfficiencyMetrics[] {
274
+ const entityMap = groupAppointmentsByEntity(appointments, entityType);
275
+ const completed = getCompletedAppointments(appointments);
276
+
277
+ return Array.from(entityMap.entries()).map(([entityId, data]) => {
278
+ const entityAppointments = data.appointments;
279
+ const entityCompleted = entityAppointments.filter(a =>
280
+ completed.some(c => c.id === a.id),
281
+ );
282
+
283
+ const timeMetrics = calculateAverageTimeMetrics(entityCompleted);
284
+
285
+ // Get practitioner info when grouping by procedure
286
+ let practitionerId: string | undefined;
287
+ let practitionerName: string | undefined;
288
+ if (entityType === 'procedure' && entityAppointments.length > 0) {
289
+ const firstAppointment = entityAppointments[0];
290
+ practitionerId = firstAppointment.practitionerId;
291
+ practitionerName = firstAppointment.practitionerInfo?.name;
292
+ }
293
+
294
+ return {
295
+ entityId,
296
+ entityName: data.name,
297
+ entityType,
298
+ totalAppointments: entityCompleted.length,
299
+ appointmentsWithActualTime: timeMetrics.appointmentsWithActualTime,
300
+ averageBookedDuration: timeMetrics.averageBookedDuration,
301
+ averageActualDuration: timeMetrics.averageActualDuration,
302
+ averageEfficiency: timeMetrics.averageEfficiency,
303
+ totalOverrun: timeMetrics.totalOverrun,
304
+ totalUnderutilization: timeMetrics.totalUnderutilization,
305
+ averageOverrun: timeMetrics.averageOverrun,
306
+ averageUnderutilization: timeMetrics.averageUnderutilization,
307
+ ...(practitionerId && { practitionerId }),
308
+ ...(practitionerName && { practitionerName }),
309
+ };
310
+ });
311
+ }
312
+
313
+ /**
314
+ * Calculates grouped patient behavior metrics
315
+ */
316
+ export function calculateGroupedPatientBehaviorMetrics(
317
+ appointments: Appointment[],
318
+ entityType: EntityType,
319
+ ): GroupedPatientBehaviorMetrics[] {
320
+ const entityMap = groupAppointmentsByEntity(appointments, entityType);
321
+ const canceled = getCanceledAppointments(appointments);
322
+ const noShow = getNoShowAppointments(appointments);
323
+
324
+ return Array.from(entityMap.entries()).map(([entityId, data]) => {
325
+ const entityAppointments = data.appointments;
326
+
327
+ // Group by patient to analyze behavior
328
+ const patientMap = new Map<
329
+ string,
330
+ {
331
+ name: string;
332
+ appointments: Appointment[];
333
+ noShows: Appointment[];
334
+ cancellations: Appointment[];
335
+ }
336
+ >();
337
+
338
+ entityAppointments.forEach(appointment => {
339
+ const patientId = appointment.patientId;
340
+ const patientName = appointment.patientInfo?.fullName || 'Unknown';
341
+
342
+ if (!patientMap.has(patientId)) {
343
+ patientMap.set(patientId, {
344
+ name: patientName,
345
+ appointments: [],
346
+ noShows: [],
347
+ cancellations: [],
348
+ });
349
+ }
350
+
351
+ const patientData = patientMap.get(patientId)!;
352
+ patientData.appointments.push(appointment);
353
+
354
+ if (noShow.some(ns => ns.id === appointment.id)) {
355
+ patientData.noShows.push(appointment);
356
+ }
357
+ if (canceled.some(c => c.id === appointment.id)) {
358
+ patientData.cancellations.push(appointment);
359
+ }
360
+ });
361
+
362
+ // Calculate patient-level metrics
363
+ const patientMetrics = Array.from(patientMap.entries()).map(([patientId, patientData]) => ({
364
+ patientId,
365
+ patientName: patientData.name,
366
+ noShowCount: patientData.noShows.length,
367
+ cancellationCount: patientData.cancellations.length,
368
+ totalAppointments: patientData.appointments.length,
369
+ noShowRate: calculatePercentage(
370
+ patientData.noShows.length,
371
+ patientData.appointments.length,
372
+ ),
373
+ cancellationRate: calculatePercentage(
374
+ patientData.cancellations.length,
375
+ patientData.appointments.length,
376
+ ),
377
+ }));
378
+
379
+ const patientsWithNoShows = patientMetrics.filter(p => p.noShowCount > 0).length;
380
+ const patientsWithCancellations = patientMetrics.filter(p => p.cancellationCount > 0).length;
381
+
382
+ const averageNoShowRate =
383
+ patientMetrics.length > 0
384
+ ? patientMetrics.reduce((sum, p) => sum + p.noShowRate, 0) / patientMetrics.length
385
+ : 0;
386
+
387
+ const averageCancellationRate =
388
+ patientMetrics.length > 0
389
+ ? patientMetrics.reduce((sum, p) => sum + p.cancellationRate, 0) / patientMetrics.length
390
+ : 0;
391
+
392
+ const topNoShowPatients = patientMetrics
393
+ .filter(p => p.noShowCount > 0)
394
+ .sort((a, b) => b.noShowRate - a.noShowRate)
395
+ .slice(0, 10)
396
+ .map(p => ({
397
+ patientId: p.patientId,
398
+ patientName: p.patientName,
399
+ noShowCount: p.noShowCount,
400
+ totalAppointments: p.totalAppointments,
401
+ noShowRate: p.noShowRate,
402
+ }));
403
+
404
+ const topCancellationPatients = patientMetrics
405
+ .filter(p => p.cancellationCount > 0)
406
+ .sort((a, b) => b.cancellationRate - a.cancellationRate)
407
+ .slice(0, 10)
408
+ .map(p => ({
409
+ patientId: p.patientId,
410
+ patientName: p.patientName,
411
+ cancellationCount: p.cancellationCount,
412
+ totalAppointments: p.totalAppointments,
413
+ cancellationRate: p.cancellationRate,
414
+ }));
415
+
416
+ // Determine new vs returning patients
417
+ const newPatients = patientMetrics.filter(p => p.totalAppointments === 1).length;
418
+ const returningPatients = patientMetrics.filter(p => p.totalAppointments > 1).length;
419
+
420
+ return {
421
+ entityId,
422
+ entityName: data.name,
423
+ entityType,
424
+ totalPatients: patientMap.size,
425
+ patientsWithNoShows,
426
+ patientsWithCancellations,
427
+ averageNoShowRate: Math.round(averageNoShowRate * 100) / 100,
428
+ averageCancellationRate: Math.round(averageCancellationRate * 100) / 100,
429
+ topNoShowPatients,
430
+ topCancellationPatients,
431
+ };
432
+ });
433
+ }
434
+