Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull in updates from fern-spec #174

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generated/go/attributes/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func NewClient(opts ...option.RequestOption) *Client {
}
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Adds a new Attribute
// Adds a new attribute to an entity in the project
func (c *Client) PostAttribute(
ctx context.Context,
request *generatedgo.AddAttribute,
Expand Down
2 changes: 1 addition & 1 deletion generated/go/notifications/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func NewClient(opts ...option.RequestOption) *Client {
}
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> The Project Notifications endpoint returns a list of notifications on all entities saved to a project.
// The Project Notifications endpoint returns a list of notifications on all entities saved to a project.
func (c *Client) ProjectNotifications(
ctx context.Context,
// Unique identifier of the project
Expand Down
6 changes: 3 additions & 3 deletions generated/go/project/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func NewClient(opts ...option.RequestOption) *Client {
}
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Create a new project.
// Create a new project
func (c *Client) CreateProject(
ctx context.Context,
request *generatedgo.CreateProjectRequest,
Expand Down Expand Up @@ -129,7 +129,7 @@ func (c *Client) CreateProject(
return response, nil
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Retrieve a list of projects including upload progress info.
// Retrieve a list of projects including upload progress info.
func (c *Client) GetProjects(
ctx context.Context,
request *generatedgo.GetProjects,
Expand Down Expand Up @@ -230,7 +230,7 @@ func (c *Client) GetProjects(
return response, nil
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Retrieve a list of entities in a project.
// Retrieve a list of entities in a project.
func (c *Client) GetProjectEntities(
ctx context.Context,
// The project identifier.
Expand Down
4 changes: 2 additions & 2 deletions generated/go/resolution/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (c *Client) ResolutionPost(
return response, nil
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> The persisted resolution endpoints allow users to search for matching entities against a provided list of attributes. The endpoint is similar to the resolution endpoint, except it also stores matched entities into user's project.
// The persisted resolution endpoints allow users to search for matching entities against a provided list of attributes. The endpoint is similar to the resolution endpoint, except it also stores matched entities into user's project.
func (c *Client) ResolutionPersisted(
ctx context.Context,
// Unique identifier of the project
Expand Down Expand Up @@ -341,7 +341,7 @@ func (c *Client) ResolutionPersisted(
return response, nil
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> This endpoint allows you to upload entities in bulk.
// <Warning>This endpoint is in beta and subject to change</Warning> This endpoint allows you to upload entities in bulk.
func (c *Client) ResolutionUpload(
ctx context.Context,
// Unique identifier of the project
Expand Down
2 changes: 1 addition & 1 deletion generated/go/resource/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func NewClient(opts ...option.RequestOption) *Client {
}
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Save an entity to a project.
// Save an entity to a project.
func (c *Client) SaveEntity(
ctx context.Context,
request *generatedgo.SaveEntityRequest,
Expand Down
2 changes: 1 addition & 1 deletion generated/go/supplychain/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func NewClient(opts ...option.RequestOption) *Client {
}
}

// <Warning>This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> Execute a traversal of the upstream trade network (supply chain) of an entity, returning a set of entities and edges between them.
// Execute a traversal of the upstream trade network (supply chain) of an entity, returning a set of entities and edges between them
func (c *Client) UpstreamTradeTraversal(
ctx context.Context,
// The root entity identifier.
Expand Down
Loading