@medipass/utils 11.63.0 → 11.63.1-feature-refund-required-claim-status.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/constants.js +13 -1
- package/package.json +2 -2
package/constants.js
CHANGED
|
@@ -211,7 +211,18 @@ var STATUSES = {
|
|
|
211
211
|
PENDING: 'PENDING',
|
|
212
212
|
EXPIRED: 'EXPIRED'
|
|
213
213
|
};
|
|
214
|
-
/* ======
|
|
214
|
+
/* ====== END: STATUSES ======= */
|
|
215
|
+
|
|
216
|
+
/* ====== START: PAYMENT STATUSES ======= */
|
|
217
|
+
|
|
218
|
+
var PAYMENT_STATUSES = {
|
|
219
|
+
ACCEPTED: 'accepted',
|
|
220
|
+
APPROVED: 'approved',
|
|
221
|
+
PAID: 'paid',
|
|
222
|
+
PENDING: 'pending',
|
|
223
|
+
SETTLING: 'settling'
|
|
224
|
+
};
|
|
225
|
+
/* ====== END: PAYMENT STATUSES ======= */
|
|
215
226
|
|
|
216
227
|
/* ====== START: TRANSACTIONS ======= */
|
|
217
228
|
|
|
@@ -410,6 +421,7 @@ exports.MEDICARE_FORMS = MEDICARE_FORMS;
|
|
|
410
421
|
exports.NO_EP_ID_REASON_IDS = NO_EP_ID_REASON_IDS;
|
|
411
422
|
exports.PAYMENT_FACILITIES = PAYMENT_FACILITIES;
|
|
412
423
|
exports.PAYMENT_PROVIDERS = PAYMENT_PROVIDERS;
|
|
424
|
+
exports.PAYMENT_STATUSES = PAYMENT_STATUSES;
|
|
413
425
|
exports.PAYMENT_TYPES = PAYMENT_TYPES;
|
|
414
426
|
exports.PMS = PMS;
|
|
415
427
|
exports.PRODUCTS = PRODUCTS;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/utils",
|
|
3
|
-
"version": "11.63.0",
|
|
3
|
+
"version": "11.63.1-feature-refund-required-claim-status.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"redux-thunk": "^2.2.0",
|
|
49
49
|
"rimraf": "^2.6.2"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "6ab20bc35bf14692b965e22c6dd863a05be22840"
|
|
52
52
|
}
|