@medipass/web-sdk 11.63.14-feature-new-timeline-component.0 → 11.63.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 +61 -13
- package/package.json +2 -2
package/lib/types/documents.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PaginationMeta, PaginatedQuery,
|
|
1
|
+
import type { PaginationMeta, PaginatedQuery, HealthPointSettlementAttributes } from './index';
|
|
2
2
|
/** START: Query */
|
|
3
3
|
export declare type BusinessDocumentsQuery = PaginatedQuery & {
|
|
4
4
|
isPublished?: boolean;
|
|
@@ -144,17 +144,34 @@ interface HealthPointProviderSetFilesAttributes {
|
|
|
144
144
|
displayName: string;
|
|
145
145
|
url: string;
|
|
146
146
|
}
|
|
147
|
-
export interface HealthPointProviderSetItemResponse {
|
|
148
|
-
_id: string;
|
|
149
|
-
professionalCategoryId: string;
|
|
150
|
-
providerNumber: string;
|
|
151
|
-
specialtyIds: string[];
|
|
152
|
-
files?: HealthPointProviderSetFilesAttributes[];
|
|
153
|
-
isCertificationMatch?: boolean;
|
|
154
|
-
settlement?: HealthPointSettlementAttributes;
|
|
155
|
-
}
|
|
156
147
|
export interface HealthPointRegistrationApplicationResponse {
|
|
157
|
-
business:
|
|
148
|
+
business: {
|
|
149
|
+
abn: string;
|
|
150
|
+
address: string;
|
|
151
|
+
addressPrefix: string;
|
|
152
|
+
addressLine2?: string;
|
|
153
|
+
city: string;
|
|
154
|
+
contactInfo: {
|
|
155
|
+
landline: string;
|
|
156
|
+
email: string;
|
|
157
|
+
firstName: string;
|
|
158
|
+
lastName: string;
|
|
159
|
+
mobile: string;
|
|
160
|
+
};
|
|
161
|
+
country: string;
|
|
162
|
+
countryCode: string;
|
|
163
|
+
displayName: string;
|
|
164
|
+
fullName: string;
|
|
165
|
+
gmapsPlaceId: string;
|
|
166
|
+
lnglat: [number, number];
|
|
167
|
+
postcode: string;
|
|
168
|
+
route: string;
|
|
169
|
+
state: string;
|
|
170
|
+
streetNumber: string;
|
|
171
|
+
subpremise: string | null;
|
|
172
|
+
deleted: string | null;
|
|
173
|
+
_id: string;
|
|
174
|
+
};
|
|
158
175
|
created: string;
|
|
159
176
|
devicesRequested?: number;
|
|
160
177
|
errorMessage?: string;
|
|
@@ -166,12 +183,43 @@ export interface HealthPointRegistrationApplicationResponse {
|
|
|
166
183
|
isMidCheckedForSettlement?: boolean;
|
|
167
184
|
isMidEnabled?: boolean;
|
|
168
185
|
modified: string;
|
|
169
|
-
practice:
|
|
186
|
+
practice: {
|
|
187
|
+
tz: string;
|
|
188
|
+
_id: string;
|
|
189
|
+
deleted: string | null;
|
|
190
|
+
fullName: string;
|
|
191
|
+
displayName: string;
|
|
192
|
+
mobile: string;
|
|
193
|
+
email: string;
|
|
194
|
+
lnglat: [number, number];
|
|
195
|
+
gmapsPlaceId: string;
|
|
196
|
+
address: string;
|
|
197
|
+
addressPrefix?: string;
|
|
198
|
+
countryCode: string;
|
|
199
|
+
country: string;
|
|
200
|
+
state: string;
|
|
201
|
+
city: string;
|
|
202
|
+
postcode: string;
|
|
203
|
+
subpremise: string | null;
|
|
204
|
+
streetNumber: string;
|
|
205
|
+
route: string;
|
|
206
|
+
mobileE164: string;
|
|
207
|
+
};
|
|
170
208
|
staffs: {
|
|
171
209
|
firstName: string;
|
|
172
210
|
lastName: string;
|
|
173
211
|
_id: string;
|
|
174
|
-
|
|
212
|
+
deleted: string | null;
|
|
213
|
+
providerSet: {
|
|
214
|
+
_id: string;
|
|
215
|
+
deleted: string | null;
|
|
216
|
+
professionalCategoryId: string;
|
|
217
|
+
providerNumber: string;
|
|
218
|
+
specialtyIds: string[];
|
|
219
|
+
files?: HealthPointProviderSetFilesAttributes[];
|
|
220
|
+
isCertificationMatch?: boolean;
|
|
221
|
+
settlement?: HealthPointSettlementAttributes;
|
|
222
|
+
}[];
|
|
175
223
|
}[];
|
|
176
224
|
status: HealthPointApplicationStatus;
|
|
177
225
|
_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "11.63.14
|
|
3
|
+
"version": "11.63.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"resolutions": {
|
|
59
59
|
"react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "60daa512594e02d281e550fa768c7b989c8b84f3"
|
|
62
62
|
}
|