This commit is contained in:
Katie Kroell 2024-09-24 13:40:43 -04:00
parent ffbc6c888f
commit 3b523ac7f1
2 changed files with 10 additions and 10 deletions

View file

@ -59,11 +59,11 @@ export default {
const sessionKey = getSessionKeyValue(); const sessionKey = getSessionKeyValue();
const headers = { const headers = {
[headerKeys.EXPERIMENT]: JSON.stringify(store.experimentSettings), [headerKeys.EXPERIMENT]: JSON.stringify(store.experimentSettings),
[headerKeys.APPLICATION_NAME]: JSON.stringify(applicationConfig.APPLICATION_NAME), [headerKeys.APPLICATION_NAME]: applicationConfig.APPLICATION_NAME,
[headerKeys.TRANSACTION_ID]: JSON.stringify(store.order.payment.creditCardToken.transactionId), [headerKeys.TRANSACTION_ID]: store.order.payment.creditCardToken.transactionId,
[headerKeys.EON]: JSON.stringify(store.order.eon), [headerKeys.EON]: store.order.eon,
[headerKeys.REFERRAL_SEQUENCE_NUMBER]: JSON.stringify(store.order.referralSequenceNumber), [headerKeys.REFERRAL_SEQUENCE_NUMBER]: store.order.referralSequenceNumber,
[headerKeys.SESSION_SEQUENCE_NUMBER]: JSON.stringify(sessionKey) [headerKeys.SESSION_SEQUENCE_NUMBER]: sessionKey
}; };
axios({ axios({

View file

@ -70,11 +70,11 @@ export class Logger {
applicationConfig.CONSUMER_CF_DISTRO + applicationConfig.FRONTEND_LOGGER_PATH; applicationConfig.CONSUMER_CF_DISTRO + applicationConfig.FRONTEND_LOGGER_PATH;
const headers = { const headers = {
[headerKeys.EXPERIMENT]: JSON.stringify(store.experimentSettings), [headerKeys.EXPERIMENT]: JSON.stringify(store.experimentSettings),
[headerKeys.APPLICATION_NAME]: JSON.stringify(applicationConfig.APPLICATION_NAME), [headerKeys.APPLICATION_NAME]: applicationConfig.APPLICATION_NAME,
[headerKeys.TRANSACTION_ID]: JSON.stringify(store.order.payment.creditCardToken.transactionId), [headerKeys.TRANSACTION_ID]: store.order.payment.creditCardToken.transactionId,
[headerKeys.EON]: JSON.stringify(store.order.eon), [headerKeys.EON]: store.order.eon,
[headerKeys.REFERRAL_SEQUENCE_NUMBER]: JSON.stringify(store.order.referralSequenceNumber), [headerKeys.REFERRAL_SEQUENCE_NUMBER]: store.order.referralSequenceNumber,
[headerKeys.SESSION_SEQUENCE_NUMBER]: JSON.stringify(sessionKey) [headerKeys.SESSION_SEQUENCE_NUMBER]: sessionKey
}; };
axios({ axios({