@lansweeper/data-platform-outbound-grpc 0.1.112 → 0.1.113
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 +143 -0
- package/gen-proto/outbound_pb.js +1134 -1
- package/generated-go/outbound.pb.go +3720 -3384
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +30 -3
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.113",
|
|
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": "06e1040b071bce1d7738e35b29bfc7f71cce6c0a"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -272,6 +272,7 @@ message Computer {
|
|
|
272
272
|
repeated ComputerMacWifiController mac_wifi_controller = 34;
|
|
273
273
|
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
274
274
|
repeated ComputerMacNetworkLocation mac_network_location = 36;
|
|
275
|
+
optional ComputerMacSecureElements mac_secure_elements = 37;
|
|
275
276
|
|
|
276
277
|
|
|
277
278
|
// OS
|
|
@@ -1505,6 +1506,23 @@ message ComputerMacAccessibility {
|
|
|
1505
1506
|
optional string zoom_mode = 11;
|
|
1506
1507
|
}
|
|
1507
1508
|
|
|
1509
|
+
// Apple Pay - Secure Elements - macOS Only
|
|
1510
|
+
message ComputerMacSecureElements {
|
|
1511
|
+
optional string controller_firmware = 1;
|
|
1512
|
+
optional string controller_hardware = 2;
|
|
1513
|
+
optional string controller_info = 3;
|
|
1514
|
+
optional string controller_middleware = 4;
|
|
1515
|
+
optional string secure_elements_device = 5;
|
|
1516
|
+
optional string secure_elements_firmware = 6;
|
|
1517
|
+
optional string secure_elements_hardware = 7;
|
|
1518
|
+
optional string secure_elements_id = 8;
|
|
1519
|
+
optional bool secure_elements_restricted_mode = 9;
|
|
1520
|
+
optional string secure_elements_info = 10;
|
|
1521
|
+
optional string secure_elements_os_version = 11;
|
|
1522
|
+
optional string secure_elements_platform_id = 12;
|
|
1523
|
+
optional bool secure_elements_production_signed = 13;
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1508
1526
|
// Network Location Info from macOS, to be mapped from MacNetworkLocation. NetworkInterface message is shared.
|
|
1509
1527
|
message ComputerMacNetworkLocation {
|
|
1510
1528
|
optional string name = 1;
|
|
@@ -1513,17 +1531,26 @@ message ComputerMacNetworkLocation {
|
|
|
1513
1531
|
}
|
|
1514
1532
|
|
|
1515
1533
|
/**
|
|
1516
|
-
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
|
|
1534
|
+
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
|
|
1517
1535
|
**/
|
|
1518
1536
|
message SoundCard {
|
|
1519
|
-
optional string caption = 1; // Windows, Linux(name)
|
|
1537
|
+
optional string caption = 1; // Windows, Linux(name), Mac (name)
|
|
1520
1538
|
optional string device_id = 2; // Windows, Linux
|
|
1521
|
-
optional string manufacturer = 3; // Windows, Linux
|
|
1539
|
+
optional string manufacturer = 3; // Windows, Linux, mac(coreaudio_device_manufacturer)
|
|
1522
1540
|
|
|
1523
1541
|
optional string type = 4; // Linux
|
|
1524
1542
|
optional string subsystem_name = 5; // Linux
|
|
1525
1543
|
optional string subsystem_manufacturer = 6; // Linux
|
|
1526
1544
|
optional string parent = 7; // Linux
|
|
1545
|
+
|
|
1546
|
+
optional string input_source = 8; // macOS
|
|
1547
|
+
optional string output_source = 9; // macOS
|
|
1548
|
+
optional string device_srate = 10; // macOS
|
|
1549
|
+
optional string device_trasport = 11; // macOS
|
|
1550
|
+
|
|
1551
|
+
optional bool default_input_device = 12; // macOS
|
|
1552
|
+
optional bool default_output_device = 13; // macOS
|
|
1553
|
+
optional bool default_system_device = 14; // macOS
|
|
1527
1554
|
}
|
|
1528
1555
|
|
|
1529
1556
|
/**
|