@blackcode_sa/metaestetics-api 1.7.40 → 1.7.42

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.
@@ -772,10 +772,10 @@ interface PractitionerBasicInfo {
772
772
  lastName: string;
773
773
  title: string;
774
774
  email: string;
775
- phoneNumber: string;
776
- dateOfBirth: Timestamp | Date;
775
+ phoneNumber: string | null;
776
+ dateOfBirth: Timestamp | Date | null;
777
777
  gender: "male" | "female" | "other";
778
- profileImageUrl?: MediaResource;
778
+ profileImageUrl?: MediaResource | null;
779
779
  bio?: string;
780
780
  languages: string[];
781
781
  }
@@ -788,7 +788,7 @@ interface PractitionerCertification {
788
788
  licenseNumber: string;
789
789
  issuingAuthority: string;
790
790
  issueDate: Timestamp | Date;
791
- expiryDate?: Timestamp | Date;
791
+ expiryDate?: Timestamp | Date | null;
792
792
  verificationStatus: "pending" | "verified" | "rejected";
793
793
  }
794
794
  /**
@@ -772,10 +772,10 @@ interface PractitionerBasicInfo {
772
772
  lastName: string;
773
773
  title: string;
774
774
  email: string;
775
- phoneNumber: string;
776
- dateOfBirth: Timestamp | Date;
775
+ phoneNumber: string | null;
776
+ dateOfBirth: Timestamp | Date | null;
777
777
  gender: "male" | "female" | "other";
778
- profileImageUrl?: MediaResource;
778
+ profileImageUrl?: MediaResource | null;
779
779
  bio?: string;
780
780
  languages: string[];
781
781
  }
@@ -788,7 +788,7 @@ interface PractitionerCertification {
788
788
  licenseNumber: string;
789
789
  issuingAuthority: string;
790
790
  issueDate: Timestamp | Date;
791
- expiryDate?: Timestamp | Date;
791
+ expiryDate?: Timestamp | Date | null;
792
792
  verificationStatus: "pending" | "verified" | "rejected";
793
793
  }
794
794
  /**
@@ -4940,10 +4940,10 @@ interface PractitionerBasicInfo {
4940
4940
  lastName: string;
4941
4941
  title: string;
4942
4942
  email: string;
4943
- phoneNumber: string;
4944
- dateOfBirth: Timestamp | Date;
4943
+ phoneNumber: string | null;
4944
+ dateOfBirth: Timestamp | Date | null;
4945
4945
  gender: "male" | "female" | "other";
4946
- profileImageUrl?: MediaResource;
4946
+ profileImageUrl?: MediaResource | null;
4947
4947
  bio?: string;
4948
4948
  languages: string[];
4949
4949
  }
@@ -4956,7 +4956,7 @@ interface PractitionerCertification {
4956
4956
  licenseNumber: string;
4957
4957
  issuingAuthority: string;
4958
4958
  issueDate: Timestamp | Date;
4959
- expiryDate?: Timestamp | Date;
4959
+ expiryDate?: Timestamp | Date | null;
4960
4960
  verificationStatus: "pending" | "verified" | "rejected";
4961
4961
  }
4962
4962
  /**
@@ -4940,10 +4940,10 @@ interface PractitionerBasicInfo {
4940
4940
  lastName: string;
4941
4941
  title: string;
4942
4942
  email: string;
4943
- phoneNumber: string;
4944
- dateOfBirth: Timestamp | Date;
4943
+ phoneNumber: string | null;
4944
+ dateOfBirth: Timestamp | Date | null;
4945
4945
  gender: "male" | "female" | "other";
4946
- profileImageUrl?: MediaResource;
4946
+ profileImageUrl?: MediaResource | null;
4947
4947
  bio?: string;
4948
4948
  languages: string[];
4949
4949
  }
@@ -4956,7 +4956,7 @@ interface PractitionerCertification {
4956
4956
  licenseNumber: string;
4957
4957
  issuingAuthority: string;
4958
4958
  issueDate: Timestamp | Date;
4959
- expiryDate?: Timestamp | Date;
4959
+ expiryDate?: Timestamp | Date | null;
4960
4960
  verificationStatus: "pending" | "verified" | "rejected";
4961
4961
  }
4962
4962
  /**