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;
@@ -89,4 +89,5 @@ exports.ReservationSchema = zod_1.z.object({
89
89
  xeroLastSuccessAt: zod_1.z.date().optional(),
90
90
  xeroLastError: zod_1.z.string().optional(),
91
91
  xeroRetryCount: zod_1.z.number().optional(),
92
+ isUnitChanged: zod_1.z.boolean(),
92
93
  });
@@ -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<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.2.29",
4
+ "version": "1.2.30",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",