@awarevue/api-types 2.0.44 → 2.0.45

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.
@@ -440,7 +440,8 @@ export declare const sRunCommandRq: z.ZodObject<{
440
440
  id: z.ZodString;
441
441
  displayName: z.ZodString;
442
442
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
443
- rtspUrl: z.ZodString;
443
+ rtspUrl: z.ZodNullable<z.ZodString>;
444
+ mountedStreamId: z.ZodNullable<z.ZodString>;
444
445
  recordingCapable: z.ZodBoolean;
445
446
  lensType: z.ZodEnum<["flat", "fisheye"]>;
446
447
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -455,7 +456,8 @@ export declare const sRunCommandRq: z.ZodObject<{
455
456
  id: string;
456
457
  displayName: string;
457
458
  externalPlayerUrl: string | null;
458
- rtspUrl: string;
459
+ rtspUrl: string | null;
460
+ mountedStreamId: string | null;
459
461
  recordingCapable: boolean;
460
462
  lensType: "flat" | "fisheye";
461
463
  mountPoint: "wall" | "ceiling" | "floor";
@@ -466,7 +468,8 @@ export declare const sRunCommandRq: z.ZodObject<{
466
468
  id: string;
467
469
  displayName: string;
468
470
  externalPlayerUrl: string | null;
469
- rtspUrl: string;
471
+ rtspUrl: string | null;
472
+ mountedStreamId: string | null;
470
473
  recordingCapable: boolean;
471
474
  lensType: "flat" | "fisheye";
472
475
  mountPoint: "wall" | "ceiling" | "floor";
@@ -484,7 +487,8 @@ export declare const sRunCommandRq: z.ZodObject<{
484
487
  id: string;
485
488
  displayName: string;
486
489
  externalPlayerUrl: string | null;
487
- rtspUrl: string;
490
+ rtspUrl: string | null;
491
+ mountedStreamId: string | null;
488
492
  recordingCapable: boolean;
489
493
  lensType: "flat" | "fisheye";
490
494
  mountPoint: "wall" | "ceiling" | "floor";
@@ -510,7 +514,8 @@ export declare const sRunCommandRq: z.ZodObject<{
510
514
  id: string;
511
515
  displayName: string;
512
516
  externalPlayerUrl: string | null;
513
- rtspUrl: string;
517
+ rtspUrl: string | null;
518
+ mountedStreamId: string | null;
514
519
  recordingCapable: boolean;
515
520
  lensType: "flat" | "fisheye";
516
521
  mountPoint: "wall" | "ceiling" | "floor";
@@ -706,7 +711,8 @@ export declare const sRunCommandRq: z.ZodObject<{
706
711
  id: string;
707
712
  displayName: string;
708
713
  externalPlayerUrl: string | null;
709
- rtspUrl: string;
714
+ rtspUrl: string | null;
715
+ mountedStreamId: string | null;
710
716
  recordingCapable: boolean;
711
717
  lensType: "flat" | "fisheye";
712
718
  mountPoint: "wall" | "ceiling" | "floor";
@@ -803,7 +809,8 @@ export declare const sRunCommandRq: z.ZodObject<{
803
809
  id: string;
804
810
  displayName: string;
805
811
  externalPlayerUrl: string | null;
806
- rtspUrl: string;
812
+ rtspUrl: string | null;
813
+ mountedStreamId: string | null;
807
814
  recordingCapable: boolean;
808
815
  lensType: "flat" | "fisheye";
809
816
  mountPoint: "wall" | "ceiling" | "floor";
@@ -971,7 +978,8 @@ export declare const sQueryRq: z.ZodObject<{
971
978
  id: z.ZodString;
972
979
  displayName: z.ZodString;
973
980
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
974
- rtspUrl: z.ZodString;
981
+ rtspUrl: z.ZodNullable<z.ZodString>;
982
+ mountedStreamId: z.ZodNullable<z.ZodString>;
975
983
  recordingCapable: z.ZodBoolean;
976
984
  lensType: z.ZodEnum<["flat", "fisheye"]>;
977
985
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -986,7 +994,8 @@ export declare const sQueryRq: z.ZodObject<{
986
994
  id: string;
987
995
  displayName: string;
988
996
  externalPlayerUrl: string | null;
989
- rtspUrl: string;
997
+ rtspUrl: string | null;
998
+ mountedStreamId: string | null;
990
999
  recordingCapable: boolean;
991
1000
  lensType: "flat" | "fisheye";
992
1001
  mountPoint: "wall" | "ceiling" | "floor";
@@ -997,7 +1006,8 @@ export declare const sQueryRq: z.ZodObject<{
997
1006
  id: string;
998
1007
  displayName: string;
999
1008
  externalPlayerUrl: string | null;
1000
- rtspUrl: string;
1009
+ rtspUrl: string | null;
1010
+ mountedStreamId: string | null;
1001
1011
  recordingCapable: boolean;
1002
1012
  lensType: "flat" | "fisheye";
1003
1013
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1015,7 +1025,8 @@ export declare const sQueryRq: z.ZodObject<{
1015
1025
  id: string;
1016
1026
  displayName: string;
1017
1027
  externalPlayerUrl: string | null;
1018
- rtspUrl: string;
1028
+ rtspUrl: string | null;
1029
+ mountedStreamId: string | null;
1019
1030
  recordingCapable: boolean;
1020
1031
  lensType: "flat" | "fisheye";
1021
1032
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1041,7 +1052,8 @@ export declare const sQueryRq: z.ZodObject<{
1041
1052
  id: string;
1042
1053
  displayName: string;
1043
1054
  externalPlayerUrl: string | null;
1044
- rtspUrl: string;
1055
+ rtspUrl: string | null;
1056
+ mountedStreamId: string | null;
1045
1057
  recordingCapable: boolean;
1046
1058
  lensType: "flat" | "fisheye";
1047
1059
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1234,7 +1246,8 @@ export declare const sQueryRq: z.ZodObject<{
1234
1246
  id: string;
1235
1247
  displayName: string;
1236
1248
  externalPlayerUrl: string | null;
1237
- rtspUrl: string;
1249
+ rtspUrl: string | null;
1250
+ mountedStreamId: string | null;
1238
1251
  recordingCapable: boolean;
1239
1252
  lensType: "flat" | "fisheye";
1240
1253
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1330,7 +1343,8 @@ export declare const sQueryRq: z.ZodObject<{
1330
1343
  id: string;
1331
1344
  displayName: string;
1332
1345
  externalPlayerUrl: string | null;
1333
- rtspUrl: string;
1346
+ rtspUrl: string | null;
1347
+ mountedStreamId: string | null;
1334
1348
  recordingCapable: boolean;
1335
1349
  lensType: "flat" | "fisheye";
1336
1350
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1504,7 +1518,8 @@ export declare const sPushFile: z.ZodObject<{
1504
1518
  id: z.ZodString;
1505
1519
  displayName: z.ZodString;
1506
1520
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
1507
- rtspUrl: z.ZodString;
1521
+ rtspUrl: z.ZodNullable<z.ZodString>;
1522
+ mountedStreamId: z.ZodNullable<z.ZodString>;
1508
1523
  recordingCapable: z.ZodBoolean;
1509
1524
  lensType: z.ZodEnum<["flat", "fisheye"]>;
1510
1525
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -1519,7 +1534,8 @@ export declare const sPushFile: z.ZodObject<{
1519
1534
  id: string;
1520
1535
  displayName: string;
1521
1536
  externalPlayerUrl: string | null;
1522
- rtspUrl: string;
1537
+ rtspUrl: string | null;
1538
+ mountedStreamId: string | null;
1523
1539
  recordingCapable: boolean;
1524
1540
  lensType: "flat" | "fisheye";
1525
1541
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1530,7 +1546,8 @@ export declare const sPushFile: z.ZodObject<{
1530
1546
  id: string;
1531
1547
  displayName: string;
1532
1548
  externalPlayerUrl: string | null;
1533
- rtspUrl: string;
1549
+ rtspUrl: string | null;
1550
+ mountedStreamId: string | null;
1534
1551
  recordingCapable: boolean;
1535
1552
  lensType: "flat" | "fisheye";
1536
1553
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1548,7 +1565,8 @@ export declare const sPushFile: z.ZodObject<{
1548
1565
  id: string;
1549
1566
  displayName: string;
1550
1567
  externalPlayerUrl: string | null;
1551
- rtspUrl: string;
1568
+ rtspUrl: string | null;
1569
+ mountedStreamId: string | null;
1552
1570
  recordingCapable: boolean;
1553
1571
  lensType: "flat" | "fisheye";
1554
1572
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1574,7 +1592,8 @@ export declare const sPushFile: z.ZodObject<{
1574
1592
  id: string;
1575
1593
  displayName: string;
1576
1594
  externalPlayerUrl: string | null;
1577
- rtspUrl: string;
1595
+ rtspUrl: string | null;
1596
+ mountedStreamId: string | null;
1578
1597
  recordingCapable: boolean;
1579
1598
  lensType: "flat" | "fisheye";
1580
1599
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1769,7 +1788,8 @@ export declare const sPushFile: z.ZodObject<{
1769
1788
  id: string;
1770
1789
  displayName: string;
1771
1790
  externalPlayerUrl: string | null;
1772
- rtspUrl: string;
1791
+ rtspUrl: string | null;
1792
+ mountedStreamId: string | null;
1773
1793
  recordingCapable: boolean;
1774
1794
  lensType: "flat" | "fisheye";
1775
1795
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1866,7 +1886,8 @@ export declare const sPushFile: z.ZodObject<{
1866
1886
  id: string;
1867
1887
  displayName: string;
1868
1888
  externalPlayerUrl: string | null;
1869
- rtspUrl: string;
1889
+ rtspUrl: string | null;
1890
+ mountedStreamId: string | null;
1870
1891
  recordingCapable: boolean;
1871
1892
  lensType: "flat" | "fisheye";
1872
1893
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2064,7 +2085,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2064
2085
  id: z.ZodString;
2065
2086
  displayName: z.ZodString;
2066
2087
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
2067
- rtspUrl: z.ZodString;
2088
+ rtspUrl: z.ZodNullable<z.ZodString>;
2089
+ mountedStreamId: z.ZodNullable<z.ZodString>;
2068
2090
  recordingCapable: z.ZodBoolean;
2069
2091
  lensType: z.ZodEnum<["flat", "fisheye"]>;
2070
2092
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -2079,7 +2101,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2079
2101
  id: string;
2080
2102
  displayName: string;
2081
2103
  externalPlayerUrl: string | null;
2082
- rtspUrl: string;
2104
+ rtspUrl: string | null;
2105
+ mountedStreamId: string | null;
2083
2106
  recordingCapable: boolean;
2084
2107
  lensType: "flat" | "fisheye";
2085
2108
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2090,7 +2113,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2090
2113
  id: string;
2091
2114
  displayName: string;
2092
2115
  externalPlayerUrl: string | null;
2093
- rtspUrl: string;
2116
+ rtspUrl: string | null;
2117
+ mountedStreamId: string | null;
2094
2118
  recordingCapable: boolean;
2095
2119
  lensType: "flat" | "fisheye";
2096
2120
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2108,7 +2132,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2108
2132
  id: string;
2109
2133
  displayName: string;
2110
2134
  externalPlayerUrl: string | null;
2111
- rtspUrl: string;
2135
+ rtspUrl: string | null;
2136
+ mountedStreamId: string | null;
2112
2137
  recordingCapable: boolean;
2113
2138
  lensType: "flat" | "fisheye";
2114
2139
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2134,7 +2159,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2134
2159
  id: string;
2135
2160
  displayName: string;
2136
2161
  externalPlayerUrl: string | null;
2137
- rtspUrl: string;
2162
+ rtspUrl: string | null;
2163
+ mountedStreamId: string | null;
2138
2164
  recordingCapable: boolean;
2139
2165
  lensType: "flat" | "fisheye";
2140
2166
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2337,7 +2363,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2337
2363
  id: string;
2338
2364
  displayName: string;
2339
2365
  externalPlayerUrl: string | null;
2340
- rtspUrl: string;
2366
+ rtspUrl: string | null;
2367
+ mountedStreamId: string | null;
2341
2368
  recordingCapable: boolean;
2342
2369
  lensType: "flat" | "fisheye";
2343
2370
  mountPoint: "wall" | "ceiling" | "floor";
@@ -2432,7 +2459,8 @@ export declare const sGetAvailableDevicesRs: z.ZodIntersection<z.ZodObject<{
2432
2459
  id: string;
2433
2460
  displayName: string;
2434
2461
  externalPlayerUrl: string | null;
2435
- rtspUrl: string;
2462
+ rtspUrl: string | null;
2463
+ mountedStreamId: string | null;
2436
2464
  recordingCapable: boolean;
2437
2465
  lensType: "flat" | "fisheye";
2438
2466
  mountPoint: "wall" | "ceiling" | "floor";
@@ -124,7 +124,8 @@ export declare const commandSchemas: {
124
124
  id: import("zod").ZodString;
125
125
  displayName: import("zod").ZodString;
126
126
  externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
127
- rtspUrl: import("zod").ZodString;
127
+ rtspUrl: import("zod").ZodNullable<import("zod").ZodString>;
128
+ mountedStreamId: import("zod").ZodNullable<import("zod").ZodString>;
128
129
  recordingCapable: import("zod").ZodBoolean;
129
130
  lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
130
131
  mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
@@ -139,7 +140,8 @@ export declare const commandSchemas: {
139
140
  id: string;
140
141
  displayName: string;
141
142
  externalPlayerUrl: string | null;
142
- rtspUrl: string;
143
+ rtspUrl: string | null;
144
+ mountedStreamId: string | null;
143
145
  recordingCapable: boolean;
144
146
  lensType: "flat" | "fisheye";
145
147
  mountPoint: "wall" | "ceiling" | "floor";
@@ -150,7 +152,8 @@ export declare const commandSchemas: {
150
152
  id: string;
151
153
  displayName: string;
152
154
  externalPlayerUrl: string | null;
153
- rtspUrl: string;
155
+ rtspUrl: string | null;
156
+ mountedStreamId: string | null;
154
157
  recordingCapable: boolean;
155
158
  lensType: "flat" | "fisheye";
156
159
  mountPoint: "wall" | "ceiling" | "floor";
@@ -168,7 +171,8 @@ export declare const commandSchemas: {
168
171
  id: string;
169
172
  displayName: string;
170
173
  externalPlayerUrl: string | null;
171
- rtspUrl: string;
174
+ rtspUrl: string | null;
175
+ mountedStreamId: string | null;
172
176
  recordingCapable: boolean;
173
177
  lensType: "flat" | "fisheye";
174
178
  mountPoint: "wall" | "ceiling" | "floor";
@@ -194,7 +198,8 @@ export declare const commandSchemas: {
194
198
  id: string;
195
199
  displayName: string;
196
200
  externalPlayerUrl: string | null;
197
- rtspUrl: string;
201
+ rtspUrl: string | null;
202
+ mountedStreamId: string | null;
198
203
  recordingCapable: boolean;
199
204
  lensType: "flat" | "fisheye";
200
205
  mountPoint: "wall" | "ceiling" | "floor";
@@ -391,7 +396,8 @@ export declare const commandSchemas: {
391
396
  id: string;
392
397
  displayName: string;
393
398
  externalPlayerUrl: string | null;
394
- rtspUrl: string;
399
+ rtspUrl: string | null;
400
+ mountedStreamId: string | null;
395
401
  recordingCapable: boolean;
396
402
  lensType: "flat" | "fisheye";
397
403
  mountPoint: "wall" | "ceiling" | "floor";
@@ -489,7 +495,8 @@ export declare const commandSchemas: {
489
495
  id: string;
490
496
  displayName: string;
491
497
  externalPlayerUrl: string | null;
492
- rtspUrl: string;
498
+ rtspUrl: string | null;
499
+ mountedStreamId: string | null;
493
500
  recordingCapable: boolean;
494
501
  lensType: "flat" | "fisheye";
495
502
  mountPoint: "wall" | "ceiling" | "floor";
@@ -589,7 +596,8 @@ export declare const commandSchemas: {
589
596
  id: string;
590
597
  displayName: string;
591
598
  externalPlayerUrl: string | null;
592
- rtspUrl: string;
599
+ rtspUrl: string | null;
600
+ mountedStreamId: string | null;
593
601
  recordingCapable: boolean;
594
602
  lensType: "flat" | "fisheye";
595
603
  mountPoint: "wall" | "ceiling" | "floor";
@@ -690,7 +698,8 @@ export declare const commandSchemas: {
690
698
  id: string;
691
699
  displayName: string;
692
700
  externalPlayerUrl: string | null;
693
- rtspUrl: string;
701
+ rtspUrl: string | null;
702
+ mountedStreamId: string | null;
694
703
  recordingCapable: boolean;
695
704
  lensType: "flat" | "fisheye";
696
705
  mountPoint: "wall" | "ceiling" | "floor";
@@ -853,7 +862,8 @@ export declare const commandSchemas: {
853
862
  id: import("zod").ZodString;
854
863
  displayName: import("zod").ZodString;
855
864
  externalPlayerUrl: import("zod").ZodNullable<import("zod").ZodString>;
856
- rtspUrl: import("zod").ZodString;
865
+ rtspUrl: import("zod").ZodNullable<import("zod").ZodString>;
866
+ mountedStreamId: import("zod").ZodNullable<import("zod").ZodString>;
857
867
  recordingCapable: import("zod").ZodBoolean;
858
868
  lensType: import("zod").ZodEnum<["flat", "fisheye"]>;
859
869
  mountPoint: import("zod").ZodEnum<["wall", "ceiling", "floor"]>;
@@ -868,7 +878,8 @@ export declare const commandSchemas: {
868
878
  id: string;
869
879
  displayName: string;
870
880
  externalPlayerUrl: string | null;
871
- rtspUrl: string;
881
+ rtspUrl: string | null;
882
+ mountedStreamId: string | null;
872
883
  recordingCapable: boolean;
873
884
  lensType: "flat" | "fisheye";
874
885
  mountPoint: "wall" | "ceiling" | "floor";
@@ -879,7 +890,8 @@ export declare const commandSchemas: {
879
890
  id: string;
880
891
  displayName: string;
881
892
  externalPlayerUrl: string | null;
882
- rtspUrl: string;
893
+ rtspUrl: string | null;
894
+ mountedStreamId: string | null;
883
895
  recordingCapable: boolean;
884
896
  lensType: "flat" | "fisheye";
885
897
  mountPoint: "wall" | "ceiling" | "floor";
@@ -897,7 +909,8 @@ export declare const commandSchemas: {
897
909
  id: string;
898
910
  displayName: string;
899
911
  externalPlayerUrl: string | null;
900
- rtspUrl: string;
912
+ rtspUrl: string | null;
913
+ mountedStreamId: string | null;
901
914
  recordingCapable: boolean;
902
915
  lensType: "flat" | "fisheye";
903
916
  mountPoint: "wall" | "ceiling" | "floor";
@@ -923,7 +936,8 @@ export declare const commandSchemas: {
923
936
  id: string;
924
937
  displayName: string;
925
938
  externalPlayerUrl: string | null;
926
- rtspUrl: string;
939
+ rtspUrl: string | null;
940
+ mountedStreamId: string | null;
927
941
  recordingCapable: boolean;
928
942
  lensType: "flat" | "fisheye";
929
943
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1119,7 +1133,8 @@ export declare const commandSchemas: {
1119
1133
  id: string;
1120
1134
  displayName: string;
1121
1135
  externalPlayerUrl: string | null;
1122
- rtspUrl: string;
1136
+ rtspUrl: string | null;
1137
+ mountedStreamId: string | null;
1123
1138
  recordingCapable: boolean;
1124
1139
  lensType: "flat" | "fisheye";
1125
1140
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1217,7 +1232,8 @@ export declare const commandSchemas: {
1217
1232
  id: string;
1218
1233
  displayName: string;
1219
1234
  externalPlayerUrl: string | null;
1220
- rtspUrl: string;
1235
+ rtspUrl: string | null;
1236
+ mountedStreamId: string | null;
1221
1237
  recordingCapable: boolean;
1222
1238
  lensType: "flat" | "fisheye";
1223
1239
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1317,7 +1333,8 @@ export declare const commandSchemas: {
1317
1333
  id: string;
1318
1334
  displayName: string;
1319
1335
  externalPlayerUrl: string | null;
1320
- rtspUrl: string;
1336
+ rtspUrl: string | null;
1337
+ mountedStreamId: string | null;
1321
1338
  recordingCapable: boolean;
1322
1339
  lensType: "flat" | "fisheye";
1323
1340
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1418,7 +1435,8 @@ export declare const commandSchemas: {
1418
1435
  id: string;
1419
1436
  displayName: string;
1420
1437
  externalPlayerUrl: string | null;
1421
- rtspUrl: string;
1438
+ rtspUrl: string | null;
1439
+ mountedStreamId: string | null;
1422
1440
  recordingCapable: boolean;
1423
1441
  lensType: "flat" | "fisheye";
1424
1442
  mountPoint: "wall" | "ceiling" | "floor";
@@ -87,7 +87,8 @@ export declare const sStartExportCommand: z.ZodObject<{
87
87
  id: z.ZodString;
88
88
  displayName: z.ZodString;
89
89
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
90
- rtspUrl: z.ZodString;
90
+ rtspUrl: z.ZodNullable<z.ZodString>;
91
+ mountedStreamId: z.ZodNullable<z.ZodString>;
91
92
  recordingCapable: z.ZodBoolean;
92
93
  lensType: z.ZodEnum<["flat", "fisheye"]>;
93
94
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -102,7 +103,8 @@ export declare const sStartExportCommand: z.ZodObject<{
102
103
  id: string;
103
104
  displayName: string;
104
105
  externalPlayerUrl: string | null;
105
- rtspUrl: string;
106
+ rtspUrl: string | null;
107
+ mountedStreamId: string | null;
106
108
  recordingCapable: boolean;
107
109
  lensType: "flat" | "fisheye";
108
110
  mountPoint: "wall" | "ceiling" | "floor";
@@ -113,7 +115,8 @@ export declare const sStartExportCommand: z.ZodObject<{
113
115
  id: string;
114
116
  displayName: string;
115
117
  externalPlayerUrl: string | null;
116
- rtspUrl: string;
118
+ rtspUrl: string | null;
119
+ mountedStreamId: string | null;
117
120
  recordingCapable: boolean;
118
121
  lensType: "flat" | "fisheye";
119
122
  mountPoint: "wall" | "ceiling" | "floor";
@@ -131,7 +134,8 @@ export declare const sStartExportCommand: z.ZodObject<{
131
134
  id: string;
132
135
  displayName: string;
133
136
  externalPlayerUrl: string | null;
134
- rtspUrl: string;
137
+ rtspUrl: string | null;
138
+ mountedStreamId: string | null;
135
139
  recordingCapable: boolean;
136
140
  lensType: "flat" | "fisheye";
137
141
  mountPoint: "wall" | "ceiling" | "floor";
@@ -157,7 +161,8 @@ export declare const sStartExportCommand: z.ZodObject<{
157
161
  id: string;
158
162
  displayName: string;
159
163
  externalPlayerUrl: string | null;
160
- rtspUrl: string;
164
+ rtspUrl: string | null;
165
+ mountedStreamId: string | null;
161
166
  recordingCapable: boolean;
162
167
  lensType: "flat" | "fisheye";
163
168
  mountPoint: "wall" | "ceiling" | "floor";
@@ -353,7 +358,8 @@ export declare const sStartExportCommand: z.ZodObject<{
353
358
  id: string;
354
359
  displayName: string;
355
360
  externalPlayerUrl: string | null;
356
- rtspUrl: string;
361
+ rtspUrl: string | null;
362
+ mountedStreamId: string | null;
357
363
  recordingCapable: boolean;
358
364
  lensType: "flat" | "fisheye";
359
365
  mountPoint: "wall" | "ceiling" | "floor";
@@ -451,7 +457,8 @@ export declare const sStartExportCommand: z.ZodObject<{
451
457
  id: string;
452
458
  displayName: string;
453
459
  externalPlayerUrl: string | null;
454
- rtspUrl: string;
460
+ rtspUrl: string | null;
461
+ mountedStreamId: string | null;
455
462
  recordingCapable: boolean;
456
463
  lensType: "flat" | "fisheye";
457
464
  mountPoint: "wall" | "ceiling" | "floor";
@@ -551,7 +558,8 @@ export declare const sStartExportCommand: z.ZodObject<{
551
558
  id: string;
552
559
  displayName: string;
553
560
  externalPlayerUrl: string | null;
554
- rtspUrl: string;
561
+ rtspUrl: string | null;
562
+ mountedStreamId: string | null;
555
563
  recordingCapable: boolean;
556
564
  lensType: "flat" | "fisheye";
557
565
  mountPoint: "wall" | "ceiling" | "floor";
@@ -652,7 +660,8 @@ export declare const sStartExportCommand: z.ZodObject<{
652
660
  id: string;
653
661
  displayName: string;
654
662
  externalPlayerUrl: string | null;
655
- rtspUrl: string;
663
+ rtspUrl: string | null;
664
+ mountedStreamId: string | null;
656
665
  recordingCapable: boolean;
657
666
  lensType: "flat" | "fisheye";
658
667
  mountPoint: "wall" | "ceiling" | "floor";
@@ -839,7 +848,8 @@ export declare const nvrExporterCommandSchemas: {
839
848
  id: z.ZodString;
840
849
  displayName: z.ZodString;
841
850
  externalPlayerUrl: z.ZodNullable<z.ZodString>;
842
- rtspUrl: z.ZodString;
851
+ rtspUrl: z.ZodNullable<z.ZodString>;
852
+ mountedStreamId: z.ZodNullable<z.ZodString>;
843
853
  recordingCapable: z.ZodBoolean;
844
854
  lensType: z.ZodEnum<["flat", "fisheye"]>;
845
855
  mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
@@ -854,7 +864,8 @@ export declare const nvrExporterCommandSchemas: {
854
864
  id: string;
855
865
  displayName: string;
856
866
  externalPlayerUrl: string | null;
857
- rtspUrl: string;
867
+ rtspUrl: string | null;
868
+ mountedStreamId: string | null;
858
869
  recordingCapable: boolean;
859
870
  lensType: "flat" | "fisheye";
860
871
  mountPoint: "wall" | "ceiling" | "floor";
@@ -865,7 +876,8 @@ export declare const nvrExporterCommandSchemas: {
865
876
  id: string;
866
877
  displayName: string;
867
878
  externalPlayerUrl: string | null;
868
- rtspUrl: string;
879
+ rtspUrl: string | null;
880
+ mountedStreamId: string | null;
869
881
  recordingCapable: boolean;
870
882
  lensType: "flat" | "fisheye";
871
883
  mountPoint: "wall" | "ceiling" | "floor";
@@ -883,7 +895,8 @@ export declare const nvrExporterCommandSchemas: {
883
895
  id: string;
884
896
  displayName: string;
885
897
  externalPlayerUrl: string | null;
886
- rtspUrl: string;
898
+ rtspUrl: string | null;
899
+ mountedStreamId: string | null;
887
900
  recordingCapable: boolean;
888
901
  lensType: "flat" | "fisheye";
889
902
  mountPoint: "wall" | "ceiling" | "floor";
@@ -909,7 +922,8 @@ export declare const nvrExporterCommandSchemas: {
909
922
  id: string;
910
923
  displayName: string;
911
924
  externalPlayerUrl: string | null;
912
- rtspUrl: string;
925
+ rtspUrl: string | null;
926
+ mountedStreamId: string | null;
913
927
  recordingCapable: boolean;
914
928
  lensType: "flat" | "fisheye";
915
929
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1105,7 +1119,8 @@ export declare const nvrExporterCommandSchemas: {
1105
1119
  id: string;
1106
1120
  displayName: string;
1107
1121
  externalPlayerUrl: string | null;
1108
- rtspUrl: string;
1122
+ rtspUrl: string | null;
1123
+ mountedStreamId: string | null;
1109
1124
  recordingCapable: boolean;
1110
1125
  lensType: "flat" | "fisheye";
1111
1126
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1203,7 +1218,8 @@ export declare const nvrExporterCommandSchemas: {
1203
1218
  id: string;
1204
1219
  displayName: string;
1205
1220
  externalPlayerUrl: string | null;
1206
- rtspUrl: string;
1221
+ rtspUrl: string | null;
1222
+ mountedStreamId: string | null;
1207
1223
  recordingCapable: boolean;
1208
1224
  lensType: "flat" | "fisheye";
1209
1225
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1303,7 +1319,8 @@ export declare const nvrExporterCommandSchemas: {
1303
1319
  id: string;
1304
1320
  displayName: string;
1305
1321
  externalPlayerUrl: string | null;
1306
- rtspUrl: string;
1322
+ rtspUrl: string | null;
1323
+ mountedStreamId: string | null;
1307
1324
  recordingCapable: boolean;
1308
1325
  lensType: "flat" | "fisheye";
1309
1326
  mountPoint: "wall" | "ceiling" | "floor";
@@ -1404,7 +1421,8 @@ export declare const nvrExporterCommandSchemas: {
1404
1421
  id: string;
1405
1422
  displayName: string;
1406
1423
  externalPlayerUrl: string | null;
1407
- rtspUrl: string;
1424
+ rtspUrl: string | null;
1425
+ mountedStreamId: string | null;
1408
1426
  recordingCapable: boolean;
1409
1427
  lensType: "flat" | "fisheye";
1410
1428
  mountPoint: "wall" | "ceiling" | "floor";