@embedreach/components 0.3.30 → 0.3.32

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.
@@ -21434,7 +21434,11 @@ const createWebPresenceContentFactory = (platformConfig, businessConfig) => {
21434
21434
  const createSandboxMeasureAndAcquireData = (platformId, businessId) => {
21435
21435
  const platformConfigKey = getPlatformConfigKey(platformId);
21436
21436
  const platformConfig = {
21437
- id: platformConfigKey
21437
+ id: platformConfigKey,
21438
+ name: platformConfigKey === "goose" ? "ACME Pet Spa" : platformConfigKey === "renterra" ? "Tomers Rentals" : "Default",
21439
+ brandColors: [],
21440
+ locationNames: [],
21441
+ locationAreas: []
21438
21442
  };
21439
21443
  const businessConfig = getBusinessConfig(platformId);
21440
21444
  const businessesMe = createBusinessDataFactory(
@@ -21701,7 +21705,7 @@ const native = {
21701
21705
  randomUUID
21702
21706
  };
21703
21707
  function v4(options, buf, offset) {
21704
- if (native.randomUUID && true && !options) {
21708
+ if (native.randomUUID && !buf && !options) {
21705
21709
  return native.randomUUID();
21706
21710
  }
21707
21711
  options = options || {};
@@ -23898,6 +23902,7 @@ const reputationHandlers = [
23898
23902
  const includeComparison = url.searchParams.get("include_comparison") === "true";
23899
23903
  const platformData = getSandboxDataForPlatform(currentSandboxPlatformId);
23900
23904
  const queryParams = {
23905
+ platform: "google_business_profile",
23901
23906
  start_date: startDate || void 0,
23902
23907
  end_date: endDate || void 0,
23903
23908
  location_ids: locationIds ? locationIds.split(",").filter(Boolean) : void 0,