@medipass/web-sdk 12.7.4-feature-aged-care-get-aged-care-claim.0 → 12.7.4-feature-aged-care-get-aged-care-claim.2
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.
|
@@ -51,7 +51,7 @@ export declare const onboard: (body: agedCareTypes.OnboardRequestBody, opts?: Me
|
|
|
51
51
|
export declare const getRegisteredProvider: (registeredProviderId: string, query?: agedCareTypes.GetRegisteredProviderQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.GetRegisteredProviderResponse>;
|
|
52
52
|
export declare const getRegisteredProviders: (query?: agedCareTypes.GetRegisteredProvidersQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.GetRegisteredProvidersResponse>;
|
|
53
53
|
export declare const getServiceProviderAccountSummary: (serviceProviderId: string, query?: agedCareTypes.GetServiceProviderAccountSummaryQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.ServiceProviderAccountSummaryResponse>;
|
|
54
|
-
export declare const getMedipassAgedCareClaims: (businessId: string, query?: agedCareTypes.GetClaimsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.
|
|
54
|
+
export declare const getMedipassAgedCareClaims: (businessId: string, query?: agedCareTypes.GetClaimsQuery, opts?: MedipassRequestOpts) => Promise<PaginatedResponse<agedCareTypes.MedipassAgedCareClaimShort>>;
|
|
55
55
|
export declare const getMedipassAgedCareClaim: (businessId: string, claimId: string, query: {}, opts?: MedipassRequestOpts) => Promise<agedCareTypes.MedipassAgedCareClaim>;
|
|
56
56
|
export declare const getClaim: (claimId: string, query?: agedCareTypes.GetClaimQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.AgedCareClaim>;
|
|
57
57
|
export declare const getPaymentStatement: (query: agedCareTypes.GetPaymentStatementQuery, opts?: MedipassRequestOpts) => Promise<agedCareTypes.AgedCarePaymentStatement>;
|
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -380,19 +380,35 @@ export declare type GetClaimsQuery = PaginatedQuery & {
|
|
|
380
380
|
toDate?: string;
|
|
381
381
|
};
|
|
382
382
|
export declare type AgedCareClaimStatus = 'Being calculated' | 'Pending approval' | 'Cancelled' | 'Approved' | 'Paid' | 'Completed';
|
|
383
|
-
export
|
|
383
|
+
export interface MedipassAgedCareClaimShort {
|
|
384
|
+
_id: string;
|
|
385
|
+
businessId: string;
|
|
386
|
+
staff: {
|
|
387
|
+
_id: string;
|
|
388
|
+
firstName: string;
|
|
389
|
+
};
|
|
384
390
|
serviceProviderId: string;
|
|
385
391
|
claimId: string;
|
|
386
392
|
amountPaid: number;
|
|
387
|
-
amountPaidString: string;
|
|
388
|
-
paymentDateString: string;
|
|
389
393
|
status: AgedCareClaimStatus;
|
|
390
394
|
agedCareCreated: string;
|
|
391
395
|
agedCareUpdated: string;
|
|
392
|
-
|
|
393
|
-
updatedAtDateTime: string;
|
|
396
|
+
created: string;
|
|
394
397
|
modified: string;
|
|
395
|
-
|
|
398
|
+
amountPaidString: string;
|
|
399
|
+
}
|
|
400
|
+
export interface AgedCareClaim {
|
|
401
|
+
claimId: string;
|
|
402
|
+
serviceProviderId: string;
|
|
403
|
+
serviceNapsId: string;
|
|
404
|
+
status: string;
|
|
405
|
+
updatedAtDateTime: string;
|
|
406
|
+
createdAtDateTime: string;
|
|
407
|
+
invoices: Array<{
|
|
408
|
+
invoiceId: string;
|
|
409
|
+
}>;
|
|
410
|
+
messages: Array<string>;
|
|
411
|
+
}
|
|
396
412
|
export interface MedipassAgedCareClaim {
|
|
397
413
|
_id: string;
|
|
398
414
|
businessId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.7.4-feature-aged-care-get-aged-care-claim.
|
|
3
|
+
"version": "12.7.4-feature-aged-care-get-aged-care-claim.2",
|
|
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": "e68804af1ee48063d66866beb04e02c1238c375e"
|
|
63
63
|
}
|