Skip to content

Commit 83e23f1

Browse files
author
devexperience
committed
Generated version 1.3.0
This commit was automatically created by a GitHub Action to generate version 1.3.0 of this library.
1 parent e87ad95 commit 83e23f1

File tree

8 files changed

+275
-71
lines changed

8 files changed

+275
-71
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-1.2.0.jar`
27+
- `target/mx-platform-java-1.3.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>1.2.0</version>
38+
<version>1.3.0</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```

docs/MemberResponse.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,39 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**actionableError** | **String** | | [optional] |
1110
|**aggregatedAt** | **String** | | [optional] |
1211
|**backgroundAggregationIsDisabled** | **Boolean** | | [optional] |
1312
|**connectionStatus** | **String** | | [optional] |
13+
|**connectionStatusMessage** | **String** | | [optional] |
14+
|**error** | **String** | | [optional] |
1415
|**guid** | **String** | | [optional] |
1516
|**id** | **String** | | [optional] |
1617
|**institutionCode** | **String** | | [optional] |
18+
|**institutionGuid** | **String** | | [optional] |
1719
|**isBeingAggregated** | **Boolean** | | [optional] |
1820
|**isManagedByUser** | **Boolean** | | [optional] |
1921
|**isManual** | **Boolean** | | [optional] |
2022
|**isOauth** | **Boolean** | | [optional] |
2123
|**metadata** | **String** | | [optional] |
22-
|**mostRecentJobDetailCode** | **String** | | [optional] |
23-
|**mostRecentJobDetailText** | **String** | | [optional] |
24+
|**mostRecentJobDetailCode** | **Integer** | | [optional] |
25+
|**mostRecentJobDetailText** | **Boolean** | | [optional] |
26+
|**mostRecentJobGuid** | **Boolean** | | [optional] |
2427
|**name** | **String** | | [optional] |
28+
|**needsUpdatedCredentials** | **Boolean** | | [optional] |
2529
|**oauthWindowUri** | **String** | | [optional] |
2630
|**successfullyAggregatedAt** | **String** | | [optional] |
27-
|**useCases** | **List&lt;String&gt;** | | [optional] |
31+
|**useCases** | [**List&lt;UseCasesEnum&gt;**](#List&lt;UseCasesEnum&gt;) | The use case associated with the member. Valid values are &#x60;PFM&#x60; and/or &#x60;MONEY_MOVEMENT&#x60;. Only set this if you&#39;ve met with MX and have opted in to using this field. | [optional] |
2832
|**userGuid** | **String** | | [optional] |
2933
|**userId** | **String** | | [optional] |
3034

3135

3236

37+
## Enum: List&lt;UseCasesEnum&gt;
38+
39+
| Name | Value |
40+
|---- | -----|
41+
| MONEY_MOVEMENT | &quot;MONEY_MOVEMENT&quot; |
42+
| PFM | &quot;PFM&quot; |
43+
44+
45+

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: 1.2.0
6+
artifactVersion: 1.3.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>1.2.0</version>
8+
<version>1.3.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/1.2.0/java");
148+
setUserAgent("OpenAPI-Generator/1.3.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 = "1.2.0";
18+
public static final String VERSION = "1.3.0";
1919

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

0 commit comments

Comments
 (0)