From f04612b17f2660ba02f59e2a84f2595e95d920b7 Mon Sep 17 00:00:00 2001 From: Lovro Colic Date: Fri, 4 Sep 2026 15:53:19 +0200 Subject: [PATCH] add feature flag for account tree feature --- app/config/feature_flags.yaml | 4 ++++ schema.graphql | 1 + schema.json | 6 ++++++ 3 files changed, 11 insertions(+) diff --git a/app/config/feature_flags.yaml b/app/config/feature_flags.yaml index 60d08a996c3..397b84e57c9 100644 --- a/app/config/feature_flags.yaml +++ b/app/config/feature_flags.yaml @@ -41,3 +41,7 @@ product_catalog: skip_credit_invoice_auto_payment_delay: description: "Trigger the auto-payment of credit invoices (wallet top-ups) immediately instead of delaying it behind a possible hosted checkout payment" owners: ["@brunomiguelpinto"] + +account_tree: + description: "Enable the account tree - hierarchy based attributed usage below the customer" + owners: ["@lovrocolic"] diff --git a/schema.graphql b/schema.graphql index 76949f38a65..536f0befbe1 100644 --- a/schema.graphql +++ b/schema.graphql @@ -6562,6 +6562,7 @@ input ExportFinanceAssistantResultInput { Organization Feature Flag Values """ enum FeatureFlagEnum { + account_tree enriched_events_aggregation fixed_charge_usage_delta_migration lazy_charge_usage_cache diff --git a/schema.json b/schema.json index a6f3a7e7b10..34f4a1c0bc1 100644 --- a/schema.json +++ b/schema.json @@ -32111,6 +32111,12 @@ "description": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "account_tree", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null