From 6a13a99e774c3ff1b5630d238ee731584e40e268 Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Mon, 20 Oct 2025 19:26:06 -0400 Subject: [PATCH] chore: add `beta` group to stainless (#3866) # What does this PR do? similarly to `alpha:` move `v1beta` routes under a `beta` group so the client will have `client.beta` From what I can tell, the openapi.stainless.yml file is hand written while the openapi.yml file is generated and copied using the shell script so I did this by hand. Signed-off-by: Charlie Doern --- client-sdks/stainless/openapi.stainless.yml | 28 +++++++++++---------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/client-sdks/stainless/openapi.stainless.yml b/client-sdks/stainless/openapi.stainless.yml index 0a5dfc044..9461be996 100644 --- a/client-sdks/stainless/openapi.stainless.yml +++ b/client-sdks/stainless/openapi.stainless.yml @@ -208,19 +208,6 @@ resources: type: http endpoint: post /v1/conversations/{conversation_id}/items - datasets: - models: - list_datasets_response: ListDatasetsResponse - methods: - register: post /v1beta/datasets - retrieve: get /v1beta/datasets/{dataset_id} - list: - endpoint: get /v1beta/datasets - paginated: false - unregister: delete /v1beta/datasets/{dataset_id} - iterrows: get /v1beta/datasetio/iterrows/{dataset_id} - appendrows: post /v1beta/datasetio/append-rows/{dataset_id} - inspect: models: healthInfo: HealthInfo @@ -521,6 +508,21 @@ resources: stream_event_model: alpha.agents.turn.agent_turn_response_stream_chunk param_discriminator: stream + beta: + subresources: + datasets: + models: + list_datasets_response: ListDatasetsResponse + methods: + register: post /v1beta/datasets + retrieve: get /v1beta/datasets/{dataset_id} + list: + endpoint: get /v1beta/datasets + paginated: false + unregister: delete /v1beta/datasets/{dataset_id} + iterrows: get /v1beta/datasetio/iterrows/{dataset_id} + appendrows: post /v1beta/datasetio/append-rows/{dataset_id} + settings: license: MIT