@lansweeper/multitenant-api-grpc 0.4.53 → 0.4.54

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.
@@ -532,6 +532,8 @@ export class Install extends jspb.Message {
532
532
  setType(value: string): Install;
533
533
  getInstallType(): InstallType;
534
534
  setInstallType(value: InstallType): Install;
535
+ getExternalId(): string;
536
+ setExternalId(value: string): Install;
535
537
 
536
538
  serializeBinary(): Uint8Array;
537
539
  toObject(includeInstance?: boolean): Install.AsObject;
@@ -558,6 +560,7 @@ export namespace Install {
558
560
  license: string,
559
561
  type: string,
560
562
  installType: InstallType,
563
+ externalId: string,
561
564
  }
562
565
 
563
566
 
@@ -5928,7 +5928,8 @@ proto.lansweeper.multitenant.v1.Install.toObject = function(includeInstance, msg
5928
5928
  createdAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
5929
5929
  license: jspb.Message.getFieldWithDefault(msg, 11, ""),
5930
5930
  type: jspb.Message.getFieldWithDefault(msg, 12, ""),
5931
- installType: jspb.Message.getFieldWithDefault(msg, 13, 0)
5931
+ installType: jspb.Message.getFieldWithDefault(msg, 13, 0),
5932
+ externalId: jspb.Message.getFieldWithDefault(msg, 14, "")
5932
5933
  };
5933
5934
 
5934
5935
  if (includeInstance) {
@@ -6018,6 +6019,10 @@ proto.lansweeper.multitenant.v1.Install.deserializeBinaryFromReader = function(m
6018
6019
  var value = /** @type {!proto.lansweeper.multitenant.v1.InstallType} */ (reader.readEnum());
6019
6020
  msg.setInstallType(value);
6020
6021
  break;
6022
+ case 14:
6023
+ var value = /** @type {string} */ (reader.readString());
6024
+ msg.setExternalId(value);
6025
+ break;
6021
6026
  default:
6022
6027
  reader.skipField();
6023
6028
  break;
@@ -6139,6 +6144,13 @@ proto.lansweeper.multitenant.v1.Install.serializeBinaryToWriter = function(messa
6139
6144
  f
6140
6145
  );
6141
6146
  }
6147
+ f = message.getExternalId();
6148
+ if (f.length > 0) {
6149
+ writer.writeString(
6150
+ 14,
6151
+ f
6152
+ );
6153
+ }
6142
6154
  };
6143
6155
 
6144
6156
 
@@ -6525,6 +6537,24 @@ proto.lansweeper.multitenant.v1.Install.prototype.setInstallType = function(valu
6525
6537
  };
6526
6538
 
6527
6539
 
6540
+ /**
6541
+ * optional string external_id = 14;
6542
+ * @return {string}
6543
+ */
6544
+ proto.lansweeper.multitenant.v1.Install.prototype.getExternalId = function() {
6545
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
6546
+ };
6547
+
6548
+
6549
+ /**
6550
+ * @param {string} value
6551
+ * @return {!proto.lansweeper.multitenant.v1.Install} returns this
6552
+ */
6553
+ proto.lansweeper.multitenant.v1.Install.prototype.setExternalId = function(value) {
6554
+ return jspb.Message.setProto3StringField(this, 14, value);
6555
+ };
6556
+
6557
+
6528
6558
 
6529
6559
 
6530
6560