@lansweeper/diagrams-grpc 0.0.58 → 0.0.60

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.0.60](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.59...@lansweeper/diagrams-grpc@0.0.60) (2025-04-16)
7
+
8
+ **Note:** Version bump only for package @lansweeper/diagrams-grpc
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.0.59](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.58...@lansweeper/diagrams-grpc@0.0.59) (2025-04-16)
15
+
16
+ **Note:** Version bump only for package @lansweeper/diagrams-grpc
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.0.58](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.57...@lansweeper/diagrams-grpc@0.0.58) (2024-05-02)
7
23
 
8
24
  **Note:** Version bump only for package @lansweeper/diagrams-grpc
@@ -7,9 +7,9 @@
7
7
  <Company>Lansweeper</Company>
8
8
  <Product>Lansweeper Diagrams</Product>
9
9
  <Copyright>Lansweeper</Copyright>
10
- <PackageVersion>0.0.57</PackageVersion>
11
- <Version>0.0.57</Version>
12
- <FileVersion>0.0.57</FileVersion>
10
+ <PackageVersion>0.0.59</PackageVersion>
11
+ <Version>0.0.59</Version>
12
+ <FileVersion>0.0.59</FileVersion>
13
13
  <RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
14
14
  </PropertyGroup>
15
15
  <ItemGroup>
@@ -6,7 +6,7 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v6.0": {
9
- "Lansweeper.Diagrams.GRPC/0.0.57": {
9
+ "Lansweeper.Diagrams.GRPC/0.0.59": {
10
10
  "dependencies": {
11
11
  "Google.Protobuf": "3.15.0",
12
12
  "Grpc": "2.46.1",
@@ -91,7 +91,7 @@
91
91
  }
92
92
  },
93
93
  "libraries": {
94
- "Lansweeper.Diagrams.GRPC/0.0.57": {
94
+ "Lansweeper.Diagrams.GRPC/0.0.59": {
95
95
  "type": "project",
96
96
  "serviceable": false,
97
97
  "sha512": ""
@@ -15,6 +15,8 @@ export class DiagramInventorySignatureRequest extends jspb.Message {
15
15
  setInstallationKey(value: string): DiagramInventorySignatureRequest;
16
16
  getIpLocationId(): string;
17
17
  setIpLocationId(value: string): DiagramInventorySignatureRequest;
18
+ getCloudProvider(): string;
19
+ setCloudProvider(value: string): DiagramInventorySignatureRequest;
18
20
 
19
21
  serializeBinary(): Uint8Array;
20
22
  toObject(includeInstance?: boolean): DiagramInventorySignatureRequest.AsObject;
@@ -31,6 +33,7 @@ export namespace DiagramInventorySignatureRequest {
31
33
  clientKey: string,
32
34
  installationKey: string,
33
35
  ipLocationId: string,
36
+ cloudProvider: string,
34
37
  }
35
38
  }
36
39
 
@@ -48,6 +51,8 @@ export class DiagramRequest extends jspb.Message {
48
51
  setIpLocationId(value: string): DiagramRequest;
49
52
  getUserEmailAddress(): string;
50
53
  setUserEmailAddress(value: string): DiagramRequest;
54
+ getCloudProvider(): string;
55
+ setCloudProvider(value: string): DiagramRequest;
51
56
 
52
57
  serializeBinary(): Uint8Array;
53
58
  toObject(includeInstance?: boolean): DiagramRequest.AsObject;
@@ -68,6 +73,7 @@ export namespace DiagramRequest {
68
73
  traceId: string,
69
74
  ipLocationId: string,
70
75
  userEmailAddress: string,
76
+ cloudProvider: string,
71
77
  }
72
78
  }
73
79
 
@@ -700,7 +700,8 @@ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.toObject = functio
700
700
  var f, obj = {
701
701
  clientKey: jspb.Message.getFieldWithDefault(msg, 1, ""),
702
702
  installationKey: jspb.Message.getFieldWithDefault(msg, 2, ""),
703
- ipLocationId: jspb.Message.getFieldWithDefault(msg, 3, "")
703
+ ipLocationId: jspb.Message.getFieldWithDefault(msg, 3, ""),
704
+ cloudProvider: jspb.Message.getFieldWithDefault(msg, 4, "")
704
705
  };
705
706
 
706
707
  if (includeInstance) {
@@ -749,6 +750,10 @@ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.deserializeBinaryF
749
750
  var value = /** @type {string} */ (reader.readString());
750
751
  msg.setIpLocationId(value);
751
752
  break;
753
+ case 4:
754
+ var value = /** @type {string} */ (reader.readString());
755
+ msg.setCloudProvider(value);
756
+ break;
752
757
  default:
753
758
  reader.skipField();
754
759
  break;
@@ -799,6 +804,13 @@ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.serializeBinaryToW
799
804
  f
800
805
  );
801
806
  }
807
+ f = message.getCloudProvider();
808
+ if (f.length > 0) {
809
+ writer.writeString(
810
+ 4,
811
+ f
812
+ );
813
+ }
802
814
  };
803
815
 
804
816
 
@@ -856,6 +868,24 @@ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.prototype.setIpLoc
856
868
  };
857
869
 
858
870
 
871
+ /**
872
+ * optional string cloud_provider = 4;
873
+ * @return {string}
874
+ */
875
+ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.prototype.getCloudProvider = function() {
876
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
877
+ };
878
+
879
+
880
+ /**
881
+ * @param {string} value
882
+ * @return {!proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest} returns this
883
+ */
884
+ proto.lansweeper.diagrams.v1.DiagramInventorySignatureRequest.prototype.setCloudProvider = function(value) {
885
+ return jspb.Message.setProto3StringField(this, 4, value);
886
+ };
887
+
888
+
859
889
 
860
890
 
861
891
 
@@ -893,7 +923,8 @@ proto.lansweeper.diagrams.v1.DiagramRequest.toObject = function(includeInstance,
893
923
  assetScopesRulesMap: (f = msg.getAssetScopesRulesMap()) ? f.toObject(includeInstance, undefined) : [],
894
924
  traceId: jspb.Message.getFieldWithDefault(msg, 4, ""),
895
925
  ipLocationId: jspb.Message.getFieldWithDefault(msg, 5, ""),
896
- userEmailAddress: jspb.Message.getFieldWithDefault(msg, 6, "")
926
+ userEmailAddress: jspb.Message.getFieldWithDefault(msg, 6, ""),
927
+ cloudProvider: jspb.Message.getFieldWithDefault(msg, 7, "")
897
928
  };
898
929
 
899
930
  if (includeInstance) {
@@ -956,6 +987,10 @@ proto.lansweeper.diagrams.v1.DiagramRequest.deserializeBinaryFromReader = functi
956
987
  var value = /** @type {string} */ (reader.readString());
957
988
  msg.setUserEmailAddress(value);
958
989
  break;
990
+ case 7:
991
+ var value = /** @type {string} */ (reader.readString());
992
+ msg.setCloudProvider(value);
993
+ break;
959
994
  default:
960
995
  reader.skipField();
961
996
  break;
@@ -1024,6 +1059,13 @@ proto.lansweeper.diagrams.v1.DiagramRequest.serializeBinaryToWriter = function(m
1024
1059
  f
1025
1060
  );
1026
1061
  }
1062
+ f = message.getCloudProvider();
1063
+ if (f.length > 0) {
1064
+ writer.writeString(
1065
+ 7,
1066
+ f
1067
+ );
1068
+ }
1027
1069
  };
1028
1070
 
1029
1071
 
@@ -1139,6 +1181,24 @@ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.setUserEmailAddress = func
1139
1181
  };
1140
1182
 
1141
1183
 
1184
+ /**
1185
+ * optional string cloud_provider = 7;
1186
+ * @return {string}
1187
+ */
1188
+ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.getCloudProvider = function() {
1189
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
1190
+ };
1191
+
1192
+
1193
+ /**
1194
+ * @param {string} value
1195
+ * @return {!proto.lansweeper.diagrams.v1.DiagramRequest} returns this
1196
+ */
1197
+ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.setCloudProvider = function(value) {
1198
+ return jspb.Message.setProto3StringField(this, 7, value);
1199
+ };
1200
+
1201
+
1142
1202
 
1143
1203
 
1144
1204