@oystehr/sdk 4.1.0 → 4.1.1

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.
@@ -14,4 +14,12 @@ export interface ErxCheckPractitionerEnrollmentResponse {
14
14
  * Whether the practitioner's account with the upstream eRx provider is active.
15
15
  */
16
16
  active: boolean;
17
+ /**
18
+ * Whether the practitioner's identity has been verified by the upstream eRx provider.
19
+ */
20
+ identityVerified: boolean;
21
+ /**
22
+ * Whether the practitioner has enrolled in two-factor authentication with the upstream eRx provider.
23
+ */
24
+ twoFactorEnrolled: boolean;
17
25
  }
@@ -14,4 +14,12 @@ export interface ErxCheckPractitionerEnrollmentResponse {
14
14
  * Whether the practitioner's account with the upstream eRx provider is active.
15
15
  */
16
16
  active: boolean;
17
+ /**
18
+ * Whether the practitioner's identity has been verified by the upstream eRx provider.
19
+ */
20
+ identityVerified: boolean;
21
+ /**
22
+ * Whether the practitioner has enrolled in two-factor authentication with the upstream eRx provider.
23
+ */
24
+ twoFactorEnrolled: boolean;
17
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oystehr/sdk",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "Oystehr SDK",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -16,4 +16,12 @@ export interface ErxCheckPractitionerEnrollmentResponse {
16
16
  * Whether the practitioner's account with the upstream eRx provider is active.
17
17
  */
18
18
  active: boolean;
19
+ /**
20
+ * Whether the practitioner's identity has been verified by the upstream eRx provider.
21
+ */
22
+ identityVerified: boolean;
23
+ /**
24
+ * Whether the practitioner has enrolled in two-factor authentication with the upstream eRx provider.
25
+ */
26
+ twoFactorEnrolled: boolean;
19
27
  }