Skip to content

Commit 7e2d6bc

Browse files
committed
Release v0.0.689
1 parent ea1c786 commit 7e2d6bc

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
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.682")
39+
headers.Set("X-Fern-SDK-Version", "v0.0.689")
4040
return headers
4141
}

types.go

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,10 @@ func (g *GeneratorEnvironment) Accept(visitor GeneratorEnvironmentVisitor) error
309309
}
310310

311311
type GeneratorOutputConfig struct {
312-
Path string `json:"path"`
313-
SnippetFilepath *string `json:"snippetFilepath,omitempty"`
314-
Mode *OutputMode `json:"mode,omitempty"`
312+
Path string `json:"path"`
313+
SnippetFilepath *string `json:"snippetFilepath,omitempty"`
314+
PublishingMetadata *PublishingMetadata `json:"publishingMetadata,omitempty"`
315+
Mode *OutputMode `json:"mode,omitempty"`
315316
}
316317

317318
type GeneratorPublishConfig struct {
@@ -925,6 +926,13 @@ type PostmanGithubPublishInfo struct {
925926
WorkspaceIdEnvironmentVariable EnvironmentVariable `json:"workspaceIdEnvironmentVariable"`
926927
}
927928

929+
type PublishingMetadata struct {
930+
PackageDescription *string `json:"package_description,omitempty"`
931+
PublisherEmail *string `json:"publisher_email,omitempty"`
932+
ReferenceUrl *string `json:"reference_url,omitempty"`
933+
PublisherName *string `json:"publisher_name,omitempty"`
934+
}
935+
928936
type PypiGithubPublishInfo struct {
929937
RegistryUrl string `json:"registryUrl"`
930938
PackageName string `json:"packageName"`

0 commit comments

Comments
 (0)