@kipicore/dbcore 1.1.379 → 1.1.381
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/constants/app.d.ts +2 -1
- package/dist/constants/app.js +1 -0
- package/package.json +1 -1
package/dist/constants/app.d.ts
CHANGED
|
@@ -489,7 +489,8 @@ export declare enum USER_CHAPTER_INDEX_STATUS {
|
|
|
489
489
|
export declare enum FEE_HISTORY_STATUS {
|
|
490
490
|
COMPLETED = "COMPLETED",
|
|
491
491
|
PENDING = "PENDING",
|
|
492
|
-
DELETED = "DELETED"
|
|
492
|
+
DELETED = "DELETED",
|
|
493
|
+
BOUNCE = "BOUNCE"
|
|
493
494
|
}
|
|
494
495
|
export declare enum CHAPTER_INDEX_FILE_TYPE {
|
|
495
496
|
VIDEO = "VIDEO",
|
package/dist/constants/app.js
CHANGED
|
@@ -594,6 +594,7 @@ var FEE_HISTORY_STATUS;
|
|
|
594
594
|
FEE_HISTORY_STATUS["COMPLETED"] = "COMPLETED";
|
|
595
595
|
FEE_HISTORY_STATUS["PENDING"] = "PENDING";
|
|
596
596
|
FEE_HISTORY_STATUS["DELETED"] = "DELETED";
|
|
597
|
+
FEE_HISTORY_STATUS["BOUNCE"] = "BOUNCE";
|
|
597
598
|
})(FEE_HISTORY_STATUS || (exports.FEE_HISTORY_STATUS = FEE_HISTORY_STATUS = {}));
|
|
598
599
|
var CHAPTER_INDEX_FILE_TYPE;
|
|
599
600
|
(function (CHAPTER_INDEX_FILE_TYPE) {
|
package/package.json
CHANGED