@lansweeper/data-platform-outbound-grpc 0.1.93 → 0.1.94

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.
@@ -805,11 +805,10 @@ export class Computer extends jspb.Message {
805
805
  clearInternetExplorer(): void;
806
806
  getInternetExplorer(): InternetExplorer | undefined;
807
807
  setInternetExplorer(value?: InternetExplorer): Computer;
808
-
809
- hasWindowsSqlServer(): boolean;
810
- clearWindowsSqlServer(): void;
811
- getWindowsSqlServer(): WindowsSqlServer | undefined;
812
- setWindowsSqlServer(value?: WindowsSqlServer): Computer;
808
+ clearWindowsSqlServerList(): void;
809
+ getWindowsSqlServerList(): Array<WindowsSqlServer>;
810
+ setWindowsSqlServerList(value: Array<WindowsSqlServer>): Computer;
811
+ addWindowsSqlServer(value?: WindowsSqlServer, index?: number): WindowsSqlServer;
813
812
  clearWindowsNetworkClientList(): void;
814
813
  getWindowsNetworkClientList(): Array<ComputerWindowsNetworkClient>;
815
814
  setWindowsNetworkClientList(value: Array<ComputerWindowsNetworkClient>): Computer;
@@ -929,7 +928,7 @@ export namespace Computer {
929
928
  runningProcessList: Array<RunningProcess.AsObject>,
930
929
  sharedResourceList: Array<SharedResource.AsObject>,
931
930
  internetExplorer?: InternetExplorer.AsObject,
932
- windowsSqlServer?: WindowsSqlServer.AsObject,
931
+ windowsSqlServerList: Array<WindowsSqlServer.AsObject>,
933
932
  windowsNetworkClientList: Array<ComputerWindowsNetworkClient.AsObject>,
934
933
  networkVolumeList: Array<NetworkVolume.AsObject>,
935
934
  windowsCertList: Array<ComputerWindowsCertificate.AsObject>,
@@ -7881,7 +7881,7 @@ proto.com.lansweeper.dp.outbound.v1.AssetChangeEvent.prototype.hasOs = function(
7881
7881
  * @private {!Array<number>}
7882
7882
  * @const
7883
7883
  */
7884
- proto.com.lansweeper.dp.outbound.v1.Computer.repeatedFields_ = [3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,33,27,32,28,29,30,31,102,103,105,107,202,203,205,206,207,210,211,212,213,214,215,216,217,218,219,302,303,304];
7884
+ proto.com.lansweeper.dp.outbound.v1.Computer.repeatedFields_ = [3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,33,27,32,28,29,30,31,102,103,105,107,202,203,205,206,207,209,210,211,212,213,214,215,216,217,218,219,302,303,304];
7885
7885
 
7886
7886
 
7887
7887
 
@@ -8002,7 +8002,8 @@ proto.com.lansweeper.dp.outbound.v1.Computer.toObject = function(includeInstance
8002
8002
  sharedResourceList: jspb.Message.toObjectList(msg.getSharedResourceList(),
8003
8003
  proto.com.lansweeper.dp.outbound.v1.SharedResource.toObject, includeInstance),
8004
8004
  internetExplorer: (f = msg.getInternetExplorer()) && proto.com.lansweeper.dp.outbound.v1.InternetExplorer.toObject(includeInstance, f),
8005
- windowsSqlServer: (f = msg.getWindowsSqlServer()) && proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer.toObject(includeInstance, f),
8005
+ windowsSqlServerList: jspb.Message.toObjectList(msg.getWindowsSqlServerList(),
8006
+ proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer.toObject, includeInstance),
8006
8007
  windowsNetworkClientList: jspb.Message.toObjectList(msg.getWindowsNetworkClientList(),
8007
8008
  proto.com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient.toObject, includeInstance),
8008
8009
  networkVolumeList: jspb.Message.toObjectList(msg.getNetworkVolumeList(),
@@ -8314,7 +8315,7 @@ proto.com.lansweeper.dp.outbound.v1.Computer.deserializeBinaryFromReader = funct
8314
8315
  case 209:
8315
8316
  var value = new proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer;
8316
8317
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer.deserializeBinaryFromReader);
8317
- msg.setWindowsSqlServer(value);
8318
+ msg.addWindowsSqlServer(value);
8318
8319
  break;
8319
8320
  case 210:
8320
8321
  var value = new proto.com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient;
@@ -8807,9 +8808,9 @@ proto.com.lansweeper.dp.outbound.v1.Computer.serializeBinaryToWriter = function(
8807
8808
  proto.com.lansweeper.dp.outbound.v1.InternetExplorer.serializeBinaryToWriter
8808
8809
  );
8809
8810
  }
8810
- f = message.getWindowsSqlServer();
8811
- if (f != null) {
8812
- writer.writeMessage(
8811
+ f = message.getWindowsSqlServerList();
8812
+ if (f.length > 0) {
8813
+ writer.writeRepeatedMessage(
8813
8814
  209,
8814
8815
  f,
8815
8816
  proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer.serializeBinaryToWriter
@@ -10783,39 +10784,40 @@ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.hasInternetExplorer = fun
10783
10784
 
10784
10785
 
10785
10786
  /**
10786
- * optional WindowsSqlServer windows_sql_server = 209;
10787
- * @return {?proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer}
10787
+ * repeated WindowsSqlServer windows_sql_server = 209;
10788
+ * @return {!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer>}
10788
10789
  */
10789
- proto.com.lansweeper.dp.outbound.v1.Computer.prototype.getWindowsSqlServer = function() {
10790
- return /** @type{?proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer} */ (
10791
- jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer, 209));
10790
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.getWindowsSqlServerList = function() {
10791
+ return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer>} */ (
10792
+ jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer, 209));
10792
10793
  };
10793
10794
 
10794
10795
 
10795
10796
  /**
10796
- * @param {?proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer|undefined} value
10797
+ * @param {!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer>} value
10797
10798
  * @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
10798
10799
  */
10799
- proto.com.lansweeper.dp.outbound.v1.Computer.prototype.setWindowsSqlServer = function(value) {
10800
- return jspb.Message.setWrapperField(this, 209, value);
10800
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.setWindowsSqlServerList = function(value) {
10801
+ return jspb.Message.setRepeatedWrapperField(this, 209, value);
10801
10802
  };
10802
10803
 
10803
10804
 
10804
10805
  /**
10805
- * Clears the message field making it undefined.
10806
- * @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
10806
+ * @param {!proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer=} opt_value
10807
+ * @param {number=} opt_index
10808
+ * @return {!proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer}
10807
10809
  */
10808
- proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearWindowsSqlServer = function() {
10809
- return this.setWindowsSqlServer(undefined);
10810
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.addWindowsSqlServer = function(opt_value, opt_index) {
10811
+ return jspb.Message.addToRepeatedWrapperField(this, 209, opt_value, proto.com.lansweeper.dp.outbound.v1.WindowsSqlServer, opt_index);
10810
10812
  };
10811
10813
 
10812
10814
 
10813
10815
  /**
10814
- * Returns whether this field is set.
10815
- * @return {boolean}
10816
+ * Clears the list making it empty but non-null.
10817
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
10816
10818
  */
10817
- proto.com.lansweeper.dp.outbound.v1.Computer.prototype.hasWindowsSqlServer = function() {
10818
- return jspb.Message.getField(this, 209) != null;
10819
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearWindowsSqlServerList = function() {
10820
+ return this.setWindowsSqlServerList([]);
10819
10821
  };
10820
10822
 
10821
10823