@lansweeper/data-platform-outbound-grpc 0.1.48 → 0.1.50
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 +471 -0
- package/gen-proto/outbound_pb.js +3809 -113
- package/generated-go/outbound.pb.go +3691 -2640
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +97 -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.50",
|
|
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": "fa1ace9c474611b5c2e2699673f7f702694acd61"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -134,6 +134,7 @@ message Asset {
|
|
|
134
134
|
optional NetworkInterfaces network_interfaces = 11;
|
|
135
135
|
|
|
136
136
|
repeated OperatingSystemPatch os_patch = 13;
|
|
137
|
+
repeated OperatingSystemFeature os_feature = 37;
|
|
137
138
|
|
|
138
139
|
repeated Processor processor = 15;
|
|
139
140
|
optional Chassis chassis = 18;
|
|
@@ -147,6 +148,7 @@ message Asset {
|
|
|
147
148
|
repeated PointingDevice pointing_device = 29;
|
|
148
149
|
repeated AutoRunCommand auto_run_command = 34;
|
|
149
150
|
optional BootConfig boot_config = 35;
|
|
151
|
+
repeated Driver driver = 36;
|
|
150
152
|
|
|
151
153
|
optional LastUser last_user = 31;
|
|
152
154
|
|
|
@@ -430,6 +432,13 @@ message WindowsOperatingSystemInfo {
|
|
|
430
432
|
optional uint32 data_execution_prevention_support_policy = 54;
|
|
431
433
|
}
|
|
432
434
|
|
|
435
|
+
|
|
436
|
+
/* OS Feature, i.e. WindowsFeature */
|
|
437
|
+
message OperatingSystemFeature {
|
|
438
|
+
string name = 1;
|
|
439
|
+
string caption = 2;
|
|
440
|
+
}
|
|
441
|
+
|
|
433
442
|
/* OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering */
|
|
434
443
|
message OperatingSystemPatch {
|
|
435
444
|
// from hot_fix_id, e.g.: "KB4570334"
|
|
@@ -617,6 +626,93 @@ message BootConfig {
|
|
|
617
626
|
optional string boot_mode = 8;
|
|
618
627
|
}
|
|
619
628
|
|
|
629
|
+
/**
|
|
630
|
+
* Driver: computer drivers.
|
|
631
|
+
*/
|
|
632
|
+
message Driver {
|
|
633
|
+
oneof driver {
|
|
634
|
+
WindowsSystemDriver win_sys = 1;
|
|
635
|
+
WindowsPnpSignedDriver win_pnp = 2;
|
|
636
|
+
WindowsPrinterDriver win_printer = 3;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
optional string name = 100;
|
|
640
|
+
optional string description = 101;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* WindowsSystemDriver: Windows.SystemDriver
|
|
645
|
+
*/
|
|
646
|
+
message WindowsSystemDriver {
|
|
647
|
+
optional bool accept_pause = 1;
|
|
648
|
+
optional bool accept_stop = 2;
|
|
649
|
+
optional bool desktop_interact = 3;
|
|
650
|
+
optional string error_control = 4;
|
|
651
|
+
optional int32 exit_code = 5;
|
|
652
|
+
optional string path_name = 6;
|
|
653
|
+
optional int32 service_specific_exit_code = 7;
|
|
654
|
+
optional string service_type= 8;
|
|
655
|
+
optional bool started = 9;
|
|
656
|
+
optional string start_mode = 10;
|
|
657
|
+
optional string start_name = 11;
|
|
658
|
+
optional string state = 12;
|
|
659
|
+
optional string status = 13;
|
|
660
|
+
optional int32 tag_id = 14;
|
|
661
|
+
optional string name = 15;
|
|
662
|
+
optional string description = 16;
|
|
663
|
+
optional string caption = 17;
|
|
664
|
+
optional string display_name = 18;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* WindowsPnpSignedDriver: Windows.PnpSignedDriver
|
|
669
|
+
*/
|
|
670
|
+
message WindowsPnpSignedDriver {
|
|
671
|
+
optional string compat_id = 1;
|
|
672
|
+
optional string device_id = 2;
|
|
673
|
+
optional string dev_loader = 3;
|
|
674
|
+
optional string driver_name = 4;
|
|
675
|
+
optional string friendly_name = 5;
|
|
676
|
+
google.protobuf.Timestamp driver_date = 6;
|
|
677
|
+
optional string driver_version = 7;
|
|
678
|
+
optional string hardware_id = 8;
|
|
679
|
+
optional string inf_name = 9;
|
|
680
|
+
optional bool is_signed = 10;
|
|
681
|
+
optional string location = 11;
|
|
682
|
+
optional string pdo = 12;
|
|
683
|
+
optional string manufacturer = 13;
|
|
684
|
+
optional string device_name = 14;
|
|
685
|
+
optional string device_class = 15;
|
|
686
|
+
optional string description = 16;
|
|
687
|
+
optional string signer = 17;
|
|
688
|
+
optional string driver_provider_name = 18;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* WindowsPrinterDriver: Windows.PrinterDriver
|
|
693
|
+
*/
|
|
694
|
+
message WindowsPrinterDriver {
|
|
695
|
+
optional string config_file = 1;
|
|
696
|
+
optional string data_file = 2;
|
|
697
|
+
optional string default_data_type = 3;
|
|
698
|
+
optional string driver_path = 4;
|
|
699
|
+
optional string file_path = 5;
|
|
700
|
+
optional string help_file = 6;
|
|
701
|
+
optional string monitor_name = 7;
|
|
702
|
+
optional string oem_url = 8;
|
|
703
|
+
optional int32 version = 9;
|
|
704
|
+
optional string driver_version = 10;
|
|
705
|
+
optional string driver_date = 11;
|
|
706
|
+
optional string hardware_id = 12;
|
|
707
|
+
optional string inf_path = 13;
|
|
708
|
+
optional string printer_environment = 14;
|
|
709
|
+
optional string print_processor = 15;
|
|
710
|
+
optional string name = 16;
|
|
711
|
+
optional string provider = 17;
|
|
712
|
+
optional string supported_platform = 18;
|
|
713
|
+
optional string manufacturer = 19;
|
|
714
|
+
}
|
|
715
|
+
|
|
620
716
|
/**
|
|
621
717
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
|
|
622
718
|
**/
|
|
@@ -652,7 +748,7 @@ message GraphicsCard {
|
|
|
652
748
|
optional bool is_monochrome = 15; // Windows
|
|
653
749
|
optional string manufacturer = 16; // Windows, Linux
|
|
654
750
|
optional int32 max_refresh_rate = 17; // Windows
|
|
655
|
-
optional
|
|
751
|
+
optional int64 memory = 18; // Windows
|
|
656
752
|
optional MappedValue memory_type = 19; // Windows
|
|
657
753
|
optional int32 min_refresh_rate = 20; // Windows
|
|
658
754
|
optional string pci_type = 21; // Linux
|