🌿 Fern Regeneration -- November 28, 2025#66
Merged
Conversation
jackfischer
approved these changes
Nov 28, 2025
Greptile OverviewGreptile SummaryThis PR adds a new Key Changes:
The implementation follows existing SDK patterns consistently, using the same client wrapper structure, error handling, and Pydantic model configuration as other endpoints in the codebase. Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant Client as Client Code
participant CopilotClient as CopilotsClient
participant RawClient as RawCopilotsClient
participant API as Credal API (v0/copilots/export)
Client->>CopilotClient: export(agent_created_from, agent_created_to, version_created_from, version_created_to, limit, cursor)
CopilotClient->>RawClient: export(parameters)
RawClient->>API: POST v0/copilots/export with JSON body
Note over RawClient,API: Body includes: agentCreatedFrom, agentCreatedTo,<br/>versionCreatedFrom, versionCreatedTo,<br/>limit, cursor
API-->>RawClient: HTTP Response (200-299)
RawClient->>RawClient: Parse JSON to ExportCopilotsResponse
RawClient-->>CopilotClient: HttpResponse[ExportCopilotsResponse]
CopilotClient->>CopilotClient: Extract response.data
CopilotClient-->>Client: ExportCopilotsResponse(data, has_more, next_cursor)
Note over Client,API: ExportCopilotsResponse contains:<br/>- List[ExportedCopilot] data<br/>- bool has_more<br/>- Optional[str] next_cursor
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR regenerates code to match the latest API Definition.