hububb-saas-shared 1.2.29 → 1.2.30
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.
|
@@ -150,6 +150,7 @@ export declare const ReservationSchema: z.ZodObject<{
|
|
|
150
150
|
xeroLastSuccessAt: z.ZodOptional<z.ZodDate>;
|
|
151
151
|
xeroLastError: z.ZodOptional<z.ZodString>;
|
|
152
152
|
xeroRetryCount: z.ZodOptional<z.ZodNumber>;
|
|
153
|
+
isUnitChanged: z.ZodBoolean;
|
|
153
154
|
}, "strip", z.ZodTypeAny, {
|
|
154
155
|
currency: string;
|
|
155
156
|
id: number;
|
|
@@ -172,6 +173,7 @@ export declare const ReservationSchema: z.ZodObject<{
|
|
|
172
173
|
readyForPayout: boolean;
|
|
173
174
|
paidOut: boolean;
|
|
174
175
|
requiresPayout: boolean;
|
|
176
|
+
isUnitChanged: boolean;
|
|
175
177
|
notes?: string | undefined;
|
|
176
178
|
checkedInMark?: Date | undefined;
|
|
177
179
|
checkedOutMark?: Date | undefined;
|
|
@@ -206,6 +208,7 @@ export declare const ReservationSchema: z.ZodObject<{
|
|
|
206
208
|
readyForPayout: boolean;
|
|
207
209
|
paidOut: boolean;
|
|
208
210
|
requiresPayout: boolean;
|
|
211
|
+
isUnitChanged: boolean;
|
|
209
212
|
notes?: string | undefined;
|
|
210
213
|
checkedInMark?: Date | undefined;
|
|
211
214
|
checkedOutMark?: Date | undefined;
|
|
@@ -1099,6 +1099,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1099
1099
|
xeroLastSuccessAt: z.ZodOptional<z.ZodDate>;
|
|
1100
1100
|
xeroLastError: z.ZodOptional<z.ZodString>;
|
|
1101
1101
|
xeroRetryCount: z.ZodOptional<z.ZodNumber>;
|
|
1102
|
+
isUnitChanged: z.ZodBoolean;
|
|
1102
1103
|
}, "id" | "status" | "propertyId" | "otaName" | "checkIn" | "checkOut">, {
|
|
1103
1104
|
propertyNickname: z.ZodOptional<z.ZodString>;
|
|
1104
1105
|
property: z.ZodOptional<z.ZodObject<{
|