@lansweeper/discovery-sensor-proto 2.59.6 → 2.61.0

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.
@@ -1,3 +1,4 @@
1
+ export * from "./discovery_events_pb.d";
1
2
  export * from "./discovery_sections_api_pb.d";
2
3
  export * from "./discovery_sections_mac_pb.d";
3
4
  export * from "./discovery_sections_ot_pb.d";
@@ -1,3 +1,5 @@
1
+ const discovery_events_grpc_pb = require("./discovery_events_grpc_pb");
2
+ const discovery_events_pb = require("./discovery_events_pb");
1
3
  const discovery_sections_api_grpc_pb = require("./discovery_sections_api_grpc_pb");
2
4
  const discovery_sections_api_pb = require("./discovery_sections_api_pb");
3
5
  const discovery_sections_mac_grpc_pb = require("./discovery_sections_mac_grpc_pb");
@@ -10,4 +12,4 @@ const discovery_sections_unix_grpc_pb = require("./discovery_sections_unix_grpc_
10
12
  const discovery_sections_unix_pb = require("./discovery_sections_unix_pb");
11
13
  const discovery_sections_windows_grpc_pb = require("./discovery_sections_windows_grpc_pb");
12
14
  const discovery_sections_windows_pb = require("./discovery_sections_windows_pb");
13
- Object.assign(exports, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_mac_grpc_pb, discovery_sections_mac_pb, discovery_sections_ot_grpc_pb, discovery_sections_ot_pb, discovery_sections_other_grpc_pb, discovery_sections_other_pb, discovery_sections_unix_grpc_pb, discovery_sections_unix_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb)
15
+ Object.assign(exports, discovery_events_grpc_pb, discovery_events_pb, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_mac_grpc_pb, discovery_sections_mac_pb, discovery_sections_ot_grpc_pb, discovery_sections_ot_pb, discovery_sections_other_grpc_pb, discovery_sections_other_pb, discovery_sections_unix_grpc_pb, discovery_sections_unix_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.59.6",
4
+ "version": "2.61.0",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "27e7c13508d3ec5ad523314c647582a86c7d0d4d"
19
+ "gitHead": "66f2d5fc5cf5fb112ec991d5227188c824adac61"
20
20
  }
@@ -0,0 +1,29 @@
1
+ syntax = "proto3";
2
+
3
+ package com.lansweeper.discovery.events.v1;
4
+
5
+ option java_multiple_files = true;
6
+
7
+ option csharp_namespace = "Lansweeper.Discovery.Model.Proto.Events";
8
+
9
+ import "google/protobuf/timestamp.proto";
10
+ import "google/protobuf/wrappers.proto";
11
+
12
+ enum Action {
13
+ NONE = 0;
14
+ INSERT = 1;
15
+ UPDATE = 2;
16
+ DELETE = 3;
17
+ }
18
+
19
+ message SensorEvent {
20
+ string id = 1;
21
+ google.protobuf.Timestamp event_utc_timestamp = 2;
22
+ Action action = 3;
23
+ string name = 4;
24
+ string version = 5;
25
+ int32 sensor_type = 6;
26
+ string ip = 7;
27
+ google.protobuf.StringValue mac = 8;
28
+ google.protobuf.StringValue os = 9;
29
+ }
@@ -1488,6 +1488,13 @@ message UsbDeviceInfo {
1488
1488
  string device_key = 1;
1489
1489
  string device_value = 2;
1490
1490
  string manufacturer = 3;
1491
+ google.protobuf.StringValue pnp_device_id = 4;
1492
+ google.protobuf.StringValue pnp_class = 5;
1493
+ google.protobuf.StringValue status = 6;
1494
+ google.protobuf.StringValue service = 7;
1495
+ google.protobuf.StringValue caption = 8;
1496
+ google.protobuf.StringValue description = 9;
1497
+ google.protobuf.StringValue present = 10;
1491
1498
  }
1492
1499
 
1493
1500
  /* Section element for SQL Server info on Windows */