@lansweeper/data-platform-outbound-grpc 0.1.39 → 0.1.40
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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +64 -0
- package/gen-proto/outbound_pb.js +512 -1
- package/generated-go/outbound.pb.go +2364 -2215
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +17 -1
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.40",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "0e71229025120fceaf6e7614217e2b61211794db"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -132,9 +132,11 @@ message Asset {
|
|
|
132
132
|
repeated OpticalDrive optical_drive = 24;
|
|
133
133
|
repeated HardDrive hard_drive = 25;
|
|
134
134
|
repeated GraphicsCard graphics_card = 27;
|
|
135
|
+
repeated SoundCard sound_card = 30;
|
|
135
136
|
repeated Keyboard keyboard = 28;
|
|
136
137
|
repeated PointingDevice pointing_device = 29;
|
|
137
138
|
|
|
139
|
+
|
|
138
140
|
optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
|
|
139
141
|
|
|
140
142
|
optional CloudEntity cloud = 17;
|
|
@@ -546,7 +548,21 @@ message PointingDevice {
|
|
|
546
548
|
}
|
|
547
549
|
|
|
548
550
|
/**
|
|
549
|
-
*
|
|
551
|
+
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
|
|
552
|
+
**/
|
|
553
|
+
message SoundCard {
|
|
554
|
+
optional string caption = 1; // Windows, Linux(name)
|
|
555
|
+
optional string device_id = 2; // Windows, Linux
|
|
556
|
+
optional string manufacturer = 3; // Windows, Linux
|
|
557
|
+
|
|
558
|
+
optional string type = 4; // Linux
|
|
559
|
+
optional string subsystem_name = 5; // Linux
|
|
560
|
+
optional string subsystem_manufacturer = 6; // Linux
|
|
561
|
+
optional string parent = 7; // Linux
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)
|
|
550
566
|
**/
|
|
551
567
|
message GraphicsCard {
|
|
552
568
|
optional string name = 1; // Windows, Linux
|