Skip to content

Commit

Permalink
Generated version 0.22.0
Browse files Browse the repository at this point in the history
This commit was automatically created by a GitHub Action to generate version 0.22.0 of this library.
  • Loading branch information
devexperience committed Nov 29, 2023
1 parent 1b329c9 commit 9a581fe
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mvn clean package
```

Then manually install the following JARs:
- `target/mx-platform-java-0.21.0.jar`
- `target/mx-platform-java-0.22.0.jar`
- `target/lib/*.jar`

### Maven users
Expand All @@ -35,7 +35,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.mx</groupId>
<artifactId>mx-platform-java</artifactId>
<version>0.21.0</version>
<version>0.22.0</version>
<scope>compile</scope>
</dependency>
```
Expand Down
8 changes: 4 additions & 4 deletions docs/SpendingPlanApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public class Example {
SpendingPlanApi apiInstance = new SpendingPlanApi(defaultClient);
String spendingPlanGuid = "SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"; // String | The unique ID for the `spending_plan`.
String userGuid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54"; // String | The unique id for a `user`.
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameters (planned_amount)
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameter (planned_amount)
try {
SpendingPlanIterationItemResponse result = apiInstance.createSpendingPlanIterationItem(spendingPlanGuid, userGuid, spendingPlanIterationItemCreateRequestBody);
System.out.println(result);
Expand All @@ -140,7 +140,7 @@ public class Example {
|------------- | ------------- | ------------- | -------------|
| **spendingPlanGuid** | **String**| The unique ID for the &#x60;spending_plan&#x60;. | |
| **userGuid** | **String**| The unique id for a &#x60;user&#x60;. | |
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameters (planned_amount) | |
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameter (planned_amount) | |

### Return type

Expand Down Expand Up @@ -999,7 +999,7 @@ public class Example {
String userGuid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54"; // String | The unique id for a `user`.
String spendingPlanGuid = "SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"; // String | The unique ID for the `spending_plan`.
String iterationItemGuid = "SII-a4dc1549-da28-1245-9c9c-53eee4cdfbe3"; // String | The unique ID for the `iteration_item`.
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item object to be updated with required parameter (iteration_item_guid)
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be updated with required parameter (planned_amount)
try {
SpendingPlanIterationItemResponse result = apiInstance.updateSpendingPlanIterationItem(userGuid, spendingPlanGuid, iterationItemGuid, spendingPlanIterationItemCreateRequestBody);
System.out.println(result);
Expand All @@ -1021,7 +1021,7 @@ public class Example {
| **userGuid** | **String**| The unique id for a &#x60;user&#x60;. | |
| **spendingPlanGuid** | **String**| The unique ID for the &#x60;spending_plan&#x60;. | |
| **iterationItemGuid** | **String**| The unique ID for the &#x60;iteration_item&#x60;. | |
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item object to be updated with required parameter (iteration_item_guid) | |
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be updated with required parameter (planned_amount) | |

### Return type

Expand Down
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiPackage: com.mx.client.mx-platform-api
artifactDescription: A Java library for the MX Platform API
artifactId: mx-platform-java
artifactUrl: https://github.com/mxenabled/mx-platform-java
artifactVersion: 0.21.0
artifactVersion: 0.22.0
developerEmail: [email protected]
developerName: MX
developerOrganization: MX Technologies Inc.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>mx-platform-java</artifactId>
<packaging>jar</packaging>
<name>mx-platform-java</name>
<version>0.21.0</version>
<version>0.22.0</version>
<url>https://github.com/mxenabled/mx-platform-java</url>
<description>A Java library for the MX Platform API</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mx/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/0.21.0/java");
setUserAgent("OpenAPI-Generator/0.22.0/java");

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

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "0.21.0";
public static final String VERSION = "0.22.0";

private static ApiClient defaultApiClient = new ApiClient();

Expand Down
16 changes: 8 additions & 8 deletions src/main/java/com/mx/client/mx_platform_api/SpendingPlanApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public okhttp3.Call createSpendingPlanAsync(String userGuid, final ApiCallback<S
* Build call for createSpendingPlanIterationItem
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
Expand Down Expand Up @@ -290,7 +290,7 @@ private okhttp3.Call createSpendingPlanIterationItemValidateBeforeCall(String sp
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
* @return SpendingPlanIterationItemResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Expand All @@ -309,7 +309,7 @@ public SpendingPlanIterationItemResponse createSpendingPlanIterationItem(String
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
* @return ApiResponse&lt;SpendingPlanIterationItemResponse&gt;
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Expand All @@ -329,7 +329,7 @@ public ApiResponse<SpendingPlanIterationItemResponse> createSpendingPlanIteratio
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
Expand Down Expand Up @@ -1967,7 +1967,7 @@ public okhttp3.Call readSpendingPlanUserAsync(String userGuid, String spendingPl
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
Expand Down Expand Up @@ -2057,7 +2057,7 @@ private okhttp3.Call updateSpendingPlanIterationItemValidateBeforeCall(String us
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
* @return SpendingPlanIterationItemResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Expand All @@ -2077,7 +2077,7 @@ public SpendingPlanIterationItemResponse updateSpendingPlanIterationItem(String
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
* @return ApiResponse&lt;SpendingPlanIterationItemResponse&gt;
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Expand All @@ -2098,7 +2098,7 @@ public ApiResponse<SpendingPlanIterationItemResponse> updateSpendingPlanIteratio
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
Expand Down

0 comments on commit 9a581fe

Please sign in to comment.