@eka-care/abdm-dashboard-stg 0.0.5 → 0.0.6
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 -1
- package/dist/sdk/abdm/js/abdm.js +91 -91
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -243,11 +243,12 @@ src/
|
|
|
243
243
|
│ │ ├── post-hpr-mobile-verify.ts
|
|
244
244
|
│ │ ├── post-is-hpr-id-available.ts
|
|
245
245
|
│ │ ├── post-create-hpr.ts
|
|
246
|
+
│ │ ├── get-session-status.ts
|
|
246
247
|
│ │ ├── get-suggest-facilities.ts
|
|
247
248
|
│ │ ├── post-create-hfr.ts
|
|
248
249
|
│ │ └── post-link-hfr.ts
|
|
249
250
|
│ ├── cardApis/cardApi.ts # Metrics cards API
|
|
250
|
-
│ ├── landingApi/
|
|
251
|
+
│ ├── landingApi/hmisDetailsApi.ts # Clinic/HMIS details API
|
|
251
252
|
│ ├── tasksApis/ # Automation settings APIs (get + update)
|
|
252
253
|
│ └── slice/
|
|
253
254
|
│ ├── landingApiSlice.ts # Dashboard Redux state
|
|
@@ -295,6 +296,7 @@ auth: <accessToken> (if provided)
|
|
|
295
296
|
| Mobile Verify | `POST` | `/abdm/nhpr/v1/hpr/mobile/verify` | Verify mobile number |
|
|
296
297
|
| HPR ID Available | `POST` | `/abdm/nhpr/v1/hpr/hpr-id/availability` | Check if a chosen HPR ID is available |
|
|
297
298
|
| Create HPR | `POST` | `/abdm/nhpr/v1/hpr/aadhaar/create?doctor_oid={oid}` | Create HPR profile for a doctor |
|
|
299
|
+
| NHPR Session Status | `GET` | `/abdm/nhpr/v1/status` | NHPR logged in status |
|
|
298
300
|
| Suggest Facilities | `GET` | `/abdm/nhpr/v1/hfr/suggest-facilities` | Suggest existing HFR facilities to link |
|
|
299
301
|
| Create HFR | `POST` | `/abdm/nhpr/v1/hfr/onboard?doctor_oid={oid}` | Register a new health facility |
|
|
300
302
|
| Link HFR | `POST` | `/abdm/nhpr/v1/hfr/link` | Link doctor to an existing HFR facility |
|