-
Notifications
You must be signed in to change notification settings - Fork 3
release: 0.68.0 #646
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
Merged
stainless-app
merged 9 commits into
main
from
release-please--branches--main--changes--next--components--api-client
Nov 19, 2025
Merged
release: 0.68.0 #646
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c8f5e0b
feat(blueprint): adds queued state
stainless-app[bot] a1a2fef
codegen metadata
stainless-app[bot] 4e210b8
codegen metadata
stainless-app[bot] f52eb9a
feat(blueprints): prevent deletion of blueprints with dependent snaps…
stainless-app[bot] 5f8b203
fix(snapshot): added "deleted" status to DevboxSnapshotStatus enum \n…
stainless-app[bot] 0ee5067
feat(object): Added ability to give objects a Time To Live, after whi…
stainless-app[bot] 8bd1c44
feat(blueprints): Cleanup the BuildContext API (#6407)\n\nTest
stainless-app[bot] 8c05f5a
release: 0.68.0
stainless-app[bot] 26b46dc
cp dines
dines-rl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "0.67.1" | ||
| ".": "0.68.0" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| configured_endpoints: 94 | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-63df0e3eb49d4874724f380b650693d90e071a41748bc163e93236b72a342883.yml | ||
| openapi_spec_hash: eb5df67593bd1c4a5c8d1082f24d73fb | ||
| config_hash: 95facb8cef59b5a1b05763b871bf6a4b | ||
| configured_endpoints: 97 | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-5f33221208c1febba343daf570f73a5086f150a9b128df045ebddc3fe2c86607.yml | ||
| openapi_spec_hash: 0aea07130ddbe43a665a13a68231e2ca | ||
| config_hash: 2363f563f42501d2b1587a4f64bdccaf |
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,156 @@ | ||
| // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| import { APIResource } from '../resource'; | ||
| import { isRequestOptions } from '../core'; | ||
| import * as Core from '../core'; | ||
| import * as Shared from './shared'; | ||
| import { AgentsCursorIDPage, type AgentsCursorIDPageParams } from '../pagination'; | ||
|
|
||
| export class Agents extends APIResource { | ||
| /** | ||
| * Create a new Agent with a name and optional public visibility. The Agent will be | ||
| * assigned a unique ID. | ||
| */ | ||
| create(body: AgentCreateParams, options?: Core.RequestOptions): Core.APIPromise<AgentView> { | ||
| return this._client.post('/v1/agents', { body, ...options }); | ||
| } | ||
|
|
||
| /** | ||
| * Retrieve a specific Agent by its unique identifier. | ||
| */ | ||
| retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise<AgentView> { | ||
| return this._client.get(`/v1/agents/${id}`, options); | ||
| } | ||
|
|
||
| /** | ||
| * List all Agents for the authenticated account with pagination support. | ||
| */ | ||
| list( | ||
| query?: AgentListParams, | ||
| options?: Core.RequestOptions, | ||
| ): Core.PagePromise<AgentViewsAgentsCursorIDPage, AgentView>; | ||
| list(options?: Core.RequestOptions): Core.PagePromise<AgentViewsAgentsCursorIDPage, AgentView>; | ||
| list( | ||
| query: AgentListParams | Core.RequestOptions = {}, | ||
| options?: Core.RequestOptions, | ||
| ): Core.PagePromise<AgentViewsAgentsCursorIDPage, AgentView> { | ||
| if (isRequestOptions(query)) { | ||
| return this.list({}, query); | ||
| } | ||
| return this._client.getAPIList('/v1/agents', AgentViewsAgentsCursorIDPage, { query, ...options }); | ||
| } | ||
| } | ||
|
|
||
| export class AgentViewsAgentsCursorIDPage extends AgentsCursorIDPage<AgentView> {} | ||
|
|
||
| /** | ||
| * Parameters for creating a new Agent. | ||
| */ | ||
| export interface AgentCreateParameters { | ||
| /** | ||
| * The name of the Agent. | ||
| */ | ||
| name: string; | ||
|
|
||
| /** | ||
| * The source configuration for the Agent. | ||
| */ | ||
| source?: Shared.AgentSource | null; | ||
| } | ||
|
|
||
| /** | ||
| * A paginated list of Agents. | ||
| */ | ||
| export interface AgentListView { | ||
| /** | ||
| * The list of Agents. | ||
| */ | ||
| agents: Array<AgentView>; | ||
|
|
||
| /** | ||
| * Whether there are more Agents to fetch. | ||
| */ | ||
| has_more: boolean; | ||
|
|
||
| /** | ||
| * The count of remaining Agents. | ||
| */ | ||
| remaining_count: number; | ||
|
|
||
| /** | ||
| * The total count of Agents. | ||
| */ | ||
| total_count: number; | ||
| } | ||
|
|
||
| /** | ||
| * An Agent represents a registered AI agent entity. | ||
| */ | ||
| export interface AgentView { | ||
| /** | ||
| * The unique identifier of the Agent. | ||
| */ | ||
| id: string; | ||
|
|
||
| /** | ||
| * The creation time of the Agent (Unix timestamp milliseconds). | ||
| */ | ||
| create_time_ms: number; | ||
|
|
||
| /** | ||
| * Whether the Agent is publicly accessible. | ||
| */ | ||
| is_public: boolean; | ||
|
|
||
| /** | ||
| * The name of the Agent. | ||
| */ | ||
| name: string; | ||
|
|
||
| /** | ||
| * The source configuration for the Agent. | ||
| */ | ||
| source?: Shared.AgentSource | null; | ||
| } | ||
|
|
||
| export interface AgentCreateParams { | ||
| /** | ||
| * The name of the Agent. | ||
| */ | ||
| name: string; | ||
|
|
||
| /** | ||
| * The source configuration for the Agent. | ||
| */ | ||
| source?: Shared.AgentSource | null; | ||
| } | ||
|
|
||
| export interface AgentListParams extends AgentsCursorIDPageParams { | ||
| /** | ||
| * Filter agents by public visibility. | ||
| */ | ||
| is_public?: boolean; | ||
|
|
||
| /** | ||
| * Filter agents by name (partial match supported). | ||
| */ | ||
| name?: string; | ||
|
|
||
| /** | ||
| * Search by agent ID or name. | ||
| */ | ||
| search?: string; | ||
| } | ||
|
|
||
| Agents.AgentViewsAgentsCursorIDPage = AgentViewsAgentsCursorIDPage; | ||
|
|
||
| export declare namespace Agents { | ||
| export { | ||
| type AgentCreateParameters as AgentCreateParameters, | ||
| type AgentListView as AgentListView, | ||
| type AgentView as AgentView, | ||
| AgentViewsAgentsCursorIDPage as AgentViewsAgentsCursorIDPage, | ||
| type AgentCreateParams as AgentCreateParams, | ||
| type AgentListParams as AgentListParams, | ||
| }; | ||
| } | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: Replace the duplicated
AgentCreateParametersinterface with a type alias to the existingAgentCreateParamsto avoid redundant/contradictory type definitions. [maintainability]Severity Level: Minor⚠️
Why it matters? ⭐
The file currently defines two identical shapes: AgentCreateParameters (interface) and AgentCreateParams (interface). I confirmed both exist in src/resources/agents.ts. Making AgentCreateParameters a type alias to AgentCreateParams removes redundant duplicate definitions and prevents them from drifting apart in the future. The alias preserves the public type name and is fully compatible with the existing namespace re-exports in this file, so this is a safe, maintainability-focused change.
Prompt for AI Agent 🤖