@ooneex/education 0.0.1 → 0.0.4
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.
package/dist/medecine/index.d.ts
CHANGED
|
@@ -874,6 +874,7 @@ declare const FIELDS_RO: readonly [{
|
|
|
874
874
|
readonly color: "#db2777";
|
|
875
875
|
readonly description: "Psihologia este studiul științific al comportamentului uman, proceselor mentale și factorilor care le influențează. Acest domeniu cuprinde psihologia clinică, psihologia cognitivă, psihologia dezvoltării, psihologia socială, neuropsihologia și terapia comportamentală. Psihologii lucrează pentru a înțelege cum gândesc, simt și se comportă oamenii, oferind evaluare, diagnostic și tratament pentru afecțiunile de sănătate mentală, efectuând cercetări asupra comportamentului uman, dezvoltând intervenții terapeutice și promovând bunăstarea psihologică. Ei servesc populații diverse în diverse medii, inclusiv spitale, clinici, școli, instituții de cercetare și practică privată, ajutând indivizii să depășească provocările, să îmbunătățească sănătatea mentală și să îmbunătățească calitatea vieții.";
|
|
876
876
|
}];
|
|
877
|
+
import { IBase } from "@ooneex/types";
|
|
877
878
|
declare const YEARS_EN: readonly [{
|
|
878
879
|
readonly code: "0a1b2c";
|
|
879
880
|
readonly name: "Admission";
|
|
@@ -1077,7 +1078,24 @@ type MedecineYearType = {
|
|
|
1077
1078
|
number: number;
|
|
1078
1079
|
color: string;
|
|
1079
1080
|
};
|
|
1081
|
+
interface IMedecineDiscipline extends IBase {
|
|
1082
|
+
code: string;
|
|
1083
|
+
name: string;
|
|
1084
|
+
description?: string;
|
|
1085
|
+
}
|
|
1086
|
+
interface IMedecineField extends IBase {
|
|
1087
|
+
code: string;
|
|
1088
|
+
name: string;
|
|
1089
|
+
color?: string;
|
|
1090
|
+
description?: string;
|
|
1091
|
+
}
|
|
1092
|
+
interface IMedecineYear extends IBase {
|
|
1093
|
+
code: string;
|
|
1094
|
+
name: string;
|
|
1095
|
+
number: number;
|
|
1096
|
+
color?: string;
|
|
1097
|
+
}
|
|
1080
1098
|
declare const getDisciplineByCode: (code: MedecineDisciplineCodeType) => MedecineDisciplineType | undefined;
|
|
1081
1099
|
declare const getYearByCode: (code: MedecineYearCodeType) => MedecineYearType | undefined;
|
|
1082
1100
|
declare const getFieldByCode: (code: MedecineFieldCodeType) => MedecineFieldType | undefined;
|
|
1083
|
-
export { getYearByCode, getFieldByCode, getDisciplineByCode, YEARS_RO, YEARS_FR, YEARS_EN, MedecineYearType, MedecineYearCodeType, MedecineFieldType, MedecineFieldCodeType, MedecineDisciplineType, MedecineDisciplineCodeType, FIELDS_RO, FIELDS_FR, FIELDS_EN, DISCIPLINES_RO, DISCIPLINES_FR, DISCIPLINES_EN };
|
|
1101
|
+
export { getYearByCode, getFieldByCode, getDisciplineByCode, YEARS_RO, YEARS_FR, YEARS_EN, MedecineYearType, MedecineYearCodeType, MedecineFieldType, MedecineFieldCodeType, MedecineDisciplineType, MedecineDisciplineCodeType, IMedecineYear, IMedecineField, IMedecineDiscipline, FIELDS_RO, FIELDS_FR, FIELDS_EN, DISCIPLINES_RO, DISCIPLINES_FR, DISCIPLINES_EN };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ooneex/education",
|
|
3
|
-
"description": "",
|
|
4
|
-
"version": "0.0.
|
|
3
|
+
"description": "Educational domain types and utilities including medical education support",
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -27,11 +27,19 @@
|
|
|
27
27
|
"build": "bunup",
|
|
28
28
|
"test": "bun test",
|
|
29
29
|
"lint": "tsgo --noEmit && bunx biome lint",
|
|
30
|
-
"publish
|
|
31
|
-
"publish:pack": "bun pm pack --destination ./dist",
|
|
32
|
-
"publish:dry": "bun publish --dry-run"
|
|
30
|
+
"publish": "bun publish --access public || true"
|
|
33
31
|
},
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@ooneex/types": "0.0.1"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"bun",
|
|
37
|
+
"courses",
|
|
38
|
+
"education",
|
|
39
|
+
"learning",
|
|
40
|
+
"medical",
|
|
41
|
+
"ooneex",
|
|
42
|
+
"training",
|
|
43
|
+
"typescript"
|
|
44
|
+
]
|
|
37
45
|
}
|
|
Binary file
|