Skip to content

Commit 4095a5a

Browse files
vorpuslzhang
andauthored
OpenAPI generated code at 2024-09-17T16:43:20Z (#429)
Co-authored-by: lzhang <lzhang@plaid.com>
1 parent 3409688 commit 4095a5a

File tree

1,662 files changed

+7773
-3195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,662 files changed

+7773
-3195
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
build:
55
machine:
6-
image: ubuntu-2004:202201-02
6+
image: ubuntu-2204:edge
77
steps:
88
- checkout
99
- run:

CHANGELOG.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,73 @@
11
See full changelog for the OpenAPI schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).
22

3+
# 27.0.0
4+
- Updating to OAS 2020-09-14_1.565.0
5+
6+
## Breaking changes in this version
7+
### 2020-09-14_1.156.2
8+
- [BREAKING] Remove `from_client_id` and `to_client_id` from `/transfer/ledger/distribute` request
9+
- Add `from_ledger_id` and `to_ledger_id` to `/transfer/ledger/distribute` request
10+
- Add `ledger_id` in transfer routes response examples
11+
12+
### 2020-09-14_1.561.0
13+
- [BREAKING] Add `authorization_id` to /transfer/get request and make `transfer_id` optional.
14+
15+
### 2020-09-14_1.559.0
16+
- Add `name`, `is_default` to /transfer/ledger/get response
17+
- [BREAKING] Move `ledger_id` from nested `balance` struct to top level in /transfer/ledger/get response
18+
19+
## OpenAPI Schema Changes
20+
### 2020-09-14_1.565.0
21+
- Removed `deposit_switch` from the `products` field in the `/link/token/create` request
22+
- Deprecated DepositSwitch endpoints, requests and response
23+
24+
### 2020-09-14_1.564.0
25+
- add `/issues/get`, `/issues/search`, and `/issues/subscribe` for Support API endpoints.
26+
27+
### 2020-09-14_1.563.0
28+
- Update fields on `item` object in `/item/get` response
29+
- Add `consented_use_cases` field
30+
- Add `consented_data_scopes` field
31+
- Add `created_at` field
32+
- Update descriptions for `consented_products` and `consent_expiration_time` fields
33+
- Add `/consent/events/get` endpoint
34+
35+
### 2020-09-14_1.157.1
36+
- Internal changes
37+
38+
### 2020-09-14_1.157.0
39+
- (pre-release) Add `facial_analysis` to the `analysis` within each `selfie_check.selfies` object in the response of all of the identity verification endpoints:
40+
- `identity_verification/create`
41+
- `identity_verification/get`
42+
- `identity_verification/list`
43+
- `identity_verification/retry`
44+
45+
### 2020-09-14_1.156.1
46+
- Update `account type schema` link to reference the correct URL.
47+
48+
### 2020-09-14_1.562.0
49+
- Add `data_sources` object to the `/investments/auth/get` response
50+
- `data_sources` object contains the `numbers`, `owners`, and `holdings` fields
51+
52+
### 2020-09-14_1.560.0
53+
- Add `pay_by_bank` to product enum list
54+
55+
### 2020-09-14_1.558.0
56+
- Add `liveness_check` to the `analysis` within each `selfie_check.selfies` object in the response of all of the identity verification endpoints:
57+
- `identity_verification/create`
58+
- `identity_verification/get`
59+
- `identity_verification/list`
60+
- `identity_verification/retry`
61+
62+
### 2020-09-14_1.557.2
63+
- Internal changes only
64+
65+
### 2020-09-14_1.557.1
66+
- Internal changes only
67+
68+
### 2020-09-14_1.557.0
69+
- Add `ledger_id` to /transfer/ledger/get response
70+
371
# 26.0.0
472
- Updating to OAS 2020-09-14_1.556.0
573

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Note: This image is also built in CircleCI, so limit references to internal repositories.
12
FROM maven:3.6.3-jdk-8
23
# If on Apple Silicon and running into build issues, Use arm64v8/maven:3.6.3-jdk-11
34
# For context: https://jira.plaid.com/browse/DEVBUILD-106

pom.xml

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

55
<groupId>com.plaid</groupId>
66
<artifactId>plaid-java</artifactId>
7-
<version>26.0.0-SNAPSHOT</version>
7+
<version>27.0.0-SNAPSHOT</version>
88

99
<parent>
1010
<groupId>org.sonatype.oss</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public ApiClient() {
4949
public Response intercept(Chain chain) throws IOException {
5050
Request originalRequest = chain.request();
5151
Request requestWithUserAgent = originalRequest.newBuilder()
52-
.header("User-Agent", "Plaid Java v26.0.0")
52+
.header("User-Agent", "Plaid Java v27.0.0")
5353
.header("Plaid-Version", "2020-09-14")
5454
.build();
5555
return chain.proceed(requestWithUserAgent);

src/main/java/com/plaid/client/JSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The Plaid API
33
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
44
*
5-
* The version of the OpenAPI document: 2020-09-14_1.556.0
5+
* The version of the OpenAPI document: 2020-09-14_1.565.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/plaid/client/StringUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The Plaid API
33
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
44
*
5-
* The version of the OpenAPI document: 2020-09-14_1.556.0
5+
* The version of the OpenAPI document: 2020-09-14_1.565.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@
1616
import java.util.Collection;
1717
import java.util.Iterator;
1818

19-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-04T20:03:42.500463Z[Etc/UTC]")
19+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-17T16:42:02.150702Z[Etc/UTC]")
2020
public class StringUtil {
2121
/**
2222
* Check if the given array contains the given value (with case-insensitive comparison).

src/main/java/com/plaid/client/model/ACHClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The Plaid API
33
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
44
*
5-
* The version of the OpenAPI document: 2020-09-14_1.556.0
5+
* The version of the OpenAPI document: 2020-09-14_1.565.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/plaid/client/model/APR.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The Plaid API
33
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
44
*
5-
* The version of the OpenAPI document: 2020-09-14_1.556.0
5+
* The version of the OpenAPI document: 2020-09-14_1.565.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
2828
* Information about the APR on the account.
2929
*/
3030
@ApiModel(description = "Information about the APR on the account.")
31-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-04T20:03:42.500463Z[Etc/UTC]")
31+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-17T16:42:02.150702Z[Etc/UTC]")
3232
public class APR {
3333
public static final String SERIALIZED_NAME_APR_PERCENTAGE = "apr_percentage";
3434
@SerializedName(SERIALIZED_NAME_APR_PERCENTAGE)

src/main/java/com/plaid/client/model/AccountAccess.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The Plaid API
33
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
44
*
5-
* The version of the OpenAPI document: 2020-09-14_1.556.0
5+
* The version of the OpenAPI document: 2020-09-14_1.565.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
2929
* Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered &#x60;new_accounts&#x60;.
3030
*/
3131
@ApiModel(description = "Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered `new_accounts`.")
32-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-04T20:03:42.500463Z[Etc/UTC]")
32+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-17T16:42:02.150702Z[Etc/UTC]")
3333
public class AccountAccess {
3434
public static final String SERIALIZED_NAME_UNIQUE_ID = "unique_id";
3535
@SerializedName(SERIALIZED_NAME_UNIQUE_ID)

0 commit comments

Comments
 (0)