@lansweeper/data-platform-outbound-grpc 0.3.4 → 0.3.5

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.
Files changed (27) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +6 -0
  4. package/gen-proto/outbound_pb.js +48 -0
  5. package/generated-go/outbound.pb.go +393 -383
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +1 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/outbound.proto +1 -0
  15. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.java +694 -537
  16. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.java +17 -0
  17. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +137 -136
  18. package/model/target/maven-archiver/pom.properties +2 -2
  19. package/model/target/{outbound-model-0.3.3-sources.jar → outbound-model-0.3.4-sources.jar} +0 -0
  20. package/model/target/{outbound-model-0.3.3.jar → outbound-model-0.3.4.jar} +0 -0
  21. package/package.json +2 -2
  22. package/pom.xml +1 -1
  23. package/proto/outbound.proto +1 -0
  24. package/service/pom.xml +1 -1
  25. package/service/target/maven-archiver/pom.properties +2 -2
  26. package/service/target/{outbound-service-0.3.3-sources.jar → outbound-service-0.3.4-sources.jar} +0 -0
  27. package/service/target/{outbound-service-0.3.3.jar → outbound-service-0.3.4.jar} +0 -0
@@ -14963,6 +14963,11 @@ export class ActiveDirectoryUser extends jspb.Message {
14963
14963
  getOu(): string | undefined;
14964
14964
  setOu(value: string): ActiveDirectoryUser;
14965
14965
 
14966
+ hasDomain(): boolean;
14967
+ clearDomain(): void;
14968
+ getDomain(): string | undefined;
14969
+ setDomain(value: string): ActiveDirectoryUser;
14970
+
14966
14971
  hasDescription(): boolean;
14967
14972
  clearDescription(): void;
14968
14973
  getDescription(): string | undefined;
@@ -15245,6 +15250,7 @@ export namespace ActiveDirectoryUser {
15245
15250
  samAccountName?: string,
15246
15251
  cn?: string,
15247
15252
  ou?: string,
15253
+ domain?: string,
15248
15254
  description?: string,
15249
15255
  comment?: string,
15250
15256
  company?: string,
@@ -119737,6 +119737,7 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.toObject = function(incl
119737
119737
  samAccountName: jspb.Message.getFieldWithDefault(msg, 2, ""),
119738
119738
  cn: jspb.Message.getFieldWithDefault(msg, 3, ""),
119739
119739
  ou: jspb.Message.getFieldWithDefault(msg, 4, ""),
119740
+ domain: jspb.Message.getFieldWithDefault(msg, 58, ""),
119740
119741
  description: jspb.Message.getFieldWithDefault(msg, 5, ""),
119741
119742
  comment: jspb.Message.getFieldWithDefault(msg, 6, ""),
119742
119743
  company: jspb.Message.getFieldWithDefault(msg, 7, ""),
@@ -119843,6 +119844,10 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.deserializeBinaryFromRea
119843
119844
  var value = /** @type {string} */ (reader.readString());
119844
119845
  msg.setOu(value);
119845
119846
  break;
119847
+ case 58:
119848
+ var value = /** @type {string} */ (reader.readString());
119849
+ msg.setDomain(value);
119850
+ break;
119846
119851
  case 5:
119847
119852
  var value = /** @type {string} */ (reader.readString());
119848
119853
  msg.setDescription(value);
@@ -120120,6 +120125,13 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.serializeBinaryToWriter
120120
120125
  f
120121
120126
  );
120122
120127
  }
120128
+ f = /** @type {string} */ (jspb.Message.getField(message, 58));
120129
+ if (f != null) {
120130
+ writer.writeString(
120131
+ 58,
120132
+ f
120133
+ );
120134
+ }
120123
120135
  f = /** @type {string} */ (jspb.Message.getField(message, 5));
120124
120136
  if (f != null) {
120125
120137
  writer.writeString(
@@ -120646,6 +120658,42 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.hasOu = functi
120646
120658
  };
120647
120659
 
120648
120660
 
120661
+ /**
120662
+ * optional string domain = 58;
120663
+ * @return {string}
120664
+ */
120665
+ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.getDomain = function() {
120666
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 58, ""));
120667
+ };
120668
+
120669
+
120670
+ /**
120671
+ * @param {string} value
120672
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser} returns this
120673
+ */
120674
+ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.setDomain = function(value) {
120675
+ return jspb.Message.setField(this, 58, value);
120676
+ };
120677
+
120678
+
120679
+ /**
120680
+ * Clears the field making it undefined.
120681
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser} returns this
120682
+ */
120683
+ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.clearDomain = function() {
120684
+ return jspb.Message.setField(this, 58, undefined);
120685
+ };
120686
+
120687
+
120688
+ /**
120689
+ * Returns whether this field is set.
120690
+ * @return {boolean}
120691
+ */
120692
+ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.hasDomain = function() {
120693
+ return jspb.Message.getField(this, 58) != null;
120694
+ };
120695
+
120696
+
120649
120697
  /**
120650
120698
  * optional string description = 5;
120651
120699
  * @return {string}