From 4a9e080bda003d8e7ccf0e9e087dd59ea83b8b6b Mon Sep 17 00:00:00 2001 From: Emilia Dobrin <33132425+emdobrin@users.noreply.github.com> Date: Fri, 12 Mar 2021 14:32:21 -0800 Subject: [PATCH] Add edge prefix to eventTypes (#573) * Rename event type to edgeIdentity * Rename event type to edgeConsent --- AEPCore/Sources/eventhub/EventType.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AEPCore/Sources/eventhub/EventType.swift b/AEPCore/Sources/eventhub/EventType.swift index 787094b6c..d5a36b0de 100644 --- a/AEPCore/Sources/eventhub/EventType.swift +++ b/AEPCore/Sources/eventhub/EventType.swift @@ -24,7 +24,7 @@ public class EventType: NSObject { public static let custom = "com.adobe.eventType.custom" public static let hub = "com.adobe.eventType.hub" public static let identity = "com.adobe.eventType.identity" - public static let identityEdge = "com.adobe.eventType.identityEdge" + public static let edgeIdentity = "com.adobe.eventType.edgeIdentity" public static let lifecycle = "com.adobe.eventType.lifecycle" public static let location = "com.adobe.eventType.location" public static let pii = "com.adobe.eventType.pii" @@ -41,6 +41,6 @@ public class EventType: NSObject { public static let genericPii = "com.adobe.eventType.generic.pii" public static let genericData = "com.adobe.eventType.generic.data" public static let edge = "com.adobe.eventType.edge" - public static let consent = "com.adobe.eventType.consent" + public static let edgeConsent = "com.adobe.eventType.edgeConsent" public static let wildcard = "com.adobe.eventType._wildcard_" }