@medipass/web-sdk 11.70.12 → 11.70.14
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/lib/types/documents.d.ts +25 -0
- package/package.json +3 -3
package/lib/types/documents.d.ts
CHANGED
|
@@ -134,6 +134,26 @@ interface HealthPointResponse {
|
|
|
134
134
|
providerNumbers: [];
|
|
135
135
|
siteId: string;
|
|
136
136
|
}
|
|
137
|
+
interface HealthPointRegisteredOrganisationResponse {
|
|
138
|
+
orgId: string;
|
|
139
|
+
status: string;
|
|
140
|
+
}
|
|
141
|
+
interface HealthPointRegisteredSiteResponse {
|
|
142
|
+
siteId: string;
|
|
143
|
+
status: string;
|
|
144
|
+
}
|
|
145
|
+
interface HealthPointRegisteredDigitalDeviceResponse {
|
|
146
|
+
deviceId: string;
|
|
147
|
+
status: string;
|
|
148
|
+
}
|
|
149
|
+
interface HealthPointRegisteredPhysicalDeviceResponse {
|
|
150
|
+
deviceId: string;
|
|
151
|
+
status: string;
|
|
152
|
+
}
|
|
153
|
+
interface HealthPointRegisteredProvidersResponse {
|
|
154
|
+
providerNumber: string;
|
|
155
|
+
status: string;
|
|
156
|
+
}
|
|
137
157
|
export declare enum HealthPointApplicationStatus {
|
|
138
158
|
APPROVED = "approved",
|
|
139
159
|
SUBMITTED = "submitted",
|
|
@@ -205,6 +225,11 @@ export interface HealthPointRegistrationApplicationResponse {
|
|
|
205
225
|
route: string;
|
|
206
226
|
mobileE164: string;
|
|
207
227
|
};
|
|
228
|
+
registeredDigitalDevice: HealthPointRegisteredDigitalDeviceResponse;
|
|
229
|
+
registeredPhysicalDevices: HealthPointRegisteredPhysicalDeviceResponse[];
|
|
230
|
+
registeredProviders: HealthPointRegisteredProvidersResponse[];
|
|
231
|
+
registeredOrganisation: HealthPointRegisteredOrganisationResponse;
|
|
232
|
+
registeredSite: HealthPointRegisteredSiteResponse;
|
|
208
233
|
staffs: {
|
|
209
234
|
firstName: string;
|
|
210
235
|
lastName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "11.70.
|
|
3
|
+
"version": "11.70.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@babel/plugin-transform-runtime": "7.8.3",
|
|
47
|
-
"@medipass/utils": "^11.84.
|
|
47
|
+
"@medipass/utils": "^11.84.9",
|
|
48
48
|
"@types/applepayjs": "14.0.8",
|
|
49
49
|
"@types/googlepay": "0.7.6",
|
|
50
50
|
"@types/jest": "28.1.6",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"resolutions": {
|
|
60
60
|
"react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "802988592e804d0446b64e7d9426e4fafcc11e60"
|
|
63
63
|
}
|