@7365admin1/layer-common 3.0.2 → 3.0.5

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "3.0.2",
5
+ "version": "3.0.5",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "publishConfig": {
@@ -92,11 +92,8 @@ declare type TFacility = {
92
92
  count: number;
93
93
  permanentRemarks: string;
94
94
  }[];
95
- isBookingUnitLimitEnabled: boolean;
96
95
  bookingUnitLimit: number | null;
97
- isMaxNumberGuestLimitEnabled: boolean;
98
96
  maxNumberGuestLimit: number | null;
99
- isCancelAllowedLimitEnabled: boolean;
100
97
  daysAllowedCancel: number | null;
101
98
  isBookingPolicyEnabled: boolean;
102
99
  updatedBy?: string;
@@ -3,8 +3,14 @@ declare type TVisitor = {
3
3
  name?: string;
4
4
  type: TVisitorType;
5
5
  company?: string | "";
6
- block?: number | string;
7
- level?: string;
6
+ block?: {
7
+ name: string;
8
+ _id: string;
9
+ };
10
+ level?: {
11
+ name: string;
12
+ _id: string;
13
+ };
8
14
  unit?: string;
9
15
  unitName?: string; // only for display purpose
10
16
  contact: string;