@awarevue/api-types 2.0.32 → 2.0.34

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.
@@ -6,6 +6,7 @@ export declare const sPresencePersonDto: z.ZodObject<{
6
6
  avatarId: z.ZodNullable<z.ZodString>;
7
7
  type: z.ZodString;
8
8
  position: z.ZodNullable<z.ZodString>;
9
+ archived: z.ZodBoolean;
9
10
  }, "strip", z.ZodTypeAny, {
10
11
  type: string;
11
12
  id: string;
@@ -13,6 +14,7 @@ export declare const sPresencePersonDto: z.ZodObject<{
13
14
  firstName: string;
14
15
  lastName: string;
15
16
  avatarId: string | null;
17
+ archived: boolean;
16
18
  }, {
17
19
  type: string;
18
20
  id: string;
@@ -20,6 +22,7 @@ export declare const sPresencePersonDto: z.ZodObject<{
20
22
  firstName: string;
21
23
  lastName: string;
22
24
  avatarId: string | null;
25
+ archived: boolean;
23
26
  }>;
24
27
  export type PresencePersonDto = z.infer<typeof sPresencePersonDto>;
25
28
  export declare const sPresenceZoneDto: z.ZodObject<{
@@ -45,6 +48,7 @@ export declare const sPersonPresenceDto: z.ZodObject<{
45
48
  avatarId: z.ZodNullable<z.ZodString>;
46
49
  type: z.ZodString;
47
50
  position: z.ZodNullable<z.ZodString>;
51
+ archived: z.ZodBoolean;
48
52
  }, "strip", z.ZodTypeAny, {
49
53
  type: string;
50
54
  id: string;
@@ -52,6 +56,7 @@ export declare const sPersonPresenceDto: z.ZodObject<{
52
56
  firstName: string;
53
57
  lastName: string;
54
58
  avatarId: string | null;
59
+ archived: boolean;
55
60
  }, {
56
61
  type: string;
57
62
  id: string;
@@ -59,6 +64,7 @@ export declare const sPersonPresenceDto: z.ZodObject<{
59
64
  firstName: string;
60
65
  lastName: string;
61
66
  avatarId: string | null;
67
+ archived: boolean;
62
68
  }>;
63
69
  zone: z.ZodUnion<[z.ZodObject<{
64
70
  id: z.ZodString;
@@ -88,6 +94,7 @@ export declare const sPersonPresenceDto: z.ZodObject<{
88
94
  firstName: string;
89
95
  lastName: string;
90
96
  avatarId: string | null;
97
+ archived: boolean;
91
98
  };
92
99
  zone: string | {
93
100
  id: string;
@@ -108,6 +115,7 @@ export declare const sPersonPresenceDto: z.ZodObject<{
108
115
  firstName: string;
109
116
  lastName: string;
110
117
  avatarId: string | null;
118
+ archived: boolean;
111
119
  };
112
120
  zone: string | {
113
121
  id: string;
@@ -129,6 +137,7 @@ export declare const sPersonPresenceActionDto: z.ZodObject<{
129
137
  avatarId: z.ZodNullable<z.ZodString>;
130
138
  type: z.ZodString;
131
139
  position: z.ZodNullable<z.ZodString>;
140
+ archived: z.ZodBoolean;
132
141
  }, "strip", z.ZodTypeAny, {
133
142
  type: string;
134
143
  id: string;
@@ -136,6 +145,7 @@ export declare const sPersonPresenceActionDto: z.ZodObject<{
136
145
  firstName: string;
137
146
  lastName: string;
138
147
  avatarId: string | null;
148
+ archived: boolean;
139
149
  }, {
140
150
  type: string;
141
151
  id: string;
@@ -143,6 +153,7 @@ export declare const sPersonPresenceActionDto: z.ZodObject<{
143
153
  firstName: string;
144
154
  lastName: string;
145
155
  avatarId: string | null;
156
+ archived: boolean;
146
157
  }>, z.ZodString]>;
147
158
  zone: z.ZodUnion<[z.ZodObject<{
148
159
  id: z.ZodString;
@@ -171,6 +182,7 @@ export declare const sPersonPresenceActionDto: z.ZodObject<{
171
182
  firstName: string;
172
183
  lastName: string;
173
184
  avatarId: string | null;
185
+ archived: boolean;
174
186
  };
175
187
  zone: string | {
176
188
  id: string;
@@ -190,6 +202,7 @@ export declare const sPersonPresenceActionDto: z.ZodObject<{
190
202
  firstName: string;
191
203
  lastName: string;
192
204
  avatarId: string | null;
205
+ archived: boolean;
193
206
  };
194
207
  zone: string | {
195
208
  id: string;
@@ -9,6 +9,7 @@ exports.sPresencePersonDto = zod_1.z.object({
9
9
  avatarId: zod_1.z.string().nullable(),
10
10
  type: zod_1.z.string().min(1).max(16),
11
11
  position: zod_1.z.string().max(128).nullable(),
12
+ archived: zod_1.z.boolean(),
12
13
  });
13
14
  exports.sPresenceZoneDto = zod_1.z.object({
14
15
  id: zod_1.z.string(),
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awarevue/api-types",
3
- "version": "2.0.32",
3
+ "version": "2.0.34",
4
4
  "description": "Common types between backend, agent(s) and frontend(s)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awarevue/api-types",
3
- "version": "2.0.32",
3
+ "version": "2.0.34",
4
4
  "description": "Common types between backend, agent(s) and frontend(s)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",