oro-sdk-apis 1.8.4 → 1.10.0

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.
@@ -36,6 +36,7 @@ export interface WhoAmIResponse {
36
36
  export interface IdentityCreateRequest {
37
37
  practiceUuid: Uuid;
38
38
  email: string;
39
+ emailConfirmed?: boolean;
39
40
  password: Base64String;
40
41
  publicKey: Base64String;
41
42
  recoveryPassword: Base64String;
@@ -127,6 +127,9 @@ export declare type PracticeConfigPractitionerChatbox = PracticeConfig<PracticeC
127
127
  planUpdatedMessage?: {
128
128
  [languageISO639_3: string]: string;
129
129
  };
130
+ examsUpdatedMessage?: {
131
+ [languageISO639_3: string]: string;
132
+ };
130
133
  }>;
131
134
  export declare type PracticeConfigPracticeOnlinePharmacy = PracticeConfig<PracticeConfigKind.PracticePharmacyPicker, {
132
135
  onlinePharmacy?: {
@@ -138,6 +141,7 @@ export declare type PracticeConfigPracticeOnlinePharmacy = PracticeConfig<Practi
138
141
  extension: string | null;
139
142
  type: string;
140
143
  isTollFree: boolean;
144
+ province?: string;
141
145
  }[];
142
146
  };
143
147
  }>;