@blackcode_sa/metaestetics-api 1.12.55 → 1.12.56
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/admin/index.js
CHANGED
|
@@ -7932,9 +7932,21 @@ async function createFreeConsultationInfrastructure(db) {
|
|
|
7932
7932
|
contraindications: [],
|
|
7933
7933
|
// No contraindications for consultation
|
|
7934
7934
|
benefits: [
|
|
7935
|
-
|
|
7936
|
-
|
|
7937
|
-
|
|
7935
|
+
{
|
|
7936
|
+
id: "IMPROVED_PATIENT_UNDERSTANDING",
|
|
7937
|
+
name: "Improved Patient Understanding",
|
|
7938
|
+
description: "Helps patients better understand their treatment options and expected outcomes"
|
|
7939
|
+
},
|
|
7940
|
+
{
|
|
7941
|
+
id: "BETTER_TREATMENT_PLANNING",
|
|
7942
|
+
name: "Better Treatment Planning",
|
|
7943
|
+
description: "Enables more effective treatment planning based on patient needs and goals"
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
id: "ENHANCED_PATIENT_CONFIDENCE",
|
|
7947
|
+
name: "Enhanced Patient Confidence",
|
|
7948
|
+
description: "Builds patient confidence through clear communication and professional guidance"
|
|
7949
|
+
}
|
|
7938
7950
|
],
|
|
7939
7951
|
certificationRequirement: {
|
|
7940
7952
|
minimumLevel: "aesthetician" /* AESTHETICIAN */,
|
package/dist/admin/index.mjs
CHANGED
|
@@ -7870,9 +7870,21 @@ async function createFreeConsultationInfrastructure(db) {
|
|
|
7870
7870
|
contraindications: [],
|
|
7871
7871
|
// No contraindications for consultation
|
|
7872
7872
|
benefits: [
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7873
|
+
{
|
|
7874
|
+
id: "IMPROVED_PATIENT_UNDERSTANDING",
|
|
7875
|
+
name: "Improved Patient Understanding",
|
|
7876
|
+
description: "Helps patients better understand their treatment options and expected outcomes"
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
id: "BETTER_TREATMENT_PLANNING",
|
|
7880
|
+
name: "Better Treatment Planning",
|
|
7881
|
+
description: "Enables more effective treatment planning based on patient needs and goals"
|
|
7882
|
+
},
|
|
7883
|
+
{
|
|
7884
|
+
id: "ENHANCED_PATIENT_CONFIDENCE",
|
|
7885
|
+
name: "Enhanced Patient Confidence",
|
|
7886
|
+
description: "Builds patient confidence through clear communication and professional guidance"
|
|
7887
|
+
}
|
|
7876
7888
|
],
|
|
7877
7889
|
certificationRequirement: {
|
|
7878
7890
|
minimumLevel: "aesthetician" /* AESTHETICIAN */,
|
package/package.json
CHANGED
|
@@ -110,9 +110,21 @@ async function createFreeConsultationInfrastructure(db: admin.firestore.Firestor
|
|
|
110
110
|
blockingConditions: [], // No blocking conditions for consultation
|
|
111
111
|
contraindications: [], // No contraindications for consultation
|
|
112
112
|
benefits: [
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
{
|
|
114
|
+
id: 'IMPROVED_PATIENT_UNDERSTANDING',
|
|
115
|
+
name: 'Improved Patient Understanding',
|
|
116
|
+
description: 'Helps patients better understand their treatment options and expected outcomes',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: 'BETTER_TREATMENT_PLANNING',
|
|
120
|
+
name: 'Better Treatment Planning',
|
|
121
|
+
description: 'Enables more effective treatment planning based on patient needs and goals',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: 'ENHANCED_PATIENT_CONFIDENCE',
|
|
125
|
+
name: 'Enhanced Patient Confidence',
|
|
126
|
+
description: 'Builds patient confidence through clear communication and professional guidance',
|
|
127
|
+
},
|
|
116
128
|
],
|
|
117
129
|
certificationRequirement: {
|
|
118
130
|
minimumLevel: CertificationLevel.AESTHETICIAN,
|