@medipass/web-sdk 12.2.5-feature-aged-care-registered-providers.0 → 12.2.6-chore-staff-type-extra-ids.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,6 +1,6 @@
|
|
|
1
1
|
import type { MedipassRequestOpts } from '../types';
|
|
2
|
-
import type { GetCareRecipientDetailsQuery, CareRecipientDetailsResponse, GetServiceProviderDetailsQuery, ServiceProviderDetailsResponse, SearchCareRecipientsQuery, SearchCareRecipientsResponse, CreateAgedCareInvoiceBody, AgedCareInvoice, GetServicesQuery, AgedCareService, OnboardRequestBody, OnboardResponse, GetRegisteredProvidersQuery, GetRegisteredProvidersResponse } from '../types/aged-care';
|
|
3
|
-
export type { GetCareRecipientDetailsQuery, CareRecipientDetailsResponse, GetServiceProviderDetailsQuery, ServiceProviderDetailsResponse, SearchCareRecipientsQuery, SearchCareRecipientsResponse, CreateAgedCareInvoiceBody, AgedCareInvoice, GetServicesQuery, AgedCareService, OnboardRequestBody, OnboardResponse, GetRegisteredProvidersQuery, GetRegisteredProvidersResponse };
|
|
2
|
+
import type { GetCareRecipientDetailsQuery, CareRecipientDetailsResponse, GetServiceProviderDetailsQuery, ServiceProviderDetailsResponse, SearchCareRecipientsQuery, SearchCareRecipientsResponse, CreateAgedCareInvoiceBody, AgedCareInvoice, GetServicesQuery, AgedCareService, OnboardRequestBody, OnboardResponse, GetRegisteredProvidersQuery, GetRegisteredProvidersResponse, RegisteredProvider } from '../types/aged-care';
|
|
3
|
+
export type { GetCareRecipientDetailsQuery, CareRecipientDetailsResponse, GetServiceProviderDetailsQuery, ServiceProviderDetailsResponse, SearchCareRecipientsQuery, SearchCareRecipientsResponse, CreateAgedCareInvoiceBody, AgedCareInvoice, GetServicesQuery, AgedCareService, OnboardRequestBody, OnboardResponse, GetRegisteredProvidersQuery, GetRegisteredProvidersResponse, RegisteredProvider };
|
|
4
4
|
export declare const pathGetCareRecipientDetails: (careRecipientId: string) => string;
|
|
5
5
|
export declare const pathSearchCareRecipients: () => string;
|
|
6
6
|
export declare const pathGetServiceProviderDetails: (serviceProviderId: string) => string;
|
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -268,7 +268,7 @@ export declare type OnboardResponse = StaffMember;
|
|
|
268
268
|
export declare type GetRegisteredProvidersQuery = {
|
|
269
269
|
businessId?: string;
|
|
270
270
|
};
|
|
271
|
-
export declare type
|
|
271
|
+
export declare type RegisteredProvider = {
|
|
272
272
|
providerId: string;
|
|
273
273
|
providerNapsId: string;
|
|
274
274
|
providerName: string;
|
|
@@ -300,4 +300,5 @@ export declare type GetRegisteredProvidersResponse = Array<{
|
|
|
300
300
|
careTypeCode: string;
|
|
301
301
|
operationalStatus: string;
|
|
302
302
|
}>;
|
|
303
|
-
}
|
|
303
|
+
};
|
|
304
|
+
export declare type GetRegisteredProvidersResponse = Array<RegisteredProvider>;
|
|
@@ -39,6 +39,11 @@ export declare type StaffMember = {
|
|
|
39
39
|
email: string;
|
|
40
40
|
created: string;
|
|
41
41
|
};
|
|
42
|
+
extraIds?: Array<{
|
|
43
|
+
displayName: string;
|
|
44
|
+
key: 'aged-care:registered-provider-id' | 'aged-care:proda-org-id' | 'aged-care:proda-device-name';
|
|
45
|
+
value: string;
|
|
46
|
+
}>;
|
|
42
47
|
};
|
|
43
48
|
declare type ProviderRegistration = {
|
|
44
49
|
_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.2.
|
|
3
|
+
"version": "12.2.6-chore-staff-type-extra-ids.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": "
|
|
61
|
+
"gitHead": "8e2ddd469684eb07c39c7c1e80f47ee5d9435c7f"
|
|
62
62
|
}
|