@medipass/web-sdk 12.8.0 → 12.8.1-fix-aged-care-sting-types.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.
- package/lib/types/aged-care.d.ts +40 -1
- package/package.json +2 -2
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -249,6 +249,7 @@ export declare type AgedCareInvoice = {
|
|
|
249
249
|
deliveryDate: string;
|
|
250
250
|
quantity: number;
|
|
251
251
|
pricePerUnit: number;
|
|
252
|
+
pricePerUnitString: string;
|
|
252
253
|
unitType: string;
|
|
253
254
|
fundingSource: string;
|
|
254
255
|
fundingSourceText: string;
|
|
@@ -364,15 +365,18 @@ export declare type ServiceProviderAccountSummary = {
|
|
|
364
365
|
periodStartDate: string;
|
|
365
366
|
periodEndDate: string;
|
|
366
367
|
heldoverPreviousPeriod: number;
|
|
368
|
+
heldoverPreviousPeriodString: string;
|
|
367
369
|
transactionDetail: Array<{
|
|
368
370
|
date: string;
|
|
369
371
|
description: string;
|
|
370
372
|
amount: number;
|
|
373
|
+
amountString: string;
|
|
371
374
|
transactionType: string;
|
|
372
375
|
transactionReference: string;
|
|
373
376
|
updatedAtDateTime: string;
|
|
374
377
|
}>;
|
|
375
378
|
heldoverAmount: number;
|
|
379
|
+
heldoverAmountString: string;
|
|
376
380
|
};
|
|
377
381
|
export declare type ServiceProviderAccountSummaryResponse = Array<ServiceProviderAccountSummary>;
|
|
378
382
|
export declare type GetClaimsQuery = PaginatedQuery & {
|
|
@@ -391,12 +395,12 @@ export interface MedipassAgedCareClaimShort {
|
|
|
391
395
|
serviceProviderId: string;
|
|
392
396
|
claimId: string;
|
|
393
397
|
amountPaid: number;
|
|
398
|
+
amountPaidString: string;
|
|
394
399
|
status: AgedCareClaimStatus;
|
|
395
400
|
agedCareCreated: string;
|
|
396
401
|
agedCareUpdated: string;
|
|
397
402
|
created: string;
|
|
398
403
|
modified: string;
|
|
399
|
-
amountPaidString: string;
|
|
400
404
|
}
|
|
401
405
|
export interface AgedCareClaim {
|
|
402
406
|
claimId: string;
|
|
@@ -470,12 +474,19 @@ export declare type AgedCarePaymentStatement = {
|
|
|
470
474
|
code: string;
|
|
471
475
|
}>;
|
|
472
476
|
heldoverPreviousPeriod: number;
|
|
477
|
+
heldoverPreviousPeriodString: string;
|
|
473
478
|
commonwealthUnspent: number;
|
|
479
|
+
commonwealthUnspentString: string;
|
|
474
480
|
compensationReduction: number;
|
|
481
|
+
compensationReductionString: string;
|
|
475
482
|
careRecipientIndividualContribution: number;
|
|
483
|
+
careRecipientIndividualContributionString: string;
|
|
476
484
|
claimTotal: number;
|
|
485
|
+
claimTotalString: string;
|
|
477
486
|
totalPaid: number;
|
|
487
|
+
totalPaidString: string;
|
|
478
488
|
outstandingHeldover: number;
|
|
489
|
+
outstandingHeldoverString: string;
|
|
479
490
|
};
|
|
480
491
|
paymentItems: Array<{
|
|
481
492
|
invoiceId: string;
|
|
@@ -499,12 +510,18 @@ export declare type AgedCarePaymentStatement = {
|
|
|
499
510
|
entitlementType: string;
|
|
500
511
|
quantity: number;
|
|
501
512
|
pricePerUnit: number;
|
|
513
|
+
pricePerUnitString: string;
|
|
502
514
|
unitType: string;
|
|
503
515
|
invoiceAmount: number;
|
|
516
|
+
invoiceAmountString: string;
|
|
504
517
|
compensationReduction: number;
|
|
518
|
+
compensationReductionString: string;
|
|
505
519
|
individualContributionAmount: number;
|
|
520
|
+
individualContributionAmountString: string;
|
|
506
521
|
paymentDetermination: number;
|
|
522
|
+
paymentDeterminationString: string;
|
|
507
523
|
finalDetermination: number;
|
|
524
|
+
finalDeterminationString: string;
|
|
508
525
|
budgets: Array<{
|
|
509
526
|
budgetTypeCode: string;
|
|
510
527
|
budgetTypeText: string;
|
|
@@ -602,11 +619,16 @@ export declare type AgedCarePaymentItemsReport = {
|
|
|
602
619
|
wraparoundDescriptionText: string;
|
|
603
620
|
quantity: number;
|
|
604
621
|
pricePerUnit: number;
|
|
622
|
+
pricePerUnitString: string;
|
|
605
623
|
unitType: string;
|
|
606
624
|
invoiceAmount: number;
|
|
625
|
+
invoiceAmountString: string;
|
|
607
626
|
compensationReduction: number;
|
|
627
|
+
compensationReductionString: string;
|
|
608
628
|
individualContributionAmount: number;
|
|
629
|
+
individualContributionAmountString: string;
|
|
609
630
|
paymentDetermination: number;
|
|
631
|
+
paymentDeterminationString: string;
|
|
610
632
|
updatedAtDateTime: string;
|
|
611
633
|
budgets: Array<{
|
|
612
634
|
budgetTypeCode: string;
|
|
@@ -702,10 +724,15 @@ export declare type CareRecipientBudget = {
|
|
|
702
724
|
startDate: string;
|
|
703
725
|
endDate: string;
|
|
704
726
|
total: number;
|
|
727
|
+
totalString: string;
|
|
705
728
|
available: number;
|
|
729
|
+
availableString: string;
|
|
706
730
|
used: number;
|
|
731
|
+
usedString: string;
|
|
707
732
|
writeOff: number;
|
|
733
|
+
writeOffString: string;
|
|
708
734
|
rolloverDeduction: number;
|
|
735
|
+
rolloverDeductionString: string;
|
|
709
736
|
createdAtDateTime: string;
|
|
710
737
|
updatedAtDateTime: string;
|
|
711
738
|
status: string;
|
|
@@ -721,10 +748,15 @@ export declare type ServiceProviderBudget = {
|
|
|
721
748
|
startDate: string;
|
|
722
749
|
endDate: string;
|
|
723
750
|
total: number;
|
|
751
|
+
totalString: string;
|
|
724
752
|
available: number;
|
|
753
|
+
availableString: string;
|
|
725
754
|
used: number;
|
|
755
|
+
usedString: string;
|
|
726
756
|
rolloverDeduction: number;
|
|
757
|
+
rolloverDeductionString: string;
|
|
727
758
|
writeOff: number;
|
|
759
|
+
writeOffString: string;
|
|
728
760
|
createdAtDateTime: string;
|
|
729
761
|
updatedAtDateTime: string;
|
|
730
762
|
status: string;
|
|
@@ -741,10 +773,15 @@ export declare type BudgetDetailsResponse = {
|
|
|
741
773
|
startDate: string;
|
|
742
774
|
endDate: string;
|
|
743
775
|
total: number;
|
|
776
|
+
totalString: string;
|
|
744
777
|
available: number;
|
|
778
|
+
availableString: string;
|
|
745
779
|
used: number;
|
|
780
|
+
usedString: string;
|
|
746
781
|
writeOff: number;
|
|
782
|
+
writeOffString: string;
|
|
747
783
|
rolloverDeduction: number;
|
|
784
|
+
rolloverDeductionString: string;
|
|
748
785
|
createdAtDateTime: string;
|
|
749
786
|
updatedAtDateTime: string;
|
|
750
787
|
status: string;
|
|
@@ -752,6 +789,7 @@ export declare type BudgetDetailsResponse = {
|
|
|
752
789
|
itemCode: string;
|
|
753
790
|
description: string;
|
|
754
791
|
amount: number;
|
|
792
|
+
amountString: string;
|
|
755
793
|
startDate: string;
|
|
756
794
|
endDate: string;
|
|
757
795
|
createdAtDateTime: string;
|
|
@@ -764,6 +802,7 @@ export declare type BudgetDetailsResponse = {
|
|
|
764
802
|
invoiceId: string;
|
|
765
803
|
itemId: string;
|
|
766
804
|
amount: number;
|
|
805
|
+
amountString: string;
|
|
767
806
|
deliveryDate: string;
|
|
768
807
|
updatedAtDateTime: string;
|
|
769
808
|
careRecipientId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.8.
|
|
3
|
+
"version": "12.8.1-fix-aged-care-sting-types.1",
|
|
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": "986417943bca8f7bba4495ddd4af111700859262"
|
|
63
63
|
}
|