Skip to content

Commit 6a6d082

Browse files
author
devexperience
committed
Generated version 1.13.0
This commit was automatically created by a GitHub Action to generate version 1.13.0 of this library.
1 parent 6139979 commit 6a6d082

12 files changed

Lines changed: 19 additions & 18 deletions

api_accounts.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api_institutions.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api_microdeposits.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api_transactions.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api_users.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configuration.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/InstitutionResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**Code** | Pointer to **NullableString** | | [optional]
88
**ForgotPasswordUrl** | Pointer to **NullableString** | | [optional]
99
**ForgotUsernameUrl** | Pointer to **NullableString** | | [optional]
10-
**InstructionalText** | Pointer to **NullableString** | | [optional]
10+
**InstructionalText** | Pointer to **NullableString** | Render this text when end users are asked for their credentials, as it helps end users provide the correct credentials when creating a new member. May contain `<a></a>` tags to link to explanatory material. | [optional]
1111
**InstructionalTextSteps** | Pointer to **[]string** | An array of instructional steps that may contain html elements. | [optional]
1212
**IsDisabledByClient** | Pointer to **NullableBool** | | [optional]
1313
**IsoCountryCode** | Pointer to **string** | | [optional]

docs/InstitutionsAPI.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
func main() {
3535
isoCountryCode := []string{"Inner_example"} // []string | An array of strings that filters institutions in the widget by the specified country code. Acceptable codes include `US`, `CA`, and `MX` (Mexico). (optional)
3636
page := int32(1) // int32 | Results are paginated. Specify current page. (optional)
37-
recordsPerPage := int32(10) // int32 | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `100`. If the value exceeds `100`, the default value of `25` will be used instead. (optional)
37+
recordsPerPage := int32(10) // int32 | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `1000`. If the value exceeds `1000`, the default value of `25` will be used instead. (optional)
3838

3939
configuration := openapiclient.NewConfiguration()
4040
apiClient := openapiclient.NewAPIClient(configuration)
@@ -61,7 +61,7 @@ Name | Type | Description | Notes
6161
------------- | ------------- | ------------- | -------------
6262
**isoCountryCode** | **[]string** | An array of strings that filters institutions in the widget by the specified country code. Acceptable codes include `US`, `CA`, and `MX` (Mexico). |
6363
**page** | **int32** | Results are paginated. Specify current page. |
64-
**recordsPerPage** | **int32** | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `100`. If the value exceeds `100`, the default value of `25` will be used instead. |
64+
**recordsPerPage** | **int32** | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `1000`. If the value exceeds `1000`, the default value of `25` will be used instead. |
6565

6666
### Return type
6767

@@ -179,7 +179,7 @@ func main() {
179179
name := "mxbank" // string | This will list only institutions in which the appended string appears. (optional)
180180
isoCountryCode := []string{"Inner_example"} // []string | An array of strings that filters institutions in the widget by the specified country code. Acceptable codes include `US`, `CA`, and `MX` (Mexico). (optional)
181181
page := int32(1) // int32 | Results are paginated. Specify current page. (optional)
182-
recordsPerPage := int32(10) // int32 | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `100`. If the value exceeds `100`, the default value of `25` will be used instead. (optional)
182+
recordsPerPage := int32(10) // int32 | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `1000`. If the value exceeds `1000`, the default value of `25` will be used instead. (optional)
183183
supportsAccountIdentification := true // bool | Filter only institutions which support account identification. (optional)
184184
supportsAccountStatement := true // bool | Filter only institutions which support account statements. (optional)
185185
supportsAccountVerification := true // bool | Filter only institutions which support account verification. (optional)
@@ -211,7 +211,7 @@ Name | Type | Description | Notes
211211
**name** | **string** | This will list only institutions in which the appended string appears. |
212212
**isoCountryCode** | **[]string** | An array of strings that filters institutions in the widget by the specified country code. Acceptable codes include `US`, `CA`, and `MX` (Mexico). |
213213
**page** | **int32** | Results are paginated. Specify current page. |
214-
**recordsPerPage** | **int32** | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `100`. If the value exceeds `100`, the default value of `25` will be used instead. |
214+
**recordsPerPage** | **int32** | This specifies the number of records to be returned on each page. Defaults to `25`. The valid range is from `10` to `1000`. If the value exceeds `1000`, the default value of `25` will be used instead. |
215215
**supportsAccountIdentification** | **bool** | Filter only institutions which support account identification. |
216216
**supportsAccountStatement** | **bool** | Filter only institutions which support account statements. |
217217
**supportsAccountVerification** | **bool** | Filter only institutions which support account verification. |

docs/WidgetRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**CurrentInstitutionGuid** | Pointer to **string** | Only use this option if the `widget_type` is set to `connect_widget`. Load the widget into the credential view for the specified institution. | [optional]
1212
**CurrentMemberGuid** | Pointer to **string** | Only use this option if the `widget_type` is set to `connect_widget`. Load the widget into a specific member that contains an error or requires multifactor authentication. The widget will determine the best view to load based on the member's current state. `current_member_guid` takes precedence over `current_institution_code` and `current_institution_guid`. | [optional]
1313
**DisableBackgroundAgg** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This determines whether background aggregation is enabled or disabled for the member created by the Connect Widget. Defaults to `false` in `aggregation` mode and `true` in `verification` mode. A global default for all members can be set by reaching out to MX. | [optional]
14-
**DisableInstitutionSearch** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This determines whether the institution search is displayed within the Connect Widget. This option must be used with `current_institution_code`, `current_instituion_guid`, or `current_member_guid`. When set to `true`, the institution search feature will be disabled and end users will not be able to navigate to it. Defaults to `false`. | [optional]
14+
**DisableInstitutionSearch** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This determines whether the institution search is displayed within the Connect Widget. This option must be used with `current_institution_code`, `current_instituion_guid`, or `current_member_guid`. When set to `true`, the institution search feature will be disabled and end users will not be able to navigate to it. Defaults to `false`. If you set `disable_institution_search` to `true`, you must also listen for the [backToSearch event](/connect/guides/handling-events/#back-to-search) to intercept the user from navigating back to search during the flow. Don't listen for any Primary Action postMessages when you disable search. All buttons that will take a user to the search institution page are still displayed in the Connect Widget experience and your user can still select them. This may trigger during several steps in the Connect Widget flow, such as Connected, MDV/Microdeposits Verified, Login Error, and Credentials/OAuth (back button). | [optional]
1515
**EnableApp2app** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. When set to `false`, the widget will **not** direct the end user to the institution's mobile application. This setting is not persistent. This setting currently only affects Chase institutions. | [optional]
1616
**IncludeIdentity** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This determines whether an account owner identification (AOI, previously called identity verification) is run in addition to the process specified by the `mode`. Defaults to `false`. This can be set in either `aggregation` or `verification` mode. The AOI runs after the primary process is complete. | [optional]
1717
**IncludeTransactions** | Pointer to **bool** | Only use this option if the `widget_type` is set to `connect_widget`. This determines whether transaction data are retrieved. Defaults to `true` in aggregation mode and `false` in verification mode. This can be set in either `aggregation` or `verification` mode. This option does not affect future foreground or background aggregations. | [optional]

model_institution_response.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)