Skip to content

Commit

Permalink
Release v0.0.836
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed May 21, 2024
1 parent d4a5311 commit b6c1ffb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
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.832")
headers.Set("X-Fern-SDK-Version", "v0.0.836")
return headers
}
30 changes: 15 additions & 15 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,16 +310,6 @@ func (g *GeneratorEnvironment) Accept(visitor GeneratorEnvironmentVisitor) error
}
}

type GeneratorMetadata struct {
Description *string `json:"description,omitempty"`
Authors []*GeneratorMetadataAuthor `json:"authors,omitempty"`
}

type GeneratorMetadataAuthor struct {
Name string `json:"name"`
Email string `json:"email"`
}

type GeneratorOutputConfig struct {
Path string `json:"path"`
SnippetFilepath *string `json:"snippetFilepath,omitempty"`
Expand Down Expand Up @@ -885,6 +875,16 @@ type NugetRegistryConfig struct {
PackageName string `json:"packageName"`
}

type OutputMetadata struct {
Description *string `json:"description,omitempty"`
Authors []*OutputMetadataAuthor `json:"authors,omitempty"`
}

type OutputMetadataAuthor struct {
Name string `json:"name"`
Email string `json:"email"`
}

type OutputMode struct {
Type string
Publish *GeneratorPublishConfig
Expand Down Expand Up @@ -1015,11 +1015,11 @@ type PypiGithubPublishInfo struct {
}

type PypiMetadata struct {
Description *string `json:"description,omitempty"`
Authors []*GeneratorMetadataAuthor `json:"authors,omitempty"`
Keywords []string `json:"keywords,omitempty"`
DocumentationLink *string `json:"documentationLink,omitempty"`
HomepageLink *string `json:"homepageLink,omitempty"`
Description *string `json:"description,omitempty"`
Authors []*OutputMetadataAuthor `json:"authors,omitempty"`
Keywords []string `json:"keywords,omitempty"`
DocumentationLink *string `json:"documentationLink,omitempty"`
HomepageLink *string `json:"homepageLink,omitempty"`
}

type PypiRegistryConfig struct {
Expand Down

0 comments on commit b6c1ffb

Please sign in to comment.