@lansweeper/data-platform-outbound-grpc 0.3.0 → 0.3.1
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 +48 -0
- package/generated-go/outbound.pb.go +7027 -7016
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +1 -0
|
@@ -2067,6 +2067,11 @@ export class SourceInfo extends jspb.Message {
|
|
|
2067
2067
|
clearSourceName(): void;
|
|
2068
2068
|
getSourceName(): string | undefined;
|
|
2069
2069
|
setSourceName(value: string): SourceInfo;
|
|
2070
|
+
|
|
2071
|
+
hasSourceTag(): boolean;
|
|
2072
|
+
clearSourceTag(): void;
|
|
2073
|
+
getSourceTag(): string | undefined;
|
|
2074
|
+
setSourceTag(value: string): SourceInfo;
|
|
2070
2075
|
getRawId(): string;
|
|
2071
2076
|
setRawId(value: string): SourceInfo;
|
|
2072
2077
|
|
|
@@ -2096,6 +2101,7 @@ export namespace SourceInfo {
|
|
|
2096
2101
|
sourceType: string,
|
|
2097
2102
|
sourceAgent?: string,
|
|
2098
2103
|
sourceName?: string,
|
|
2104
|
+
sourceTag?: string,
|
|
2099
2105
|
rawId: string,
|
|
2100
2106
|
entityId?: string,
|
|
2101
2107
|
lastSynced?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -21381,6 +21381,7 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.toObject = function(includeInstan
|
|
|
21381
21381
|
sourceType: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21382
21382
|
sourceAgent: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21383
21383
|
sourceName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
21384
|
+
sourceTag: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
21384
21385
|
rawId: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
21385
21386
|
entityId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
21386
21387
|
lastSynced: (f = msg.getLastSynced()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
@@ -21436,6 +21437,10 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.deserializeBinaryFromReader = fun
|
|
|
21436
21437
|
var value = /** @type {string} */ (reader.readString());
|
|
21437
21438
|
msg.setSourceName(value);
|
|
21438
21439
|
break;
|
|
21440
|
+
case 8:
|
|
21441
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21442
|
+
msg.setSourceTag(value);
|
|
21443
|
+
break;
|
|
21439
21444
|
case 5:
|
|
21440
21445
|
var value = /** @type {string} */ (reader.readString());
|
|
21441
21446
|
msg.setRawId(value);
|
|
@@ -21506,6 +21511,13 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.serializeBinaryToWriter = functio
|
|
|
21506
21511
|
f
|
|
21507
21512
|
);
|
|
21508
21513
|
}
|
|
21514
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
21515
|
+
if (f != null) {
|
|
21516
|
+
writer.writeString(
|
|
21517
|
+
8,
|
|
21518
|
+
f
|
|
21519
|
+
);
|
|
21520
|
+
}
|
|
21509
21521
|
f = message.getRawId();
|
|
21510
21522
|
if (f.length > 0) {
|
|
21511
21523
|
writer.writeString(
|
|
@@ -21639,6 +21651,42 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.hasSourceName = functio
|
|
|
21639
21651
|
};
|
|
21640
21652
|
|
|
21641
21653
|
|
|
21654
|
+
/**
|
|
21655
|
+
* optional string source_tag = 8;
|
|
21656
|
+
* @return {string}
|
|
21657
|
+
*/
|
|
21658
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.getSourceTag = function() {
|
|
21659
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
21660
|
+
};
|
|
21661
|
+
|
|
21662
|
+
|
|
21663
|
+
/**
|
|
21664
|
+
* @param {string} value
|
|
21665
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SourceInfo} returns this
|
|
21666
|
+
*/
|
|
21667
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.setSourceTag = function(value) {
|
|
21668
|
+
return jspb.Message.setField(this, 8, value);
|
|
21669
|
+
};
|
|
21670
|
+
|
|
21671
|
+
|
|
21672
|
+
/**
|
|
21673
|
+
* Clears the field making it undefined.
|
|
21674
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SourceInfo} returns this
|
|
21675
|
+
*/
|
|
21676
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.clearSourceTag = function() {
|
|
21677
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
21678
|
+
};
|
|
21679
|
+
|
|
21680
|
+
|
|
21681
|
+
/**
|
|
21682
|
+
* Returns whether this field is set.
|
|
21683
|
+
* @return {boolean}
|
|
21684
|
+
*/
|
|
21685
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.hasSourceTag = function() {
|
|
21686
|
+
return jspb.Message.getField(this, 8) != null;
|
|
21687
|
+
};
|
|
21688
|
+
|
|
21689
|
+
|
|
21642
21690
|
/**
|
|
21643
21691
|
* optional string raw_id = 5;
|
|
21644
21692
|
* @return {string}
|