Skip to content

Commit

Permalink
Updates for v2.0.1326
Browse files Browse the repository at this point in the history
  • Loading branch information
Concourse committed Jan 7, 2025
1 parent 237a9e8 commit 90342af
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ This code is automatically generated by the [OpenAPI Generator](https://openapi-

## Versions

- API version: 0.11.7282
- SDK version: 2.0.1325
- API version: 0.11.7284
- SDK version: 2.0.1326

## Requirements

Expand All @@ -47,7 +47,7 @@ Add this dependency to your pom.xml
<dependency>
<groupId>com.finbourne</groupId>
<artifactId>lusid-sdk</artifactId>
<version>2.0.1325</version>
<version>2.0.1326</version>
</dependency>
```

Expand All @@ -61,7 +61,7 @@ Add this dependency to your build.gradle
}
dependencies {
implementation "com.finbourne:lusid-sdk:2.0.1325"
implementation "com.finbourne:lusid-sdk:2.0.1326"
}
```

Expand Down
4 changes: 2 additions & 2 deletions sdk/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ info:
| <a name="939">939</a>|Blocked by a Network Zone| |
termsOfService: https://www.finbourne.com/legal/terms-conditions
title: LUSID API
version: 0.11.7282
version: 0.11.7284
x-logo:
url: https://www.lusid.com/app/assets/logo_white.png
backgroundColor: '#415464'
Expand Down Expand Up @@ -47510,7 +47510,7 @@ paths:
name: usePreviewTransactionsForPricing
required: false
schema:
default: false
default: true
type: boolean
style: form
x-nullable: true
Expand Down
4 changes: 2 additions & 2 deletions sdk/docs/OrderManagementApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class OrderManagementApiExample {
BookTransactionsRequest bookTransactionsRequest = new BookTransactionsRequest(); // BookTransactionsRequest | The allocations to create transactions for
Boolean applyFeesAndCommission = true; // Boolean | Whether to apply fees and commissions to transactions (default: true)
Boolean markOrdersAndAllocationsAsBooked = false; // Boolean | Whether to mark allocations and fully-booked orders with state Booked
Boolean usePreviewTransactionsForPricing = false; // Boolean | Whether to use calculators for the transaction type to work out pricing fields on the booked transactions
Boolean usePreviewTransactionsForPricing = true; // Boolean | Whether to use calculators for the transaction type to work out pricing fields on the booked transactions
try {
// uncomment the below to set overrides at the request level
// BookTransactionsResponse result = apiInstance.bookTransactions(bookTransactionsRequest, applyFeesAndCommission, markOrdersAndAllocationsAsBooked, usePreviewTransactionsForPricing).execute(opts);
Expand All @@ -93,7 +93,7 @@ public class OrderManagementApiExample {
| **bookTransactionsRequest** | [**BookTransactionsRequest**](BookTransactionsRequest.md)| The allocations to create transactions for | |
| **applyFeesAndCommission** | **Boolean**| Whether to apply fees and commissions to transactions (default: true) | [optional] [default to true] |
| **markOrdersAndAllocationsAsBooked** | **Boolean**| Whether to mark allocations and fully-booked orders with state Booked | [optional] [default to false] |
| **usePreviewTransactionsForPricing** | **Boolean**| Whether to use calculators for the transaction type to work out pricing fields on the booked transactions | [optional] [default to false] |
| **usePreviewTransactionsForPricing** | **Boolean**| Whether to use calculators for the transaction type to work out pricing fields on the booked transactions | [optional] [default to true] |

### Return type

Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>lusid-sdk</artifactId>
<packaging>jar</packaging>
<name>lusid-sdk</name>
<version>2.0.1325</version>
<version>2.0.1326</version>
<url>https://github.com/finbourne/lusid-sdk-java</url>
<description>lusid</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/finbourne/lusid/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/2.0.1325/java");
setUserAgent("OpenAPI-Generator/2.0.1326/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/finbourne/lusid/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "2.0.1325";
public static final String VERSION = "2.0.1326";

private static ApiClient defaultApiClient = new ApiClient();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public APIbookTransactionsRequest markOrdersAndAllocationsAsBooked(Boolean markO

/**
* Set usePreviewTransactionsForPricing
* @param usePreviewTransactionsForPricing Whether to use calculators for the transaction type to work out pricing fields on the booked transactions (optional, default to false)
* @param usePreviewTransactionsForPricing Whether to use calculators for the transaction type to work out pricing fields on the booked transactions (optional, default to true)
* @return APIbookTransactionsRequest
*/
public APIbookTransactionsRequest usePreviewTransactionsForPricing(Boolean usePreviewTransactionsForPricing) {
Expand Down

0 comments on commit 90342af

Please sign in to comment.