Contains constants and functions for a AEP Edge Response.
The structure for a AEP Edge Response is as follows:
{
payload: {
ACPExtensionEventData: {
requestId: <string>,
requestEventId: <string>,
type: <string>,
payload: <array>,
},
ACPExtensionEventSource: <string>,
ACPExtensionEventType: 'com.adobe.eventtype.edge'
ACPExtensionEventName: <string>,
ACPExtensionEventNumber: <integer>,
ACPExtensionEventUniqueIdentifier: <string>,
},
type: 'generic'
vendor: <string>,
annotations: <array>,
clientId: <string>,
timestamp: <number>,
uuid: <string>,
}
- Source:
Members
(static, constant) EVENT_TYPE
The value for eventType
for a AEP Edge Response.
Path is payload,ACPExtensionEventType
.
- Source:
(static, constant) group
A grouping for this object
- Source:
(static, constant) label
A label that can be used when describing this object
- Source:
(static, constant) matcher
Matcher can be used to find matching AEP Edge Response objects.
- Source:
- See:
-
- kit.match
(static, constant) parentDepth
Describes the number of parents this object has based off schema references. When checking for matches for example, we want to use a schema that is more specific over a more generic schema
- Source:
(static, constant) path :string
Paths for the keys on a AEP Edge Response
Properties:
Name | Type | Description |
---|---|---|
payload |
string |
An object with custom data describing the event. |
eventData |
string |
An object with the custom data describing the event. |
requestId |
string |
The request ID of the edge service request. |
requestEventId |
string |
The event ID of the event that this is a response to. |
requestType |
string |
The type of request that was made. |
requestPayload |
string |
The information received in the response. |
eventSource |
string |
The event source. |
eventType |
string |
The event type. |
eventName |
string |
The name of the event. |
sdkEventNumber |
string |
The event number generated by the SDK. |
eventId |
string |
The unique event id. |
rootType |
string |
The type of event. |
vendor |
string |
The vendor of the plugin that sent the event. |
annotations |
string |
Array of Annotation objects. |
clientId |
string |
A unique id that differentiates clients from one another. |
timestamp |
string |
When the event occurred. |
rootId |
string |
Uniquely identifies each event. |
- Source:
(static, constant) ROOT_TYPE
The value for rootType
for a AEP Edge Response.
Path is type
.
- Source:
Methods
(static) get(alias, data) → {*}
Retrieves a value from the object. You can provide either a path or an alias.
Parameters:
Name | Type | Description |
---|---|---|
alias |
string |
Path or alias |
data |
* |
Data to search |
- Source:
(static) getRequestEventId(source) → {string}
Returns the requestEventId
from the AEP Edge Response.
This is the the event ID of the event that this is a response to.
Path is payload,ACPExtensionEventData,requestEventId
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The AEP Edge Response instance |
- Source:
(static) getRequestId(source) → {string}
Returns the requestId
from the AEP Edge Response.
This is the the request ID of the edge service request.
Path is payload,ACPExtensionEventData,requestId
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The AEP Edge Response instance |
- Source:
(static) getRequestPayload(source) → {Array}
Returns the requestPayload
from the AEP Edge Response.
This is the the information received in the response.
Path is payload,ACPExtensionEventData,payload
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The AEP Edge Response instance |
- Source:
(static) getRequestType(source) → {string}
Returns the requestType
from the AEP Edge Response.
This is the the type of request that was made.
Path is payload,ACPExtensionEventData,type
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The AEP Edge Response instance |
- Source:
(static) isMatch(source) → {boolean}
Tests the provided source against the matcher to see if it's AEP Edge Response event.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The AEP Edge Response instance |
- Source:
- See:
-
- kit.isMatch
(static) make(…input) → {object}
Generates a AEP Edge Response with the const values set. Can be useful in testing. Can provide additional data by providing a flat object of paths and values.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
input |
function |
<repeatable> |
Overrides |
- Source:
(static) mock(…input) → {object}
Generates a AEP Edge Response with some default values set. Can be useful in testing. Can override defaults and provide additional data by providing a flat object of paths and values.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
input |
function |
<repeatable> |
Overrides |
- Source: