Skip to content

Commit

Permalink
Release v0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 7, 2023
1 parent 7f6ead6 commit 323c482
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/client_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,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-vital/vital-go")
headers.Set("X-Fern-SDK-Version", "0.1.7")
headers.Set("X-Fern-SDK-Version", "0.1.8")
return headers
}
10 changes: 8 additions & 2 deletions environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ package api
// ClientOption to override the client's default environment,
// if any.
var Environments = struct {
Production string
Production string
ProductionEu string
Sandbox string
SandboxEu string
}{
Production: "https://api.tryvital.io",
Production: "https://api.tryvital.io",
ProductionEu: "https://api.eu.tryvital.io",
Sandbox: "https://api.sandbox.tryvital.io",
SandboxEu: "https://api.sandbox.eu.tryvital.io",
}

0 comments on commit 323c482

Please sign in to comment.