@blackcode_sa/metaestetics-api 1.8.9 → 1.8.11

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/index.js CHANGED
@@ -5266,10 +5266,8 @@ var PatientService = class extends BaseService {
5266
5266
  currentMedications: [],
5267
5267
  emergencyNotes: "",
5268
5268
  lastUpdated: now,
5269
- updatedBy: requester.id,
5269
+ updatedBy: requester.id
5270
5270
  // The admin who created the record
5271
- verifiedAt: void 0,
5272
- verifiedBy: void 0
5273
5271
  };
5274
5272
  batch.set(medicalInfoRef, newMedicalInfo);
5275
5273
  await batch.commit();
package/dist/index.mjs CHANGED
@@ -5295,10 +5295,8 @@ var PatientService = class extends BaseService {
5295
5295
  currentMedications: [],
5296
5296
  emergencyNotes: "",
5297
5297
  lastUpdated: now,
5298
- updatedBy: requester.id,
5298
+ updatedBy: requester.id
5299
5299
  // The admin who created the record
5300
- verifiedAt: void 0,
5301
- verifiedBy: void 0
5302
5300
  };
5303
5301
  batch.set(medicalInfoRef, newMedicalInfo);
5304
5302
  await batch.commit();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blackcode_sa/metaestetics-api",
3
3
  "private": false,
4
- "version": "1.8.9",
4
+ "version": "1.8.11",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -211,8 +211,6 @@ export class PatientService extends BaseService {
211
211
  emergencyNotes: "",
212
212
  lastUpdated: now,
213
213
  updatedBy: requester.id, // The admin who created the record
214
- verifiedAt: undefined,
215
- verifiedBy: undefined,
216
214
  };
217
215
  batch.set(medicalInfoRef, newMedicalInfo);
218
216