@awarevue/api-types 2.0.98 → 2.0.99
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/api/agent-protocol/protocol.d.ts +24 -0
- package/dist/api/commands/all.d.ts +36 -0
- package/dist/api/commands/nvr-exporter.d.ts +12 -0
- package/dist/api/commands/nvr-recorder.d.ts +48 -0
- package/dist/api/commands/server.d.ts +12 -0
- package/dist/api/queries/all.d.ts +18 -0
- package/dist/api/queries/nvr-recorder.d.ts +36 -0
- package/dist/objects/device/any-device.d.ts +30 -0
- package/dist/objects/device/device-import.d.ts +24 -0
- package/dist/objects/device/device-relation.d.ts +7 -0
- package/dist/objects/device/device-relation.js +7 -1
- package/dist/objects/device/nvr-analytics-server.d.ts +8 -1
- package/dist/objects/device/nvr-analytics-server.js +4 -1
- package/dist/objects/device/reader.js +2 -2
- package/dist/package.json +1 -1
- package/dist/primitives.d.ts +20 -1
- package/dist/primitives.js +7 -2
- package/package.json +1 -1
- package/dist/primitives/credential-type.d.ts +0 -9
- package/dist/primitives/credential-type.js +0 -11
- package/dist/primitives/index.d.ts +0 -1
- package/dist/primitives/index.js +0 -17
|
@@ -245,6 +245,12 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
245
245
|
}, z.core.$strip>, z.ZodObject<{
|
|
246
246
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
247
247
|
}, z.core.$strip>, z.ZodObject<{
|
|
248
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
249
|
+
motionDetection: "motionDetection";
|
|
250
|
+
labelDetection: "labelDetection";
|
|
251
|
+
faceRecognition: "faceRecognition";
|
|
252
|
+
semanticSearch: "semanticSearch";
|
|
253
|
+
}>>;
|
|
248
254
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
249
255
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
256
|
type: z.ZodLiteral<"system">;
|
|
@@ -373,6 +379,12 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
373
379
|
}, z.core.$strip>, z.ZodObject<{
|
|
374
380
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
375
381
|
}, z.core.$strip>, z.ZodObject<{
|
|
382
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
383
|
+
motionDetection: "motionDetection";
|
|
384
|
+
labelDetection: "labelDetection";
|
|
385
|
+
faceRecognition: "faceRecognition";
|
|
386
|
+
semanticSearch: "semanticSearch";
|
|
387
|
+
}>>;
|
|
376
388
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
377
389
|
}, z.core.$strip>, z.ZodObject<{
|
|
378
390
|
type: z.ZodLiteral<"system">;
|
|
@@ -505,6 +517,12 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
505
517
|
}, z.core.$strip>, z.ZodObject<{
|
|
506
518
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
507
519
|
}, z.core.$strip>, z.ZodObject<{
|
|
520
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
521
|
+
motionDetection: "motionDetection";
|
|
522
|
+
labelDetection: "labelDetection";
|
|
523
|
+
faceRecognition: "faceRecognition";
|
|
524
|
+
semanticSearch: "semanticSearch";
|
|
525
|
+
}>>;
|
|
508
526
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
509
527
|
}, z.core.$strip>, z.ZodObject<{
|
|
510
528
|
type: z.ZodLiteral<"system">;
|
|
@@ -648,6 +666,12 @@ export declare const sGetAvailableDevicesRs: z.ZodObject<{
|
|
|
648
666
|
}, z.core.$strip>, z.ZodObject<{
|
|
649
667
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
650
668
|
}, z.core.$strip>, z.ZodObject<{
|
|
669
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
670
|
+
motionDetection: "motionDetection";
|
|
671
|
+
labelDetection: "labelDetection";
|
|
672
|
+
faceRecognition: "faceRecognition";
|
|
673
|
+
semanticSearch: "semanticSearch";
|
|
674
|
+
}>>;
|
|
651
675
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
652
676
|
}, z.core.$strip>, z.ZodObject<{
|
|
653
677
|
type: z.ZodLiteral<"system">;
|
|
@@ -140,6 +140,12 @@ export declare const commandSchemas: {
|
|
|
140
140
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
141
141
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
142
142
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
143
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
144
|
+
motionDetection: "motionDetection";
|
|
145
|
+
labelDetection: "labelDetection";
|
|
146
|
+
faceRecognition: "faceRecognition";
|
|
147
|
+
semanticSearch: "semanticSearch";
|
|
148
|
+
}>>;
|
|
143
149
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
144
150
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
145
151
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -272,6 +278,12 @@ export declare const commandSchemas: {
|
|
|
272
278
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
273
279
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
274
280
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
281
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
282
|
+
motionDetection: "motionDetection";
|
|
283
|
+
labelDetection: "labelDetection";
|
|
284
|
+
faceRecognition: "faceRecognition";
|
|
285
|
+
semanticSearch: "semanticSearch";
|
|
286
|
+
}>>;
|
|
275
287
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
276
288
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
277
289
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -404,6 +416,12 @@ export declare const commandSchemas: {
|
|
|
404
416
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
405
417
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
406
418
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
419
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
420
|
+
motionDetection: "motionDetection";
|
|
421
|
+
labelDetection: "labelDetection";
|
|
422
|
+
faceRecognition: "faceRecognition";
|
|
423
|
+
semanticSearch: "semanticSearch";
|
|
424
|
+
}>>;
|
|
407
425
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
408
426
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
409
427
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -527,6 +545,12 @@ export declare const commandSchemas: {
|
|
|
527
545
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
528
546
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
529
547
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
548
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
549
|
+
motionDetection: "motionDetection";
|
|
550
|
+
labelDetection: "labelDetection";
|
|
551
|
+
faceRecognition: "faceRecognition";
|
|
552
|
+
semanticSearch: "semanticSearch";
|
|
553
|
+
}>>;
|
|
530
554
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
531
555
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
532
556
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -650,6 +674,12 @@ export declare const commandSchemas: {
|
|
|
650
674
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
651
675
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
652
676
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
677
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
678
|
+
motionDetection: "motionDetection";
|
|
679
|
+
labelDetection: "labelDetection";
|
|
680
|
+
faceRecognition: "faceRecognition";
|
|
681
|
+
semanticSearch: "semanticSearch";
|
|
682
|
+
}>>;
|
|
653
683
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
654
684
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
655
685
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -776,6 +806,12 @@ export declare const commandSchemas: {
|
|
|
776
806
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
777
807
|
type: import("zod").ZodLiteral<"nvr-exporter">;
|
|
778
808
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
809
|
+
capabilities: import("zod").ZodArray<import("zod").ZodEnum<{
|
|
810
|
+
motionDetection: "motionDetection";
|
|
811
|
+
labelDetection: "labelDetection";
|
|
812
|
+
faceRecognition: "faceRecognition";
|
|
813
|
+
semanticSearch: "semanticSearch";
|
|
814
|
+
}>>;
|
|
779
815
|
type: import("zod").ZodLiteral<"nvr-analytics-server">;
|
|
780
816
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
781
817
|
type: import("zod").ZodLiteral<"system">;
|
|
@@ -116,6 +116,12 @@ export declare const sStartExportCommand: z.ZodObject<{
|
|
|
116
116
|
}, z.core.$strip>, z.ZodObject<{
|
|
117
117
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
118
118
|
}, z.core.$strip>, z.ZodObject<{
|
|
119
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
120
|
+
motionDetection: "motionDetection";
|
|
121
|
+
labelDetection: "labelDetection";
|
|
122
|
+
faceRecognition: "faceRecognition";
|
|
123
|
+
semanticSearch: "semanticSearch";
|
|
124
|
+
}>>;
|
|
119
125
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
120
126
|
}, z.core.$strip>, z.ZodObject<{
|
|
121
127
|
type: z.ZodLiteral<"system">;
|
|
@@ -253,6 +259,12 @@ export declare const nvrExporterCommandSchemas: {
|
|
|
253
259
|
}, z.core.$strip>, z.ZodObject<{
|
|
254
260
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
255
261
|
}, z.core.$strip>, z.ZodObject<{
|
|
262
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
263
|
+
motionDetection: "motionDetection";
|
|
264
|
+
labelDetection: "labelDetection";
|
|
265
|
+
faceRecognition: "faceRecognition";
|
|
266
|
+
semanticSearch: "semanticSearch";
|
|
267
|
+
}>>;
|
|
256
268
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
257
269
|
}, z.core.$strip>, z.ZodObject<{
|
|
258
270
|
type: z.ZodLiteral<"system">;
|
|
@@ -115,6 +115,12 @@ export declare const sMountStreamCommand: z.ZodObject<{
|
|
|
115
115
|
}, z.core.$strip>, z.ZodObject<{
|
|
116
116
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
117
117
|
}, z.core.$strip>, z.ZodObject<{
|
|
118
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
119
|
+
motionDetection: "motionDetection";
|
|
120
|
+
labelDetection: "labelDetection";
|
|
121
|
+
faceRecognition: "faceRecognition";
|
|
122
|
+
semanticSearch: "semanticSearch";
|
|
123
|
+
}>>;
|
|
118
124
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
119
125
|
}, z.core.$strip>, z.ZodObject<{
|
|
120
126
|
type: z.ZodLiteral<"system">;
|
|
@@ -242,6 +248,12 @@ export declare const sUnmountStreamCommand: z.ZodObject<{
|
|
|
242
248
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
249
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
244
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
251
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
252
|
+
motionDetection: "motionDetection";
|
|
253
|
+
labelDetection: "labelDetection";
|
|
254
|
+
faceRecognition: "faceRecognition";
|
|
255
|
+
semanticSearch: "semanticSearch";
|
|
256
|
+
}>>;
|
|
245
257
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
246
258
|
}, z.core.$strip>, z.ZodObject<{
|
|
247
259
|
type: z.ZodLiteral<"system">;
|
|
@@ -366,6 +378,12 @@ export declare const sStartRecordingCommand: z.ZodObject<{
|
|
|
366
378
|
}, z.core.$strip>, z.ZodObject<{
|
|
367
379
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
368
380
|
}, z.core.$strip>, z.ZodObject<{
|
|
381
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
382
|
+
motionDetection: "motionDetection";
|
|
383
|
+
labelDetection: "labelDetection";
|
|
384
|
+
faceRecognition: "faceRecognition";
|
|
385
|
+
semanticSearch: "semanticSearch";
|
|
386
|
+
}>>;
|
|
369
387
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
370
388
|
}, z.core.$strip>, z.ZodObject<{
|
|
371
389
|
type: z.ZodLiteral<"system">;
|
|
@@ -490,6 +508,12 @@ export declare const sStopRecordingCommand: z.ZodObject<{
|
|
|
490
508
|
}, z.core.$strip>, z.ZodObject<{
|
|
491
509
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
492
510
|
}, z.core.$strip>, z.ZodObject<{
|
|
511
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
512
|
+
motionDetection: "motionDetection";
|
|
513
|
+
labelDetection: "labelDetection";
|
|
514
|
+
faceRecognition: "faceRecognition";
|
|
515
|
+
semanticSearch: "semanticSearch";
|
|
516
|
+
}>>;
|
|
493
517
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
494
518
|
}, z.core.$strip>, z.ZodObject<{
|
|
495
519
|
type: z.ZodLiteral<"system">;
|
|
@@ -616,6 +640,12 @@ export declare const nvrRecorderCommandSchemas: {
|
|
|
616
640
|
}, z.core.$strip>, z.ZodObject<{
|
|
617
641
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
618
642
|
}, z.core.$strip>, z.ZodObject<{
|
|
643
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
644
|
+
motionDetection: "motionDetection";
|
|
645
|
+
labelDetection: "labelDetection";
|
|
646
|
+
faceRecognition: "faceRecognition";
|
|
647
|
+
semanticSearch: "semanticSearch";
|
|
648
|
+
}>>;
|
|
619
649
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
620
650
|
}, z.core.$strip>, z.ZodObject<{
|
|
621
651
|
type: z.ZodLiteral<"system">;
|
|
@@ -739,6 +769,12 @@ export declare const nvrRecorderCommandSchemas: {
|
|
|
739
769
|
}, z.core.$strip>, z.ZodObject<{
|
|
740
770
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
741
771
|
}, z.core.$strip>, z.ZodObject<{
|
|
772
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
773
|
+
motionDetection: "motionDetection";
|
|
774
|
+
labelDetection: "labelDetection";
|
|
775
|
+
faceRecognition: "faceRecognition";
|
|
776
|
+
semanticSearch: "semanticSearch";
|
|
777
|
+
}>>;
|
|
742
778
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
743
779
|
}, z.core.$strip>, z.ZodObject<{
|
|
744
780
|
type: z.ZodLiteral<"system">;
|
|
@@ -862,6 +898,12 @@ export declare const nvrRecorderCommandSchemas: {
|
|
|
862
898
|
}, z.core.$strip>, z.ZodObject<{
|
|
863
899
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
864
900
|
}, z.core.$strip>, z.ZodObject<{
|
|
901
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
902
|
+
motionDetection: "motionDetection";
|
|
903
|
+
labelDetection: "labelDetection";
|
|
904
|
+
faceRecognition: "faceRecognition";
|
|
905
|
+
semanticSearch: "semanticSearch";
|
|
906
|
+
}>>;
|
|
865
907
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
866
908
|
}, z.core.$strip>, z.ZodObject<{
|
|
867
909
|
type: z.ZodLiteral<"system">;
|
|
@@ -988,6 +1030,12 @@ export declare const nvrRecorderCommandSchemas: {
|
|
|
988
1030
|
}, z.core.$strip>, z.ZodObject<{
|
|
989
1031
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
990
1032
|
}, z.core.$strip>, z.ZodObject<{
|
|
1033
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1034
|
+
motionDetection: "motionDetection";
|
|
1035
|
+
labelDetection: "labelDetection";
|
|
1036
|
+
faceRecognition: "faceRecognition";
|
|
1037
|
+
semanticSearch: "semanticSearch";
|
|
1038
|
+
}>>;
|
|
991
1039
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
992
1040
|
}, z.core.$strip>, z.ZodObject<{
|
|
993
1041
|
type: z.ZodLiteral<"system">;
|
|
@@ -121,6 +121,12 @@ export declare const sNotify: z.ZodObject<{
|
|
|
121
121
|
}, z.core.$strip>, z.ZodObject<{
|
|
122
122
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
123
123
|
}, z.core.$strip>, z.ZodObject<{
|
|
124
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
125
|
+
motionDetection: "motionDetection";
|
|
126
|
+
labelDetection: "labelDetection";
|
|
127
|
+
faceRecognition: "faceRecognition";
|
|
128
|
+
semanticSearch: "semanticSearch";
|
|
129
|
+
}>>;
|
|
124
130
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
125
131
|
}, z.core.$strip>, z.ZodObject<{
|
|
126
132
|
type: z.ZodLiteral<"system">;
|
|
@@ -261,6 +267,12 @@ export declare const serverCommands: {
|
|
|
261
267
|
}, z.core.$strip>, z.ZodObject<{
|
|
262
268
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
263
269
|
}, z.core.$strip>, z.ZodObject<{
|
|
270
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
271
|
+
motionDetection: "motionDetection";
|
|
272
|
+
labelDetection: "labelDetection";
|
|
273
|
+
faceRecognition: "faceRecognition";
|
|
274
|
+
semanticSearch: "semanticSearch";
|
|
275
|
+
}>>;
|
|
264
276
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
265
277
|
}, z.core.$strip>, z.ZodObject<{
|
|
266
278
|
type: z.ZodLiteral<"system">;
|
|
@@ -182,6 +182,12 @@ export declare const requestSchemasByType: {
|
|
|
182
182
|
}, z.core.$strip>, z.ZodObject<{
|
|
183
183
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
184
184
|
}, z.core.$strip>, z.ZodObject<{
|
|
185
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
186
|
+
motionDetection: "motionDetection";
|
|
187
|
+
labelDetection: "labelDetection";
|
|
188
|
+
faceRecognition: "faceRecognition";
|
|
189
|
+
semanticSearch: "semanticSearch";
|
|
190
|
+
}>>;
|
|
185
191
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
186
192
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
193
|
type: z.ZodLiteral<"system">;
|
|
@@ -304,6 +310,12 @@ export declare const requestSchemasByType: {
|
|
|
304
310
|
}, z.core.$strip>, z.ZodObject<{
|
|
305
311
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
306
312
|
}, z.core.$strip>, z.ZodObject<{
|
|
313
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
314
|
+
motionDetection: "motionDetection";
|
|
315
|
+
labelDetection: "labelDetection";
|
|
316
|
+
faceRecognition: "faceRecognition";
|
|
317
|
+
semanticSearch: "semanticSearch";
|
|
318
|
+
}>>;
|
|
307
319
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
308
320
|
}, z.core.$strip>, z.ZodObject<{
|
|
309
321
|
type: z.ZodLiteral<"system">;
|
|
@@ -426,6 +438,12 @@ export declare const requestSchemasByType: {
|
|
|
426
438
|
}, z.core.$strip>, z.ZodObject<{
|
|
427
439
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
428
440
|
}, z.core.$strip>, z.ZodObject<{
|
|
441
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
442
|
+
motionDetection: "motionDetection";
|
|
443
|
+
labelDetection: "labelDetection";
|
|
444
|
+
faceRecognition: "faceRecognition";
|
|
445
|
+
semanticSearch: "semanticSearch";
|
|
446
|
+
}>>;
|
|
429
447
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
430
448
|
}, z.core.$strip>, z.ZodObject<{
|
|
431
449
|
type: z.ZodLiteral<"system">;
|
|
@@ -114,6 +114,12 @@ export declare const sRecordingsByTimeRangeArgs: z.ZodObject<{
|
|
|
114
114
|
}, z.core.$strip>, z.ZodObject<{
|
|
115
115
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
116
116
|
}, z.core.$strip>, z.ZodObject<{
|
|
117
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
118
|
+
motionDetection: "motionDetection";
|
|
119
|
+
labelDetection: "labelDetection";
|
|
120
|
+
faceRecognition: "faceRecognition";
|
|
121
|
+
semanticSearch: "semanticSearch";
|
|
122
|
+
}>>;
|
|
117
123
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
118
124
|
}, z.core.$strip>, z.ZodObject<{
|
|
119
125
|
type: z.ZodLiteral<"system">;
|
|
@@ -245,6 +251,12 @@ export declare const sPreviewImageArgs: z.ZodObject<{
|
|
|
245
251
|
}, z.core.$strip>, z.ZodObject<{
|
|
246
252
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
247
253
|
}, z.core.$strip>, z.ZodObject<{
|
|
254
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
255
|
+
motionDetection: "motionDetection";
|
|
256
|
+
labelDetection: "labelDetection";
|
|
257
|
+
faceRecognition: "faceRecognition";
|
|
258
|
+
semanticSearch: "semanticSearch";
|
|
259
|
+
}>>;
|
|
248
260
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
249
261
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
262
|
type: z.ZodLiteral<"system">;
|
|
@@ -374,6 +386,12 @@ export declare const sCameraLatestFrameArgs: z.ZodObject<{
|
|
|
374
386
|
}, z.core.$strip>, z.ZodObject<{
|
|
375
387
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
376
388
|
}, z.core.$strip>, z.ZodObject<{
|
|
389
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
390
|
+
motionDetection: "motionDetection";
|
|
391
|
+
labelDetection: "labelDetection";
|
|
392
|
+
faceRecognition: "faceRecognition";
|
|
393
|
+
semanticSearch: "semanticSearch";
|
|
394
|
+
}>>;
|
|
377
395
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
378
396
|
}, z.core.$strip>, z.ZodObject<{
|
|
379
397
|
type: z.ZodLiteral<"system">;
|
|
@@ -503,6 +521,12 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
503
521
|
}, z.core.$strip>, z.ZodObject<{
|
|
504
522
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
505
523
|
}, z.core.$strip>, z.ZodObject<{
|
|
524
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
525
|
+
motionDetection: "motionDetection";
|
|
526
|
+
labelDetection: "labelDetection";
|
|
527
|
+
faceRecognition: "faceRecognition";
|
|
528
|
+
semanticSearch: "semanticSearch";
|
|
529
|
+
}>>;
|
|
506
530
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
507
531
|
}, z.core.$strip>, z.ZodObject<{
|
|
508
532
|
type: z.ZodLiteral<"system">;
|
|
@@ -625,6 +649,12 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
625
649
|
}, z.core.$strip>, z.ZodObject<{
|
|
626
650
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
627
651
|
}, z.core.$strip>, z.ZodObject<{
|
|
652
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
653
|
+
motionDetection: "motionDetection";
|
|
654
|
+
labelDetection: "labelDetection";
|
|
655
|
+
faceRecognition: "faceRecognition";
|
|
656
|
+
semanticSearch: "semanticSearch";
|
|
657
|
+
}>>;
|
|
628
658
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
629
659
|
}, z.core.$strip>, z.ZodObject<{
|
|
630
660
|
type: z.ZodLiteral<"system">;
|
|
@@ -747,6 +777,12 @@ export declare const nvrRecorderRequestSchemas: {
|
|
|
747
777
|
}, z.core.$strip>, z.ZodObject<{
|
|
748
778
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
749
779
|
}, z.core.$strip>, z.ZodObject<{
|
|
780
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
781
|
+
motionDetection: "motionDetection";
|
|
782
|
+
labelDetection: "labelDetection";
|
|
783
|
+
faceRecognition: "faceRecognition";
|
|
784
|
+
semanticSearch: "semanticSearch";
|
|
785
|
+
}>>;
|
|
750
786
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
751
787
|
}, z.core.$strip>, z.ZodObject<{
|
|
752
788
|
type: z.ZodLiteral<"system">;
|
|
@@ -49,6 +49,12 @@ export declare const sNvrExporterSpecsWithType: z.ZodObject<{
|
|
|
49
49
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
export declare const sNvrAnalyticsServerSpecsWithType: z.ZodObject<{
|
|
52
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
53
|
+
motionDetection: "motionDetection";
|
|
54
|
+
labelDetection: "labelDetection";
|
|
55
|
+
faceRecognition: "faceRecognition";
|
|
56
|
+
semanticSearch: "semanticSearch";
|
|
57
|
+
}>>;
|
|
52
58
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
53
59
|
}, z.core.$strip>;
|
|
54
60
|
export declare const sSystemDeviceSpecsWithType: z.ZodObject<{
|
|
@@ -153,6 +159,12 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
153
159
|
}, z.core.$strip>, z.ZodObject<{
|
|
154
160
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
155
161
|
}, z.core.$strip>, z.ZodObject<{
|
|
162
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
163
|
+
motionDetection: "motionDetection";
|
|
164
|
+
labelDetection: "labelDetection";
|
|
165
|
+
faceRecognition: "faceRecognition";
|
|
166
|
+
semanticSearch: "semanticSearch";
|
|
167
|
+
}>>;
|
|
156
168
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
157
169
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
170
|
type: z.ZodLiteral<"system">;
|
|
@@ -317,6 +329,12 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
317
329
|
}, z.core.$strip>, z.ZodObject<{
|
|
318
330
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
319
331
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
333
|
+
motionDetection: "motionDetection";
|
|
334
|
+
labelDetection: "labelDetection";
|
|
335
|
+
faceRecognition: "faceRecognition";
|
|
336
|
+
semanticSearch: "semanticSearch";
|
|
337
|
+
}>>;
|
|
320
338
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
321
339
|
}, z.core.$strip>, z.ZodObject<{
|
|
322
340
|
type: z.ZodLiteral<"system">;
|
|
@@ -1319,6 +1337,12 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1319
1337
|
providerMetadata: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
1320
1338
|
}, z.core.$strip>>;
|
|
1321
1339
|
export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1340
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1341
|
+
motionDetection: "motionDetection";
|
|
1342
|
+
labelDetection: "labelDetection";
|
|
1343
|
+
faceRecognition: "faceRecognition";
|
|
1344
|
+
semanticSearch: "semanticSearch";
|
|
1345
|
+
}>>;
|
|
1322
1346
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
1323
1347
|
}, z.core.$strip>, z.ZodObject<{
|
|
1324
1348
|
id: z.ZodString;
|
|
@@ -2435,6 +2459,12 @@ export declare const deviceDtoSchemaMap: {
|
|
|
2435
2459
|
providerMetadata: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
2436
2460
|
}, z.core.$strip>>;
|
|
2437
2461
|
readonly "nvr-analytics-server": z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2462
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
2463
|
+
motionDetection: "motionDetection";
|
|
2464
|
+
labelDetection: "labelDetection";
|
|
2465
|
+
faceRecognition: "faceRecognition";
|
|
2466
|
+
semanticSearch: "semanticSearch";
|
|
2467
|
+
}>>;
|
|
2438
2468
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
2439
2469
|
}, z.core.$strip>, z.ZodObject<{
|
|
2440
2470
|
id: z.ZodString;
|
|
@@ -106,6 +106,12 @@ export declare const sImportedDevice: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
106
106
|
}, z.core.$strip>, z.ZodObject<{
|
|
107
107
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
108
108
|
}, z.core.$strip>, z.ZodObject<{
|
|
109
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
110
|
+
motionDetection: "motionDetection";
|
|
111
|
+
labelDetection: "labelDetection";
|
|
112
|
+
faceRecognition: "faceRecognition";
|
|
113
|
+
semanticSearch: "semanticSearch";
|
|
114
|
+
}>>;
|
|
109
115
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
110
116
|
}, z.core.$strip>, z.ZodObject<{
|
|
111
117
|
type: z.ZodLiteral<"system">;
|
|
@@ -221,6 +227,12 @@ export declare const sDeviceDiscoveryDto: z.ZodObject<{
|
|
|
221
227
|
}, z.core.$strip>, z.ZodObject<{
|
|
222
228
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
223
229
|
}, z.core.$strip>, z.ZodObject<{
|
|
230
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
231
|
+
motionDetection: "motionDetection";
|
|
232
|
+
labelDetection: "labelDetection";
|
|
233
|
+
faceRecognition: "faceRecognition";
|
|
234
|
+
semanticSearch: "semanticSearch";
|
|
235
|
+
}>>;
|
|
224
236
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
225
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
238
|
type: z.ZodLiteral<"system">;
|
|
@@ -397,6 +409,12 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
397
409
|
}, z.core.$strip>, z.ZodObject<{
|
|
398
410
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
399
411
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
413
|
+
motionDetection: "motionDetection";
|
|
414
|
+
labelDetection: "labelDetection";
|
|
415
|
+
faceRecognition: "faceRecognition";
|
|
416
|
+
semanticSearch: "semanticSearch";
|
|
417
|
+
}>>;
|
|
400
418
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
401
419
|
}, z.core.$strip>, z.ZodObject<{
|
|
402
420
|
type: z.ZodLiteral<"system">;
|
|
@@ -505,6 +523,12 @@ export declare const sDeviceGetChangesDto: z.ZodObject<{
|
|
|
505
523
|
}, z.core.$strip>, z.ZodObject<{
|
|
506
524
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
507
525
|
}, z.core.$strip>, z.ZodObject<{
|
|
526
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
527
|
+
motionDetection: "motionDetection";
|
|
528
|
+
labelDetection: "labelDetection";
|
|
529
|
+
faceRecognition: "faceRecognition";
|
|
530
|
+
semanticSearch: "semanticSearch";
|
|
531
|
+
}>>;
|
|
508
532
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
509
533
|
}, z.core.$strip>, z.ZodObject<{
|
|
510
534
|
type: z.ZodLiteral<"system">;
|
|
@@ -147,6 +147,13 @@ export declare const sAiStreamConfiguration: z.ZodObject<{
|
|
|
147
147
|
fps: z.ZodOptional<z.ZodNumber>;
|
|
148
148
|
}, z.core.$strip>>;
|
|
149
149
|
}, z.core.$strip>;
|
|
150
|
+
export declare const sAiCapability: z.ZodEnum<{
|
|
151
|
+
motionDetection: "motionDetection";
|
|
152
|
+
labelDetection: "labelDetection";
|
|
153
|
+
faceRecognition: "faceRecognition";
|
|
154
|
+
semanticSearch: "semanticSearch";
|
|
155
|
+
}>;
|
|
156
|
+
export type AiCapability = z.infer<typeof sAiCapability>;
|
|
150
157
|
export type AiStreamConfiguration = z.infer<typeof sAiStreamConfiguration>;
|
|
151
158
|
export declare const sAiInferenceRelationData: z.ZodObject<{
|
|
152
159
|
streams: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sDeviceRelationDataMap = exports.sIoBoardRelationData = exports.sAiInferenceRelationData = exports.sAiStreamConfiguration = exports.sAiSemanticSearchConfiguration = exports.sAiFaceRecognitionConfiguration = exports.sAiDetectionConfiguration = exports.sAiLabelConfiguration = exports.sMotionDetectionConfiguration = exports.sRecordingRelationData = exports.sStreamRecorderSettings = exports.inverseRelationKinds = exports.relationKinds = exports.sDeviceRelationSide = exports.sDeviceRelationDto = exports.sDeviceRelationKind = void 0;
|
|
3
|
+
exports.sDeviceRelationDataMap = exports.sIoBoardRelationData = exports.sAiInferenceRelationData = exports.sAiCapability = exports.sAiStreamConfiguration = exports.sAiSemanticSearchConfiguration = exports.sAiFaceRecognitionConfiguration = exports.sAiDetectionConfiguration = exports.sAiLabelConfiguration = exports.sMotionDetectionConfiguration = exports.sRecordingRelationData = exports.sStreamRecorderSettings = exports.inverseRelationKinds = exports.relationKinds = exports.sDeviceRelationSide = exports.sDeviceRelationDto = exports.sDeviceRelationKind = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.sDeviceRelationKind = zod_1.z.enum([
|
|
6
6
|
'attachedTo',
|
|
@@ -127,6 +127,12 @@ exports.sAiStreamConfiguration = zod_1.z.object({
|
|
|
127
127
|
faceRecognition: exports.sAiFaceRecognitionConfiguration.optional(),
|
|
128
128
|
semanticSearch: exports.sAiSemanticSearchConfiguration.optional(),
|
|
129
129
|
});
|
|
130
|
+
exports.sAiCapability = zod_1.z.enum([
|
|
131
|
+
'motionDetection',
|
|
132
|
+
'labelDetection',
|
|
133
|
+
'faceRecognition',
|
|
134
|
+
'semanticSearch',
|
|
135
|
+
]);
|
|
130
136
|
// all together now: AI inference relation data
|
|
131
137
|
exports.sAiInferenceRelationData = zod_1.z.object({
|
|
132
138
|
streams: zod_1.z.record(zod_1.z.string(), exports.sAiStreamConfiguration),
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const NVR_ANALYTICS_SERVER = "nvr-analytics-server";
|
|
3
|
-
export declare const sAnalyticsServerSpecs: z.ZodObject<{
|
|
3
|
+
export declare const sAnalyticsServerSpecs: z.ZodObject<{
|
|
4
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
5
|
+
motionDetection: "motionDetection";
|
|
6
|
+
labelDetection: "labelDetection";
|
|
7
|
+
faceRecognition: "faceRecognition";
|
|
8
|
+
semanticSearch: "semanticSearch";
|
|
9
|
+
}>>;
|
|
10
|
+
}, z.core.$strip>;
|
|
4
11
|
export type AnalyticsServerSpecs = z.infer<typeof sAnalyticsServerSpecs>;
|
|
5
12
|
export declare const sAnalyticsServerStateDto: z.ZodObject<{
|
|
6
13
|
connected: z.ZodBoolean;
|
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.sAnalyticsServerStateDto = exports.sAnalyticsServerSpecs = exports.NVR_ANALYTICS_SERVER = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
+
const device_relation_1 = require("./device-relation");
|
|
5
6
|
exports.NVR_ANALYTICS_SERVER = 'nvr-analytics-server';
|
|
6
|
-
exports.sAnalyticsServerSpecs = zod_1.z.object({
|
|
7
|
+
exports.sAnalyticsServerSpecs = zod_1.z.object({
|
|
8
|
+
capabilities: zod_1.z.array(device_relation_1.sAiCapability),
|
|
9
|
+
});
|
|
7
10
|
exports.sAnalyticsServerStateDto = zod_1.z.object({
|
|
8
11
|
connected: zod_1.z.boolean(),
|
|
9
12
|
});
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.sReaderSpecs = exports.READER = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
-
const
|
|
5
|
+
const primitives_1 = require("../../primitives");
|
|
6
6
|
exports.READER = 'reader';
|
|
7
7
|
// SPECS
|
|
8
8
|
exports.sReaderSpecs = zod_1.z.object({
|
|
9
|
-
credentialTypes: zod_1.z.array(
|
|
9
|
+
credentialTypes: zod_1.z.array(primitives_1.sCredentialType).optional(),
|
|
10
10
|
});
|
package/dist/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.99",
|
|
8
8
|
"description": "Common types between backend, agent(s) and frontend(s)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
package/dist/primitives.d.ts
CHANGED
|
@@ -138,6 +138,12 @@ export declare const sAgentDeviceInfo: z.ZodIntersection<z.ZodObject<{
|
|
|
138
138
|
}, z.core.$strip>, z.ZodObject<{
|
|
139
139
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
140
140
|
}, z.core.$strip>, z.ZodObject<{
|
|
141
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
142
|
+
motionDetection: "motionDetection";
|
|
143
|
+
labelDetection: "labelDetection";
|
|
144
|
+
faceRecognition: "faceRecognition";
|
|
145
|
+
semanticSearch: "semanticSearch";
|
|
146
|
+
}>>;
|
|
141
147
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
142
148
|
}, z.core.$strip>, z.ZodObject<{
|
|
143
149
|
type: z.ZodLiteral<"system">;
|
|
@@ -257,6 +263,12 @@ export declare const sDeviceParam: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodInt
|
|
|
257
263
|
}, z.core.$strip>, z.ZodObject<{
|
|
258
264
|
type: z.ZodLiteral<"nvr-exporter">;
|
|
259
265
|
}, z.core.$strip>, z.ZodObject<{
|
|
266
|
+
capabilities: z.ZodArray<z.ZodEnum<{
|
|
267
|
+
motionDetection: "motionDetection";
|
|
268
|
+
labelDetection: "labelDetection";
|
|
269
|
+
faceRecognition: "faceRecognition";
|
|
270
|
+
semanticSearch: "semanticSearch";
|
|
271
|
+
}>>;
|
|
260
272
|
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
261
273
|
}, z.core.$strip>, z.ZodObject<{
|
|
262
274
|
type: z.ZodLiteral<"system">;
|
|
@@ -286,4 +298,11 @@ export declare const sCallDirection: z.ZodEnum<{
|
|
|
286
298
|
incoming: "incoming";
|
|
287
299
|
outgoing: "outgoing";
|
|
288
300
|
}>;
|
|
289
|
-
export
|
|
301
|
+
export declare const sCredentialType: z.ZodEnum<{
|
|
302
|
+
card: "card";
|
|
303
|
+
pin: "pin";
|
|
304
|
+
fingerprint: "fingerprint";
|
|
305
|
+
face: "face";
|
|
306
|
+
retina: "retina";
|
|
307
|
+
}>;
|
|
308
|
+
export type CredentialType = z.infer<typeof sCredentialType>;
|
package/dist/primitives.js
CHANGED
|
@@ -53,5 +53,10 @@ exports.sCallState = zod_1.z.enum([
|
|
|
53
53
|
'terminated',
|
|
54
54
|
]);
|
|
55
55
|
exports.sCallDirection = zod_1.z.enum(['incoming', 'outgoing']);
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
exports.sCredentialType = zod_1.z.enum([
|
|
57
|
+
'card',
|
|
58
|
+
'pin',
|
|
59
|
+
'fingerprint',
|
|
60
|
+
'face',
|
|
61
|
+
'retina',
|
|
62
|
+
]);
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.99",
|
|
8
8
|
"description": "Common types between backend, agent(s) and frontend(s)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './credential-type';
|
package/dist/primitives/index.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./credential-type"), exports);
|