@lansweeper/data-platform-outbound-grpc 0.1.20 → 0.1.21

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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.19",
2
+ "version": "0.1.20",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
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": "e172271270bcd8e79998368fd344b6c35be464f5"
12
+ "gitHead": "df7a15e5fd5cb5e0cfd2afe10933fd9fbc006bfd"
13
13
  }
@@ -191,10 +191,10 @@ message HardwareInfo {
191
191
  optional string cpe = 21;
192
192
  optional int32 rank = 20;
193
193
 
194
- optional RawHardwareInfo raw = 24;
194
+ optional SpecHardwareInfo spec = 24;
195
195
  }
196
196
 
197
- message RawHardwareInfo {
197
+ message SpecHardwareInfo {
198
198
  optional string architecture = 1;
199
199
  optional string model = 2;
200
200
  optional string manufacturer = 3;
@@ -219,8 +219,8 @@ message OperatingSystemInfo {
219
219
 
220
220
  optional int32 rank = 8;
221
221
 
222
- oneof raw {
223
- WindowsRawOperatingSystemInfo windows = 32;
222
+ oneof spec {
223
+ WindowsOperatingSystemInfo windows = 32;
224
224
  }
225
225
  }
226
226
 
@@ -243,7 +243,7 @@ message OperatingSystemPatch {
243
243
 
244
244
  }
245
245
 
246
- message WindowsRawOperatingSystemInfo {
246
+ message WindowsOperatingSystemInfo {
247
247
  optional string version = 1;
248
248
  optional int32 service_pack = 2;
249
249
  optional string build = 3; // "WindowsVersion": "10.0.19045"
@@ -269,9 +269,9 @@ message WindowsRawOperatingSystemInfo {
269
269
  optional uint64 max_process_memory_size = 24;
270
270
  optional uint32 number_of_licensed_users = 25;
271
271
  optional string organization = 26;
272
- optional uint32 os_language = 27;
273
- optional uint32 os_product_suite = 28;
274
- optional uint32 os_type = 29;
272
+ optional MappedValue os_language = 27;
273
+ optional MappedValue os_product_suite = 28;
274
+ optional MappedValue os_type = 29;
275
275
  optional string plus_product_id = 30;
276
276
  optional string plus_version_number = 31;
277
277
  optional string registered_user = 32;
@@ -288,7 +288,7 @@ message WindowsRawOperatingSystemInfo {
288
288
  optional uint64 total_swap_space_size = 44;
289
289
  optional uint32 large_system_cache = 45;
290
290
  optional string other_type_description = 46;
291
- optional uint32 product_type = 47;
291
+ optional MappedValue product_type = 47;
292
292
  optional uint32 suite_mask = 48;
293
293
  optional string system_drive = 49;
294
294
  optional uint32 encryption_level = 50;
@@ -331,52 +331,52 @@ message NetworkInterface {
331
331
 
332
332
  /* Network IP address with IP and subnet */
333
333
  message NetIpAddress {
334
- string ip = 1;
335
- string subnet = 2;
334
+ string ip = 1;
335
+ string subnet = 2;
336
336
  }
337
337
 
338
338
  /** Processor **/
339
339
  message Processor {
340
- string name = 1 ;
341
- optional string address_sizes = 2 ; // Linux-only
342
- optional int32 address_width = 3 ; // Windows-only
343
- optional MappedValue architecture = 4 ; // Consolidate on-prem fields into single numeric list with translations
344
- optional int32 availability = 5 ; // Windows-only
345
- optional double bogo_mips = 6 ; // Standardize to numeric
346
- optional string byte_order = 7 ; // Linux-only
347
- optional string caption = 8 ; // Windows-only
348
- optional int32 current_clock_speed = 9 ; // Standardize values to numeric (MHz)
349
- optional int32 data_width = 10 ; // Windows-only
350
- optional string device_id = 11 ; // Windows-only
351
- optional int32 external_clock_mhz = 12 ; // Windows-only
352
- optional MappedValue family = 13 ; // Consolidate on-prem fields into single numeric list with translations
353
- optional string hypervisor_vendor = 14 ; // Linux-only
354
- optional int32 l1d_cache_size_kb = 15 ; // Linux-only, standardize to numeric (kilobytes)
355
- optional int32 l1i_cache_size_kb = 16 ; // Linux-only, standardize to numeric (kilobytes)
356
- optional int32 l2_cache_size_kb = 17 ; // Standardize values to int (kilobytes)
357
- optional int32 l2_cache_speed_mhz = 18 ; // Windows-only
358
- optional int32 l3_cache_size_kb = 19 ; // Linux-only, standardize to numeric (kilobytes)
359
- optional int32 level = 20 ; // Windows-only, unclear meaning
360
- optional int32 logical_cores_count = 21 ;
361
- optional string manufacturer = 22 ;
362
- optional int32 max_clock_speed_mhz = 23 ; // Standardize Linux values to int (MHz)
363
- optional int32 min_clock_speed_mhz = 24 ; // Linux-only, standardize to numeric (MHz)
364
- optional int32 model_number = 25 ; // Linux-only, standardize to numeric
365
- optional string op_modes = 26 ; // Linux-only
366
- optional int32 physical_cores_count = 27 ;
367
- optional string processor_id = 28 ; // Windows-only, probably not used much by customers due to its complexity
368
- optional MappedValue processor_type = 29 ; // Windows-only
369
- optional int32 revision = 30 ; // Windows-only
370
- optional string socket_designation = 31 ; // Windows-only
371
- optional int32 sockets = 32 ; // Linux-only
372
- optional MappedValue status = 33 ; // Windows-only
373
- optional int32 stepping = 34 ; // Consolidate on-prem fields into single numeric list
374
- optional int32 threads_per_physical_core_count = 35 ; // Linux-only
375
- optional string unique_id = 36 ; // Windows-only
376
- optional MappedValue upgrade_method = 37 ; // Windows-only
377
- optional string version = 38 ; // Windows-only
378
- optional string virtualization = 39 ; // Linux-only
379
- optional MappedValue voltage_capabilities = 40 ; // Windows-only
340
+ string name = 1 ;
341
+ optional string address_sizes = 2; // Linux-only
342
+ optional int32 address_width = 3; // Windows-only
343
+ optional MappedValue architecture = 4; // Consolidate on-prem fields into single numeric list with translations
344
+ optional int32 availability = 5; // Windows-only
345
+ optional double bogo_mips = 6; // Standardize to numeric
346
+ optional string byte_order = 7; // Linux-only
347
+ optional string caption = 8; // Windows-only
348
+ optional int32 current_clock_speed = 9; // Standardize values to numeric (MHz)
349
+ optional int32 data_width = 10; // Windows-only
350
+ optional string device_id = 11; // Windows-only
351
+ optional int32 external_clock_mhz = 12; // Windows-only
352
+ optional MappedValue family = 13; // Consolidate on-prem fields into single numeric list with translations
353
+ optional string hypervisor_vendor = 14; // Linux-only
354
+ optional int32 l1d_cache_size_kb = 15; // Linux-only, standardize to numeric (kilobytes)
355
+ optional int32 l1i_cache_size_kb = 16; // Linux-only, standardize to numeric (kilobytes)
356
+ optional int32 l2_cache_size_kb = 17; // Standardize values to int (kilobytes)
357
+ optional int32 l2_cache_speed_mhz = 18; // Windows-only
358
+ optional int32 l3_cache_size_kb = 19; // Linux-only, standardize to numeric (kilobytes)
359
+ optional int32 level = 20; // Windows-only, unclear meaning
360
+ optional int32 logical_cores_count = 21 ;
361
+ optional string manufacturer = 22 ;
362
+ optional int32 max_clock_speed_mhz = 23; // Standardize Linux values to int (MHz)
363
+ optional int32 min_clock_speed_mhz = 24; // Linux-only, standardize to numeric (MHz)
364
+ optional int32 model_number = 25; // Linux-only, standardize to numeric
365
+ optional string op_modes = 26; // Linux-only
366
+ optional int32 physical_cores_count = 27 ;
367
+ optional string processor_id = 28; // Windows-only, probably not used much by customers due to its complexity
368
+ optional MappedValue processor_type = 29; // Windows-only
369
+ optional int32 revision = 30; // Windows-only
370
+ optional string socket_designation = 31; // Windows-only
371
+ optional int32 sockets = 32; // Linux-only
372
+ optional MappedValue status = 33; // Windows-only
373
+ optional int32 stepping = 34; // Consolidate on-prem fields into single numeric list
374
+ optional int32 threads_per_physical_core_count = 35; // Linux-only
375
+ optional string unique_id = 36; // Windows-only
376
+ optional MappedValue upgrade_method = 37; // Windows-only
377
+ optional string version = 38; // Windows-only
378
+ optional string virtualization = 39; // Linux-only
379
+ optional MappedValue voltage_capabilities = 40; // Windows-only
380
380
  }
381
381
 
382
382
  /**
@@ -384,8 +384,8 @@ message Processor {
384
384
  * Typical in WMI fields.
385
385
  */
386
386
  message MappedValue {
387
- int64 value = 1;
388
- optional string name = 2;
387
+ int64 value = 1;
388
+ optional string name = 2;
389
389
  }
390
390
 
391
391
  /* Monitor Inventory with list of connected monitors */
@@ -409,12 +409,12 @@ message Monitor {
409
409
  optional string serial_number = 5;
410
410
  google.protobuf.Timestamp manufacturer_date = 6;
411
411
 
412
- oneof raw {
413
- WindowsRawMonitorInfo windows = 20;
412
+ oneof spec {
413
+ WindowsMonitorInfo windows = 20;
414
414
  }
415
415
  }
416
416
 
417
- message WindowsRawMonitorInfo {
417
+ message WindowsMonitorInfo {
418
418
  string model = 1;
419
419
  optional string pnp_device_id = 2;
420
420
  optional string serial_number = 3;