@kipicore/dbcore 1.1.281 → 1.1.282
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
|
@@ -533,7 +533,8 @@ export declare enum DESIGNATION_OF_PERSON {
|
|
|
533
533
|
}
|
|
534
534
|
export declare enum PROPERTY_STATUS {
|
|
535
535
|
RENTED = "RENTED",
|
|
536
|
-
OWNED = "OWNED"
|
|
536
|
+
OWNED = "OWNED",
|
|
537
|
+
NOT_AVAILABLE = "NOT_AVAILABLE"
|
|
537
538
|
}
|
|
538
539
|
export declare enum BOOLEAN_STATUS {
|
|
539
540
|
YES = "YES",
|
package/dist/constants/app.js
CHANGED
|
@@ -652,6 +652,7 @@ var PROPERTY_STATUS;
|
|
|
652
652
|
(function (PROPERTY_STATUS) {
|
|
653
653
|
PROPERTY_STATUS["RENTED"] = "RENTED";
|
|
654
654
|
PROPERTY_STATUS["OWNED"] = "OWNED";
|
|
655
|
+
PROPERTY_STATUS["NOT_AVAILABLE"] = "NOT_AVAILABLE";
|
|
655
656
|
})(PROPERTY_STATUS || (exports.PROPERTY_STATUS = PROPERTY_STATUS = {}));
|
|
656
657
|
var BOOLEAN_STATUS;
|
|
657
658
|
(function (BOOLEAN_STATUS) {
|
package/package.json
CHANGED