@lansweeper/discovery-sensor-proto 2.59.2 → 2.59.3

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/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.2",
4
+ "version": "2.59.3",
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": "ba6cb778c1e9060b618eea79d65c4a949453a01c"
19
+ "gitHead": "50b4f06a3067fc2fdb949e83448ca7aeaa0e4a07"
20
20
  }
@@ -50,17 +50,17 @@ message SnmpCustomOid {
50
50
  }
51
51
 
52
52
  message SnmpInterfaceInfo {
53
- google.protobuf.StringValue index = 1;
53
+ google.protobuf.Int32Value index = 1;
54
54
  google.protobuf.StringValue description = 2;
55
55
  google.protobuf.StringValue name = 3;
56
56
  google.protobuf.StringValue alias = 4;
57
57
  google.protobuf.StringValue type = 5; // As defined in https://www.iana.org/assignments/ianaiftype-mib/ianaiftype-mib
58
58
  google.protobuf.StringValue mtu = 6;
59
- google.protobuf.StringValue speed = 7;
60
- google.protobuf.StringValue high_speed = 8;
59
+ google.protobuf.UInt32Value speed = 7;
60
+ google.protobuf.UInt32Value high_speed = 8;
61
61
  google.protobuf.StringValue phys_address = 9;
62
- google.protobuf.StringValue admin_status = 10;
63
- google.protobuf.StringValue oper_status = 11;
62
+ google.protobuf.Int32Value admin_status = 10;
63
+ google.protobuf.Int32Value oper_status = 11;
64
64
  google.protobuf.StringValue default_gateway = 12;
65
65
  google.protobuf.StringValue ip_address = 13;
66
66
  google.protobuf.StringValue mask = 14;
@@ -70,9 +70,9 @@ message SnmpInterfaceInfo {
70
70
 
71
71
  message SnmpPrinterInfo {
72
72
  google.protobuf.StringValue printer_name = 1;
73
- google.protobuf.StringValue printed_pages = 2;
74
- google.protobuf.StringValue printed_color_pages = 3;
75
- google.protobuf.StringValue printed_mono_pages = 4;
73
+ google.protobuf.UInt32Value printed_pages = 2;
74
+ google.protobuf.UInt32Value printed_color_pages = 3;
75
+ google.protobuf.UInt32Value printed_mono_pages = 4;
76
76
  google.protobuf.StringValue printer_status = 5;
77
77
  google.protobuf.StringValue serial_number = 6;
78
78
  repeated SnmpPrinterTonerInfo toners = 7;