Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### v3.41.0 (2026-01-12)
* * *

### New Parameters:
* invoice_usages has been added to HostedPage#CheckoutExistingForItemsInputParam.

### v3.40.0 (2025-12-30)
* * *

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.chargebee</groupId>
<artifactId>chargebee-java</artifactId>
<version>3.40.0</version>
<version>3.41.0</version>


<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/chargebee/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Environment {

public static final String API_VERSION = "v2";

public static final String LIBRARY_VERSION = "3.40.0";
public static final String LIBRARY_VERSION = "3.41.0";

private final String apiBaseUrl;

Expand Down
6 changes: 6 additions & 0 deletions src/main/java/com/chargebee/models/HostedPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -2398,6 +2398,12 @@ public CheckoutExistingForItemsRequest changesScheduledAt(Timestamp changesSched
}


public CheckoutExistingForItemsRequest invoiceUsages(Boolean invoiceUsages) {
params.addOpt("invoice_usages", invoiceUsages);
return this;
}


public CheckoutExistingForItemsRequest redirectUrl(String redirectUrl) {
params.addOpt("redirect_url", redirectUrl);
return this;
Expand Down