@awarevue/api-types 2.0.16 → 2.0.17
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.
- package/dist/agent-communication/protocol.d.ts +186 -2
- package/dist/commands/all.d.ts +160 -0
- package/dist/commands/nvr-exporter.d.ts +160 -0
- package/dist/commands/server.d.ts +160 -0
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +89 -0
- package/dist/primitives.js +2 -2
- package/dist/queries/all.d.ts +186 -0
- package/dist/queries/nvr-recorder.d.ts +372 -0
- package/package.json +1 -1
package/dist/queries/all.d.ts
CHANGED
|
@@ -79,6 +79,32 @@ export declare const requestSchemasByType: {
|
|
|
79
79
|
foreignRef: import("zod").ZodString;
|
|
80
80
|
provider: import("zod").ZodString;
|
|
81
81
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
82
|
+
} & {
|
|
83
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
84
|
+
id: import("zod").ZodString;
|
|
85
|
+
name: import("zod").ZodString;
|
|
86
|
+
params: import("zod").ZodUnknown;
|
|
87
|
+
isDefault: import("zod").ZodBoolean;
|
|
88
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
89
|
+
createdOn: import("zod").ZodString;
|
|
90
|
+
lastModifiedOn: import("zod").ZodString;
|
|
91
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
92
|
+
name: string;
|
|
93
|
+
id: string;
|
|
94
|
+
isDefault: boolean;
|
|
95
|
+
assignedRef: string | null;
|
|
96
|
+
createdOn: string;
|
|
97
|
+
lastModifiedOn: string;
|
|
98
|
+
params?: unknown;
|
|
99
|
+
}, {
|
|
100
|
+
name: string;
|
|
101
|
+
id: string;
|
|
102
|
+
isDefault: boolean;
|
|
103
|
+
assignedRef: string | null;
|
|
104
|
+
createdOn: string;
|
|
105
|
+
lastModifiedOn: string;
|
|
106
|
+
params?: unknown;
|
|
107
|
+
}>, "many">;
|
|
82
108
|
}, "strip", import("zod").ZodTypeAny, {
|
|
83
109
|
name: string;
|
|
84
110
|
foreignRef: string;
|
|
@@ -86,6 +112,15 @@ export declare const requestSchemasByType: {
|
|
|
86
112
|
providerMetadata: {} & {
|
|
87
113
|
[k: string]: unknown;
|
|
88
114
|
};
|
|
115
|
+
presets: {
|
|
116
|
+
name: string;
|
|
117
|
+
id: string;
|
|
118
|
+
isDefault: boolean;
|
|
119
|
+
assignedRef: string | null;
|
|
120
|
+
createdOn: string;
|
|
121
|
+
lastModifiedOn: string;
|
|
122
|
+
params?: unknown;
|
|
123
|
+
}[];
|
|
89
124
|
}, {
|
|
90
125
|
name: string;
|
|
91
126
|
foreignRef: string;
|
|
@@ -93,6 +128,15 @@ export declare const requestSchemasByType: {
|
|
|
93
128
|
providerMetadata: {} & {
|
|
94
129
|
[k: string]: unknown;
|
|
95
130
|
};
|
|
131
|
+
presets: {
|
|
132
|
+
name: string;
|
|
133
|
+
id: string;
|
|
134
|
+
isDefault: boolean;
|
|
135
|
+
assignedRef: string | null;
|
|
136
|
+
createdOn: string;
|
|
137
|
+
lastModifiedOn: string;
|
|
138
|
+
params?: unknown;
|
|
139
|
+
}[];
|
|
96
140
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
97
141
|
type: import("zod").ZodLiteral<"alarm">;
|
|
98
142
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -337,6 +381,15 @@ export declare const requestSchemasByType: {
|
|
|
337
381
|
providerMetadata: {} & {
|
|
338
382
|
[k: string]: unknown;
|
|
339
383
|
};
|
|
384
|
+
presets: {
|
|
385
|
+
name: string;
|
|
386
|
+
id: string;
|
|
387
|
+
isDefault: boolean;
|
|
388
|
+
assignedRef: string | null;
|
|
389
|
+
createdOn: string;
|
|
390
|
+
lastModifiedOn: string;
|
|
391
|
+
params?: unknown;
|
|
392
|
+
}[];
|
|
340
393
|
} & ({
|
|
341
394
|
type: "alarm";
|
|
342
395
|
} | {
|
|
@@ -420,6 +473,15 @@ export declare const requestSchemasByType: {
|
|
|
420
473
|
providerMetadata: {} & {
|
|
421
474
|
[k: string]: unknown;
|
|
422
475
|
};
|
|
476
|
+
presets: {
|
|
477
|
+
name: string;
|
|
478
|
+
id: string;
|
|
479
|
+
isDefault: boolean;
|
|
480
|
+
assignedRef: string | null;
|
|
481
|
+
createdOn: string;
|
|
482
|
+
lastModifiedOn: string;
|
|
483
|
+
params?: unknown;
|
|
484
|
+
}[];
|
|
423
485
|
} & ({
|
|
424
486
|
type: "alarm";
|
|
425
487
|
} | {
|
|
@@ -502,6 +564,32 @@ export declare const requestSchemasByType: {
|
|
|
502
564
|
foreignRef: import("zod").ZodString;
|
|
503
565
|
provider: import("zod").ZodString;
|
|
504
566
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
567
|
+
} & {
|
|
568
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
569
|
+
id: import("zod").ZodString;
|
|
570
|
+
name: import("zod").ZodString;
|
|
571
|
+
params: import("zod").ZodUnknown;
|
|
572
|
+
isDefault: import("zod").ZodBoolean;
|
|
573
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
574
|
+
createdOn: import("zod").ZodString;
|
|
575
|
+
lastModifiedOn: import("zod").ZodString;
|
|
576
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
577
|
+
name: string;
|
|
578
|
+
id: string;
|
|
579
|
+
isDefault: boolean;
|
|
580
|
+
assignedRef: string | null;
|
|
581
|
+
createdOn: string;
|
|
582
|
+
lastModifiedOn: string;
|
|
583
|
+
params?: unknown;
|
|
584
|
+
}, {
|
|
585
|
+
name: string;
|
|
586
|
+
id: string;
|
|
587
|
+
isDefault: boolean;
|
|
588
|
+
assignedRef: string | null;
|
|
589
|
+
createdOn: string;
|
|
590
|
+
lastModifiedOn: string;
|
|
591
|
+
params?: unknown;
|
|
592
|
+
}>, "many">;
|
|
505
593
|
}, "strip", import("zod").ZodTypeAny, {
|
|
506
594
|
name: string;
|
|
507
595
|
foreignRef: string;
|
|
@@ -509,6 +597,15 @@ export declare const requestSchemasByType: {
|
|
|
509
597
|
providerMetadata: {} & {
|
|
510
598
|
[k: string]: unknown;
|
|
511
599
|
};
|
|
600
|
+
presets: {
|
|
601
|
+
name: string;
|
|
602
|
+
id: string;
|
|
603
|
+
isDefault: boolean;
|
|
604
|
+
assignedRef: string | null;
|
|
605
|
+
createdOn: string;
|
|
606
|
+
lastModifiedOn: string;
|
|
607
|
+
params?: unknown;
|
|
608
|
+
}[];
|
|
512
609
|
}, {
|
|
513
610
|
name: string;
|
|
514
611
|
foreignRef: string;
|
|
@@ -516,6 +613,15 @@ export declare const requestSchemasByType: {
|
|
|
516
613
|
providerMetadata: {} & {
|
|
517
614
|
[k: string]: unknown;
|
|
518
615
|
};
|
|
616
|
+
presets: {
|
|
617
|
+
name: string;
|
|
618
|
+
id: string;
|
|
619
|
+
isDefault: boolean;
|
|
620
|
+
assignedRef: string | null;
|
|
621
|
+
createdOn: string;
|
|
622
|
+
lastModifiedOn: string;
|
|
623
|
+
params?: unknown;
|
|
624
|
+
}[];
|
|
519
625
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
520
626
|
type: import("zod").ZodLiteral<"alarm">;
|
|
521
627
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -762,6 +868,15 @@ export declare const requestSchemasByType: {
|
|
|
762
868
|
providerMetadata: {} & {
|
|
763
869
|
[k: string]: unknown;
|
|
764
870
|
};
|
|
871
|
+
presets: {
|
|
872
|
+
name: string;
|
|
873
|
+
id: string;
|
|
874
|
+
isDefault: boolean;
|
|
875
|
+
assignedRef: string | null;
|
|
876
|
+
createdOn: string;
|
|
877
|
+
lastModifiedOn: string;
|
|
878
|
+
params?: unknown;
|
|
879
|
+
}[];
|
|
765
880
|
} & ({
|
|
766
881
|
type: "alarm";
|
|
767
882
|
} | {
|
|
@@ -845,6 +960,15 @@ export declare const requestSchemasByType: {
|
|
|
845
960
|
providerMetadata: {} & {
|
|
846
961
|
[k: string]: unknown;
|
|
847
962
|
};
|
|
963
|
+
presets: {
|
|
964
|
+
name: string;
|
|
965
|
+
id: string;
|
|
966
|
+
isDefault: boolean;
|
|
967
|
+
assignedRef: string | null;
|
|
968
|
+
createdOn: string;
|
|
969
|
+
lastModifiedOn: string;
|
|
970
|
+
params?: unknown;
|
|
971
|
+
}[];
|
|
848
972
|
} & ({
|
|
849
973
|
type: "alarm";
|
|
850
974
|
} | {
|
|
@@ -925,6 +1049,32 @@ export declare const requestSchemasByType: {
|
|
|
925
1049
|
foreignRef: import("zod").ZodString;
|
|
926
1050
|
provider: import("zod").ZodString;
|
|
927
1051
|
providerMetadata: import("zod").ZodObject<{}, "strip", import("zod").ZodUnknown, import("zod").objectOutputType<{}, import("zod").ZodUnknown, "strip">, import("zod").objectInputType<{}, import("zod").ZodUnknown, "strip">>;
|
|
1052
|
+
} & {
|
|
1053
|
+
presets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1054
|
+
id: import("zod").ZodString;
|
|
1055
|
+
name: import("zod").ZodString;
|
|
1056
|
+
params: import("zod").ZodUnknown;
|
|
1057
|
+
isDefault: import("zod").ZodBoolean;
|
|
1058
|
+
assignedRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1059
|
+
createdOn: import("zod").ZodString;
|
|
1060
|
+
lastModifiedOn: import("zod").ZodString;
|
|
1061
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1062
|
+
name: string;
|
|
1063
|
+
id: string;
|
|
1064
|
+
isDefault: boolean;
|
|
1065
|
+
assignedRef: string | null;
|
|
1066
|
+
createdOn: string;
|
|
1067
|
+
lastModifiedOn: string;
|
|
1068
|
+
params?: unknown;
|
|
1069
|
+
}, {
|
|
1070
|
+
name: string;
|
|
1071
|
+
id: string;
|
|
1072
|
+
isDefault: boolean;
|
|
1073
|
+
assignedRef: string | null;
|
|
1074
|
+
createdOn: string;
|
|
1075
|
+
lastModifiedOn: string;
|
|
1076
|
+
params?: unknown;
|
|
1077
|
+
}>, "many">;
|
|
928
1078
|
}, "strip", import("zod").ZodTypeAny, {
|
|
929
1079
|
name: string;
|
|
930
1080
|
foreignRef: string;
|
|
@@ -932,6 +1082,15 @@ export declare const requestSchemasByType: {
|
|
|
932
1082
|
providerMetadata: {} & {
|
|
933
1083
|
[k: string]: unknown;
|
|
934
1084
|
};
|
|
1085
|
+
presets: {
|
|
1086
|
+
name: string;
|
|
1087
|
+
id: string;
|
|
1088
|
+
isDefault: boolean;
|
|
1089
|
+
assignedRef: string | null;
|
|
1090
|
+
createdOn: string;
|
|
1091
|
+
lastModifiedOn: string;
|
|
1092
|
+
params?: unknown;
|
|
1093
|
+
}[];
|
|
935
1094
|
}, {
|
|
936
1095
|
name: string;
|
|
937
1096
|
foreignRef: string;
|
|
@@ -939,6 +1098,15 @@ export declare const requestSchemasByType: {
|
|
|
939
1098
|
providerMetadata: {} & {
|
|
940
1099
|
[k: string]: unknown;
|
|
941
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
|
+
}[];
|
|
942
1110
|
}>, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
943
1111
|
type: import("zod").ZodLiteral<"alarm">;
|
|
944
1112
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1185,6 +1353,15 @@ export declare const requestSchemasByType: {
|
|
|
1185
1353
|
providerMetadata: {} & {
|
|
1186
1354
|
[k: string]: unknown;
|
|
1187
1355
|
};
|
|
1356
|
+
presets: {
|
|
1357
|
+
name: string;
|
|
1358
|
+
id: string;
|
|
1359
|
+
isDefault: boolean;
|
|
1360
|
+
assignedRef: string | null;
|
|
1361
|
+
createdOn: string;
|
|
1362
|
+
lastModifiedOn: string;
|
|
1363
|
+
params?: unknown;
|
|
1364
|
+
}[];
|
|
1188
1365
|
} & ({
|
|
1189
1366
|
type: "alarm";
|
|
1190
1367
|
} | {
|
|
@@ -1268,6 +1445,15 @@ export declare const requestSchemasByType: {
|
|
|
1268
1445
|
providerMetadata: {} & {
|
|
1269
1446
|
[k: string]: unknown;
|
|
1270
1447
|
};
|
|
1448
|
+
presets: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
id: string;
|
|
1451
|
+
isDefault: boolean;
|
|
1452
|
+
assignedRef: string | null;
|
|
1453
|
+
createdOn: string;
|
|
1454
|
+
lastModifiedOn: string;
|
|
1455
|
+
params?: unknown;
|
|
1456
|
+
}[];
|
|
1271
1457
|
} & ({
|
|
1272
1458
|
type: "alarm";
|
|
1273
1459
|
} | {
|