Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jul 15, 2024
1 parent a97bba5 commit d1cb550
Show file tree
Hide file tree
Showing 321 changed files with 607 additions and 607 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: |
dotnet pack src -c Release
dotnet nuget push src/Com.Courier/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source "nuget.org"
dotnet nuget push src/Courier.Client/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source "nuget.org"
3 changes: 0 additions & 3 deletions src/Com.Courier.Test/TestClient.cs

This file was deleted.

28 changes: 0 additions & 28 deletions src/Com.Courier.sln

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Com.Courier\Com.Courier.csproj" />
<ProjectReference Include="..\Courier.Client\Courier.Client.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/Courier.Client.Test/TestClient.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
namespace Courier.Client.Test;

public class TestClient { }
28 changes: 28 additions & 0 deletions src/Courier.Client.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Courier.Client", "Courier.Client\Courier.Client.csproj", "{F1A72E89-1134-4545-9FA1-93165B2A3A1E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Courier.Client.Test", "Courier.Client.Test\Courier.Client.Test.csproj", "{4BC20917-F97D-433A-BEA8-1FB8D0F0B9FD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F1A72E89-1134-4545-9FA1-93165B2A3A1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F1A72E89-1134-4545-9FA1-93165B2A3A1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1A72E89-1134-4545-9FA1-93165B2A3A1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F1A72E89-1134-4545-9FA1-93165B2A3A1E}.Release|Any CPU.Build.0 = Release|Any CPU
{4BC20917-F97D-433A-BEA8-1FB8D0F0B9FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4BC20917-F97D-433A-BEA8-1FB8D0F0B9FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4BC20917-F97D-433A-BEA8-1FB8D0F0B9FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4BC20917-F97D-433A-BEA8-1FB8D0F0B9FD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Net.Http;
using System.Text.Json;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public class AudiencesClient
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Com.Courier;
namespace Courier.Client;

public record AudienceMembersListParams
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;
using OneOf;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceUpdateParams
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Com.Courier;
namespace Courier.Client;

public record AudiencesListParams
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;
using OneOf;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record Audience
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceListResponse
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceMember
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceMemberGetResponse
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceMemberListResponse
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AudienceUpdateResponse
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;
using OneOf;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record BaseFilterConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Runtime.Serialization;
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

[JsonConverter(typeof(StringEnumSerializer<ComparisonOperator>))]
public enum ComparisonOperator
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Runtime.Serialization;
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

[JsonConverter(typeof(StringEnumSerializer<LogicalOperator>))]
public enum LogicalOperator
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;
using OneOf;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record NestedFilterConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;
using OneOf;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record SingleFilterConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Net.Http;
using System.Text.Json;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public class AuditEventsClient
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Com.Courier;
namespace Courier.Client;

public record ListAuditEventsRequest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record Actor
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record AuditEvent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record GetAuditEventParams
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record ListAuditEventsParams
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using Com.Courier;
using Courier.Client;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record ListAuditEventsResponse
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record Target
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Net.Http;
using System.Text.Json;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public class AuthTokensClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record IssueTokenParams
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public record IssueTokenResponse
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Net.Http;
using System.Text.Json;
using Com.Courier;
using Com.Courier.Core;
using Courier.Client;
using Courier.Client.Core;

#nullable enable

namespace Com.Courier;
namespace Courier.Client;

public class AutomationsClient
{
Expand Down
Loading

0 comments on commit d1cb550

Please sign in to comment.