Skip to content

Commit a5dc186

Browse files
author
devexperience
committed
Generated version 0.44.0
This commit was automatically created by a GitHub Action to generate version 0.44.0 of this library.
1 parent 96abbfe commit a5dc186

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mvn clean package
2424
```
2525

2626
Then manually install the following JARs:
27-
- `target/mx-platform-java-0.43.1.jar`
27+
- `target/mx-platform-java-0.44.0.jar`
2828
- `target/lib/*.jar`
2929

3030
### Maven users
@@ -35,7 +35,7 @@ Add this dependency to your project's POM:
3535
<dependency>
3636
<groupId>com.mx</groupId>
3737
<artifactId>mx-platform-java</artifactId>
38-
<version>0.43.1</version>
38+
<version>0.44.0</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```

docs/MxPlatformApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,7 @@ public class Example {
677677
### HTTP response details
678678
| Status code | Description | Response headers |
679679
|-------------|-------------|------------------|
680+
| **200** | OK | - |
680681
| **202** | Accepted | - |
681682

682683
<a id="createTag"></a>

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiPackage: com.mx.client.mx-platform-api
33
artifactDescription: A Java library for the MX Platform API
44
artifactId: mx-platform-java
55
artifactUrl: https://github.com/mxenabled/mx-platform-java
6-
artifactVersion: 0.43.1
6+
artifactVersion: 0.44.0
77
developerEmail: devexperience@mx.com
88
developerName: MX
99
developerOrganization: MX Technologies Inc.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>mx-platform-java</artifactId>
66
<packaging>jar</packaging>
77
<name>mx-platform-java</name>
8-
<version>0.43.1</version>
8+
<version>0.44.0</version>
99
<url>https://github.com/mxenabled/mx-platform-java</url>
1010
<description>A Java library for the MX Platform API</description>
1111
<scm>

src/main/java/com/mx/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private void init() {
145145
json = new JSON();
146146

147147
// Set default User-Agent.
148-
setUserAgent("OpenAPI-Generator/0.43.1/java");
148+
setUserAgent("OpenAPI-Generator/0.44.0/java");
149149

150150
authentications = new HashMap<String, Authentication>();
151151
}

src/main/java/com/mx/client/Configuration.java

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

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
1717
public class Configuration {
18-
public static final String VERSION = "0.43.1";
18+
public static final String VERSION = "0.44.0";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

src/main/java/com/mx/client/mx_platform_api/MxPlatformApi.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,7 @@ public okhttp3.Call createManualAccountAsync(String userGuid, AccountCreateReque
11151115
* @http.response.details
11161116
<table summary="Response Details" border="1">
11171117
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
1118+
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
11181119
<tr><td> 202 </td><td> Accepted </td><td> - </td></tr>
11191120
</table>
11201121
*/
@@ -1190,6 +1191,7 @@ private okhttp3.Call createMemberValidateBeforeCall(String userGuid, MemberCreat
11901191
* @http.response.details
11911192
<table summary="Response Details" border="1">
11921193
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
1194+
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
11931195
<tr><td> 202 </td><td> Accepted </td><td> - </td></tr>
11941196
</table>
11951197
*/
@@ -1208,6 +1210,7 @@ public MemberResponseBody createMember(String userGuid, MemberCreateRequestBody
12081210
* @http.response.details
12091211
<table summary="Response Details" border="1">
12101212
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
1213+
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
12111214
<tr><td> 202 </td><td> Accepted </td><td> - </td></tr>
12121215
</table>
12131216
*/
@@ -1228,6 +1231,7 @@ public ApiResponse<MemberResponseBody> createMemberWithHttpInfo(String userGuid,
12281231
* @http.response.details
12291232
<table summary="Response Details" border="1">
12301233
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
1234+
<tr><td> 200 </td><td> OK </td><td> - </td></tr>
12311235
<tr><td> 202 </td><td> Accepted </td><td> - </td></tr>
12321236
</table>
12331237
*/

0 commit comments

Comments
 (0)