Skip to content

Commit

Permalink
Merge branch 'main' of github.com:adobe/aepsdk-core-ios into Identity…
Browse files Browse the repository at this point in the history
…_handleAnalyticsIdentity
  • Loading branch information
cacheung committed Mar 24, 2021
2 parents 951ac90 + 785daae commit 7656fa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 40 deletions.
2 changes: 1 addition & 1 deletion Documentation/Debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The AEP SDK offers an extension to quickly inspect, validate, debug data collect

#### Install Compatibility Layer

The Assurance extension requires the backward-compatible layer. Instructions on installing the backward compatible layer can be found [here](./Migration/ACP-Migration.md).
The Assurance extension requires the backward-compatible layer. Instructions on installing the backward compatible layer can be found [here](./Migration/Migration_Install.md).

#### Add Assurance to your app

Expand Down
41 changes: 2 additions & 39 deletions Documentation/EventHub/Event.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,50 +18,13 @@ This document outlines the specification for an Event Hub `Event`. These events

Every `Event` has an `EventType` enum associated with it, which defines what kind of event it is and determines who is notified when this event occurs.

| Name | Case | Raw Value |
| ----------------- | ---------------- | ------------------------------------- |
| Acquisition | acquisition | com.adobe.eventType.acquisition |
| Analytics | analytics | com.adobe.eventType.analytics |
| Audience Manager | audienceManager | com.adobe.eventType.audienceManager |
| Campaign | campaign | com.adobe.eventType.campaign |
| Configuration | configuration | com.adobe.eventType.configuration |
| Custom | custom | com.adobe.eventType.custom |
| Hub | hub | com.adobe.eventType.hub |
| Identity | identity | com.adobe.eventType.identity |
| Lifecycle | lifecycle | com.adobe.eventType.lifecycle |
| Location | location | com.adobe.eventType.location |
| PII | pii | com.adobe.eventType.pii |
| Rules Engine | rulesEngine | com.adobe.eventType.rulesEngine |
| Signal | signal | com.adobe.eventType.signal |
| System | system | com.adobe.eventType.system |
| Target | target | com.adobe.eventType.target |
| User Profile | userProfile | com.adobe.eventType.userProfile |
| Places | places | com.adobe.eventType.places |
| Generic Track | genericTrack | com.adobe.eventType.generic.track |
| Generic Lifecycle | genericLifecycle | com.adobe.eventType.generic.lifecycle |
| Generic Identity | genericIdentity | com.adobe.eventType.generic.identity |
| Generic Pii | genericPii | com.adobe.eventType.generic.pii |
| Generic Data | genericData | com.adobe.eventType.generic.data |
| Wildcard | wildcard | com.adobe.eventType.\_wildcard_ |
For a full list of possible event types, see [EventType.swift](https://github.com/adobe/aepsdk-core-ios/blob/main/AEPCore/Sources/eventhub/EventType.swift).

### Event Source

Along with an `EventType`, an `Event` has a `EventSource` enum associated with it, which defines where the event originated and is used to determine who is notified when this event occurs.

| Name | Case | Raw Value |
| ----------------- | ---------------- | -------------------------------------- |
| Booted | booted | com.adobe.eventSource.booted |
| None | none | com.adobe.eventSource.none |
| OS | os | com.adobe.eventSource.os |
| Request Content | requestContent | com.adobe.eventSource.requestContent |
| Request Identity | requestIdentity | com.adobe.eventSource.requestIdentity |
| Request Profile | requestProfile | com.adobe.eventSource.requestProfile |
| Request Reset | requestReset | com.adobe.eventSource.requestReset |
| Response Content | responseContent | com.adobe.eventSource.responseContent |
| Response Identity | responseIdentity | com.adobe.eventSource.responseIdentity |
| Response Profile | responseProfile | com.adobe.eventSource.responseProfile |
| Shared State | sharedState | com.adobe.eventSource.sharedState |
| Wildcard | wildcard | com.adobe.eventSource.\_wildcard_ |
For a full list of possible event sources, see [EventSource.swift](https://github.com/adobe/aepsdk-core-ios/blob/main/AEPCore/Sources/eventhub/EventSource.swift).

### Creating an `Event`

Expand Down

0 comments on commit 7656fa7

Please sign in to comment.