CASH-2867 add device id for logging. If there are errors in the log prior to being assigned a referral sequence number, we have no easy way to tie the error back to a user/session.
11 lines
414 B
JavaScript
11 lines
414 B
JavaScript
export const headerKeys = {
|
|
EXPERIMENT: "X-Experiment-Data",
|
|
APPLICATION_NAME: "X-Application-Name",
|
|
REFERRAL_SEQUENCE_NUMBER: "X-Referral-Sequence-Number",
|
|
SESSION_SEQUENCE_NUMBER: "X-Session-Sequence-Number",
|
|
TRANSACTION_ID: "X-Transaction-Id",
|
|
EON: "X-Enterprise-Order-Number",
|
|
LOG_ENABLED: "log-enabled",
|
|
PAGE_NAME_TO_LOG: "X-Page-Name-To-Log",
|
|
DEVICE_ID: "X-Device-Id",
|
|
};
|