Skip to content

Commit 02c185a

Browse files
authored
Releasing v3.40.0 (#86)
1 parent a045ec6 commit 02c185a

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v3.40.0 (2026-01-12)
2+
* * *
3+
4+
### New Parameters:
5+
* invoice_usages has been added to HostedPage#CheckoutExistingForItemsInputParam.
6+
17
### v3.39.0 (2025-12-30)
28
* * *
39

ChargeBee/Api/ApiConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public sealed class ApiConfig
2323
{
2424
public static string DomainSuffix = "chargebee.com";
2525
public static string Proto = "https";
26-
public static string Version = "3.39.0";
26+
public static string Version = "3.40.0";
2727
public static readonly string API_VERSION = "v2";
2828
public static int TimeTravelMillis { get; set; }
2929
public static int ExportSleepMillis { get; set;}

ChargeBee/ChargeBee.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>netstandard1.2;netstandard2.0;net45</TargetFrameworks>
4-
<Version>3.39.0</Version>
4+
<Version>3.40.0</Version>
55
<PackageId>chargebee</PackageId>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<PackageProjectUrl>https://github.com/chargebee/chargebee-dotnet</PackageProjectUrl>

ChargeBee/Models/HostedPage.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2365,6 +2365,11 @@ public CheckoutExistingForItemsRequest ChangesScheduledAt(long changesScheduledA
23652365
m_params.AddOpt("changes_scheduled_at", changesScheduledAt);
23662366
return this;
23672367
}
2368+
public CheckoutExistingForItemsRequest InvoiceUsages(bool invoiceUsages)
2369+
{
2370+
m_params.AddOpt("invoice_usages", invoiceUsages);
2371+
return this;
2372+
}
23682373
public CheckoutExistingForItemsRequest RedirectUrl(string redirectUrl)
23692374
{
23702375
m_params.AddOpt("redirect_url", redirectUrl);

0 commit comments

Comments
 (0)