@medipass/web-sdk 12.4.5-fix-search-aged-care-recipient.1 → 12.4.5-fix-search-aged-care-recipient.2
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.
|
@@ -24,7 +24,7 @@ export declare const pathGetCareRecipientBudgets: (careRecipientId: string) => s
|
|
|
24
24
|
export declare const pathGetBudgetDetails: (budgetId: string) => string;
|
|
25
25
|
export declare const createDraftInvoice: (body: agedCareTypes.CreateAgedCareInvoiceBody, opts?: MedipassRequestOpts) => Promise<agedCareTypes.AgedCareInvoice>;
|
|
26
26
|
export declare const getCareRecipientDetails: (careRecipientId: string, query?: agedCareTypes.GetCareRecipientDetailsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.CareRecipientDetailsResponse>;
|
|
27
|
-
export declare const searchCareRecipients: (query?: agedCareTypes.SearchCareRecipientsQuery, opts?: MedipassRequestOpts) => Promise<
|
|
27
|
+
export declare const searchCareRecipients: (query?: agedCareTypes.SearchCareRecipientsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.SearchCareRecipientsResponse>;
|
|
28
28
|
export declare const getServiceProviderDetails: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderDetailsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.ServiceProviderDetailsResponse>;
|
|
29
29
|
export declare const getServices: (query: agedCareTypes.GetServicesQuery, opts?: MedipassRequestOpts) => Promise<Array<agedCareTypes.AgedCareService>>;
|
|
30
30
|
export declare const onboard: (body: agedCareTypes.OnboardRequestBody, opts?: MedipassRequestOpts) => Promise<agedCareTypes.OnboardResponse>;
|
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PaginatedQuery } from 'types';
|
|
1
|
+
import type { PaginatedQuery, PaginatedResponse } from 'types';
|
|
2
2
|
import type { StaffMember } from './staff-member';
|
|
3
3
|
export interface GetCareRecipientDetailsQuery {
|
|
4
4
|
registeredProviderId?: string;
|
|
@@ -147,6 +147,7 @@ export declare type SearchCareRecipient = {
|
|
|
147
147
|
myAgedCareGatewayId: string;
|
|
148
148
|
sparcId: string;
|
|
149
149
|
};
|
|
150
|
+
export declare type SearchCareRecipientsResponse = PaginatedResponse<SearchCareRecipient>;
|
|
150
151
|
export declare type CreateAgedCareInvoiceBody = {
|
|
151
152
|
draftTransactionId?: string;
|
|
152
153
|
businessId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.4.5-fix-search-aged-care-recipient.
|
|
3
|
+
"version": "12.4.5-fix-search-aged-care-recipient.2",
|
|
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": "b1d1bb6c22c840efee67e7286efae43d741f8b14"
|
|
62
62
|
}
|