@embedreach/components 0.3.39 → 0.3.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/index.js +983 -267
- package/dist/chunks/sandbox-loading-screen.js +10 -1
- package/dist/index.umd.js +11 -11
- package/dist/styles.css +2 -2
- package/package.json +1 -1
|
@@ -22713,7 +22713,16 @@ const measureAndAcquireHandlers = [
|
|
|
22713
22713
|
}
|
|
22714
22714
|
});
|
|
22715
22715
|
}
|
|
22716
|
-
)
|
|
22716
|
+
),
|
|
22717
|
+
http.post(`${HOSTNAME}/api/measure/complete-submission`, async () => {
|
|
22718
|
+
return HttpResponse.json({
|
|
22719
|
+
success: true,
|
|
22720
|
+
message: "Success (Sandbox)",
|
|
22721
|
+
data: {
|
|
22722
|
+
message: "Measure submission completed successfully"
|
|
22723
|
+
}
|
|
22724
|
+
});
|
|
22725
|
+
})
|
|
22717
22726
|
];
|
|
22718
22727
|
const generateReputationResponsesData = ({
|
|
22719
22728
|
platformData,
|