hububb-saas-shared 1.2.11 → 1.2.12
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.
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { PropertyManagerSessionStatus } from "../../types/enums";
|
|
2
|
+
import { PropertyManagerSessionStatus, PropertyManagerSessionType } from "../../types/enums";
|
|
3
3
|
export declare const propertyManagerSessionSchema: z.ZodObject<{
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
initiatedBy: z.ZodString;
|
|
6
|
+
sessionType: z.ZodNativeEnum<typeof PropertyManagerSessionType>;
|
|
6
7
|
status: z.ZodNativeEnum<typeof PropertyManagerSessionStatus>;
|
|
7
8
|
fileUrls: z.ZodArray<z.ZodString, "many">;
|
|
8
9
|
fileNames: z.ZodArray<z.ZodString, "many">;
|
|
@@ -19,6 +20,7 @@ export declare const propertyManagerSessionSchema: z.ZodObject<{
|
|
|
19
20
|
createdAt: Date;
|
|
20
21
|
updatedAt: Date;
|
|
21
22
|
initiatedBy: string;
|
|
23
|
+
sessionType: PropertyManagerSessionType;
|
|
22
24
|
fileUrls: string[];
|
|
23
25
|
fileNames: string[];
|
|
24
26
|
appliedAt?: Date | undefined;
|
|
@@ -32,6 +34,7 @@ export declare const propertyManagerSessionSchema: z.ZodObject<{
|
|
|
32
34
|
createdAt: Date;
|
|
33
35
|
updatedAt: Date;
|
|
34
36
|
initiatedBy: string;
|
|
37
|
+
sessionType: PropertyManagerSessionType;
|
|
35
38
|
fileUrls: string[];
|
|
36
39
|
fileNames: string[];
|
|
37
40
|
appliedAt?: Date | undefined;
|
|
@@ -6,6 +6,7 @@ const enums_1 = require("../../types/enums");
|
|
|
6
6
|
exports.propertyManagerSessionSchema = (0, zod_1.object)({
|
|
7
7
|
id: (0, zod_1.string)(),
|
|
8
8
|
initiatedBy: (0, zod_1.string)(),
|
|
9
|
+
sessionType: (0, zod_1.nativeEnum)(enums_1.PropertyManagerSessionType),
|
|
9
10
|
status: (0, zod_1.nativeEnum)(enums_1.PropertyManagerSessionStatus),
|
|
10
11
|
fileUrls: (0, zod_1.array)((0, zod_1.string)()),
|
|
11
12
|
fileNames: (0, zod_1.array)((0, zod_1.string)()),
|
|
@@ -109,6 +109,10 @@ export declare enum PropertyManagerSuggestionStatus {
|
|
|
109
109
|
APPLIED = "APPLIED",
|
|
110
110
|
FAILED = "FAILED"
|
|
111
111
|
}
|
|
112
|
+
export declare enum PropertyManagerSessionType {
|
|
113
|
+
DOCUMENT_ANALYSIS = "DOCUMENT_ANALYSIS",
|
|
114
|
+
PROPERTY_AUDIT = "PROPERTY_AUDIT"
|
|
115
|
+
}
|
|
112
116
|
export declare enum HumanReviewPriority {
|
|
113
117
|
LOW = "LOW",
|
|
114
118
|
NORMAL = "NORMAL",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HumanReviewStatus = exports.HumanReviewPriority = exports.PropertyManagerSuggestionStatus = exports.PropertyManagerSessionStatus = exports.AgentActionType = exports.AgentSessionStatus = exports.GuestCoordinatorResponseStyle = exports.AiAgentCategory = exports.PropertyType = exports.OnboardingType = exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceCategory = exports.ServiceGroup = exports.ServiceType = void 0;
|
|
3
|
+
exports.HumanReviewStatus = exports.HumanReviewPriority = exports.PropertyManagerSessionType = exports.PropertyManagerSuggestionStatus = exports.PropertyManagerSessionStatus = exports.AgentActionType = exports.AgentSessionStatus = exports.GuestCoordinatorResponseStyle = exports.AiAgentCategory = exports.PropertyType = exports.OnboardingType = exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceCategory = exports.ServiceGroup = exports.ServiceType = void 0;
|
|
4
4
|
var ServiceType;
|
|
5
5
|
(function (ServiceType) {
|
|
6
6
|
ServiceType["INTEGRATION"] = "INTEGRATION";
|
|
@@ -134,6 +134,11 @@ var PropertyManagerSuggestionStatus;
|
|
|
134
134
|
PropertyManagerSuggestionStatus["APPLIED"] = "APPLIED";
|
|
135
135
|
PropertyManagerSuggestionStatus["FAILED"] = "FAILED";
|
|
136
136
|
})(PropertyManagerSuggestionStatus || (exports.PropertyManagerSuggestionStatus = PropertyManagerSuggestionStatus = {}));
|
|
137
|
+
var PropertyManagerSessionType;
|
|
138
|
+
(function (PropertyManagerSessionType) {
|
|
139
|
+
PropertyManagerSessionType["DOCUMENT_ANALYSIS"] = "DOCUMENT_ANALYSIS";
|
|
140
|
+
PropertyManagerSessionType["PROPERTY_AUDIT"] = "PROPERTY_AUDIT";
|
|
141
|
+
})(PropertyManagerSessionType || (exports.PropertyManagerSessionType = PropertyManagerSessionType = {}));
|
|
137
142
|
var HumanReviewPriority;
|
|
138
143
|
(function (HumanReviewPriority) {
|
|
139
144
|
HumanReviewPriority["LOW"] = "LOW";
|