@awarevue/api-types 1.0.87 → 1.0.89

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.
@@ -161,18 +161,26 @@ export declare const sRtspDataResponse: z.ZodObject<{
161
161
  username: z.ZodString;
162
162
  password: z.ZodString;
163
163
  streams: z.ZodArray<z.ZodObject<{
164
+ streamId: z.ZodString;
165
+ displayName: z.ZodString;
164
166
  resolution: z.ZodNullable<z.ZodString>;
165
167
  rtspUrl: z.ZodString;
166
168
  }, "strip", z.ZodTypeAny, {
167
169
  resolution: string | null;
170
+ displayName: string;
171
+ streamId: string;
168
172
  rtspUrl: string;
169
173
  }, {
170
174
  resolution: string | null;
175
+ displayName: string;
176
+ streamId: string;
171
177
  rtspUrl: string;
172
178
  }>, "many">;
173
179
  }, "strip", z.ZodTypeAny, {
174
180
  streams: {
175
181
  resolution: string | null;
182
+ displayName: string;
183
+ streamId: string;
176
184
  rtspUrl: string;
177
185
  }[];
178
186
  username: string;
@@ -181,6 +189,8 @@ export declare const sRtspDataResponse: z.ZodObject<{
181
189
  }, {
182
190
  streams: {
183
191
  resolution: string | null;
192
+ displayName: string;
193
+ streamId: string;
184
194
  rtspUrl: string;
185
195
  }[];
186
196
  username: string;
@@ -338,18 +348,26 @@ export declare const responseSchemasByType: {
338
348
  username: z.ZodString;
339
349
  password: z.ZodString;
340
350
  streams: z.ZodArray<z.ZodObject<{
351
+ streamId: z.ZodString;
352
+ displayName: z.ZodString;
341
353
  resolution: z.ZodNullable<z.ZodString>;
342
354
  rtspUrl: z.ZodString;
343
355
  }, "strip", z.ZodTypeAny, {
344
356
  resolution: string | null;
357
+ displayName: string;
358
+ streamId: string;
345
359
  rtspUrl: string;
346
360
  }, {
347
361
  resolution: string | null;
362
+ displayName: string;
363
+ streamId: string;
348
364
  rtspUrl: string;
349
365
  }>, "many">;
350
366
  }, "strip", z.ZodTypeAny, {
351
367
  streams: {
352
368
  resolution: string | null;
369
+ displayName: string;
370
+ streamId: string;
353
371
  rtspUrl: string;
354
372
  }[];
355
373
  username: string;
@@ -358,6 +376,8 @@ export declare const responseSchemasByType: {
358
376
  }, {
359
377
  streams: {
360
378
  resolution: string | null;
379
+ displayName: string;
380
+ streamId: string;
361
381
  rtspUrl: string;
362
382
  }[];
363
383
  username: string;
@@ -69,6 +69,8 @@ exports.sRtspDataResponse = zod_1.z.object({
69
69
  username: zod_1.z.string(),
70
70
  password: zod_1.z.string(),
71
71
  streams: zod_1.z.array(zod_1.z.object({
72
+ streamId: zod_1.z.string(),
73
+ displayName: zod_1.z.string(),
72
74
  resolution: zod_1.z.string().nullable(),
73
75
  rtspUrl: zod_1.z.string(),
74
76
  })),
package/dist/cast.d.ts CHANGED
@@ -3,10 +3,10 @@ export declare const sCastCamerasRequest: z.ZodArray<z.ZodObject<{
3
3
  cameraId: z.ZodString;
4
4
  streamId: z.ZodString;
5
5
  }, "strip", z.ZodTypeAny, {
6
- cameraId: string;
7
6
  streamId: string;
8
- }, {
9
7
  cameraId: string;
8
+ }, {
10
9
  streamId: string;
10
+ cameraId: string;
11
11
  }>, "many">;
12
12
  export type CastCamerasRequest = z.infer<typeof sCastCamerasRequest>;
@@ -8,6 +8,8 @@ export type DisplayTileItem = {
8
8
  username: string;
9
9
  password: string;
10
10
  streams: {
11
+ streamId: string;
12
+ displayName: string;
11
13
  resolution: string | null;
12
14
  rtspUrl: string;
13
15
  }[];
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awarevue/api-types",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
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": "1.0.87",
3
+ "version": "1.0.89",
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",