Skip to content

Commit 70c54f6

Browse files
authored
Releasing v3.41.0 (#67)
1 parent 0f1cc29 commit 70c54f6

4 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.chargebee</groupId>
66
<artifactId>chargebee-java</artifactId>
7-
<version>3.40.0</version>
7+
<version>3.41.0</version>
88

99

1010
<packaging>jar</packaging>

src/main/java/com/chargebee/Environment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class Environment {
3838

3939
public static final String API_VERSION = "v2";
4040

41-
public static final String LIBRARY_VERSION = "3.40.0";
41+
public static final String LIBRARY_VERSION = "3.41.0";
4242

4343
private final String apiBaseUrl;
4444

src/main/java/com/chargebee/models/HostedPage.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2398,6 +2398,12 @@ public CheckoutExistingForItemsRequest changesScheduledAt(Timestamp changesSched
23982398
}
23992399

24002400

2401+
public CheckoutExistingForItemsRequest invoiceUsages(Boolean invoiceUsages) {
2402+
params.addOpt("invoice_usages", invoiceUsages);
2403+
return this;
2404+
}
2405+
2406+
24012407
public CheckoutExistingForItemsRequest redirectUrl(String redirectUrl) {
24022408
params.addOpt("redirect_url", redirectUrl);
24032409
return this;

0 commit comments

Comments
 (0)