@kohost/api-client 3.1.11 → 3.1.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.
@@ -67,7 +67,7 @@ export interface Space {
67
67
  };
68
68
  allowed?: boolean;
69
69
  };
70
- features?: "pet";
70
+ features?: "pet"[];
71
71
  maximumOccupancy?: number;
72
72
  housekeepingStatus?: "clean" | "dirty" | "inspected" | "pickup";
73
73
  serviceStatus?: "inService" | "outOfOrder" | "outOfService";
@@ -75,10 +75,11 @@
75
75
  }
76
76
  },
77
77
  "features": {
78
- "type": "string",
79
- "enum": [
80
- "pet"
81
- ]
78
+ "type": "array",
79
+ "items": {
80
+ "type": "string",
81
+ "enum": ["pet"]
82
+ }
82
83
  },
83
84
  "maximumOccupancy": {
84
85
  "type": "number",
@@ -11037,10 +11037,11 @@ var require_space = __commonJS({
11037
11037
  }
11038
11038
  },
11039
11039
  features: {
11040
- type: "string",
11041
- enum: [
11042
- "pet"
11043
- ]
11040
+ type: "array",
11041
+ items: {
11042
+ type: "string",
11043
+ enum: ["pet"]
11044
+ }
11044
11045
  },
11045
11046
  maximumOccupancy: {
11046
11047
  type: "number",