@patientos/website-kit 0.2.3 → 0.2.5
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 +8 -0
- package/dist/{chunk-LHP4RZ3N.js → chunk-75FJ5AJB.js} +721 -199
- package/dist/{chunk-MTOKBMBG.js → chunk-7UPUEMXX.js} +1 -1
- package/dist/{chunk-BHVDY6SC.js → chunk-FSZ726DM.js} +198 -13
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -3
- package/dist/islands-impl.d.ts +3 -2
- package/dist/islands-impl.js +2 -2
- package/dist/islands-registry.js +3 -3
- package/dist/{portal-account-pI1cWgsT.d.ts → portal-account-8uQc_Ncx.d.ts} +8 -2
- package/dist/{portal-account.client-DPRRmfCJ.d.ts → portal-account.client-BBe_q9yC.d.ts} +1 -1
- package/dist/portal-booking-client.d.ts +3 -2
- package/dist/portal-booking-client.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -26,5 +26,13 @@ export function CertificateFunnel() {
|
|
|
26
26
|
}
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
`clinicPhone` is shown to the patient exactly as you pass it and dialled in E.164 — pass
|
|
30
|
+
`1300 362 555` and every escape link renders `tel:+611300362555`.
|
|
31
|
+
|
|
29
32
|
`publicApi.publishableKey` is public by design and is validated against the consuming
|
|
30
33
|
site's origin by PatientOS. Never put server credentials or patient data in these props.
|
|
34
|
+
|
|
35
|
+
For a PatientOS clinic that explicitly registers `http://localhost:*`, the kit can carry a
|
|
36
|
+
verified patient session back to a dynamically allocated localhost dev server. The
|
|
37
|
+
one-time return credential is scrubbed from the URL and exchanged for a tab-scoped
|
|
38
|
+
bearer; deployed sites continue to use host-only patient cookies.
|