@lansweeper/data-platform-outbound-grpc 0.1.66 → 0.1.68
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +15 -0
- package/gen-proto/outbound_pb.js +127 -1
- package/generated-go/outbound.pb.go +3608 -3572
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +30 -19
|
@@ -1174,6 +1174,8 @@ export class CoreFields extends jspb.Message {
|
|
|
1174
1174
|
clearFqdn(): void;
|
|
1175
1175
|
getFqdn(): string | undefined;
|
|
1176
1176
|
setFqdn(value: string): CoreFields;
|
|
1177
|
+
getConfidence(): number;
|
|
1178
|
+
setConfidence(value: number): CoreFields;
|
|
1177
1179
|
|
|
1178
1180
|
serializeBinary(): Uint8Array;
|
|
1179
1181
|
toObject(includeInstance?: boolean): CoreFields.AsObject;
|
|
@@ -1196,6 +1198,7 @@ export namespace CoreFields {
|
|
|
1196
1198
|
macVendor?: string,
|
|
1197
1199
|
sensorId?: string,
|
|
1198
1200
|
fqdn?: string,
|
|
1201
|
+
confidence: number,
|
|
1199
1202
|
}
|
|
1200
1203
|
}
|
|
1201
1204
|
|
|
@@ -1967,6 +1970,16 @@ export class HardwareInfo extends jspb.Message {
|
|
|
1967
1970
|
getTypeName(): string | undefined;
|
|
1968
1971
|
setTypeName(value: string): HardwareInfo;
|
|
1969
1972
|
|
|
1973
|
+
hasTypeCaption(): boolean;
|
|
1974
|
+
clearTypeCaption(): void;
|
|
1975
|
+
getTypeCaption(): string | undefined;
|
|
1976
|
+
setTypeCaption(value: string): HardwareInfo;
|
|
1977
|
+
|
|
1978
|
+
hasTypeGroup(): boolean;
|
|
1979
|
+
clearTypeGroup(): void;
|
|
1980
|
+
getTypeGroup(): string | undefined;
|
|
1981
|
+
setTypeGroup(value: string): HardwareInfo;
|
|
1982
|
+
|
|
1970
1983
|
hasMakeName(): boolean;
|
|
1971
1984
|
clearMakeName(): void;
|
|
1972
1985
|
getMakeName(): string | undefined;
|
|
@@ -2031,6 +2044,8 @@ export namespace HardwareInfo {
|
|
|
2031
2044
|
isFamily?: boolean,
|
|
2032
2045
|
serial?: string,
|
|
2033
2046
|
typeName?: string,
|
|
2047
|
+
typeCaption?: string,
|
|
2048
|
+
typeGroup?: string,
|
|
2034
2049
|
makeName?: string,
|
|
2035
2050
|
modelName?: string,
|
|
2036
2051
|
familyName?: string,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -12041,7 +12041,8 @@ proto.com.lansweeper.dp.outbound.v1.CoreFields.toObject = function(includeInstan
|
|
|
12041
12041
|
mac: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12042
12042
|
macVendor: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
12043
12043
|
sensorId: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
12044
|
-
fqdn: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
12044
|
+
fqdn: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
12045
|
+
confidence: jspb.Message.getFieldWithDefault(msg, 10, 0)
|
|
12045
12046
|
};
|
|
12046
12047
|
|
|
12047
12048
|
if (includeInstance) {
|
|
@@ -12115,6 +12116,10 @@ proto.com.lansweeper.dp.outbound.v1.CoreFields.deserializeBinaryFromReader = fun
|
|
|
12115
12116
|
var value = /** @type {string} */ (reader.readString());
|
|
12116
12117
|
msg.setFqdn(value);
|
|
12117
12118
|
break;
|
|
12119
|
+
case 10:
|
|
12120
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
12121
|
+
msg.setConfidence(value);
|
|
12122
|
+
break;
|
|
12118
12123
|
default:
|
|
12119
12124
|
reader.skipField();
|
|
12120
12125
|
break;
|
|
@@ -12208,6 +12213,13 @@ proto.com.lansweeper.dp.outbound.v1.CoreFields.serializeBinaryToWriter = functio
|
|
|
12208
12213
|
f
|
|
12209
12214
|
);
|
|
12210
12215
|
}
|
|
12216
|
+
f = message.getConfidence();
|
|
12217
|
+
if (f !== 0) {
|
|
12218
|
+
writer.writeInt32(
|
|
12219
|
+
10,
|
|
12220
|
+
f
|
|
12221
|
+
);
|
|
12222
|
+
}
|
|
12211
12223
|
};
|
|
12212
12224
|
|
|
12213
12225
|
|
|
@@ -12518,6 +12530,24 @@ proto.com.lansweeper.dp.outbound.v1.CoreFields.prototype.hasFqdn = function() {
|
|
|
12518
12530
|
};
|
|
12519
12531
|
|
|
12520
12532
|
|
|
12533
|
+
/**
|
|
12534
|
+
* optional int32 confidence = 10;
|
|
12535
|
+
* @return {number}
|
|
12536
|
+
*/
|
|
12537
|
+
proto.com.lansweeper.dp.outbound.v1.CoreFields.prototype.getConfidence = function() {
|
|
12538
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
12539
|
+
};
|
|
12540
|
+
|
|
12541
|
+
|
|
12542
|
+
/**
|
|
12543
|
+
* @param {number} value
|
|
12544
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CoreFields} returns this
|
|
12545
|
+
*/
|
|
12546
|
+
proto.com.lansweeper.dp.outbound.v1.CoreFields.prototype.setConfidence = function(value) {
|
|
12547
|
+
return jspb.Message.setProto3IntField(this, 10, value);
|
|
12548
|
+
};
|
|
12549
|
+
|
|
12550
|
+
|
|
12521
12551
|
|
|
12522
12552
|
|
|
12523
12553
|
|
|
@@ -17881,6 +17911,8 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.toObject = function(includeInst
|
|
|
17881
17911
|
isFamily: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
17882
17912
|
serial: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
17883
17913
|
typeName: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
17914
|
+
typeCaption: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
17915
|
+
typeGroup: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
17884
17916
|
makeName: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
17885
17917
|
modelName: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
17886
17918
|
familyName: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
@@ -17954,6 +17986,14 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.deserializeBinaryFromReader = f
|
|
|
17954
17986
|
var value = /** @type {string} */ (reader.readString());
|
|
17955
17987
|
msg.setTypeName(value);
|
|
17956
17988
|
break;
|
|
17989
|
+
case 14:
|
|
17990
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17991
|
+
msg.setTypeCaption(value);
|
|
17992
|
+
break;
|
|
17993
|
+
case 15:
|
|
17994
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17995
|
+
msg.setTypeGroup(value);
|
|
17996
|
+
break;
|
|
17957
17997
|
case 11:
|
|
17958
17998
|
var value = /** @type {string} */ (reader.readString());
|
|
17959
17999
|
msg.setMakeName(value);
|
|
@@ -18072,6 +18112,20 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.serializeBinaryToWriter = funct
|
|
|
18072
18112
|
f
|
|
18073
18113
|
);
|
|
18074
18114
|
}
|
|
18115
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
18116
|
+
if (f != null) {
|
|
18117
|
+
writer.writeString(
|
|
18118
|
+
14,
|
|
18119
|
+
f
|
|
18120
|
+
);
|
|
18121
|
+
}
|
|
18122
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
18123
|
+
if (f != null) {
|
|
18124
|
+
writer.writeString(
|
|
18125
|
+
15,
|
|
18126
|
+
f
|
|
18127
|
+
);
|
|
18128
|
+
}
|
|
18075
18129
|
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
18076
18130
|
if (f != null) {
|
|
18077
18131
|
writer.writeString(
|
|
@@ -18394,6 +18448,78 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasTypeName = functio
|
|
|
18394
18448
|
};
|
|
18395
18449
|
|
|
18396
18450
|
|
|
18451
|
+
/**
|
|
18452
|
+
* optional string type_caption = 14;
|
|
18453
|
+
* @return {string}
|
|
18454
|
+
*/
|
|
18455
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getTypeCaption = function() {
|
|
18456
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
18457
|
+
};
|
|
18458
|
+
|
|
18459
|
+
|
|
18460
|
+
/**
|
|
18461
|
+
* @param {string} value
|
|
18462
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
18463
|
+
*/
|
|
18464
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setTypeCaption = function(value) {
|
|
18465
|
+
return jspb.Message.setField(this, 14, value);
|
|
18466
|
+
};
|
|
18467
|
+
|
|
18468
|
+
|
|
18469
|
+
/**
|
|
18470
|
+
* Clears the field making it undefined.
|
|
18471
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
18472
|
+
*/
|
|
18473
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearTypeCaption = function() {
|
|
18474
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
18475
|
+
};
|
|
18476
|
+
|
|
18477
|
+
|
|
18478
|
+
/**
|
|
18479
|
+
* Returns whether this field is set.
|
|
18480
|
+
* @return {boolean}
|
|
18481
|
+
*/
|
|
18482
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasTypeCaption = function() {
|
|
18483
|
+
return jspb.Message.getField(this, 14) != null;
|
|
18484
|
+
};
|
|
18485
|
+
|
|
18486
|
+
|
|
18487
|
+
/**
|
|
18488
|
+
* optional string type_group = 15;
|
|
18489
|
+
* @return {string}
|
|
18490
|
+
*/
|
|
18491
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getTypeGroup = function() {
|
|
18492
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
18493
|
+
};
|
|
18494
|
+
|
|
18495
|
+
|
|
18496
|
+
/**
|
|
18497
|
+
* @param {string} value
|
|
18498
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
18499
|
+
*/
|
|
18500
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setTypeGroup = function(value) {
|
|
18501
|
+
return jspb.Message.setField(this, 15, value);
|
|
18502
|
+
};
|
|
18503
|
+
|
|
18504
|
+
|
|
18505
|
+
/**
|
|
18506
|
+
* Clears the field making it undefined.
|
|
18507
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
18508
|
+
*/
|
|
18509
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearTypeGroup = function() {
|
|
18510
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
18511
|
+
};
|
|
18512
|
+
|
|
18513
|
+
|
|
18514
|
+
/**
|
|
18515
|
+
* Returns whether this field is set.
|
|
18516
|
+
* @return {boolean}
|
|
18517
|
+
*/
|
|
18518
|
+
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasTypeGroup = function() {
|
|
18519
|
+
return jspb.Message.getField(this, 15) != null;
|
|
18520
|
+
};
|
|
18521
|
+
|
|
18522
|
+
|
|
18397
18523
|
/**
|
|
18398
18524
|
* optional string make_name = 11;
|
|
18399
18525
|
* @return {string}
|