diff --git a/public/css/hop-styling.css b/public/css/hop-styling.css
index abe8a4599..41fc1edd5 100644
--- a/public/css/hop-styling.css
+++ b/public/css/hop-styling.css
@@ -2,14 +2,18 @@
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
+@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
body {
- font-family: Roboto;
+ font-family: Urbanist, Arial, Helvetica, sans-serif;
font-weight: 400;
color: #000;
margin: 0;
background-color: white;
padding: 8px;
}
+body h3 {
+ font-weight: 700;
+}
body .validation-info {
display: none;
}
@@ -136,6 +140,7 @@ body .buttonContainer button {
border-radius: 8px;
color: #fff;
justify-content: center;
+ font-family: Urbanist, Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 16px;
height: 48px;
@@ -268,6 +273,7 @@ body .cc-error-container #alert-message {
#fmg-checkout-shared #other-payments-container label span.paymentOptionText {
margin: auto 0;
padding-left: 0;
+ font-weight: 400;
}
#fmg-checkout-shared #other-payments-container #afterpayParentLink label > span:first-of-type {
width: 100%;
diff --git a/public/scss/hop-styling.scss b/public/scss/hop-styling.scss
index e721af1d2..bb38cf6b9 100644
--- a/public/scss/hop-styling.scss
+++ b/public/scss/hop-styling.scss
@@ -2,14 +2,19 @@
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
/* IMPORTANT: READ README.md in this folder! Do not edit .css file directly! */
+@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
body {
- font-family: Roboto;
+ font-family: Urbanist, Arial, Helvetica, sans-serif;
font-weight: 400;
color: #000;
margin: 0;
background-color: white;
padding: 8px;
+ h3 {
+ font-weight: 700;
+ }
+
.validation-info {
display: none;
}
@@ -146,6 +151,7 @@ body {
border-radius: 8px;
color: #fff;
justify-content: center;
+ font-family: Urbanist, Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 16px;
height: 48px;
@@ -325,6 +331,7 @@ body {
&.paymentOptionText {
margin: auto 0;
padding-left: 0;
+ font-weight: 400;
}
}
}
diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js
index aa0643821..085651f20 100644
--- a/src/constants/endpoints.js
+++ b/src/constants/endpoints.js
@@ -176,6 +176,10 @@ const endpoints = {
url: "/analytics/api/v1/analytics/log-part-questions",
method: "POST",
},
+ LogDigitalConsumer: {
+ url: "/analytics/api/v1/analytics/digitalconsumer-log",
+ method: "POST",
+ },
GetExperimentsByUser: {
url: "/analytics/api/v1/analytics/get-experiments",
method: "GET",
diff --git a/src/constants/experiments.js b/src/constants/experiments.js
index c5c24536d..6a2796da9 100644
--- a/src/constants/experiments.js
+++ b/src/constants/experiments.js
@@ -26,6 +26,8 @@ const experimentSettings = {
FOSTER_LOVE: "DisplayFosterLove",
SKIP_TO_INSURANCE: "SkipToInsurance",
DISPLAY_AFTERPAY_BREAKOUT_DISPLAY: "Display_AfterpayBreakoutDisplay",
+ AFTERPAY_EXTENDED_PAY_OPTION_THRESHOLD: "AfterPayExtendedPayOptionThreshold",
+ DYNAMO_LOGGING: "DynamoLogging",
};
const experimentTriggers = {
diff --git a/src/constants/store-actions.js b/src/constants/store-actions.js
index 9f0965480..cb2c84940 100644
--- a/src/constants/store-actions.js
+++ b/src/constants/store-actions.js
@@ -63,6 +63,7 @@ const storeActions = {
LOG_CUSTOM_EVENT: "logCustomEvent",
INITIALIZE_SESSION: "initializeSession",
LOG_PART_QUESTIONS: "logPartQuestions",
+ LOG_DIGITALCONSUMER: "logDigitalConsumer",
// DEPENDENCY MUTATIONS
RESET_VEHICLE_STATE_AND_DEPENDENCIES: "resetVehicleStateAndDependencies",
diff --git a/src/digital-components/sierra-webchat/sierra-webchat.vue b/src/digital-components/sierra-webchat/sierra-webchat.vue
index 8210e9075..77e5675f1 100644
--- a/src/digital-components/sierra-webchat/sierra-webchat.vue
+++ b/src/digital-components/sierra-webchat/sierra-webchat.vue
@@ -4,6 +4,10 @@