@lansweeper/data-platform-outbound-grpc 0.1.103 → 0.1.105
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +335 -0
- package/gen-proto/outbound_pb.js +2711 -2
- package/generated-go/outbound.pb.go +9025 -8204
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +66 -0
|
@@ -493,6 +493,10 @@ export class Asset extends jspb.Message {
|
|
|
493
493
|
clearPortScan(): void;
|
|
494
494
|
getPortScan(): PortScan | undefined;
|
|
495
495
|
setPortScan(value?: PortScan): Asset;
|
|
496
|
+
clearWarrantyInfoList(): void;
|
|
497
|
+
getWarrantyInfoList(): Array<WarrantyInfo>;
|
|
498
|
+
setWarrantyInfoList(value: Array<WarrantyInfo>): Asset;
|
|
499
|
+
addWarrantyInfo(value?: WarrantyInfo, index?: number): WarrantyInfo;
|
|
496
500
|
|
|
497
501
|
hasComputer(): boolean;
|
|
498
502
|
clearComputer(): void;
|
|
@@ -547,6 +551,7 @@ export namespace Asset {
|
|
|
547
551
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
548
552
|
networkProtocols?: NetworkProtocols.AsObject,
|
|
549
553
|
portScan?: PortScan.AsObject,
|
|
554
|
+
warrantyInfoList: Array<WarrantyInfo.AsObject>,
|
|
550
555
|
computer?: Computer.AsObject,
|
|
551
556
|
otModule?: OtModule.AsObject,
|
|
552
557
|
cloud?: CloudEntity.AsObject,
|
|
@@ -605,6 +610,62 @@ export namespace AssetChangeEvent {
|
|
|
605
610
|
|
|
606
611
|
}
|
|
607
612
|
|
|
613
|
+
export class WarrantyInfo extends jspb.Message {
|
|
614
|
+
|
|
615
|
+
hasTimestamp(): boolean;
|
|
616
|
+
clearTimestamp(): void;
|
|
617
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
618
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): WarrantyInfo;
|
|
619
|
+
|
|
620
|
+
hasStartDate(): boolean;
|
|
621
|
+
clearStartDate(): void;
|
|
622
|
+
getStartDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
623
|
+
setStartDate(value?: google_protobuf_timestamp_pb.Timestamp): WarrantyInfo;
|
|
624
|
+
|
|
625
|
+
hasEndDate(): boolean;
|
|
626
|
+
clearEndDate(): void;
|
|
627
|
+
getEndDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
628
|
+
setEndDate(value?: google_protobuf_timestamp_pb.Timestamp): WarrantyInfo;
|
|
629
|
+
|
|
630
|
+
hasShipDate(): boolean;
|
|
631
|
+
clearShipDate(): void;
|
|
632
|
+
getShipDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
633
|
+
setShipDate(value?: google_protobuf_timestamp_pb.Timestamp): WarrantyInfo;
|
|
634
|
+
|
|
635
|
+
hasServiceType(): boolean;
|
|
636
|
+
clearServiceType(): void;
|
|
637
|
+
getServiceType(): string | undefined;
|
|
638
|
+
setServiceType(value: string): WarrantyInfo;
|
|
639
|
+
|
|
640
|
+
hasPurchaseCountry(): boolean;
|
|
641
|
+
clearPurchaseCountry(): void;
|
|
642
|
+
getPurchaseCountry(): string | undefined;
|
|
643
|
+
setPurchaseCountry(value: string): WarrantyInfo;
|
|
644
|
+
getIsReliable(): boolean;
|
|
645
|
+
setIsReliable(value: boolean): WarrantyInfo;
|
|
646
|
+
|
|
647
|
+
serializeBinary(): Uint8Array;
|
|
648
|
+
toObject(includeInstance?: boolean): WarrantyInfo.AsObject;
|
|
649
|
+
static toObject(includeInstance: boolean, msg: WarrantyInfo): WarrantyInfo.AsObject;
|
|
650
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
651
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
652
|
+
static serializeBinaryToWriter(message: WarrantyInfo, writer: jspb.BinaryWriter): void;
|
|
653
|
+
static deserializeBinary(bytes: Uint8Array): WarrantyInfo;
|
|
654
|
+
static deserializeBinaryFromReader(message: WarrantyInfo, reader: jspb.BinaryReader): WarrantyInfo;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
export namespace WarrantyInfo {
|
|
658
|
+
export type AsObject = {
|
|
659
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
660
|
+
startDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
661
|
+
endDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
662
|
+
shipDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
663
|
+
serviceType?: string,
|
|
664
|
+
purchaseCountry?: string,
|
|
665
|
+
isReliable: boolean,
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
|
|
608
669
|
export class Computer extends jspb.Message {
|
|
609
670
|
|
|
610
671
|
hasChassis(): boolean;
|
|
@@ -741,6 +802,10 @@ export class Computer extends jspb.Message {
|
|
|
741
802
|
getWindowsDiskPartitionList(): Array<ComputerWindowsDiskPartition>;
|
|
742
803
|
setWindowsDiskPartitionList(value: Array<ComputerWindowsDiskPartition>): Computer;
|
|
743
804
|
addWindowsDiskPartition(value?: ComputerWindowsDiskPartition, index?: number): ComputerWindowsDiskPartition;
|
|
805
|
+
clearMacWifiControllerList(): void;
|
|
806
|
+
getMacWifiControllerList(): Array<ComputerMacWifiController>;
|
|
807
|
+
setMacWifiControllerList(value: Array<ComputerMacWifiController>): Computer;
|
|
808
|
+
addMacWifiController(value?: ComputerMacWifiController, index?: number): ComputerMacWifiController;
|
|
744
809
|
|
|
745
810
|
hasBios(): boolean;
|
|
746
811
|
clearBios(): void;
|
|
@@ -941,6 +1006,7 @@ export namespace Computer {
|
|
|
941
1006
|
windowsDisplayControllerList: Array<ComputerWindowsDisplayController.AsObject>,
|
|
942
1007
|
windowsIdeControllerList: Array<ComputerWindowsIdeController.AsObject>,
|
|
943
1008
|
windowsDiskPartitionList: Array<ComputerWindowsDiskPartition.AsObject>,
|
|
1009
|
+
macWifiControllerList: Array<ComputerMacWifiController.AsObject>,
|
|
944
1010
|
bios?: Bios.AsObject,
|
|
945
1011
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
946
1012
|
osFeatureList: Array<OperatingSystemFeature.AsObject>,
|
|
@@ -10203,6 +10269,275 @@ export namespace WindowsMonitorInfo {
|
|
|
10203
10269
|
}
|
|
10204
10270
|
}
|
|
10205
10271
|
|
|
10272
|
+
export class ComputerMacWifiController extends jspb.Message {
|
|
10273
|
+
clearAirportInterfacesList(): void;
|
|
10274
|
+
getAirportInterfacesList(): Array<WiFiInterface>;
|
|
10275
|
+
setAirportInterfacesList(value: Array<WiFiInterface>): ComputerMacWifiController;
|
|
10276
|
+
addAirportInterfaces(value?: WiFiInterface, index?: number): WiFiInterface;
|
|
10277
|
+
|
|
10278
|
+
hasSoftwareInformation(): boolean;
|
|
10279
|
+
clearSoftwareInformation(): void;
|
|
10280
|
+
getSoftwareInformation(): WiFiSoftware | undefined;
|
|
10281
|
+
setSoftwareInformation(value?: WiFiSoftware): ComputerMacWifiController;
|
|
10282
|
+
|
|
10283
|
+
serializeBinary(): Uint8Array;
|
|
10284
|
+
toObject(includeInstance?: boolean): ComputerMacWifiController.AsObject;
|
|
10285
|
+
static toObject(includeInstance: boolean, msg: ComputerMacWifiController): ComputerMacWifiController.AsObject;
|
|
10286
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10287
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10288
|
+
static serializeBinaryToWriter(message: ComputerMacWifiController, writer: jspb.BinaryWriter): void;
|
|
10289
|
+
static deserializeBinary(bytes: Uint8Array): ComputerMacWifiController;
|
|
10290
|
+
static deserializeBinaryFromReader(message: ComputerMacWifiController, reader: jspb.BinaryReader): ComputerMacWifiController;
|
|
10291
|
+
}
|
|
10292
|
+
|
|
10293
|
+
export namespace ComputerMacWifiController {
|
|
10294
|
+
export type AsObject = {
|
|
10295
|
+
airportInterfacesList: Array<WiFiInterface.AsObject>,
|
|
10296
|
+
softwareInformation?: WiFiSoftware.AsObject,
|
|
10297
|
+
}
|
|
10298
|
+
}
|
|
10299
|
+
|
|
10300
|
+
export class WiFiInterface extends jspb.Message {
|
|
10301
|
+
|
|
10302
|
+
hasName(): boolean;
|
|
10303
|
+
clearName(): void;
|
|
10304
|
+
getName(): string | undefined;
|
|
10305
|
+
setName(value: string): WiFiInterface;
|
|
10306
|
+
|
|
10307
|
+
hasAirdropChannel(): boolean;
|
|
10308
|
+
clearAirdropChannel(): void;
|
|
10309
|
+
getAirdropChannel(): string | undefined;
|
|
10310
|
+
setAirdropChannel(value: string): WiFiInterface;
|
|
10311
|
+
|
|
10312
|
+
hasAirdropSupported(): boolean;
|
|
10313
|
+
clearAirdropSupported(): void;
|
|
10314
|
+
getAirdropSupported(): string | undefined;
|
|
10315
|
+
setAirdropSupported(value: string): WiFiInterface;
|
|
10316
|
+
|
|
10317
|
+
hasAutoUnlockSupported(): boolean;
|
|
10318
|
+
clearAutoUnlockSupported(): void;
|
|
10319
|
+
getAutoUnlockSupported(): string | undefined;
|
|
10320
|
+
setAutoUnlockSupported(value: string): WiFiInterface;
|
|
10321
|
+
|
|
10322
|
+
hasCardType(): boolean;
|
|
10323
|
+
clearCardType(): void;
|
|
10324
|
+
getCardType(): string | undefined;
|
|
10325
|
+
setCardType(value: string): WiFiInterface;
|
|
10326
|
+
|
|
10327
|
+
hasCountryCode(): boolean;
|
|
10328
|
+
clearCountryCode(): void;
|
|
10329
|
+
getCountryCode(): string | undefined;
|
|
10330
|
+
setCountryCode(value: string): WiFiInterface;
|
|
10331
|
+
|
|
10332
|
+
hasFirmwareVersion(): boolean;
|
|
10333
|
+
clearFirmwareVersion(): void;
|
|
10334
|
+
getFirmwareVersion(): string | undefined;
|
|
10335
|
+
setFirmwareVersion(value: string): WiFiInterface;
|
|
10336
|
+
|
|
10337
|
+
hasLocale(): boolean;
|
|
10338
|
+
clearLocale(): void;
|
|
10339
|
+
getLocale(): string | undefined;
|
|
10340
|
+
setLocale(value: string): WiFiInterface;
|
|
10341
|
+
|
|
10342
|
+
hasMacAddress(): boolean;
|
|
10343
|
+
clearMacAddress(): void;
|
|
10344
|
+
getMacAddress(): string | undefined;
|
|
10345
|
+
setMacAddress(value: string): WiFiInterface;
|
|
10346
|
+
|
|
10347
|
+
hasStatusInformation(): boolean;
|
|
10348
|
+
clearStatusInformation(): void;
|
|
10349
|
+
getStatusInformation(): string | undefined;
|
|
10350
|
+
setStatusInformation(value: string): WiFiInterface;
|
|
10351
|
+
clearSupportedChannelsList(): void;
|
|
10352
|
+
getSupportedChannelsList(): Array<string>;
|
|
10353
|
+
setSupportedChannelsList(value: Array<string>): WiFiInterface;
|
|
10354
|
+
addSupportedChannels(value: string, index?: number): string;
|
|
10355
|
+
|
|
10356
|
+
hasSupportedPhyModes(): boolean;
|
|
10357
|
+
clearSupportedPhyModes(): void;
|
|
10358
|
+
getSupportedPhyModes(): string | undefined;
|
|
10359
|
+
setSupportedPhyModes(value: string): WiFiInterface;
|
|
10360
|
+
|
|
10361
|
+
hasWakeOnWirelessSupported(): boolean;
|
|
10362
|
+
clearWakeOnWirelessSupported(): void;
|
|
10363
|
+
getWakeOnWirelessSupported(): string | undefined;
|
|
10364
|
+
setWakeOnWirelessSupported(value: string): WiFiInterface;
|
|
10365
|
+
|
|
10366
|
+
hasCurrentNetwork(): boolean;
|
|
10367
|
+
clearCurrentNetwork(): void;
|
|
10368
|
+
getCurrentNetwork(): WiFiNetwork | undefined;
|
|
10369
|
+
setCurrentNetwork(value?: WiFiNetwork): WiFiInterface;
|
|
10370
|
+
clearOtherLocalNetworksList(): void;
|
|
10371
|
+
getOtherLocalNetworksList(): Array<WiFiNetwork>;
|
|
10372
|
+
setOtherLocalNetworksList(value: Array<WiFiNetwork>): WiFiInterface;
|
|
10373
|
+
addOtherLocalNetworks(value?: WiFiNetwork, index?: number): WiFiNetwork;
|
|
10374
|
+
|
|
10375
|
+
serializeBinary(): Uint8Array;
|
|
10376
|
+
toObject(includeInstance?: boolean): WiFiInterface.AsObject;
|
|
10377
|
+
static toObject(includeInstance: boolean, msg: WiFiInterface): WiFiInterface.AsObject;
|
|
10378
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10379
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10380
|
+
static serializeBinaryToWriter(message: WiFiInterface, writer: jspb.BinaryWriter): void;
|
|
10381
|
+
static deserializeBinary(bytes: Uint8Array): WiFiInterface;
|
|
10382
|
+
static deserializeBinaryFromReader(message: WiFiInterface, reader: jspb.BinaryReader): WiFiInterface;
|
|
10383
|
+
}
|
|
10384
|
+
|
|
10385
|
+
export namespace WiFiInterface {
|
|
10386
|
+
export type AsObject = {
|
|
10387
|
+
name?: string,
|
|
10388
|
+
airdropChannel?: string,
|
|
10389
|
+
airdropSupported?: string,
|
|
10390
|
+
autoUnlockSupported?: string,
|
|
10391
|
+
cardType?: string,
|
|
10392
|
+
countryCode?: string,
|
|
10393
|
+
firmwareVersion?: string,
|
|
10394
|
+
locale?: string,
|
|
10395
|
+
macAddress?: string,
|
|
10396
|
+
statusInformation?: string,
|
|
10397
|
+
supportedChannelsList: Array<string>,
|
|
10398
|
+
supportedPhyModes?: string,
|
|
10399
|
+
wakeOnWirelessSupported?: string,
|
|
10400
|
+
currentNetwork?: WiFiNetwork.AsObject,
|
|
10401
|
+
otherLocalNetworksList: Array<WiFiNetwork.AsObject>,
|
|
10402
|
+
}
|
|
10403
|
+
}
|
|
10404
|
+
|
|
10405
|
+
export class WiFiNetwork extends jspb.Message {
|
|
10406
|
+
|
|
10407
|
+
hasName(): boolean;
|
|
10408
|
+
clearName(): void;
|
|
10409
|
+
getName(): string | undefined;
|
|
10410
|
+
setName(value: string): WiFiNetwork;
|
|
10411
|
+
|
|
10412
|
+
hasNetworkBssid(): boolean;
|
|
10413
|
+
clearNetworkBssid(): void;
|
|
10414
|
+
getNetworkBssid(): string | undefined;
|
|
10415
|
+
setNetworkBssid(value: string): WiFiNetwork;
|
|
10416
|
+
|
|
10417
|
+
hasNetworkChannel(): boolean;
|
|
10418
|
+
clearNetworkChannel(): void;
|
|
10419
|
+
getNetworkChannel(): string | undefined;
|
|
10420
|
+
setNetworkChannel(value: string): WiFiNetwork;
|
|
10421
|
+
|
|
10422
|
+
hasNetworkCountryCode(): boolean;
|
|
10423
|
+
clearNetworkCountryCode(): void;
|
|
10424
|
+
getNetworkCountryCode(): string | undefined;
|
|
10425
|
+
setNetworkCountryCode(value: string): WiFiNetwork;
|
|
10426
|
+
|
|
10427
|
+
hasNetworkMcsIndex(): boolean;
|
|
10428
|
+
clearNetworkMcsIndex(): void;
|
|
10429
|
+
getNetworkMcsIndex(): string | undefined;
|
|
10430
|
+
setNetworkMcsIndex(value: string): WiFiNetwork;
|
|
10431
|
+
|
|
10432
|
+
hasNetworkPhyMode(): boolean;
|
|
10433
|
+
clearNetworkPhyMode(): void;
|
|
10434
|
+
getNetworkPhyMode(): string | undefined;
|
|
10435
|
+
setNetworkPhyMode(value: string): WiFiNetwork;
|
|
10436
|
+
|
|
10437
|
+
hasNetworkTransmitRate(): boolean;
|
|
10438
|
+
clearNetworkTransmitRate(): void;
|
|
10439
|
+
getNetworkTransmitRate(): string | undefined;
|
|
10440
|
+
setNetworkTransmitRate(value: string): WiFiNetwork;
|
|
10441
|
+
|
|
10442
|
+
hasNetworkType(): boolean;
|
|
10443
|
+
clearNetworkType(): void;
|
|
10444
|
+
getNetworkType(): string | undefined;
|
|
10445
|
+
setNetworkType(value: string): WiFiNetwork;
|
|
10446
|
+
|
|
10447
|
+
hasSecurityMode(): boolean;
|
|
10448
|
+
clearSecurityMode(): void;
|
|
10449
|
+
getSecurityMode(): string | undefined;
|
|
10450
|
+
setSecurityMode(value: string): WiFiNetwork;
|
|
10451
|
+
|
|
10452
|
+
hasSignalNoise(): boolean;
|
|
10453
|
+
clearSignalNoise(): void;
|
|
10454
|
+
getSignalNoise(): string | undefined;
|
|
10455
|
+
setSignalNoise(value: string): WiFiNetwork;
|
|
10456
|
+
|
|
10457
|
+
serializeBinary(): Uint8Array;
|
|
10458
|
+
toObject(includeInstance?: boolean): WiFiNetwork.AsObject;
|
|
10459
|
+
static toObject(includeInstance: boolean, msg: WiFiNetwork): WiFiNetwork.AsObject;
|
|
10460
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10461
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10462
|
+
static serializeBinaryToWriter(message: WiFiNetwork, writer: jspb.BinaryWriter): void;
|
|
10463
|
+
static deserializeBinary(bytes: Uint8Array): WiFiNetwork;
|
|
10464
|
+
static deserializeBinaryFromReader(message: WiFiNetwork, reader: jspb.BinaryReader): WiFiNetwork;
|
|
10465
|
+
}
|
|
10466
|
+
|
|
10467
|
+
export namespace WiFiNetwork {
|
|
10468
|
+
export type AsObject = {
|
|
10469
|
+
name?: string,
|
|
10470
|
+
networkBssid?: string,
|
|
10471
|
+
networkChannel?: string,
|
|
10472
|
+
networkCountryCode?: string,
|
|
10473
|
+
networkMcsIndex?: string,
|
|
10474
|
+
networkPhyMode?: string,
|
|
10475
|
+
networkTransmitRate?: string,
|
|
10476
|
+
networkType?: string,
|
|
10477
|
+
securityMode?: string,
|
|
10478
|
+
signalNoise?: string,
|
|
10479
|
+
}
|
|
10480
|
+
}
|
|
10481
|
+
|
|
10482
|
+
export class WiFiSoftware extends jspb.Message {
|
|
10483
|
+
|
|
10484
|
+
hasAirportUtilityVersion(): boolean;
|
|
10485
|
+
clearAirportUtilityVersion(): void;
|
|
10486
|
+
getAirportUtilityVersion(): string | undefined;
|
|
10487
|
+
setAirportUtilityVersion(value: string): WiFiSoftware;
|
|
10488
|
+
|
|
10489
|
+
hasCoreWlanVersion(): boolean;
|
|
10490
|
+
clearCoreWlanVersion(): void;
|
|
10491
|
+
getCoreWlanVersion(): string | undefined;
|
|
10492
|
+
setCoreWlanVersion(value: string): WiFiSoftware;
|
|
10493
|
+
|
|
10494
|
+
hasCoreWlanKitVersion(): boolean;
|
|
10495
|
+
clearCoreWlanKitVersion(): void;
|
|
10496
|
+
getCoreWlanKitVersion(): string | undefined;
|
|
10497
|
+
setCoreWlanKitVersion(value: string): WiFiSoftware;
|
|
10498
|
+
|
|
10499
|
+
hasDiagnosticsVersion(): boolean;
|
|
10500
|
+
clearDiagnosticsVersion(): void;
|
|
10501
|
+
getDiagnosticsVersion(): string | undefined;
|
|
10502
|
+
setDiagnosticsVersion(value: string): WiFiSoftware;
|
|
10503
|
+
|
|
10504
|
+
hasIo80211FamilyVersion(): boolean;
|
|
10505
|
+
clearIo80211FamilyVersion(): void;
|
|
10506
|
+
getIo80211FamilyVersion(): string | undefined;
|
|
10507
|
+
setIo80211FamilyVersion(value: string): WiFiSoftware;
|
|
10508
|
+
|
|
10509
|
+
hasMenuExtraVersion(): boolean;
|
|
10510
|
+
clearMenuExtraVersion(): void;
|
|
10511
|
+
getMenuExtraVersion(): string | undefined;
|
|
10512
|
+
setMenuExtraVersion(value: string): WiFiSoftware;
|
|
10513
|
+
|
|
10514
|
+
hasSystemInformationVersion(): boolean;
|
|
10515
|
+
clearSystemInformationVersion(): void;
|
|
10516
|
+
getSystemInformationVersion(): string | undefined;
|
|
10517
|
+
setSystemInformationVersion(value: string): WiFiSoftware;
|
|
10518
|
+
|
|
10519
|
+
serializeBinary(): Uint8Array;
|
|
10520
|
+
toObject(includeInstance?: boolean): WiFiSoftware.AsObject;
|
|
10521
|
+
static toObject(includeInstance: boolean, msg: WiFiSoftware): WiFiSoftware.AsObject;
|
|
10522
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10523
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10524
|
+
static serializeBinaryToWriter(message: WiFiSoftware, writer: jspb.BinaryWriter): void;
|
|
10525
|
+
static deserializeBinary(bytes: Uint8Array): WiFiSoftware;
|
|
10526
|
+
static deserializeBinaryFromReader(message: WiFiSoftware, reader: jspb.BinaryReader): WiFiSoftware;
|
|
10527
|
+
}
|
|
10528
|
+
|
|
10529
|
+
export namespace WiFiSoftware {
|
|
10530
|
+
export type AsObject = {
|
|
10531
|
+
airportUtilityVersion?: string,
|
|
10532
|
+
coreWlanVersion?: string,
|
|
10533
|
+
coreWlanKitVersion?: string,
|
|
10534
|
+
diagnosticsVersion?: string,
|
|
10535
|
+
io80211FamilyVersion?: string,
|
|
10536
|
+
menuExtraVersion?: string,
|
|
10537
|
+
systemInformationVersion?: string,
|
|
10538
|
+
}
|
|
10539
|
+
}
|
|
10540
|
+
|
|
10206
10541
|
export class AntivirusSoftware extends jspb.Message {
|
|
10207
10542
|
|
|
10208
10543
|
hasName(): boolean;
|