@lansweeper/data-platform-outbound-grpc 0.1.105 → 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,10 @@ 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;
805
809
  clearMacWifiControllerList(): void;
806
810
  getMacWifiControllerList(): Array<ComputerMacWifiController>;
807
811
  setMacWifiControllerList(value: Array<ComputerMacWifiController>): Computer;
@@ -1006,6 +1010,7 @@ export namespace Computer {
1006
1010
  windowsDisplayControllerList: Array<ComputerWindowsDisplayController.AsObject>,
1007
1011
  windowsIdeControllerList: Array<ComputerWindowsIdeController.AsObject>,
1008
1012
  windowsDiskPartitionList: Array<ComputerWindowsDiskPartition.AsObject>,
1013
+ macBluetoothList: Array<ComputerMacBluetooth.AsObject>,
1009
1014
  macWifiControllerList: Array<ComputerMacWifiController.AsObject>,
1010
1015
  bios?: Bios.AsObject,
1011
1016
  osPatchList: Array<OperatingSystemPatch.AsObject>,
@@ -7405,6 +7410,152 @@ export namespace PcmciaController {
7405
7410
  }
7406
7411
  }
7407
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
+
7408
7559
  export class PortConnector extends jspb.Message {
7409
7560
  clearConnectorTypeList(): void;
7410
7561
  getConnectorTypeList(): Array<MappedValue>;