From f71bffff132296cef5720155574ba15e9ab0bb1d Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 01:40:26 +0000 Subject: [PATCH] Release v0.0.749 --- core/client_option.go | 2 +- types.go | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/core/client_option.go b/core/client_option.go index 0728648..fa5ec0f 100644 --- a/core/client_option.go +++ b/core/client_option.go @@ -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.741") + headers.Set("X-Fern-SDK-Version", "v0.0.749") return headers } diff --git a/types.go b/types.go index f4c9535..9e3dd53 100644 --- a/types.go +++ b/types.go @@ -310,10 +310,11 @@ func (g *GeneratorEnvironment) Accept(visitor GeneratorEnvironmentVisitor) error } type GeneratorOutputConfig struct { - Path string `json:"path"` - SnippetFilepath *string `json:"snippetFilepath,omitempty"` - PublishingMetadata *PublishingMetadata `json:"publishingMetadata,omitempty"` - Mode *OutputMode `json:"mode,omitempty"` + Path string `json:"path"` + SnippetFilepath *string `json:"snippetFilepath,omitempty"` + SnippetTemplateFilepath *string `json:"snippetTemplateFilepath,omitempty"` + PublishingMetadata *PublishingMetadata `json:"publishingMetadata,omitempty"` + Mode *OutputMode `json:"mode,omitempty"` } type GeneratorPublishConfig struct {