@lansweeper/data-platform-outbound-grpc 0.3.13 → 0.3.14
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +6 -0
- package/gen-proto/outbound_pb.js +49 -1
- package/generated-go/outbound.pb.go +7045 -7032
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +3 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +3 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFields.java +113 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.java +19 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2289 -2287
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.12-sources.jar → outbound-model-0.3.13-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.12.jar → outbound-model-0.3.13.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +3 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.12-sources.jar → outbound-service-0.3.13-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.12.jar → outbound-service-0.3.13.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -707,6 +707,9 @@ message CoreFields {
|
|
|
707
707
|
* - <100 is for e.g. CDR or imported data from 3rd parties
|
|
708
708
|
*/
|
|
709
709
|
int32 confidence = 10;
|
|
710
|
+
|
|
711
|
+
// To propagate scanned by bitmask from LS Classic Assets
|
|
712
|
+
optional uint64 classic_scanned_by = 11;
|
|
710
713
|
}
|
|
711
714
|
|
|
712
715
|
message LastUser {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -707,6 +707,9 @@ message CoreFields {
|
|
|
707
707
|
* - <100 is for e.g. CDR or imported data from 3rd parties
|
|
708
708
|
*/
|
|
709
709
|
int32 confidence = 10;
|
|
710
|
+
|
|
711
|
+
// To propagate scanned by bitmask from LS Classic Assets
|
|
712
|
+
optional uint64 classic_scanned_by = 11;
|
|
710
713
|
}
|
|
711
714
|
|
|
712
715
|
message LastUser {
|
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFields.java
CHANGED
|
@@ -465,6 +465,33 @@ private static final long serialVersionUID = 0L;
|
|
|
465
465
|
return confidence_;
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
+
public static final int CLASSIC_SCANNED_BY_FIELD_NUMBER = 11;
|
|
469
|
+
private long classicScannedBy_ = 0L;
|
|
470
|
+
/**
|
|
471
|
+
* <pre>
|
|
472
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
473
|
+
* </pre>
|
|
474
|
+
*
|
|
475
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
476
|
+
* @return Whether the classicScannedBy field is set.
|
|
477
|
+
*/
|
|
478
|
+
@java.lang.Override
|
|
479
|
+
public boolean hasClassicScannedBy() {
|
|
480
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* <pre>
|
|
484
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
485
|
+
* </pre>
|
|
486
|
+
*
|
|
487
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
488
|
+
* @return The classicScannedBy.
|
|
489
|
+
*/
|
|
490
|
+
@java.lang.Override
|
|
491
|
+
public long getClassicScannedBy() {
|
|
492
|
+
return classicScannedBy_;
|
|
493
|
+
}
|
|
494
|
+
|
|
468
495
|
private byte memoizedIsInitialized = -1;
|
|
469
496
|
@java.lang.Override
|
|
470
497
|
public final boolean isInitialized() {
|
|
@@ -509,6 +536,9 @@ private static final long serialVersionUID = 0L;
|
|
|
509
536
|
if (confidence_ != 0) {
|
|
510
537
|
output.writeInt32(10, confidence_);
|
|
511
538
|
}
|
|
539
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
540
|
+
output.writeUInt64(11, classicScannedBy_);
|
|
541
|
+
}
|
|
512
542
|
getUnknownFields().writeTo(output);
|
|
513
543
|
}
|
|
514
544
|
|
|
@@ -550,6 +580,10 @@ private static final long serialVersionUID = 0L;
|
|
|
550
580
|
size += com.google.protobuf.CodedOutputStream
|
|
551
581
|
.computeInt32Size(10, confidence_);
|
|
552
582
|
}
|
|
583
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
584
|
+
size += com.google.protobuf.CodedOutputStream
|
|
585
|
+
.computeUInt64Size(11, classicScannedBy_);
|
|
586
|
+
}
|
|
553
587
|
size += getUnknownFields().getSerializedSize();
|
|
554
588
|
memoizedSize = size;
|
|
555
589
|
return size;
|
|
@@ -609,6 +643,11 @@ private static final long serialVersionUID = 0L;
|
|
|
609
643
|
}
|
|
610
644
|
if (getConfidence()
|
|
611
645
|
!= other.getConfidence()) return false;
|
|
646
|
+
if (hasClassicScannedBy() != other.hasClassicScannedBy()) return false;
|
|
647
|
+
if (hasClassicScannedBy()) {
|
|
648
|
+
if (getClassicScannedBy()
|
|
649
|
+
!= other.getClassicScannedBy()) return false;
|
|
650
|
+
}
|
|
612
651
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
|
|
613
652
|
return true;
|
|
614
653
|
}
|
|
@@ -656,6 +695,11 @@ private static final long serialVersionUID = 0L;
|
|
|
656
695
|
}
|
|
657
696
|
hash = (37 * hash) + CONFIDENCE_FIELD_NUMBER;
|
|
658
697
|
hash = (53 * hash) + getConfidence();
|
|
698
|
+
if (hasClassicScannedBy()) {
|
|
699
|
+
hash = (37 * hash) + CLASSIC_SCANNED_BY_FIELD_NUMBER;
|
|
700
|
+
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
|
|
701
|
+
getClassicScannedBy());
|
|
702
|
+
}
|
|
659
703
|
hash = (29 * hash) + getUnknownFields().hashCode();
|
|
660
704
|
memoizedHashCode = hash;
|
|
661
705
|
return hash;
|
|
@@ -812,6 +856,7 @@ private static final long serialVersionUID = 0L;
|
|
|
812
856
|
sensorId_ = "";
|
|
813
857
|
fqdn_ = "";
|
|
814
858
|
confidence_ = 0;
|
|
859
|
+
classicScannedBy_ = 0L;
|
|
815
860
|
return this;
|
|
816
861
|
}
|
|
817
862
|
|
|
@@ -886,6 +931,10 @@ private static final long serialVersionUID = 0L;
|
|
|
886
931
|
if (((from_bitField0_ & 0x00000200) != 0)) {
|
|
887
932
|
result.confidence_ = confidence_;
|
|
888
933
|
}
|
|
934
|
+
if (((from_bitField0_ & 0x00000400) != 0)) {
|
|
935
|
+
result.classicScannedBy_ = classicScannedBy_;
|
|
936
|
+
to_bitField0_ |= 0x00000100;
|
|
937
|
+
}
|
|
889
938
|
result.bitField0_ |= to_bitField0_;
|
|
890
939
|
}
|
|
891
940
|
|
|
@@ -979,6 +1028,9 @@ private static final long serialVersionUID = 0L;
|
|
|
979
1028
|
if (other.getConfidence() != 0) {
|
|
980
1029
|
setConfidence(other.getConfidence());
|
|
981
1030
|
}
|
|
1031
|
+
if (other.hasClassicScannedBy()) {
|
|
1032
|
+
setClassicScannedBy(other.getClassicScannedBy());
|
|
1033
|
+
}
|
|
982
1034
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
983
1035
|
onChanged();
|
|
984
1036
|
return this;
|
|
@@ -1057,6 +1109,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1057
1109
|
bitField0_ |= 0x00000200;
|
|
1058
1110
|
break;
|
|
1059
1111
|
} // case 80
|
|
1112
|
+
case 88: {
|
|
1113
|
+
classicScannedBy_ = input.readUInt64();
|
|
1114
|
+
bitField0_ |= 0x00000400;
|
|
1115
|
+
break;
|
|
1116
|
+
} // case 88
|
|
1060
1117
|
default: {
|
|
1061
1118
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
1062
1119
|
done = true; // was an endgroup tag
|
|
@@ -1872,6 +1929,62 @@ private static final long serialVersionUID = 0L;
|
|
|
1872
1929
|
onChanged();
|
|
1873
1930
|
return this;
|
|
1874
1931
|
}
|
|
1932
|
+
|
|
1933
|
+
private long classicScannedBy_ ;
|
|
1934
|
+
/**
|
|
1935
|
+
* <pre>
|
|
1936
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
1937
|
+
* </pre>
|
|
1938
|
+
*
|
|
1939
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
1940
|
+
* @return Whether the classicScannedBy field is set.
|
|
1941
|
+
*/
|
|
1942
|
+
@java.lang.Override
|
|
1943
|
+
public boolean hasClassicScannedBy() {
|
|
1944
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
1945
|
+
}
|
|
1946
|
+
/**
|
|
1947
|
+
* <pre>
|
|
1948
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
1949
|
+
* </pre>
|
|
1950
|
+
*
|
|
1951
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
1952
|
+
* @return The classicScannedBy.
|
|
1953
|
+
*/
|
|
1954
|
+
@java.lang.Override
|
|
1955
|
+
public long getClassicScannedBy() {
|
|
1956
|
+
return classicScannedBy_;
|
|
1957
|
+
}
|
|
1958
|
+
/**
|
|
1959
|
+
* <pre>
|
|
1960
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
1961
|
+
* </pre>
|
|
1962
|
+
*
|
|
1963
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
1964
|
+
* @param value The classicScannedBy to set.
|
|
1965
|
+
* @return This builder for chaining.
|
|
1966
|
+
*/
|
|
1967
|
+
public Builder setClassicScannedBy(long value) {
|
|
1968
|
+
|
|
1969
|
+
classicScannedBy_ = value;
|
|
1970
|
+
bitField0_ |= 0x00000400;
|
|
1971
|
+
onChanged();
|
|
1972
|
+
return this;
|
|
1973
|
+
}
|
|
1974
|
+
/**
|
|
1975
|
+
* <pre>
|
|
1976
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
1977
|
+
* </pre>
|
|
1978
|
+
*
|
|
1979
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
1980
|
+
* @return This builder for chaining.
|
|
1981
|
+
*/
|
|
1982
|
+
public Builder clearClassicScannedBy() {
|
|
1983
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
1984
|
+
classicScannedBy_ = 0L;
|
|
1985
|
+
onChanged();
|
|
1986
|
+
return this;
|
|
1987
|
+
}
|
|
1875
1988
|
@java.lang.Override
|
|
1876
1989
|
public final Builder setUnknownFields(
|
|
1877
1990
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
@@ -166,4 +166,23 @@ public interface CoreFieldsOrBuilder extends
|
|
|
166
166
|
* @return The confidence.
|
|
167
167
|
*/
|
|
168
168
|
int getConfidence();
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* <pre>
|
|
172
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
173
|
+
* </pre>
|
|
174
|
+
*
|
|
175
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
176
|
+
* @return Whether the classicScannedBy field is set.
|
|
177
|
+
*/
|
|
178
|
+
boolean hasClassicScannedBy();
|
|
179
|
+
/**
|
|
180
|
+
* <pre>
|
|
181
|
+
* To propagate scanned by bitmask from LS Classic Assets
|
|
182
|
+
* </pre>
|
|
183
|
+
*
|
|
184
|
+
* <code>optional uint64 classic_scanned_by = 11;</code>
|
|
185
|
+
* @return The classicScannedBy.
|
|
186
|
+
*/
|
|
187
|
+
long getClassicScannedBy();
|
|
169
188
|
}
|