@medipass/web-sdk 11.63.14-feature-tooltip-component.0 → 11.63.15-feature-healthpoint-rejection-reason.0

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.
@@ -1,4 +1,4 @@
1
- import type { PaginationMeta, PaginatedQuery, ShortPracticeResponse, HealthPointSettlementAttributes, ShortBusinessResponse } from './index';
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: ShortBusinessResponse;
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,44 @@ export interface HealthPointRegistrationApplicationResponse {
166
183
  isMidCheckedForSettlement?: boolean;
167
184
  isMidEnabled?: boolean;
168
185
  modified: string;
169
- practice: ShortPracticeResponse;
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
- providerSet: HealthPointProviderSetItemResponse[];
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
+ rejectionReason?: string;
222
+ settlement?: HealthPointSettlementAttributes;
223
+ }[];
175
224
  }[];
176
225
  status: HealthPointApplicationStatus;
177
226
  _id: string;
@@ -187,6 +236,7 @@ export interface UpdateHealthPointRegistrationApplicationBody {
187
236
  providerSet: {
188
237
  _id: string;
189
238
  isCertificationMatch?: boolean;
239
+ rejectionReason?: string;
190
240
  }[];
191
241
  }[];
192
242
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "11.63.14-feature-tooltip-component.0",
3
+ "version": "11.63.15-feature-healthpoint-rejection-reason.0",
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": "a79d42709e9d92142004413d7d298079b50d813c"
61
+ "gitHead": "01641ff66e2e17b73895bfb947a112ba7812978f"
62
62
  }