@medipass/web-sdk 12.4.4-feature-aged-care-participant-apis.1 → 12.4.5-fix-search-aged-care-recipient.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.
@@ -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<agedCareTypes.SearchCareRecipientsResponse>;
27
+ export declare const searchCareRecipients: (query?: agedCareTypes.SearchCareRecipientsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.SearchCareRecipientsQuery>>;
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>;
@@ -127,18 +127,15 @@ export interface ServiceProviderDetailsResponse {
127
127
  }>;
128
128
  }
129
129
  export interface SearchCareRecipientsQuery {
130
- registeredProviderId?: string;
130
+ businessId?: string;
131
+ firstName?: string;
132
+ lastName?: string;
133
+ birthDate?: string;
134
+ gender?: string;
135
+ myAgedCareGatewayId?: string;
136
+ sparcId?: string;
137
+ sortFields?: string;
131
138
  }
132
- export declare type SearchCareRecipientsResponse = Array<{
133
- careRecipientId: string;
134
- firstName: string;
135
- middleName: string;
136
- lastName: string;
137
- birthDate: string;
138
- gender: string;
139
- myAgedCareGatewayId: string;
140
- sparcId: string;
141
- }>;
142
139
  export declare type CreateAgedCareInvoiceBody = {
143
140
  draftTransactionId?: string;
144
141
  businessId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/web-sdk",
3
- "version": "12.4.4-feature-aged-care-participant-apis.1",
3
+ "version": "12.4.5-fix-search-aged-care-recipient.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": "85ad5e879318e4a3a4f8da4e42bf488545627582"
61
+ "gitHead": "5862b9bbce71428cccae7a22d266d3e0a4d915f5"
62
62
  }