@royalinvest/dto 0.71.12 → 0.71.21
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/enum/cycle.d.ts +5 -0
- package/dist/enum/cycle.js +9 -0
- package/dist/enum/index.d.ts +1 -0
- package/dist/enum/index.js +1 -0
- package/dist/propertyUnit.d.ts +5 -0
- package/dist/rabbitmq/messageGenerate.d.ts +1 -0
- package/dist/rabbitmq/messageNotification.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RentCycleEnum = void 0;
|
|
4
|
+
var RentCycleEnum;
|
|
5
|
+
(function (RentCycleEnum) {
|
|
6
|
+
RentCycleEnum["DAILY"] = "daily";
|
|
7
|
+
RentCycleEnum["MONTHLY"] = "monthly";
|
|
8
|
+
RentCycleEnum["YEARLY"] = "yearly";
|
|
9
|
+
})(RentCycleEnum || (exports.RentCycleEnum = RentCycleEnum = {}));
|
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.UnitMeasurementEnum = exports.BulkPurchaseSourceTypeEnum = exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
18
18
|
__exportStar(require("./country"), exports);
|
|
19
19
|
__exportStar(require("./currency"), exports);
|
|
20
|
+
__exportStar(require("./cycle"), exports);
|
|
20
21
|
var PartyTypeEnum;
|
|
21
22
|
(function (PartyTypeEnum) {
|
|
22
23
|
PartyTypeEnum["default"] = "";
|
package/dist/propertyUnit.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { CurrencyEnum } from "./enum";
|
|
2
|
+
import { RentCycleEnum } from "./enum/cycle";
|
|
1
3
|
export interface IPropertyUnit {
|
|
2
4
|
id?: string;
|
|
3
5
|
unit_number: string;
|
|
4
6
|
number_of_rooms?: string;
|
|
7
|
+
rent_amount_minor?: string;
|
|
8
|
+
rent_cycle?: RentCycleEnum;
|
|
9
|
+
currency?: CurrencyEnum;
|
|
5
10
|
}
|
package/package.json
CHANGED