Skip to content

Commit

Permalink
Release v0.0.889
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jun 18, 2024
1 parent 9a59d85 commit 9766f6a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 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.882")
headers.Set("X-Fern-SDK-Version", "v0.0.889")
return headers
}
43 changes: 24 additions & 19 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -823,11 +823,12 @@ type MavenCentralSignatureGithubInfo struct {
}

type MavenGithubPublishInfo struct {
RegistryUrl string `json:"registryUrl"`
Coordinate string `json:"coordinate"`
UsernameEnvironmentVariable EnvironmentVariable `json:"usernameEnvironmentVariable"`
PasswordEnvironmentVariable EnvironmentVariable `json:"passwordEnvironmentVariable"`
Signature *MavenCentralSignatureGithubInfo `json:"signature,omitempty"`
RegistryUrl string `json:"registryUrl"`
Coordinate string `json:"coordinate"`
UsernameEnvironmentVariable EnvironmentVariable `json:"usernameEnvironmentVariable"`
PasswordEnvironmentVariable EnvironmentVariable `json:"passwordEnvironmentVariable"`
Signature *MavenCentralSignatureGithubInfo `json:"signature,omitempty"`
ShouldGeneratePublishWorkflow *bool `json:"shouldGeneratePublishWorkflow,omitempty"`
}

type MavenRegistryConfig struct {
Expand All @@ -847,9 +848,10 @@ type MavenRegistryConfigV2 struct {
}

type NpmGithubPublishInfo struct {
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
TokenEnvironmentVariable EnvironmentVariable `json:"tokenEnvironmentVariable"`
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
TokenEnvironmentVariable EnvironmentVariable `json:"tokenEnvironmentVariable"`
ShouldGeneratePublishWorkflow *bool `json:"shouldGeneratePublishWorkflow,omitempty"`
}

type NpmRegistryConfig struct {
Expand All @@ -865,9 +867,10 @@ type NpmRegistryConfigV2 struct {
}

type NugetGithubPublishInfo struct {
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
ApiKeyEnvironmentVariable EnvironmentVariable `json:"apiKeyEnvironmentVariable"`
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
ApiKeyEnvironmentVariable EnvironmentVariable `json:"apiKeyEnvironmentVariable"`
ShouldGeneratePublishWorkflow *bool `json:"shouldGeneratePublishWorkflow,omitempty"`
}

type NugetRegistryConfig struct {
Expand Down Expand Up @@ -1008,11 +1011,12 @@ type PublishingMetadata struct {
}

type PypiGithubPublishInfo struct {
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
UsernameEnvironmentVariable EnvironmentVariable `json:"usernameEnvironmentVariable"`
PasswordEnvironmentVariable EnvironmentVariable `json:"passwordEnvironmentVariable"`
PypiMetadata *PypiMetadata `json:"pypiMetadata,omitempty"`
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
UsernameEnvironmentVariable EnvironmentVariable `json:"usernameEnvironmentVariable"`
PasswordEnvironmentVariable EnvironmentVariable `json:"passwordEnvironmentVariable"`
PypiMetadata *PypiMetadata `json:"pypiMetadata,omitempty"`
ShouldGeneratePublishWorkflow *bool `json:"shouldGeneratePublishWorkflow,omitempty"`
}

type PypiMetadata struct {
Expand All @@ -1038,9 +1042,10 @@ type RemoteGeneratorEnvironment struct {
}

type RubyGemsGithubPublishInfo struct {
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
ApiKeyEnvironmentVariable EnvironmentVariable `json:"apiKeyEnvironmentVariable"`
RegistryUrl string `json:"registryUrl"`
PackageName string `json:"packageName"`
ApiKeyEnvironmentVariable EnvironmentVariable `json:"apiKeyEnvironmentVariable"`
ShouldGeneratePublishWorkflow *bool `json:"shouldGeneratePublishWorkflow,omitempty"`
}

type RubyGemsRegistryConfig struct {
Expand Down

0 comments on commit 9766f6a

Please sign in to comment.