From 9db40e302d796c527f4ac96b4989c2af46e6b478 Mon Sep 17 00:00:00 2001 From: Shahroz Khan Date: Fri, 6 Mar 2026 15:08:08 -0500 Subject: [PATCH] name update --- core/src/main/kotlin/io/customer/sdk/util/EventNames.kt | 2 +- .../src/main/kotlin/io/customer/location/LocationTracker.kt | 4 ++-- .../src/main/kotlin/io/customer/location/ModuleLocation.kt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/kotlin/io/customer/sdk/util/EventNames.kt b/core/src/main/kotlin/io/customer/sdk/util/EventNames.kt index da9dd6539..7dd239281 100644 --- a/core/src/main/kotlin/io/customer/sdk/util/EventNames.kt +++ b/core/src/main/kotlin/io/customer/sdk/util/EventNames.kt @@ -13,5 +13,5 @@ object EventNames { const val APPLICATION_BACKGROUNDED = "Application Backgrounded" // Event name for location updates tracked by the Location module - const val LOCATION_UPDATE = "Location Update" + const val LOCATION_UPDATE = "CIO Location Update" } diff --git a/location/src/main/kotlin/io/customer/location/LocationTracker.kt b/location/src/main/kotlin/io/customer/location/LocationTracker.kt index bc1c696cb..26bac377c 100644 --- a/location/src/main/kotlin/io/customer/location/LocationTracker.kt +++ b/location/src/main/kotlin/io/customer/location/LocationTracker.kt @@ -19,7 +19,7 @@ import java.lang.ref.WeakReference * location coordinates. This is unfiltered — a new user always gets * the device's current location on their profile immediately. * - * 2. **"Location Update" track event** — sent via [DataPipeline.track]. + * 2. **"CIO Location Update" track event** — sent via [DataPipeline.track]. * Gated by a userId check and a sync filter (24h / 1km threshold) * to avoid redundant events. This creates a discrete event in the * user's activity timeline for journey/segment triggers. @@ -99,7 +99,7 @@ internal class LocationTracker( * * The identify event itself already carries location via * [getIdentifyContext] — this method handles the supplementary - * "Location Update" track event, subject to the sync filter. + * "CIO Location Update" track event, subject to the sync filter. */ fun onUserIdentified() { syncCachedLocationIfNeeded() diff --git a/location/src/main/kotlin/io/customer/location/ModuleLocation.kt b/location/src/main/kotlin/io/customer/location/ModuleLocation.kt index 91b2437a7..e405430ed 100644 --- a/location/src/main/kotlin/io/customer/location/ModuleLocation.kt +++ b/location/src/main/kotlin/io/customer/location/ModuleLocation.kt @@ -111,7 +111,7 @@ class ModuleLocation @JvmOverloads constructor( // the primary way location reaches a user's profile. SDKComponent.identifyHookRegistry.register(locationTracker) - // On identify, attempt to send a supplementary "Location Update" track event. + // On identify, attempt to send a supplementary "CIO Location Update" track event. // The identify event itself already carries location via context enrichment — // this track event is for journey/segment triggers in the user's timeline. eventBus.subscribe {