@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.
@@ -7932,9 +7932,21 @@ async function createFreeConsultationInfrastructure(db) {
7932
7932
  contraindications: [],
7933
7933
  // No contraindications for consultation
7934
7934
  benefits: [
7935
- "IMPROVED_PATIENT_UNDERSTANDING",
7936
- "BETTER_TREATMENT_PLANNING",
7937
- "ENHANCED_PATIENT_CONFIDENCE"
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 */,
@@ -7870,9 +7870,21 @@ async function createFreeConsultationInfrastructure(db) {
7870
7870
  contraindications: [],
7871
7871
  // No contraindications for consultation
7872
7872
  benefits: [
7873
- "IMPROVED_PATIENT_UNDERSTANDING",
7874
- "BETTER_TREATMENT_PLANNING",
7875
- "ENHANCED_PATIENT_CONFIDENCE"
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blackcode_sa/metaestetics-api",
3
3
  "private": false,
4
- "version": "1.12.55",
4
+ "version": "1.12.56",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -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
- 'IMPROVED_PATIENT_UNDERSTANDING',
114
- 'BETTER_TREATMENT_PLANNING',
115
- 'ENHANCED_PATIENT_CONFIDENCE',
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,