@lansweeper/data-platform-outbound-grpc 0.16.3 → 0.17.0
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 +14 -0
- package/Lansweeper.DataPlatform.Outbound.csproj +29 -0
- package/Lansweeper.DataPlatform.Outbound.sln +25 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +18 -0
- package/gen-proto/outbound_pb.js +147 -3
- package/generated-go/outbound.pb.go +11913 -11876
- package/java.json +1 -1
- package/model/src/main/proto/outbound.proto +7 -0
- package/model/target/classes/outbound.proto +7 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.16.2-sources.jar → outbound-model-0.16.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.16.2.jar → outbound-model-0.16.4.jar} +0 -0
- package/package.json +1 -1
- package/proto/outbound.proto +7 -0
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.16.2-sources.jar → outbound-service-0.16.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.16.2.jar → outbound-service-0.16.4.jar} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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.17.0](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/data-platform-outbound-grpc@0.16.4...@lansweeper/data-platform-outbound-grpc@0.17.0) (2026-04-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add csharp_namespace option to outbound.proto (LAN-18936) ([f9993b4](https://github.com/Lansweeper/lansweeperapis/commit/f9993b444c13dcc8e05a5f823acb069c56e863be))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- add Lansweeper.DataPlatform.Outbound C# NuGet package (LAN-18936) ([523d4bf](https://github.com/Lansweeper/lansweeperapis/commit/523d4bf26c4a57815df124bcdf4f942be21cc374))
|
|
15
|
+
|
|
16
|
+
## [0.16.4](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/data-platform-outbound-grpc@0.16.3...@lansweeper/data-platform-outbound-grpc@0.16.4) (2026-04-02)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @lansweeper/data-platform-outbound-grpc
|
|
19
|
+
|
|
6
20
|
## [0.16.3](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/data-platform-outbound-grpc@0.16.2...@lansweeper/data-platform-outbound-grpc@0.16.3) (2026-03-20)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @lansweeper/data-platform-outbound-grpc
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<Project Sdk="Microsoft.NET.Sdk">
|
|
3
|
+
<PropertyGroup>
|
|
4
|
+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
|
|
5
|
+
<Title>Lansweeper Data Platform Outbound model/proto</Title>
|
|
6
|
+
<Description>C# gRPC client for DataCore Outbound Service</Description>
|
|
7
|
+
<Company>Lansweeper</Company>
|
|
8
|
+
<Product>Lansweeper Data Platform Outbound model/proto</Product>
|
|
9
|
+
<Copyright>Lansweeper</Copyright>
|
|
10
|
+
<PackageVersion>0.16.4</PackageVersion>
|
|
11
|
+
<Version>0.16.4</Version>
|
|
12
|
+
<FileVersion>0.16.4</FileVersion>
|
|
13
|
+
<RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
|
|
14
|
+
</PropertyGroup>
|
|
15
|
+
<ItemGroup>
|
|
16
|
+
<None Remove="proto\outbound.proto"/>
|
|
17
|
+
</ItemGroup>
|
|
18
|
+
<ItemGroup>
|
|
19
|
+
<PackageReference Include="Google.Protobuf" Version="3.29.3"/>
|
|
20
|
+
<PackageReference Include="Grpc.Core.Api" Version="2.71.0"/>
|
|
21
|
+
<PackageReference Include="Grpc.Tools" Version="2.72.0">
|
|
22
|
+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
23
|
+
<PrivateAssets>all</PrivateAssets>
|
|
24
|
+
</PackageReference>
|
|
25
|
+
</ItemGroup>
|
|
26
|
+
<ItemGroup>
|
|
27
|
+
<Protobuf Include="proto\outbound.proto" GrpcServices="Client"/>
|
|
28
|
+
</ItemGroup>
|
|
29
|
+
</Project>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
+
# Visual Studio Version 17
|
|
4
|
+
VisualStudioVersion = 17.5.33502.453
|
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lansweeper.DataPlatform.Outbound", "Lansweeper.DataPlatform.Outbound.csproj", "{B8E2D4F6-A1C3-4E5D-9B7A-C2D4E6F8A0B2}"
|
|
7
|
+
EndProject
|
|
8
|
+
Global
|
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
10
|
+
Debug|Any CPU = Debug|Any CPU
|
|
11
|
+
Release|Any CPU = Release|Any CPU
|
|
12
|
+
EndGlobalSection
|
|
13
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
14
|
+
{B8E2D4F6-A1C3-4E5D-9B7A-C2D4E6F8A0B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
15
|
+
{B8E2D4F6-A1C3-4E5D-9B7A-C2D4E6F8A0B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
16
|
+
{B8E2D4F6-A1C3-4E5D-9B7A-C2D4E6F8A0B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
17
|
+
{B8E2D4F6-A1C3-4E5D-9B7A-C2D4E6F8A0B2}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
18
|
+
EndGlobalSection
|
|
19
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
20
|
+
HideSolutionNode = FALSE
|
|
21
|
+
EndGlobalSection
|
|
22
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
23
|
+
SolutionGuid = {D6F8A2B4-C3E5-7F9A-B1D3-E5F7A9C1B3D5}
|
|
24
|
+
EndGlobalSection
|
|
25
|
+
EndGlobal
|