Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to v1.11.0 #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
dist
14 changes: 7 additions & 7 deletions AccountsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ No authorization required

### HTTP request headers

- **Content-Type**: application/json; charset=utf-8
- **Accept**: application/json; charset=utf-8
- **Content-Type**: application/json
- **Accept**: application/json


### HTTP response details
Expand Down Expand Up @@ -91,7 +91,7 @@ let body:ledger.AccountsApiCountAccountsRequest = {
ledger: "ledger001",
// string | Filter accounts by address pattern (regular expression placed between ^ and $). (optional)
address: "users:.+",
// any | Filter accounts by metadata key value pairs. Nested objects can be used as seen in the example below. (optional)
// any | Filter accounts by metadata key value pairs. The filter can be used like this metadata[key]=value1&metadata[a.nested.key]=value2 (optional)
metadata: {},
};

Expand All @@ -107,7 +107,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**ledger** | [**string**] | Name of the ledger. | defaults to undefined
**address** | [**string**] | Filter accounts by address pattern (regular expression placed between ^ and $). | (optional) defaults to undefined
**metadata** | **any** | Filter accounts by metadata key value pairs. Nested objects can be used as seen in the example below. | (optional) defaults to undefined
**metadata** | **any** | Filter accounts by metadata key value pairs. The filter can be used like this metadata[key]=value1&metadata[a.nested.key]=value2 | (optional) defaults to undefined


### Return type
Expand All @@ -121,7 +121,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json; charset=utf-8
- **Accept**: application/json


### HTTP response details
Expand Down Expand Up @@ -178,7 +178,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json; charset=utf-8
- **Accept**: application/json


### HTTP response details
Expand Down Expand Up @@ -263,7 +263,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json; charset=utf-8
- **Accept**: application/json


### HTTP response details
Expand Down
4 changes: 2 additions & 2 deletions BalancesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json; charset=utf-8
- **Accept**: application/json


### HTTP response details
Expand Down Expand Up @@ -120,7 +120,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json; charset=utf-8
- **Accept**: application/json


### HTTP response details
Expand Down
Loading