From 38903e032332a14ba0bb15082c583ecc5725fbb1 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Thu, 5 Mar 2026 14:14:22 +0300 Subject: [PATCH] refactor(graphene): consolidate address fields into single field `address_line` Replaced `address_line_1` and `address_line_2` with `address_line` to simplify the structure and reduce redundancy in the object type definition. --- engine/core/graphene/object_types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/core/graphene/object_types.py b/engine/core/graphene/object_types.py index 0ad62635..4cecacf8 100644 --- a/engine/core/graphene/object_types.py +++ b/engine/core/graphene/object_types.py @@ -392,8 +392,7 @@ class AddressType(DjangoObjectType): "postal_code", "country", "raw_data", - "address_line_1", - "address_line_2", + "address_line", "api_response", "user", )