Skip to content

Commit

Permalink
Release v0.0.817
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed May 17, 2024
1 parent e0c48a3 commit e56562d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/client_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ func (c *ClientOptions) cloneHeader() http.Header {
headers := c.HTTPHeader.Clone()
headers.Set("X-Fern-Language", "Go")
headers.Set("X-Fern-SDK-Name", "github.com/fern-api/generator-exec-go")
headers.Set("X-Fern-SDK-Version", "v0.0.811")
headers.Set("X-Fern-SDK-Version", "v0.0.817")
return headers
}
4 changes: 4 additions & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,10 @@ type Endpoint struct {
type EndpointIdentifier struct {
Path EndpointPath `json:"path"`
Method EndpointMethod `json:"method,omitempty"`
// The ID for the endpoint as declared within the IR, this is a unique name for the endpoint, whereas path and
// method are not (specifically for the fern definition, consider chat and chat stream). This is optional to
// remain backcompat with old snippets of yore.
IdentifierOverride *string `json:"identifier_override,omitempty"`
}

type EndpointMethod uint
Expand Down

0 comments on commit e56562d

Please sign in to comment.