@lansweeper/diagrams-grpc 0.0.17 → 0.0.18
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 +8 -0
- package/Lansweeper.Diagrams.GRPC.csproj +3 -3
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.deps.json +2 -2
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.pdb +0 -0
- package/gen-proto/diagrams_pb.d.ts +80 -0
- package/gen-proto/diagrams_pb.js +853 -127
- package/gen-proto/image.json +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.csproj.AssemblyReference.cache +0 -0
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.csproj.CoreCompileInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/proto/Diagrams.cs +755 -50
- package/obj/Debug/net6.0/ref/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Debug/net6.0/refint/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Lansweeper.Diagrams.GRPC.csproj.nuget.dgspec.json +2 -2
- package/obj/project.assets.json +2 -2
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/diagrams.proto +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.18](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.17...@lansweeper/diagrams-grpc@0.0.18) (2022-12-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.0.17](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.16...@lansweeper/diagrams-grpc@0.0.17) (2022-12-06)
|
|
7
15
|
|
|
8
16
|
**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.
|
|
11
|
-
<Version>0.0.
|
|
12
|
-
<FileVersion>0.0.
|
|
10
|
+
<PackageVersion>0.0.17</PackageVersion>
|
|
11
|
+
<Version>0.0.17</Version>
|
|
12
|
+
<FileVersion>0.0.17</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.
|
|
9
|
+
"Lansweeper.Diagrams.GRPC/0.0.17": {
|
|
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.
|
|
94
|
+
"Lansweeper.Diagrams.GRPC/0.0.17": {
|
|
95
95
|
"type": "project",
|
|
96
96
|
"serviceable": false,
|
|
97
97
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -65,6 +65,8 @@ export class Asset extends jspb.Message {
|
|
|
65
65
|
getErrorsList(): Array<AssetError>;
|
|
66
66
|
setErrorsList(value: Array<AssetError>): Asset;
|
|
67
67
|
addErrors(value?: AssetError, index?: number): AssetError;
|
|
68
|
+
getIpLocationKey(): string;
|
|
69
|
+
setIpLocationKey(value: string): Asset;
|
|
68
70
|
|
|
69
71
|
serializeBinary(): Uint8Array;
|
|
70
72
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
@@ -90,6 +92,7 @@ export namespace Asset {
|
|
|
90
92
|
isVirtual: boolean,
|
|
91
93
|
isVmRunning: boolean,
|
|
92
94
|
errorsList: Array<AssetError.AsObject>,
|
|
95
|
+
ipLocationKey: string,
|
|
93
96
|
}
|
|
94
97
|
}
|
|
95
98
|
|
|
@@ -208,6 +211,8 @@ export class AssetType extends jspb.Message {
|
|
|
208
211
|
setIsMandatory(value: boolean): AssetType;
|
|
209
212
|
getIsEnabledByDefault(): boolean;
|
|
210
213
|
setIsEnabledByDefault(value: boolean): AssetType;
|
|
214
|
+
getNbAssets(): number;
|
|
215
|
+
setNbAssets(value: number): AssetType;
|
|
211
216
|
|
|
212
217
|
serializeBinary(): Uint8Array;
|
|
213
218
|
toObject(includeInstance?: boolean): AssetType.AsObject;
|
|
@@ -224,6 +229,66 @@ export namespace AssetType {
|
|
|
224
229
|
typeName: string,
|
|
225
230
|
isMandatory: boolean,
|
|
226
231
|
isEnabledByDefault: boolean,
|
|
232
|
+
nbAssets: number,
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export class IpLocation extends jspb.Message {
|
|
237
|
+
getIpLocationKey(): string;
|
|
238
|
+
setIpLocationKey(value: string): IpLocation;
|
|
239
|
+
getLocationName(): string;
|
|
240
|
+
setLocationName(value: string): IpLocation;
|
|
241
|
+
getRangeStart(): string;
|
|
242
|
+
setRangeStart(value: string): IpLocation;
|
|
243
|
+
getRangeEnd(): string;
|
|
244
|
+
setRangeEnd(value: string): IpLocation;
|
|
245
|
+
getNbAssets(): number;
|
|
246
|
+
setNbAssets(value: number): IpLocation;
|
|
247
|
+
|
|
248
|
+
serializeBinary(): Uint8Array;
|
|
249
|
+
toObject(includeInstance?: boolean): IpLocation.AsObject;
|
|
250
|
+
static toObject(includeInstance: boolean, msg: IpLocation): IpLocation.AsObject;
|
|
251
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
252
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
253
|
+
static serializeBinaryToWriter(message: IpLocation, writer: jspb.BinaryWriter): void;
|
|
254
|
+
static deserializeBinary(bytes: Uint8Array): IpLocation;
|
|
255
|
+
static deserializeBinaryFromReader(message: IpLocation, reader: jspb.BinaryReader): IpLocation;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export namespace IpLocation {
|
|
259
|
+
export type AsObject = {
|
|
260
|
+
ipLocationKey: string,
|
|
261
|
+
locationName: string,
|
|
262
|
+
rangeStart: string,
|
|
263
|
+
rangeEnd: string,
|
|
264
|
+
nbAssets: number,
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export class Filters extends jspb.Message {
|
|
269
|
+
clearAssetTypesList(): void;
|
|
270
|
+
getAssetTypesList(): Array<AssetType>;
|
|
271
|
+
setAssetTypesList(value: Array<AssetType>): Filters;
|
|
272
|
+
addAssetTypes(value?: AssetType, index?: number): AssetType;
|
|
273
|
+
clearIpLocationsList(): void;
|
|
274
|
+
getIpLocationsList(): Array<IpLocation>;
|
|
275
|
+
setIpLocationsList(value: Array<IpLocation>): Filters;
|
|
276
|
+
addIpLocations(value?: IpLocation, index?: number): IpLocation;
|
|
277
|
+
|
|
278
|
+
serializeBinary(): Uint8Array;
|
|
279
|
+
toObject(includeInstance?: boolean): Filters.AsObject;
|
|
280
|
+
static toObject(includeInstance: boolean, msg: Filters): Filters.AsObject;
|
|
281
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
282
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
283
|
+
static serializeBinaryToWriter(message: Filters, writer: jspb.BinaryWriter): void;
|
|
284
|
+
static deserializeBinary(bytes: Uint8Array): Filters;
|
|
285
|
+
static deserializeBinaryFromReader(message: Filters, reader: jspb.BinaryReader): Filters;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export namespace Filters {
|
|
289
|
+
export type AsObject = {
|
|
290
|
+
assetTypesList: Array<AssetType.AsObject>,
|
|
291
|
+
ipLocationsList: Array<IpLocation.AsObject>,
|
|
227
292
|
}
|
|
228
293
|
}
|
|
229
294
|
|
|
@@ -244,6 +309,10 @@ export class NetworkTopologyDiagramResponse extends jspb.Message {
|
|
|
244
309
|
getAssetTypesList(): Array<AssetType>;
|
|
245
310
|
setAssetTypesList(value: Array<AssetType>): NetworkTopologyDiagramResponse;
|
|
246
311
|
addAssetTypes(value?: AssetType, index?: number): AssetType;
|
|
312
|
+
clearFiltersList(): void;
|
|
313
|
+
getFiltersList(): Array<Filters>;
|
|
314
|
+
setFiltersList(value: Array<Filters>): NetworkTopologyDiagramResponse;
|
|
315
|
+
addFilters(value?: Filters, index?: number): Filters;
|
|
247
316
|
|
|
248
317
|
serializeBinary(): Uint8Array;
|
|
249
318
|
toObject(includeInstance?: boolean): NetworkTopologyDiagramResponse.AsObject;
|
|
@@ -261,6 +330,7 @@ export namespace NetworkTopologyDiagramResponse {
|
|
|
261
330
|
relationshipsList: Array<Relationship.AsObject>,
|
|
262
331
|
errorsList: Array<Error.AsObject>,
|
|
263
332
|
assetTypesList: Array<AssetType.AsObject>,
|
|
333
|
+
filtersList: Array<Filters.AsObject>,
|
|
264
334
|
}
|
|
265
335
|
}
|
|
266
336
|
|
|
@@ -281,6 +351,10 @@ export class VirtualEnvironmentDiagramResponse extends jspb.Message {
|
|
|
281
351
|
getAssetTypesList(): Array<AssetType>;
|
|
282
352
|
setAssetTypesList(value: Array<AssetType>): VirtualEnvironmentDiagramResponse;
|
|
283
353
|
addAssetTypes(value?: AssetType, index?: number): AssetType;
|
|
354
|
+
clearFiltersList(): void;
|
|
355
|
+
getFiltersList(): Array<Filters>;
|
|
356
|
+
setFiltersList(value: Array<Filters>): VirtualEnvironmentDiagramResponse;
|
|
357
|
+
addFilters(value?: Filters, index?: number): Filters;
|
|
284
358
|
|
|
285
359
|
serializeBinary(): Uint8Array;
|
|
286
360
|
toObject(includeInstance?: boolean): VirtualEnvironmentDiagramResponse.AsObject;
|
|
@@ -298,6 +372,7 @@ export namespace VirtualEnvironmentDiagramResponse {
|
|
|
298
372
|
relationshipsList: Array<Relationship.AsObject>,
|
|
299
373
|
errorsList: Array<Error.AsObject>,
|
|
300
374
|
assetTypesList: Array<AssetType.AsObject>,
|
|
375
|
+
filtersList: Array<Filters.AsObject>,
|
|
301
376
|
}
|
|
302
377
|
}
|
|
303
378
|
|
|
@@ -318,6 +393,10 @@ export class OtDiagramResponse extends jspb.Message {
|
|
|
318
393
|
getAssetTypesList(): Array<AssetType>;
|
|
319
394
|
setAssetTypesList(value: Array<AssetType>): OtDiagramResponse;
|
|
320
395
|
addAssetTypes(value?: AssetType, index?: number): AssetType;
|
|
396
|
+
clearFiltersList(): void;
|
|
397
|
+
getFiltersList(): Array<Filters>;
|
|
398
|
+
setFiltersList(value: Array<Filters>): OtDiagramResponse;
|
|
399
|
+
addFilters(value?: Filters, index?: number): Filters;
|
|
321
400
|
|
|
322
401
|
serializeBinary(): Uint8Array;
|
|
323
402
|
toObject(includeInstance?: boolean): OtDiagramResponse.AsObject;
|
|
@@ -335,6 +414,7 @@ export namespace OtDiagramResponse {
|
|
|
335
414
|
relationshipsList: Array<Relationship.AsObject>,
|
|
336
415
|
errorsList: Array<Error.AsObject>,
|
|
337
416
|
assetTypesList: Array<AssetType.AsObject>,
|
|
417
|
+
filtersList: Array<Filters.AsObject>,
|
|
338
418
|
}
|
|
339
419
|
}
|
|
340
420
|
|