hvp-shared 6.56.0 → 6.57.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.
|
@@ -23,6 +23,7 @@ export declare enum JobCategory {
|
|
|
23
23
|
ADMIN = "ADMIN",
|
|
24
24
|
ADVISOR = "ADVISOR"
|
|
25
25
|
}
|
|
26
|
+
export declare const JOB_CATEGORY_LABELS: Record<JobCategory, string>;
|
|
26
27
|
/**
|
|
27
28
|
* Jobs that count as veterinarians for shift coverage rules.
|
|
28
29
|
* Includes directors and full vets.
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* VET_CATEGORIES.includes(job.category)
|
|
11
11
|
*/
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.ALL_MEDICAL_CATEGORIES = exports.VET_CATEGORIES = exports.JobCategory = void 0;
|
|
13
|
+
exports.ALL_MEDICAL_CATEGORIES = exports.VET_CATEGORIES = exports.JOB_CATEGORY_LABELS = exports.JobCategory = void 0;
|
|
14
14
|
/**
|
|
15
15
|
* Functional category for a job position.
|
|
16
16
|
*
|
|
@@ -27,6 +27,15 @@ var JobCategory;
|
|
|
27
27
|
JobCategory["ADMIN"] = "ADMIN";
|
|
28
28
|
JobCategory["ADVISOR"] = "ADVISOR";
|
|
29
29
|
})(JobCategory || (exports.JobCategory = JobCategory = {}));
|
|
30
|
+
exports.JOB_CATEGORY_LABELS = {
|
|
31
|
+
[JobCategory.MEDICAL_DIRECTOR]: "Director médico",
|
|
32
|
+
[JobCategory.VET]: "Veterinario",
|
|
33
|
+
[JobCategory.VET_ASSISTANT]: "Asistente veterinario",
|
|
34
|
+
[JobCategory.TRAINEE]: "Practicante",
|
|
35
|
+
[JobCategory.RECEPTIONIST]: "Recepcionista",
|
|
36
|
+
[JobCategory.ADMIN]: "Administrativo",
|
|
37
|
+
[JobCategory.ADVISOR]: "Asesor",
|
|
38
|
+
};
|
|
30
39
|
/**
|
|
31
40
|
* Jobs that count as veterinarians for shift coverage rules.
|
|
32
41
|
* Includes directors and full vets.
|