@lansweeper/discovery-sensor-proto 2.83.0 → 2.84.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,4 +1,5 @@
1
1
  export * from "./discovery_events_pb.d";
2
+ export * from "./discovery_sections_ai_pb.d";
2
3
  export * from "./discovery_sections_api_pb.d";
3
4
  export * from "./discovery_sections_citrix_pb.d";
4
5
  export * from "./discovery_sections_drac_pb.d";
@@ -1,5 +1,7 @@
1
1
  const discovery_events_grpc_pb = require("./discovery_events_grpc_pb");
2
2
  const discovery_events_pb = require("./discovery_events_pb");
3
+ const discovery_sections_ai_grpc_pb = require("./discovery_sections_ai_grpc_pb");
4
+ const discovery_sections_ai_pb = require("./discovery_sections_ai_pb");
3
5
  const discovery_sections_api_grpc_pb = require("./discovery_sections_api_grpc_pb");
4
6
  const discovery_sections_api_pb = require("./discovery_sections_api_pb");
5
7
  const discovery_sections_citrix_grpc_pb = require("./discovery_sections_citrix_grpc_pb");
@@ -24,4 +26,4 @@ const discovery_common_grpc_pb = require("./import/discovery_common_grpc_pb");
24
26
  const discovery_common_pb = require("./import/discovery_common_pb");
25
27
  const discovery_common_vmware_grpc_pb = require("./import/discovery_common_vmware_grpc_pb");
26
28
  const discovery_common_vmware_pb = require("./import/discovery_common_vmware_pb");
27
- Object.assign(exports, discovery_events_grpc_pb, discovery_events_pb, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_citrix_grpc_pb, discovery_sections_citrix_pb, discovery_sections_drac_grpc_pb, discovery_sections_drac_pb, discovery_sections_esxi_grpc_pb, discovery_sections_esxi_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_vcenter_grpc_pb, discovery_sections_vcenter_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb, discovery_common_grpc_pb, discovery_common_pb, discovery_common_vmware_grpc_pb, discovery_common_vmware_pb)
29
+ Object.assign(exports, discovery_events_grpc_pb, discovery_events_pb, discovery_sections_ai_grpc_pb, discovery_sections_ai_pb, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_citrix_grpc_pb, discovery_sections_citrix_pb, discovery_sections_drac_grpc_pb, discovery_sections_drac_pb, discovery_sections_esxi_grpc_pb, discovery_sections_esxi_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_vcenter_grpc_pb, discovery_sections_vcenter_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb, discovery_common_grpc_pb, discovery_common_pb, discovery_common_vmware_grpc_pb, discovery_common_vmware_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.83.0",
4
+ "version": "2.84.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": "85be55d4f9188a0ab857326d8c67b104cb906869"
19
+ "gitHead": "1828c26f6786872e548236aed86b30c8c3c5f07b"
20
20
  }
@@ -0,0 +1,24 @@
1
+ syntax = "proto3";
2
+
3
+ package com.lansweeper.discovery.sensor.ai.v1;
4
+
5
+ option java_multiple_files = true;
6
+
7
+ option csharp_namespace = "Lansweeper.Discovery.Model.Proto.Sensor.Ai";
8
+ option go_package = "./generated-go/ai;ai";
9
+
10
+ import "google/protobuf/timestamp.proto";
11
+ import "google/protobuf/wrappers.proto";
12
+
13
+ /* Section element for AI findings */
14
+ message AiScanResult {
15
+ repeated AiDetection entries = 1;
16
+ }
17
+
18
+ message AiDetection {
19
+ string category = 1;
20
+ google.protobuf.StringValue source = 2;
21
+ string trigger = 3;
22
+ google.protobuf.Timestamp timestamp = 4;
23
+ map<string, string> meta_data = 5;
24
+ }
@@ -1790,4 +1790,4 @@ message WindowsComponentCategory {
1790
1790
  message ComponentCategory {
1791
1791
  google.protobuf.StringValue category_id = 1;
1792
1792
  google.protobuf.StringValue caption = 2;
1793
- }
1793
+ }