Skip to content

Commit 1ef00fd

Browse files
committed
Release 0.0.0-alpha7
1 parent ad74a8a commit 1ef00fd

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

src/Vapi.Net.sln

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vapi.Net", "Vapi.Net\Vapi.Net.csproj", "{78DCECF6-D870-44EA-8620-496137FFD83E}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vapi.Net", "Vapi.Net\Vapi.Net.csproj", "{066B77DF-99E8-463D-9A57-B45A1688288E}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vapi.Net.Test", "Vapi.Net.Test\Vapi.Net.Test.csproj", "{5069B9C6-842E-42F3-92D6-AE02B3806F1D}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vapi.Net.Test", "Vapi.Net.Test\Vapi.Net.Test.csproj", "{2FD9975E-9A75-4817-8B8D-B90E12637680}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -16,13 +16,13 @@ Global
1616
HideSolutionNode = FALSE
1717
EndGlobalSection
1818
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19-
{78DCECF6-D870-44EA-8620-496137FFD83E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20-
{78DCECF6-D870-44EA-8620-496137FFD83E}.Debug|Any CPU.Build.0 = Debug|Any CPU
21-
{78DCECF6-D870-44EA-8620-496137FFD83E}.Release|Any CPU.ActiveCfg = Release|Any CPU
22-
{78DCECF6-D870-44EA-8620-496137FFD83E}.Release|Any CPU.Build.0 = Release|Any CPU
23-
{5069B9C6-842E-42F3-92D6-AE02B3806F1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24-
{5069B9C6-842E-42F3-92D6-AE02B3806F1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
25-
{5069B9C6-842E-42F3-92D6-AE02B3806F1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{5069B9C6-842E-42F3-92D6-AE02B3806F1D}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{066B77DF-99E8-463D-9A57-B45A1688288E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{066B77DF-99E8-463D-9A57-B45A1688288E}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{066B77DF-99E8-463D-9A57-B45A1688288E}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{066B77DF-99E8-463D-9A57-B45A1688288E}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{2FD9975E-9A75-4817-8B8D-B90E12637680}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{2FD9975E-9A75-4817-8B8D-B90E12637680}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{2FD9975E-9A75-4817-8B8D-B90E12637680}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{2FD9975E-9A75-4817-8B8D-B90E12637680}.Release|Any CPU.Build.0 = Release|Any CPU
2727
EndGlobalSection
2828
EndGlobal

src/Vapi.Net/Core/Public/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace Vapi.Net;
22

33
internal class Version
44
{
5-
public const string Current = "0.0.0-alpha6";
5+
public const string Current = "0.0.0-alpha7";
66
}

src/Vapi.Net/Logs/Requests/LogsGetRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public record LogsGetRequest
4444
/// <summary>
4545
/// This is the page number to return. Defaults to 1.
4646
/// </summary>
47-
public double? Page { get; set; }
47+
public int? Page { get; set; }
4848

4949
/// <summary>
5050
/// This is the sort order for pagination. Defaults to 'ASC'.

src/Vapi.Net/Vapi.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<NuGetAudit>false</NuGetAudit>
88
<LangVersion>12</LangVersion>
99
<Nullable>enable</Nullable>
10-
<Version>0.0.0-alpha6</Version>
10+
<Version>0.0.0-alpha7</Version>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<PackageProjectUrl>https://github.com/VapiAI/server-sdk-csharp</PackageProjectUrl>
1313
</PropertyGroup>

src/Vapi.Net/VapiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public VapiClient(string? token = null, ClientOptions? clientOptions = null)
1717
{ "X-Fern-Language", "C#" },
1818
{ "X-Fern-SDK-Name", "Vapi.Net" },
1919
{ "X-Fern-SDK-Version", Version.Current },
20-
{ "User-Agent", "Vapi.Net/0.0.0-alpha6" },
20+
{ "User-Agent", "Vapi.Net/0.0.0-alpha7" },
2121
}
2222
);
2323
clientOptions ??= new ClientOptions();

0 commit comments

Comments
 (0)