From 329294d2b6be57bed85052424e7f600bc73da2e0 Mon Sep 17 00:00:00 2001 From: Kacper Wojciechowski <39823706+jog1t@users.noreply.github.com> Date: Tue, 7 Oct 2025 21:31:56 +0200 Subject: [PATCH] chore(sdk): update sdk --- sdks/go/api-full/types.go | 5 +++-- sdks/rust/api-full/rust/Cargo.toml | 2 +- sdks/rust/api-full/rust/README.md | 4 ++-- sdks/rust/api-full/rust/docs/Datacenter.md | 3 ++- .../api-full/rust/src/apis/actors_create_api.rs | 2 +- .../api-full/rust/src/apis/actors_delete_api.rs | 2 +- .../rust/src/apis/actors_get_or_create_api.rs | 2 +- sdks/rust/api-full/rust/src/apis/actors_list_api.rs | 2 +- .../api-full/rust/src/apis/actors_list_names_api.rs | 2 +- sdks/rust/api-full/rust/src/apis/configuration.rs | 4 ++-- sdks/rust/api-full/rust/src/apis/datacenters_api.rs | 2 +- sdks/rust/api-full/rust/src/apis/namespaces_api.rs | 2 +- .../api-full/rust/src/apis/runner_configs_api.rs | 2 +- sdks/rust/api-full/rust/src/apis/runners_api.rs | 2 +- sdks/rust/api-full/rust/src/models/actor.rs | 2 +- sdks/rust/api-full/rust/src/models/actor_name.rs | 2 +- .../rust/src/models/actors_create_request.rs | 2 +- .../rust/src/models/actors_create_response.rs | 2 +- .../rust/src/models/actors_get_or_create_request.rs | 2 +- .../src/models/actors_get_or_create_response.rs | 2 +- .../rust/src/models/actors_list_names_response.rs | 2 +- .../rust/src/models/actors_list_response.rs | 2 +- sdks/rust/api-full/rust/src/models/crash_policy.rs | 2 +- sdks/rust/api-full/rust/src/models/datacenter.rs | 13 ++++++++----- .../rust/src/models/datacenters_list_response.rs | 2 +- sdks/rust/api-full/rust/src/models/namespace.rs | 2 +- .../rust/src/models/namespace_list_response.rs | 2 +- .../rust/src/models/namespaces_create_request.rs | 2 +- .../rust/src/models/namespaces_create_response.rs | 2 +- sdks/rust/api-full/rust/src/models/pagination.rs | 2 +- sdks/rust/api-full/rust/src/models/runner.rs | 2 +- sdks/rust/api-full/rust/src/models/runner_config.rs | 2 +- .../rust/src/models/runner_config_serverless.rs | 2 +- .../rust/src/models/runner_config_variant.rs | 2 +- .../rust/src/models/runner_configs_list_response.rs | 2 +- .../src/models/runner_configs_upsert_request.rs | 2 +- .../rust/src/models/runners_list_names_response.rs | 2 +- .../rust/src/models/runners_list_response.rs | 2 +- .../typescript/api-full/src/api/types/Datacenter.ts | 3 ++- .../api-full/src/serialization/types/Datacenter.ts | 6 ++++-- 40 files changed, 56 insertions(+), 48 deletions(-) diff --git a/sdks/go/api-full/types.go b/sdks/go/api-full/types.go index eeb79a3a5d..0727af79ee 100644 --- a/sdks/go/api-full/types.go +++ b/sdks/go/api-full/types.go @@ -265,8 +265,9 @@ func (c CrashPolicy) Ptr() *CrashPolicy { } type Datacenter struct { - DatacenterLabel int `json:"datacenter_label"` - Name string `json:"name"` + Label int `json:"label"` + Name string `json:"name"` + Url string `json:"url"` _rawJSON json.RawMessage } diff --git a/sdks/rust/api-full/rust/Cargo.toml b/sdks/rust/api-full/rust/Cargo.toml index 4c3ea6b095..ed4fb4c899 100644 --- a/sdks/rust/api-full/rust/Cargo.toml +++ b/sdks/rust/api-full/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rivet-api-full" -version = "25.7.2" +version = "25.7.3" authors = ["developer@rivet.gg"] description = "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)" license = "Apache-2.0" diff --git a/sdks/rust/api-full/rust/README.md b/sdks/rust/api-full/rust/README.md index fd9930d3cd..0ef2a63c5b 100644 --- a/sdks/rust/api-full/rust/README.md +++ b/sdks/rust/api-full/rust/README.md @@ -7,8 +7,8 @@ No description provided (generated by Openapi Generator https://github.com/opena This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client. -- API version: 25.7.2 -- Package version: 25.7.2 +- API version: 25.7.3 +- Package version: 25.7.3 - Generator version: 7.14.0 - Build package: `org.openapitools.codegen.languages.RustClientCodegen` diff --git a/sdks/rust/api-full/rust/docs/Datacenter.md b/sdks/rust/api-full/rust/docs/Datacenter.md index fd9f600f98..06ef337398 100644 --- a/sdks/rust/api-full/rust/docs/Datacenter.md +++ b/sdks/rust/api-full/rust/docs/Datacenter.md @@ -4,8 +4,9 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**datacenter_label** | **i32** | | +**label** | **i32** | | **name** | **String** | | +**url** | **String** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/sdks/rust/api-full/rust/src/apis/actors_create_api.rs b/sdks/rust/api-full/rust/src/apis/actors_create_api.rs index 9f0dda3010..22eca6da92 100644 --- a/sdks/rust/api-full/rust/src/apis/actors_create_api.rs +++ b/sdks/rust/api-full/rust/src/apis/actors_create_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/actors_delete_api.rs b/sdks/rust/api-full/rust/src/apis/actors_delete_api.rs index 7cf434cd26..918faf74f3 100644 --- a/sdks/rust/api-full/rust/src/apis/actors_delete_api.rs +++ b/sdks/rust/api-full/rust/src/apis/actors_delete_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/actors_get_or_create_api.rs b/sdks/rust/api-full/rust/src/apis/actors_get_or_create_api.rs index af53032870..44b978cf02 100644 --- a/sdks/rust/api-full/rust/src/apis/actors_get_or_create_api.rs +++ b/sdks/rust/api-full/rust/src/apis/actors_get_or_create_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/actors_list_api.rs b/sdks/rust/api-full/rust/src/apis/actors_list_api.rs index e863ea55c3..10d639fbcf 100644 --- a/sdks/rust/api-full/rust/src/apis/actors_list_api.rs +++ b/sdks/rust/api-full/rust/src/apis/actors_list_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/actors_list_names_api.rs b/sdks/rust/api-full/rust/src/apis/actors_list_names_api.rs index 9b6d263ce4..6fdae378ea 100644 --- a/sdks/rust/api-full/rust/src/apis/actors_list_names_api.rs +++ b/sdks/rust/api-full/rust/src/apis/actors_list_names_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/configuration.rs b/sdks/rust/api-full/rust/src/apis/configuration.rs index c70787d7ca..30b207f4d2 100644 --- a/sdks/rust/api-full/rust/src/apis/configuration.rs +++ b/sdks/rust/api-full/rust/src/apis/configuration.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ @@ -40,7 +40,7 @@ impl Default for Configuration { fn default() -> Self { Configuration { base_path: "http://localhost".to_owned(), - user_agent: Some("OpenAPI-Generator/25.7.2/rust".to_owned()), + user_agent: Some("OpenAPI-Generator/25.7.3/rust".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None, diff --git a/sdks/rust/api-full/rust/src/apis/datacenters_api.rs b/sdks/rust/api-full/rust/src/apis/datacenters_api.rs index a7bc9eae18..257057dc74 100644 --- a/sdks/rust/api-full/rust/src/apis/datacenters_api.rs +++ b/sdks/rust/api-full/rust/src/apis/datacenters_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/namespaces_api.rs b/sdks/rust/api-full/rust/src/apis/namespaces_api.rs index 6927323daa..1e5b41319a 100644 --- a/sdks/rust/api-full/rust/src/apis/namespaces_api.rs +++ b/sdks/rust/api-full/rust/src/apis/namespaces_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/runner_configs_api.rs b/sdks/rust/api-full/rust/src/apis/runner_configs_api.rs index 234db41bb2..b87a90c97e 100644 --- a/sdks/rust/api-full/rust/src/apis/runner_configs_api.rs +++ b/sdks/rust/api-full/rust/src/apis/runner_configs_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/apis/runners_api.rs b/sdks/rust/api-full/rust/src/apis/runners_api.rs index df30e06aee..0d26de70e1 100644 --- a/sdks/rust/api-full/rust/src/apis/runners_api.rs +++ b/sdks/rust/api-full/rust/src/apis/runners_api.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actor.rs b/sdks/rust/api-full/rust/src/models/actor.rs index 06dc3f2b03..ad53ee9f0e 100644 --- a/sdks/rust/api-full/rust/src/models/actor.rs +++ b/sdks/rust/api-full/rust/src/models/actor.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actor_name.rs b/sdks/rust/api-full/rust/src/models/actor_name.rs index 7dea54e591..c2f1b309b3 100644 --- a/sdks/rust/api-full/rust/src/models/actor_name.rs +++ b/sdks/rust/api-full/rust/src/models/actor_name.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_create_request.rs b/sdks/rust/api-full/rust/src/models/actors_create_request.rs index f097d69df0..4d21baab1c 100644 --- a/sdks/rust/api-full/rust/src/models/actors_create_request.rs +++ b/sdks/rust/api-full/rust/src/models/actors_create_request.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_create_response.rs b/sdks/rust/api-full/rust/src/models/actors_create_response.rs index 0e49a1892a..1a6e9501a3 100644 --- a/sdks/rust/api-full/rust/src/models/actors_create_response.rs +++ b/sdks/rust/api-full/rust/src/models/actors_create_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_get_or_create_request.rs b/sdks/rust/api-full/rust/src/models/actors_get_or_create_request.rs index 48a0d62451..08dc428788 100644 --- a/sdks/rust/api-full/rust/src/models/actors_get_or_create_request.rs +++ b/sdks/rust/api-full/rust/src/models/actors_get_or_create_request.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_get_or_create_response.rs b/sdks/rust/api-full/rust/src/models/actors_get_or_create_response.rs index 72693166d5..263637aa24 100644 --- a/sdks/rust/api-full/rust/src/models/actors_get_or_create_response.rs +++ b/sdks/rust/api-full/rust/src/models/actors_get_or_create_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_list_names_response.rs b/sdks/rust/api-full/rust/src/models/actors_list_names_response.rs index 27cd1db76a..d6abee0026 100644 --- a/sdks/rust/api-full/rust/src/models/actors_list_names_response.rs +++ b/sdks/rust/api-full/rust/src/models/actors_list_names_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/actors_list_response.rs b/sdks/rust/api-full/rust/src/models/actors_list_response.rs index c9fb0c9bdc..df16403b8d 100644 --- a/sdks/rust/api-full/rust/src/models/actors_list_response.rs +++ b/sdks/rust/api-full/rust/src/models/actors_list_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/crash_policy.rs b/sdks/rust/api-full/rust/src/models/crash_policy.rs index a1d2b65a62..0911590d8f 100644 --- a/sdks/rust/api-full/rust/src/models/crash_policy.rs +++ b/sdks/rust/api-full/rust/src/models/crash_policy.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/datacenter.rs b/sdks/rust/api-full/rust/src/models/datacenter.rs index ede3aef871..072b28d6bb 100644 --- a/sdks/rust/api-full/rust/src/models/datacenter.rs +++ b/sdks/rust/api-full/rust/src/models/datacenter.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ @@ -13,17 +13,20 @@ use serde::{Deserialize, Serialize}; #[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)] pub struct Datacenter { - #[serde(rename = "datacenter_label")] - pub datacenter_label: i32, + #[serde(rename = "label")] + pub label: i32, #[serde(rename = "name")] pub name: String, + #[serde(rename = "url")] + pub url: String, } impl Datacenter { - pub fn new(datacenter_label: i32, name: String) -> Datacenter { + pub fn new(label: i32, name: String, url: String) -> Datacenter { Datacenter { - datacenter_label, + label, name, + url, } } } diff --git a/sdks/rust/api-full/rust/src/models/datacenters_list_response.rs b/sdks/rust/api-full/rust/src/models/datacenters_list_response.rs index 2da18178e2..72e812d1d3 100644 --- a/sdks/rust/api-full/rust/src/models/datacenters_list_response.rs +++ b/sdks/rust/api-full/rust/src/models/datacenters_list_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/namespace.rs b/sdks/rust/api-full/rust/src/models/namespace.rs index d103bd43e1..cc9b4d7e82 100644 --- a/sdks/rust/api-full/rust/src/models/namespace.rs +++ b/sdks/rust/api-full/rust/src/models/namespace.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/namespace_list_response.rs b/sdks/rust/api-full/rust/src/models/namespace_list_response.rs index 8b3facdc47..048e83b519 100644 --- a/sdks/rust/api-full/rust/src/models/namespace_list_response.rs +++ b/sdks/rust/api-full/rust/src/models/namespace_list_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/namespaces_create_request.rs b/sdks/rust/api-full/rust/src/models/namespaces_create_request.rs index 126cdb08f7..e076e9206f 100644 --- a/sdks/rust/api-full/rust/src/models/namespaces_create_request.rs +++ b/sdks/rust/api-full/rust/src/models/namespaces_create_request.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/namespaces_create_response.rs b/sdks/rust/api-full/rust/src/models/namespaces_create_response.rs index 03fefebfaa..1c72cfbf3d 100644 --- a/sdks/rust/api-full/rust/src/models/namespaces_create_response.rs +++ b/sdks/rust/api-full/rust/src/models/namespaces_create_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/pagination.rs b/sdks/rust/api-full/rust/src/models/pagination.rs index 344116e9ac..7d3b9e7b37 100644 --- a/sdks/rust/api-full/rust/src/models/pagination.rs +++ b/sdks/rust/api-full/rust/src/models/pagination.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner.rs b/sdks/rust/api-full/rust/src/models/runner.rs index ce7879a16e..925c8742af 100644 --- a/sdks/rust/api-full/rust/src/models/runner.rs +++ b/sdks/rust/api-full/rust/src/models/runner.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner_config.rs b/sdks/rust/api-full/rust/src/models/runner_config.rs index 0fae4a012e..e6a1b72117 100644 --- a/sdks/rust/api-full/rust/src/models/runner_config.rs +++ b/sdks/rust/api-full/rust/src/models/runner_config.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner_config_serverless.rs b/sdks/rust/api-full/rust/src/models/runner_config_serverless.rs index 071a53efb1..68343a2ade 100644 --- a/sdks/rust/api-full/rust/src/models/runner_config_serverless.rs +++ b/sdks/rust/api-full/rust/src/models/runner_config_serverless.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner_config_variant.rs b/sdks/rust/api-full/rust/src/models/runner_config_variant.rs index d0cc05665c..76a95af2ba 100644 --- a/sdks/rust/api-full/rust/src/models/runner_config_variant.rs +++ b/sdks/rust/api-full/rust/src/models/runner_config_variant.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner_configs_list_response.rs b/sdks/rust/api-full/rust/src/models/runner_configs_list_response.rs index 01b14518e2..a398ddf8fe 100644 --- a/sdks/rust/api-full/rust/src/models/runner_configs_list_response.rs +++ b/sdks/rust/api-full/rust/src/models/runner_configs_list_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runner_configs_upsert_request.rs b/sdks/rust/api-full/rust/src/models/runner_configs_upsert_request.rs index cb96db0eac..811f0a85b9 100644 --- a/sdks/rust/api-full/rust/src/models/runner_configs_upsert_request.rs +++ b/sdks/rust/api-full/rust/src/models/runner_configs_upsert_request.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runners_list_names_response.rs b/sdks/rust/api-full/rust/src/models/runners_list_names_response.rs index 8e41faf3a7..abce725912 100644 --- a/sdks/rust/api-full/rust/src/models/runners_list_names_response.rs +++ b/sdks/rust/api-full/rust/src/models/runners_list_names_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/rust/api-full/rust/src/models/runners_list_response.rs b/sdks/rust/api-full/rust/src/models/runners_list_response.rs index 09f9ba7dbe..ee71d90921 100644 --- a/sdks/rust/api-full/rust/src/models/runners_list_response.rs +++ b/sdks/rust/api-full/rust/src/models/runners_list_response.rs @@ -3,7 +3,7 @@ * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 25.7.2 + * The version of the OpenAPI document: 25.7.3 * Contact: developer@rivet.gg * Generated by: https://openapi-generator.tech */ diff --git a/sdks/typescript/api-full/src/api/types/Datacenter.ts b/sdks/typescript/api-full/src/api/types/Datacenter.ts index 20d24c2eac..ecab146bfb 100644 --- a/sdks/typescript/api-full/src/api/types/Datacenter.ts +++ b/sdks/typescript/api-full/src/api/types/Datacenter.ts @@ -3,6 +3,7 @@ */ export interface Datacenter { - datacenterLabel: number; + label: number; name: string; + url: string; } diff --git a/sdks/typescript/api-full/src/serialization/types/Datacenter.ts b/sdks/typescript/api-full/src/serialization/types/Datacenter.ts index 14d56a925e..53138cd3dd 100644 --- a/sdks/typescript/api-full/src/serialization/types/Datacenter.ts +++ b/sdks/typescript/api-full/src/serialization/types/Datacenter.ts @@ -8,13 +8,15 @@ import * as core from "../../core"; export const Datacenter: core.serialization.ObjectSchema = core.serialization.object({ - datacenterLabel: core.serialization.property("datacenter_label", core.serialization.number()), + label: core.serialization.number(), name: core.serialization.string(), + url: core.serialization.string(), }); export declare namespace Datacenter { export interface Raw { - datacenter_label: number; + label: number; name: string; + url: string; } }