@lansweeper/data-platform-outbound-grpc 0.1.106 → 0.1.107
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 +71 -0
- package/gen-proto/outbound_pb.js +532 -2
- package/generated-go/outbound.pb.go +4277 -4062
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +12 -0
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.107",
|
|
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": "41b6bc123beef65121044b96cc32bbb9bf75bf8a"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -1355,6 +1355,12 @@ message Driver {
|
|
|
1355
1355
|
WindowsPnpSignedDriver win_pnp = 2;
|
|
1356
1356
|
WindowsPrinterDriver win_printer = 3;
|
|
1357
1357
|
MacOsKernelExtension mac_kernel_extension = 4;
|
|
1358
|
+
MacPrinterSoftwareItem mac_image_capture_devices = 5;
|
|
1359
|
+
MacPrinterSoftwareItem mac_image_capture_support = 6;
|
|
1360
|
+
MacPrinterSoftwareItem mac_library_extensions = 7;
|
|
1361
|
+
MacPrinterSoftwareItem mac_ppds = 8;
|
|
1362
|
+
MacPrinterSoftwareItem mac_printers = 9;
|
|
1363
|
+
MacPrinterSoftwareItem mac_system_library_extensions = 10;
|
|
1358
1364
|
}
|
|
1359
1365
|
|
|
1360
1366
|
optional string name = 100;
|
|
@@ -2422,6 +2428,12 @@ message ComputerMacOsFramework {
|
|
|
2422
2428
|
optional string version = 9;
|
|
2423
2429
|
}
|
|
2424
2430
|
|
|
2431
|
+
// macOS Printer Software. To be mapped from MacPrinterSoftware
|
|
2432
|
+
message MacPrinterSoftwareItem {
|
|
2433
|
+
optional string info_path = 1;
|
|
2434
|
+
optional string info_version = 2;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2425
2437
|
/**
|
|
2426
2438
|
* A Mapped value is a numeric field that can optionally have a text looked up value.
|
|
2427
2439
|
* Typical in WMI fields.
|