hvp-shared 13.10.0 → 13.11.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.
|
@@ -78,4 +78,11 @@ export interface CreateAppointmentRequest {
|
|
|
78
78
|
startDateTime: string;
|
|
79
79
|
/** Duration in minutes (e.g. 30, 60, 90). */
|
|
80
80
|
durationMinutes: number;
|
|
81
|
+
/**
|
|
82
|
+
* Optional override for the scheduler col_code (who actually agendó). At
|
|
83
|
+
* HVP recepción shares a PC session, so the authenticated user may not be
|
|
84
|
+
* who's taking the call. The backend validates this against the active
|
|
85
|
+
* collaborators list. If omitted, the auth user's col_code is used.
|
|
86
|
+
*/
|
|
87
|
+
schedulerColCode?: string;
|
|
81
88
|
}
|