@royalinvest/dto 0.2.2 → 0.2.4
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/address.js +2 -0
- package/dist/auth.js +2 -0
- package/dist/country.js +2 -0
- package/dist/enum/index.js +15 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +31 -0
- package/dist/lease-list-item.js +2 -0
- package/dist/lease.d.ts +1 -1
- package/dist/lease.js +2 -0
- package/dist/login.js +2 -0
- package/dist/notification.js +2 -0
- package/dist/property.js +2 -0
- package/dist/quebec-lease-dwelling/index.js +2 -0
- package/dist/quebec-lease-dwelling/sectionA.d.ts +1 -1
- package/dist/quebec-lease-dwelling/sectionA.js +2 -0
- package/dist/quebec-lease-dwelling/sectionB.js +2 -0
- package/dist/quebec-lease-dwelling/sectionC.js +2 -0
- package/dist/quebec-lease-dwelling/sectionD.js +2 -0
- package/dist/quebec-lease-dwelling/sectionE.js +2 -0
- package/dist/quebec-lease-dwelling/sectionF.js +2 -0
- package/dist/quebec-lease-dwelling/sectionG.js +2 -0
- package/dist/quebec-lease-dwelling/sectionH.js +2 -0
- package/dist/quebec-lease-dwelling/sectionI.js +2 -0
- package/dist/sign-up.js +2 -0
- package/dist/state.js +2 -0
- package/dist/template.js +2 -0
- package/dist/user.js +2 -0
- package/dist/yes-no.js +2 -0
- package/package.json +1 -1
- /package/dist/{enums.d.ts → enum/index.d.ts} +0 -0
package/dist/address.js
ADDED
package/dist/auth.js
ADDED
package/dist/country.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
4
|
+
var PartyTypeEnum;
|
|
5
|
+
(function (PartyTypeEnum) {
|
|
6
|
+
PartyTypeEnum["default"] = "";
|
|
7
|
+
PartyTypeEnum["lessor"] = "lessor";
|
|
8
|
+
PartyTypeEnum["lessee"] = "lessee";
|
|
9
|
+
})(PartyTypeEnum || (exports.PartyTypeEnum = PartyTypeEnum = {}));
|
|
10
|
+
var RentTypeEnum;
|
|
11
|
+
(function (RentTypeEnum) {
|
|
12
|
+
RentTypeEnum["default"] = "";
|
|
13
|
+
RentTypeEnum["fixed"] = "fixed";
|
|
14
|
+
RentTypeEnum["indeterminate"] = "indeterminate";
|
|
15
|
+
})(RentTypeEnum || (exports.RentTypeEnum = RentTypeEnum = {}));
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./enum"), exports);
|
|
18
|
+
__exportStar(require("./quebec-lease-dwelling"), exports);
|
|
19
|
+
__exportStar(require("./address"), exports);
|
|
20
|
+
__exportStar(require("./country"), exports);
|
|
21
|
+
__exportStar(require("./lease-list-item"), exports);
|
|
22
|
+
__exportStar(require("./lease"), exports);
|
|
23
|
+
__exportStar(require("./property"), exports);
|
|
24
|
+
__exportStar(require("./state"), exports);
|
|
25
|
+
__exportStar(require("./template"), exports);
|
|
26
|
+
__exportStar(require("./yes-no"), exports);
|
|
27
|
+
__exportStar(require("./login"), exports);
|
|
28
|
+
__exportStar(require("./sign-up"), exports);
|
|
29
|
+
__exportStar(require("./user"), exports);
|
|
30
|
+
__exportStar(require("./auth"), exports);
|
|
31
|
+
__exportStar(require("./notification"), exports);
|
package/dist/lease.d.ts
CHANGED
package/dist/lease.js
ADDED
package/dist/login.js
ADDED
package/dist/property.js
ADDED
package/dist/sign-up.js
ADDED
package/dist/state.js
ADDED
package/dist/template.js
ADDED
package/dist/user.js
ADDED
package/dist/yes-no.js
ADDED
package/package.json
CHANGED
|
File without changes
|