@lansweeper/multitenant-api-grpc 0.4.76 → 0.4.78

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.
@@ -600,6 +600,10 @@ export namespace Install {
600
600
  export class InstallState extends jspb.Message {
601
601
  getValue(): InstallStateValue;
602
602
  setValue(value: InstallStateValue): InstallState;
603
+ getDeletedOn(): string;
604
+ setDeletedOn(value: string): InstallState;
605
+ getDeletedDataStartedOn(): string;
606
+ setDeletedDataStartedOn(value: string): InstallState;
603
607
 
604
608
  serializeBinary(): Uint8Array;
605
609
  toObject(includeInstance?: boolean): InstallState.AsObject;
@@ -614,6 +618,8 @@ export namespace Install {
614
618
  export namespace InstallState {
615
619
  export type AsObject = {
616
620
  value: InstallStateValue,
621
+ deletedOn: string,
622
+ deletedDataStartedOn: string,
617
623
  }
618
624
  }
619
625
 
@@ -3315,6 +3321,7 @@ export enum InstallType {
3315
3321
  IT_AGENT = 2,
3316
3322
  CLOUD = 3,
3317
3323
  NETWORK_DISCOVERY = 4,
3324
+ MANUAL = 5,
3318
3325
  }
3319
3326
 
3320
3327
  export enum SubscriptionType {
@@ -6958,7 +6958,9 @@ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.toObject = functi
6958
6958
  */
6959
6959
  proto.lansweeper.multitenant.v1.Install.InstallState.toObject = function(includeInstance, msg) {
6960
6960
  var f, obj = {
6961
- value: jspb.Message.getFieldWithDefault(msg, 1, 0)
6961
+ value: jspb.Message.getFieldWithDefault(msg, 1, 0),
6962
+ deletedOn: jspb.Message.getFieldWithDefault(msg, 2, ""),
6963
+ deletedDataStartedOn: jspb.Message.getFieldWithDefault(msg, 3, "")
6962
6964
  };
6963
6965
 
6964
6966
  if (includeInstance) {
@@ -6999,6 +7001,14 @@ proto.lansweeper.multitenant.v1.Install.InstallState.deserializeBinaryFromReader
6999
7001
  var value = /** @type {!proto.lansweeper.multitenant.v1.InstallStateValue} */ (reader.readEnum());
7000
7002
  msg.setValue(value);
7001
7003
  break;
7004
+ case 2:
7005
+ var value = /** @type {string} */ (reader.readString());
7006
+ msg.setDeletedOn(value);
7007
+ break;
7008
+ case 3:
7009
+ var value = /** @type {string} */ (reader.readString());
7010
+ msg.setDeletedDataStartedOn(value);
7011
+ break;
7002
7012
  default:
7003
7013
  reader.skipField();
7004
7014
  break;
@@ -7035,6 +7045,20 @@ proto.lansweeper.multitenant.v1.Install.InstallState.serializeBinaryToWriter = f
7035
7045
  f
7036
7046
  );
7037
7047
  }
7048
+ f = message.getDeletedOn();
7049
+ if (f.length > 0) {
7050
+ writer.writeString(
7051
+ 2,
7052
+ f
7053
+ );
7054
+ }
7055
+ f = message.getDeletedDataStartedOn();
7056
+ if (f.length > 0) {
7057
+ writer.writeString(
7058
+ 3,
7059
+ f
7060
+ );
7061
+ }
7038
7062
  };
7039
7063
 
7040
7064
 
@@ -7056,6 +7080,42 @@ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.setValue = functi
7056
7080
  };
7057
7081
 
7058
7082
 
7083
+ /**
7084
+ * optional string deleted_on = 2;
7085
+ * @return {string}
7086
+ */
7087
+ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.getDeletedOn = function() {
7088
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
7089
+ };
7090
+
7091
+
7092
+ /**
7093
+ * @param {string} value
7094
+ * @return {!proto.lansweeper.multitenant.v1.Install.InstallState} returns this
7095
+ */
7096
+ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.setDeletedOn = function(value) {
7097
+ return jspb.Message.setProto3StringField(this, 2, value);
7098
+ };
7099
+
7100
+
7101
+ /**
7102
+ * optional string deleted_data_started_on = 3;
7103
+ * @return {string}
7104
+ */
7105
+ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.getDeletedDataStartedOn = function() {
7106
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
7107
+ };
7108
+
7109
+
7110
+ /**
7111
+ * @param {string} value
7112
+ * @return {!proto.lansweeper.multitenant.v1.Install.InstallState} returns this
7113
+ */
7114
+ proto.lansweeper.multitenant.v1.Install.InstallState.prototype.setDeletedDataStartedOn = function(value) {
7115
+ return jspb.Message.setProto3StringField(this, 3, value);
7116
+ };
7117
+
7118
+
7059
7119
  /**
7060
7120
  * optional string id = 1;
7061
7121
  * @return {string}
@@ -26354,7 +26414,8 @@ proto.lansweeper.multitenant.v1.InstallType = {
26354
26414
  OT: 1,
26355
26415
  IT_AGENT: 2,
26356
26416
  CLOUD: 3,
26357
- NETWORK_DISCOVERY: 4
26417
+ NETWORK_DISCOVERY: 4,
26418
+ MANUAL: 5
26358
26419
  };
26359
26420
 
26360
26421
  /**