@blackcode_sa/metaestetics-api 1.7.42 → 1.7.43

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.d.ts CHANGED
@@ -5936,9 +5936,9 @@ interface User {
5936
5936
  email: string | null;
5937
5937
  roles: UserRole[];
5938
5938
  isAnonymous: boolean;
5939
- createdAt: Timestamp | FieldValue;
5940
- updatedAt: Timestamp | FieldValue;
5941
- lastLoginAt: Timestamp | FieldValue;
5939
+ createdAt: Timestamp | FieldValue | Date;
5940
+ updatedAt: Timestamp | FieldValue | Date;
5941
+ lastLoginAt: Timestamp | FieldValue | Date;
5942
5942
  patientProfile?: string;
5943
5943
  practitionerProfile?: string;
5944
5944
  adminProfile?: string;
@@ -8559,7 +8559,7 @@ declare const emailSchema: z.ZodString;
8559
8559
  declare const passwordSchema: z.ZodString;
8560
8560
  declare const userRoleSchema: z.ZodNativeEnum<typeof UserRole>;
8561
8561
  declare const userRolesSchema: z.ZodArray<z.ZodNativeEnum<typeof UserRole>, "many">;
8562
- declare const timestampSchema: z.ZodType<Timestamp | FieldValue, z.ZodTypeDef, Timestamp | FieldValue>;
8562
+ declare const timestampSchema: z.ZodType<Date | Timestamp | FieldValue, z.ZodTypeDef, Date | Timestamp | FieldValue>;
8563
8563
  /**
8564
8564
  * Validaciona šema za clinic admin opcije pri kreiranju
8565
8565
  */
@@ -8627,31 +8627,31 @@ declare const userSchema: z.ZodObject<{
8627
8627
  email: z.ZodNullable<z.ZodString>;
8628
8628
  roles: z.ZodArray<z.ZodNativeEnum<typeof UserRole>, "many">;
8629
8629
  isAnonymous: z.ZodBoolean;
8630
- createdAt: z.ZodType<Timestamp | FieldValue, z.ZodTypeDef, Timestamp | FieldValue>;
8631
- updatedAt: z.ZodType<Timestamp | FieldValue, z.ZodTypeDef, Timestamp | FieldValue>;
8632
- lastLoginAt: z.ZodType<Timestamp | FieldValue, z.ZodTypeDef, Timestamp | FieldValue>;
8630
+ createdAt: z.ZodType<Date | Timestamp | FieldValue, z.ZodTypeDef, Date | Timestamp | FieldValue>;
8631
+ updatedAt: z.ZodType<Date | Timestamp | FieldValue, z.ZodTypeDef, Date | Timestamp | FieldValue>;
8632
+ lastLoginAt: z.ZodType<Date | Timestamp | FieldValue, z.ZodTypeDef, Date | Timestamp | FieldValue>;
8633
8633
  patientProfile: z.ZodOptional<z.ZodString>;
8634
8634
  practitionerProfile: z.ZodOptional<z.ZodString>;
8635
8635
  adminProfile: z.ZodOptional<z.ZodString>;
8636
8636
  }, "strip", z.ZodTypeAny, {
8637
- createdAt: Timestamp | FieldValue;
8638
- updatedAt: Timestamp | FieldValue;
8637
+ createdAt: Date | Timestamp | FieldValue;
8638
+ updatedAt: Date | Timestamp | FieldValue;
8639
8639
  email: string | null;
8640
8640
  uid: string;
8641
8641
  roles: UserRole[];
8642
8642
  isAnonymous: boolean;
8643
- lastLoginAt: Timestamp | FieldValue;
8643
+ lastLoginAt: Date | Timestamp | FieldValue;
8644
8644
  patientProfile?: string | undefined;
8645
8645
  practitionerProfile?: string | undefined;
8646
8646
  adminProfile?: string | undefined;
8647
8647
  }, {
8648
- createdAt: Timestamp | FieldValue;
8649
- updatedAt: Timestamp | FieldValue;
8648
+ createdAt: Date | Timestamp | FieldValue;
8649
+ updatedAt: Date | Timestamp | FieldValue;
8650
8650
  email: string | null;
8651
8651
  uid: string;
8652
8652
  roles: UserRole[];
8653
8653
  isAnonymous: boolean;
8654
- lastLoginAt: Timestamp | FieldValue;
8654
+ lastLoginAt: Date | Timestamp | FieldValue;
8655
8655
  patientProfile?: string | undefined;
8656
8656
  practitionerProfile?: string | undefined;
8657
8657
  adminProfile?: string | undefined;
@@ -9261,7 +9261,7 @@ declare const allergySchema: z.ZodObject<{
9261
9261
  }, {
9262
9262
  seconds: number;
9263
9263
  nanoseconds: number;
9264
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9264
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9265
9265
  seconds: number;
9266
9266
  nanoseconds: number;
9267
9267
  }>>>;
@@ -9280,7 +9280,7 @@ declare const allergySchema: z.ZodObject<{
9280
9280
  name?: string | null | undefined;
9281
9281
  severity?: "mild" | "moderate" | "severe" | undefined;
9282
9282
  reaction?: string | null | undefined;
9283
- diagnosed?: _firebase_firestore.Timestamp | {
9283
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
9284
9284
  seconds: number;
9285
9285
  nanoseconds: number;
9286
9286
  } | null | undefined;
@@ -9302,7 +9302,7 @@ declare const vitalStatsSchema: z.ZodObject<{
9302
9302
  }, {
9303
9303
  seconds: number;
9304
9304
  nanoseconds: number;
9305
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9305
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9306
9306
  seconds: number;
9307
9307
  nanoseconds: number;
9308
9308
  }>;
@@ -9313,7 +9313,7 @@ declare const vitalStatsSchema: z.ZodObject<{
9313
9313
  }, {
9314
9314
  systolic: number;
9315
9315
  diastolic: number;
9316
- lastMeasured: _firebase_firestore.Timestamp | {
9316
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9317
9317
  seconds: number;
9318
9318
  nanoseconds: number;
9319
9319
  };
@@ -9334,7 +9334,7 @@ declare const vitalStatsSchema: z.ZodObject<{
9334
9334
  bloodPressure?: {
9335
9335
  systolic: number;
9336
9336
  diastolic: number;
9337
- lastMeasured: _firebase_firestore.Timestamp | {
9337
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9338
9338
  seconds: number;
9339
9339
  nanoseconds: number;
9340
9340
  };
@@ -9351,7 +9351,7 @@ declare const blockingConditionSchema: z.ZodObject<{
9351
9351
  }, {
9352
9352
  seconds: number;
9353
9353
  nanoseconds: number;
9354
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9354
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9355
9355
  seconds: number;
9356
9356
  nanoseconds: number;
9357
9357
  }>;
@@ -9365,7 +9365,7 @@ declare const blockingConditionSchema: z.ZodObject<{
9365
9365
  }, {
9366
9366
  isActive: boolean;
9367
9367
  condition: BlockingCondition;
9368
- diagnosedAt: _firebase_firestore.Timestamp | {
9368
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
9369
9369
  seconds: number;
9370
9370
  nanoseconds: number;
9371
9371
  };
@@ -9382,7 +9382,7 @@ declare const contraindicationSchema: z.ZodObject<{
9382
9382
  }, {
9383
9383
  seconds: number;
9384
9384
  nanoseconds: number;
9385
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9385
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9386
9386
  seconds: number;
9387
9387
  nanoseconds: number;
9388
9388
  }>;
@@ -9398,7 +9398,7 @@ declare const contraindicationSchema: z.ZodObject<{
9398
9398
  }, {
9399
9399
  isActive: boolean;
9400
9400
  condition: Contraindication;
9401
- lastOccurrence: _firebase_firestore.Timestamp | {
9401
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
9402
9402
  seconds: number;
9403
9403
  nanoseconds: number;
9404
9404
  };
@@ -9418,7 +9418,7 @@ declare const medicationSchema: z.ZodObject<{
9418
9418
  }, {
9419
9419
  seconds: number;
9420
9420
  nanoseconds: number;
9421
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9421
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9422
9422
  seconds: number;
9423
9423
  nanoseconds: number;
9424
9424
  }>>>;
@@ -9431,7 +9431,7 @@ declare const medicationSchema: z.ZodObject<{
9431
9431
  }, {
9432
9432
  seconds: number;
9433
9433
  nanoseconds: number;
9434
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9434
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9435
9435
  seconds: number;
9436
9436
  nanoseconds: number;
9437
9437
  }>>>;
@@ -9447,11 +9447,11 @@ declare const medicationSchema: z.ZodObject<{
9447
9447
  name: string;
9448
9448
  dosage: string;
9449
9449
  frequency: string;
9450
- startDate?: _firebase_firestore.Timestamp | {
9450
+ startDate?: Date | _firebase_firestore.Timestamp | {
9451
9451
  seconds: number;
9452
9452
  nanoseconds: number;
9453
9453
  } | null | undefined;
9454
- endDate?: _firebase_firestore.Timestamp | {
9454
+ endDate?: Date | _firebase_firestore.Timestamp | {
9455
9455
  seconds: number;
9456
9456
  nanoseconds: number;
9457
9457
  } | null | undefined;
@@ -9475,7 +9475,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9475
9475
  }, {
9476
9476
  seconds: number;
9477
9477
  nanoseconds: number;
9478
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9478
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9479
9479
  seconds: number;
9480
9480
  nanoseconds: number;
9481
9481
  }>;
@@ -9486,7 +9486,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9486
9486
  }, {
9487
9487
  systolic: number;
9488
9488
  diastolic: number;
9489
- lastMeasured: _firebase_firestore.Timestamp | {
9489
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9490
9490
  seconds: number;
9491
9491
  nanoseconds: number;
9492
9492
  };
@@ -9507,7 +9507,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9507
9507
  bloodPressure?: {
9508
9508
  systolic: number;
9509
9509
  diastolic: number;
9510
- lastMeasured: _firebase_firestore.Timestamp | {
9510
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9511
9511
  seconds: number;
9512
9512
  nanoseconds: number;
9513
9513
  };
@@ -9524,7 +9524,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9524
9524
  }, {
9525
9525
  seconds: number;
9526
9526
  nanoseconds: number;
9527
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9527
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9528
9528
  seconds: number;
9529
9529
  nanoseconds: number;
9530
9530
  }>;
@@ -9538,7 +9538,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9538
9538
  }, {
9539
9539
  isActive: boolean;
9540
9540
  condition: BlockingCondition;
9541
- diagnosedAt: _firebase_firestore.Timestamp | {
9541
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
9542
9542
  seconds: number;
9543
9543
  nanoseconds: number;
9544
9544
  };
@@ -9555,7 +9555,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9555
9555
  }, {
9556
9556
  seconds: number;
9557
9557
  nanoseconds: number;
9558
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9558
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9559
9559
  seconds: number;
9560
9560
  nanoseconds: number;
9561
9561
  }>;
@@ -9571,7 +9571,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9571
9571
  }, {
9572
9572
  isActive: boolean;
9573
9573
  condition: Contraindication;
9574
- lastOccurrence: _firebase_firestore.Timestamp | {
9574
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
9575
9575
  seconds: number;
9576
9576
  nanoseconds: number;
9577
9577
  };
@@ -9593,7 +9593,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9593
9593
  }, {
9594
9594
  seconds: number;
9595
9595
  nanoseconds: number;
9596
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9596
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9597
9597
  seconds: number;
9598
9598
  nanoseconds: number;
9599
9599
  }>>>;
@@ -9612,7 +9612,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9612
9612
  name?: string | null | undefined;
9613
9613
  severity?: "mild" | "moderate" | "severe" | undefined;
9614
9614
  reaction?: string | null | undefined;
9615
- diagnosed?: _firebase_firestore.Timestamp | {
9615
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
9616
9616
  seconds: number;
9617
9617
  nanoseconds: number;
9618
9618
  } | null | undefined;
@@ -9631,7 +9631,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9631
9631
  }, {
9632
9632
  seconds: number;
9633
9633
  nanoseconds: number;
9634
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9634
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9635
9635
  seconds: number;
9636
9636
  nanoseconds: number;
9637
9637
  }>>>;
@@ -9644,7 +9644,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9644
9644
  }, {
9645
9645
  seconds: number;
9646
9646
  nanoseconds: number;
9647
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9647
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9648
9648
  seconds: number;
9649
9649
  nanoseconds: number;
9650
9650
  }>>>;
@@ -9660,11 +9660,11 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9660
9660
  name: string;
9661
9661
  dosage: string;
9662
9662
  frequency: string;
9663
- startDate?: _firebase_firestore.Timestamp | {
9663
+ startDate?: Date | _firebase_firestore.Timestamp | {
9664
9664
  seconds: number;
9665
9665
  nanoseconds: number;
9666
9666
  } | null | undefined;
9667
- endDate?: _firebase_firestore.Timestamp | {
9667
+ endDate?: Date | _firebase_firestore.Timestamp | {
9668
9668
  seconds: number;
9669
9669
  nanoseconds: number;
9670
9670
  } | null | undefined;
@@ -9680,7 +9680,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9680
9680
  }, {
9681
9681
  seconds: number;
9682
9682
  nanoseconds: number;
9683
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9683
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9684
9684
  seconds: number;
9685
9685
  nanoseconds: number;
9686
9686
  }>;
@@ -9695,7 +9695,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9695
9695
  }, {
9696
9696
  seconds: number;
9697
9697
  nanoseconds: number;
9698
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9698
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9699
9699
  seconds: number;
9700
9700
  nanoseconds: number;
9701
9701
  }>>;
@@ -9750,7 +9750,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9750
9750
  contraindications: {
9751
9751
  isActive: boolean;
9752
9752
  condition: Contraindication;
9753
- lastOccurrence: _firebase_firestore.Timestamp | {
9753
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
9754
9754
  seconds: number;
9755
9755
  nanoseconds: number;
9756
9756
  };
@@ -9758,7 +9758,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9758
9758
  notes?: string | null | undefined;
9759
9759
  }[];
9760
9760
  patientId: string;
9761
- lastUpdated: _firebase_firestore.Timestamp | {
9761
+ lastUpdated: Date | _firebase_firestore.Timestamp | {
9762
9762
  seconds: number;
9763
9763
  nanoseconds: number;
9764
9764
  };
@@ -9770,7 +9770,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9770
9770
  bloodPressure?: {
9771
9771
  systolic: number;
9772
9772
  diastolic: number;
9773
- lastMeasured: _firebase_firestore.Timestamp | {
9773
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9774
9774
  seconds: number;
9775
9775
  nanoseconds: number;
9776
9776
  };
@@ -9779,7 +9779,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9779
9779
  blockingConditions: {
9780
9780
  isActive: boolean;
9781
9781
  condition: BlockingCondition;
9782
- diagnosedAt: _firebase_firestore.Timestamp | {
9782
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
9783
9783
  seconds: number;
9784
9784
  nanoseconds: number;
9785
9785
  };
@@ -9791,7 +9791,7 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9791
9791
  name?: string | null | undefined;
9792
9792
  severity?: "mild" | "moderate" | "severe" | undefined;
9793
9793
  reaction?: string | null | undefined;
9794
- diagnosed?: _firebase_firestore.Timestamp | {
9794
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
9795
9795
  seconds: number;
9796
9796
  nanoseconds: number;
9797
9797
  } | null | undefined;
@@ -9801,18 +9801,18 @@ declare const patientMedicalInfoSchema: z.ZodObject<{
9801
9801
  name: string;
9802
9802
  dosage: string;
9803
9803
  frequency: string;
9804
- startDate?: _firebase_firestore.Timestamp | {
9804
+ startDate?: Date | _firebase_firestore.Timestamp | {
9805
9805
  seconds: number;
9806
9806
  nanoseconds: number;
9807
9807
  } | null | undefined;
9808
- endDate?: _firebase_firestore.Timestamp | {
9808
+ endDate?: Date | _firebase_firestore.Timestamp | {
9809
9809
  seconds: number;
9810
9810
  nanoseconds: number;
9811
9811
  } | null | undefined;
9812
9812
  prescribedBy?: string | null | undefined;
9813
9813
  }[];
9814
9814
  verifiedBy?: string | undefined;
9815
- verifiedAt?: _firebase_firestore.Timestamp | {
9815
+ verifiedAt?: Date | _firebase_firestore.Timestamp | {
9816
9816
  seconds: number;
9817
9817
  nanoseconds: number;
9818
9818
  } | undefined;
@@ -9836,7 +9836,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9836
9836
  }, {
9837
9837
  seconds: number;
9838
9838
  nanoseconds: number;
9839
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9839
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9840
9840
  seconds: number;
9841
9841
  nanoseconds: number;
9842
9842
  }>;
@@ -9847,7 +9847,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9847
9847
  }, {
9848
9848
  systolic: number;
9849
9849
  diastolic: number;
9850
- lastMeasured: _firebase_firestore.Timestamp | {
9850
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9851
9851
  seconds: number;
9852
9852
  nanoseconds: number;
9853
9853
  };
@@ -9868,7 +9868,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9868
9868
  bloodPressure?: {
9869
9869
  systolic: number;
9870
9870
  diastolic: number;
9871
- lastMeasured: _firebase_firestore.Timestamp | {
9871
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
9872
9872
  seconds: number;
9873
9873
  nanoseconds: number;
9874
9874
  };
@@ -9885,7 +9885,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9885
9885
  }, {
9886
9886
  seconds: number;
9887
9887
  nanoseconds: number;
9888
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9888
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9889
9889
  seconds: number;
9890
9890
  nanoseconds: number;
9891
9891
  }>;
@@ -9899,7 +9899,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9899
9899
  }, {
9900
9900
  isActive: boolean;
9901
9901
  condition: BlockingCondition;
9902
- diagnosedAt: _firebase_firestore.Timestamp | {
9902
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
9903
9903
  seconds: number;
9904
9904
  nanoseconds: number;
9905
9905
  };
@@ -9916,7 +9916,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9916
9916
  }, {
9917
9917
  seconds: number;
9918
9918
  nanoseconds: number;
9919
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9919
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9920
9920
  seconds: number;
9921
9921
  nanoseconds: number;
9922
9922
  }>;
@@ -9932,7 +9932,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9932
9932
  }, {
9933
9933
  isActive: boolean;
9934
9934
  condition: Contraindication;
9935
- lastOccurrence: _firebase_firestore.Timestamp | {
9935
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
9936
9936
  seconds: number;
9937
9937
  nanoseconds: number;
9938
9938
  };
@@ -9954,7 +9954,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9954
9954
  }, {
9955
9955
  seconds: number;
9956
9956
  nanoseconds: number;
9957
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9957
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9958
9958
  seconds: number;
9959
9959
  nanoseconds: number;
9960
9960
  }>>>;
@@ -9973,7 +9973,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9973
9973
  name?: string | null | undefined;
9974
9974
  severity?: "mild" | "moderate" | "severe" | undefined;
9975
9975
  reaction?: string | null | undefined;
9976
- diagnosed?: _firebase_firestore.Timestamp | {
9976
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
9977
9977
  seconds: number;
9978
9978
  nanoseconds: number;
9979
9979
  } | null | undefined;
@@ -9992,7 +9992,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
9992
9992
  }, {
9993
9993
  seconds: number;
9994
9994
  nanoseconds: number;
9995
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
9995
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
9996
9996
  seconds: number;
9997
9997
  nanoseconds: number;
9998
9998
  }>>>;
@@ -10005,7 +10005,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10005
10005
  }, {
10006
10006
  seconds: number;
10007
10007
  nanoseconds: number;
10008
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10008
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10009
10009
  seconds: number;
10010
10010
  nanoseconds: number;
10011
10011
  }>>>;
@@ -10021,11 +10021,11 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10021
10021
  name: string;
10022
10022
  dosage: string;
10023
10023
  frequency: string;
10024
- startDate?: _firebase_firestore.Timestamp | {
10024
+ startDate?: Date | _firebase_firestore.Timestamp | {
10025
10025
  seconds: number;
10026
10026
  nanoseconds: number;
10027
10027
  } | null | undefined;
10028
- endDate?: _firebase_firestore.Timestamp | {
10028
+ endDate?: Date | _firebase_firestore.Timestamp | {
10029
10029
  seconds: number;
10030
10030
  nanoseconds: number;
10031
10031
  } | null | undefined;
@@ -10041,7 +10041,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10041
10041
  }, {
10042
10042
  seconds: number;
10043
10043
  nanoseconds: number;
10044
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10044
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10045
10045
  seconds: number;
10046
10046
  nanoseconds: number;
10047
10047
  }>;
@@ -10056,7 +10056,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10056
10056
  }, {
10057
10057
  seconds: number;
10058
10058
  nanoseconds: number;
10059
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10059
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10060
10060
  seconds: number;
10061
10061
  nanoseconds: number;
10062
10062
  }>>;
@@ -10106,7 +10106,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10106
10106
  contraindications: {
10107
10107
  isActive: boolean;
10108
10108
  condition: Contraindication;
10109
- lastOccurrence: _firebase_firestore.Timestamp | {
10109
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
10110
10110
  seconds: number;
10111
10111
  nanoseconds: number;
10112
10112
  };
@@ -10120,7 +10120,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10120
10120
  bloodPressure?: {
10121
10121
  systolic: number;
10122
10122
  diastolic: number;
10123
- lastMeasured: _firebase_firestore.Timestamp | {
10123
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10124
10124
  seconds: number;
10125
10125
  nanoseconds: number;
10126
10126
  };
@@ -10129,7 +10129,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10129
10129
  blockingConditions: {
10130
10130
  isActive: boolean;
10131
10131
  condition: BlockingCondition;
10132
- diagnosedAt: _firebase_firestore.Timestamp | {
10132
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
10133
10133
  seconds: number;
10134
10134
  nanoseconds: number;
10135
10135
  };
@@ -10141,7 +10141,7 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10141
10141
  name?: string | null | undefined;
10142
10142
  severity?: "mild" | "moderate" | "severe" | undefined;
10143
10143
  reaction?: string | null | undefined;
10144
- diagnosed?: _firebase_firestore.Timestamp | {
10144
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
10145
10145
  seconds: number;
10146
10146
  nanoseconds: number;
10147
10147
  } | null | undefined;
@@ -10151,11 +10151,11 @@ declare const createPatientMedicalInfoSchema: z.ZodObject<Omit<{
10151
10151
  name: string;
10152
10152
  dosage: string;
10153
10153
  frequency: string;
10154
- startDate?: _firebase_firestore.Timestamp | {
10154
+ startDate?: Date | _firebase_firestore.Timestamp | {
10155
10155
  seconds: number;
10156
10156
  nanoseconds: number;
10157
10157
  } | null | undefined;
10158
- endDate?: _firebase_firestore.Timestamp | {
10158
+ endDate?: Date | _firebase_firestore.Timestamp | {
10159
10159
  seconds: number;
10160
10160
  nanoseconds: number;
10161
10161
  } | null | undefined;
@@ -10175,7 +10175,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10175
10175
  }, {
10176
10176
  seconds: number;
10177
10177
  nanoseconds: number;
10178
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10178
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10179
10179
  seconds: number;
10180
10180
  nanoseconds: number;
10181
10181
  }>;
@@ -10191,7 +10191,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10191
10191
  }, {
10192
10192
  isActive: boolean;
10193
10193
  condition: Contraindication;
10194
- lastOccurrence: _firebase_firestore.Timestamp | {
10194
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
10195
10195
  seconds: number;
10196
10196
  nanoseconds: number;
10197
10197
  };
@@ -10214,7 +10214,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10214
10214
  }, {
10215
10215
  seconds: number;
10216
10216
  nanoseconds: number;
10217
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10217
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10218
10218
  seconds: number;
10219
10219
  nanoseconds: number;
10220
10220
  }>;
@@ -10225,7 +10225,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10225
10225
  }, {
10226
10226
  systolic: number;
10227
10227
  diastolic: number;
10228
- lastMeasured: _firebase_firestore.Timestamp | {
10228
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10229
10229
  seconds: number;
10230
10230
  nanoseconds: number;
10231
10231
  };
@@ -10246,7 +10246,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10246
10246
  bloodPressure?: {
10247
10247
  systolic: number;
10248
10248
  diastolic: number;
10249
- lastMeasured: _firebase_firestore.Timestamp | {
10249
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10250
10250
  seconds: number;
10251
10251
  nanoseconds: number;
10252
10252
  };
@@ -10263,7 +10263,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10263
10263
  }, {
10264
10264
  seconds: number;
10265
10265
  nanoseconds: number;
10266
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10266
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10267
10267
  seconds: number;
10268
10268
  nanoseconds: number;
10269
10269
  }>;
@@ -10277,7 +10277,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10277
10277
  }, {
10278
10278
  isActive: boolean;
10279
10279
  condition: BlockingCondition;
10280
- diagnosedAt: _firebase_firestore.Timestamp | {
10280
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
10281
10281
  seconds: number;
10282
10282
  nanoseconds: number;
10283
10283
  };
@@ -10298,7 +10298,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10298
10298
  }, {
10299
10299
  seconds: number;
10300
10300
  nanoseconds: number;
10301
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10301
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10302
10302
  seconds: number;
10303
10303
  nanoseconds: number;
10304
10304
  }>>>;
@@ -10317,7 +10317,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10317
10317
  name?: string | null | undefined;
10318
10318
  severity?: "mild" | "moderate" | "severe" | undefined;
10319
10319
  reaction?: string | null | undefined;
10320
- diagnosed?: _firebase_firestore.Timestamp | {
10320
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
10321
10321
  seconds: number;
10322
10322
  nanoseconds: number;
10323
10323
  } | null | undefined;
@@ -10336,7 +10336,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10336
10336
  }, {
10337
10337
  seconds: number;
10338
10338
  nanoseconds: number;
10339
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10339
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10340
10340
  seconds: number;
10341
10341
  nanoseconds: number;
10342
10342
  }>>>;
@@ -10349,7 +10349,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10349
10349
  }, {
10350
10350
  seconds: number;
10351
10351
  nanoseconds: number;
10352
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10352
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10353
10353
  seconds: number;
10354
10354
  nanoseconds: number;
10355
10355
  }>>>;
@@ -10365,11 +10365,11 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10365
10365
  name: string;
10366
10366
  dosage: string;
10367
10367
  frequency: string;
10368
- startDate?: _firebase_firestore.Timestamp | {
10368
+ startDate?: Date | _firebase_firestore.Timestamp | {
10369
10369
  seconds: number;
10370
10370
  nanoseconds: number;
10371
10371
  } | null | undefined;
10372
- endDate?: _firebase_firestore.Timestamp | {
10372
+ endDate?: Date | _firebase_firestore.Timestamp | {
10373
10373
  seconds: number;
10374
10374
  nanoseconds: number;
10375
10375
  } | null | undefined;
@@ -10422,7 +10422,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10422
10422
  contraindications?: {
10423
10423
  isActive: boolean;
10424
10424
  condition: Contraindication;
10425
- lastOccurrence: _firebase_firestore.Timestamp | {
10425
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
10426
10426
  seconds: number;
10427
10427
  nanoseconds: number;
10428
10428
  };
@@ -10436,7 +10436,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10436
10436
  bloodPressure?: {
10437
10437
  systolic: number;
10438
10438
  diastolic: number;
10439
- lastMeasured: _firebase_firestore.Timestamp | {
10439
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10440
10440
  seconds: number;
10441
10441
  nanoseconds: number;
10442
10442
  };
@@ -10445,7 +10445,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10445
10445
  blockingConditions?: {
10446
10446
  isActive: boolean;
10447
10447
  condition: BlockingCondition;
10448
- diagnosedAt: _firebase_firestore.Timestamp | {
10448
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
10449
10449
  seconds: number;
10450
10450
  nanoseconds: number;
10451
10451
  };
@@ -10457,7 +10457,7 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10457
10457
  name?: string | null | undefined;
10458
10458
  severity?: "mild" | "moderate" | "severe" | undefined;
10459
10459
  reaction?: string | null | undefined;
10460
- diagnosed?: _firebase_firestore.Timestamp | {
10460
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
10461
10461
  seconds: number;
10462
10462
  nanoseconds: number;
10463
10463
  } | null | undefined;
@@ -10467,11 +10467,11 @@ declare const updatePatientMedicalInfoSchema: z.ZodObject<{
10467
10467
  name: string;
10468
10468
  dosage: string;
10469
10469
  frequency: string;
10470
- startDate?: _firebase_firestore.Timestamp | {
10470
+ startDate?: Date | _firebase_firestore.Timestamp | {
10471
10471
  seconds: number;
10472
10472
  nanoseconds: number;
10473
10473
  } | null | undefined;
10474
- endDate?: _firebase_firestore.Timestamp | {
10474
+ endDate?: Date | _firebase_firestore.Timestamp | {
10475
10475
  seconds: number;
10476
10476
  nanoseconds: number;
10477
10477
  } | null | undefined;
@@ -10495,7 +10495,7 @@ declare const updateVitalStatsSchema: z.ZodObject<{
10495
10495
  }, {
10496
10496
  seconds: number;
10497
10497
  nanoseconds: number;
10498
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10498
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10499
10499
  seconds: number;
10500
10500
  nanoseconds: number;
10501
10501
  }>;
@@ -10506,7 +10506,7 @@ declare const updateVitalStatsSchema: z.ZodObject<{
10506
10506
  }, {
10507
10507
  systolic: number;
10508
10508
  diastolic: number;
10509
- lastMeasured: _firebase_firestore.Timestamp | {
10509
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10510
10510
  seconds: number;
10511
10511
  nanoseconds: number;
10512
10512
  };
@@ -10527,7 +10527,7 @@ declare const updateVitalStatsSchema: z.ZodObject<{
10527
10527
  bloodPressure?: {
10528
10528
  systolic: number;
10529
10529
  diastolic: number;
10530
- lastMeasured: _firebase_firestore.Timestamp | {
10530
+ lastMeasured: Date | _firebase_firestore.Timestamp | {
10531
10531
  seconds: number;
10532
10532
  nanoseconds: number;
10533
10533
  };
@@ -10548,7 +10548,7 @@ declare const addAllergySchema: z.ZodObject<{
10548
10548
  }, {
10549
10549
  seconds: number;
10550
10550
  nanoseconds: number;
10551
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10551
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10552
10552
  seconds: number;
10553
10553
  nanoseconds: number;
10554
10554
  }>>>;
@@ -10567,7 +10567,7 @@ declare const addAllergySchema: z.ZodObject<{
10567
10567
  name?: string | null | undefined;
10568
10568
  severity?: "mild" | "moderate" | "severe" | undefined;
10569
10569
  reaction?: string | null | undefined;
10570
- diagnosed?: _firebase_firestore.Timestamp | {
10570
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
10571
10571
  seconds: number;
10572
10572
  nanoseconds: number;
10573
10573
  } | null | undefined;
@@ -10588,7 +10588,7 @@ declare const updateAllergySchema: z.ZodObject<z.objectUtil.extendShape<{
10588
10588
  }, {
10589
10589
  seconds: number;
10590
10590
  nanoseconds: number;
10591
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10591
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10592
10592
  seconds: number;
10593
10593
  nanoseconds: number;
10594
10594
  }>>>>;
@@ -10611,7 +10611,7 @@ declare const updateAllergySchema: z.ZodObject<z.objectUtil.extendShape<{
10611
10611
  subtype?: "other" | MedicationAllergySubtype | FoodAllergySubtype | EnvironmentalAllergySubtype | CosmeticAllergySubtype | undefined;
10612
10612
  severity?: "mild" | "moderate" | "severe" | undefined;
10613
10613
  reaction?: string | null | undefined;
10614
- diagnosed?: _firebase_firestore.Timestamp | {
10614
+ diagnosed?: Date | _firebase_firestore.Timestamp | {
10615
10615
  seconds: number;
10616
10616
  nanoseconds: number;
10617
10617
  } | null | undefined;
@@ -10628,7 +10628,7 @@ declare const addBlockingConditionSchema: z.ZodObject<{
10628
10628
  }, {
10629
10629
  seconds: number;
10630
10630
  nanoseconds: number;
10631
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10631
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10632
10632
  seconds: number;
10633
10633
  nanoseconds: number;
10634
10634
  }>;
@@ -10642,7 +10642,7 @@ declare const addBlockingConditionSchema: z.ZodObject<{
10642
10642
  }, {
10643
10643
  isActive: boolean;
10644
10644
  condition: BlockingCondition;
10645
- diagnosedAt: _firebase_firestore.Timestamp | {
10645
+ diagnosedAt: Date | _firebase_firestore.Timestamp | {
10646
10646
  seconds: number;
10647
10647
  nanoseconds: number;
10648
10648
  };
@@ -10659,7 +10659,7 @@ declare const updateBlockingConditionSchema: z.ZodObject<z.objectUtil.extendShap
10659
10659
  }, {
10660
10660
  seconds: number;
10661
10661
  nanoseconds: number;
10662
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10662
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10663
10663
  seconds: number;
10664
10664
  nanoseconds: number;
10665
10665
  }>>;
@@ -10678,7 +10678,7 @@ declare const updateBlockingConditionSchema: z.ZodObject<z.objectUtil.extendShap
10678
10678
  isActive?: boolean | undefined;
10679
10679
  notes?: string | null | undefined;
10680
10680
  condition?: BlockingCondition | undefined;
10681
- diagnosedAt?: _firebase_firestore.Timestamp | {
10681
+ diagnosedAt?: Date | _firebase_firestore.Timestamp | {
10682
10682
  seconds: number;
10683
10683
  nanoseconds: number;
10684
10684
  } | undefined;
@@ -10694,7 +10694,7 @@ declare const addContraindicationSchema: z.ZodObject<{
10694
10694
  }, {
10695
10695
  seconds: number;
10696
10696
  nanoseconds: number;
10697
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10697
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10698
10698
  seconds: number;
10699
10699
  nanoseconds: number;
10700
10700
  }>;
@@ -10710,7 +10710,7 @@ declare const addContraindicationSchema: z.ZodObject<{
10710
10710
  }, {
10711
10711
  isActive: boolean;
10712
10712
  condition: Contraindication;
10713
- lastOccurrence: _firebase_firestore.Timestamp | {
10713
+ lastOccurrence: Date | _firebase_firestore.Timestamp | {
10714
10714
  seconds: number;
10715
10715
  nanoseconds: number;
10716
10716
  };
@@ -10728,7 +10728,7 @@ declare const updateContraindicationSchema: z.ZodObject<z.objectUtil.extendShape
10728
10728
  }, {
10729
10729
  seconds: number;
10730
10730
  nanoseconds: number;
10731
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10731
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10732
10732
  seconds: number;
10733
10733
  nanoseconds: number;
10734
10734
  }>>;
@@ -10749,7 +10749,7 @@ declare const updateContraindicationSchema: z.ZodObject<z.objectUtil.extendShape
10749
10749
  isActive?: boolean | undefined;
10750
10750
  notes?: string | null | undefined;
10751
10751
  condition?: Contraindication | undefined;
10752
- lastOccurrence?: _firebase_firestore.Timestamp | {
10752
+ lastOccurrence?: Date | _firebase_firestore.Timestamp | {
10753
10753
  seconds: number;
10754
10754
  nanoseconds: number;
10755
10755
  } | undefined;
@@ -10768,7 +10768,7 @@ declare const addMedicationSchema: z.ZodObject<{
10768
10768
  }, {
10769
10769
  seconds: number;
10770
10770
  nanoseconds: number;
10771
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10771
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10772
10772
  seconds: number;
10773
10773
  nanoseconds: number;
10774
10774
  }>>>;
@@ -10781,7 +10781,7 @@ declare const addMedicationSchema: z.ZodObject<{
10781
10781
  }, {
10782
10782
  seconds: number;
10783
10783
  nanoseconds: number;
10784
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10784
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10785
10785
  seconds: number;
10786
10786
  nanoseconds: number;
10787
10787
  }>>>;
@@ -10797,11 +10797,11 @@ declare const addMedicationSchema: z.ZodObject<{
10797
10797
  name: string;
10798
10798
  dosage: string;
10799
10799
  frequency: string;
10800
- startDate?: _firebase_firestore.Timestamp | {
10800
+ startDate?: Date | _firebase_firestore.Timestamp | {
10801
10801
  seconds: number;
10802
10802
  nanoseconds: number;
10803
10803
  } | null | undefined;
10804
- endDate?: _firebase_firestore.Timestamp | {
10804
+ endDate?: Date | _firebase_firestore.Timestamp | {
10805
10805
  seconds: number;
10806
10806
  nanoseconds: number;
10807
10807
  } | null | undefined;
@@ -10820,7 +10820,7 @@ declare const updateMedicationSchema: z.ZodObject<z.objectUtil.extendShape<{
10820
10820
  }, {
10821
10821
  seconds: number;
10822
10822
  nanoseconds: number;
10823
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10823
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10824
10824
  seconds: number;
10825
10825
  nanoseconds: number;
10826
10826
  }>>>>;
@@ -10833,7 +10833,7 @@ declare const updateMedicationSchema: z.ZodObject<z.objectUtil.extendShape<{
10833
10833
  }, {
10834
10834
  seconds: number;
10835
10835
  nanoseconds: number;
10836
- }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>]>, _firebase_firestore.Timestamp, _firebase_firestore.Timestamp | {
10836
+ }>, z.ZodType<_firebase_firestore.Timestamp, z.ZodTypeDef, _firebase_firestore.Timestamp>, z.ZodType<Date, z.ZodTypeDef, Date>]>, _firebase_firestore.Timestamp, Date | _firebase_firestore.Timestamp | {
10837
10837
  seconds: number;
10838
10838
  nanoseconds: number;
10839
10839
  }>>>>;
@@ -10853,11 +10853,11 @@ declare const updateMedicationSchema: z.ZodObject<z.objectUtil.extendShape<{
10853
10853
  name?: string | undefined;
10854
10854
  dosage?: string | undefined;
10855
10855
  frequency?: string | undefined;
10856
- startDate?: _firebase_firestore.Timestamp | {
10856
+ startDate?: Date | _firebase_firestore.Timestamp | {
10857
10857
  seconds: number;
10858
10858
  nanoseconds: number;
10859
10859
  } | null | undefined;
10860
- endDate?: _firebase_firestore.Timestamp | {
10860
+ endDate?: Date | _firebase_firestore.Timestamp | {
10861
10861
  seconds: number;
10862
10862
  nanoseconds: number;
10863
10863
  } | null | undefined;