@lansweeper/data-platform-outbound-grpc 0.1.6 → 0.1.7
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 +396 -384
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +2 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Outbound.java +122 -121
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawSoftware.java +89 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawSoftwareOrBuilder.java +11 -0
|
@@ -871,6 +871,11 @@ export class RawSoftware extends jspb.Message {
|
|
|
871
871
|
getSwId(): string | undefined;
|
|
872
872
|
setSwId(value: string): RawSoftware;
|
|
873
873
|
|
|
874
|
+
hasIsCurrentUser(): boolean;
|
|
875
|
+
clearIsCurrentUser(): void;
|
|
876
|
+
getIsCurrentUser(): boolean | undefined;
|
|
877
|
+
setIsCurrentUser(value: boolean): RawSoftware;
|
|
878
|
+
|
|
874
879
|
serializeBinary(): Uint8Array;
|
|
875
880
|
toObject(includeInstance?: boolean): RawSoftware.AsObject;
|
|
876
881
|
static toObject(includeInstance: boolean, msg: RawSoftware): RawSoftware.AsObject;
|
|
@@ -892,6 +897,7 @@ export namespace RawSoftware {
|
|
|
892
897
|
installDate?: number,
|
|
893
898
|
sourceType?: string,
|
|
894
899
|
swId?: string,
|
|
900
|
+
isCurrentUser?: boolean,
|
|
895
901
|
}
|
|
896
902
|
}
|
|
897
903
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -6622,7 +6622,8 @@ proto.com.lansweeper.dp.outbound.v1.RawSoftware.toObject = function(includeInsta
|
|
|
6622
6622
|
arch: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
6623
6623
|
installDate: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
6624
6624
|
sourceType: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
6625
|
-
swId: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
6625
|
+
swId: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
6626
|
+
isCurrentUser: jspb.Message.getBooleanFieldWithDefault(msg, 10, false)
|
|
6626
6627
|
};
|
|
6627
6628
|
|
|
6628
6629
|
if (includeInstance) {
|
|
@@ -6695,6 +6696,10 @@ proto.com.lansweeper.dp.outbound.v1.RawSoftware.deserializeBinaryFromReader = fu
|
|
|
6695
6696
|
var value = /** @type {string} */ (reader.readString());
|
|
6696
6697
|
msg.setSwId(value);
|
|
6697
6698
|
break;
|
|
6699
|
+
case 10:
|
|
6700
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6701
|
+
msg.setIsCurrentUser(value);
|
|
6702
|
+
break;
|
|
6698
6703
|
default:
|
|
6699
6704
|
reader.skipField();
|
|
6700
6705
|
break;
|
|
@@ -6787,6 +6792,13 @@ proto.com.lansweeper.dp.outbound.v1.RawSoftware.serializeBinaryToWriter = functi
|
|
|
6787
6792
|
f
|
|
6788
6793
|
);
|
|
6789
6794
|
}
|
|
6795
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 10));
|
|
6796
|
+
if (f != null) {
|
|
6797
|
+
writer.writeBool(
|
|
6798
|
+
10,
|
|
6799
|
+
f
|
|
6800
|
+
);
|
|
6801
|
+
}
|
|
6790
6802
|
};
|
|
6791
6803
|
|
|
6792
6804
|
|
|
@@ -7096,6 +7108,42 @@ proto.com.lansweeper.dp.outbound.v1.RawSoftware.prototype.hasSwId = function() {
|
|
|
7096
7108
|
};
|
|
7097
7109
|
|
|
7098
7110
|
|
|
7111
|
+
/**
|
|
7112
|
+
* optional bool is_current_user = 10;
|
|
7113
|
+
* @return {boolean}
|
|
7114
|
+
*/
|
|
7115
|
+
proto.com.lansweeper.dp.outbound.v1.RawSoftware.prototype.getIsCurrentUser = function() {
|
|
7116
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
|
|
7117
|
+
};
|
|
7118
|
+
|
|
7119
|
+
|
|
7120
|
+
/**
|
|
7121
|
+
* @param {boolean} value
|
|
7122
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.RawSoftware} returns this
|
|
7123
|
+
*/
|
|
7124
|
+
proto.com.lansweeper.dp.outbound.v1.RawSoftware.prototype.setIsCurrentUser = function(value) {
|
|
7125
|
+
return jspb.Message.setField(this, 10, value);
|
|
7126
|
+
};
|
|
7127
|
+
|
|
7128
|
+
|
|
7129
|
+
/**
|
|
7130
|
+
* Clears the field making it undefined.
|
|
7131
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.RawSoftware} returns this
|
|
7132
|
+
*/
|
|
7133
|
+
proto.com.lansweeper.dp.outbound.v1.RawSoftware.prototype.clearIsCurrentUser = function() {
|
|
7134
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
7135
|
+
};
|
|
7136
|
+
|
|
7137
|
+
|
|
7138
|
+
/**
|
|
7139
|
+
* Returns whether this field is set.
|
|
7140
|
+
* @return {boolean}
|
|
7141
|
+
*/
|
|
7142
|
+
proto.com.lansweeper.dp.outbound.v1.RawSoftware.prototype.hasIsCurrentUser = function() {
|
|
7143
|
+
return jspb.Message.getField(this, 10) != null;
|
|
7144
|
+
};
|
|
7145
|
+
|
|
7146
|
+
|
|
7099
7147
|
|
|
7100
7148
|
|
|
7101
7149
|
|