@medipass/web-sdk 11.63.9 → 11.63.10
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/business.d.ts +17 -3
- package/lib/types/documents.d.ts +2 -20
- package/lib/types/practice.d.ts +2 -0
- package/package.json +2 -2
package/lib/types/business.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export interface Business {
|
|
|
53
53
|
ndisEnabledDate: string;
|
|
54
54
|
address: string;
|
|
55
55
|
addressPrefix: string;
|
|
56
|
+
addressLine2?: string;
|
|
56
57
|
city: string;
|
|
57
58
|
country: string;
|
|
58
59
|
countryCode: string;
|
|
@@ -67,11 +68,24 @@ export interface Business {
|
|
|
67
68
|
_links: BusinessLinks;
|
|
68
69
|
}
|
|
69
70
|
export declare type ShortBusinessResponse = {
|
|
71
|
+
abn: string;
|
|
72
|
+
address: string;
|
|
73
|
+
addressPrefix: string;
|
|
74
|
+
addressLine2?: string;
|
|
75
|
+
city: string;
|
|
70
76
|
contactInfo: BusinessContactInformation;
|
|
71
|
-
|
|
72
|
-
|
|
77
|
+
country: string;
|
|
78
|
+
countryCode: string;
|
|
73
79
|
displayName: string;
|
|
74
|
-
|
|
80
|
+
fullName: string;
|
|
81
|
+
gmapsPlaceId: string;
|
|
82
|
+
lnglat: [number, number];
|
|
83
|
+
postcode: string;
|
|
84
|
+
route: string;
|
|
85
|
+
state: string;
|
|
86
|
+
streetNumber: string;
|
|
87
|
+
subpremise: string | null;
|
|
88
|
+
_id: string;
|
|
75
89
|
};
|
|
76
90
|
export declare type BusinessContactInformation = {
|
|
77
91
|
landline: string;
|
package/lib/types/documents.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PaginationMeta, PaginatedQuery, ShortPracticeResponse, HealthPointSettlementAttributes,
|
|
1
|
+
import type { PaginationMeta, PaginatedQuery, ShortPracticeResponse, HealthPointSettlementAttributes, ShortBusinessResponse } from './index';
|
|
2
2
|
/** START: Query */
|
|
3
3
|
export declare type BusinessDocumentsQuery = PaginatedQuery & {
|
|
4
4
|
isPublished?: boolean;
|
|
@@ -153,26 +153,8 @@ export interface HealthPointProviderSetItemResponse {
|
|
|
153
153
|
isCertificationMatch?: boolean;
|
|
154
154
|
settlement?: HealthPointSettlementAttributes;
|
|
155
155
|
}
|
|
156
|
-
export interface HealthPointApplicationBusiness {
|
|
157
|
-
abn: string;
|
|
158
|
-
address: string;
|
|
159
|
-
city: string;
|
|
160
|
-
contactInfo: BusinessContactInformation;
|
|
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
|
-
_id: string;
|
|
173
|
-
}
|
|
174
156
|
export interface HealthPointRegistrationApplicationResponse {
|
|
175
|
-
business:
|
|
157
|
+
business: ShortBusinessResponse;
|
|
176
158
|
created: string;
|
|
177
159
|
devicesRequested?: number;
|
|
178
160
|
errorMessage?: string;
|
package/lib/types/practice.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export interface Practice {
|
|
|
20
20
|
lnglat: [number, number];
|
|
21
21
|
gmapsPlaceId: string;
|
|
22
22
|
address: string;
|
|
23
|
+
addressPrefix?: string;
|
|
23
24
|
countryCode: string;
|
|
24
25
|
country: string;
|
|
25
26
|
state: string;
|
|
@@ -48,6 +49,7 @@ export declare type ShortPracticeResponse = {
|
|
|
48
49
|
lnglat: [number, number];
|
|
49
50
|
gmapsPlaceId: string;
|
|
50
51
|
address: string;
|
|
52
|
+
addressPrefix?: string;
|
|
51
53
|
countryCode: string;
|
|
52
54
|
country: string;
|
|
53
55
|
state: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "11.63.
|
|
3
|
+
"version": "11.63.10",
|
|
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": "8d34a57e34367a52957ca33121e98d4ffc620891"
|
|
62
62
|
}
|