@medipass/web-sdk 12.10.12-fix-types-exports.0 → 12.10.12-fix-types-exports.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 +70 -22
- package/package.json +2 -2
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ export declare type AttachmentResponse = {
|
|
|
173
173
|
mimeType: string;
|
|
174
174
|
createdAtDateTime: string;
|
|
175
175
|
};
|
|
176
|
-
export declare type SearchCareRecipientsQuery =
|
|
176
|
+
export declare type SearchCareRecipientsQuery = {
|
|
177
177
|
businessId?: string;
|
|
178
178
|
registeredProviderId?: string;
|
|
179
179
|
firstName?: string;
|
|
@@ -182,6 +182,9 @@ export declare type SearchCareRecipientsQuery = PaginatedQuery & {
|
|
|
182
182
|
gender?: string;
|
|
183
183
|
myAgedCareGatewayId?: string;
|
|
184
184
|
sparcId?: string;
|
|
185
|
+
limit: number;
|
|
186
|
+
page: number;
|
|
187
|
+
sort: 'asc' | 'desc';
|
|
185
188
|
sortFields?: 'lastName' | 'firstName' | 'careRecipientId' | 'birthDate' | '';
|
|
186
189
|
};
|
|
187
190
|
export declare type SearchCareRecipient = {
|
|
@@ -465,7 +468,7 @@ export declare type ServiceProviderAccountSummary = {
|
|
|
465
468
|
heldoverAmountString: string;
|
|
466
469
|
};
|
|
467
470
|
export declare type ServiceProviderAccountSummaryResponse = Array<ServiceProviderAccountSummary>;
|
|
468
|
-
export declare type GetAgedCareClaimsQuery =
|
|
471
|
+
export declare type GetAgedCareClaimsQuery = {
|
|
469
472
|
serviceProviderId?: string;
|
|
470
473
|
serviceNapsId?: string;
|
|
471
474
|
status?: AgedCareClaimStatus;
|
|
@@ -475,6 +478,10 @@ export declare type GetAgedCareClaimsQuery = PaginatedQuery & {
|
|
|
475
478
|
updatedAtDateTimeTo?: string;
|
|
476
479
|
createdAtDateTimeFrom?: string;
|
|
477
480
|
createdAtDateTimeTo?: string;
|
|
481
|
+
limit: number;
|
|
482
|
+
page: number;
|
|
483
|
+
sort: 'asc' | 'desc';
|
|
484
|
+
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime' | 'updatedAtDateTime';
|
|
478
485
|
};
|
|
479
486
|
export declare type GetClaimsQuery = PaginatedQuery & {
|
|
480
487
|
fromDate?: string;
|
|
@@ -697,7 +704,7 @@ export declare type AgedCareTransactionFile = {
|
|
|
697
704
|
export declare type GetInvoiceQuery = {
|
|
698
705
|
businessId?: string;
|
|
699
706
|
};
|
|
700
|
-
export declare type GetPaymentItemsReportQuery =
|
|
707
|
+
export declare type GetPaymentItemsReportQuery = {
|
|
701
708
|
serviceProviderId?: string;
|
|
702
709
|
serviceNapsId?: string;
|
|
703
710
|
careRecipientId?: string;
|
|
@@ -711,6 +718,10 @@ export declare type GetPaymentItemsReportQuery = PaginatedQuery & {
|
|
|
711
718
|
invoiceId?: string;
|
|
712
719
|
updatedAtDateTimeFrom?: string;
|
|
713
720
|
updatedAtDateTimeTo?: string;
|
|
721
|
+
limit: number;
|
|
722
|
+
page: number;
|
|
723
|
+
sort: 'asc' | 'desc';
|
|
724
|
+
sortFields?: 'careRecipientId' | 'deliveryDate' | 'deliveryDate' | 'updatedAtDateTime';
|
|
714
725
|
};
|
|
715
726
|
export declare type AgedCarePaymentItemsReport = {
|
|
716
727
|
invoiceId: string;
|
|
@@ -787,7 +798,7 @@ export declare type CreateOxygenSupplementAttachmentResponse = {
|
|
|
787
798
|
mimeType: string;
|
|
788
799
|
createdAtDateTime: string;
|
|
789
800
|
};
|
|
790
|
-
export declare type GetIndividualContributionsQuery =
|
|
801
|
+
export declare type GetIndividualContributionsQuery = {
|
|
791
802
|
businessId?: string;
|
|
792
803
|
careRecipientId?: string;
|
|
793
804
|
serviceNapsId?: string;
|
|
@@ -796,7 +807,10 @@ export declare type GetIndividualContributionsQuery = PaginatedQuery & {
|
|
|
796
807
|
effectiveDateTo?: string;
|
|
797
808
|
updatedAtDateTimeFrom?: string;
|
|
798
809
|
updatedAtDateTimeTo?: string;
|
|
799
|
-
|
|
810
|
+
limit: number;
|
|
811
|
+
page: number;
|
|
812
|
+
sort: 'asc' | 'desc';
|
|
813
|
+
sortFields?: 'careRecipientId' | 'createdAtDateTime' | 'updatedAtDateTime';
|
|
800
814
|
};
|
|
801
815
|
export declare type IndividualContribution = {
|
|
802
816
|
serviceProviderId: string;
|
|
@@ -814,25 +828,35 @@ export declare type IndividualContribution = {
|
|
|
814
828
|
endDate: string;
|
|
815
829
|
updatedAtDateTime: string;
|
|
816
830
|
};
|
|
817
|
-
export declare type GetCareRecipientBudgetsQuery =
|
|
831
|
+
export declare type GetCareRecipientBudgetsQuery = {
|
|
818
832
|
businessId?: string;
|
|
819
833
|
effectiveDateFrom?: string;
|
|
820
834
|
effectiveDateTo?: string;
|
|
821
|
-
|
|
835
|
+
limit: number;
|
|
836
|
+
page: number;
|
|
837
|
+
sort: 'asc' | 'desc';
|
|
838
|
+
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime';
|
|
822
839
|
};
|
|
823
|
-
export declare type GetServiceProviderBudgetsQuery =
|
|
840
|
+
export declare type GetServiceProviderBudgetsQuery = {
|
|
824
841
|
businessId?: string;
|
|
825
842
|
effectiveDateFrom?: string;
|
|
826
843
|
effectiveDateTo?: string;
|
|
827
|
-
|
|
844
|
+
limit: number;
|
|
845
|
+
page: number;
|
|
846
|
+
sort: 'asc' | 'desc';
|
|
847
|
+
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime';
|
|
828
848
|
};
|
|
829
|
-
export declare type GetServiceProviderActiveBudgetsQuery =
|
|
849
|
+
export declare type GetServiceProviderActiveBudgetsQuery = {
|
|
830
850
|
businessId?: string;
|
|
831
851
|
registeredProviderId?: string;
|
|
832
852
|
effectiveDateFrom?: string;
|
|
833
853
|
effectiveDateTo?: string;
|
|
834
854
|
updatedAtDateTimeFrom?: string;
|
|
835
855
|
updatedAtDateTimeTo?: string;
|
|
856
|
+
limit: number;
|
|
857
|
+
page: number;
|
|
858
|
+
sort: 'asc' | 'desc';
|
|
859
|
+
sortFields?: 'careRecipientId' | 'createdAtDateTime' | 'updatedAtDateTime';
|
|
836
860
|
};
|
|
837
861
|
export declare type CareRecipientBudget = {
|
|
838
862
|
budgetId: string;
|
|
@@ -994,7 +1018,7 @@ export interface GetEnteralFeedingSupplementDetailsQuery {
|
|
|
994
1018
|
export interface GetOxygenSupplementDetailsQuery {
|
|
995
1019
|
businessId?: string;
|
|
996
1020
|
}
|
|
997
|
-
export declare type GetEnteralFeedingSupplementsQuery =
|
|
1021
|
+
export declare type GetEnteralFeedingSupplementsQuery = {
|
|
998
1022
|
businessId?: string;
|
|
999
1023
|
serviceNapsId?: string;
|
|
1000
1024
|
serviceProviderId?: string;
|
|
@@ -1006,9 +1030,12 @@ export declare type GetEnteralFeedingSupplementsQuery = PaginatedQuery & {
|
|
|
1006
1030
|
endDateTo?: string;
|
|
1007
1031
|
updatedAtDateTimeFrom?: string;
|
|
1008
1032
|
updatedAtDateTimeTo?: string;
|
|
1009
|
-
|
|
1033
|
+
limit?: number;
|
|
1034
|
+
page?: number;
|
|
1035
|
+
sort?: 'asc' | 'desc';
|
|
1036
|
+
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime' | 'startDate' | 'careRecipientId';
|
|
1010
1037
|
};
|
|
1011
|
-
export declare type GetOxygenSupplementsQuery =
|
|
1038
|
+
export declare type GetOxygenSupplementsQuery = {
|
|
1012
1039
|
businessId?: string;
|
|
1013
1040
|
serviceNapsId?: string;
|
|
1014
1041
|
serviceProviderId?: string;
|
|
@@ -1020,6 +1047,9 @@ export declare type GetOxygenSupplementsQuery = PaginatedQuery & {
|
|
|
1020
1047
|
endDateTo?: string;
|
|
1021
1048
|
updatedAtDateTimeFrom?: string;
|
|
1022
1049
|
updatedAtDateTimeTo?: string;
|
|
1050
|
+
limit?: number;
|
|
1051
|
+
page?: number;
|
|
1052
|
+
sort?: 'asc' | 'desc';
|
|
1023
1053
|
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime' | 'startDate' | 'careRecipientId' | '';
|
|
1024
1054
|
};
|
|
1025
1055
|
export interface GetEnteralFeedingSupplementsItem {
|
|
@@ -1122,7 +1152,7 @@ export interface EndDateOxygenSupplement {
|
|
|
1122
1152
|
status: 'Created' | 'Updated' | 'Deleted' | 'Pending approval' | 'Approved' | 'Rejected';
|
|
1123
1153
|
updatedAtDateTime: string;
|
|
1124
1154
|
}
|
|
1125
|
-
export declare type GetEntriesQuery =
|
|
1155
|
+
export declare type GetEntriesQuery = {
|
|
1126
1156
|
businessId?: string;
|
|
1127
1157
|
serviceNapsId?: string;
|
|
1128
1158
|
serviceProviderId?: string;
|
|
@@ -1134,6 +1164,9 @@ export declare type GetEntriesQuery = PaginatedQuery & {
|
|
|
1134
1164
|
departureDateTo?: string;
|
|
1135
1165
|
updatedAtDateTimeFrom?: string;
|
|
1136
1166
|
updatedAtDateTimeTo?: string;
|
|
1167
|
+
limit?: number;
|
|
1168
|
+
page?: number;
|
|
1169
|
+
sort?: 'asc' | 'desc';
|
|
1137
1170
|
sortFields?: 'createdAtDateTime' | 'updatedAtDateTime' | 'entryDate' | 'careRecipientId' | 'externalReferenceId' | '';
|
|
1138
1171
|
};
|
|
1139
1172
|
export interface GetEntriesItem {
|
|
@@ -1288,7 +1321,7 @@ export interface CreateEntryResponse {
|
|
|
1288
1321
|
export interface DeleteEntryQuery {
|
|
1289
1322
|
businessId?: string;
|
|
1290
1323
|
}
|
|
1291
|
-
export declare type GetDeparturesQuery =
|
|
1324
|
+
export declare type GetDeparturesQuery = {
|
|
1292
1325
|
businessId?: string;
|
|
1293
1326
|
serviceNapsId?: string;
|
|
1294
1327
|
serviceProviderId?: string;
|
|
@@ -1298,7 +1331,10 @@ export declare type GetDeparturesQuery = PaginatedQuery & {
|
|
|
1298
1331
|
departureDateTo?: string;
|
|
1299
1332
|
updatedAtDateTimeFrom?: string;
|
|
1300
1333
|
updatedAtDateTimeTo?: string;
|
|
1301
|
-
|
|
1334
|
+
limit?: number;
|
|
1335
|
+
page?: number;
|
|
1336
|
+
sort?: 'asc' | 'desc';
|
|
1337
|
+
'sort-fields'?: 'createdAtDateTime' | 'updatedAtDateTime' | 'entryDate' | 'careRecipientId' | 'externalReferenceId';
|
|
1302
1338
|
};
|
|
1303
1339
|
export interface GetDeparturesItem {
|
|
1304
1340
|
eventId: string;
|
|
@@ -1432,15 +1468,17 @@ export declare type CreatePaymentStatementDownloadRequestBody = {
|
|
|
1432
1468
|
export declare type CreatePaymentStatementDownloadRequestResponse = {
|
|
1433
1469
|
userDownloadId: string;
|
|
1434
1470
|
};
|
|
1435
|
-
export declare type GetLegacyServiceProviderDetailsQuery =
|
|
1471
|
+
export declare type GetLegacyServiceProviderDetailsQuery = {
|
|
1436
1472
|
businessId?: string;
|
|
1437
1473
|
registeredProviderId?: string;
|
|
1438
1474
|
serviceNapsId?: string;
|
|
1439
1475
|
serviceId?: string;
|
|
1440
1476
|
providerId?: string;
|
|
1441
1477
|
serviceName?: string;
|
|
1442
|
-
|
|
1443
|
-
|
|
1478
|
+
limit?: number;
|
|
1479
|
+
page?: number;
|
|
1480
|
+
sort?: 'asc' | 'desc';
|
|
1481
|
+
'sort-fields'?: 'serviceName' | 'serviceId';
|
|
1444
1482
|
};
|
|
1445
1483
|
export declare type LegacyServiceProvider = {
|
|
1446
1484
|
serviceId: string;
|
|
@@ -1512,7 +1550,7 @@ export declare type GetBudgetItemCodesResponse = {
|
|
|
1512
1550
|
}>;
|
|
1513
1551
|
}>;
|
|
1514
1552
|
};
|
|
1515
|
-
export declare type GetEventsQuery =
|
|
1553
|
+
export declare type GetEventsQuery = {
|
|
1516
1554
|
businessId?: string;
|
|
1517
1555
|
registeredProviderId?: string;
|
|
1518
1556
|
serviceId?: string;
|
|
@@ -1530,6 +1568,10 @@ export declare type GetEventsQuery = PaginatedQuery & {
|
|
|
1530
1568
|
updatedAtTo?: string;
|
|
1531
1569
|
createdAtFrom?: string;
|
|
1532
1570
|
createdAtTo?: string;
|
|
1571
|
+
limit?: number;
|
|
1572
|
+
page?: number;
|
|
1573
|
+
sort?: 'asc' | 'desc';
|
|
1574
|
+
'sort-fields'?: 'createdAtDateTime' | 'updatedAtDateTime' | 'startDate' | 'careRecipientId' | 'externalReferenceId';
|
|
1533
1575
|
};
|
|
1534
1576
|
export declare type Event = {
|
|
1535
1577
|
eventId: string;
|
|
@@ -1555,7 +1597,7 @@ export declare type Event = {
|
|
|
1555
1597
|
updatedAtDateTime: string;
|
|
1556
1598
|
};
|
|
1557
1599
|
export declare type GetEventsResponse = PaginatedResponse<Event>;
|
|
1558
|
-
export declare type GetInvoicesQuery =
|
|
1600
|
+
export declare type GetInvoicesQuery = {
|
|
1559
1601
|
businessId?: string;
|
|
1560
1602
|
registeredProviderId?: string;
|
|
1561
1603
|
serviceProviderId?: string;
|
|
@@ -1564,6 +1606,10 @@ export declare type GetInvoicesQuery = PaginatedQuery & {
|
|
|
1564
1606
|
status?: string;
|
|
1565
1607
|
updatedAtDateTimeFrom?: string;
|
|
1566
1608
|
updatedAtDateTimeTo?: string;
|
|
1609
|
+
limit?: number;
|
|
1610
|
+
page?: number;
|
|
1611
|
+
sort?: 'asc' | 'desc';
|
|
1612
|
+
'sort-fields'?: 'createdAtDateTime' | 'updatedAtDateTime' | 'externalReferenceId';
|
|
1567
1613
|
};
|
|
1568
1614
|
export declare type AgedCareInvoiceListResponse = {
|
|
1569
1615
|
invoiceId: string;
|
|
@@ -1588,7 +1634,7 @@ export declare type Correspondence = {
|
|
|
1588
1634
|
careRecipientLastName: string;
|
|
1589
1635
|
};
|
|
1590
1636
|
export declare type GetCorrespondenceResponse = PaginatedResponse<Correspondence>;
|
|
1591
|
-
export declare type GetCorrespondenceQuery =
|
|
1637
|
+
export declare type GetCorrespondenceQuery = {
|
|
1592
1638
|
businessId?: string;
|
|
1593
1639
|
registeredProviderId?: string;
|
|
1594
1640
|
serviceNapsId?: string;
|
|
@@ -1596,6 +1642,8 @@ export declare type GetCorrespondenceQuery = PaginatedQuery & {
|
|
|
1596
1642
|
careRecipientId?: string;
|
|
1597
1643
|
sentDateFrom?: string;
|
|
1598
1644
|
sentDateTo?: string;
|
|
1645
|
+
limit?: number;
|
|
1646
|
+
page?: number;
|
|
1599
1647
|
};
|
|
1600
1648
|
export declare type CorrespondenceDownloadRequestBody = {
|
|
1601
1649
|
businessId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.10.12-fix-types-exports.
|
|
3
|
+
"version": "12.10.12-fix-types-exports.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": "10c9431cf3dd503975ccb1e0ec040352b8b7593c"
|
|
63
63
|
}
|