diff --git a/.mock/definition/organizations.yml b/.mock/definition/organizations.yml index c17698a..a32aee3 100644 --- a/.mock/definition/organizations.yml +++ b/.mock/definition/organizations.yml @@ -7,7 +7,7 @@ service: organization_identity: path: /v1/organizations/identity method: GET - auth: false + auth: true docs: Retrieves information about the active Organization source: openapi: openapi/openapi.yml diff --git a/.mock/definition/workspaces.yml b/.mock/definition/workspaces.yml index 3dd2279..5634725 100644 --- a/.mock/definition/workspaces.yml +++ b/.mock/definition/workspaces.yml @@ -7,7 +7,7 @@ service: workspace_identity: path: /v1/workspaces/identity method: GET - auth: false + auth: true docs: Retrieves information about the active Workspace source: openapi: openapi/openapi.yml diff --git a/.mock/openapi/openapi.yml b/.mock/openapi/openapi.yml index 8d4c9f6..1b35029 100644 --- a/.mock/openapi/openapi.yml +++ b/.mock/openapi/openapi.yml @@ -1453,6 +1453,8 @@ paths: description: Retrieves information about the active Organization tags: - organizations + security: + - apiKeyAuth: [] responses: '200': content: @@ -2428,6 +2430,8 @@ paths: description: Retrieves information about the active Workspace tags: - workspaces + security: + - apiKeyAuth: [] responses: '200': content: diff --git a/core/request_option.go b/core/request_option.go index 4a051b2..32d1d4a 100644 --- a/core/request_option.go +++ b/core/request_option.go @@ -57,7 +57,7 @@ func (r *RequestOptions) cloneHeader() http.Header { headers := r.HTTPHeader.Clone() headers.Set("X-Fern-Language", "Go") headers.Set("X-Fern-SDK-Name", "github.com/vellum-ai/vellum-client-go") - headers.Set("X-Fern-SDK-Version", "v0.13.6") + headers.Set("X-Fern-SDK-Version", "v0.0.2216") return headers }