@lansweeper/data-platform-outbound-grpc 0.1.11 → 0.1.12
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 +3 -0
- package/gen-proto/outbound_pb.js +30 -0
- package/generated-go/outbound.pb.go +870 -860
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +2 -0
|
@@ -273,6 +273,8 @@ export namespace Asset {
|
|
|
273
273
|
export class AssetType extends jspb.Message {
|
|
274
274
|
getLsName(): string;
|
|
275
275
|
setLsName(value: string): AssetType;
|
|
276
|
+
getLsId(): number;
|
|
277
|
+
setLsId(value: number): AssetType;
|
|
276
278
|
|
|
277
279
|
hasFingType(): boolean;
|
|
278
280
|
clearFingType(): void;
|
|
@@ -292,6 +294,7 @@ export class AssetType extends jspb.Message {
|
|
|
292
294
|
export namespace AssetType {
|
|
293
295
|
export type AsObject = {
|
|
294
296
|
lsName: string,
|
|
297
|
+
lsId: number,
|
|
295
298
|
fingType?: string,
|
|
296
299
|
}
|
|
297
300
|
}
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -2491,6 +2491,7 @@ proto.com.lansweeper.dp.outbound.v1.AssetType.prototype.toObject = function(opt_
|
|
|
2491
2491
|
proto.com.lansweeper.dp.outbound.v1.AssetType.toObject = function(includeInstance, msg) {
|
|
2492
2492
|
var f, obj = {
|
|
2493
2493
|
lsName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2494
|
+
lsId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
2494
2495
|
fingType: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
2495
2496
|
};
|
|
2496
2497
|
|
|
@@ -2532,6 +2533,10 @@ proto.com.lansweeper.dp.outbound.v1.AssetType.deserializeBinaryFromReader = func
|
|
|
2532
2533
|
var value = /** @type {string} */ (reader.readString());
|
|
2533
2534
|
msg.setLsName(value);
|
|
2534
2535
|
break;
|
|
2536
|
+
case 3:
|
|
2537
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
2538
|
+
msg.setLsId(value);
|
|
2539
|
+
break;
|
|
2535
2540
|
case 2:
|
|
2536
2541
|
var value = /** @type {string} */ (reader.readString());
|
|
2537
2542
|
msg.setFingType(value);
|
|
@@ -2572,6 +2577,13 @@ proto.com.lansweeper.dp.outbound.v1.AssetType.serializeBinaryToWriter = function
|
|
|
2572
2577
|
f
|
|
2573
2578
|
);
|
|
2574
2579
|
}
|
|
2580
|
+
f = message.getLsId();
|
|
2581
|
+
if (f !== 0) {
|
|
2582
|
+
writer.writeInt32(
|
|
2583
|
+
3,
|
|
2584
|
+
f
|
|
2585
|
+
);
|
|
2586
|
+
}
|
|
2575
2587
|
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
2576
2588
|
if (f != null) {
|
|
2577
2589
|
writer.writeString(
|
|
@@ -2600,6 +2612,24 @@ proto.com.lansweeper.dp.outbound.v1.AssetType.prototype.setLsName = function(val
|
|
|
2600
2612
|
};
|
|
2601
2613
|
|
|
2602
2614
|
|
|
2615
|
+
/**
|
|
2616
|
+
* optional int32 ls_id = 3;
|
|
2617
|
+
* @return {number}
|
|
2618
|
+
*/
|
|
2619
|
+
proto.com.lansweeper.dp.outbound.v1.AssetType.prototype.getLsId = function() {
|
|
2620
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
2621
|
+
};
|
|
2622
|
+
|
|
2623
|
+
|
|
2624
|
+
/**
|
|
2625
|
+
* @param {number} value
|
|
2626
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.AssetType} returns this
|
|
2627
|
+
*/
|
|
2628
|
+
proto.com.lansweeper.dp.outbound.v1.AssetType.prototype.setLsId = function(value) {
|
|
2629
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
|
2630
|
+
};
|
|
2631
|
+
|
|
2632
|
+
|
|
2603
2633
|
/**
|
|
2604
2634
|
* optional string fing_type = 2;
|
|
2605
2635
|
* @return {string}
|