@lansweeper/discovery-sensor-proto 2.73.1 → 2.73.2
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.
|
@@ -2853,6 +2853,10 @@ export class IntuneDevice extends jspb.Message {
|
|
|
2853
2853
|
clearDeviceCategoryDescription(): void;
|
|
2854
2854
|
getDeviceCategoryDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
2855
2855
|
setDeviceCategoryDescription(value?: google_protobuf_wrappers_pb.StringValue): IntuneDevice;
|
|
2856
|
+
clearIntuneApplicationsList(): void;
|
|
2857
|
+
getIntuneApplicationsList(): Array<IntuneApplication>;
|
|
2858
|
+
setIntuneApplicationsList(value: Array<IntuneApplication>): IntuneDevice;
|
|
2859
|
+
addIntuneApplications(value?: IntuneApplication, index?: number): IntuneApplication;
|
|
2856
2860
|
|
|
2857
2861
|
serializeBinary(): Uint8Array;
|
|
2858
2862
|
toObject(includeInstance?: boolean): IntuneDevice.AsObject;
|
|
@@ -2952,6 +2956,7 @@ export namespace IntuneDevice {
|
|
|
2952
2956
|
deviceCategoryId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
2953
2957
|
deviceCategoryDisplayName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
2954
2958
|
deviceCategoryDescription?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
2959
|
+
intuneApplicationsList: Array<IntuneApplication.AsObject>,
|
|
2955
2960
|
}
|
|
2956
2961
|
}
|
|
2957
2962
|
|
|
@@ -21106,7 +21106,7 @@ proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication.prototype.clearMa
|
|
|
21106
21106
|
* @private {!Array<number>}
|
|
21107
21107
|
* @const
|
|
21108
21108
|
*/
|
|
21109
|
-
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.repeatedFields_ = [27];
|
|
21109
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.repeatedFields_ = [27,87];
|
|
21110
21110
|
|
|
21111
21111
|
|
|
21112
21112
|
|
|
@@ -21225,7 +21225,9 @@ proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.toObject = function(in
|
|
|
21225
21225
|
restartCount: (f = msg.getRestartCount()) && google_protobuf_wrappers_pb.Int64Value.toObject(includeInstance, f),
|
|
21226
21226
|
deviceCategoryId: (f = msg.getDeviceCategoryId()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
21227
21227
|
deviceCategoryDisplayName: (f = msg.getDeviceCategoryDisplayName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
21228
|
-
deviceCategoryDescription: (f = msg.getDeviceCategoryDescription()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
21228
|
+
deviceCategoryDescription: (f = msg.getDeviceCategoryDescription()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
21229
|
+
intuneApplicationsList: jspb.Message.toObjectList(msg.getIntuneApplicationsList(),
|
|
21230
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication.toObject, includeInstance)
|
|
21229
21231
|
};
|
|
21230
21232
|
|
|
21231
21233
|
if (includeInstance) {
|
|
@@ -21692,6 +21694,11 @@ proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.deserializeBinaryFromR
|
|
|
21692
21694
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
21693
21695
|
msg.setDeviceCategoryDescription(value);
|
|
21694
21696
|
break;
|
|
21697
|
+
case 87:
|
|
21698
|
+
var value = new proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication;
|
|
21699
|
+
reader.readMessage(value,proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication.deserializeBinaryFromReader);
|
|
21700
|
+
msg.addIntuneApplications(value);
|
|
21701
|
+
break;
|
|
21695
21702
|
default:
|
|
21696
21703
|
reader.skipField();
|
|
21697
21704
|
break;
|
|
@@ -22409,6 +22416,14 @@ proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.serializeBinaryToWrite
|
|
|
22409
22416
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
22410
22417
|
);
|
|
22411
22418
|
}
|
|
22419
|
+
f = message.getIntuneApplicationsList();
|
|
22420
|
+
if (f.length > 0) {
|
|
22421
|
+
writer.writeRepeatedMessage(
|
|
22422
|
+
87,
|
|
22423
|
+
f,
|
|
22424
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication.serializeBinaryToWriter
|
|
22425
|
+
);
|
|
22426
|
+
}
|
|
22412
22427
|
};
|
|
22413
22428
|
|
|
22414
22429
|
|
|
@@ -25595,6 +25610,44 @@ proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.prototype.hasDeviceCat
|
|
|
25595
25610
|
};
|
|
25596
25611
|
|
|
25597
25612
|
|
|
25613
|
+
/**
|
|
25614
|
+
* repeated IntuneApplication intune_applications = 87;
|
|
25615
|
+
* @return {!Array<!proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication>}
|
|
25616
|
+
*/
|
|
25617
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.prototype.getIntuneApplicationsList = function() {
|
|
25618
|
+
return /** @type{!Array<!proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication>} */ (
|
|
25619
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication, 87));
|
|
25620
|
+
};
|
|
25621
|
+
|
|
25622
|
+
|
|
25623
|
+
/**
|
|
25624
|
+
* @param {!Array<!proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication>} value
|
|
25625
|
+
* @return {!proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice} returns this
|
|
25626
|
+
*/
|
|
25627
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.prototype.setIntuneApplicationsList = function(value) {
|
|
25628
|
+
return jspb.Message.setRepeatedWrapperField(this, 87, value);
|
|
25629
|
+
};
|
|
25630
|
+
|
|
25631
|
+
|
|
25632
|
+
/**
|
|
25633
|
+
* @param {!proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication=} opt_value
|
|
25634
|
+
* @param {number=} opt_index
|
|
25635
|
+
* @return {!proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication}
|
|
25636
|
+
*/
|
|
25637
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.prototype.addIntuneApplications = function(opt_value, opt_index) {
|
|
25638
|
+
return jspb.Message.addToRepeatedWrapperField(this, 87, opt_value, proto.com.lansweeper.discovery.sensor.api.v1.IntuneApplication, opt_index);
|
|
25639
|
+
};
|
|
25640
|
+
|
|
25641
|
+
|
|
25642
|
+
/**
|
|
25643
|
+
* Clears the list making it empty but non-null.
|
|
25644
|
+
* @return {!proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice} returns this
|
|
25645
|
+
*/
|
|
25646
|
+
proto.com.lansweeper.discovery.sensor.api.v1.IntuneDevice.prototype.clearIntuneApplicationsList = function() {
|
|
25647
|
+
return this.setIntuneApplicationsList([]);
|
|
25648
|
+
};
|
|
25649
|
+
|
|
25650
|
+
|
|
25598
25651
|
|
|
25599
25652
|
|
|
25600
25653
|
|