From 3859445c782dbdcc9b2475366066b7ddef4e5273 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 4 Mar 2026 20:17:30 +0300 Subject: [PATCH] feat(graphene): add address_line_1 and address_line_2 to object types Expanded the object type fields to include additional address details for better data representation. --- engine/core/graphene/object_types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/core/graphene/object_types.py b/engine/core/graphene/object_types.py index d5d6f687..4076d082 100644 --- a/engine/core/graphene/object_types.py +++ b/engine/core/graphene/object_types.py @@ -388,6 +388,8 @@ class AddressType(DjangoObjectType): "postal_code", "country", "raw_data", + "address_line_1", + "address_line_2", "api_response", "user", )