@embedreach/components 0.3.20 → 0.3.21

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.
@@ -21432,7 +21432,11 @@ const createWebPresenceContentFactory = (platformConfig, businessConfig) => {
21432
21432
  const createSandboxMeasureAndAcquireData = (platformId, businessId) => {
21433
21433
  const platformConfigKey = getPlatformConfigKey(platformId);
21434
21434
  const platformConfig = {
21435
- id: platformConfigKey
21435
+ id: platformConfigKey,
21436
+ name: platformConfigKey === "goose" ? "ACME Pet Spa" : platformConfigKey === "renterra" ? "Tomers Rentals" : "Default",
21437
+ brandColors: [],
21438
+ locationNames: [],
21439
+ locationAreas: []
21436
21440
  };
21437
21441
  const businessConfig = getBusinessConfig(platformId);
21438
21442
  const businessesMe = createBusinessDataFactory(
@@ -21699,7 +21703,7 @@ const native = {
21699
21703
  randomUUID
21700
21704
  };
21701
21705
  function v4(options, buf, offset) {
21702
- if (native.randomUUID && true && !options) {
21706
+ if (native.randomUUID && !buf && !options) {
21703
21707
  return native.randomUUID();
21704
21708
  }
21705
21709
  options = options || {};
@@ -23364,6 +23368,7 @@ const reputationHandlers = [
23364
23368
  const includeComparison = url.searchParams.get("include_comparison") === "true";
23365
23369
  const platformData = getSandboxDataForPlatform(currentSandboxPlatformId);
23366
23370
  const queryParams = {
23371
+ platform: "google_business_profile",
23367
23372
  start_date: startDate || void 0,
23368
23373
  end_date: endDate || void 0,
23369
23374
  location_ids: locationIds ? locationIds.split(",").filter(Boolean) : void 0,