@healthcloudai/hc-login-connector 0.3.1 → 0.4.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.
- package/README.md +3 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -260,12 +260,7 @@ await loginClient.register(
|
|
|
260
260
|
{
|
|
261
261
|
isOTP: true,
|
|
262
262
|
attributes: {
|
|
263
|
-
|
|
264
|
-
NPINumber: "1234567890",
|
|
265
|
-
FullName: "John Doe",
|
|
266
|
-
PracticeLegalName: "Acme Medical Group",
|
|
267
|
-
CurrentTreatments: "Physical Therapy,Blood Pressure Monitoring,Insulin Therapy",
|
|
268
|
-
// CurrentTreatments: "Physical Therapy | Blood Pressure Monitoring | Insulin Therapy"
|
|
263
|
+
"ReferralSource": "Friend"
|
|
269
264
|
}
|
|
270
265
|
}
|
|
271
266
|
);
|
|
@@ -287,12 +282,8 @@ Request sent for the OTP example above:
|
|
|
287
282
|
"LastName": "Smith",
|
|
288
283
|
"Email": "john.smith@example.com",
|
|
289
284
|
"Attributes": {
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"FullName": "John Doe",
|
|
293
|
-
"PracticeLegalName": "Acme Medical Group",
|
|
294
|
-
"CurrentTreatments": "Physical Therapy,Blood Pressure Monitoring,Insulin Therapy",
|
|
295
|
-
"VERIFY_EMAIL_CODE": "true"
|
|
285
|
+
"VERIFY_EMAIL_CODE": "true",
|
|
286
|
+
"ReferralSource": "Friend"
|
|
296
287
|
}
|
|
297
288
|
}
|
|
298
289
|
}
|
package/package.json
CHANGED