@lansweeper/data-platform-outbound-grpc 0.1.38 → 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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +210 -0
- package/gen-proto/outbound_pb.js +1690 -1
- package/generated-go/outbound.pb.go +2638 -2130
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +48 -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,6 +132,10 @@ 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;
|
|
136
|
+
repeated Keyboard keyboard = 28;
|
|
137
|
+
repeated PointingDevice pointing_device = 29;
|
|
138
|
+
|
|
135
139
|
|
|
136
140
|
optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
|
|
137
141
|
|
|
@@ -515,7 +519,50 @@ message HardDrive {
|
|
|
515
519
|
}
|
|
516
520
|
|
|
517
521
|
/**
|
|
518
|
-
*
|
|
522
|
+
* Keyboard for computers: Windows.Keyboards
|
|
523
|
+
**/
|
|
524
|
+
message Keyboard {
|
|
525
|
+
optional MappedValue config_manager_error_code = 1;
|
|
526
|
+
optional bool config_manager_user_config = 2;
|
|
527
|
+
optional string description = 3;
|
|
528
|
+
optional string device_id = 4;
|
|
529
|
+
optional string layout = 5;
|
|
530
|
+
optional int32 number_of_function_keys = 6;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice
|
|
535
|
+
**/
|
|
536
|
+
message PointingDevice {
|
|
537
|
+
optional string caption = 1;
|
|
538
|
+
optional string device_id = 2;
|
|
539
|
+
optional MappedValue device_interface = 3;
|
|
540
|
+
optional int32 double_speed_threshold = 4;
|
|
541
|
+
optional MappedValue handedness = 5;
|
|
542
|
+
optional string inf_file_name = 6;
|
|
543
|
+
optional string inf_section = 7;
|
|
544
|
+
optional string manufacturer = 8;
|
|
545
|
+
optional int32 number_of_buttons = 9;
|
|
546
|
+
optional MappedValue pointing_type = 10;
|
|
547
|
+
optional int32 quad_speed_threshold = 11;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/**
|
|
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)
|
|
519
566
|
**/
|
|
520
567
|
message GraphicsCard {
|
|
521
568
|
optional string name = 1; // Windows, Linux
|