Skip to content

Commit

Permalink
Release v0.5.9-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 12, 2024
1 parent 3a729e9 commit 525376d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/request_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (r *RequestOptions) cloneHeader() http.Header {
headers := r.HTTPHeader.Clone()
headers.Set("X-Fern-Language", "Go")
headers.Set("X-Fern-SDK-Name", "github.com/mercoa-finance/go")
headers.Set("X-Fern-SDK-Version", "v0.5.8")
headers.Set("X-Fern-SDK-Version", "v0.5.9-rc1")
return headers
}

Expand Down
4 changes: 2 additions & 2 deletions entity/counterparty.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type FindPayeeCounterpartiesRequest struct {
// Filter by counterparty ids (Foreign ID is supported)
CounterpartyID []*mercoafinancego.EntityID `json:"-" url:"counterpartyId,omitempty"`
// Filter counterparties by simple key/value metadata. Each filter will be applied as an AND condition. Duplicate keys will be ignored.
Metadata *mercoafinancego.MetadataFilter `json:"-" url:"metadata,omitempty"`
Metadata []*mercoafinancego.MetadataFilter `json:"-" url:"metadata,omitempty"`
// If true, will return simple key/value metadata for the counterparties. For more complex metadata, use the Metadata API.
ReturnMetadata *bool `json:"-" url:"returnMetadata,omitempty"`
// Number of counterparties to return. Limit can range between 1 and 100, and the default is 10.
Expand All @@ -39,7 +39,7 @@ type FindPayorCounterpartiesRequest struct {
// Filter by counterparty ids (Foreign ID is supported)
CounterpartyID []*mercoafinancego.EntityID `json:"-" url:"counterpartyId,omitempty"`
// Filter counterparties by simple key/value metadata. Each filter will be applied as an AND condition. Duplicate keys will be ignored.
Metadata *mercoafinancego.MetadataFilter `json:"-" url:"metadata,omitempty"`
Metadata []*mercoafinancego.MetadataFilter `json:"-" url:"metadata,omitempty"`
// If true, will return simple key/value metadata for the counterparties. For more complex metadata, use the Metadata API.
ReturnMetadata *bool `json:"-" url:"returnMetadata,omitempty"`
// Number of counterparties to return. Limit can range between 1 and 100, and the default is 10.
Expand Down

0 comments on commit 525376d

Please sign in to comment.