From 1d5dfe61537e8f64e1ed6af5ef391dc193f50c0e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 24 Mar 2026 16:59:55 -0400 Subject: [PATCH] cloud_api_types: Add `is_personal` field to `Organization` (#52349) This PR adds an `is_personal` field to the `Organization` DTO returned from Cloud. We're already returning this field in production. Part of CLO-569. Release Notes: - N/A --- crates/cloud_api_types/src/cloud_api_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/cloud_api_types/src/cloud_api_types.rs b/crates/cloud_api_types/src/cloud_api_types.rs index 286bdbbc1fb08f12ddc41107705975691e6ed1b4..a606b61923074b4eda42c861afddee9efba5f4b5 100644 --- a/crates/cloud_api_types/src/cloud_api_types.rs +++ b/crates/cloud_api_types/src/cloud_api_types.rs @@ -47,6 +47,7 @@ pub struct OrganizationId(pub Arc); pub struct Organization { pub id: OrganizationId, pub name: Arc, + pub is_personal: bool, } #[derive(Debug, PartialEq, Serialize, Deserialize)]