@medipass/web-sdk 12.2.1-fix-aged-care-create-invoice.2 → 12.2.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 +6 -13
- package/package.json +3 -3
package/lib/types/aged-care.d.ts
CHANGED
|
@@ -140,19 +140,16 @@ export declare type SearchCareRecipientsResponse = Array<{
|
|
|
140
140
|
export declare type CreateAgedCareInvoiceBody = {
|
|
141
141
|
draftTransactionId?: string;
|
|
142
142
|
businessId: string;
|
|
143
|
-
invoiceReference
|
|
144
|
-
patient
|
|
143
|
+
invoiceReference: string;
|
|
144
|
+
patient: {
|
|
145
145
|
identity?: {
|
|
146
146
|
_id?: string;
|
|
147
|
-
careRecipientId?: string;
|
|
148
147
|
};
|
|
149
148
|
};
|
|
150
|
-
serviceProvider
|
|
151
|
-
|
|
149
|
+
serviceProvider: {
|
|
150
|
+
providerSetItemId?: string;
|
|
152
151
|
};
|
|
153
|
-
claimItems
|
|
154
|
-
serviceGroupId?: string;
|
|
155
|
-
serviceTypeId?: string;
|
|
152
|
+
claimItems: Array<{
|
|
156
153
|
serviceId?: string;
|
|
157
154
|
serviceDateString?: string;
|
|
158
155
|
chargeAmount?: string;
|
|
@@ -161,13 +158,11 @@ export declare type CreateAgedCareInvoiceBody = {
|
|
|
161
158
|
fundingSource?: string;
|
|
162
159
|
deliveredByThirdParty?: boolean;
|
|
163
160
|
itemOrWraparound?: string;
|
|
164
|
-
functionCode?: string;
|
|
165
161
|
itemDescriptionCode?: string;
|
|
166
162
|
itemDescription?: string;
|
|
167
163
|
itemCategoryCode?: string;
|
|
168
164
|
itemCategoryText?: string;
|
|
169
165
|
itemCategory?: string;
|
|
170
|
-
itemCategoryDescription?: string;
|
|
171
166
|
wraparoundDescriptionCode?: string;
|
|
172
167
|
wraparoundDescription?: string;
|
|
173
168
|
prescribedItem?: string;
|
|
@@ -175,13 +170,11 @@ export declare type CreateAgedCareInvoiceBody = {
|
|
|
175
170
|
loanedByOrganisationName?: string;
|
|
176
171
|
loanedByInvoiceNumber?: string;
|
|
177
172
|
healthProfessionalTypeCode?: string;
|
|
178
|
-
|
|
173
|
+
healthProfessionalTypeOther?: string;
|
|
179
174
|
itemFirstPayment?: boolean;
|
|
180
175
|
lateSubmissionReasonCode?: string;
|
|
181
176
|
lateSubmissionJustification?: string;
|
|
182
177
|
}>;
|
|
183
|
-
callbackUrls?: Array<string>;
|
|
184
|
-
webhookUrls?: Array<string>;
|
|
185
178
|
};
|
|
186
179
|
export declare type AgedCareInvoice = {
|
|
187
180
|
_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/web-sdk",
|
|
3
|
-
"version": "12.2.1
|
|
3
|
+
"version": "12.2.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/plugin-transform-runtime": "7.8.3",
|
|
46
|
-
"@medipass/utils": "^11.87.1
|
|
46
|
+
"@medipass/utils": "^11.87.1",
|
|
47
47
|
"@types/applepayjs": "14.0.8",
|
|
48
48
|
"@types/googlepay": "0.7.6",
|
|
49
49
|
"@types/jest": "28.1.6",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"resolutions": {
|
|
59
59
|
"react-scripts/**/@typescript-eslint/eslint-plugin": "5.32.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "a5be2e1f672b1554a65ce39b6fa0f72d8ff024ac"
|
|
62
62
|
}
|