@medipass/web-sdk 12.4.4-feature-aged-care-participant-apis.0 → 12.4.4-feature-aged-care-participant-apis.1
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.
|
@@ -40,6 +40,6 @@ export declare const getInvoice: (invoiceId: string, query?: agedCareTypes.GetIn
|
|
|
40
40
|
export declare const getPaymentItemsReport: (query?: agedCareTypes.GetPaymentItemsReportQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.AgedCarePaymentItemsReport>>;
|
|
41
41
|
export declare const createEnteralFeedingSupplementAttachment: (supplementId: string, body: agedCareTypes.CreateEnteralFeedingSupplementAttachmentRequestBody, opts?: MedipassRequestOpts) => Promise<agedCareTypes.CreateEnteralFeedingSupplementAttachmentResponse>;
|
|
42
42
|
export declare const createOxygenSupplementAttachment: (supplementId: string, body: agedCareTypes.CreateOxygenSupplementAttachmentRequestBody, opts?: MedipassRequestOpts) => Promise<agedCareTypes.CreateOxygenSupplementAttachmentResponse>;
|
|
43
|
-
export declare const getIndividualContributions: (query?: agedCareTypes.GetIndividualContributionsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.
|
|
44
|
-
export declare const getCareRecipientBudgets: (careRecipientId: string, query?: agedCareTypes.GetCareRecipientBudgetsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.
|
|
43
|
+
export declare const getIndividualContributions: (query?: agedCareTypes.GetIndividualContributionsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.IndividualContribution>>;
|
|
44
|
+
export declare const getCareRecipientBudgets: (careRecipientId: string, query?: agedCareTypes.GetCareRecipientBudgetsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.CareRecipientBudget>>;
|
|
45
45
|
export declare const getBudgetDetails: (budgetId: string, query?: agedCareTypes.GetBudgetDetailsQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.BudgetDetailsResponse>;
|
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PaginatedQuery
|
|
1
|
+
import type { PaginatedQuery } from 'types';
|
|
2
2
|
import type { StaffMember } from './staff-member';
|
|
3
3
|
export interface GetCareRecipientDetailsQuery {
|
|
4
4
|
registeredProviderId?: string;
|
|
@@ -576,7 +576,7 @@ export declare type GetIndividualContributionsQuery = PaginatedQuery & {
|
|
|
576
576
|
updatedAtDateTimeTo?: string;
|
|
577
577
|
sortFields?: string;
|
|
578
578
|
};
|
|
579
|
-
export declare type
|
|
579
|
+
export declare type IndividualContribution = {
|
|
580
580
|
serviceProviderId: string;
|
|
581
581
|
serviceNapsId: string;
|
|
582
582
|
careRecipientId: string;
|
|
@@ -591,14 +591,14 @@ export declare type CareIndividualContributionsResponse = PaginatedResponse<{
|
|
|
591
591
|
startDate: string;
|
|
592
592
|
endDate: string;
|
|
593
593
|
updatedAtDateTime: string;
|
|
594
|
-
}
|
|
594
|
+
};
|
|
595
595
|
export declare type GetCareRecipientBudgetsQuery = PaginatedQuery & {
|
|
596
596
|
businessId?: string;
|
|
597
597
|
effectiveDateFrom?: string;
|
|
598
598
|
effectiveDateTo?: string;
|
|
599
599
|
sortFields?: string;
|
|
600
600
|
};
|
|
601
|
-
export declare type
|
|
601
|
+
export declare type CareRecipientBudget = {
|
|
602
602
|
budgetId: string;
|
|
603
603
|
careRecipientId: string;
|
|
604
604
|
entryDate: string;
|
|
@@ -612,7 +612,7 @@ export declare type CareRecipientBudgetsResponse = PaginatedResponse<{
|
|
|
612
612
|
createdAtDateTime: string;
|
|
613
613
|
updatedAtDateTime: string;
|
|
614
614
|
status: string;
|
|
615
|
-
}
|
|
615
|
+
};
|
|
616
616
|
export declare type GetBudgetDetailsQuery = {
|
|
617
617
|
businessId?: string;
|
|
618
618
|
};
|
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.
|
|
3
|
+
"version": "12.4.4-feature-aged-care-participant-apis.1",
|
|
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": "85ad5e879318e4a3a4f8da4e42bf488545627582"
|
|
62
62
|
}
|