Skip to content

Commit 56f48c9

Browse files
committed
Release v0.0.900
1 parent 344bef8 commit 56f48c9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-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.893")
39+
headers.Set("X-Fern-SDK-Version", "v0.0.900")
4040
return headers
4141
}

types.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,11 @@ type GeneratorRegistriesConfigV2 struct {
516516
type GithubOutputMode struct {
517517
Version string `json:"version"`
518518
// A full repo url (i.e. https://github.com/fern-api/fern)
519-
RepoUrl string `json:"repoUrl"`
520-
PublishInfo *GithubPublishInfo `json:"publishInfo,omitempty"`
519+
RepoUrl string `json:"repoUrl"`
520+
// The token scoped to installing the repository. If not specified, the generator
521+
// should NOT attempt to clone the repository.
522+
InstallationToken *string `json:"installationToken,omitempty"`
523+
PublishInfo *GithubPublishInfo `json:"publishInfo,omitempty"`
521524
}
522525

523526
type GithubPublishInfo struct {

0 commit comments

Comments
 (0)