hububb-saas-shared 1.0.15 → 1.0.16

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.
@@ -196,6 +196,7 @@ export declare const updatePropertySchema: import("zod").ZodObject<{
196
196
  latitude?: number | undefined;
197
197
  longitude?: number | undefined;
198
198
  }>>;
199
+ amenities: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
199
200
  }, "strip", import("zod").ZodTypeAny, {
200
201
  address?: {
201
202
  state?: string | undefined;
@@ -243,6 +244,7 @@ export declare const updatePropertySchema: import("zod").ZodObject<{
243
244
  minimumNights?: number | undefined;
244
245
  maximumNights?: number | undefined;
245
246
  } | undefined;
247
+ amenities?: string[] | undefined;
246
248
  }, {
247
249
  address?: {
248
250
  state?: string | undefined;
@@ -290,4 +292,5 @@ export declare const updatePropertySchema: import("zod").ZodObject<{
290
292
  minimumNights?: number | undefined;
291
293
  maximumNights?: number | undefined;
292
294
  } | undefined;
295
+ amenities?: string[] | undefined;
293
296
  }>;
@@ -72,4 +72,5 @@ exports.updatePropertySchema = (0, zod_1.object)({
72
72
  longitude: (0, zod_1.number)().int().optional(),
73
73
  full: (0, zod_1.string)().optional(),
74
74
  }).optional(),
75
+ amenities: (0, zod_1.string)().array().optional(),
75
76
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.0.15",
4
+ "version": "1.0.16",
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",