@exclusive-website/types 2.5.4 → 2.5.6
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/dist/filterEnums.d.ts +3 -2
- package/dist/filterEnums.js +2 -1
- package/package.json +1 -1
- package/src/filterEnums.ts +2 -1
package/dist/filterEnums.d.ts
CHANGED
package/dist/filterEnums.js
CHANGED
|
@@ -299,6 +299,7 @@ var ApprovedState;
|
|
|
299
299
|
var TransactionStatus;
|
|
300
300
|
(function (TransactionStatus) {
|
|
301
301
|
TransactionStatus["PAID"] = "PAID";
|
|
302
|
-
TransactionStatus["
|
|
302
|
+
TransactionStatus["UNPAID"] = "UNPAID";
|
|
303
303
|
TransactionStatus["CANCELLED"] = "CANCELLED";
|
|
304
|
+
TransactionStatus["NONE"] = "NONE";
|
|
304
305
|
})(TransactionStatus = exports.TransactionStatus || (exports.TransactionStatus = {}));
|
package/package.json
CHANGED