Skip to content

Commit d266828

Browse files
committed
Release v0.0.854
1 parent 1d6825c commit d266828

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

core/client_option.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ func (c *ClientOptions) cloneHeader() http.Header {
3636
headers := c.HTTPHeader.Clone()
3737
headers.Set("X-Fern-Language", "Go")
3838
headers.Set("X-Fern-SDK-Name", "github.com/fern-api/generator-exec-go")
39-
headers.Set("X-Fern-SDK-Version", "v0.0.848")
39+
headers.Set("X-Fern-SDK-Version", "v0.0.854")
4040
return headers
4141
}

types.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,8 +1411,10 @@ func (b *BadgeType) UnmarshalJSON(data []byte) error {
14111411
}
14121412

14131413
type Endpoint struct {
1414-
Id *EndpointIdentifier `json:"id,omitempty"`
1415-
Snippet *EndpointSnippet `json:"snippet,omitempty"`
1414+
// The id of the example used to create the snippet.
1415+
ExampleIdentifier *string `json:"example_identifier,omitempty"`
1416+
Id *EndpointIdentifier `json:"id,omitempty"`
1417+
Snippet *EndpointSnippet `json:"snippet,omitempty"`
14161418
}
14171419

14181420
type EndpointIdentifier struct {

0 commit comments

Comments
 (0)