hububb-saas-shared 1.0.79 → 1.0.80
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.
|
@@ -3,8 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceType = void 0;
|
|
4
4
|
var ServiceType;
|
|
5
5
|
(function (ServiceType) {
|
|
6
|
-
ServiceType["
|
|
7
|
-
ServiceType["
|
|
6
|
+
ServiceType["INTEGRATION"] = "INTEGRATION";
|
|
7
|
+
ServiceType["ON_DEMAND"] = "ON_DEMAND";
|
|
8
|
+
ServiceType["RECURRING"] = "RECURRING";
|
|
8
9
|
})(ServiceType || (exports.ServiceType = ServiceType = {}));
|
|
9
10
|
var TaskStatus;
|
|
10
11
|
(function (TaskStatus) {
|
|
@@ -6,6 +6,14 @@ export declare const propertyMetadataSchema: import("zod").ZodObject<{
|
|
|
6
6
|
checkInAgent: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7
7
|
checkInInstructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8
8
|
checkOutInstructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9
|
+
checkInMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
10
|
+
rubbishCollection: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11
|
+
noSmokingFee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12
|
+
noPartyingFee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
13
|
+
noUnannouncedGuestsFee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
14
|
+
houseManual: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
15
|
+
communalCleanSchedule: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
16
|
+
parkingSpace: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9
17
|
createdAt: import("zod").ZodDate;
|
|
10
18
|
updatedAt: import("zod").ZodDate;
|
|
11
19
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -18,6 +26,14 @@ export declare const propertyMetadataSchema: import("zod").ZodObject<{
|
|
|
18
26
|
checkInInstructions?: string | null | undefined;
|
|
19
27
|
checkOutInstructions?: string | null | undefined;
|
|
20
28
|
checkInAgent?: string | null | undefined;
|
|
29
|
+
checkInMethod?: string | null | undefined;
|
|
30
|
+
rubbishCollection?: string | null | undefined;
|
|
31
|
+
noSmokingFee?: string | null | undefined;
|
|
32
|
+
noPartyingFee?: string | null | undefined;
|
|
33
|
+
noUnannouncedGuestsFee?: string | null | undefined;
|
|
34
|
+
houseManual?: string | null | undefined;
|
|
35
|
+
communalCleanSchedule?: string | null | undefined;
|
|
36
|
+
parkingSpace?: string | null | undefined;
|
|
21
37
|
}, {
|
|
22
38
|
id: number;
|
|
23
39
|
createdAt: Date;
|
|
@@ -28,4 +44,12 @@ export declare const propertyMetadataSchema: import("zod").ZodObject<{
|
|
|
28
44
|
checkInInstructions?: string | null | undefined;
|
|
29
45
|
checkOutInstructions?: string | null | undefined;
|
|
30
46
|
checkInAgent?: string | null | undefined;
|
|
47
|
+
checkInMethod?: string | null | undefined;
|
|
48
|
+
rubbishCollection?: string | null | undefined;
|
|
49
|
+
noSmokingFee?: string | null | undefined;
|
|
50
|
+
noPartyingFee?: string | null | undefined;
|
|
51
|
+
noUnannouncedGuestsFee?: string | null | undefined;
|
|
52
|
+
houseManual?: string | null | undefined;
|
|
53
|
+
communalCleanSchedule?: string | null | undefined;
|
|
54
|
+
parkingSpace?: string | null | undefined;
|
|
31
55
|
}>;
|
|
@@ -10,6 +10,14 @@ exports.propertyMetadataSchema = (0, zod_1.object)({
|
|
|
10
10
|
checkInAgent: (0, zod_1.string)().nullish(),
|
|
11
11
|
checkInInstructions: (0, zod_1.string)().nullish(),
|
|
12
12
|
checkOutInstructions: (0, zod_1.string)().nullish(),
|
|
13
|
+
checkInMethod: (0, zod_1.string)().nullish(),
|
|
14
|
+
rubbishCollection: (0, zod_1.string)().nullish(),
|
|
15
|
+
noSmokingFee: (0, zod_1.string)().nullish(),
|
|
16
|
+
noPartyingFee: (0, zod_1.string)().nullish(),
|
|
17
|
+
noUnannouncedGuestsFee: (0, zod_1.string)().nullish(),
|
|
18
|
+
houseManual: (0, zod_1.string)().nullish(),
|
|
19
|
+
communalCleanSchedule: (0, zod_1.string)().nullish(),
|
|
20
|
+
parkingSpace: (0, zod_1.string)().nullish(),
|
|
13
21
|
createdAt: (0, zod_1.date)(),
|
|
14
22
|
updatedAt: (0, zod_1.date)(),
|
|
15
23
|
});
|