hvp-shared 13.8.1 → 13.9.0
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.
|
@@ -58,6 +58,15 @@ export declare const BRANCH_COLOR_IDS: Readonly<Record<AppointmentBranch, string
|
|
|
58
58
|
export declare const COLOR_ID_TO_BRANCH: Readonly<Record<string, AppointmentBranch>>;
|
|
59
59
|
/** colorId 8 (Graphite) = cancelled. Tracked as a separate metric. */
|
|
60
60
|
export declare const CANCELLED_COLOR_ID = "8";
|
|
61
|
+
/**
|
|
62
|
+
* colorId 7 (Peacock cyan) = cliente no llegó (no-show).
|
|
63
|
+
*
|
|
64
|
+
* Convention: when a client doesn't show up to their appointment, recepción
|
|
65
|
+
* repinta el evento con este color para señalar pendiente-de-seguimiento.
|
|
66
|
+
* Tracked separately from cancellations (which are client-initiated) and
|
|
67
|
+
* excluded from compliance scoring.
|
|
68
|
+
*/
|
|
69
|
+
export declare const NO_SHOW_COLOR_ID = "7";
|
|
61
70
|
/**
|
|
62
71
|
* colorIds reserved for special events (NOT patient appointments).
|
|
63
72
|
*
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* runs remain reproducible.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.HVP_EVENT_PROP_KEYS = exports.KNOWN_BREEDS = exports.PET_AGE_REGEX = exports.SCHEDULER_DATE_FALLBACK_REGEX = exports.SCHEDULER_WITH_DATE_REGEX = exports.SCHEDULER_REGEX = exports.PHONE_REGEX = exports.QVET_ID_REGEX = exports.CANCELLED_TITLE_REGEX = exports.REMINDER_TITLE_REGEX = exports.PREFERRED_VET_REGEX = exports.EXCLUDED_TITLE_PREFIXES = exports.SERVICE_CODE_SYNONYMS = exports.CANONICAL_SERVICE_CODES = exports.EXCLUDED_COLOR_IDS = exports.CANCELLED_COLOR_ID = exports.COLOR_ID_TO_BRANCH = exports.BRANCH_COLOR_IDS = exports.STANDARD_V1 = exports.STANDARD_V3 = exports.STANDARD_V2 = void 0;
|
|
16
|
+
exports.HVP_EVENT_PROP_KEYS = exports.KNOWN_BREEDS = exports.PET_AGE_REGEX = exports.SCHEDULER_DATE_FALLBACK_REGEX = exports.SCHEDULER_WITH_DATE_REGEX = exports.SCHEDULER_REGEX = exports.PHONE_REGEX = exports.QVET_ID_REGEX = exports.CANCELLED_TITLE_REGEX = exports.REMINDER_TITLE_REGEX = exports.PREFERRED_VET_REGEX = exports.EXCLUDED_TITLE_PREFIXES = exports.SERVICE_CODE_SYNONYMS = exports.CANONICAL_SERVICE_CODES = exports.EXCLUDED_COLOR_IDS = exports.NO_SHOW_COLOR_ID = exports.CANCELLED_COLOR_ID = exports.COLOR_ID_TO_BRANCH = exports.BRANCH_COLOR_IDS = exports.STANDARD_V1 = exports.STANDARD_V3 = exports.STANDARD_V2 = void 0;
|
|
17
17
|
// ─── Standard v1 ─────────────────────────────────────────────────────────────
|
|
18
18
|
/**
|
|
19
19
|
* Multi-factor appointment standard v2.
|
|
@@ -213,6 +213,15 @@ exports.COLOR_ID_TO_BRANCH = {
|
|
|
213
213
|
// ─── Excluded colorIds ───────────────────────────────────────────────────────
|
|
214
214
|
/** colorId 8 (Graphite) = cancelled. Tracked as a separate metric. */
|
|
215
215
|
exports.CANCELLED_COLOR_ID = "8";
|
|
216
|
+
/**
|
|
217
|
+
* colorId 7 (Peacock cyan) = cliente no llegó (no-show).
|
|
218
|
+
*
|
|
219
|
+
* Convention: when a client doesn't show up to their appointment, recepción
|
|
220
|
+
* repinta el evento con este color para señalar pendiente-de-seguimiento.
|
|
221
|
+
* Tracked separately from cancellations (which are client-initiated) and
|
|
222
|
+
* excluded from compliance scoring.
|
|
223
|
+
*/
|
|
224
|
+
exports.NO_SHOW_COLOR_ID = "7";
|
|
216
225
|
/**
|
|
217
226
|
* colorIds reserved for special events (NOT patient appointments).
|
|
218
227
|
*
|
|
@@ -53,7 +53,7 @@ export interface DiagnosticDimensionResult {
|
|
|
53
53
|
/**
|
|
54
54
|
* Reason an event was excluded from scoring.
|
|
55
55
|
*/
|
|
56
|
-
export type DiagnosticExclusionReason = 'cancelled' | 'blocker' | 'special' | 'operational' | 'interview' | 'reminder';
|
|
56
|
+
export type DiagnosticExclusionReason = 'cancelled' | 'blocker' | 'special' | 'operational' | 'interview' | 'reminder' | 'no_show';
|
|
57
57
|
/**
|
|
58
58
|
* Full diagnostic result for one event.
|
|
59
59
|
*/
|