@medipass/web-sdk 12.6.3-feature-aged-care-convert-invoices-api.1 → 12.7.1-fix-aged-care-types.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.
- package/lib/types/aged-care.d.ts +50 -4
- package/package.json +2 -2
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -38,7 +38,17 @@ export interface CareRecipientDetailsResponse {
|
|
|
38
38
|
acatId: string;
|
|
39
39
|
status: string;
|
|
40
40
|
approvalDate: string;
|
|
41
|
-
careDetails:
|
|
41
|
+
careDetails: Array<{
|
|
42
|
+
assessedCareLevelCode: string;
|
|
43
|
+
assessedCareLevelText: string;
|
|
44
|
+
careTypeCode: string;
|
|
45
|
+
careTypeText: string;
|
|
46
|
+
careSubTypeCode: string;
|
|
47
|
+
careSubTypeText: string;
|
|
48
|
+
timeLimitedIndicator: boolean;
|
|
49
|
+
status: string;
|
|
50
|
+
endDate: string;
|
|
51
|
+
}>;
|
|
42
52
|
}>;
|
|
43
53
|
careExtensions: Array<{
|
|
44
54
|
careType: string;
|
|
@@ -63,6 +73,28 @@ export interface CareRecipientDetailsResponse {
|
|
|
63
73
|
effectiveEndDate: string;
|
|
64
74
|
updatedAtDateTime: string;
|
|
65
75
|
}>;
|
|
76
|
+
approvals: Array<{
|
|
77
|
+
careTypeCode: string;
|
|
78
|
+
careTypeText: string;
|
|
79
|
+
careSubTypeCode: string;
|
|
80
|
+
careSubTypeText: string;
|
|
81
|
+
classificationLevelCode: string;
|
|
82
|
+
classificationLevelText: string;
|
|
83
|
+
approvalStartDate: string;
|
|
84
|
+
approvalEndDate: string;
|
|
85
|
+
updatedAtDateTime: string;
|
|
86
|
+
approvedServices: Array<{
|
|
87
|
+
serviceGroupId: string;
|
|
88
|
+
serviceGroupText: string;
|
|
89
|
+
serviceTypeId: string;
|
|
90
|
+
serviceTypeText: string;
|
|
91
|
+
serviceId: string;
|
|
92
|
+
serviceText: string;
|
|
93
|
+
effectiveStartDate: string;
|
|
94
|
+
effectiveEndDate: string;
|
|
95
|
+
updatedAtDateTime: string;
|
|
96
|
+
}>;
|
|
97
|
+
}>;
|
|
66
98
|
approvedServices: Array<{
|
|
67
99
|
serviceGroupId: string;
|
|
68
100
|
serviceGroupText: string;
|
|
@@ -347,7 +379,7 @@ export declare type GetClaimsQuery = PaginatedQuery & {
|
|
|
347
379
|
fromDate?: string;
|
|
348
380
|
toDate?: string;
|
|
349
381
|
};
|
|
350
|
-
export declare type AgedCareClaimStatus = '
|
|
382
|
+
export declare type AgedCareClaimStatus = 'Being calculated' | 'Pending approval' | 'Cancelled' | 'Approved' | 'Paid' | 'Completed';
|
|
351
383
|
export declare type AgedCareClaim = {
|
|
352
384
|
_id: string;
|
|
353
385
|
businessId: string;
|
|
@@ -379,8 +411,8 @@ export declare type AgedCareClaim = {
|
|
|
379
411
|
paymentDateString: string;
|
|
380
412
|
status: AgedCareClaimStatus;
|
|
381
413
|
agedCareCreated: string;
|
|
382
|
-
|
|
383
|
-
|
|
414
|
+
createdAtDateTime: string;
|
|
415
|
+
updatedAtDateTime: string;
|
|
384
416
|
modified: string;
|
|
385
417
|
};
|
|
386
418
|
export declare type GetClaimQuery = {
|
|
@@ -433,6 +465,7 @@ export declare type AgedCarePaymentStatement = {
|
|
|
433
465
|
itemDescriptionText: string;
|
|
434
466
|
wraparoundDescriptionCode: string;
|
|
435
467
|
wraparoundDescriptionText: string;
|
|
468
|
+
entitlementType: string;
|
|
436
469
|
quantity: number;
|
|
437
470
|
pricePerUnit: number;
|
|
438
471
|
unitType: string;
|
|
@@ -440,6 +473,7 @@ export declare type AgedCarePaymentStatement = {
|
|
|
440
473
|
compensationReduction: number;
|
|
441
474
|
individualContributionAmount: number;
|
|
442
475
|
paymentDetermination: number;
|
|
476
|
+
finalDetermination: number;
|
|
443
477
|
budgets: Array<{
|
|
444
478
|
budgetTypeCode: string;
|
|
445
479
|
budgetTypeText: string;
|
|
@@ -622,6 +656,7 @@ export declare type CareRecipientBudget = {
|
|
|
622
656
|
budgetId: string;
|
|
623
657
|
serviceProviderId: string;
|
|
624
658
|
careRecipientId: string;
|
|
659
|
+
careRecipientName: string;
|
|
625
660
|
entryDate: string;
|
|
626
661
|
budgetTypeCode: string;
|
|
627
662
|
budgetType: string;
|
|
@@ -630,6 +665,8 @@ export declare type CareRecipientBudget = {
|
|
|
630
665
|
total: number;
|
|
631
666
|
available: number;
|
|
632
667
|
used: number;
|
|
668
|
+
writeOff: number;
|
|
669
|
+
rolloverDeduction: number;
|
|
633
670
|
createdAtDateTime: string;
|
|
634
671
|
updatedAtDateTime: string;
|
|
635
672
|
status: string;
|
|
@@ -638,6 +675,7 @@ export declare type ServiceProviderBudget = {
|
|
|
638
675
|
budgetId: string;
|
|
639
676
|
serviceProviderId: string;
|
|
640
677
|
careRecipientId: string;
|
|
678
|
+
careRecipientName: string;
|
|
641
679
|
entryDate: string;
|
|
642
680
|
budgetTypeCode: string;
|
|
643
681
|
budgetType: string;
|
|
@@ -646,6 +684,8 @@ export declare type ServiceProviderBudget = {
|
|
|
646
684
|
total: number;
|
|
647
685
|
available: number;
|
|
648
686
|
used: number;
|
|
687
|
+
rolloverDeduction: number;
|
|
688
|
+
writeOff: number;
|
|
649
689
|
createdAtDateTime: string;
|
|
650
690
|
updatedAtDateTime: string;
|
|
651
691
|
status: string;
|
|
@@ -664,6 +704,10 @@ export declare type BudgetDetailsResponse = {
|
|
|
664
704
|
total: number;
|
|
665
705
|
available: number;
|
|
666
706
|
used: number;
|
|
707
|
+
writeOff: number;
|
|
708
|
+
rolloverDeduction: number;
|
|
709
|
+
createdAtDateTime: string;
|
|
710
|
+
updatedAtDateTime: string;
|
|
667
711
|
status: string;
|
|
668
712
|
entitlementItems: Array<{
|
|
669
713
|
itemCode: string;
|
|
@@ -672,6 +716,7 @@ export declare type BudgetDetailsResponse = {
|
|
|
672
716
|
startDate: string;
|
|
673
717
|
endDate: string;
|
|
674
718
|
createdAtDateTime: string;
|
|
719
|
+
careRecipientId: string;
|
|
675
720
|
}>;
|
|
676
721
|
usage: Array<{
|
|
677
722
|
serviceProviderId: string;
|
|
@@ -682,6 +727,7 @@ export declare type BudgetDetailsResponse = {
|
|
|
682
727
|
amount: number;
|
|
683
728
|
deliveryDate: string;
|
|
684
729
|
updatedAtDateTime: string;
|
|
730
|
+
careRecipientId: string;
|
|
685
731
|
}>;
|
|
686
732
|
};
|
|
687
733
|
export interface OxygenSupplement {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.7.1-fix-aged-care-types.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"resolutions": {
|
|
60
60
|
"react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "834e6d1f54f045c6e5945d5455b0c6c88b55a762"
|
|
63
63
|
}
|