@lansweeper/data-platform-outbound-grpc 0.1.79 → 0.1.80

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.
@@ -864,13 +864,6 @@ export class OtModule extends jspb.Message {
864
864
  setBusConfig(value?: OtBusConfig): OtModule;
865
865
  getIsMainModule(): boolean;
866
866
  setIsMainModule(value: boolean): OtModule;
867
- getIsNetworkNode(): boolean;
868
- setIsNetworkNode(value: boolean): OtModule;
869
-
870
- hasScanProtocol(): boolean;
871
- clearScanProtocol(): void;
872
- getScanProtocol(): string | undefined;
873
- setScanProtocol(value: string): OtModule;
874
867
 
875
868
  hasPartNumber(): boolean;
876
869
  clearPartNumber(): void;
@@ -885,6 +878,18 @@ export class OtModule extends jspb.Message {
885
878
  clearRoutePath(): void;
886
879
  getRoutePath(): string | undefined;
887
880
  setRoutePath(value: string): OtModule;
881
+ getIsNetworkNode(): boolean;
882
+ setIsNetworkNode(value: boolean): OtModule;
883
+
884
+ hasScanProtocol(): boolean;
885
+ clearScanProtocol(): void;
886
+ getScanProtocol(): string | undefined;
887
+ setScanProtocol(value: string): OtModule;
888
+
889
+ hasScanInfo(): boolean;
890
+ clearScanInfo(): void;
891
+ getScanInfo(): OtScanInfo | undefined;
892
+ setScanInfo(value?: OtScanInfo): OtModule;
888
893
 
889
894
  serializeBinary(): Uint8Array;
890
895
  toObject(includeInstance?: boolean): OtModule.AsObject;
@@ -901,11 +906,12 @@ export namespace OtModule {
901
906
  componentType?: string,
902
907
  busConfig?: OtBusConfig.AsObject,
903
908
  isMainModule: boolean,
904
- isNetworkNode: boolean,
905
- scanProtocol?: string,
906
909
  partNumber?: string,
907
910
  extInfoList: Array<OtModuleExtInfo.AsObject>,
908
911
  routePath?: string,
912
+ isNetworkNode: boolean,
913
+ scanProtocol?: string,
914
+ scanInfo?: OtScanInfo.AsObject,
909
915
  }
910
916
  }
911
917
 
@@ -982,6 +988,83 @@ export namespace OtModuleExtInfo {
982
988
  }
983
989
  }
984
990
 
991
+ export class OtScanInfo extends jspb.Message {
992
+
993
+ hasScanTargetId(): boolean;
994
+ clearScanTargetId(): void;
995
+ getScanTargetId(): string | undefined;
996
+ setScanTargetId(value: string): OtScanInfo;
997
+
998
+ hasScanTargetName(): boolean;
999
+ clearScanTargetName(): void;
1000
+ getScanTargetName(): string | undefined;
1001
+ setScanTargetName(value: string): OtScanInfo;
1002
+
1003
+ hasSensorId(): boolean;
1004
+ clearSensorId(): void;
1005
+ getSensorId(): string | undefined;
1006
+ setSensorId(value: string): OtScanInfo;
1007
+
1008
+ hasSensorName(): boolean;
1009
+ clearSensorName(): void;
1010
+ getSensorName(): string | undefined;
1011
+ setSensorName(value: string): OtScanInfo;
1012
+
1013
+ hasProtocolId(): boolean;
1014
+ clearProtocolId(): void;
1015
+ getProtocolId(): string | undefined;
1016
+ setProtocolId(value: string): OtScanInfo;
1017
+
1018
+ hasProtocolName(): boolean;
1019
+ clearProtocolName(): void;
1020
+ getProtocolName(): string | undefined;
1021
+ setProtocolName(value: string): OtScanInfo;
1022
+
1023
+ hasPort(): boolean;
1024
+ clearPort(): void;
1025
+ getPort(): number | undefined;
1026
+ setPort(value: number): OtScanInfo;
1027
+
1028
+ hasNetworkProtocol(): boolean;
1029
+ clearNetworkProtocol(): void;
1030
+ getNetworkProtocol(): string | undefined;
1031
+ setNetworkProtocol(value: string): OtScanInfo;
1032
+
1033
+ hasLastTried(): boolean;
1034
+ clearLastTried(): void;
1035
+ getLastTried(): google_protobuf_timestamp_pb.Timestamp | undefined;
1036
+ setLastTried(value?: google_protobuf_timestamp_pb.Timestamp): OtScanInfo;
1037
+
1038
+ hasLastScan(): boolean;
1039
+ clearLastScan(): void;
1040
+ getLastScan(): google_protobuf_timestamp_pb.Timestamp | undefined;
1041
+ setLastScan(value?: google_protobuf_timestamp_pb.Timestamp): OtScanInfo;
1042
+
1043
+ serializeBinary(): Uint8Array;
1044
+ toObject(includeInstance?: boolean): OtScanInfo.AsObject;
1045
+ static toObject(includeInstance: boolean, msg: OtScanInfo): OtScanInfo.AsObject;
1046
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1047
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1048
+ static serializeBinaryToWriter(message: OtScanInfo, writer: jspb.BinaryWriter): void;
1049
+ static deserializeBinary(bytes: Uint8Array): OtScanInfo;
1050
+ static deserializeBinaryFromReader(message: OtScanInfo, reader: jspb.BinaryReader): OtScanInfo;
1051
+ }
1052
+
1053
+ export namespace OtScanInfo {
1054
+ export type AsObject = {
1055
+ scanTargetId?: string,
1056
+ scanTargetName?: string,
1057
+ sensorId?: string,
1058
+ sensorName?: string,
1059
+ protocolId?: string,
1060
+ protocolName?: string,
1061
+ port?: number,
1062
+ networkProtocol?: string,
1063
+ lastTried?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1064
+ lastScan?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1065
+ }
1066
+ }
1067
+
985
1068
  export class AssetType extends jspb.Message {
986
1069
  getLsName(): string;
987
1070
  setLsName(value: string): AssetType;