@lansweeper/discovery-sensor-proto 2.76.0 → 2.76.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.
@@ -3778,6 +3778,10 @@ export class Office365Group extends jspb.Message {
3778
3778
  clearType(): void;
3779
3779
  getType(): google_protobuf_wrappers_pb.StringValue | undefined;
3780
3780
  setType(value?: google_protobuf_wrappers_pb.StringValue): Office365Group;
3781
+ clearUserIdsList(): void;
3782
+ getUserIdsList(): Array<string>;
3783
+ setUserIdsList(value: Array<string>): Office365Group;
3784
+ addUserIds(value: string, index?: number): string;
3781
3785
 
3782
3786
  serializeBinary(): Uint8Array;
3783
3787
  toObject(includeInstance?: boolean): Office365Group.AsObject;
@@ -3801,6 +3805,7 @@ export namespace Office365Group {
3801
3805
  proxyAddresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
3802
3806
  usersList: Array<Office365User.AsObject>,
3803
3807
  type?: google_protobuf_wrappers_pb.StringValue.AsObject,
3808
+ userIdsList: Array<string>,
3804
3809
  }
3805
3810
  }
3806
3811
 
@@ -3843,6 +3848,10 @@ export class Office365License extends jspb.Message {
3843
3848
  clearName(): void;
3844
3849
  getName(): google_protobuf_wrappers_pb.StringValue | undefined;
3845
3850
  setName(value?: google_protobuf_wrappers_pb.StringValue): Office365License;
3851
+ clearUserIdsList(): void;
3852
+ getUserIdsList(): Array<string>;
3853
+ setUserIdsList(value: Array<string>): Office365License;
3854
+ addUserIds(value: string, index?: number): string;
3846
3855
 
3847
3856
  serializeBinary(): Uint8Array;
3848
3857
  toObject(includeInstance?: boolean): Office365License.AsObject;
@@ -3867,6 +3876,7 @@ export namespace Office365License {
3867
3876
  usersList: Array<Office365User.AsObject>,
3868
3877
  servicePlansList: Array<Office365ServicePlan.AsObject>,
3869
3878
  name?: google_protobuf_wrappers_pb.StringValue.AsObject,
3879
+ userIdsList: Array<string>,
3870
3880
  }
3871
3881
  }
3872
3882
 
@@ -31413,7 +31413,7 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365Domain.prototype.hasAvaila
31413
31413
  * @private {!Array<number>}
31414
31414
  * @const
31415
31415
  */
31416
- proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.repeatedFields_ = [9];
31416
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.repeatedFields_ = [9,11];
31417
31417
 
31418
31418
 
31419
31419
 
@@ -31456,7 +31456,8 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.toObject = function(
31456
31456
  proxyAddresses: (f = msg.getProxyAddresses()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
31457
31457
  usersList: jspb.Message.toObjectList(msg.getUsersList(),
31458
31458
  proto.com.lansweeper.discovery.sensor.api.v1.Office365User.toObject, includeInstance),
31459
- type: (f = msg.getType()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
31459
+ type: (f = msg.getType()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
31460
+ userIdsList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f
31460
31461
  };
31461
31462
 
31462
31463
  if (includeInstance) {
@@ -31540,6 +31541,10 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.deserializeBinaryFro
31540
31541
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
31541
31542
  msg.setType(value);
31542
31543
  break;
31544
+ case 11:
31545
+ var value = /** @type {string} */ (reader.readString());
31546
+ msg.addUserIds(value);
31547
+ break;
31543
31548
  default:
31544
31549
  reader.skipField();
31545
31550
  break;
@@ -31646,6 +31651,13 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.serializeBinaryToWri
31646
31651
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
31647
31652
  );
31648
31653
  }
31654
+ f = message.getUserIdsList();
31655
+ if (f.length > 0) {
31656
+ writer.writeRepeatedString(
31657
+ 11,
31658
+ f
31659
+ );
31660
+ }
31649
31661
  };
31650
31662
 
31651
31663
 
@@ -31963,13 +31975,50 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.prototype.hasType =
31963
31975
  };
31964
31976
 
31965
31977
 
31978
+ /**
31979
+ * repeated string user_ids = 11;
31980
+ * @return {!Array<string>}
31981
+ */
31982
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.prototype.getUserIdsList = function() {
31983
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 11));
31984
+ };
31985
+
31986
+
31987
+ /**
31988
+ * @param {!Array<string>} value
31989
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365Group} returns this
31990
+ */
31991
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.prototype.setUserIdsList = function(value) {
31992
+ return jspb.Message.setField(this, 11, value || []);
31993
+ };
31994
+
31995
+
31996
+ /**
31997
+ * @param {string} value
31998
+ * @param {number=} opt_index
31999
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365Group} returns this
32000
+ */
32001
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.prototype.addUserIds = function(value, opt_index) {
32002
+ return jspb.Message.addToRepeatedField(this, 11, value, opt_index);
32003
+ };
32004
+
32005
+
32006
+ /**
32007
+ * Clears the list making it empty but non-null.
32008
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365Group} returns this
32009
+ */
32010
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365Group.prototype.clearUserIdsList = function() {
32011
+ return this.setUserIdsList([]);
32012
+ };
32013
+
32014
+
31966
32015
 
31967
32016
  /**
31968
32017
  * List of repeated fields within this message type.
31969
32018
  * @private {!Array<number>}
31970
32019
  * @const
31971
32020
  */
31972
- proto.com.lansweeper.discovery.sensor.api.v1.Office365License.repeatedFields_ = [9,10];
32021
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.repeatedFields_ = [9,10,12];
31973
32022
 
31974
32023
 
31975
32024
 
@@ -32014,7 +32063,8 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.toObject = functio
32014
32063
  proto.com.lansweeper.discovery.sensor.api.v1.Office365User.toObject, includeInstance),
32015
32064
  servicePlansList: jspb.Message.toObjectList(msg.getServicePlansList(),
32016
32065
  proto.com.lansweeper.discovery.sensor.api.v1.Office365ServicePlan.toObject, includeInstance),
32017
- name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
32066
+ name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
32067
+ userIdsList: (f = jspb.Message.getRepeatedField(msg, 12)) == null ? undefined : f
32018
32068
  };
32019
32069
 
32020
32070
  if (includeInstance) {
@@ -32101,6 +32151,10 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.deserializeBinaryF
32101
32151
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
32102
32152
  msg.setName(value);
32103
32153
  break;
32154
+ case 12:
32155
+ var value = /** @type {string} */ (reader.readString());
32156
+ msg.addUserIds(value);
32157
+ break;
32104
32158
  default:
32105
32159
  reader.skipField();
32106
32160
  break;
@@ -32213,6 +32267,13 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.serializeBinaryToW
32213
32267
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
32214
32268
  );
32215
32269
  }
32270
+ f = message.getUserIdsList();
32271
+ if (f.length > 0) {
32272
+ writer.writeRepeatedString(
32273
+ 12,
32274
+ f
32275
+ );
32276
+ }
32216
32277
  };
32217
32278
 
32218
32279
 
@@ -32530,6 +32591,43 @@ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.prototype.hasName
32530
32591
  };
32531
32592
 
32532
32593
 
32594
+ /**
32595
+ * repeated string user_ids = 12;
32596
+ * @return {!Array<string>}
32597
+ */
32598
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.prototype.getUserIdsList = function() {
32599
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 12));
32600
+ };
32601
+
32602
+
32603
+ /**
32604
+ * @param {!Array<string>} value
32605
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365License} returns this
32606
+ */
32607
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.prototype.setUserIdsList = function(value) {
32608
+ return jspb.Message.setField(this, 12, value || []);
32609
+ };
32610
+
32611
+
32612
+ /**
32613
+ * @param {string} value
32614
+ * @param {number=} opt_index
32615
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365License} returns this
32616
+ */
32617
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.prototype.addUserIds = function(value, opt_index) {
32618
+ return jspb.Message.addToRepeatedField(this, 12, value, opt_index);
32619
+ };
32620
+
32621
+
32622
+ /**
32623
+ * Clears the list making it empty but non-null.
32624
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.Office365License} returns this
32625
+ */
32626
+ proto.com.lansweeper.discovery.sensor.api.v1.Office365License.prototype.clearUserIdsList = function() {
32627
+ return this.setUserIdsList([]);
32628
+ };
32629
+
32630
+
32533
32631
 
32534
32632
 
32535
32633