@awarevue/api-types 2.0.51 → 2.0.53

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.
@@ -38,6 +38,7 @@ export declare const sAppInfo: z.ZodObject<{
38
38
  minDifferentCase?: number | undefined;
39
39
  minDigits?: number | undefined;
40
40
  }>;
41
+ mapTileServerUrl: z.ZodString;
41
42
  }, "strip", z.ZodTypeAny, {
42
43
  version: string;
43
44
  releaseDate: string;
@@ -51,6 +52,7 @@ export declare const sAppInfo: z.ZodObject<{
51
52
  minDifferentCase: number;
52
53
  minDigits: number;
53
54
  };
55
+ mapTileServerUrl: string;
54
56
  }, {
55
57
  version: string;
56
58
  releaseDate: string;
@@ -64,5 +66,6 @@ export declare const sAppInfo: z.ZodObject<{
64
66
  minDifferentCase?: number | undefined;
65
67
  minDigits?: number | undefined;
66
68
  };
69
+ mapTileServerUrl: string;
67
70
  }>;
68
71
  export type AppInfo = z.infer<typeof sAppInfo>;
@@ -16,4 +16,5 @@ exports.sAppInfo = zod_1.z.object({
16
16
  globalZoneId: zod_1.z.string(),
17
17
  presenceTrackerId: zod_1.z.string(),
18
18
  passwordPolicy: exports.sPasswordPolicy,
19
+ mapTileServerUrl: zod_1.z.string(),
19
20
  });
@@ -30,7 +30,9 @@ export declare const sAddLayoutRequest: z.ZodObject<{
30
30
  far: number;
31
31
  }>, "many">;
32
32
  colorize: z.ZodBoolean;
33
+ map: z.ZodBoolean;
33
34
  }, "strip", z.ZodTypeAny, {
35
+ map: boolean;
34
36
  name: string;
35
37
  devices: {
36
38
  scale: number;
@@ -46,6 +48,7 @@ export declare const sAddLayoutRequest: z.ZodObject<{
46
48
  imageId: string;
47
49
  order?: number | undefined;
48
50
  }, {
51
+ map: boolean;
49
52
  name: string;
50
53
  devices: {
51
54
  scale: number;
@@ -94,7 +97,9 @@ export declare const sUpdateLayoutRequest: z.ZodObject<{
94
97
  far: number;
95
98
  }>, "many">>;
96
99
  colorize: z.ZodOptional<z.ZodBoolean>;
100
+ map: z.ZodOptional<z.ZodBoolean>;
97
101
  }, "strip", z.ZodTypeAny, {
102
+ map?: boolean | undefined;
98
103
  name?: string | undefined;
99
104
  order?: number | undefined;
100
105
  isDefault?: boolean | undefined;
@@ -111,6 +116,7 @@ export declare const sUpdateLayoutRequest: z.ZodObject<{
111
116
  thumbnailId?: string | undefined;
112
117
  imageId?: string | undefined;
113
118
  }, {
119
+ map?: boolean | undefined;
114
120
  name?: string | undefined;
115
121
  order?: number | undefined;
116
122
  isDefault?: boolean | undefined;
@@ -13,6 +13,7 @@ exports.sAddLayoutRequest = zod_1.default.object({
13
13
  order: zod_1.default.number().optional(),
14
14
  devices: zod_1.default.array(layout_1.sLayoutDeviceDto),
15
15
  colorize: zod_1.default.boolean(),
16
+ map: zod_1.default.boolean(),
16
17
  });
17
18
  exports.sUpdateLayoutRequest = zod_1.default.object({
18
19
  name: zod_1.default.string().optional(),
@@ -22,4 +23,5 @@ exports.sUpdateLayoutRequest = zod_1.default.object({
22
23
  isDefault: zod_1.default.boolean().optional(),
23
24
  devices: zod_1.default.array(layout_1.sLayoutDeviceDto).optional(),
24
25
  colorize: zod_1.default.boolean().optional(),
26
+ map: zod_1.default.boolean().optional(),
25
27
  });
@@ -58,9 +58,11 @@ export declare const sLayoutDto: z.ZodObject<{
58
58
  far: number;
59
59
  }>, "many">;
60
60
  colorize: z.ZodBoolean;
61
+ map: z.ZodBoolean;
61
62
  createdOn: z.ZodString;
62
63
  lastModifiedOn: z.ZodString;
63
64
  }, "strip", z.ZodTypeAny, {
65
+ map: boolean;
64
66
  name: string;
65
67
  id: string;
66
68
  order: number;
@@ -80,6 +82,7 @@ export declare const sLayoutDto: z.ZodObject<{
80
82
  }[];
81
83
  colorize: boolean;
82
84
  }, {
85
+ map: boolean;
83
86
  name: string;
84
87
  id: string;
85
88
  order: number;
@@ -20,6 +20,7 @@ exports.sLayoutDto = zod_1.z.object({
20
20
  isDefault: zod_1.z.boolean(),
21
21
  devices: zod_1.z.array(exports.sLayoutDeviceDto),
22
22
  colorize: zod_1.z.boolean(),
23
+ map: zod_1.z.boolean(),
23
24
  createdOn: zod_1.z.string(),
24
25
  lastModifiedOn: zod_1.z.string(),
25
26
  });
package/dist/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@awarevue/api-types",
3
- "version": "2.0.51",
3
+ "repository": {
4
+ "type": "git",
5
+ "url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
6
+ },
7
+ "version": "2.0.53",
4
8
  "description": "Common types between backend, agent(s) and frontend(s)",
5
9
  "main": "dist/index.js",
6
10
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@awarevue/api-types",
3
- "version": "2.0.51",
3
+ "repository": {
4
+ "type": "git",
5
+ "url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
6
+ },
7
+ "version": "2.0.53",
4
8
  "description": "Common types between backend, agent(s) and frontend(s)",
5
9
  "main": "dist/index.js",
6
10
  "types": "dist/index.d.ts",