@awarevue/api-types 2.0.3 → 2.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.
@@ -715,6 +715,709 @@ export declare const sDeleteExportCommand: z.ZodObject<{
715
715
  command: "nvr-exporter.delete-export";
716
716
  }>;
717
717
  export type DeleteExportCommand = z.infer<typeof sDeleteExportCommand>;
718
+ export type NvrExporterCommand = StartExportCommand | DeleteExportCommand;
719
+ export declare const nvrExporterCommandSchemas: {
720
+ readonly 'nvr-exporter.start-export': z.ZodObject<{
721
+ command: z.ZodLiteral<"nvr-exporter.start-export">;
722
+ params: z.ZodObject<{
723
+ requestId: z.ZodString;
724
+ device: z.ZodUnion<[z.ZodString, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
725
+ name: z.ZodString;
726
+ foreignRef: z.ZodString;
727
+ provider: z.ZodString;
728
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
729
+ }, "strip", z.ZodTypeAny, {
730
+ name: string;
731
+ foreignRef: string;
732
+ provider: string;
733
+ providerMetadata: {} & {
734
+ [k: string]: unknown;
735
+ };
736
+ }, {
737
+ name: string;
738
+ foreignRef: string;
739
+ provider: string;
740
+ providerMetadata: {} & {
741
+ [k: string]: unknown;
742
+ };
743
+ }>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
744
+ type: z.ZodLiteral<"alarm">;
745
+ }, "strip", z.ZodTypeAny, {
746
+ type: "alarm";
747
+ }, {
748
+ type: "alarm";
749
+ }>, z.ZodObject<{
750
+ lensType: z.ZodEnum<["flat", "fisheye"]>;
751
+ mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
752
+ ptzCapable: z.ZodBoolean;
753
+ ptzPanSpeed: z.ZodNumber;
754
+ ptzTiltSpeed: z.ZodNumber;
755
+ ptzZoomSpeed: z.ZodNumber;
756
+ panMin: z.ZodNumber;
757
+ panMax: z.ZodNumber;
758
+ tiltMin: z.ZodNumber;
759
+ tiltMax: z.ZodNumber;
760
+ zoomMin: z.ZodNumber;
761
+ zoomMax: z.ZodNumber;
762
+ recordingCapable: z.ZodBoolean;
763
+ webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
764
+ kind: z.ZodString;
765
+ }, "strip", z.ZodTypeAny, {
766
+ kind: string;
767
+ }, {
768
+ kind: string;
769
+ }>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
770
+ streams: z.ZodArray<z.ZodObject<{
771
+ id: z.ZodString;
772
+ displayName: z.ZodString;
773
+ externalPlayerUrl: z.ZodNullable<z.ZodString>;
774
+ }, "strip", z.ZodTypeAny, {
775
+ id: string;
776
+ displayName: string;
777
+ externalPlayerUrl: string | null;
778
+ }, {
779
+ id: string;
780
+ displayName: string;
781
+ externalPlayerUrl: string | null;
782
+ }>, "many">;
783
+ defaultStreamId: z.ZodString;
784
+ } & {
785
+ type: z.ZodLiteral<"camera">;
786
+ }, "strip", z.ZodTypeAny, {
787
+ type: "camera";
788
+ streams: {
789
+ id: string;
790
+ displayName: string;
791
+ externalPlayerUrl: string | null;
792
+ }[];
793
+ lensType: "flat" | "fisheye";
794
+ mountPoint: "wall" | "ceiling" | "floor";
795
+ ptzCapable: boolean;
796
+ ptzPanSpeed: number;
797
+ ptzTiltSpeed: number;
798
+ ptzZoomSpeed: number;
799
+ panMin: number;
800
+ panMax: number;
801
+ tiltMin: number;
802
+ tiltMax: number;
803
+ zoomMin: number;
804
+ zoomMax: number;
805
+ recordingCapable: boolean;
806
+ webrtcPlaybackSource: ({
807
+ kind: string;
808
+ } & Record<string, unknown>) | null;
809
+ defaultStreamId: string;
810
+ }, {
811
+ type: "camera";
812
+ streams: {
813
+ id: string;
814
+ displayName: string;
815
+ externalPlayerUrl: string | null;
816
+ }[];
817
+ lensType: "flat" | "fisheye";
818
+ mountPoint: "wall" | "ceiling" | "floor";
819
+ ptzCapable: boolean;
820
+ ptzPanSpeed: number;
821
+ ptzTiltSpeed: number;
822
+ ptzZoomSpeed: number;
823
+ panMin: number;
824
+ panMax: number;
825
+ tiltMin: number;
826
+ tiltMax: number;
827
+ zoomMin: number;
828
+ zoomMax: number;
829
+ recordingCapable: boolean;
830
+ webrtcPlaybackSource: ({
831
+ kind: string;
832
+ } & Record<string, unknown>) | null;
833
+ defaultStreamId: string;
834
+ }>, z.ZodObject<{
835
+ canReportOpenState: z.ZodBoolean;
836
+ canReportLockState: z.ZodBoolean;
837
+ canControlLock: z.ZodBoolean;
838
+ canRelease: z.ZodBoolean;
839
+ } & {
840
+ type: z.ZodLiteral<"door">;
841
+ }, "strip", z.ZodTypeAny, {
842
+ type: "door";
843
+ canReportOpenState: boolean;
844
+ canReportLockState: boolean;
845
+ canControlLock: boolean;
846
+ canRelease: boolean;
847
+ }, {
848
+ type: "door";
849
+ canReportOpenState: boolean;
850
+ canReportLockState: boolean;
851
+ canControlLock: boolean;
852
+ canRelease: boolean;
853
+ }>, z.ZodObject<{
854
+ inputs: z.ZodArray<z.ZodString, "many">;
855
+ outputs: z.ZodArray<z.ZodString, "many">;
856
+ } & {
857
+ type: z.ZodLiteral<"io-board">;
858
+ }, "strip", z.ZodTypeAny, {
859
+ type: "io-board";
860
+ inputs: string[];
861
+ outputs: string[];
862
+ }, {
863
+ type: "io-board";
864
+ inputs: string[];
865
+ outputs: string[];
866
+ }>, z.ZodObject<{
867
+ type: z.ZodLiteral<"camera-lift">;
868
+ }, "strip", z.ZodTypeAny, {
869
+ type: "camera-lift";
870
+ }, {
871
+ type: "camera-lift";
872
+ }>, z.ZodObject<{
873
+ type: z.ZodLiteral<"motion-sensor">;
874
+ }, "strip", z.ZodTypeAny, {
875
+ type: "motion-sensor";
876
+ }, {
877
+ type: "motion-sensor";
878
+ }>, z.ZodObject<{
879
+ type: z.ZodLiteral<"panic-button">;
880
+ }, "strip", z.ZodTypeAny, {
881
+ type: "panic-button";
882
+ }, {
883
+ type: "panic-button";
884
+ }>, z.ZodObject<{
885
+ sipUri: z.ZodString;
886
+ sipUser: z.ZodString;
887
+ sipPassword: z.ZodString;
888
+ sipRealm: z.ZodString;
889
+ remoteExtension: z.ZodString;
890
+ } & {
891
+ type: z.ZodLiteral<"intercom-terminal">;
892
+ }, "strip", z.ZodTypeAny, {
893
+ type: "intercom-terminal";
894
+ sipUri: string;
895
+ sipUser: string;
896
+ sipPassword: string;
897
+ sipRealm: string;
898
+ remoteExtension: string;
899
+ }, {
900
+ type: "intercom-terminal";
901
+ sipUri: string;
902
+ sipUser: string;
903
+ sipPassword: string;
904
+ sipRealm: string;
905
+ remoteExtension: string;
906
+ }>, z.ZodObject<{
907
+ sipWsUrl: z.ZodString;
908
+ } & {
909
+ type: z.ZodLiteral<"pbx">;
910
+ }, "strip", z.ZodTypeAny, {
911
+ type: "pbx";
912
+ sipWsUrl: string;
913
+ }, {
914
+ type: "pbx";
915
+ sipWsUrl: string;
916
+ }>, z.ZodObject<{
917
+ type: z.ZodLiteral<"server">;
918
+ }, "strip", z.ZodTypeAny, {
919
+ type: "server";
920
+ }, {
921
+ type: "server";
922
+ }>, z.ZodObject<{
923
+ type: z.ZodLiteral<"intercom-operator">;
924
+ }, "strip", z.ZodTypeAny, {
925
+ type: "intercom-operator";
926
+ }, {
927
+ type: "intercom-operator";
928
+ }>, z.ZodObject<{
929
+ type: z.ZodLiteral<"device-gateway">;
930
+ }, "strip", z.ZodTypeAny, {
931
+ type: "device-gateway";
932
+ }, {
933
+ type: "device-gateway";
934
+ }>, z.ZodObject<{
935
+ type: z.ZodLiteral<"presence-tracker">;
936
+ }, "strip", z.ZodTypeAny, {
937
+ type: "presence-tracker";
938
+ }, {
939
+ type: "presence-tracker";
940
+ }>, z.ZodObject<{
941
+ type: z.ZodLiteral<"reader">;
942
+ }, "strip", z.ZodTypeAny, {
943
+ type: "reader";
944
+ }, {
945
+ type: "reader";
946
+ }>, z.ZodObject<{
947
+ type: z.ZodLiteral<"display">;
948
+ }, "strip", z.ZodTypeAny, {
949
+ type: "display";
950
+ }, {
951
+ type: "display";
952
+ }>, z.ZodObject<{
953
+ type: z.ZodLiteral<"nvr-recorder">;
954
+ }, "strip", z.ZodTypeAny, {
955
+ type: "nvr-recorder";
956
+ }, {
957
+ type: "nvr-recorder";
958
+ }>, z.ZodObject<{
959
+ type: z.ZodLiteral<"nvr-exporter">;
960
+ }, "strip", z.ZodTypeAny, {
961
+ type: "nvr-exporter";
962
+ }, {
963
+ type: "nvr-exporter";
964
+ }>, z.ZodObject<{
965
+ type: z.ZodLiteral<"nvr-analytics-server">;
966
+ }, "strip", z.ZodTypeAny, {
967
+ type: "nvr-analytics-server";
968
+ }, {
969
+ type: "nvr-analytics-server";
970
+ }>]>>, z.ZodObject<{
971
+ presets: z.ZodArray<z.ZodObject<{
972
+ id: z.ZodString;
973
+ name: z.ZodString;
974
+ params: z.ZodUnknown;
975
+ isDefault: z.ZodBoolean;
976
+ assignedRef: z.ZodNullable<z.ZodString>;
977
+ createdOn: z.ZodString;
978
+ lastModifiedOn: z.ZodString;
979
+ }, "strip", z.ZodTypeAny, {
980
+ name: string;
981
+ id: string;
982
+ isDefault: boolean;
983
+ assignedRef: string | null;
984
+ createdOn: string;
985
+ lastModifiedOn: string;
986
+ params?: unknown;
987
+ }, {
988
+ name: string;
989
+ id: string;
990
+ isDefault: boolean;
991
+ assignedRef: string | null;
992
+ createdOn: string;
993
+ lastModifiedOn: string;
994
+ params?: unknown;
995
+ }>, "many">;
996
+ }, "strip", z.ZodTypeAny, {
997
+ presets: {
998
+ name: string;
999
+ id: string;
1000
+ isDefault: boolean;
1001
+ assignedRef: string | null;
1002
+ createdOn: string;
1003
+ lastModifiedOn: string;
1004
+ params?: unknown;
1005
+ }[];
1006
+ }, {
1007
+ presets: {
1008
+ name: string;
1009
+ id: string;
1010
+ isDefault: boolean;
1011
+ assignedRef: string | null;
1012
+ createdOn: string;
1013
+ lastModifiedOn: string;
1014
+ params?: unknown;
1015
+ }[];
1016
+ }>>]>;
1017
+ timeFrom: z.ZodNumber;
1018
+ timeTo: z.ZodNumber;
1019
+ name: z.ZodString;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ name: string;
1022
+ requestId: string;
1023
+ device: string | (({
1024
+ name: string;
1025
+ foreignRef: string;
1026
+ provider: string;
1027
+ providerMetadata: {} & {
1028
+ [k: string]: unknown;
1029
+ };
1030
+ } & ({
1031
+ type: "alarm";
1032
+ } | {
1033
+ type: "camera";
1034
+ streams: {
1035
+ id: string;
1036
+ displayName: string;
1037
+ externalPlayerUrl: string | null;
1038
+ }[];
1039
+ lensType: "flat" | "fisheye";
1040
+ mountPoint: "wall" | "ceiling" | "floor";
1041
+ ptzCapable: boolean;
1042
+ ptzPanSpeed: number;
1043
+ ptzTiltSpeed: number;
1044
+ ptzZoomSpeed: number;
1045
+ panMin: number;
1046
+ panMax: number;
1047
+ tiltMin: number;
1048
+ tiltMax: number;
1049
+ zoomMin: number;
1050
+ zoomMax: number;
1051
+ recordingCapable: boolean;
1052
+ webrtcPlaybackSource: ({
1053
+ kind: string;
1054
+ } & Record<string, unknown>) | null;
1055
+ defaultStreamId: string;
1056
+ } | {
1057
+ type: "door";
1058
+ canReportOpenState: boolean;
1059
+ canReportLockState: boolean;
1060
+ canControlLock: boolean;
1061
+ canRelease: boolean;
1062
+ } | {
1063
+ type: "io-board";
1064
+ inputs: string[];
1065
+ outputs: string[];
1066
+ } | {
1067
+ type: "camera-lift";
1068
+ } | {
1069
+ type: "motion-sensor";
1070
+ } | {
1071
+ type: "panic-button";
1072
+ } | {
1073
+ type: "intercom-terminal";
1074
+ sipUri: string;
1075
+ sipUser: string;
1076
+ sipPassword: string;
1077
+ sipRealm: string;
1078
+ remoteExtension: string;
1079
+ } | {
1080
+ type: "pbx";
1081
+ sipWsUrl: string;
1082
+ } | {
1083
+ type: "server";
1084
+ } | {
1085
+ type: "intercom-operator";
1086
+ } | {
1087
+ type: "device-gateway";
1088
+ } | {
1089
+ type: "presence-tracker";
1090
+ } | {
1091
+ type: "reader";
1092
+ } | {
1093
+ type: "display";
1094
+ } | {
1095
+ type: "nvr-recorder";
1096
+ } | {
1097
+ type: "nvr-exporter";
1098
+ } | {
1099
+ type: "nvr-analytics-server";
1100
+ })) & {
1101
+ presets: {
1102
+ name: string;
1103
+ id: string;
1104
+ isDefault: boolean;
1105
+ assignedRef: string | null;
1106
+ createdOn: string;
1107
+ lastModifiedOn: string;
1108
+ params?: unknown;
1109
+ }[];
1110
+ });
1111
+ timeFrom: number;
1112
+ timeTo: number;
1113
+ }, {
1114
+ name: string;
1115
+ requestId: string;
1116
+ device: string | (({
1117
+ name: string;
1118
+ foreignRef: string;
1119
+ provider: string;
1120
+ providerMetadata: {} & {
1121
+ [k: string]: unknown;
1122
+ };
1123
+ } & ({
1124
+ type: "alarm";
1125
+ } | {
1126
+ type: "camera";
1127
+ streams: {
1128
+ id: string;
1129
+ displayName: string;
1130
+ externalPlayerUrl: string | null;
1131
+ }[];
1132
+ lensType: "flat" | "fisheye";
1133
+ mountPoint: "wall" | "ceiling" | "floor";
1134
+ ptzCapable: boolean;
1135
+ ptzPanSpeed: number;
1136
+ ptzTiltSpeed: number;
1137
+ ptzZoomSpeed: number;
1138
+ panMin: number;
1139
+ panMax: number;
1140
+ tiltMin: number;
1141
+ tiltMax: number;
1142
+ zoomMin: number;
1143
+ zoomMax: number;
1144
+ recordingCapable: boolean;
1145
+ webrtcPlaybackSource: ({
1146
+ kind: string;
1147
+ } & Record<string, unknown>) | null;
1148
+ defaultStreamId: string;
1149
+ } | {
1150
+ type: "door";
1151
+ canReportOpenState: boolean;
1152
+ canReportLockState: boolean;
1153
+ canControlLock: boolean;
1154
+ canRelease: boolean;
1155
+ } | {
1156
+ type: "io-board";
1157
+ inputs: string[];
1158
+ outputs: string[];
1159
+ } | {
1160
+ type: "camera-lift";
1161
+ } | {
1162
+ type: "motion-sensor";
1163
+ } | {
1164
+ type: "panic-button";
1165
+ } | {
1166
+ type: "intercom-terminal";
1167
+ sipUri: string;
1168
+ sipUser: string;
1169
+ sipPassword: string;
1170
+ sipRealm: string;
1171
+ remoteExtension: string;
1172
+ } | {
1173
+ type: "pbx";
1174
+ sipWsUrl: string;
1175
+ } | {
1176
+ type: "server";
1177
+ } | {
1178
+ type: "intercom-operator";
1179
+ } | {
1180
+ type: "device-gateway";
1181
+ } | {
1182
+ type: "presence-tracker";
1183
+ } | {
1184
+ type: "reader";
1185
+ } | {
1186
+ type: "display";
1187
+ } | {
1188
+ type: "nvr-recorder";
1189
+ } | {
1190
+ type: "nvr-exporter";
1191
+ } | {
1192
+ type: "nvr-analytics-server";
1193
+ })) & {
1194
+ presets: {
1195
+ name: string;
1196
+ id: string;
1197
+ isDefault: boolean;
1198
+ assignedRef: string | null;
1199
+ createdOn: string;
1200
+ lastModifiedOn: string;
1201
+ params?: unknown;
1202
+ }[];
1203
+ });
1204
+ timeFrom: number;
1205
+ timeTo: number;
1206
+ }>;
1207
+ }, "strip", z.ZodTypeAny, {
1208
+ params: {
1209
+ name: string;
1210
+ requestId: string;
1211
+ device: string | (({
1212
+ name: string;
1213
+ foreignRef: string;
1214
+ provider: string;
1215
+ providerMetadata: {} & {
1216
+ [k: string]: unknown;
1217
+ };
1218
+ } & ({
1219
+ type: "alarm";
1220
+ } | {
1221
+ type: "camera";
1222
+ streams: {
1223
+ id: string;
1224
+ displayName: string;
1225
+ externalPlayerUrl: string | null;
1226
+ }[];
1227
+ lensType: "flat" | "fisheye";
1228
+ mountPoint: "wall" | "ceiling" | "floor";
1229
+ ptzCapable: boolean;
1230
+ ptzPanSpeed: number;
1231
+ ptzTiltSpeed: number;
1232
+ ptzZoomSpeed: number;
1233
+ panMin: number;
1234
+ panMax: number;
1235
+ tiltMin: number;
1236
+ tiltMax: number;
1237
+ zoomMin: number;
1238
+ zoomMax: number;
1239
+ recordingCapable: boolean;
1240
+ webrtcPlaybackSource: ({
1241
+ kind: string;
1242
+ } & Record<string, unknown>) | null;
1243
+ defaultStreamId: string;
1244
+ } | {
1245
+ type: "door";
1246
+ canReportOpenState: boolean;
1247
+ canReportLockState: boolean;
1248
+ canControlLock: boolean;
1249
+ canRelease: boolean;
1250
+ } | {
1251
+ type: "io-board";
1252
+ inputs: string[];
1253
+ outputs: string[];
1254
+ } | {
1255
+ type: "camera-lift";
1256
+ } | {
1257
+ type: "motion-sensor";
1258
+ } | {
1259
+ type: "panic-button";
1260
+ } | {
1261
+ type: "intercom-terminal";
1262
+ sipUri: string;
1263
+ sipUser: string;
1264
+ sipPassword: string;
1265
+ sipRealm: string;
1266
+ remoteExtension: string;
1267
+ } | {
1268
+ type: "pbx";
1269
+ sipWsUrl: string;
1270
+ } | {
1271
+ type: "server";
1272
+ } | {
1273
+ type: "intercom-operator";
1274
+ } | {
1275
+ type: "device-gateway";
1276
+ } | {
1277
+ type: "presence-tracker";
1278
+ } | {
1279
+ type: "reader";
1280
+ } | {
1281
+ type: "display";
1282
+ } | {
1283
+ type: "nvr-recorder";
1284
+ } | {
1285
+ type: "nvr-exporter";
1286
+ } | {
1287
+ type: "nvr-analytics-server";
1288
+ })) & {
1289
+ presets: {
1290
+ name: string;
1291
+ id: string;
1292
+ isDefault: boolean;
1293
+ assignedRef: string | null;
1294
+ createdOn: string;
1295
+ lastModifiedOn: string;
1296
+ params?: unknown;
1297
+ }[];
1298
+ });
1299
+ timeFrom: number;
1300
+ timeTo: number;
1301
+ };
1302
+ command: "nvr-exporter.start-export";
1303
+ }, {
1304
+ params: {
1305
+ name: string;
1306
+ requestId: string;
1307
+ device: string | (({
1308
+ name: string;
1309
+ foreignRef: string;
1310
+ provider: string;
1311
+ providerMetadata: {} & {
1312
+ [k: string]: unknown;
1313
+ };
1314
+ } & ({
1315
+ type: "alarm";
1316
+ } | {
1317
+ type: "camera";
1318
+ streams: {
1319
+ id: string;
1320
+ displayName: string;
1321
+ externalPlayerUrl: string | null;
1322
+ }[];
1323
+ lensType: "flat" | "fisheye";
1324
+ mountPoint: "wall" | "ceiling" | "floor";
1325
+ ptzCapable: boolean;
1326
+ ptzPanSpeed: number;
1327
+ ptzTiltSpeed: number;
1328
+ ptzZoomSpeed: number;
1329
+ panMin: number;
1330
+ panMax: number;
1331
+ tiltMin: number;
1332
+ tiltMax: number;
1333
+ zoomMin: number;
1334
+ zoomMax: number;
1335
+ recordingCapable: boolean;
1336
+ webrtcPlaybackSource: ({
1337
+ kind: string;
1338
+ } & Record<string, unknown>) | null;
1339
+ defaultStreamId: string;
1340
+ } | {
1341
+ type: "door";
1342
+ canReportOpenState: boolean;
1343
+ canReportLockState: boolean;
1344
+ canControlLock: boolean;
1345
+ canRelease: boolean;
1346
+ } | {
1347
+ type: "io-board";
1348
+ inputs: string[];
1349
+ outputs: string[];
1350
+ } | {
1351
+ type: "camera-lift";
1352
+ } | {
1353
+ type: "motion-sensor";
1354
+ } | {
1355
+ type: "panic-button";
1356
+ } | {
1357
+ type: "intercom-terminal";
1358
+ sipUri: string;
1359
+ sipUser: string;
1360
+ sipPassword: string;
1361
+ sipRealm: string;
1362
+ remoteExtension: string;
1363
+ } | {
1364
+ type: "pbx";
1365
+ sipWsUrl: string;
1366
+ } | {
1367
+ type: "server";
1368
+ } | {
1369
+ type: "intercom-operator";
1370
+ } | {
1371
+ type: "device-gateway";
1372
+ } | {
1373
+ type: "presence-tracker";
1374
+ } | {
1375
+ type: "reader";
1376
+ } | {
1377
+ type: "display";
1378
+ } | {
1379
+ type: "nvr-recorder";
1380
+ } | {
1381
+ type: "nvr-exporter";
1382
+ } | {
1383
+ type: "nvr-analytics-server";
1384
+ })) & {
1385
+ presets: {
1386
+ name: string;
1387
+ id: string;
1388
+ isDefault: boolean;
1389
+ assignedRef: string | null;
1390
+ createdOn: string;
1391
+ lastModifiedOn: string;
1392
+ params?: unknown;
1393
+ }[];
1394
+ });
1395
+ timeFrom: number;
1396
+ timeTo: number;
1397
+ };
1398
+ command: "nvr-exporter.start-export";
1399
+ }>;
1400
+ readonly 'nvr-exporter.delete-export': z.ZodObject<{
1401
+ command: z.ZodLiteral<"nvr-exporter.delete-export">;
1402
+ params: z.ZodObject<{
1403
+ exportId: z.ZodString;
1404
+ }, "strip", z.ZodTypeAny, {
1405
+ exportId: string;
1406
+ }, {
1407
+ exportId: string;
1408
+ }>;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ params: {
1411
+ exportId: string;
1412
+ };
1413
+ command: "nvr-exporter.delete-export";
1414
+ }, {
1415
+ params: {
1416
+ exportId: string;
1417
+ };
1418
+ command: "nvr-exporter.delete-export";
1419
+ }>;
1420
+ };
718
1421
  export declare const sExportStarted: z.ZodObject<{
719
1422
  kind: z.ZodLiteral<"nvr-export-started">;
720
1423
  exportId: z.ZodString;