@lansweeper/data-platform-outbound-grpc 0.1.56 → 0.1.57
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 +11 -5
- package/gen-proto/outbound_pb.js +55 -7
- package/generated-go/outbound.pb.go +3229 -3214
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +2 -1
|
@@ -320,10 +320,15 @@ export class Asset extends jspb.Message {
|
|
|
320
320
|
setScanErrorList(value: Array<ScanError>): Asset;
|
|
321
321
|
addScanError(value?: ScanError, index?: number): ScanError;
|
|
322
322
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
323
|
+
hasLastSyncedSourceAgent(): boolean;
|
|
324
|
+
clearLastSyncedSourceAgent(): void;
|
|
325
|
+
getLastSyncedSourceAgent(): string | undefined;
|
|
326
|
+
setLastSyncedSourceAgent(value: string): Asset;
|
|
327
|
+
|
|
328
|
+
hasLastSyncedSourceName(): boolean;
|
|
329
|
+
clearLastSyncedSourceName(): void;
|
|
330
|
+
getLastSyncedSourceName(): string | undefined;
|
|
331
|
+
setLastSyncedSourceName(value: string): Asset;
|
|
327
332
|
clearTagList(): void;
|
|
328
333
|
getTagList(): Array<Tag>;
|
|
329
334
|
setTagList(value: Array<Tag>): Asset;
|
|
@@ -512,7 +517,8 @@ export namespace Asset {
|
|
|
512
517
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
513
518
|
uniqueKey?: string,
|
|
514
519
|
scanErrorList: Array<ScanError.AsObject>,
|
|
515
|
-
|
|
520
|
+
lastSyncedSourceAgent?: string,
|
|
521
|
+
lastSyncedSourceName?: string,
|
|
516
522
|
tagList: Array<Tag.AsObject>,
|
|
517
523
|
relationList: Array<Relation.AsObject>,
|
|
518
524
|
core?: CoreFields.AsObject,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -3938,7 +3938,8 @@ proto.com.lansweeper.dp.outbound.v1.Asset.toObject = function(includeInstance, m
|
|
|
3938
3938
|
uniqueKey: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
3939
3939
|
scanErrorList: jspb.Message.toObjectList(msg.getScanErrorList(),
|
|
3940
3940
|
proto.com.lansweeper.dp.outbound.v1.ScanError.toObject, includeInstance),
|
|
3941
|
-
|
|
3941
|
+
lastSyncedSourceAgent: jspb.Message.getFieldWithDefault(msg, 39, ""),
|
|
3942
|
+
lastSyncedSourceName: jspb.Message.getFieldWithDefault(msg, 49, ""),
|
|
3942
3943
|
tagList: jspb.Message.toObjectList(msg.getTagList(),
|
|
3943
3944
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
3944
3945
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
@@ -4071,7 +4072,11 @@ proto.com.lansweeper.dp.outbound.v1.Asset.deserializeBinaryFromReader = function
|
|
|
4071
4072
|
break;
|
|
4072
4073
|
case 39:
|
|
4073
4074
|
var value = /** @type {string} */ (reader.readString());
|
|
4074
|
-
msg.
|
|
4075
|
+
msg.setLastSyncedSourceAgent(value);
|
|
4076
|
+
break;
|
|
4077
|
+
case 49:
|
|
4078
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4079
|
+
msg.setLastSyncedSourceName(value);
|
|
4075
4080
|
break;
|
|
4076
4081
|
case 14:
|
|
4077
4082
|
var value = new proto.com.lansweeper.dp.outbound.v1.Tag;
|
|
@@ -4354,6 +4359,13 @@ proto.com.lansweeper.dp.outbound.v1.Asset.serializeBinaryToWriter = function(mes
|
|
|
4354
4359
|
f
|
|
4355
4360
|
);
|
|
4356
4361
|
}
|
|
4362
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 49));
|
|
4363
|
+
if (f != null) {
|
|
4364
|
+
writer.writeString(
|
|
4365
|
+
49,
|
|
4366
|
+
f
|
|
4367
|
+
);
|
|
4368
|
+
}
|
|
4357
4369
|
f = message.getTagList();
|
|
4358
4370
|
if (f.length > 0) {
|
|
4359
4371
|
writer.writeRepeatedMessage(
|
|
@@ -4921,10 +4933,10 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearScanErrorList = functio
|
|
|
4921
4933
|
|
|
4922
4934
|
|
|
4923
4935
|
/**
|
|
4924
|
-
* optional string
|
|
4936
|
+
* optional string last_synced_source_agent = 39;
|
|
4925
4937
|
* @return {string}
|
|
4926
4938
|
*/
|
|
4927
|
-
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.
|
|
4939
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.getLastSyncedSourceAgent = function() {
|
|
4928
4940
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 39, ""));
|
|
4929
4941
|
};
|
|
4930
4942
|
|
|
@@ -4933,7 +4945,7 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.getLastSyncedSource = functi
|
|
|
4933
4945
|
* @param {string} value
|
|
4934
4946
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
4935
4947
|
*/
|
|
4936
|
-
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.
|
|
4948
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.setLastSyncedSourceAgent = function(value) {
|
|
4937
4949
|
return jspb.Message.setField(this, 39, value);
|
|
4938
4950
|
};
|
|
4939
4951
|
|
|
@@ -4942,7 +4954,7 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.setLastSyncedSource = functi
|
|
|
4942
4954
|
* Clears the field making it undefined.
|
|
4943
4955
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
4944
4956
|
*/
|
|
4945
|
-
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.
|
|
4957
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearLastSyncedSourceAgent = function() {
|
|
4946
4958
|
return jspb.Message.setField(this, 39, undefined);
|
|
4947
4959
|
};
|
|
4948
4960
|
|
|
@@ -4951,11 +4963,47 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearLastSyncedSource = func
|
|
|
4951
4963
|
* Returns whether this field is set.
|
|
4952
4964
|
* @return {boolean}
|
|
4953
4965
|
*/
|
|
4954
|
-
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.
|
|
4966
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.hasLastSyncedSourceAgent = function() {
|
|
4955
4967
|
return jspb.Message.getField(this, 39) != null;
|
|
4956
4968
|
};
|
|
4957
4969
|
|
|
4958
4970
|
|
|
4971
|
+
/**
|
|
4972
|
+
* optional string last_synced_source_name = 49;
|
|
4973
|
+
* @return {string}
|
|
4974
|
+
*/
|
|
4975
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.getLastSyncedSourceName = function() {
|
|
4976
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 49, ""));
|
|
4977
|
+
};
|
|
4978
|
+
|
|
4979
|
+
|
|
4980
|
+
/**
|
|
4981
|
+
* @param {string} value
|
|
4982
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
4983
|
+
*/
|
|
4984
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.setLastSyncedSourceName = function(value) {
|
|
4985
|
+
return jspb.Message.setField(this, 49, value);
|
|
4986
|
+
};
|
|
4987
|
+
|
|
4988
|
+
|
|
4989
|
+
/**
|
|
4990
|
+
* Clears the field making it undefined.
|
|
4991
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
4992
|
+
*/
|
|
4993
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearLastSyncedSourceName = function() {
|
|
4994
|
+
return jspb.Message.setField(this, 49, undefined);
|
|
4995
|
+
};
|
|
4996
|
+
|
|
4997
|
+
|
|
4998
|
+
/**
|
|
4999
|
+
* Returns whether this field is set.
|
|
5000
|
+
* @return {boolean}
|
|
5001
|
+
*/
|
|
5002
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.hasLastSyncedSourceName = function() {
|
|
5003
|
+
return jspb.Message.getField(this, 49) != null;
|
|
5004
|
+
};
|
|
5005
|
+
|
|
5006
|
+
|
|
4959
5007
|
/**
|
|
4960
5008
|
* repeated Tag tag = 14;
|
|
4961
5009
|
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>}
|