@lansweeper/data-platform-outbound-grpc 0.1.104 → 0.1.106

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.
@@ -802,6 +802,14 @@ export class Computer extends jspb.Message {
802
802
  getWindowsDiskPartitionList(): Array<ComputerWindowsDiskPartition>;
803
803
  setWindowsDiskPartitionList(value: Array<ComputerWindowsDiskPartition>): Computer;
804
804
  addWindowsDiskPartition(value?: ComputerWindowsDiskPartition, index?: number): ComputerWindowsDiskPartition;
805
+ clearMacBluetoothList(): void;
806
+ getMacBluetoothList(): Array<ComputerMacBluetooth>;
807
+ setMacBluetoothList(value: Array<ComputerMacBluetooth>): Computer;
808
+ addMacBluetooth(value?: ComputerMacBluetooth, index?: number): ComputerMacBluetooth;
809
+ clearMacWifiControllerList(): void;
810
+ getMacWifiControllerList(): Array<ComputerMacWifiController>;
811
+ setMacWifiControllerList(value: Array<ComputerMacWifiController>): Computer;
812
+ addMacWifiController(value?: ComputerMacWifiController, index?: number): ComputerMacWifiController;
805
813
 
806
814
  hasBios(): boolean;
807
815
  clearBios(): void;
@@ -1002,6 +1010,8 @@ export namespace Computer {
1002
1010
  windowsDisplayControllerList: Array<ComputerWindowsDisplayController.AsObject>,
1003
1011
  windowsIdeControllerList: Array<ComputerWindowsIdeController.AsObject>,
1004
1012
  windowsDiskPartitionList: Array<ComputerWindowsDiskPartition.AsObject>,
1013
+ macBluetoothList: Array<ComputerMacBluetooth.AsObject>,
1014
+ macWifiControllerList: Array<ComputerMacWifiController.AsObject>,
1005
1015
  bios?: Bios.AsObject,
1006
1016
  osPatchList: Array<OperatingSystemPatch.AsObject>,
1007
1017
  osFeatureList: Array<OperatingSystemFeature.AsObject>,
@@ -7400,6 +7410,152 @@ export namespace PcmciaController {
7400
7410
  }
7401
7411
  }
7402
7412
 
7413
+ export class ComputerMacBluetooth extends jspb.Message {
7414
+
7415
+ hasAddress(): boolean;
7416
+ clearAddress(): void;
7417
+ getAddress(): string | undefined;
7418
+ setAddress(value: string): ComputerMacBluetooth;
7419
+
7420
+ hasFirmwareVersion(): boolean;
7421
+ clearFirmwareVersion(): void;
7422
+ getFirmwareVersion(): string | undefined;
7423
+ setFirmwareVersion(value: string): ComputerMacBluetooth;
7424
+
7425
+ hasDiscoverable(): boolean;
7426
+ clearDiscoverable(): void;
7427
+ getDiscoverable(): boolean | undefined;
7428
+ setDiscoverable(value: boolean): ComputerMacBluetooth;
7429
+
7430
+ hasChipSet(): boolean;
7431
+ clearChipSet(): void;
7432
+ getChipSet(): string | undefined;
7433
+ setChipSet(value: string): ComputerMacBluetooth;
7434
+
7435
+ hasProductId(): boolean;
7436
+ clearProductId(): void;
7437
+ getProductId(): string | undefined;
7438
+ setProductId(value: string): ComputerMacBluetooth;
7439
+
7440
+ hasControllerTurnedOn(): boolean;
7441
+ clearControllerTurnedOn(): void;
7442
+ getControllerTurnedOn(): boolean | undefined;
7443
+ setControllerTurnedOn(value: boolean): ComputerMacBluetooth;
7444
+
7445
+ hasSupportedServices(): boolean;
7446
+ clearSupportedServices(): void;
7447
+ getSupportedServices(): string | undefined;
7448
+ setSupportedServices(value: string): ComputerMacBluetooth;
7449
+
7450
+ hasTransport(): boolean;
7451
+ clearTransport(): void;
7452
+ getTransport(): string | undefined;
7453
+ setTransport(value: string): ComputerMacBluetooth;
7454
+
7455
+ hasVendorId(): boolean;
7456
+ clearVendorId(): void;
7457
+ getVendorId(): string | undefined;
7458
+ setVendorId(value: string): ComputerMacBluetooth;
7459
+ clearDevicesConnectedList(): void;
7460
+ getDevicesConnectedList(): Array<BluetoothDevice>;
7461
+ setDevicesConnectedList(value: Array<BluetoothDevice>): ComputerMacBluetooth;
7462
+ addDevicesConnected(value?: BluetoothDevice, index?: number): BluetoothDevice;
7463
+ clearDevicesNotConnectedList(): void;
7464
+ getDevicesNotConnectedList(): Array<BluetoothDevice>;
7465
+ setDevicesNotConnectedList(value: Array<BluetoothDevice>): ComputerMacBluetooth;
7466
+ addDevicesNotConnected(value?: BluetoothDevice, index?: number): BluetoothDevice;
7467
+
7468
+ serializeBinary(): Uint8Array;
7469
+ toObject(includeInstance?: boolean): ComputerMacBluetooth.AsObject;
7470
+ static toObject(includeInstance: boolean, msg: ComputerMacBluetooth): ComputerMacBluetooth.AsObject;
7471
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
7472
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
7473
+ static serializeBinaryToWriter(message: ComputerMacBluetooth, writer: jspb.BinaryWriter): void;
7474
+ static deserializeBinary(bytes: Uint8Array): ComputerMacBluetooth;
7475
+ static deserializeBinaryFromReader(message: ComputerMacBluetooth, reader: jspb.BinaryReader): ComputerMacBluetooth;
7476
+ }
7477
+
7478
+ export namespace ComputerMacBluetooth {
7479
+ export type AsObject = {
7480
+ address?: string,
7481
+ firmwareVersion?: string,
7482
+ discoverable?: boolean,
7483
+ chipSet?: string,
7484
+ productId?: string,
7485
+ controllerTurnedOn?: boolean,
7486
+ supportedServices?: string,
7487
+ transport?: string,
7488
+ vendorId?: string,
7489
+ devicesConnectedList: Array<BluetoothDevice.AsObject>,
7490
+ devicesNotConnectedList: Array<BluetoothDevice.AsObject>,
7491
+ }
7492
+ }
7493
+
7494
+ export class BluetoothDevice extends jspb.Message {
7495
+
7496
+ hasAddress(): boolean;
7497
+ clearAddress(): void;
7498
+ getAddress(): string | undefined;
7499
+ setAddress(value: string): BluetoothDevice;
7500
+
7501
+ hasFirmwareVersion(): boolean;
7502
+ clearFirmwareVersion(): void;
7503
+ getFirmwareVersion(): string | undefined;
7504
+ setFirmwareVersion(value: string): BluetoothDevice;
7505
+
7506
+ hasMinorType(): boolean;
7507
+ clearMinorType(): void;
7508
+ getMinorType(): string | undefined;
7509
+ setMinorType(value: string): BluetoothDevice;
7510
+
7511
+ hasProductId(): boolean;
7512
+ clearProductId(): void;
7513
+ getProductId(): string | undefined;
7514
+ setProductId(value: string): BluetoothDevice;
7515
+
7516
+ hasRssi(): boolean;
7517
+ clearRssi(): void;
7518
+ getRssi(): string | undefined;
7519
+ setRssi(value: string): BluetoothDevice;
7520
+
7521
+ hasServices(): boolean;
7522
+ clearServices(): void;
7523
+ getServices(): string | undefined;
7524
+ setServices(value: string): BluetoothDevice;
7525
+
7526
+ hasVendorId(): boolean;
7527
+ clearVendorId(): void;
7528
+ getVendorId(): string | undefined;
7529
+ setVendorId(value: string): BluetoothDevice;
7530
+
7531
+ hasName(): boolean;
7532
+ clearName(): void;
7533
+ getName(): string | undefined;
7534
+ setName(value: string): BluetoothDevice;
7535
+
7536
+ serializeBinary(): Uint8Array;
7537
+ toObject(includeInstance?: boolean): BluetoothDevice.AsObject;
7538
+ static toObject(includeInstance: boolean, msg: BluetoothDevice): BluetoothDevice.AsObject;
7539
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
7540
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
7541
+ static serializeBinaryToWriter(message: BluetoothDevice, writer: jspb.BinaryWriter): void;
7542
+ static deserializeBinary(bytes: Uint8Array): BluetoothDevice;
7543
+ static deserializeBinaryFromReader(message: BluetoothDevice, reader: jspb.BinaryReader): BluetoothDevice;
7544
+ }
7545
+
7546
+ export namespace BluetoothDevice {
7547
+ export type AsObject = {
7548
+ address?: string,
7549
+ firmwareVersion?: string,
7550
+ minorType?: string,
7551
+ productId?: string,
7552
+ rssi?: string,
7553
+ services?: string,
7554
+ vendorId?: string,
7555
+ name?: string,
7556
+ }
7557
+ }
7558
+
7403
7559
  export class PortConnector extends jspb.Message {
7404
7560
  clearConnectorTypeList(): void;
7405
7561
  getConnectorTypeList(): Array<MappedValue>;
@@ -10264,6 +10420,275 @@ export namespace WindowsMonitorInfo {
10264
10420
  }
10265
10421
  }
10266
10422
 
10423
+ export class ComputerMacWifiController extends jspb.Message {
10424
+ clearAirportInterfacesList(): void;
10425
+ getAirportInterfacesList(): Array<WiFiInterface>;
10426
+ setAirportInterfacesList(value: Array<WiFiInterface>): ComputerMacWifiController;
10427
+ addAirportInterfaces(value?: WiFiInterface, index?: number): WiFiInterface;
10428
+
10429
+ hasSoftwareInformation(): boolean;
10430
+ clearSoftwareInformation(): void;
10431
+ getSoftwareInformation(): WiFiSoftware | undefined;
10432
+ setSoftwareInformation(value?: WiFiSoftware): ComputerMacWifiController;
10433
+
10434
+ serializeBinary(): Uint8Array;
10435
+ toObject(includeInstance?: boolean): ComputerMacWifiController.AsObject;
10436
+ static toObject(includeInstance: boolean, msg: ComputerMacWifiController): ComputerMacWifiController.AsObject;
10437
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
10438
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
10439
+ static serializeBinaryToWriter(message: ComputerMacWifiController, writer: jspb.BinaryWriter): void;
10440
+ static deserializeBinary(bytes: Uint8Array): ComputerMacWifiController;
10441
+ static deserializeBinaryFromReader(message: ComputerMacWifiController, reader: jspb.BinaryReader): ComputerMacWifiController;
10442
+ }
10443
+
10444
+ export namespace ComputerMacWifiController {
10445
+ export type AsObject = {
10446
+ airportInterfacesList: Array<WiFiInterface.AsObject>,
10447
+ softwareInformation?: WiFiSoftware.AsObject,
10448
+ }
10449
+ }
10450
+
10451
+ export class WiFiInterface extends jspb.Message {
10452
+
10453
+ hasName(): boolean;
10454
+ clearName(): void;
10455
+ getName(): string | undefined;
10456
+ setName(value: string): WiFiInterface;
10457
+
10458
+ hasAirdropChannel(): boolean;
10459
+ clearAirdropChannel(): void;
10460
+ getAirdropChannel(): string | undefined;
10461
+ setAirdropChannel(value: string): WiFiInterface;
10462
+
10463
+ hasAirdropSupported(): boolean;
10464
+ clearAirdropSupported(): void;
10465
+ getAirdropSupported(): string | undefined;
10466
+ setAirdropSupported(value: string): WiFiInterface;
10467
+
10468
+ hasAutoUnlockSupported(): boolean;
10469
+ clearAutoUnlockSupported(): void;
10470
+ getAutoUnlockSupported(): string | undefined;
10471
+ setAutoUnlockSupported(value: string): WiFiInterface;
10472
+
10473
+ hasCardType(): boolean;
10474
+ clearCardType(): void;
10475
+ getCardType(): string | undefined;
10476
+ setCardType(value: string): WiFiInterface;
10477
+
10478
+ hasCountryCode(): boolean;
10479
+ clearCountryCode(): void;
10480
+ getCountryCode(): string | undefined;
10481
+ setCountryCode(value: string): WiFiInterface;
10482
+
10483
+ hasFirmwareVersion(): boolean;
10484
+ clearFirmwareVersion(): void;
10485
+ getFirmwareVersion(): string | undefined;
10486
+ setFirmwareVersion(value: string): WiFiInterface;
10487
+
10488
+ hasLocale(): boolean;
10489
+ clearLocale(): void;
10490
+ getLocale(): string | undefined;
10491
+ setLocale(value: string): WiFiInterface;
10492
+
10493
+ hasMacAddress(): boolean;
10494
+ clearMacAddress(): void;
10495
+ getMacAddress(): string | undefined;
10496
+ setMacAddress(value: string): WiFiInterface;
10497
+
10498
+ hasStatusInformation(): boolean;
10499
+ clearStatusInformation(): void;
10500
+ getStatusInformation(): string | undefined;
10501
+ setStatusInformation(value: string): WiFiInterface;
10502
+ clearSupportedChannelsList(): void;
10503
+ getSupportedChannelsList(): Array<string>;
10504
+ setSupportedChannelsList(value: Array<string>): WiFiInterface;
10505
+ addSupportedChannels(value: string, index?: number): string;
10506
+
10507
+ hasSupportedPhyModes(): boolean;
10508
+ clearSupportedPhyModes(): void;
10509
+ getSupportedPhyModes(): string | undefined;
10510
+ setSupportedPhyModes(value: string): WiFiInterface;
10511
+
10512
+ hasWakeOnWirelessSupported(): boolean;
10513
+ clearWakeOnWirelessSupported(): void;
10514
+ getWakeOnWirelessSupported(): string | undefined;
10515
+ setWakeOnWirelessSupported(value: string): WiFiInterface;
10516
+
10517
+ hasCurrentNetwork(): boolean;
10518
+ clearCurrentNetwork(): void;
10519
+ getCurrentNetwork(): WiFiNetwork | undefined;
10520
+ setCurrentNetwork(value?: WiFiNetwork): WiFiInterface;
10521
+ clearOtherLocalNetworksList(): void;
10522
+ getOtherLocalNetworksList(): Array<WiFiNetwork>;
10523
+ setOtherLocalNetworksList(value: Array<WiFiNetwork>): WiFiInterface;
10524
+ addOtherLocalNetworks(value?: WiFiNetwork, index?: number): WiFiNetwork;
10525
+
10526
+ serializeBinary(): Uint8Array;
10527
+ toObject(includeInstance?: boolean): WiFiInterface.AsObject;
10528
+ static toObject(includeInstance: boolean, msg: WiFiInterface): WiFiInterface.AsObject;
10529
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
10530
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
10531
+ static serializeBinaryToWriter(message: WiFiInterface, writer: jspb.BinaryWriter): void;
10532
+ static deserializeBinary(bytes: Uint8Array): WiFiInterface;
10533
+ static deserializeBinaryFromReader(message: WiFiInterface, reader: jspb.BinaryReader): WiFiInterface;
10534
+ }
10535
+
10536
+ export namespace WiFiInterface {
10537
+ export type AsObject = {
10538
+ name?: string,
10539
+ airdropChannel?: string,
10540
+ airdropSupported?: string,
10541
+ autoUnlockSupported?: string,
10542
+ cardType?: string,
10543
+ countryCode?: string,
10544
+ firmwareVersion?: string,
10545
+ locale?: string,
10546
+ macAddress?: string,
10547
+ statusInformation?: string,
10548
+ supportedChannelsList: Array<string>,
10549
+ supportedPhyModes?: string,
10550
+ wakeOnWirelessSupported?: string,
10551
+ currentNetwork?: WiFiNetwork.AsObject,
10552
+ otherLocalNetworksList: Array<WiFiNetwork.AsObject>,
10553
+ }
10554
+ }
10555
+
10556
+ export class WiFiNetwork extends jspb.Message {
10557
+
10558
+ hasName(): boolean;
10559
+ clearName(): void;
10560
+ getName(): string | undefined;
10561
+ setName(value: string): WiFiNetwork;
10562
+
10563
+ hasNetworkBssid(): boolean;
10564
+ clearNetworkBssid(): void;
10565
+ getNetworkBssid(): string | undefined;
10566
+ setNetworkBssid(value: string): WiFiNetwork;
10567
+
10568
+ hasNetworkChannel(): boolean;
10569
+ clearNetworkChannel(): void;
10570
+ getNetworkChannel(): string | undefined;
10571
+ setNetworkChannel(value: string): WiFiNetwork;
10572
+
10573
+ hasNetworkCountryCode(): boolean;
10574
+ clearNetworkCountryCode(): void;
10575
+ getNetworkCountryCode(): string | undefined;
10576
+ setNetworkCountryCode(value: string): WiFiNetwork;
10577
+
10578
+ hasNetworkMcsIndex(): boolean;
10579
+ clearNetworkMcsIndex(): void;
10580
+ getNetworkMcsIndex(): string | undefined;
10581
+ setNetworkMcsIndex(value: string): WiFiNetwork;
10582
+
10583
+ hasNetworkPhyMode(): boolean;
10584
+ clearNetworkPhyMode(): void;
10585
+ getNetworkPhyMode(): string | undefined;
10586
+ setNetworkPhyMode(value: string): WiFiNetwork;
10587
+
10588
+ hasNetworkTransmitRate(): boolean;
10589
+ clearNetworkTransmitRate(): void;
10590
+ getNetworkTransmitRate(): string | undefined;
10591
+ setNetworkTransmitRate(value: string): WiFiNetwork;
10592
+
10593
+ hasNetworkType(): boolean;
10594
+ clearNetworkType(): void;
10595
+ getNetworkType(): string | undefined;
10596
+ setNetworkType(value: string): WiFiNetwork;
10597
+
10598
+ hasSecurityMode(): boolean;
10599
+ clearSecurityMode(): void;
10600
+ getSecurityMode(): string | undefined;
10601
+ setSecurityMode(value: string): WiFiNetwork;
10602
+
10603
+ hasSignalNoise(): boolean;
10604
+ clearSignalNoise(): void;
10605
+ getSignalNoise(): string | undefined;
10606
+ setSignalNoise(value: string): WiFiNetwork;
10607
+
10608
+ serializeBinary(): Uint8Array;
10609
+ toObject(includeInstance?: boolean): WiFiNetwork.AsObject;
10610
+ static toObject(includeInstance: boolean, msg: WiFiNetwork): WiFiNetwork.AsObject;
10611
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
10612
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
10613
+ static serializeBinaryToWriter(message: WiFiNetwork, writer: jspb.BinaryWriter): void;
10614
+ static deserializeBinary(bytes: Uint8Array): WiFiNetwork;
10615
+ static deserializeBinaryFromReader(message: WiFiNetwork, reader: jspb.BinaryReader): WiFiNetwork;
10616
+ }
10617
+
10618
+ export namespace WiFiNetwork {
10619
+ export type AsObject = {
10620
+ name?: string,
10621
+ networkBssid?: string,
10622
+ networkChannel?: string,
10623
+ networkCountryCode?: string,
10624
+ networkMcsIndex?: string,
10625
+ networkPhyMode?: string,
10626
+ networkTransmitRate?: string,
10627
+ networkType?: string,
10628
+ securityMode?: string,
10629
+ signalNoise?: string,
10630
+ }
10631
+ }
10632
+
10633
+ export class WiFiSoftware extends jspb.Message {
10634
+
10635
+ hasAirportUtilityVersion(): boolean;
10636
+ clearAirportUtilityVersion(): void;
10637
+ getAirportUtilityVersion(): string | undefined;
10638
+ setAirportUtilityVersion(value: string): WiFiSoftware;
10639
+
10640
+ hasCoreWlanVersion(): boolean;
10641
+ clearCoreWlanVersion(): void;
10642
+ getCoreWlanVersion(): string | undefined;
10643
+ setCoreWlanVersion(value: string): WiFiSoftware;
10644
+
10645
+ hasCoreWlanKitVersion(): boolean;
10646
+ clearCoreWlanKitVersion(): void;
10647
+ getCoreWlanKitVersion(): string | undefined;
10648
+ setCoreWlanKitVersion(value: string): WiFiSoftware;
10649
+
10650
+ hasDiagnosticsVersion(): boolean;
10651
+ clearDiagnosticsVersion(): void;
10652
+ getDiagnosticsVersion(): string | undefined;
10653
+ setDiagnosticsVersion(value: string): WiFiSoftware;
10654
+
10655
+ hasIo80211FamilyVersion(): boolean;
10656
+ clearIo80211FamilyVersion(): void;
10657
+ getIo80211FamilyVersion(): string | undefined;
10658
+ setIo80211FamilyVersion(value: string): WiFiSoftware;
10659
+
10660
+ hasMenuExtraVersion(): boolean;
10661
+ clearMenuExtraVersion(): void;
10662
+ getMenuExtraVersion(): string | undefined;
10663
+ setMenuExtraVersion(value: string): WiFiSoftware;
10664
+
10665
+ hasSystemInformationVersion(): boolean;
10666
+ clearSystemInformationVersion(): void;
10667
+ getSystemInformationVersion(): string | undefined;
10668
+ setSystemInformationVersion(value: string): WiFiSoftware;
10669
+
10670
+ serializeBinary(): Uint8Array;
10671
+ toObject(includeInstance?: boolean): WiFiSoftware.AsObject;
10672
+ static toObject(includeInstance: boolean, msg: WiFiSoftware): WiFiSoftware.AsObject;
10673
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
10674
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
10675
+ static serializeBinaryToWriter(message: WiFiSoftware, writer: jspb.BinaryWriter): void;
10676
+ static deserializeBinary(bytes: Uint8Array): WiFiSoftware;
10677
+ static deserializeBinaryFromReader(message: WiFiSoftware, reader: jspb.BinaryReader): WiFiSoftware;
10678
+ }
10679
+
10680
+ export namespace WiFiSoftware {
10681
+ export type AsObject = {
10682
+ airportUtilityVersion?: string,
10683
+ coreWlanVersion?: string,
10684
+ coreWlanKitVersion?: string,
10685
+ diagnosticsVersion?: string,
10686
+ io80211FamilyVersion?: string,
10687
+ menuExtraVersion?: string,
10688
+ systemInformationVersion?: string,
10689
+ }
10690
+ }
10691
+
10267
10692
  export class AntivirusSoftware extends jspb.Message {
10268
10693
 
10269
10694
  hasName(): boolean;