@lansweeper/multitenant-api-grpc 0.4.77 → 0.4.79

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
 
@@ -1626,6 +1632,8 @@ export namespace GetUserPermissionsResponse {
1626
1632
  export class ValidateApplicationPersonalAccessTokenRequest extends jspb.Message {
1627
1633
  getPersonalAccessToken(): string;
1628
1634
  setPersonalAccessToken(value: string): ValidateApplicationPersonalAccessTokenRequest;
1635
+ getTraceId(): string;
1636
+ setTraceId(value: string): ValidateApplicationPersonalAccessTokenRequest;
1629
1637
 
1630
1638
  serializeBinary(): Uint8Array;
1631
1639
  toObject(includeInstance?: boolean): ValidateApplicationPersonalAccessTokenRequest.AsObject;
@@ -1640,6 +1648,7 @@ export class ValidateApplicationPersonalAccessTokenRequest extends jspb.Message
1640
1648
  export namespace ValidateApplicationPersonalAccessTokenRequest {
1641
1649
  export type AsObject = {
1642
1650
  personalAccessToken: string,
1651
+ traceId: string,
1643
1652
  }
1644
1653
  }
1645
1654
 
@@ -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}
@@ -14598,7 +14658,8 @@ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.pr
14598
14658
  */
14599
14659
  proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.toObject = function(includeInstance, msg) {
14600
14660
  var f, obj = {
14601
- personalAccessToken: jspb.Message.getFieldWithDefault(msg, 1, "")
14661
+ personalAccessToken: jspb.Message.getFieldWithDefault(msg, 1, ""),
14662
+ traceId: jspb.Message.getFieldWithDefault(msg, 2, "")
14602
14663
  };
14603
14664
 
14604
14665
  if (includeInstance) {
@@ -14639,6 +14700,10 @@ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.de
14639
14700
  var value = /** @type {string} */ (reader.readString());
14640
14701
  msg.setPersonalAccessToken(value);
14641
14702
  break;
14703
+ case 2:
14704
+ var value = /** @type {string} */ (reader.readString());
14705
+ msg.setTraceId(value);
14706
+ break;
14642
14707
  default:
14643
14708
  reader.skipField();
14644
14709
  break;
@@ -14675,6 +14740,13 @@ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.se
14675
14740
  f
14676
14741
  );
14677
14742
  }
14743
+ f = message.getTraceId();
14744
+ if (f.length > 0) {
14745
+ writer.writeString(
14746
+ 2,
14747
+ f
14748
+ );
14749
+ }
14678
14750
  };
14679
14751
 
14680
14752
 
@@ -14696,6 +14768,24 @@ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.pr
14696
14768
  };
14697
14769
 
14698
14770
 
14771
+ /**
14772
+ * optional string trace_id = 2;
14773
+ * @return {string}
14774
+ */
14775
+ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.prototype.getTraceId = function() {
14776
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
14777
+ };
14778
+
14779
+
14780
+ /**
14781
+ * @param {string} value
14782
+ * @return {!proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest} returns this
14783
+ */
14784
+ proto.lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest.prototype.setTraceId = function(value) {
14785
+ return jspb.Message.setProto3StringField(this, 2, value);
14786
+ };
14787
+
14788
+
14699
14789
 
14700
14790
 
14701
14791