From 5816a6acef2a60c105fd32cefb855b2781f806bd Mon Sep 17 00:00:00 2001 From: ekremney Date: Thu, 29 Aug 2024 16:24:25 +0200 Subject: [PATCH 01/46] feat: experimentation opportunities --- .../src/common/aggregateFns.js | 54 ++++++ .../high-inorganic-high-bounce-rate.js | 38 ++++ .../opportunities/high-organic-low-ctr.js | 41 ++++ .../src/functions/traffic-acquisition.js | 14 +- .../src/index.js | 2 +- .../test/fixtures/trafficSources.json | 177 ++++++++++++++++++ .../test/functions.test.js | 15 ++ 7 files changed, 337 insertions(+), 4 deletions(-) create mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js create mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js diff --git a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js index d4da1700..5bce90fa 100644 --- a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js +++ b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js @@ -23,6 +23,60 @@ function pageviewsByUrl(bundles) { }, {}); } +/** + * Calculates the Click-Through Rate (CTR) by URL. + * CTR is defined as the total number of sessions with at least one click event + * divided by the total number of pageviews for each URL. + * + * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). + * @returns {Object} - An object where the key is the URL and the value is the CTR value. + */ +function getCTRByUrl(bundles) { + const aggregated = bundles.reduce((acc, bundle) => { + const { url } = bundle; + if (!acc[url]) { + acc[url] = { sessionsWithClick: 0, totalPageviews: 0 }; + } + const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); + + acc[url].totalPageviews += bundle.weight; + if (hasClick) { + acc[url].sessionsWithClick += bundle.weight; + } + return acc; + }, {}); + return Object.entries(aggregated) + .reduce((acc, [url, { sessionsWithClick, totalPageviews }]) => { + acc[url] = (sessionsWithClick / totalPageviews); + return acc; + }, {}); +} + +/** + * Calculates the Click-Through Rate (CTR) average for the entire site. + * CTR is defined as the total number of sessions with at least one click event + * divided by the total number of pageviews for each URL. + * + * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). + * @returns {number} - Average CTR for the site. + */ +function getSiteAvgCTR(bundles) { + const aggregated = bundles.reduce((acc, bundle) => { + const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); + acc.totalPageviews += bundle.weight; + if (hasClick) { + acc.sessionsWithClick += bundle.weight; + } + return acc; + }, { sessionsWithClick: 0, totalPageviews: 0 }); + + return aggregated.totalPageviews === 0 + ? 0 + : aggregated.sessionsWithClick / aggregated.totalPageviews; +} + export { + getSiteAvgCTR, + getCTRByUrl, pageviewsByUrl, }; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js new file mode 100644 index 00000000..aabaf779 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js @@ -0,0 +1,38 @@ +/* + * Copyright 2024 Adobe. All rights reserved. + * This file is licensed to you under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. You may obtain a copy + * of the License at http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS + * OF ANY KIND, either express or implied. See the License for the specific language + * governing permissions and limitations under the License. + */ + +import trafficAcquisition from '../traffic-acquisition.js'; +import { getCTRByUrl } from '../../common/aggregateFns.js'; + +function hasHighInorganicTraffic(traffic) { + const { url, paid, total } = traffic; + const isHomapage = new URL(url).pathname === '/'; + const threshold = isHomapage ? 0.5 : 0.8; + return paid / total > threshold; +} + +function hasHighBounceRate(ctr) { + return ctr < 0.5; +} + +function handler(bundles) { + const trafficByUrl = trafficAcquisition.handler(bundles); + const ctrByUrl = getCTRByUrl(bundles); + + return trafficByUrl.filter(hasHighInorganicTraffic) + .filter((traffic) => hasHighBounceRate(ctrByUrl[traffic.url])); +} + +export default { + handler, + checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], +}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js new file mode 100644 index 00000000..01a9c109 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js @@ -0,0 +1,41 @@ +/* + * Copyright 2024 Adobe. All rights reserved. + * This file is licensed to you under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. You may obtain a copy + * of the License at http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS + * OF ANY KIND, either express or implied. See the License for the specific language + * governing permissions and limitations under the License. + */ + +import trafficAcquisition from '../traffic-acquisition.js'; +import { getCTRByUrl, getSiteAvgCTR } from '../../common/aggregateFns.js'; + +const DAILY_EARNED_THRESHOLD = 5000; + +function hasHighOrganicTraffic(interval, traffic) { + const { earned } = traffic; + return earned > DAILY_EARNED_THRESHOLD * interval; +} + +function hasLowerCTR(ctr, siteAvgCTR) { + return ctr < 0.95 * siteAvgCTR; +} + +function handler(bundles, opts) { + const { interval = 7 } = opts; + + const trafficByUrl = trafficAcquisition.handler(bundles); + const ctrByUrl = getCTRByUrl(bundles); + const siteAvgCTR = getSiteAvgCTR(bundles); + + return trafficByUrl.filter(hasHighOrganicTraffic.bind(null, interval)) + .filter((traffic) => hasLowerCTR(ctrByUrl[traffic.url], siteAvgCTR)); +} + +export default { + handler, + checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], +}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js index bc671290..f7711e2f 100644 --- a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js +++ b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js @@ -12,6 +12,8 @@ import { classifyTrafficSource } from '../common/traffic.js'; +const MAIN_TYPES = ['total', 'paid', 'earned', 'owned']; + function extractHints(bundle) { const findEvent = (checkpoint, source = '') => bundle.events.find((e) => e.checkpoint === checkpoint && (!source || e.source === source)) || {}; @@ -31,9 +33,12 @@ function extractHints(bundle) { } function collectByUrlAndTrafficSource(acc, { url, weight, trafficSource }) { - acc[url] = acc[url] || { total: 0 }; + acc[url] = acc[url] || { + total: 0, owned: 0, earned: 0, paid: 0, + }; acc[url][trafficSource] = (acc[url][trafficSource] || 0) + weight; acc[url].total += weight; + acc[url][trafficSource.split(':')[0]] += weight; return acc; } @@ -41,13 +46,16 @@ function transformFormat(trafficSources) { return Object.entries(trafficSources).map(([url, value]) => ({ url, total: value.total, + earned: value.earned, + owned: value.owned, + paid: value.paid, sources: Object.entries(value) - .filter(([source]) => source !== 'total') + .filter(([source]) => !MAIN_TYPES.includes(source)) .map(([source, views]) => ({ type: source, views })), })); } -async function handler(bundles) { +function handler(bundles) { const trafficSources = bundles .map(extractHints) .map((row) => { diff --git a/packages/spacecat-shared-rum-api-client/src/index.js b/packages/spacecat-shared-rum-api-client/src/index.js index 2bbd866e..486b5424 100644 --- a/packages/spacecat-shared-rum-api-client/src/index.js +++ b/packages/spacecat-shared-rum-api-client/src/index.js @@ -80,7 +80,7 @@ export default class RUMAPIClient { // Execute each query handler sequentially for (const { query, handler } of queryHandlers) { // eslint-disable-next-line no-await-in-loop - results[query] = await handler(bundles); + results[query] = await handler(bundles, opts); } return results; diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json index eb6f3ebe..916b1051 100644 --- a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json @@ -2,6 +2,9 @@ { "url": "https://www.aem.live/home", "total": 2620, + "earned": 400, + "owned": 2220, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -16,6 +19,9 @@ { "url": "https://www.aem.live/developer/block-collection", "total": 2000, + "earned": 0, + "owned": 2000, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -26,6 +32,9 @@ { "url": "https://www.aem.live/docs/", "total": 1910, + "earned": 100, + "owned": 1810, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -40,6 +49,9 @@ { "url": "https://www.aem.live/tools/rum/explorer.html", "total": 1600, + "earned": 100, + "owned": 1500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -54,6 +66,9 @@ { "url": "https://www.aem.live/developer/tutorial", "total": 1600, + "earned": 200, + "owned": 1400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -68,6 +83,9 @@ { "url": "https://www.aem.live/developer/anatomy-of-a-franklin-project", "total": 1200, + "earned": 0, + "owned": 1200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -78,6 +96,9 @@ { "url": "https://www.aem.live/developer/indexing", "total": 1000, + "earned": 0, + "owned": 1000, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -88,6 +109,9 @@ { "url": "https://www.aem.live/docs/custom-headers", "total": 900, + "earned": 0, + "owned": 900, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -98,6 +122,9 @@ { "url": "https://www.aem.live/developer/spreadsheets", "total": 900, + "earned": 0, + "owned": 900, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -108,6 +135,9 @@ { "url": "https://www.aem.live/docs/dev-collab-and-good-practices", "total": 700, + "earned": 0, + "owned": 700, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -118,6 +148,9 @@ { "url": "https://www.aem.live/docs/go-live-checklist", "total": 600, + "earned": 0, + "owned": 600, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -128,6 +161,9 @@ { "url": "https://www.aem.live/developer/markup-sections-blocks", "total": 510, + "earned": 0, + "owned": 510, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -138,6 +174,9 @@ { "url": "https://www.aem.live/developer/favicon", "total": 500, + "earned": 0, + "owned": 500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -148,6 +187,9 @@ { "url": "https://www.aem.live/developer/keeping-it-100", "total": 500, + "earned": 0, + "owned": 500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -158,6 +200,9 @@ { "url": "https://www.aem.live/tools/sidekick/", "total": 410, + "earned": 0, + "owned": 410, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -168,6 +213,9 @@ { "url": "https://www.aem.live/docs/placeholders", "total": 403, + "earned": 0, + "owned": 403, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -178,6 +226,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-worker-setup", "total": 400, + "earned": 0, + "owned": 400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -188,6 +239,9 @@ { "url": "https://www.aem.live/docs/byo-dns", "total": 400, + "earned": 0, + "owned": 400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -198,6 +252,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-fastly-setup", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -208,6 +265,9 @@ { "url": "https://www.aem.live/docs/davidsmodel", "total": 300, + "earned": 200, + "owned": 100, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -222,6 +282,9 @@ { "url": "https://www.aem.live/docs/setup-customer-sharepoint", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -232,6 +295,9 @@ { "url": "https://www.aem.live/developer/sitemap", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -242,6 +308,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-akamai-setup", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -252,6 +321,9 @@ { "url": "https://www.aem.live/docs/redirects", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -262,6 +334,9 @@ { "url": "https://www.aem.live/docs/bulk-metadata", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -272,6 +347,9 @@ { "url": "https://www.aem.live/some-other-page", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -282,6 +360,9 @@ { "url": "https://www.aem.live/docs/authoring", "total": 210, + "earned": 0, + "owned": 210, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -292,6 +373,9 @@ { "url": "https://www.aem.live/docs/sidekick", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -302,6 +386,9 @@ { "url": "https://www.aem.live/developer/web-components", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -312,6 +399,9 @@ { "url": "https://www.aem.live/docs/authentication-setup-site", "total": 200, + "earned": 100, + "owned": 100, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -326,6 +416,9 @@ { "url": "https://www.aem.live/developer/rum", "total": 200, + "earned": 100, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -340,6 +433,9 @@ { "url": "https://www.aem.live/docs/faq", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -350,6 +446,9 @@ { "url": "https://www.aem.live/developer/placeholders", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -360,6 +459,9 @@ { "url": "https://www.aem.live/developer/block-collection/section-metadata", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -370,6 +472,9 @@ { "url": "https://www.aem.live/vip/intake", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -380,6 +485,9 @@ { "url": "https://www.aem.live/new-exp-page", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -390,6 +498,9 @@ { "url": "https://www.aem.live/docs/sidekick-extension", "total": 110, + "earned": 100, + "owned": 10, + "paid": 0, "sources": [ { "type": "earned:search", @@ -404,6 +515,9 @@ { "url": "https://www.aem.live/docs/rum", "total": 110, + "earned": 0, + "owned": 110, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -414,6 +528,9 @@ { "url": "https://www.aem.live/developer/target-integration", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -424,6 +541,9 @@ { "url": "https://www.aem.live/docs/architecture", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -434,6 +554,9 @@ { "url": "https://www.aem.live/developer/block-collection/breadcrumbs", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -444,6 +567,9 @@ { "url": "https://www.aem.live/developer/block-collection/headings", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -454,6 +580,9 @@ { "url": "https://www.aem.live/docs/cdn-guide", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -464,6 +593,9 @@ { "url": "https://www.aem.live/tools/bot/setup", "total": 100, + "earned": 100, + "owned": 0, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -474,6 +606,9 @@ { "url": "https://www.aem.live/developer/github-actions", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -484,6 +619,9 @@ { "url": "https://www.aem.live/developer/importer", "total": 100, + "earned": 100, + "owned": 0, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -494,6 +632,9 @@ { "url": "https://www.aem.live/developer/configuring-aem-assets-sidekick-plugin", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -504,6 +645,9 @@ { "url": "https://www.aem.live/tools/rum/list.html", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -514,6 +658,9 @@ { "url": "https://www.aem.live/docs/setup-byo-cdn-push-invalidation", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -524,6 +671,9 @@ { "url": "https://www.aem.live/developer/forms", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -534,6 +684,9 @@ { "url": "https://www.aem.live/developer/", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -544,6 +697,9 @@ { "url": "https://www.aem.live/docs/admin.html", "total": 20, + "earned": 0, + "owned": 20, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -554,6 +710,9 @@ { "url": "https://www.aem.live/community-feeds.json", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -564,6 +723,9 @@ { "url": "https://www.aem.live/docs/global", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -574,6 +736,9 @@ { "url": "https://www.aem.live/developer/franklin-video-series-advanced", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -584,6 +749,9 @@ { "url": "https://www.aem.live/developer/markup-reference", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -594,6 +762,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-setup", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -604,6 +775,9 @@ { "url": "https://www.aem.live/developer/franklin-video-series", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -614,6 +788,9 @@ { "url": "https://www.aem.live/docs/aem-assets-sidekick-plugin", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", diff --git a/packages/spacecat-shared-rum-api-client/test/functions.test.js b/packages/spacecat-shared-rum-api-client/test/functions.test.js index 58a88d07..3fcbf11a 100644 --- a/packages/spacecat-shared-rum-api-client/test/functions.test.js +++ b/packages/spacecat-shared-rum-api-client/test/functions.test.js @@ -16,6 +16,8 @@ import cwv from '../src/functions/cwv.js'; import notfound from '../src/functions/404.js'; import experiment from '../src/functions/experiment.js'; import trafficAcquisition from '../src/functions/traffic-acquisition.js'; +import highInorganicHighBounce from '../src/functions/opportunities/high-inorganic-high-bounce-rate.js'; +import highOrganicLowCTR from '../src/functions/opportunities/high-organic-low-ctr.js'; import variant from '../src/functions/variant.js'; import bundles from './fixtures/bundles.json' assert { type: 'json' }; import bundlesForVariant from './fixtures/bundles_for_variant.json' assert { type: 'json' }; @@ -50,4 +52,17 @@ describe('Query functions', () => { const trafficSourcesResult = await trafficAcquisition.handler(bundles.rumBundles); expect(expectedTrafficSourcesResult).to.eql(trafficSourcesResult); }); + + xit('crunches oppty/high-inorganic-high-bounce', async () => { + const highInorganicHighBounceResult = highInorganicHighBounce.handler(bundles.rumBundles); + expect({}).to.eql(highInorganicHighBounceResult); + }); + + xit('crunches oppty/high-organic-low-ctr', async () => { + const highInorganicHighBounceResult = highOrganicLowCTR.handler( + bundles.rumBundles, + { interval: 7 }, + ); + expect({}).to.eql(highInorganicHighBounceResult); + }); }); From 0049c3496e83920df91a0eb45bb93ad9785d6db3 Mon Sep 17 00:00:00 2001 From: ekremney Date: Thu, 29 Aug 2024 16:29:10 +0200 Subject: [PATCH 02/46] Revert "feat: experimentation opportunities" This reverts commit 5816a6acef2a60c105fd32cefb855b2781f806bd. --- .../src/common/aggregateFns.js | 54 ------ .../high-inorganic-high-bounce-rate.js | 38 ---- .../opportunities/high-organic-low-ctr.js | 41 ---- .../src/functions/traffic-acquisition.js | 14 +- .../src/index.js | 2 +- .../test/fixtures/trafficSources.json | 177 ------------------ .../test/functions.test.js | 15 -- 7 files changed, 4 insertions(+), 337 deletions(-) delete mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js delete mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js diff --git a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js index 5bce90fa..d4da1700 100644 --- a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js +++ b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js @@ -23,60 +23,6 @@ function pageviewsByUrl(bundles) { }, {}); } -/** - * Calculates the Click-Through Rate (CTR) by URL. - * CTR is defined as the total number of sessions with at least one click event - * divided by the total number of pageviews for each URL. - * - * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). - * @returns {Object} - An object where the key is the URL and the value is the CTR value. - */ -function getCTRByUrl(bundles) { - const aggregated = bundles.reduce((acc, bundle) => { - const { url } = bundle; - if (!acc[url]) { - acc[url] = { sessionsWithClick: 0, totalPageviews: 0 }; - } - const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); - - acc[url].totalPageviews += bundle.weight; - if (hasClick) { - acc[url].sessionsWithClick += bundle.weight; - } - return acc; - }, {}); - return Object.entries(aggregated) - .reduce((acc, [url, { sessionsWithClick, totalPageviews }]) => { - acc[url] = (sessionsWithClick / totalPageviews); - return acc; - }, {}); -} - -/** - * Calculates the Click-Through Rate (CTR) average for the entire site. - * CTR is defined as the total number of sessions with at least one click event - * divided by the total number of pageviews for each URL. - * - * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). - * @returns {number} - Average CTR for the site. - */ -function getSiteAvgCTR(bundles) { - const aggregated = bundles.reduce((acc, bundle) => { - const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); - acc.totalPageviews += bundle.weight; - if (hasClick) { - acc.sessionsWithClick += bundle.weight; - } - return acc; - }, { sessionsWithClick: 0, totalPageviews: 0 }); - - return aggregated.totalPageviews === 0 - ? 0 - : aggregated.sessionsWithClick / aggregated.totalPageviews; -} - export { - getSiteAvgCTR, - getCTRByUrl, pageviewsByUrl, }; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js deleted file mode 100644 index aabaf779..00000000 --- a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright 2024 Adobe. All rights reserved. - * This file is licensed to you under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. You may obtain a copy - * of the License at http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under - * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS - * OF ANY KIND, either express or implied. See the License for the specific language - * governing permissions and limitations under the License. - */ - -import trafficAcquisition from '../traffic-acquisition.js'; -import { getCTRByUrl } from '../../common/aggregateFns.js'; - -function hasHighInorganicTraffic(traffic) { - const { url, paid, total } = traffic; - const isHomapage = new URL(url).pathname === '/'; - const threshold = isHomapage ? 0.5 : 0.8; - return paid / total > threshold; -} - -function hasHighBounceRate(ctr) { - return ctr < 0.5; -} - -function handler(bundles) { - const trafficByUrl = trafficAcquisition.handler(bundles); - const ctrByUrl = getCTRByUrl(bundles); - - return trafficByUrl.filter(hasHighInorganicTraffic) - .filter((traffic) => hasHighBounceRate(ctrByUrl[traffic.url])); -} - -export default { - handler, - checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], -}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js deleted file mode 100644 index 01a9c109..00000000 --- a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright 2024 Adobe. All rights reserved. - * This file is licensed to you under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. You may obtain a copy - * of the License at http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under - * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS - * OF ANY KIND, either express or implied. See the License for the specific language - * governing permissions and limitations under the License. - */ - -import trafficAcquisition from '../traffic-acquisition.js'; -import { getCTRByUrl, getSiteAvgCTR } from '../../common/aggregateFns.js'; - -const DAILY_EARNED_THRESHOLD = 5000; - -function hasHighOrganicTraffic(interval, traffic) { - const { earned } = traffic; - return earned > DAILY_EARNED_THRESHOLD * interval; -} - -function hasLowerCTR(ctr, siteAvgCTR) { - return ctr < 0.95 * siteAvgCTR; -} - -function handler(bundles, opts) { - const { interval = 7 } = opts; - - const trafficByUrl = trafficAcquisition.handler(bundles); - const ctrByUrl = getCTRByUrl(bundles); - const siteAvgCTR = getSiteAvgCTR(bundles); - - return trafficByUrl.filter(hasHighOrganicTraffic.bind(null, interval)) - .filter((traffic) => hasLowerCTR(ctrByUrl[traffic.url], siteAvgCTR)); -} - -export default { - handler, - checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], -}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js index f7711e2f..bc671290 100644 --- a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js +++ b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js @@ -12,8 +12,6 @@ import { classifyTrafficSource } from '../common/traffic.js'; -const MAIN_TYPES = ['total', 'paid', 'earned', 'owned']; - function extractHints(bundle) { const findEvent = (checkpoint, source = '') => bundle.events.find((e) => e.checkpoint === checkpoint && (!source || e.source === source)) || {}; @@ -33,12 +31,9 @@ function extractHints(bundle) { } function collectByUrlAndTrafficSource(acc, { url, weight, trafficSource }) { - acc[url] = acc[url] || { - total: 0, owned: 0, earned: 0, paid: 0, - }; + acc[url] = acc[url] || { total: 0 }; acc[url][trafficSource] = (acc[url][trafficSource] || 0) + weight; acc[url].total += weight; - acc[url][trafficSource.split(':')[0]] += weight; return acc; } @@ -46,16 +41,13 @@ function transformFormat(trafficSources) { return Object.entries(trafficSources).map(([url, value]) => ({ url, total: value.total, - earned: value.earned, - owned: value.owned, - paid: value.paid, sources: Object.entries(value) - .filter(([source]) => !MAIN_TYPES.includes(source)) + .filter(([source]) => source !== 'total') .map(([source, views]) => ({ type: source, views })), })); } -function handler(bundles) { +async function handler(bundles) { const trafficSources = bundles .map(extractHints) .map((row) => { diff --git a/packages/spacecat-shared-rum-api-client/src/index.js b/packages/spacecat-shared-rum-api-client/src/index.js index 486b5424..2bbd866e 100644 --- a/packages/spacecat-shared-rum-api-client/src/index.js +++ b/packages/spacecat-shared-rum-api-client/src/index.js @@ -80,7 +80,7 @@ export default class RUMAPIClient { // Execute each query handler sequentially for (const { query, handler } of queryHandlers) { // eslint-disable-next-line no-await-in-loop - results[query] = await handler(bundles, opts); + results[query] = await handler(bundles); } return results; diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json index 916b1051..eb6f3ebe 100644 --- a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json @@ -2,9 +2,6 @@ { "url": "https://www.aem.live/home", "total": 2620, - "earned": 400, - "owned": 2220, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -19,9 +16,6 @@ { "url": "https://www.aem.live/developer/block-collection", "total": 2000, - "earned": 0, - "owned": 2000, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -32,9 +26,6 @@ { "url": "https://www.aem.live/docs/", "total": 1910, - "earned": 100, - "owned": 1810, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -49,9 +40,6 @@ { "url": "https://www.aem.live/tools/rum/explorer.html", "total": 1600, - "earned": 100, - "owned": 1500, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -66,9 +54,6 @@ { "url": "https://www.aem.live/developer/tutorial", "total": 1600, - "earned": 200, - "owned": 1400, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -83,9 +68,6 @@ { "url": "https://www.aem.live/developer/anatomy-of-a-franklin-project", "total": 1200, - "earned": 0, - "owned": 1200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -96,9 +78,6 @@ { "url": "https://www.aem.live/developer/indexing", "total": 1000, - "earned": 0, - "owned": 1000, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -109,9 +88,6 @@ { "url": "https://www.aem.live/docs/custom-headers", "total": 900, - "earned": 0, - "owned": 900, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -122,9 +98,6 @@ { "url": "https://www.aem.live/developer/spreadsheets", "total": 900, - "earned": 0, - "owned": 900, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -135,9 +108,6 @@ { "url": "https://www.aem.live/docs/dev-collab-and-good-practices", "total": 700, - "earned": 0, - "owned": 700, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -148,9 +118,6 @@ { "url": "https://www.aem.live/docs/go-live-checklist", "total": 600, - "earned": 0, - "owned": 600, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -161,9 +128,6 @@ { "url": "https://www.aem.live/developer/markup-sections-blocks", "total": 510, - "earned": 0, - "owned": 510, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -174,9 +138,6 @@ { "url": "https://www.aem.live/developer/favicon", "total": 500, - "earned": 0, - "owned": 500, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -187,9 +148,6 @@ { "url": "https://www.aem.live/developer/keeping-it-100", "total": 500, - "earned": 0, - "owned": 500, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -200,9 +158,6 @@ { "url": "https://www.aem.live/tools/sidekick/", "total": 410, - "earned": 0, - "owned": 410, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -213,9 +168,6 @@ { "url": "https://www.aem.live/docs/placeholders", "total": 403, - "earned": 0, - "owned": 403, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -226,9 +178,6 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-worker-setup", "total": 400, - "earned": 0, - "owned": 400, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -239,9 +188,6 @@ { "url": "https://www.aem.live/docs/byo-dns", "total": 400, - "earned": 0, - "owned": 400, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -252,9 +198,6 @@ { "url": "https://www.aem.live/docs/byo-cdn-fastly-setup", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -265,9 +208,6 @@ { "url": "https://www.aem.live/docs/davidsmodel", "total": 300, - "earned": 200, - "owned": 100, - "paid": 0, "sources": [ { "type": "earned:referral", @@ -282,9 +222,6 @@ { "url": "https://www.aem.live/docs/setup-customer-sharepoint", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -295,9 +232,6 @@ { "url": "https://www.aem.live/developer/sitemap", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -308,9 +242,6 @@ { "url": "https://www.aem.live/docs/byo-cdn-akamai-setup", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -321,9 +252,6 @@ { "url": "https://www.aem.live/docs/redirects", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -334,9 +262,6 @@ { "url": "https://www.aem.live/docs/bulk-metadata", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -347,9 +272,6 @@ { "url": "https://www.aem.live/some-other-page", "total": 300, - "earned": 0, - "owned": 300, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -360,9 +282,6 @@ { "url": "https://www.aem.live/docs/authoring", "total": 210, - "earned": 0, - "owned": 210, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -373,9 +292,6 @@ { "url": "https://www.aem.live/docs/sidekick", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -386,9 +302,6 @@ { "url": "https://www.aem.live/developer/web-components", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -399,9 +312,6 @@ { "url": "https://www.aem.live/docs/authentication-setup-site", "total": 200, - "earned": 100, - "owned": 100, - "paid": 0, "sources": [ { "type": "earned:referral", @@ -416,9 +326,6 @@ { "url": "https://www.aem.live/developer/rum", "total": 200, - "earned": 100, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -433,9 +340,6 @@ { "url": "https://www.aem.live/docs/faq", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -446,9 +350,6 @@ { "url": "https://www.aem.live/developer/placeholders", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -459,9 +360,6 @@ { "url": "https://www.aem.live/developer/block-collection/section-metadata", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -472,9 +370,6 @@ { "url": "https://www.aem.live/vip/intake", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -485,9 +380,6 @@ { "url": "https://www.aem.live/new-exp-page", "total": 200, - "earned": 0, - "owned": 200, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -498,9 +390,6 @@ { "url": "https://www.aem.live/docs/sidekick-extension", "total": 110, - "earned": 100, - "owned": 10, - "paid": 0, "sources": [ { "type": "earned:search", @@ -515,9 +404,6 @@ { "url": "https://www.aem.live/docs/rum", "total": 110, - "earned": 0, - "owned": 110, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -528,9 +414,6 @@ { "url": "https://www.aem.live/developer/target-integration", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -541,9 +424,6 @@ { "url": "https://www.aem.live/docs/architecture", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -554,9 +434,6 @@ { "url": "https://www.aem.live/developer/block-collection/breadcrumbs", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -567,9 +444,6 @@ { "url": "https://www.aem.live/developer/block-collection/headings", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -580,9 +454,6 @@ { "url": "https://www.aem.live/docs/cdn-guide", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -593,9 +464,6 @@ { "url": "https://www.aem.live/tools/bot/setup", "total": 100, - "earned": 100, - "owned": 0, - "paid": 0, "sources": [ { "type": "earned:referral", @@ -606,9 +474,6 @@ { "url": "https://www.aem.live/developer/github-actions", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -619,9 +484,6 @@ { "url": "https://www.aem.live/developer/importer", "total": 100, - "earned": 100, - "owned": 0, - "paid": 0, "sources": [ { "type": "earned:referral", @@ -632,9 +494,6 @@ { "url": "https://www.aem.live/developer/configuring-aem-assets-sidekick-plugin", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -645,9 +504,6 @@ { "url": "https://www.aem.live/tools/rum/list.html", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -658,9 +514,6 @@ { "url": "https://www.aem.live/docs/setup-byo-cdn-push-invalidation", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -671,9 +524,6 @@ { "url": "https://www.aem.live/developer/forms", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -684,9 +534,6 @@ { "url": "https://www.aem.live/developer/", "total": 100, - "earned": 0, - "owned": 100, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -697,9 +544,6 @@ { "url": "https://www.aem.live/docs/admin.html", "total": 20, - "earned": 0, - "owned": 20, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -710,9 +554,6 @@ { "url": "https://www.aem.live/community-feeds.json", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -723,9 +564,6 @@ { "url": "https://www.aem.live/docs/global", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -736,9 +574,6 @@ { "url": "https://www.aem.live/developer/franklin-video-series-advanced", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -749,9 +584,6 @@ { "url": "https://www.aem.live/developer/markup-reference", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -762,9 +594,6 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-setup", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -775,9 +604,6 @@ { "url": "https://www.aem.live/developer/franklin-video-series", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", @@ -788,9 +614,6 @@ { "url": "https://www.aem.live/docs/aem-assets-sidekick-plugin", "total": 10, - "earned": 0, - "owned": 10, - "paid": 0, "sources": [ { "type": "owned:direct", diff --git a/packages/spacecat-shared-rum-api-client/test/functions.test.js b/packages/spacecat-shared-rum-api-client/test/functions.test.js index 3fcbf11a..58a88d07 100644 --- a/packages/spacecat-shared-rum-api-client/test/functions.test.js +++ b/packages/spacecat-shared-rum-api-client/test/functions.test.js @@ -16,8 +16,6 @@ import cwv from '../src/functions/cwv.js'; import notfound from '../src/functions/404.js'; import experiment from '../src/functions/experiment.js'; import trafficAcquisition from '../src/functions/traffic-acquisition.js'; -import highInorganicHighBounce from '../src/functions/opportunities/high-inorganic-high-bounce-rate.js'; -import highOrganicLowCTR from '../src/functions/opportunities/high-organic-low-ctr.js'; import variant from '../src/functions/variant.js'; import bundles from './fixtures/bundles.json' assert { type: 'json' }; import bundlesForVariant from './fixtures/bundles_for_variant.json' assert { type: 'json' }; @@ -52,17 +50,4 @@ describe('Query functions', () => { const trafficSourcesResult = await trafficAcquisition.handler(bundles.rumBundles); expect(expectedTrafficSourcesResult).to.eql(trafficSourcesResult); }); - - xit('crunches oppty/high-inorganic-high-bounce', async () => { - const highInorganicHighBounceResult = highInorganicHighBounce.handler(bundles.rumBundles); - expect({}).to.eql(highInorganicHighBounceResult); - }); - - xit('crunches oppty/high-organic-low-ctr', async () => { - const highInorganicHighBounceResult = highOrganicLowCTR.handler( - bundles.rumBundles, - { interval: 7 }, - ); - expect({}).to.eql(highInorganicHighBounceResult); - }); }); From 7da986f7f721a5c12d967661cb9a81d4b0c8c760 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:12:29 +0000 Subject: [PATCH 03/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.3 (#350) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://togithub.com/adobe/spacecat-helix-content-sdk) | [`1.1.2` -> `1.1.3`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.2/1.1.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.2/1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.2/1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.3`](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/f9ea9741fadcec92237464a4e210e4a2e8c46b6a...d5b2ea8eeed637ff0fa03d14f3520087484304da) [Compare Source](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/f9ea9741fadcec92237464a4e210e4a2e8c46b6a...d5b2ea8eeed637ff0fa03d14f3520087484304da)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 9 +++++---- packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 814490ac..dedc109e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -251,9 +251,9 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.2.tgz", - "integrity": "sha512-CR/3V5fsgKok4OyNPD8R1yw4j0WQY7yT4R6G/F7ayUYNSFXWV1oDb2PD03JB9L21uv6gpcJgI/EGUYCmad3+9Q==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.3.tgz", + "integrity": "sha512-2Xd5Iir7NNoUir6OURoze0jBjLI3CH2pV1RM99tvKG+BRHUMogjjHuLajdUsrsB6CXegOW/cev8uttaHtHFu4A==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -17986,11 +17986,12 @@ } }, "packages/spacecat-shared-content-client": { + "name": "@adobe/spacecat-shared-content-client", "version": "1.0.0", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.2", + "@adobe/spacecat-helix-content-sdk": "1.1.3", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index c6bc9d9d..90d2242c 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.2", + "@adobe/spacecat-helix-content-sdk": "1.1.3", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From 4f63649dfbb46e01c34c76c31e88ac40712f6ffd Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 29 Aug 2024 15:14:57 +0000 Subject: [PATCH 04/46] chore(release): 1.0.1 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.0...@adobe/spacecat-shared-content-client-v1.0.1) (2024-08-29) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.3 ([#350](https://github.com/adobe/spacecat-shared/issues/350)) ([7da986f](https://github.com/adobe/spacecat-shared/commit/7da986f7f721a5c12d967661cb9a81d4b0c8c760)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index 5884c96f..40e9fcdb 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.0...@adobe/spacecat-shared-content-client-v1.0.1) (2024-08-29) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.3 ([#350](https://github.com/adobe/spacecat-shared/issues/350)) ([7da986f](https://github.com/adobe/spacecat-shared/commit/7da986f7f721a5c12d967661cb9a81d4b0c8c760)) + # @adobe/spacecat-shared-content-client-v1.0.0 (2024-08-27) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 90d2242c..a0e10508 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.0", + "version": "1.0.1", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From 23184465d9008ab0692cb9b52ac631973afeb1c7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 15:46:22 +0000 Subject: [PATCH 05/46] chore(deps): update external fixes (#352) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.2.0` -> `8.3.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.2.0` -> `8.3.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.2.0/8.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/8.2.0/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.2.0/8.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [aws4](https://togithub.com/mhart/aws4) | [`1.13.1` -> `1.13.2`](https://renovatebot.com/diffs/npm/aws4/1.13.1/1.13.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws4/1.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws4/1.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws4/1.13.1/1.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws4/1.13.1/1.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [jose](https://togithub.com/panva/jose) | [`5.7.0` -> `5.8.0`](https://renovatebot.com/diffs/npm/jose/5.7.0/5.8.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jose/5.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jose/5.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jose/5.7.0/5.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jose/5.7.0/5.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v8.3.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#830-2024-08-26) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v8.2.0...v8.3.0) ##### πŸš€ Features - **eslint-plugin:** \[no-deprecation] add rule ##### 🩹 Fixes - **eslint-plugin:** \[no-unnecessary-template-expression] add missing parentheses in autofix - **eslint-plugin:** \[no-unnecessary-type-parameters] check mapped alias type arguments - **utils:** add `TSDeclareFunction` to `functionTypeTypes` - **ast-spec:** use `Expression` in argument of `ThrowStatement` ##### ❀️ Thank You - Abraham Guo - Daichi Kamiyama - Josh Goldberg ✨ - Kim Sang Du - Sukka - Vida Xie You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v8.3.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#830-2024-08-26) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v8.2.0...v8.3.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
mhart/aws4 (aws4) ### [`v1.13.2`](https://togithub.com/mhart/aws4/releases/tag/v1.13.2) [Compare Source](https://togithub.com/mhart/aws4/compare/v1.13.1...v1.13.2) Limit hostname labels to 63 chars max. [63 octets is the maximum length a hostname label can be.](https://en.wikipedia.org/wiki/Hostname#Syntax) Thanks to κΉ€ν•œμ†” for contacting me – this contact prompted me to make this change. **Full Changelog**: https://github.com/mhart/aws4/compare/v1.13.1...v1.13.2
panva/jose (jose) ### [`v5.8.0`](https://togithub.com/panva/jose/blob/HEAD/CHANGELOG.md#580-2024-08-26) [Compare Source](https://togithub.com/panva/jose/compare/v5.7.0...v5.8.0) ##### Features - add subpath module exports ([72ecff6](https://togithub.com/panva/jose/commit/72ecff6574d252f407b6e145a166c995cdd85949)) ##### Refactor - omit LocalJWKSet export since it's no longer needed for RemoteJWKSet ([c502731](https://togithub.com/panva/jose/commit/c502731fd888c165df32214f13333bc055d1d3f4))
--- ### Configuration πŸ“… **Schedule**: Branch creation - "after 2pm on Saturday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 118 ++++++++++-------- package.json | 4 +- packages/spacecat-shared-example/package.json | 2 +- .../spacecat-shared-http-utils/package.json | 2 +- .../package.json | 2 +- 5 files changed, 68 insertions(+), 60 deletions(-) diff --git a/package-lock.json b/package-lock.json index dedc109e..fc493a0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,8 +16,8 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.2.0", - "@typescript-eslint/parser": "8.2.0", + "@typescript-eslint/eslint-plugin": "8.3.0", + "@typescript-eslint/parser": "8.3.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", @@ -3696,16 +3696,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.2.0.tgz", - "integrity": "sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.3.0.tgz", + "integrity": "sha512-FLAIn63G5KH+adZosDYiutqkOkYEx0nvcwNNfJAf+c7Ae/H35qWwTYvPZUKFj5AS+WfHG/WJJfWnDnyNUlp8UA==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.2.0", - "@typescript-eslint/type-utils": "8.2.0", - "@typescript-eslint/utils": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", + "@typescript-eslint/scope-manager": "8.3.0", + "@typescript-eslint/type-utils": "8.3.0", + "@typescript-eslint/utils": "8.3.0", + "@typescript-eslint/visitor-keys": "8.3.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -3729,15 +3730,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.2.0.tgz", - "integrity": "sha512-j3Di+o0lHgPrb7FxL3fdEy6LJ/j2NE8u+AP/5cQ9SKb+JLH6V6UHDqJ+e0hXBkHP1wn1YDFjYCS9LBQsZDlDEg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.3.0.tgz", + "integrity": "sha512-h53RhVyLu6AtpUzVCYLPhZGL5jzTD9fZL+SYf/+hYOx2bDkyQXztXSc4tbvKYHzfMXExMLiL9CWqJmVz6+78IQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "8.2.0", - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/typescript-estree": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", + "@typescript-eslint/scope-manager": "8.3.0", + "@typescript-eslint/types": "8.3.0", + "@typescript-eslint/typescript-estree": "8.3.0", + "@typescript-eslint/visitor-keys": "8.3.0", "debug": "^4.3.4" }, "engines": { @@ -3757,13 +3759,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.2.0.tgz", - "integrity": "sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.3.0.tgz", + "integrity": "sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0" + "@typescript-eslint/types": "8.3.0", + "@typescript-eslint/visitor-keys": "8.3.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3774,13 +3777,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.2.0.tgz", - "integrity": "sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.3.0.tgz", + "integrity": "sha512-wrV6qh//nLbfXZQoj32EXKmwHf4b7L+xXLrP3FZ0GOUU72gSvLjeWUl5J5Ue5IwRxIV1TfF73j/eaBapxx99Lg==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.2.0", - "@typescript-eslint/utils": "8.2.0", + "@typescript-eslint/typescript-estree": "8.3.0", + "@typescript-eslint/utils": "8.3.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -3798,10 +3802,11 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.2.0.tgz", - "integrity": "sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.3.0.tgz", + "integrity": "sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==", "dev": true, + "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -3811,15 +3816,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.2.0.tgz", - "integrity": "sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.3.0.tgz", + "integrity": "sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/visitor-keys": "8.2.0", + "@typescript-eslint/types": "8.3.0", + "@typescript-eslint/visitor-keys": "8.3.0", "debug": "^4.3.4", - "globby": "^11.1.0", + "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", @@ -3839,15 +3845,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.2.0.tgz", - "integrity": "sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.3.0.tgz", + "integrity": "sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.2.0", - "@typescript-eslint/types": "8.2.0", - "@typescript-eslint/typescript-estree": "8.2.0" + "@typescript-eslint/scope-manager": "8.3.0", + "@typescript-eslint/types": "8.3.0", + "@typescript-eslint/typescript-estree": "8.3.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3861,12 +3868,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.2.0.tgz", - "integrity": "sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.3.0.tgz", + "integrity": "sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.2.0", + "@typescript-eslint/types": "8.3.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -4193,9 +4201,9 @@ } }, "node_modules/aws4": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.1.tgz", - "integrity": "sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", + "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", "license": "MIT" }, "node_modules/axios": { @@ -8075,9 +8083,9 @@ } }, "node_modules/jose": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/jose/-/jose-5.7.0.tgz", - "integrity": "sha512-3P9qfTYDVnNn642LCAqIKbTGb9a1TBxZ9ti5zEVEr48aDdflgRjhspWFb6WM4PzAfFbGMJYC4+803v8riCRAKw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/jose/-/jose-5.8.0.tgz", + "integrity": "sha512-E7CqYpL/t7MMnfGnK/eg416OsFCVUrU/Y3Vwe7QjKhu/BkS1Ms455+2xsqZQVN57/U2MHMBvEb5SrmAZWAIntA==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/panva" @@ -17987,7 +17995,7 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.0", + "version": "1.0.1", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -19122,7 +19130,7 @@ "@adobe/fetch": "4.1.8", "@adobe/helix-shared-wrap": "2.0.2", "@adobe/helix-universal": "5.0.5", - "aws4": "1.13.1" + "aws4": "1.13.2" }, "devDependencies": {}, "engines": { @@ -21397,7 +21405,7 @@ "@adobe/fetch": "4.1.8", "@adobe/spacecat-shared-data-access": "1.41.3", "@adobe/spacecat-shared-utils": "1.19.1", - "jose": "5.7.0" + "jose": "5.8.0" }, "devDependencies": { "@adobe/helix-shared-wrap": "2.0.2", @@ -27491,7 +27499,7 @@ "@adobe/helix-shared-wrap": "2.0.2", "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-utils": "1.4.0", - "aws4": "1.13.1", + "aws4": "1.13.2", "d3-array": "3.2.4", "urijs": "^1.19.11" }, diff --git a/package.json b/package.json index 6b9aa22b..1da730ec 100644 --- a/package.json +++ b/package.json @@ -36,8 +36,8 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.2.0", - "@typescript-eslint/parser": "8.2.0", + "@typescript-eslint/eslint-plugin": "8.3.0", + "@typescript-eslint/parser": "8.3.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", diff --git a/packages/spacecat-shared-example/package.json b/packages/spacecat-shared-example/package.json index 8c0ee661..d13c0269 100644 --- a/packages/spacecat-shared-example/package.json +++ b/packages/spacecat-shared-example/package.json @@ -36,7 +36,7 @@ "@adobe/fetch": "4.1.8", "@adobe/helix-shared-wrap": "2.0.2", "@adobe/helix-universal": "5.0.5", - "aws4": "1.13.1" + "aws4": "1.13.2" }, "devDependencies": {} } diff --git a/packages/spacecat-shared-http-utils/package.json b/packages/spacecat-shared-http-utils/package.json index e7565451..39728b28 100644 --- a/packages/spacecat-shared-http-utils/package.json +++ b/packages/spacecat-shared-http-utils/package.json @@ -36,7 +36,7 @@ "@adobe/fetch": "4.1.8", "@adobe/spacecat-shared-utils": "1.19.1", "@adobe/spacecat-shared-data-access": "1.41.3", - "jose": "5.7.0" + "jose": "5.8.0" }, "devDependencies": { "@adobe/helix-shared-wrap": "2.0.2", diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index e0055a16..b59edb9a 100644 --- a/packages/spacecat-shared-rum-api-client/package.json +++ b/packages/spacecat-shared-rum-api-client/package.json @@ -39,7 +39,7 @@ "@adobe/helix-shared-wrap": "2.0.2", "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-utils": "1.4.0", - "aws4": "1.13.1", + "aws4": "1.13.2", "d3-array": "3.2.4", "urijs": "^1.19.11" }, From 9116f64640fe068ac13f145cfd4265ec3443bc11 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 22:19:53 +0000 Subject: [PATCH 06/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.4 (#353) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://togithub.com/adobe/spacecat-helix-content-sdk) | [`1.1.3` -> `1.1.4`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.3/1.1.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.3/1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.3/1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.4`](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/d5b2ea8eeed637ff0fa03d14f3520087484304da...de36fed88d6ca2d92458ba6171e47608e310fdbf) [Compare Source](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/d5b2ea8eeed637ff0fa03d14f3520087484304da...de36fed88d6ca2d92458ba6171e47608e310fdbf)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 32 +++++++++---------- .../package.json | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index fc493a0e..519364ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -251,18 +251,18 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.3.tgz", - "integrity": "sha512-2Xd5Iir7NNoUir6OURoze0jBjLI3CH2pV1RM99tvKG+BRHUMogjjHuLajdUsrsB6CXegOW/cev8uttaHtHFu4A==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.4.tgz", + "integrity": "sha512-z+xA3IbyKg5jiJ8mqyTb1YJvtOK5f5ZKVfGlZ0LDUFd4cvfDc5Ug7omKfZfNNk/fYVWQ4dbPO91dzFv+JU0Tdg==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", "@adobe/helix-docx2md": "1.6.5", "@adobe/helix-md2docx": "2.1.70", "@adobe/mdast-util-gridtables": "4.0.6", - "@azure/msal-node": "2.13.0", + "@azure/msal-node": "2.13.1", "@googleapis/docs": "3.3.0", - "@googleapis/drive": "8.13.0", + "@googleapis/drive": "8.14.0", "@googleapis/sheets": "9.3.0", "@microsoft/microsoft-graph-client": "3.0.7", "deep-equal": "2.2.3", @@ -1639,21 +1639,21 @@ } }, "node_modules/@azure/msal-common": { - "version": "14.14.1", - "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.14.1.tgz", - "integrity": "sha512-2Q3tqNz/PZLfSr8BvcHZVpRRfSn4MjGSqjj9J+HlBsmbf1Uu4P0WeXnemjTJwwx9KrmplsrN3UkZ/LPOR720rw==", + "version": "14.14.2", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.14.2.tgz", + "integrity": "sha512-XV0P5kSNwDwCA/SjIxTe9mEAsKB0NqGNSuaVrkCCE2lAyBr/D6YtD80Vkdp4tjWnPFwjzkwldjr1xU/facOJog==", "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/@azure/msal-node": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.13.0.tgz", - "integrity": "sha512-DhP97ycs7qlCVzzzWGzJiwAFyFj5okno74E4FUZ61oCLfKh4IxA1kxirqzrWuYZWpBe9HVPL6GA4NvmlEOBN5Q==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.13.1.tgz", + "integrity": "sha512-sijfzPNorKt6+9g1/miHwhj6Iapff4mPQx1azmmZExgzUROqWTM1o3ACyxDja0g47VpowFy/sxTM/WsuCyXTiw==", "license": "MIT", "dependencies": { - "@azure/msal-common": "14.14.1", + "@azure/msal-common": "14.14.2", "jsonwebtoken": "^9.0.0", "uuid": "^8.3.0" }, @@ -1937,9 +1937,9 @@ } }, "node_modules/@googleapis/drive": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/@googleapis/drive/-/drive-8.13.0.tgz", - "integrity": "sha512-xpXzZeYtNNFLy1m2D5A8/QR2bngpjLPEvO5KZUW4Dlwi/SBHYNTjVm37IQagtQg6QUJlFb4lVLewenUdZZB1rA==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/@googleapis/drive/-/drive-8.14.0.tgz", + "integrity": "sha512-AOokfpP6pCdcJXWA8khaCEgbGpWYavWTdAAhL4idbbf2VCQcJ2f7vPalAYNu6a4Sfj0Ly4Ehnd1xw9J9TixB1A==", "license": "Apache-2.0", "dependencies": { "googleapis-common": "^7.0.0" @@ -17999,7 +17999,7 @@ "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.3", + "@adobe/spacecat-helix-content-sdk": "1.1.4", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index a0e10508..3a6432cd 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.3", + "@adobe/spacecat-helix-content-sdk": "1.1.4", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From 9520eb71d9e927e6781263ff52e289a5f477b9e1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 31 Aug 2024 22:22:21 +0000 Subject: [PATCH 07/46] chore(release): 1.0.2 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.1...@adobe/spacecat-shared-content-client-v1.0.2) (2024-08-31) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.4 ([#353](https://github.com/adobe/spacecat-shared/issues/353)) ([9116f64](https://github.com/adobe/spacecat-shared/commit/9116f64640fe068ac13f145cfd4265ec3443bc11)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index 40e9fcdb..cea9a3cd 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.1...@adobe/spacecat-shared-content-client-v1.0.2) (2024-08-31) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.4 ([#353](https://github.com/adobe/spacecat-shared/issues/353)) ([9116f64](https://github.com/adobe/spacecat-shared/commit/9116f64640fe068ac13f145cfd4265ec3443bc11)) + # [@adobe/spacecat-shared-content-client-v1.0.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.0...@adobe/spacecat-shared-content-client-v1.0.1) (2024-08-29) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 3a6432cd..173aa217 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.1", + "version": "1.0.2", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From da21b30161d3ab77ac866dcf996551649be86cf5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 02:00:30 +0000 Subject: [PATCH 08/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.5 (#354) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://togithub.com/adobe/spacecat-helix-content-sdk) | [`1.1.4` -> `1.1.5`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.4/1.1.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.4/1.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.4/1.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.5`](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/de36fed88d6ca2d92458ba6171e47608e310fdbf...405db44e07fc9ddb8b113fa32b9f808db1be7bdf) [Compare Source](https://togithub.com/adobe/spacecat-helix-content-sdk/compare/de36fed88d6ca2d92458ba6171e47608e310fdbf...405db44e07fc9ddb8b113fa32b9f808db1be7bdf)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 103 ++++-------------- .../package.json | 2 +- 2 files changed, 24 insertions(+), 81 deletions(-) diff --git a/package-lock.json b/package-lock.json index 519364ab..28497828 100644 --- a/package-lock.json +++ b/package-lock.json @@ -73,12 +73,12 @@ } }, "node_modules/@adobe/helix-docx2md": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/@adobe/helix-docx2md/-/helix-docx2md-1.6.5.tgz", - "integrity": "sha512-DSZmWmtjwdwt3JuW6GqW3XKGbaGh2xUrY5hzBfX86SdGm5MzpMHXgkqPxAHGKPGZlRWOCR4B5fBR+tZQH9zDKQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@adobe/helix-docx2md/-/helix-docx2md-1.6.6.tgz", + "integrity": "sha512-uIV2N3acyqBSB9GIXZ7JmCAhjP66er6/GPS4bAdz2IpoasGiigvW599QuWz+5UBIFgGJLmVKN4N/CSprqC9PRw==", "license": "Apache-2.0", "dependencies": { - "@adobe/helix-markdown-support": "7.1.4", + "@adobe/helix-markdown-support": "7.1.5", "@adobe/helix-shared-process-queue": "3.0.4", "@adobe/mammoth": "1.7.1-bleeding.2", "@adobe/mdast-util-gridtables": "4.0.6", @@ -97,12 +97,12 @@ } }, "node_modules/@adobe/helix-markdown-support": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/@adobe/helix-markdown-support/-/helix-markdown-support-7.1.4.tgz", - "integrity": "sha512-Jcp440BdmR09kaiQ2vUkGJx38D/Rn1knM8DKzpd/iW36X+CZ3iHQnNy2c+g2Zbn9C0DoOADe1HiRg9fZTc40vA==", + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/@adobe/helix-markdown-support/-/helix-markdown-support-7.1.5.tgz", + "integrity": "sha512-B0pCMKA9dXB6tCAo6+BWDYrlJTeHSeGWZKa2cy7+HbtIxpjtSTU8RwofEI0YfFKbWoogrDceGeyWxwHUGfpkXA==", "license": "Apache-2.0", "dependencies": { - "hast-util-to-html": "9.0.1", + "hast-util-to-html": "9.0.2", "js-yaml": "4.1.0", "mdast-util-gfm-footnote": "2.0.0", "mdast-util-gfm-strikethrough": "2.0.0", @@ -129,14 +129,14 @@ } }, "node_modules/@adobe/helix-md2docx": { - "version": "2.1.70", - "resolved": "https://registry.npmjs.org/@adobe/helix-md2docx/-/helix-md2docx-2.1.70.tgz", - "integrity": "sha512-UaCkBmZMjKylhkvvy9NpuEtJGYh+aQeLt08l1KvMkWCOAUQUCgQmgQHWe6BPL4KuDHbxeabHSxkEhGfRPBDx0Q==", + "version": "2.1.71", + "resolved": "https://registry.npmjs.org/@adobe/helix-md2docx/-/helix-md2docx-2.1.71.tgz", + "integrity": "sha512-IOF9K/p1WLWJg5q0yuxKfUDPYVZpMkag5eubJRJ1ArCcuC9bGkvk5rCP/wHGU1bi3Ci532bpEHT6naAA66T+tA==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", - "@adobe/helix-docx2md": "1.6.5", - "@adobe/helix-markdown-support": "7.1.4", + "@adobe/helix-docx2md": "1.6.6", + "@adobe/helix-markdown-support": "7.1.5", "@adobe/helix-shared-process-queue": "3.0.4", "@adobe/remark-gridtables": "3.0.6", "docx": "8.5.0", @@ -251,14 +251,14 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.4.tgz", - "integrity": "sha512-z+xA3IbyKg5jiJ8mqyTb1YJvtOK5f5ZKVfGlZ0LDUFd4cvfDc5Ug7omKfZfNNk/fYVWQ4dbPO91dzFv+JU0Tdg==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.5.tgz", + "integrity": "sha512-r6PDtt1GH7WS5hye3rSw216mnC8HFgee+6T5kE/QCM+IdoUR3wsA8RLIMon3xLAMiLbRRkS7pP4ALtbilW9B6g==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", - "@adobe/helix-docx2md": "1.6.5", - "@adobe/helix-md2docx": "2.1.70", + "@adobe/helix-docx2md": "1.6.6", + "@adobe/helix-md2docx": "2.1.71", "@adobe/mdast-util-gridtables": "4.0.6", "@azure/msal-node": "2.13.1", "@googleapis/docs": "3.3.0", @@ -7222,54 +7222,16 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-raw": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.0.4.tgz", - "integrity": "sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "@ungap/structured-clone": "^1.0.0", - "hast-util-from-parse5": "^8.0.0", - "hast-util-to-parse5": "^8.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "parse5": "^7.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-raw/node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "license": "MIT", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, "node_modules/hast-util-to-html": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.1.tgz", - "integrity": "sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.2.tgz", + "integrity": "sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==", "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "ccount": "^2.0.0", "comma-separated-tokens": "^2.0.0", - "hast-util-raw": "^9.0.0", "hast-util-whitespace": "^3.0.0", "html-void-elements": "^3.0.0", "mdast-util-to-hast": "^13.0.0", @@ -7309,25 +7271,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-to-parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/hast-util-to-text": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", @@ -17995,11 +17938,11 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.1", + "version": "1.0.2", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.4", + "@adobe/spacecat-helix-content-sdk": "1.1.5", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 173aa217..e84f7a1a 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.4", + "@adobe/spacecat-helix-content-sdk": "1.1.5", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From 614431fb0dadb445d8604bd96cf89f1f60d8ded1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 2 Sep 2024 02:02:49 +0000 Subject: [PATCH 09/46] chore(release): 1.0.3 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.2...@adobe/spacecat-shared-content-client-v1.0.3) (2024-09-02) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.5 ([#354](https://github.com/adobe/spacecat-shared/issues/354)) ([da21b30](https://github.com/adobe/spacecat-shared/commit/da21b30161d3ab77ac866dcf996551649be86cf5)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index cea9a3cd..4c3e7e43 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.2...@adobe/spacecat-shared-content-client-v1.0.3) (2024-09-02) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.5 ([#354](https://github.com/adobe/spacecat-shared/issues/354)) ([da21b30](https://github.com/adobe/spacecat-shared/commit/da21b30161d3ab77ac866dcf996551649be86cf5)) + # [@adobe/spacecat-shared-content-client-v1.0.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.1...@adobe/spacecat-shared-content-client-v1.0.2) (2024-08-31) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index e84f7a1a..1d397c9d 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.2", + "version": "1.0.3", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From f21a765996990b1748c11b0cd8089e87ec91d9ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ekrem=20Do=C4=9Fan?= Date: Tue, 3 Sep 2024 11:42:47 +0200 Subject: [PATCH 10/46] feat: experimentation opportunities (#351) This PR contains two new queries to be used in experimentation opportunity detection: 1. High inorganic traffic with high bounce rate 2. High organic traffic with low ctr --- .../spacecat-shared-rum-api-client/README.md | 86 + .../src/common/aggregateFns.js | 54 + .../high-inorganic-high-bounce-rate.js | 74 + .../opportunities/high-organic-low-ctr.js | 77 + .../{ => opportunities}/rageclick.js | 0 .../src/functions/traffic-acquisition.js | 14 +- .../src/index.js | 8 +- .../fixtures/bundles-with-traffic-source.json | 30127 ++++++++++++++++ .../fixtures/high-inorganic-high-bounce.json | 42 + .../test/fixtures/high-organic-low-ctr.json | 29 + .../test/fixtures/trafficSources.json | 177 + .../test/functions.test.js | 21 + 12 files changed, 30704 insertions(+), 5 deletions(-) create mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js create mode 100644 packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js rename packages/spacecat-shared-rum-api-client/src/functions/{ => opportunities}/rageclick.js (100%) create mode 100644 packages/spacecat-shared-rum-api-client/test/fixtures/bundles-with-traffic-source.json create mode 100644 packages/spacecat-shared-rum-api-client/test/fixtures/high-inorganic-high-bounce.json create mode 100644 packages/spacecat-shared-rum-api-client/test/fixtures/high-organic-low-ctr.json diff --git a/packages/spacecat-shared-rum-api-client/README.md b/packages/spacecat-shared-rum-api-client/README.md index 4a2d4489..7227c686 100644 --- a/packages/spacecat-shared-rum-api-client/README.md +++ b/packages/spacecat-shared-rum-api-client/README.md @@ -191,6 +191,92 @@ An example response: ``` +### high-inorganic-high-bounce-rate (Experimentation Opportunity) + +Calculates the amount of inorganic traffic and the bounce rate for each page. Identifies pages with both high inorganic traffic and high bounce rates, which can be targeted for future experimentation opportunities. An example payload is provided below: + +```json +[ + { + "type": "high-inorganic-high-bounce-rate", + "page": "https://www.spacecat.com/", + "screenshot": "", + "trackedPageKPIName": "Bounce Rate", + "trackedPageKPIValue": 0.6507592190889371, + "pageViews": 46100, + "samples": 46100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 46100, + "paid": 40700, + "owned": 5400, + "earned": 0 + } + } + ] + }, + { + "type": "high-inorganic-high-bounce-rate", + "page": "https://www.spacecat.com/pricing", + "screenshot": "", + "trackedPageKPIName": "Bounce Rate", + "trackedPageKPIValue": 0.8723897911832946, + "pageViews": 43100, + "samples": 43100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 43100, + "paid": 24100, + "owned": 19000, + "earned": 0 + } + } + ] + } +] +``` + +### high-organic-low-ctr (Experimentation Opportunity) + +Calculates the amount of non-inorganic (earned and owned) traffic and the click-through rate for each page. Identifies pages with high non-inorganic traffic and low click-through rates, which can be targeted for future experimentation opportunities. An example payload is provided below: + +```json +[ + { + "type": "high-organic-low-ctr", + "page": "https://www.spacecat.com/about-us", + "screenshot": "", + "trackedPageKPIName": "Click Through Rate", + "trackedPageKPIValue": 0.14099783080260303, + "pageViews": 46100, + "samples": 46100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 46100, + "paid": 0, + "owned": 46100, + "earned": 0 + } + }, + { + "type": "ctr", + "value": { + "page": 0.14099783080260303, + "siteAverage": 0.4077909270216962 + } + } + ] + } +] + +``` + ## Linting Lint the codebase using: ``` diff --git a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js index d4da1700..a0c91d07 100644 --- a/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js +++ b/packages/spacecat-shared-rum-api-client/src/common/aggregateFns.js @@ -23,6 +23,60 @@ function pageviewsByUrl(bundles) { }, {}); } +/** + * Calculates the Click-Through Rate (CTR) by URL. + * CTR is defined as the total number of sessions with at least one click event + * divided by the total number of pageviews for each URL. + * + * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). + * @returns {Object} - An object where the key is the URL and the value is the CTR value. + */ +function getCTRByUrl(bundles) { + const aggregated = bundles.reduce((acc, bundle) => { + const { url } = bundle; + if (!acc[url]) { + acc[url] = { sessionsWithClick: 0, totalPageviews: 0 }; + } + const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); + + acc[url].totalPageviews += bundle.weight; + if (hasClick) { + acc[url].sessionsWithClick += bundle.weight; + } + return acc; + }, {}); + return Object.entries(aggregated) + .reduce((acc, [url, { sessionsWithClick, totalPageviews }]) => { + acc[url] = (sessionsWithClick / totalPageviews); + return acc; + }, {}); +} + +/** + * Calculates the Click-Through Rate (CTR) average for the entire site. + * CTR is defined as the total number of sessions with at least one click event + * divided by the total number of pageviews for the entire site. + * + * @param {Array} bundles - An array of RUM bundles (NOT Flat bundles). + * @returns {number} - Average CTR for the site. + */ +function getSiteAvgCTR(bundles) { + const aggregated = bundles.reduce((acc, bundle) => { + const hasClick = bundle.events.some((event) => event.checkpoint === 'click'); + acc.totalPageviews += bundle.weight; + if (hasClick) { + acc.sessionsWithClick += bundle.weight; + } + return acc; + }, { sessionsWithClick: 0, totalPageviews: 0 }); + + return aggregated.totalPageviews === 0 + ? 0 + : aggregated.sessionsWithClick / aggregated.totalPageviews; +} + export { + getSiteAvgCTR, + getCTRByUrl, pageviewsByUrl, }; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js new file mode 100644 index 00000000..ca606416 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-inorganic-high-bounce-rate.js @@ -0,0 +1,74 @@ +/* + * Copyright 2024 Adobe. All rights reserved. + * This file is licensed to you under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. You may obtain a copy + * of the License at http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS + * OF ANY KIND, either express or implied. See the License for the specific language + * governing permissions and limitations under the License. + */ + +import trafficAcquisition from '../traffic-acquisition.js'; +import { getCTRByUrl } from '../../common/aggregateFns.js'; + +const HOMEPAGE_PAID_TRAFFIC_THRESHOLD = 0.8; +const NON_HOMEPAGE_PAID_TRAFFIC_THRESHOLD = 0.5; +const BOUNCE_RATE_THRESHOLD = 0.5; +const DAILY_PAGEVIEW_THRESHOLD = 1000; + +function convertToOpportunity(traffic) { + const { + url, total, bounceRate, paid, earned, owned, + } = traffic; + + return { + type: 'high-inorganic-high-bounce-rate', + page: url, + screenshot: '', + trackedPageKPIName: 'Bounce Rate', + trackedPageKPIValue: bounceRate, + pageViews: total, + samples: total, // todo: get the actual number of samples + metrics: [{ + type: 'traffic', + value: { + total, + paid, + owned, + earned, + }, + }], + }; +} + +function hasHighInorganicTraffic(traffic) { + const { url, paid, total } = traffic; + const isHomepage = new URL(url).pathname === '/'; + const threshold = isHomepage + ? HOMEPAGE_PAID_TRAFFIC_THRESHOLD + : NON_HOMEPAGE_PAID_TRAFFIC_THRESHOLD; + return paid / total > threshold; +} + +function hasHighBounceRate(ctr) { + return ctr < BOUNCE_RATE_THRESHOLD; +} + +function handler(bundles, opts = {}) { + const { interval = 7 } = opts; + const trafficByUrl = trafficAcquisition.handler(bundles); + const ctrByUrl = getCTRByUrl(bundles); + + return trafficByUrl.filter((traffic) => traffic.total > interval * DAILY_PAGEVIEW_THRESHOLD) + .filter(hasHighInorganicTraffic) + .filter((traffic) => hasHighBounceRate(ctrByUrl[traffic.url])) + .map((traffic) => ({ ...traffic, bounceRate: 1 - ctrByUrl[traffic.url] })) + .map(convertToOpportunity); +} + +export default { + handler, + checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], +}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js new file mode 100644 index 00000000..6b0b6286 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/high-organic-low-ctr.js @@ -0,0 +1,77 @@ +/* + * Copyright 2024 Adobe. All rights reserved. + * This file is licensed to you under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. You may obtain a copy + * of the License at http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS + * OF ANY KIND, either express or implied. See the License for the specific language + * governing permissions and limitations under the License. + */ + +import trafficAcquisition from '../traffic-acquisition.js'; +import { getCTRByUrl, getSiteAvgCTR } from '../../common/aggregateFns.js'; + +const DAILY_EARNED_THRESHOLD = 5000; +const CTR_THRESHOLD_RATIO = 0.95; +const DAILY_PAGEVIEW_THRESHOLD = 1000; + +function convertToOpportunity(traffic) { + const { + url, total, ctr, paid, owned, earned, siteAvgCTR, + } = traffic; + + return { + type: 'high-organic-low-ctr', + page: url, + screenshot: '', + trackedPageKPIName: 'Click Through Rate', + trackedPageKPIValue: ctr, + pageViews: total, + samples: total, // todo: get the actual number of samples + metrics: [{ + type: 'traffic', + value: { + total, + paid, + owned, + earned, + }, + }, { + type: 'ctr', + value: { + page: ctr, + siteAverage: siteAvgCTR, + }, + }], + }; +} + +function hasHighOrganicTraffic(interval, traffic) { + const { earned, owned } = traffic; + return earned + owned > DAILY_EARNED_THRESHOLD * interval; +} + +function hasLowerCTR(ctr, siteAvgCTR) { + return ctr < CTR_THRESHOLD_RATIO * siteAvgCTR; +} + +function handler(bundles, opts = {}) { + const { interval = 7 } = opts; + + const trafficByUrl = trafficAcquisition.handler(bundles); + const ctrByUrl = getCTRByUrl(bundles); + const siteAvgCTR = getSiteAvgCTR(bundles); + + return trafficByUrl.filter((traffic) => traffic.total > interval * DAILY_PAGEVIEW_THRESHOLD) + .filter(hasHighOrganicTraffic.bind(null, interval)) + .filter((traffic) => hasLowerCTR(ctrByUrl[traffic.url], siteAvgCTR)) + .map((traffic) => ({ ...traffic, ctr: ctrByUrl[traffic.url], siteAvgCTR })) + .map(convertToOpportunity); +} + +export default { + handler, + checkpoints: ['email', 'enter', 'paid', 'utm', 'click', 'experiment'], +}; diff --git a/packages/spacecat-shared-rum-api-client/src/functions/rageclick.js b/packages/spacecat-shared-rum-api-client/src/functions/opportunities/rageclick.js similarity index 100% rename from packages/spacecat-shared-rum-api-client/src/functions/rageclick.js rename to packages/spacecat-shared-rum-api-client/src/functions/opportunities/rageclick.js diff --git a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js index bc671290..f7711e2f 100644 --- a/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js +++ b/packages/spacecat-shared-rum-api-client/src/functions/traffic-acquisition.js @@ -12,6 +12,8 @@ import { classifyTrafficSource } from '../common/traffic.js'; +const MAIN_TYPES = ['total', 'paid', 'earned', 'owned']; + function extractHints(bundle) { const findEvent = (checkpoint, source = '') => bundle.events.find((e) => e.checkpoint === checkpoint && (!source || e.source === source)) || {}; @@ -31,9 +33,12 @@ function extractHints(bundle) { } function collectByUrlAndTrafficSource(acc, { url, weight, trafficSource }) { - acc[url] = acc[url] || { total: 0 }; + acc[url] = acc[url] || { + total: 0, owned: 0, earned: 0, paid: 0, + }; acc[url][trafficSource] = (acc[url][trafficSource] || 0) + weight; acc[url].total += weight; + acc[url][trafficSource.split(':')[0]] += weight; return acc; } @@ -41,13 +46,16 @@ function transformFormat(trafficSources) { return Object.entries(trafficSources).map(([url, value]) => ({ url, total: value.total, + earned: value.earned, + owned: value.owned, + paid: value.paid, sources: Object.entries(value) - .filter(([source]) => source !== 'total') + .filter(([source]) => !MAIN_TYPES.includes(source)) .map(([source, views]) => ({ type: source, views })), })); } -async function handler(bundles) { +function handler(bundles) { const trafficSources = bundles .map(extractHints) .map((row) => { diff --git a/packages/spacecat-shared-rum-api-client/src/index.js b/packages/spacecat-shared-rum-api-client/src/index.js index 2bbd866e..7e36818f 100644 --- a/packages/spacecat-shared-rum-api-client/src/index.js +++ b/packages/spacecat-shared-rum-api-client/src/index.js @@ -15,7 +15,9 @@ import cwv from './functions/cwv.js'; import experiment from './functions/experiment.js'; import trafficAcquisition from './functions/traffic-acquisition.js'; import variant from './functions/variant.js'; -import rageclick from './functions/rageclick.js'; +import rageclick from './functions/opportunities/rageclick.js'; +import highInorganicHighBounceRate from './functions/opportunities/high-inorganic-high-bounce-rate.js'; +import highOrganicLowCtr from './functions/opportunities/high-organic-low-ctr.js'; const HANDLERS = { 404: notfound, @@ -24,6 +26,8 @@ const HANDLERS = { 'traffic-acquisition': trafficAcquisition, variant, rageclick, + 'high-inorganic-high-bounce-rate': highInorganicHighBounceRate, + 'high-organic-low-ctr': highOrganicLowCtr, }; export default class RUMAPIClient { @@ -80,7 +84,7 @@ export default class RUMAPIClient { // Execute each query handler sequentially for (const { query, handler } of queryHandlers) { // eslint-disable-next-line no-await-in-loop - results[query] = await handler(bundles); + results[query] = await handler(bundles, opts); } return results; diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/bundles-with-traffic-source.json b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles-with-traffic-source.json new file mode 100644 index 00000000..aee47eb7 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles-with-traffic-source.json @@ -0,0 +1,30127 @@ +{ + "rumBundles": [ + { + "id": "hcdj9gp2w8d", + "host": "rum.hlx.page", + "time": "2024-08-31T22:44:14.393Z", + "timeSlot": "2024-08-31T22:44:14.393Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ydmmmrjezze", + "host": "rum.hlx.page", + "time": "2024-08-31T18:33:21.715Z", + "timeSlot": "2024-08-31T18:33:21.715Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "o8ry1b3bn1m", + "host": "rum.hlx.page", + "time": "2024-09-01T17:16:10.490Z", + "timeSlot": "2024-09-01T17:16:10.490Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "kg72hvqb21", + "host": "rum.hlx.page", + "time": "2024-08-31T06:20:40.892Z", + "timeSlot": "2024-08-31T06:20:40.892Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yq4ur7gv75e", + "host": "rum.hlx.page", + "time": "2024-09-01T14:37:57.126Z", + "timeSlot": "2024-09-01T14:37:57.126Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v9v00b385b", + "host": "rum.hlx.page", + "time": "2024-08-30T18:22:46.609Z", + "timeSlot": "2024-08-30T18:22:46.609Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0zhdxm1gr0lm", + "host": "rum.hlx.page", + "time": "2024-09-01T07:59:31.183Z", + "timeSlot": "2024-09-01T07:59:31.183Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fdx1jbmpc0t", + "host": "rum.hlx.page", + "time": "2024-08-30T20:02:24.213Z", + "timeSlot": "2024-08-30T20:02:24.213Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "di1t6o5gws7", + "host": "rum.hlx.page", + "time": "2024-09-01T00:47:41.199Z", + "timeSlot": "2024-09-01T00:47:41.199Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "igitxii05j", + "host": "rum.hlx.page", + "time": "2024-09-01T15:22:36.664Z", + "timeSlot": "2024-09-01T15:22:36.664Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "18lmz1p3swz", + "host": "rum.hlx.page", + "time": "2024-08-31T03:39:14.030Z", + "timeSlot": "2024-08-31T03:39:14.030Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lhaq8dmah7p", + "host": "rum.hlx.page", + "time": "2024-09-01T13:00:31.197Z", + "timeSlot": "2024-09-01T13:00:31.197Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "f39r0hxaeii", + "host": "rum.hlx.page", + "time": "2024-09-02T03:02:40.700Z", + "timeSlot": "2024-09-02T03:02:40.700Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jvc9vfsmk4k", + "host": "rum.hlx.page", + "time": "2024-09-01T05:22:49.302Z", + "timeSlot": "2024-09-01T05:22:49.302Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ijyg3ngdpz", + "host": "rum.hlx.page", + "time": "2024-09-01T19:04:54.715Z", + "timeSlot": "2024-09-01T19:04:54.715Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0quvd95ys96f", + "host": "rum.hlx.page", + "time": "2024-09-01T22:56:02.708Z", + "timeSlot": "2024-09-01T22:56:02.708Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "twhfzoypea", + "host": "rum.hlx.page", + "time": "2024-09-01T03:38:27.286Z", + "timeSlot": "2024-09-01T03:38:27.286Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vstj31snpu", + "host": "rum.hlx.page", + "time": "2024-09-01T14:41:53.658Z", + "timeSlot": "2024-09-01T14:41:53.658Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cvs8f6dc29k", + "host": "rum.hlx.page", + "time": "2024-08-31T13:36:27.577Z", + "timeSlot": "2024-08-31T13:36:27.577Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5zijmu8yjjc", + "host": "rum.hlx.page", + "time": "2024-08-31T12:57:00.958Z", + "timeSlot": "2024-08-31T12:57:00.958Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dqfn42ui9y", + "host": "rum.hlx.page", + "time": "2024-09-01T01:56:18.398Z", + "timeSlot": "2024-09-01T01:56:18.398Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "m3zuuao0du", + "host": "rum.hlx.page", + "time": "2024-08-30T16:31:45.594Z", + "timeSlot": "2024-08-30T16:31:45.594Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "la351m2rwii", + "host": "rum.hlx.page", + "time": "2024-08-30T23:30:57.363Z", + "timeSlot": "2024-08-30T23:30:57.363Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g7dylqzukmj", + "host": "rum.hlx.page", + "time": "2024-08-30T18:11:36.160Z", + "timeSlot": "2024-08-30T18:11:36.160Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "8oic4a45uvt", + "host": "rum.hlx.page", + "time": "2024-09-01T11:07:56.872Z", + "timeSlot": "2024-09-01T11:07:56.872Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hypx7yjpy8i", + "host": "rum.hlx.page", + "time": "2024-09-02T07:26:40.810Z", + "timeSlot": "2024-09-02T07:26:40.810Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0ikfbb6h0srd", + "host": "rum.hlx.page", + "time": "2024-09-01T23:40:08.415Z", + "timeSlot": "2024-09-01T23:40:08.415Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nw6jyuwuyym", + "host": "rum.hlx.page", + "time": "2024-08-31T06:46:48.948Z", + "timeSlot": "2024-08-31T06:46:48.948Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8hmnhk2t7bm", + "host": "rum.hlx.page", + "time": "2024-09-02T10:41:50.344Z", + "timeSlot": "2024-09-02T10:41:50.344Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tsl5izlbx7f", + "host": "rum.hlx.page", + "time": "2024-09-02T08:12:23.887Z", + "timeSlot": "2024-09-02T08:12:23.887Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ndii09nmr2p", + "host": "rum.hlx.page", + "time": "2024-09-01T06:39:02.239Z", + "timeSlot": "2024-09-01T06:39:02.239Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "qde4xtvu5sq", + "host": "rum.hlx.page", + "time": "2024-08-31T14:11:00.593Z", + "timeSlot": "2024-08-31T14:11:00.593Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ozo053mac6", + "host": "rum.hlx.page", + "time": "2024-08-31T22:50:46.932Z", + "timeSlot": "2024-08-31T22:50:46.932Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cp686yhgowe", + "host": "rum.hlx.page", + "time": "2024-09-02T12:22:58.237Z", + "timeSlot": "2024-09-02T12:22:58.237Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p2pzmzoa1v", + "host": "rum.hlx.page", + "time": "2024-09-01T07:10:53.264Z", + "timeSlot": "2024-09-01T07:10:53.264Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0jzxha236l8m", + "host": "rum.hlx.page", + "time": "2024-09-01T10:24:48.608Z", + "timeSlot": "2024-09-01T10:24:48.608Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "h2ap85xxexv", + "host": "rum.hlx.page", + "time": "2024-09-01T09:08:03.864Z", + "timeSlot": "2024-09-01T09:08:03.864Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "nb8rbl92red", + "host": "rum.hlx.page", + "time": "2024-09-01T01:02:11.086Z", + "timeSlot": "2024-09-01T01:02:11.086Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "h9bmfljqmiw", + "host": "rum.hlx.page", + "time": "2024-09-02T00:44:55.384Z", + "timeSlot": "2024-09-02T00:44:55.384Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "9h6jmbpt9pr", + "host": "rum.hlx.page", + "time": "2024-08-30T19:42:38.840Z", + "timeSlot": "2024-08-30T19:42:38.840Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yt1120bt0mm", + "host": "rum.hlx.page", + "time": "2024-08-31T04:02:52.314Z", + "timeSlot": "2024-08-31T04:02:52.314Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nd75dwyfyz8", + "host": "rum.hlx.page", + "time": "2024-09-02T02:46:36.396Z", + "timeSlot": "2024-09-02T02:46:36.396Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2tc6p53tn5a", + "host": "rum.hlx.page", + "time": "2024-09-01T08:15:33.927Z", + "timeSlot": "2024-09-01T08:15:33.927Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "s3ves8tj8dk", + "host": "rum.hlx.page", + "time": "2024-09-02T06:33:00.785Z", + "timeSlot": "2024-09-02T06:33:00.785Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "kn2f1w5rmd", + "host": "rum.hlx.page", + "time": "2024-08-31T08:09:08.449Z", + "timeSlot": "2024-08-31T08:09:08.449Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "51vtsh15kn", + "host": "rum.hlx.page", + "time": "2024-09-02T04:09:59.000Z", + "timeSlot": "2024-09-02T04:09:59.000Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fjwodsoj8t", + "host": "rum.hlx.page", + "time": "2024-09-01T11:09:09.941Z", + "timeSlot": "2024-09-01T11:09:09.941Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2sapgjzrbd5", + "host": "rum.hlx.page", + "time": "2024-09-01T19:27:35.521Z", + "timeSlot": "2024-09-01T19:27:35.521Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "idkixbs3wma", + "host": "rum.hlx.page", + "time": "2024-09-01T14:50:04.683Z", + "timeSlot": "2024-09-01T14:50:04.683Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "z7m1kgsszsb", + "host": "rum.hlx.page", + "time": "2024-08-31T02:12:53.031Z", + "timeSlot": "2024-08-31T02:12:53.031Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ydnon01ahld", + "host": "rum.hlx.page", + "time": "2024-08-31T09:03:10.053Z", + "timeSlot": "2024-08-31T09:03:10.053Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "32i721xsw1b", + "host": "rum.hlx.page", + "time": "2024-08-30T21:39:28.621Z", + "timeSlot": "2024-08-30T21:39:28.621Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bp3bdzq8zs", + "host": "rum.hlx.page", + "time": "2024-09-02T01:39:42.077Z", + "timeSlot": "2024-09-02T01:39:42.077Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wz7tap3j38r", + "host": "rum.hlx.page", + "time": "2024-09-01T03:01:03.824Z", + "timeSlot": "2024-09-01T03:01:03.824Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zoxruamvhcp", + "host": "rum.hlx.page", + "time": "2024-09-01T00:27:29.946Z", + "timeSlot": "2024-09-01T00:27:29.946Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "b07pqiry4vv", + "host": "rum.hlx.page", + "time": "2024-09-02T03:11:06.689Z", + "timeSlot": "2024-09-02T03:11:06.689Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "55apzaqhyr2", + "host": "rum.hlx.page", + "time": "2024-09-02T08:26:03.853Z", + "timeSlot": "2024-09-02T08:26:03.853Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bl2v3z6olbo", + "host": "rum.hlx.page", + "time": "2024-08-30T21:32:18.516Z", + "timeSlot": "2024-08-30T21:32:18.516Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "o70qd0vt9h", + "host": "rum.hlx.page", + "time": "2024-09-01T16:17:08.080Z", + "timeSlot": "2024-09-01T16:17:08.080Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nn5chlr5j9c", + "host": "rum.hlx.page", + "time": "2024-09-01T05:02:46.426Z", + "timeSlot": "2024-09-01T05:02:46.426Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0601r871kqo", + "host": "rum.hlx.page", + "time": "2024-09-02T03:10:24.826Z", + "timeSlot": "2024-09-02T03:10:24.826Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ejok3rq6i6f", + "host": "rum.hlx.page", + "time": "2024-09-01T08:20:12.077Z", + "timeSlot": "2024-09-01T08:20:12.077Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fh2cpf396vc", + "host": "rum.hlx.page", + "time": "2024-09-02T11:06:17.010Z", + "timeSlot": "2024-09-02T11:06:17.010Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "n93jbsgsb3c", + "host": "rum.hlx.page", + "time": "2024-08-31T11:44:18.854Z", + "timeSlot": "2024-08-31T11:44:18.854Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x3wr4sg01y", + "host": "rum.hlx.page", + "time": "2024-09-01T03:19:31.720Z", + "timeSlot": "2024-09-01T03:19:31.720Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0xpw8exmgg2d", + "host": "rum.hlx.page", + "time": "2024-08-31T04:39:50.780Z", + "timeSlot": "2024-08-31T04:39:50.780Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tzwyf94myns", + "host": "rum.hlx.page", + "time": "2024-08-30T15:54:36.312Z", + "timeSlot": "2024-08-30T15:54:36.312Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bbocp7nzg14", + "host": "rum.hlx.page", + "time": "2024-09-01T08:08:31.971Z", + "timeSlot": "2024-09-01T08:08:31.971Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2qsm7yz8euf", + "host": "rum.hlx.page", + "time": "2024-09-01T01:04:43.384Z", + "timeSlot": "2024-09-01T01:04:43.384Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "h0lg52z0wl8", + "host": "rum.hlx.page", + "time": "2024-09-01T22:14:02.637Z", + "timeSlot": "2024-09-01T22:14:02.637Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "owdcendsywe", + "host": "rum.hlx.page", + "time": "2024-08-30T20:31:50.701Z", + "timeSlot": "2024-08-30T20:31:50.701Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "45o087rexuu", + "host": "rum.hlx.page", + "time": "2024-09-01T00:21:47.183Z", + "timeSlot": "2024-09-01T00:21:47.183Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wr3nuwlgo8f", + "host": "rum.hlx.page", + "time": "2024-09-01T12:09:02.090Z", + "timeSlot": "2024-09-01T12:09:02.090Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "55q4p66vrpx", + "host": "rum.hlx.page", + "time": "2024-09-01T16:08:48.752Z", + "timeSlot": "2024-09-01T16:08:48.752Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "c99whzlffdc", + "host": "rum.hlx.page", + "time": "2024-08-31T23:12:15.162Z", + "timeSlot": "2024-08-31T23:12:15.162Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xijl0xtrshc", + "host": "rum.hlx.page", + "time": "2024-08-31T05:01:17.831Z", + "timeSlot": "2024-08-31T05:01:17.831Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kssswhwz0la", + "host": "rum.hlx.page", + "time": "2024-09-01T01:54:11.988Z", + "timeSlot": "2024-09-01T01:54:11.988Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xhn4g378zk", + "host": "rum.hlx.page", + "time": "2024-08-31T19:55:20.674Z", + "timeSlot": "2024-08-31T19:55:20.674Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "glzue69p83h", + "host": "rum.hlx.page", + "time": "2024-08-30T18:52:34.516Z", + "timeSlot": "2024-08-30T18:52:34.516Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rwxdwtvy99", + "host": "rum.hlx.page", + "time": "2024-08-31T11:48:22.426Z", + "timeSlot": "2024-08-31T11:48:22.426Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "x5myeosc91", + "host": "rum.hlx.page", + "time": "2024-09-01T06:15:42.577Z", + "timeSlot": "2024-09-01T06:15:42.577Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "i8azrj9f6ca", + "host": "rum.hlx.page", + "time": "2024-09-02T06:39:13.427Z", + "timeSlot": "2024-09-02T06:39:13.427Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qbj1mf7g9vq", + "host": "rum.hlx.page", + "time": "2024-08-31T13:45:11.876Z", + "timeSlot": "2024-08-31T13:45:11.876Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "j63a632cu2d", + "host": "rum.hlx.page", + "time": "2024-09-01T18:53:15.302Z", + "timeSlot": "2024-09-01T18:53:15.302Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kg413ago4o", + "host": "rum.hlx.page", + "time": "2024-08-30T16:22:51.769Z", + "timeSlot": "2024-08-30T16:22:51.769Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "f3u0w2evlsb", + "host": "rum.hlx.page", + "time": "2024-08-30T18:36:52.764Z", + "timeSlot": "2024-08-30T18:36:52.764Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "id7jelofb6", + "host": "rum.hlx.page", + "time": "2024-09-01T17:11:05.815Z", + "timeSlot": "2024-09-01T17:11:05.815Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0scu8rvjuekb", + "host": "rum.hlx.page", + "time": "2024-08-31T11:31:42.833Z", + "timeSlot": "2024-08-31T11:31:42.833Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fg7z6rkicqq", + "host": "rum.hlx.page", + "time": "2024-08-31T07:47:20.134Z", + "timeSlot": "2024-08-31T07:47:20.134Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4zi0x0fxb7n", + "host": "rum.hlx.page", + "time": "2024-09-02T05:36:16.743Z", + "timeSlot": "2024-09-02T05:36:16.743Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "swsec3t7hs8", + "host": "rum.hlx.page", + "time": "2024-09-01T17:02:33.725Z", + "timeSlot": "2024-09-01T17:02:33.725Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "aff1oipsh5", + "host": "rum.hlx.page", + "time": "2024-08-31T02:31:15.439Z", + "timeSlot": "2024-08-31T02:31:15.439Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1zx5rk5a9m2", + "host": "rum.hlx.page", + "time": "2024-08-31T19:14:39.695Z", + "timeSlot": "2024-08-31T19:14:39.695Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2ld402knk06", + "host": "rum.hlx.page", + "time": "2024-08-30T17:32:25.016Z", + "timeSlot": "2024-08-30T17:32:25.016Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5t5aridedzh", + "host": "rum.hlx.page", + "time": "2024-08-31T14:42:04.313Z", + "timeSlot": "2024-08-31T14:42:04.313Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3e42qflftdb", + "host": "rum.hlx.page", + "time": "2024-08-30T21:29:46.509Z", + "timeSlot": "2024-08-30T21:29:46.509Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "98kjp6jfpap", + "host": "rum.hlx.page", + "time": "2024-09-02T10:52:25.844Z", + "timeSlot": "2024-09-02T10:52:25.844Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "oqwc4aa3cq", + "host": "rum.hlx.page", + "time": "2024-09-02T14:10:39.156Z", + "timeSlot": "2024-09-02T14:10:39.156Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fgan3acq5jp", + "host": "rum.hlx.page", + "time": "2024-09-02T01:38:55.688Z", + "timeSlot": "2024-09-02T01:38:55.688Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jqhgcsajhhm", + "host": "rum.hlx.page", + "time": "2024-08-31T20:00:47.024Z", + "timeSlot": "2024-08-31T20:00:47.024Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6pvnnzj84gd", + "host": "rum.hlx.page", + "time": "2024-08-31T23:02:38.794Z", + "timeSlot": "2024-08-31T23:02:38.794Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3bzok0om2c", + "host": "rum.hlx.page", + "time": "2024-09-01T04:29:55.183Z", + "timeSlot": "2024-09-01T04:29:55.183Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "raerbi9lmpo", + "host": "rum.hlx.page", + "time": "2024-08-30T18:07:47.530Z", + "timeSlot": "2024-08-30T18:07:47.530Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nnq3kk4tioh", + "host": "rum.hlx.page", + "time": "2024-08-31T03:03:57.069Z", + "timeSlot": "2024-08-31T03:03:57.069Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "k0t6jpe5w2", + "host": "rum.hlx.page", + "time": "2024-08-30T17:01:06.253Z", + "timeSlot": "2024-08-30T17:01:06.253Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jpendzl3yv", + "host": "rum.hlx.page", + "time": "2024-09-02T04:10:04.945Z", + "timeSlot": "2024-09-02T04:10:04.945Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mszmpjn8pjm", + "host": "rum.hlx.page", + "time": "2024-08-31T20:50:21.590Z", + "timeSlot": "2024-08-31T20:50:21.590Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4cww0m227vo", + "host": "rum.hlx.page", + "time": "2024-08-30T21:18:31.812Z", + "timeSlot": "2024-08-30T21:18:31.812Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0293xzrezlzu", + "host": "rum.hlx.page", + "time": "2024-08-31T10:07:53.394Z", + "timeSlot": "2024-08-31T10:07:53.394Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lr4odk269dn", + "host": "rum.hlx.page", + "time": "2024-08-31T21:58:17.408Z", + "timeSlot": "2024-08-31T21:58:17.408Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7majekgjtgm", + "host": "rum.hlx.page", + "time": "2024-08-30T18:49:28.966Z", + "timeSlot": "2024-08-30T18:49:28.966Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2a9ff19lv9l", + "host": "rum.hlx.page", + "time": "2024-09-01T09:34:44.436Z", + "timeSlot": "2024-09-01T09:34:44.436Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vexu4rusydd", + "host": "rum.hlx.page", + "time": "2024-08-30T23:24:41.369Z", + "timeSlot": "2024-08-30T23:24:41.369Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k5o4dvvxtzl", + "host": "rum.hlx.page", + "time": "2024-08-31T15:16:18.202Z", + "timeSlot": "2024-08-31T15:16:18.202Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "56s72bw068h", + "host": "rum.hlx.page", + "time": "2024-09-01T19:49:34.212Z", + "timeSlot": "2024-09-01T19:49:34.212Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ep5jva3p5h7", + "host": "rum.hlx.page", + "time": "2024-09-01T16:50:02.893Z", + "timeSlot": "2024-09-01T16:50:02.893Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "w0fp3rszehq", + "host": "rum.hlx.page", + "time": "2024-09-01T20:57:20.203Z", + "timeSlot": "2024-09-01T20:57:20.203Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d0go3p6np3", + "host": "rum.hlx.page", + "time": "2024-08-31T17:45:16.195Z", + "timeSlot": "2024-08-31T17:45:16.195Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p2soh6sczmb", + "host": "rum.hlx.page", + "time": "2024-09-01T14:09:23.400Z", + "timeSlot": "2024-09-01T14:09:23.400Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dinfybdg1ek", + "host": "rum.hlx.page", + "time": "2024-09-01T10:03:50.269Z", + "timeSlot": "2024-09-01T10:03:50.269Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1p8gclaj78h", + "host": "rum.hlx.page", + "time": "2024-09-01T15:51:57.873Z", + "timeSlot": "2024-09-01T15:51:57.873Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "c6kumxby23o", + "host": "rum.hlx.page", + "time": "2024-09-01T22:11:39.866Z", + "timeSlot": "2024-09-01T22:11:39.866Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "swr4y4lcqv8", + "host": "rum.hlx.page", + "time": "2024-08-31T20:21:06.970Z", + "timeSlot": "2024-08-31T20:21:06.970Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "js5my672b4n", + "host": "rum.hlx.page", + "time": "2024-08-30T21:09:38.888Z", + "timeSlot": "2024-08-30T21:09:38.888Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rkd4b79jxe", + "host": "rum.hlx.page", + "time": "2024-09-02T05:00:59.188Z", + "timeSlot": "2024-09-02T05:00:59.188Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "on18q8fkxj", + "host": "rum.hlx.page", + "time": "2024-08-31T09:12:40.730Z", + "timeSlot": "2024-08-31T09:12:40.730Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zhdpdc0iy6f", + "host": "rum.hlx.page", + "time": "2024-09-01T14:48:29.736Z", + "timeSlot": "2024-09-01T14:48:29.736Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "p0e354eotv", + "host": "rum.hlx.page", + "time": "2024-09-02T03:49:09.054Z", + "timeSlot": "2024-09-02T03:49:09.054Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mmqaq5igfd", + "host": "rum.hlx.page", + "time": "2024-08-31T02:25:07.557Z", + "timeSlot": "2024-08-31T02:25:07.557Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "urx73bz3v1l", + "host": "rum.hlx.page", + "time": "2024-08-31T01:22:25.767Z", + "timeSlot": "2024-08-31T01:22:25.767Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8cdehh66nrg", + "host": "rum.hlx.page", + "time": "2024-09-01T03:40:01.207Z", + "timeSlot": "2024-09-01T03:40:01.207Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "go7ohjfso36", + "host": "rum.hlx.page", + "time": "2024-08-31T18:48:21.092Z", + "timeSlot": "2024-08-31T18:48:21.092Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "jgkekildd8", + "host": "rum.hlx.page", + "time": "2024-09-01T20:59:17.432Z", + "timeSlot": "2024-09-01T20:59:17.432Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ragi3uve56", + "host": "rum.hlx.page", + "time": "2024-09-01T22:43:54.306Z", + "timeSlot": "2024-09-01T22:43:54.306Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cybxkgy90ke", + "host": "rum.hlx.page", + "time": "2024-09-02T13:41:32.174Z", + "timeSlot": "2024-09-02T13:41:32.174Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ib9izip39g", + "host": "rum.hlx.page", + "time": "2024-08-30T16:57:42.923Z", + "timeSlot": "2024-08-30T16:57:42.923Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "65me9yw91tu", + "host": "rum.hlx.page", + "time": "2024-08-31T10:19:21.425Z", + "timeSlot": "2024-08-31T10:19:21.425Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4e2vghuj293", + "host": "rum.hlx.page", + "time": "2024-09-01T10:12:10.015Z", + "timeSlot": "2024-09-01T10:12:10.015Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "hgodx835z1o", + "host": "rum.hlx.page", + "time": "2024-08-30T17:29:02.783Z", + "timeSlot": "2024-08-30T17:29:02.783Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ug2zhlhayl", + "host": "rum.hlx.page", + "time": "2024-09-01T20:46:52.036Z", + "timeSlot": "2024-09-01T20:46:52.036Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3o7a8no03pq", + "host": "rum.hlx.page", + "time": "2024-08-30T20:33:01.973Z", + "timeSlot": "2024-08-30T20:33:01.973Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "8bd68v9lbh6", + "host": "rum.hlx.page", + "time": "2024-09-02T12:17:51.728Z", + "timeSlot": "2024-09-02T12:17:51.728Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "23oxlrf48bl", + "host": "rum.hlx.page", + "time": "2024-08-31T18:40:54.335Z", + "timeSlot": "2024-08-31T18:40:54.335Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yyu5vygswuc", + "host": "rum.hlx.page", + "time": "2024-09-01T07:34:53.163Z", + "timeSlot": "2024-09-01T07:34:53.163Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "hqejmtv7k9j", + "host": "rum.hlx.page", + "time": "2024-09-02T08:16:06.774Z", + "timeSlot": "2024-09-02T08:16:06.774Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3vw8torh6xl", + "host": "rum.hlx.page", + "time": "2024-09-02T00:38:24.447Z", + "timeSlot": "2024-09-02T00:38:24.447Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mmyj3duyuq", + "host": "rum.hlx.page", + "time": "2024-09-02T11:56:44.354Z", + "timeSlot": "2024-09-02T11:56:44.354Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1asytwspgu4", + "host": "rum.hlx.page", + "time": "2024-09-02T12:16:04.498Z", + "timeSlot": "2024-09-02T12:16:04.498Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "aldr9wq3ocr", + "host": "rum.hlx.page", + "time": "2024-08-31T05:01:43.940Z", + "timeSlot": "2024-08-31T05:01:43.940Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rf0j86legii", + "host": "rum.hlx.page", + "time": "2024-09-01T07:47:17.535Z", + "timeSlot": "2024-09-01T07:47:17.535Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "t4i33ogve4d", + "host": "rum.hlx.page", + "time": "2024-08-30T19:12:21.761Z", + "timeSlot": "2024-08-30T19:12:21.761Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7kg3od11ms9", + "host": "rum.hlx.page", + "time": "2024-09-01T12:35:09.154Z", + "timeSlot": "2024-09-01T12:35:09.154Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tjwovdr5pa", + "host": "rum.hlx.page", + "time": "2024-09-02T11:55:58.228Z", + "timeSlot": "2024-09-02T11:55:58.228Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0zgmn1gsl5oh", + "host": "rum.hlx.page", + "time": "2024-09-01T09:33:32.074Z", + "timeSlot": "2024-09-01T09:33:32.074Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "369x6yob953", + "host": "rum.hlx.page", + "time": "2024-09-02T07:43:26.623Z", + "timeSlot": "2024-09-02T07:43:26.623Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wdo9y5v4ezn", + "host": "rum.hlx.page", + "time": "2024-09-01T05:47:47.357Z", + "timeSlot": "2024-09-01T05:47:47.357Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "n7x5x7nun4p", + "host": "rum.hlx.page", + "time": "2024-09-02T09:26:07.946Z", + "timeSlot": "2024-09-02T09:26:07.946Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "e1ivbswig1b", + "host": "rum.hlx.page", + "time": "2024-09-01T00:00:23.969Z", + "timeSlot": "2024-09-01T00:00:23.969Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "cusogdejfts", + "host": "rum.hlx.page", + "time": "2024-08-31T13:49:40.528Z", + "timeSlot": "2024-08-31T13:49:40.528Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "qzkdb3uztn", + "host": "rum.hlx.page", + "time": "2024-08-31T11:08:39.560Z", + "timeSlot": "2024-08-31T11:08:39.560Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "504ndd2v1hl", + "host": "rum.hlx.page", + "time": "2024-09-01T02:09:43.779Z", + "timeSlot": "2024-09-01T02:09:43.779Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cirjswkyje7", + "host": "rum.hlx.page", + "time": "2024-09-01T06:34:00.621Z", + "timeSlot": "2024-09-01T06:34:00.621Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pz06xxbpj5", + "host": "rum.hlx.page", + "time": "2024-08-31T04:33:03.353Z", + "timeSlot": "2024-08-31T04:33:03.353Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "f7f2snz4lun", + "host": "rum.hlx.page", + "time": "2024-08-31T16:37:38.462Z", + "timeSlot": "2024-08-31T16:37:38.462Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5qbf5pxm7uw", + "host": "rum.hlx.page", + "time": "2024-09-01T05:18:59.066Z", + "timeSlot": "2024-09-01T05:18:59.066Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "8pbg9rnrzdh", + "host": "rum.hlx.page", + "time": "2024-08-31T18:13:17.709Z", + "timeSlot": "2024-08-31T18:13:17.709Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xjxlnaw5lup", + "host": "rum.hlx.page", + "time": "2024-09-01T17:14:56.768Z", + "timeSlot": "2024-09-01T17:14:56.768Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kuwfxhaqbk9", + "host": "rum.hlx.page", + "time": "2024-09-01T05:35:53.912Z", + "timeSlot": "2024-09-01T05:35:53.912Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "p0h6pp7ttoe", + "host": "rum.hlx.page", + "time": "2024-08-30T20:36:25.769Z", + "timeSlot": "2024-08-30T20:36:25.769Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "uxp4wjmkkx", + "host": "rum.hlx.page", + "time": "2024-09-01T05:10:03.601Z", + "timeSlot": "2024-09-01T05:10:03.601Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "r9cw7mkavm", + "host": "rum.hlx.page", + "time": "2024-09-02T12:45:05.830Z", + "timeSlot": "2024-09-02T12:45:05.830Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wa54mjsvft", + "host": "rum.hlx.page", + "time": "2024-09-02T00:17:49.007Z", + "timeSlot": "2024-09-02T00:17:49.007Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "c7cioqk2qev", + "host": "rum.hlx.page", + "time": "2024-09-01T06:02:51.355Z", + "timeSlot": "2024-09-01T06:02:51.355Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fbe6icbzw99", + "host": "rum.hlx.page", + "time": "2024-09-01T09:02:36.485Z", + "timeSlot": "2024-09-01T09:02:36.485Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "4ll72m9he3h", + "host": "rum.hlx.page", + "time": "2024-08-30T17:53:15.138Z", + "timeSlot": "2024-08-30T17:53:15.138Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xd70l63fc6", + "host": "rum.hlx.page", + "time": "2024-09-02T02:21:02.767Z", + "timeSlot": "2024-09-02T02:21:02.767Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "9prvi9dqzq", + "host": "rum.hlx.page", + "time": "2024-08-31T12:21:47.722Z", + "timeSlot": "2024-08-31T12:21:47.722Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "xri9561k3xr", + "host": "rum.hlx.page", + "time": "2024-08-30T23:53:46.264Z", + "timeSlot": "2024-08-30T23:53:46.264Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zlmaazoddh", + "host": "rum.hlx.page", + "time": "2024-09-02T13:48:49.835Z", + "timeSlot": "2024-09-02T13:48:49.835Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "537qngqgi73", + "host": "rum.hlx.page", + "time": "2024-09-02T13:33:32.404Z", + "timeSlot": "2024-09-02T13:33:32.404Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "o25f4kndh2m", + "host": "rum.hlx.page", + "time": "2024-09-01T05:21:22.739Z", + "timeSlot": "2024-09-01T05:21:22.739Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "effi0kitei", + "host": "rum.hlx.page", + "time": "2024-08-31T02:56:31.738Z", + "timeSlot": "2024-08-31T02:56:31.738Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wpwnqbrg11d", + "host": "rum.hlx.page", + "time": "2024-08-31T07:35:44.610Z", + "timeSlot": "2024-08-31T07:35:44.610Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zh7r7e80ynj", + "host": "rum.hlx.page", + "time": "2024-09-02T08:22:00.964Z", + "timeSlot": "2024-09-02T08:22:00.964Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gv7tckrr2a", + "host": "rum.hlx.page", + "time": "2024-09-02T03:36:09.324Z", + "timeSlot": "2024-09-02T03:36:09.324Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w8rrhye74z", + "host": "rum.hlx.page", + "time": "2024-09-02T06:52:50.590Z", + "timeSlot": "2024-09-02T06:52:50.590Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "y3sgn88kc8", + "host": "rum.hlx.page", + "time": "2024-08-31T19:29:39.798Z", + "timeSlot": "2024-08-31T19:29:39.798Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "j7ve2w5ugmn", + "host": "rum.hlx.page", + "time": "2024-08-31T00:42:38.471Z", + "timeSlot": "2024-08-31T00:42:38.471Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "rhv1fh7ixbf", + "host": "rum.hlx.page", + "time": "2024-09-01T06:45:28.454Z", + "timeSlot": "2024-09-01T06:45:28.454Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1gytgk7v13x", + "host": "rum.hlx.page", + "time": "2024-09-02T13:19:49.095Z", + "timeSlot": "2024-09-02T13:19:49.095Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vx1pbti5faq", + "host": "rum.hlx.page", + "time": "2024-09-01T00:06:52.599Z", + "timeSlot": "2024-09-01T00:06:52.599Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "due06w06det", + "host": "rum.hlx.page", + "time": "2024-09-02T03:24:00.820Z", + "timeSlot": "2024-09-02T03:24:00.820Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "4te8szaxymv", + "host": "rum.hlx.page", + "time": "2024-09-01T13:37:11.101Z", + "timeSlot": "2024-09-01T13:37:11.101Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wkql04y9one", + "host": "rum.hlx.page", + "time": "2024-09-02T04:24:11.758Z", + "timeSlot": "2024-09-02T04:24:11.758Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "cqzhxexqiup", + "host": "rum.hlx.page", + "time": "2024-08-31T22:13:11.217Z", + "timeSlot": "2024-08-31T22:13:11.217Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "en9fm1xy09i", + "host": "rum.hlx.page", + "time": "2024-08-31T06:50:51.343Z", + "timeSlot": "2024-08-31T06:50:51.343Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xl81jogh2b", + "host": "rum.hlx.page", + "time": "2024-09-01T19:40:45.419Z", + "timeSlot": "2024-09-01T19:40:45.419Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "phgsj4qsm98", + "host": "rum.hlx.page", + "time": "2024-09-02T05:35:44.762Z", + "timeSlot": "2024-09-02T05:35:44.762Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bckew25aww4", + "host": "rum.hlx.page", + "time": "2024-08-30T17:23:56.277Z", + "timeSlot": "2024-08-30T17:23:56.277Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5e0217lsgl8", + "host": "rum.hlx.page", + "time": "2024-08-31T18:05:27.894Z", + "timeSlot": "2024-08-31T18:05:27.894Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8logd0j7aj", + "host": "rum.hlx.page", + "time": "2024-08-31T21:24:10.845Z", + "timeSlot": "2024-08-31T21:24:10.845Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "i36iue4y54", + "host": "rum.hlx.page", + "time": "2024-08-31T14:00:19.625Z", + "timeSlot": "2024-08-31T14:00:19.625Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ijp91xei577", + "host": "rum.hlx.page", + "time": "2024-09-01T08:50:15.408Z", + "timeSlot": "2024-09-01T08:50:15.408Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w3qkp6b21", + "host": "rum.hlx.page", + "time": "2024-08-31T16:26:39.447Z", + "timeSlot": "2024-08-31T16:26:39.447Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8dwrvb0yv7k", + "host": "rum.hlx.page", + "time": "2024-09-02T11:16:43.560Z", + "timeSlot": "2024-09-02T11:16:43.560Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dmzgl8wbt5", + "host": "rum.hlx.page", + "time": "2024-08-31T03:51:21.813Z", + "timeSlot": "2024-08-31T03:51:21.813Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zp4xb8otq2", + "host": "rum.hlx.page", + "time": "2024-09-01T13:02:01.645Z", + "timeSlot": "2024-09-01T13:02:01.645Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4qfptprjhnn", + "host": "rum.hlx.page", + "time": "2024-08-30T21:51:53.790Z", + "timeSlot": "2024-08-30T21:51:53.790Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wlos6luedur", + "host": "rum.hlx.page", + "time": "2024-09-01T01:40:48.507Z", + "timeSlot": "2024-09-01T01:40:48.507Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8c1uhpubnja", + "host": "rum.hlx.page", + "time": "2024-09-01T03:56:30.416Z", + "timeSlot": "2024-09-01T03:56:30.416Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "3tzq70irt79", + "host": "rum.hlx.page", + "time": "2024-09-01T17:04:12.918Z", + "timeSlot": "2024-09-01T17:04:12.918Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "02pvhwygotoz", + "host": "rum.hlx.page", + "time": "2024-08-31T15:25:31.289Z", + "timeSlot": "2024-08-31T15:25:31.289Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "uyhnu8nwgdj", + "host": "rum.hlx.page", + "time": "2024-09-02T10:39:02.529Z", + "timeSlot": "2024-09-02T10:39:02.529Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "caipnygp0r4", + "host": "rum.hlx.page", + "time": "2024-08-30T16:38:15.961Z", + "timeSlot": "2024-08-30T16:38:15.961Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0ih332a0o6cs", + "host": "rum.hlx.page", + "time": "2024-08-30T20:03:36.642Z", + "timeSlot": "2024-08-30T20:03:36.642Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vi0opjztjk", + "host": "rum.hlx.page", + "time": "2024-09-01T11:15:18.904Z", + "timeSlot": "2024-09-01T11:15:18.904Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q0kksocwq7", + "host": "rum.hlx.page", + "time": "2024-08-31T20:49:01.064Z", + "timeSlot": "2024-08-31T20:49:01.064Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "shr7ipfwwi", + "host": "rum.hlx.page", + "time": "2024-09-01T01:48:06.489Z", + "timeSlot": "2024-09-01T01:48:06.489Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ko0ucgwzwu", + "host": "rum.hlx.page", + "time": "2024-08-31T20:15:42.173Z", + "timeSlot": "2024-08-31T20:15:42.173Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7wx9lxzjhwb", + "host": "rum.hlx.page", + "time": "2024-09-01T06:33:05.243Z", + "timeSlot": "2024-09-01T06:33:05.243Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uegjkxzfzan", + "host": "rum.hlx.page", + "time": "2024-09-02T12:11:19.762Z", + "timeSlot": "2024-09-02T12:11:19.762Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fizltapo7kl", + "host": "rum.hlx.page", + "time": "2024-08-31T08:21:05.913Z", + "timeSlot": "2024-08-31T08:21:05.913Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "zv8z3oxfg1", + "host": "rum.hlx.page", + "time": "2024-08-31T16:20:32.104Z", + "timeSlot": "2024-08-31T16:20:32.104Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "l43u16luslq", + "host": "rum.hlx.page", + "time": "2024-08-30T18:26:10.117Z", + "timeSlot": "2024-08-30T18:26:10.117Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dngtpeg6alu", + "host": "rum.hlx.page", + "time": "2024-09-01T14:39:39.602Z", + "timeSlot": "2024-09-01T14:39:39.602Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "jwae0y4grx", + "host": "rum.hlx.page", + "time": "2024-09-01T09:36:53.127Z", + "timeSlot": "2024-09-01T09:36:53.127Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jxqiq6uji8", + "host": "rum.hlx.page", + "time": "2024-09-01T02:30:29.158Z", + "timeSlot": "2024-09-01T02:30:29.158Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r31hkgink2l", + "host": "rum.hlx.page", + "time": "2024-09-01T18:19:00.380Z", + "timeSlot": "2024-09-01T18:19:00.380Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "mn0r6p4kq8g", + "host": "rum.hlx.page", + "time": "2024-09-01T14:09:57.229Z", + "timeSlot": "2024-09-01T14:09:57.229Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qr8p9jh2vns", + "host": "rum.hlx.page", + "time": "2024-08-31T12:51:05.885Z", + "timeSlot": "2024-08-31T12:51:05.885Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ma5t59dn0fk", + "host": "rum.hlx.page", + "time": "2024-08-31T20:38:51.419Z", + "timeSlot": "2024-08-31T20:38:51.419Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7rcskltkd5a", + "host": "rum.hlx.page", + "time": "2024-09-01T00:45:26.043Z", + "timeSlot": "2024-09-01T00:45:26.043Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hzaf1kp8sy6", + "host": "rum.hlx.page", + "time": "2024-09-01T08:30:00.187Z", + "timeSlot": "2024-09-01T08:30:00.187Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pp0vm4nzrzf", + "host": "rum.hlx.page", + "time": "2024-09-02T14:51:23.244Z", + "timeSlot": "2024-09-02T14:51:23.244Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ktpieh6g36f", + "host": "rum.hlx.page", + "time": "2024-08-31T13:08:45.762Z", + "timeSlot": "2024-08-31T13:08:45.762Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "53m69ji9tk2", + "host": "rum.hlx.page", + "time": "2024-08-31T14:54:53.317Z", + "timeSlot": "2024-08-31T14:54:53.317Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ppdl0mbubc", + "host": "rum.hlx.page", + "time": "2024-08-30T21:46:40.157Z", + "timeSlot": "2024-08-30T21:46:40.157Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "u4xf0zdbuqm", + "host": "rum.hlx.page", + "time": "2024-08-31T21:25:11.995Z", + "timeSlot": "2024-08-31T21:25:11.995Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g7s2itiru8u", + "host": "rum.hlx.page", + "time": "2024-08-31T18:21:18.434Z", + "timeSlot": "2024-08-31T18:21:18.434Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bqet9qdf1gm", + "host": "rum.hlx.page", + "time": "2024-08-31T23:25:13.906Z", + "timeSlot": "2024-08-31T23:25:13.906Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "q1m3x6rmmg", + "host": "rum.hlx.page", + "time": "2024-08-31T20:30:41.717Z", + "timeSlot": "2024-08-31T20:30:41.717Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "frw8i3jenoh", + "host": "rum.hlx.page", + "time": "2024-08-31T23:13:08.852Z", + "timeSlot": "2024-08-31T23:13:08.852Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8ab5l42tczc", + "host": "rum.hlx.page", + "time": "2024-09-01T12:47:04.738Z", + "timeSlot": "2024-09-01T12:47:04.738Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "j64oxreukg", + "host": "rum.hlx.page", + "time": "2024-09-02T00:03:48.681Z", + "timeSlot": "2024-09-02T00:03:48.681Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0burhu05vzk5", + "host": "rum.hlx.page", + "time": "2024-09-01T21:54:31.654Z", + "timeSlot": "2024-09-01T21:54:31.654Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yb1ikjz8rz", + "host": "rum.hlx.page", + "time": "2024-09-02T00:59:25.786Z", + "timeSlot": "2024-09-02T00:59:25.786Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "6h28nnd4y5p", + "host": "rum.hlx.page", + "time": "2024-08-31T13:43:25.063Z", + "timeSlot": "2024-08-31T13:43:25.063Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w6ou0ysoojg", + "host": "rum.hlx.page", + "time": "2024-09-01T03:22:33.713Z", + "timeSlot": "2024-09-01T03:22:33.713Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "p0a862deau", + "host": "rum.hlx.page", + "time": "2024-09-02T11:50:01.424Z", + "timeSlot": "2024-09-02T11:50:01.424Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "zfs0z7ls7bl", + "host": "rum.hlx.page", + "time": "2024-08-30T21:42:51.387Z", + "timeSlot": "2024-08-30T21:42:51.387Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "emo35dbg7jh", + "host": "rum.hlx.page", + "time": "2024-09-01T22:52:43.926Z", + "timeSlot": "2024-09-01T22:52:43.926Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tyel159fdcf", + "host": "rum.hlx.page", + "time": "2024-08-31T07:03:27.481Z", + "timeSlot": "2024-08-31T07:03:27.481Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "8flsx7nnsr8", + "host": "rum.hlx.page", + "time": "2024-09-02T12:17:27.442Z", + "timeSlot": "2024-09-02T12:17:27.442Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "amm82cudkzv", + "host": "rum.hlx.page", + "time": "2024-09-01T14:17:40.802Z", + "timeSlot": "2024-09-01T14:17:40.802Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dgvlrkwdq3g", + "host": "rum.hlx.page", + "time": "2024-08-30T22:55:02.442Z", + "timeSlot": "2024-08-30T22:55:02.442Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "yzd4ugflhan", + "host": "rum.hlx.page", + "time": "2024-09-02T05:31:40.551Z", + "timeSlot": "2024-09-02T05:31:40.551Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uz1hkiixfkb", + "host": "rum.hlx.page", + "time": "2024-08-30T19:59:10.928Z", + "timeSlot": "2024-08-30T19:59:10.928Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6vhnifrol6", + "host": "rum.hlx.page", + "time": "2024-09-01T17:36:46.826Z", + "timeSlot": "2024-09-01T17:36:46.826Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "k68r15j52sr", + "host": "rum.hlx.page", + "time": "2024-08-31T22:05:01.309Z", + "timeSlot": "2024-08-31T22:05:01.309Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y11rcg0bzsn", + "host": "rum.hlx.page", + "time": "2024-09-01T08:43:32.274Z", + "timeSlot": "2024-09-01T08:43:32.274Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "g3fnlcfmdy", + "host": "rum.hlx.page", + "time": "2024-08-31T02:04:01.867Z", + "timeSlot": "2024-08-31T02:04:01.867Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "c8st9zr4zgl", + "host": "rum.hlx.page", + "time": "2024-08-30T18:09:23.405Z", + "timeSlot": "2024-08-30T18:09:23.405Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5k79lg9vm3n", + "host": "rum.hlx.page", + "time": "2024-08-31T03:15:34.515Z", + "timeSlot": "2024-08-31T03:15:34.515Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "epp16af11ch", + "host": "rum.hlx.page", + "time": "2024-08-30T21:13:16.932Z", + "timeSlot": "2024-08-30T21:13:16.932Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "arh0idwz3s7", + "host": "rum.hlx.page", + "time": "2024-08-31T18:03:40.698Z", + "timeSlot": "2024-08-31T18:03:40.698Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6zrjxxlo71b", + "host": "rum.hlx.page", + "time": "2024-08-30T15:28:59.931Z", + "timeSlot": "2024-08-30T15:28:59.931Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "o2winvnvy8a", + "host": "rum.hlx.page", + "time": "2024-09-01T23:54:27.046Z", + "timeSlot": "2024-09-01T23:54:27.046Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p3tja5wse4o", + "host": "rum.hlx.page", + "time": "2024-08-30T19:19:59.193Z", + "timeSlot": "2024-08-30T19:19:59.193Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pyowhq4gs5", + "host": "rum.hlx.page", + "time": "2024-08-31T06:51:24.868Z", + "timeSlot": "2024-08-31T06:51:24.868Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "itpjafj1gs", + "host": "rum.hlx.page", + "time": "2024-08-31T07:10:48.073Z", + "timeSlot": "2024-08-31T07:10:48.073Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "mia49uexbvf", + "host": "rum.hlx.page", + "time": "2024-08-31T20:46:00.434Z", + "timeSlot": "2024-08-31T20:46:00.434Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lai739vrg9a", + "host": "rum.hlx.page", + "time": "2024-08-31T12:38:26.153Z", + "timeSlot": "2024-08-31T12:38:26.153Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "o34itsdyj8o", + "host": "rum.hlx.page", + "time": "2024-09-02T03:23:03.626Z", + "timeSlot": "2024-09-02T03:23:03.626Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "m5gyli9t7t", + "host": "rum.hlx.page", + "time": "2024-09-02T04:15:17.429Z", + "timeSlot": "2024-09-02T04:15:17.429Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vsltpw0tlnl", + "host": "rum.hlx.page", + "time": "2024-09-02T08:06:33.386Z", + "timeSlot": "2024-09-02T08:06:33.386Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vlw7cnvp17m", + "host": "rum.hlx.page", + "time": "2024-09-02T06:22:03.663Z", + "timeSlot": "2024-09-02T06:22:03.663Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "t078llxrngi", + "host": "rum.hlx.page", + "time": "2024-09-01T19:08:51.250Z", + "timeSlot": "2024-09-01T19:08:51.250Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nm612p88uwb", + "host": "rum.hlx.page", + "time": "2024-08-30T22:44:49.198Z", + "timeSlot": "2024-08-30T22:44:49.198Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "9rv9k11oh6u", + "host": "rum.hlx.page", + "time": "2024-08-31T17:50:55.152Z", + "timeSlot": "2024-08-31T17:50:55.152Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nyukgfz9o0m", + "host": "rum.hlx.page", + "time": "2024-08-30T21:39:37.142Z", + "timeSlot": "2024-08-30T21:39:37.142Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "02jlz7i9jfnc", + "host": "rum.hlx.page", + "time": "2024-08-31T23:26:26.280Z", + "timeSlot": "2024-08-31T23:26:26.280Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5ngerb0883x", + "host": "rum.hlx.page", + "time": "2024-08-31T14:41:47.035Z", + "timeSlot": "2024-08-31T14:41:47.035Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "na051ypkl2g", + "host": "rum.hlx.page", + "time": "2024-08-31T15:35:36.456Z", + "timeSlot": "2024-08-31T15:35:36.456Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vusjyvzdohd", + "host": "rum.hlx.page", + "time": "2024-08-30T22:57:35.016Z", + "timeSlot": "2024-08-30T22:57:35.016Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "safsg7gbxme", + "host": "rum.hlx.page", + "time": "2024-09-01T11:57:17.046Z", + "timeSlot": "2024-09-01T11:57:17.046Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "40t9o4stg31", + "host": "rum.hlx.page", + "time": "2024-08-30T17:39:03.426Z", + "timeSlot": "2024-08-30T17:39:03.426Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5tusw6wxgtc", + "host": "rum.hlx.page", + "time": "2024-08-31T13:52:58.409Z", + "timeSlot": "2024-08-31T13:52:58.409Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v4x3zhczzw", + "host": "rum.hlx.page", + "time": "2024-08-31T11:07:16.451Z", + "timeSlot": "2024-08-31T11:07:16.451Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "balpfrms6vu", + "host": "rum.hlx.page", + "time": "2024-09-01T16:38:05.006Z", + "timeSlot": "2024-09-01T16:38:05.006Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vi8fc6izze", + "host": "rum.hlx.page", + "time": "2024-08-31T12:52:15.338Z", + "timeSlot": "2024-08-31T12:52:15.338Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "woyewtbmnvi", + "host": "rum.hlx.page", + "time": "2024-09-01T02:59:27.819Z", + "timeSlot": "2024-09-01T02:59:27.819Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qpozqdtk0z", + "host": "rum.hlx.page", + "time": "2024-09-01T03:32:36.370Z", + "timeSlot": "2024-09-01T03:32:36.370Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h4abmfhpq8", + "host": "rum.hlx.page", + "time": "2024-09-02T13:12:19.039Z", + "timeSlot": "2024-09-02T13:12:19.039Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9x08p7ev0k6", + "host": "rum.hlx.page", + "time": "2024-09-01T11:00:43.175Z", + "timeSlot": "2024-09-01T11:00:43.175Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "a66bzm6slif", + "host": "rum.hlx.page", + "time": "2024-08-31T17:37:05.767Z", + "timeSlot": "2024-08-31T17:37:05.767Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x2utv7xptd9", + "host": "rum.hlx.page", + "time": "2024-09-02T09:44:32.497Z", + "timeSlot": "2024-09-02T09:44:32.497Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qehgbhu42x", + "host": "rum.hlx.page", + "time": "2024-09-01T21:35:26.389Z", + "timeSlot": "2024-09-01T21:35:26.389Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "s6h8y7kzv2", + "host": "rum.hlx.page", + "time": "2024-09-02T09:48:50.099Z", + "timeSlot": "2024-09-02T09:48:50.099Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5t9rqzprwye", + "host": "rum.hlx.page", + "time": "2024-08-30T16:21:15.402Z", + "timeSlot": "2024-08-30T16:21:15.402Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vmy58deths", + "host": "rum.hlx.page", + "time": "2024-09-02T01:22:06.846Z", + "timeSlot": "2024-09-02T01:22:06.846Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "4l2sg6hncr6", + "host": "rum.hlx.page", + "time": "2024-08-31T11:05:06.296Z", + "timeSlot": "2024-08-31T11:05:06.296Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y53g1frb2mt", + "host": "rum.hlx.page", + "time": "2024-08-31T06:28:58.921Z", + "timeSlot": "2024-08-31T06:28:58.921Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "prwmi1woy08", + "host": "rum.hlx.page", + "time": "2024-09-02T04:55:48.707Z", + "timeSlot": "2024-09-02T04:55:48.707Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8zdvmtoljrg", + "host": "rum.hlx.page", + "time": "2024-09-02T08:50:13.536Z", + "timeSlot": "2024-09-02T08:50:13.536Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lca4eaz32a", + "host": "rum.hlx.page", + "time": "2024-09-01T04:37:24.016Z", + "timeSlot": "2024-09-01T04:37:24.016Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "s6eot5i3v79", + "host": "rum.hlx.page", + "time": "2024-08-31T05:48:19.333Z", + "timeSlot": "2024-08-31T05:48:19.333Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "t7ts1h4zw7o", + "host": "rum.hlx.page", + "time": "2024-08-31T10:46:56.537Z", + "timeSlot": "2024-08-31T10:46:56.537Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gjztkxxbkcd", + "host": "rum.hlx.page", + "time": "2024-09-01T11:23:38.171Z", + "timeSlot": "2024-09-01T11:23:38.171Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a8zgrou0gk9", + "host": "rum.hlx.page", + "time": "2024-09-02T04:00:17.569Z", + "timeSlot": "2024-09-02T04:00:17.569Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dytodl90ell", + "host": "rum.hlx.page", + "time": "2024-09-01T22:42:43.367Z", + "timeSlot": "2024-09-01T22:42:43.367Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q6i0ce41p", + "host": "rum.hlx.page", + "time": "2024-09-01T02:52:00.301Z", + "timeSlot": "2024-09-01T02:52:00.301Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "j9ccj9ro4r", + "host": "rum.hlx.page", + "time": "2024-09-01T14:34:18.966Z", + "timeSlot": "2024-09-01T14:34:18.966Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "e4zoudv9i6s", + "host": "rum.hlx.page", + "time": "2024-09-02T08:49:55.552Z", + "timeSlot": "2024-09-02T08:49:55.552Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "s4qb629m5qh", + "host": "rum.hlx.page", + "time": "2024-09-01T01:11:51.440Z", + "timeSlot": "2024-09-01T01:11:51.440Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "8vlza7prawn", + "host": "rum.hlx.page", + "time": "2024-08-31T00:06:33.970Z", + "timeSlot": "2024-08-31T00:06:33.970Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "51qe3chhdua", + "host": "rum.hlx.page", + "time": "2024-09-01T15:54:37.334Z", + "timeSlot": "2024-09-01T15:54:37.334Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zpvt00w1ts", + "host": "rum.hlx.page", + "time": "2024-08-30T19:37:24.692Z", + "timeSlot": "2024-08-30T19:37:24.692Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8o2cj71i86n", + "host": "rum.hlx.page", + "time": "2024-09-01T22:50:34.381Z", + "timeSlot": "2024-09-01T22:50:34.381Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dda6wrj361o", + "host": "rum.hlx.page", + "time": "2024-09-02T06:30:58.340Z", + "timeSlot": "2024-09-02T06:30:58.340Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6tgy1jww4p", + "host": "rum.hlx.page", + "time": "2024-09-01T20:32:02.871Z", + "timeSlot": "2024-09-01T20:32:02.871Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "i8awufzhnv9", + "host": "rum.hlx.page", + "time": "2024-09-01T13:55:15.086Z", + "timeSlot": "2024-09-01T13:55:15.086Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7i1texni46f", + "host": "rum.hlx.page", + "time": "2024-08-31T02:01:02.096Z", + "timeSlot": "2024-08-31T02:01:02.096Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ln6nsdx6ixa", + "host": "rum.hlx.page", + "time": "2024-09-01T11:47:28.089Z", + "timeSlot": "2024-09-01T11:47:28.089Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ml76vsmgocb", + "host": "rum.hlx.page", + "time": "2024-08-31T20:05:04.190Z", + "timeSlot": "2024-08-31T20:05:04.190Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "apdz63mvrdr", + "host": "rum.hlx.page", + "time": "2024-08-31T00:52:17.225Z", + "timeSlot": "2024-08-31T00:52:17.225Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0jtwg6p30fi", + "host": "rum.hlx.page", + "time": "2024-09-01T00:50:53.079Z", + "timeSlot": "2024-09-01T00:50:53.079Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2k2g8tzuffo", + "host": "rum.hlx.page", + "time": "2024-08-31T18:11:33.430Z", + "timeSlot": "2024-08-31T18:11:33.430Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "aecy4x73xgr", + "host": "rum.hlx.page", + "time": "2024-09-01T19:13:00.101Z", + "timeSlot": "2024-09-01T19:13:00.101Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "f50cg3hrn0f", + "host": "rum.hlx.page", + "time": "2024-08-31T01:14:57.408Z", + "timeSlot": "2024-08-31T01:14:57.408Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0jsz96syh0kn", + "host": "rum.hlx.page", + "time": "2024-09-01T09:36:01.721Z", + "timeSlot": "2024-09-01T09:36:01.721Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "aa1kyugkpzf", + "host": "rum.hlx.page", + "time": "2024-08-31T04:00:55.079Z", + "timeSlot": "2024-08-31T04:00:55.079Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6jgj5uks8l7", + "host": "rum.hlx.page", + "time": "2024-09-02T05:15:57.821Z", + "timeSlot": "2024-09-02T05:15:57.821Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q3qmviwu04", + "host": "rum.hlx.page", + "time": "2024-08-31T22:20:49.422Z", + "timeSlot": "2024-08-31T22:20:49.422Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "9nfl94662c", + "host": "rum.hlx.page", + "time": "2024-08-31T02:42:01.499Z", + "timeSlot": "2024-08-31T02:42:01.499Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jkc8y4kdtni", + "host": "rum.hlx.page", + "time": "2024-09-01T17:38:39.828Z", + "timeSlot": "2024-09-01T17:38:39.828Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u4rniixmovs", + "host": "rum.hlx.page", + "time": "2024-08-30T15:45:49.709Z", + "timeSlot": "2024-08-30T15:45:49.709Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "w3hu39r398", + "host": "rum.hlx.page", + "time": "2024-09-02T11:36:52.557Z", + "timeSlot": "2024-09-02T11:36:52.557Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rss2dywmqfj", + "host": "rum.hlx.page", + "time": "2024-09-01T08:42:20.284Z", + "timeSlot": "2024-09-01T08:42:20.284Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "rmtuunzhq7g", + "host": "rum.hlx.page", + "time": "2024-08-30T17:04:22.386Z", + "timeSlot": "2024-08-30T17:04:22.386Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "qf0aajeflmq", + "host": "rum.hlx.page", + "time": "2024-08-31T21:35:01.642Z", + "timeSlot": "2024-08-31T21:35:01.642Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qiiahvs7gn", + "host": "rum.hlx.page", + "time": "2024-09-01T12:01:41.012Z", + "timeSlot": "2024-09-01T12:01:41.012Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t9qzfpmjpaj", + "host": "rum.hlx.page", + "time": "2024-08-31T06:47:09.627Z", + "timeSlot": "2024-08-31T06:47:09.627Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "w9oyda8rb6r", + "host": "rum.hlx.page", + "time": "2024-08-31T14:59:44.964Z", + "timeSlot": "2024-08-31T14:59:44.964Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fyzerkhc7o", + "host": "rum.hlx.page", + "time": "2024-09-01T00:18:41.899Z", + "timeSlot": "2024-09-01T00:18:41.899Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "3fj3vuay4fa", + "host": "rum.hlx.page", + "time": "2024-09-01T12:11:48.358Z", + "timeSlot": "2024-09-01T12:11:48.358Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "hx8cjqxybh4", + "host": "rum.hlx.page", + "time": "2024-09-01T01:31:43.852Z", + "timeSlot": "2024-09-01T01:31:43.852Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s007ta3abw", + "host": "rum.hlx.page", + "time": "2024-09-02T01:04:43.504Z", + "timeSlot": "2024-09-02T01:04:43.504Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z9j8jis3ie", + "host": "rum.hlx.page", + "time": "2024-08-31T18:14:52.816Z", + "timeSlot": "2024-08-31T18:14:52.816Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "atc95x8es5e", + "host": "rum.hlx.page", + "time": "2024-09-01T20:51:55.980Z", + "timeSlot": "2024-09-01T20:51:55.980Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "92s5sqkby75", + "host": "rum.hlx.page", + "time": "2024-09-01T23:28:22.047Z", + "timeSlot": "2024-09-01T23:28:22.047Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ah8rbkhg48h", + "host": "rum.hlx.page", + "time": "2024-09-01T03:53:36.994Z", + "timeSlot": "2024-09-01T03:53:36.994Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "1fshodp6vgw", + "host": "rum.hlx.page", + "time": "2024-08-30T22:30:07.357Z", + "timeSlot": "2024-08-30T22:30:07.357Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v2skq72dk4r", + "host": "rum.hlx.page", + "time": "2024-08-30T18:52:17.257Z", + "timeSlot": "2024-08-30T18:52:17.257Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jaz1zeyxw2", + "host": "rum.hlx.page", + "time": "2024-09-01T12:09:35.507Z", + "timeSlot": "2024-09-01T12:09:35.507Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "6pfixt543ht", + "host": "rum.hlx.page", + "time": "2024-09-01T09:40:54.164Z", + "timeSlot": "2024-09-01T09:40:54.164Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mryvowcpzk", + "host": "rum.hlx.page", + "time": "2024-09-01T20:42:55.917Z", + "timeSlot": "2024-09-01T20:42:55.917Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "3zwwwgevk1j", + "host": "rum.hlx.page", + "time": "2024-09-01T08:28:49.408Z", + "timeSlot": "2024-09-01T08:28:49.408Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "1teuw51rz7q", + "host": "rum.hlx.page", + "time": "2024-08-30T20:48:15.303Z", + "timeSlot": "2024-08-30T20:48:15.303Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s0xp1wrjl8", + "host": "rum.hlx.page", + "time": "2024-09-01T22:32:03.378Z", + "timeSlot": "2024-09-01T22:32:03.378Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y77rlpj243", + "host": "rum.hlx.page", + "time": "2024-08-30T17:16:55.026Z", + "timeSlot": "2024-08-30T17:16:55.026Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "kr1jkfpzsu", + "host": "rum.hlx.page", + "time": "2024-09-02T11:36:32.964Z", + "timeSlot": "2024-09-02T11:36:32.964Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "60xe8g5ow65", + "host": "rum.hlx.page", + "time": "2024-08-30T16:09:08.834Z", + "timeSlot": "2024-08-30T16:09:08.834Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "emc8fttpz", + "host": "rum.hlx.page", + "time": "2024-08-31T12:12:18.967Z", + "timeSlot": "2024-08-31T12:12:18.967Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "4elxvsl3tou", + "host": "rum.hlx.page", + "time": "2024-08-31T13:10:56.506Z", + "timeSlot": "2024-08-31T13:10:56.506Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dpg6zsto755", + "host": "rum.hlx.page", + "time": "2024-09-01T20:37:30.442Z", + "timeSlot": "2024-09-01T20:37:30.442Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nzf9l3pygqj", + "host": "rum.hlx.page", + "time": "2024-08-31T19:31:41.892Z", + "timeSlot": "2024-08-31T19:31:41.892Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ror7cju6j9l", + "host": "rum.hlx.page", + "time": "2024-09-02T12:12:02.976Z", + "timeSlot": "2024-09-02T12:12:02.976Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xzvmopw69k", + "host": "rum.hlx.page", + "time": "2024-09-01T14:12:24.739Z", + "timeSlot": "2024-09-01T14:12:24.739Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "da475mru4xq", + "host": "rum.hlx.page", + "time": "2024-08-31T18:05:51.323Z", + "timeSlot": "2024-08-31T18:05:51.323Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "s03gyj6u9n", + "host": "rum.hlx.page", + "time": "2024-08-30T19:51:35.510Z", + "timeSlot": "2024-08-30T19:51:35.510Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ou793l8m0dr", + "host": "rum.hlx.page", + "time": "2024-08-31T22:27:07.529Z", + "timeSlot": "2024-08-31T22:27:07.529Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uw07ia0n33m", + "host": "rum.hlx.page", + "time": "2024-08-31T05:50:21.544Z", + "timeSlot": "2024-08-31T05:50:21.544Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "q5mm0z0hyaq", + "host": "rum.hlx.page", + "time": "2024-08-31T14:09:43.495Z", + "timeSlot": "2024-08-31T14:09:43.495Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "87n2gu0nz1e", + "host": "rum.hlx.page", + "time": "2024-08-30T23:24:42.840Z", + "timeSlot": "2024-08-30T23:24:42.840Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wi0p779j15", + "host": "rum.hlx.page", + "time": "2024-09-01T11:00:33.228Z", + "timeSlot": "2024-09-01T11:00:33.228Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "tfphhb2itk", + "host": "rum.hlx.page", + "time": "2024-09-01T14:54:14.454Z", + "timeSlot": "2024-09-01T14:54:14.454Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "b56o6dusv9", + "host": "rum.hlx.page", + "time": "2024-08-30T15:49:10.085Z", + "timeSlot": "2024-08-30T15:49:10.085Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4zeiqdb7skr", + "host": "rum.hlx.page", + "time": "2024-08-30T18:26:24.339Z", + "timeSlot": "2024-08-30T18:26:24.339Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1yt213w9k05", + "host": "rum.hlx.page", + "time": "2024-08-31T22:42:02.348Z", + "timeSlot": "2024-08-31T22:42:02.348Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "evkccvm8riq", + "host": "rum.hlx.page", + "time": "2024-09-02T13:50:20.442Z", + "timeSlot": "2024-09-02T13:50:20.442Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ynvtwsaj5mi", + "host": "rum.hlx.page", + "time": "2024-08-31T20:42:31.745Z", + "timeSlot": "2024-08-31T20:42:31.745Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ye1mo080teo", + "host": "rum.hlx.page", + "time": "2024-09-01T21:45:49.115Z", + "timeSlot": "2024-09-01T21:45:49.115Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tefeertt8nm", + "host": "rum.hlx.page", + "time": "2024-08-31T06:39:32.848Z", + "timeSlot": "2024-08-31T06:39:32.848Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ugkthyy5t8o", + "host": "rum.hlx.page", + "time": "2024-08-31T23:31:58.541Z", + "timeSlot": "2024-08-31T23:31:58.541Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "p4mjad336i", + "host": "rum.hlx.page", + "time": "2024-08-31T08:29:49.503Z", + "timeSlot": "2024-08-31T08:29:49.503Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3b6uck4fja", + "host": "rum.hlx.page", + "time": "2024-08-31T03:44:00.233Z", + "timeSlot": "2024-08-31T03:44:00.233Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "re0syk97mki", + "host": "rum.hlx.page", + "time": "2024-09-01T13:12:06.074Z", + "timeSlot": "2024-09-01T13:12:06.074Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "x0d1f6li4c", + "host": "rum.hlx.page", + "time": "2024-08-31T08:25:22.688Z", + "timeSlot": "2024-08-31T08:25:22.688Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2odcmsx0ff9", + "host": "rum.hlx.page", + "time": "2024-09-01T04:24:34.047Z", + "timeSlot": "2024-09-01T04:24:34.047Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3a5kvsyfat3", + "host": "rum.hlx.page", + "time": "2024-09-01T18:34:07.951Z", + "timeSlot": "2024-09-01T18:34:07.951Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "qv5azvmumgc", + "host": "rum.hlx.page", + "time": "2024-09-01T15:04:54.601Z", + "timeSlot": "2024-09-01T15:04:54.601Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "d3fwhxtn57u", + "host": "rum.hlx.page", + "time": "2024-08-31T22:29:36.248Z", + "timeSlot": "2024-08-31T22:29:36.248Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ptnkiids0q", + "host": "rum.hlx.page", + "time": "2024-08-31T09:08:53.366Z", + "timeSlot": "2024-08-31T09:08:53.366Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "vzk6u5ninvm", + "host": "rum.hlx.page", + "time": "2024-08-30T18:48:54.728Z", + "timeSlot": "2024-08-30T18:48:54.728Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "px4ur8jktyd", + "host": "rum.hlx.page", + "time": "2024-08-31T08:27:48.794Z", + "timeSlot": "2024-08-31T08:27:48.794Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5rzcmbdjctf", + "host": "rum.hlx.page", + "time": "2024-09-01T10:12:13.638Z", + "timeSlot": "2024-09-01T10:12:13.638Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3rzalzlczi6", + "host": "rum.hlx.page", + "time": "2024-08-31T08:04:16.532Z", + "timeSlot": "2024-08-31T08:04:16.532Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r1e0zccp6ee", + "host": "rum.hlx.page", + "time": "2024-09-02T03:04:49.568Z", + "timeSlot": "2024-09-02T03:04:49.568Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "u7mc9o7zq59", + "host": "rum.hlx.page", + "time": "2024-09-02T14:53:00.855Z", + "timeSlot": "2024-09-02T14:53:00.855Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "41z6wbpeiol", + "host": "rum.hlx.page", + "time": "2024-09-02T03:17:21.214Z", + "timeSlot": "2024-09-02T03:17:21.214Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "i6eb1uk8fym", + "host": "rum.hlx.page", + "time": "2024-09-02T12:01:12.772Z", + "timeSlot": "2024-09-02T12:01:12.772Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "a3d30d6scsf", + "host": "rum.hlx.page", + "time": "2024-08-30T21:31:30.223Z", + "timeSlot": "2024-08-30T21:31:30.223Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bp77mwqaknj", + "host": "rum.hlx.page", + "time": "2024-09-01T22:02:39.182Z", + "timeSlot": "2024-09-01T22:02:39.182Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fvfsnb94e5", + "host": "rum.hlx.page", + "time": "2024-09-01T19:06:52.024Z", + "timeSlot": "2024-09-01T19:06:52.024Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vdom7mwmi4g", + "host": "rum.hlx.page", + "time": "2024-08-31T10:21:07.410Z", + "timeSlot": "2024-08-31T10:21:07.410Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ncq6kqlkavp", + "host": "rum.hlx.page", + "time": "2024-09-01T22:32:49.677Z", + "timeSlot": "2024-09-01T22:32:49.677Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gumwz16ib4", + "host": "rum.hlx.page", + "time": "2024-08-31T08:16:29.346Z", + "timeSlot": "2024-08-31T08:16:29.346Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "n95cdh4l4rb", + "host": "rum.hlx.page", + "time": "2024-08-30T23:45:38.811Z", + "timeSlot": "2024-08-30T23:45:38.811Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7jv5jgzr3ox", + "host": "rum.hlx.page", + "time": "2024-09-01T08:22:27.999Z", + "timeSlot": "2024-09-01T08:22:27.999Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xvq0eh6cxh", + "host": "rum.hlx.page", + "time": "2024-08-31T00:57:48.828Z", + "timeSlot": "2024-08-31T00:57:48.828Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sa07rcbyj6i", + "host": "rum.hlx.page", + "time": "2024-09-02T04:03:06.704Z", + "timeSlot": "2024-09-02T04:03:06.704Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ghtboyq3jol", + "host": "rum.hlx.page", + "time": "2024-08-31T08:14:27.967Z", + "timeSlot": "2024-08-31T08:14:27.967Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "b1yium2w9f", + "host": "rum.hlx.page", + "time": "2024-09-02T04:03:34.066Z", + "timeSlot": "2024-09-02T04:03:34.066Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t8pmt680mxf", + "host": "rum.hlx.page", + "time": "2024-08-31T15:36:10.651Z", + "timeSlot": "2024-08-31T15:36:10.651Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xieklrhtz1q", + "host": "rum.hlx.page", + "time": "2024-09-01T20:52:10.687Z", + "timeSlot": "2024-09-01T20:52:10.687Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8eqgidyhny4", + "host": "rum.hlx.page", + "time": "2024-08-31T02:48:19.014Z", + "timeSlot": "2024-08-31T02:48:19.014Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "v5vwxbi11in", + "host": "rum.hlx.page", + "time": "2024-09-02T03:34:14.863Z", + "timeSlot": "2024-09-02T03:34:14.863Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tnikr28jcj", + "host": "rum.hlx.page", + "time": "2024-09-02T07:17:13.774Z", + "timeSlot": "2024-09-02T07:17:13.774Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nht1afi6s8p", + "host": "rum.hlx.page", + "time": "2024-08-31T17:12:24.440Z", + "timeSlot": "2024-08-31T17:12:24.440Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ma1jybehtrn", + "host": "rum.hlx.page", + "time": "2024-09-02T06:14:51.211Z", + "timeSlot": "2024-09-02T06:14:51.211Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "z6sp9pjt0s8", + "host": "rum.hlx.page", + "time": "2024-08-31T08:52:22.171Z", + "timeSlot": "2024-08-31T08:52:22.171Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xho7yr93mi", + "host": "rum.hlx.page", + "time": "2024-09-01T16:36:45.197Z", + "timeSlot": "2024-09-01T16:36:45.197Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1r2vpvuo3mr", + "host": "rum.hlx.page", + "time": "2024-09-01T04:55:09.918Z", + "timeSlot": "2024-09-01T04:55:09.918Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5yo2ip54tj", + "host": "rum.hlx.page", + "time": "2024-08-31T23:12:34.184Z", + "timeSlot": "2024-08-31T23:12:34.184Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6fqx2i96gnl", + "host": "rum.hlx.page", + "time": "2024-09-02T11:43:06.924Z", + "timeSlot": "2024-09-02T11:43:06.924Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "slo49uohgf9", + "host": "rum.hlx.page", + "time": "2024-09-01T19:42:10.764Z", + "timeSlot": "2024-09-01T19:42:10.764Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "fxc4lvb5gxm", + "host": "rum.hlx.page", + "time": "2024-08-30T20:04:36.788Z", + "timeSlot": "2024-08-30T20:04:36.788Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "0pcgrrw6hgy", + "host": "rum.hlx.page", + "time": "2024-08-30T17:04:44.529Z", + "timeSlot": "2024-08-30T17:04:44.529Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dbjdt4t3znq", + "host": "rum.hlx.page", + "time": "2024-08-31T10:04:54.225Z", + "timeSlot": "2024-08-31T10:04:54.225Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "lcer7aqvbla", + "host": "rum.hlx.page", + "time": "2024-08-31T02:48:22.246Z", + "timeSlot": "2024-08-31T02:48:22.246Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fms7nfc7kgf", + "host": "rum.hlx.page", + "time": "2024-09-01T07:23:22.912Z", + "timeSlot": "2024-09-01T07:23:22.912Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3mpzdyrpio4", + "host": "rum.hlx.page", + "time": "2024-09-01T03:00:23.371Z", + "timeSlot": "2024-09-01T03:00:23.371Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xb84h9j80z", + "host": "rum.hlx.page", + "time": "2024-08-31T02:29:28.570Z", + "timeSlot": "2024-08-31T02:29:28.570Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "eveop2g6m9n", + "host": "rum.hlx.page", + "time": "2024-09-01T22:22:28.517Z", + "timeSlot": "2024-09-01T22:22:28.517Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ynyeiztjjc", + "host": "rum.hlx.page", + "time": "2024-09-02T02:58:37.207Z", + "timeSlot": "2024-09-02T02:58:37.207Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "oofym9a2tf", + "host": "rum.hlx.page", + "time": "2024-09-02T11:57:45.144Z", + "timeSlot": "2024-09-02T11:57:45.144Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "n0o78v8jz3", + "host": "rum.hlx.page", + "time": "2024-09-01T21:17:24.200Z", + "timeSlot": "2024-09-01T21:17:24.200Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v4bvnruflq", + "host": "rum.hlx.page", + "time": "2024-08-31T07:04:36.214Z", + "timeSlot": "2024-08-31T07:04:36.214Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "7s1jwl0zfgu", + "host": "rum.hlx.page", + "time": "2024-08-30T18:17:02.204Z", + "timeSlot": "2024-08-30T18:17:02.204Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "32biuv7i6v4", + "host": "rum.hlx.page", + "time": "2024-09-02T00:31:04.242Z", + "timeSlot": "2024-09-02T00:31:04.242Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "jzis4b3zq39", + "host": "rum.hlx.page", + "time": "2024-08-31T11:36:25.246Z", + "timeSlot": "2024-08-31T11:36:25.246Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cdvxepv13ah", + "host": "rum.hlx.page", + "time": "2024-09-01T08:09:25.213Z", + "timeSlot": "2024-09-01T08:09:25.213Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hwqdnxqsyrm", + "host": "rum.hlx.page", + "time": "2024-09-02T08:53:09.993Z", + "timeSlot": "2024-09-02T08:53:09.993Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y922xa81buk", + "host": "rum.hlx.page", + "time": "2024-09-01T17:26:09.208Z", + "timeSlot": "2024-09-01T17:26:09.208Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "0b2fpn6pxuu", + "host": "rum.hlx.page", + "time": "2024-09-01T12:53:42.804Z", + "timeSlot": "2024-09-01T12:53:42.804Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "azrebi3kcxt", + "host": "rum.hlx.page", + "time": "2024-08-30T21:42:53.570Z", + "timeSlot": "2024-08-30T21:42:53.570Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ysv3c1g1s3h", + "host": "rum.hlx.page", + "time": "2024-08-30T20:42:19.089Z", + "timeSlot": "2024-08-30T20:42:19.089Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2u5qw6cog0m", + "host": "rum.hlx.page", + "time": "2024-09-02T10:57:58.672Z", + "timeSlot": "2024-09-02T10:57:58.672Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9nwt0dhu4yt", + "host": "rum.hlx.page", + "time": "2024-09-01T11:34:20.131Z", + "timeSlot": "2024-09-01T11:34:20.131Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "47dufgtbifa", + "host": "rum.hlx.page", + "time": "2024-09-02T09:13:55.606Z", + "timeSlot": "2024-09-02T09:13:55.606Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "yp0caa32s49", + "host": "rum.hlx.page", + "time": "2024-09-02T14:05:34.843Z", + "timeSlot": "2024-09-02T14:05:34.843Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "van8l3a41u8", + "host": "rum.hlx.page", + "time": "2024-09-01T11:23:11.443Z", + "timeSlot": "2024-09-01T11:23:11.443Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8edad5kegk4", + "host": "rum.hlx.page", + "time": "2024-09-01T22:42:17.594Z", + "timeSlot": "2024-09-01T22:42:17.594Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fe5a7479145", + "host": "rum.hlx.page", + "time": "2024-08-30T18:06:50.197Z", + "timeSlot": "2024-08-30T18:06:50.197Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vjhu2ex987", + "host": "rum.hlx.page", + "time": "2024-09-01T09:43:56.984Z", + "timeSlot": "2024-09-01T09:43:56.984Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nlccmwahska", + "host": "rum.hlx.page", + "time": "2024-08-31T02:01:44.103Z", + "timeSlot": "2024-08-31T02:01:44.103Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bjrko03aqv", + "host": "rum.hlx.page", + "time": "2024-09-01T00:22:26.979Z", + "timeSlot": "2024-09-01T00:22:26.979Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zx7ma8wv6bk", + "host": "rum.hlx.page", + "time": "2024-09-02T02:38:19.500Z", + "timeSlot": "2024-09-02T02:38:19.500Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mrr0bsucr4", + "host": "rum.hlx.page", + "time": "2024-08-30T22:25:08.976Z", + "timeSlot": "2024-08-30T22:25:08.976Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "492ry8pl43w", + "host": "rum.hlx.page", + "time": "2024-08-31T15:59:29.839Z", + "timeSlot": "2024-08-31T15:59:29.839Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k9bdgsiw20m", + "host": "rum.hlx.page", + "time": "2024-08-30T20:02:52.203Z", + "timeSlot": "2024-08-30T20:02:52.203Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ugkugxulta", + "host": "rum.hlx.page", + "time": "2024-09-01T11:45:14.772Z", + "timeSlot": "2024-09-01T11:45:14.772Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "oc9qij4l11r", + "host": "rum.hlx.page", + "time": "2024-08-31T19:15:47.348Z", + "timeSlot": "2024-08-31T19:15:47.348Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "se3lftg70y", + "host": "rum.hlx.page", + "time": "2024-09-01T03:02:10.870Z", + "timeSlot": "2024-09-01T03:02:10.870Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2vjcn4udz7e", + "host": "rum.hlx.page", + "time": "2024-08-31T21:30:16.367Z", + "timeSlot": "2024-08-31T21:30:16.367Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1nvf49fwfwp", + "host": "rum.hlx.page", + "time": "2024-09-01T23:28:33.514Z", + "timeSlot": "2024-09-01T23:28:33.514Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jcvgc5xb99c", + "host": "rum.hlx.page", + "time": "2024-09-02T03:35:54.558Z", + "timeSlot": "2024-09-02T03:35:54.558Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r3zmr19s0gs", + "host": "rum.hlx.page", + "time": "2024-08-31T15:16:09.099Z", + "timeSlot": "2024-08-31T15:16:09.099Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9sgkf21gin8", + "host": "rum.hlx.page", + "time": "2024-08-31T09:49:40.679Z", + "timeSlot": "2024-08-31T09:49:40.679Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2ean82kbvbb", + "host": "rum.hlx.page", + "time": "2024-08-30T23:00:27.510Z", + "timeSlot": "2024-08-30T23:00:27.510Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "p8x2s9q62oc", + "host": "rum.hlx.page", + "time": "2024-09-02T14:59:43.469Z", + "timeSlot": "2024-09-02T14:59:43.469Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "zuovgg3ocd", + "host": "rum.hlx.page", + "time": "2024-09-02T09:21:31.585Z", + "timeSlot": "2024-09-02T09:21:31.585Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rsykhw14ji", + "host": "rum.hlx.page", + "time": "2024-08-31T11:19:58.508Z", + "timeSlot": "2024-08-31T11:19:58.508Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "khzqw0jdobd", + "host": "rum.hlx.page", + "time": "2024-09-02T10:08:56.199Z", + "timeSlot": "2024-09-02T10:08:56.199Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cwx1gbuho3h", + "host": "rum.hlx.page", + "time": "2024-09-01T07:39:21.329Z", + "timeSlot": "2024-09-01T07:39:21.329Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lq9k7sadzp", + "host": "rum.hlx.page", + "time": "2024-09-02T05:57:24.875Z", + "timeSlot": "2024-09-02T05:57:24.875Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y711cnqzexq", + "host": "rum.hlx.page", + "time": "2024-08-31T21:32:32.776Z", + "timeSlot": "2024-08-31T21:32:32.776Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t9d7z941y5l", + "host": "rum.hlx.page", + "time": "2024-09-02T08:23:56.696Z", + "timeSlot": "2024-09-02T08:23:56.696Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ppdsnf9ch1c", + "host": "rum.hlx.page", + "time": "2024-09-01T07:36:05.860Z", + "timeSlot": "2024-09-01T07:36:05.860Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kw22f6e8k6d", + "host": "rum.hlx.page", + "time": "2024-08-30T22:52:13.142Z", + "timeSlot": "2024-08-30T22:52:13.142Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0y6lm7wsw0aq", + "host": "rum.hlx.page", + "time": "2024-08-31T02:40:21.266Z", + "timeSlot": "2024-08-31T02:40:21.266Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nd213mc7zw9", + "host": "rum.hlx.page", + "time": "2024-09-01T01:45:05.400Z", + "timeSlot": "2024-09-01T01:45:05.400Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d9x5j3x648u", + "host": "rum.hlx.page", + "time": "2024-08-31T23:04:13.962Z", + "timeSlot": "2024-08-31T23:04:13.962Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3tpxwqndgff", + "host": "rum.hlx.page", + "time": "2024-08-30T15:37:26.253Z", + "timeSlot": "2024-08-30T15:37:26.253Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qal5kcvoj4k", + "host": "rum.hlx.page", + "time": "2024-09-01T08:52:35.458Z", + "timeSlot": "2024-09-01T08:52:35.458Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mjgpjrpjueh", + "host": "rum.hlx.page", + "time": "2024-09-02T04:33:58.098Z", + "timeSlot": "2024-09-02T04:33:58.098Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "6a1ggcwo7z9", + "host": "rum.hlx.page", + "time": "2024-09-02T06:05:58.784Z", + "timeSlot": "2024-09-02T06:05:58.784Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1yy1oxcxyrz", + "host": "rum.hlx.page", + "time": "2024-08-31T10:08:01.086Z", + "timeSlot": "2024-08-31T10:08:01.086Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "e1jeq2j0ihj", + "host": "rum.hlx.page", + "time": "2024-09-02T08:06:37.058Z", + "timeSlot": "2024-09-02T08:06:37.058Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "yv8gtgbdzm", + "host": "rum.hlx.page", + "time": "2024-08-30T16:50:19.868Z", + "timeSlot": "2024-08-30T16:50:19.868Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mhv97gos48", + "host": "rum.hlx.page", + "time": "2024-09-02T01:04:44.355Z", + "timeSlot": "2024-09-02T01:04:44.355Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ajq7m7azc6d", + "host": "rum.hlx.page", + "time": "2024-08-31T22:39:04.016Z", + "timeSlot": "2024-08-31T22:39:04.016Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "pbg8c0eueid", + "host": "rum.hlx.page", + "time": "2024-09-02T05:17:59.330Z", + "timeSlot": "2024-09-02T05:17:59.330Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "e01hwa28qxg", + "host": "rum.hlx.page", + "time": "2024-09-02T12:10:40.784Z", + "timeSlot": "2024-09-02T12:10:40.784Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fth0iavbeyu", + "host": "rum.hlx.page", + "time": "2024-09-01T15:08:27.232Z", + "timeSlot": "2024-09-01T15:08:27.232Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "eqaui1jxut", + "host": "rum.hlx.page", + "time": "2024-08-30T16:02:05.508Z", + "timeSlot": "2024-08-30T16:02:05.508Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1mgd1buzlsn", + "host": "rum.hlx.page", + "time": "2024-08-31T09:17:28.289Z", + "timeSlot": "2024-08-31T09:17:28.289Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fkugj6brc1r", + "host": "rum.hlx.page", + "time": "2024-09-01T14:48:50.327Z", + "timeSlot": "2024-09-01T14:48:50.327Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0twc8zivtwlk", + "host": "rum.hlx.page", + "time": "2024-09-01T10:07:26.961Z", + "timeSlot": "2024-09-01T10:07:26.961Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u8wi3bgv12", + "host": "rum.hlx.page", + "time": "2024-09-02T00:21:01.712Z", + "timeSlot": "2024-09-02T00:21:01.712Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kq42rwp221", + "host": "rum.hlx.page", + "time": "2024-09-02T09:47:02.954Z", + "timeSlot": "2024-09-02T09:47:02.954Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8a7pkf2v2yw", + "host": "rum.hlx.page", + "time": "2024-08-31T10:33:22.734Z", + "timeSlot": "2024-08-31T10:33:22.734Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fyd4jdvqxh", + "host": "rum.hlx.page", + "time": "2024-08-31T20:29:05.626Z", + "timeSlot": "2024-08-31T20:29:05.626Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "56rum3hjk4f", + "host": "rum.hlx.page", + "time": "2024-09-02T03:12:24.716Z", + "timeSlot": "2024-09-02T03:12:24.716Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "puwatbynwdf", + "host": "rum.hlx.page", + "time": "2024-09-02T09:19:49.774Z", + "timeSlot": "2024-09-02T09:19:49.774Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7nmji8tdo1k", + "host": "rum.hlx.page", + "time": "2024-08-30T20:48:22.171Z", + "timeSlot": "2024-08-30T20:48:22.171Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "spka34vy2of", + "host": "rum.hlx.page", + "time": "2024-09-01T03:17:52.481Z", + "timeSlot": "2024-09-01T03:17:52.481Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "9bhf0hudade", + "host": "rum.hlx.page", + "time": "2024-08-31T15:20:09.433Z", + "timeSlot": "2024-08-31T15:20:09.433Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sk8retbikzk", + "host": "rum.hlx.page", + "time": "2024-08-31T11:54:47.867Z", + "timeSlot": "2024-08-31T11:54:47.867Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kahu4za1dcn", + "host": "rum.hlx.page", + "time": "2024-09-02T11:50:15.388Z", + "timeSlot": "2024-09-02T11:50:15.388Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "fiwuyriuu1t", + "host": "rum.hlx.page", + "time": "2024-08-30T22:02:07.236Z", + "timeSlot": "2024-08-30T22:02:07.236Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5kghoxnvi7d", + "host": "rum.hlx.page", + "time": "2024-08-31T01:59:25.765Z", + "timeSlot": "2024-08-31T01:59:25.765Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5emngcizqmm", + "host": "rum.hlx.page", + "time": "2024-09-02T03:29:43.522Z", + "timeSlot": "2024-09-02T03:29:43.522Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rwac0jpzgja", + "host": "rum.hlx.page", + "time": "2024-08-31T12:03:42.362Z", + "timeSlot": "2024-08-31T12:03:42.362Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gjwer44brgv", + "host": "rum.hlx.page", + "time": "2024-08-30T21:57:14.780Z", + "timeSlot": "2024-08-30T21:57:14.780Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nuo1rniikcg", + "host": "rum.hlx.page", + "time": "2024-09-01T00:19:35.256Z", + "timeSlot": "2024-09-01T00:19:35.256Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2q6s9n461su", + "host": "rum.hlx.page", + "time": "2024-09-01T21:22:19.133Z", + "timeSlot": "2024-09-01T21:22:19.133Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "b7vbmq1764", + "host": "rum.hlx.page", + "time": "2024-09-01T16:05:04.627Z", + "timeSlot": "2024-09-01T16:05:04.627Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "abjc6b0shkm", + "host": "rum.hlx.page", + "time": "2024-08-31T08:14:17.527Z", + "timeSlot": "2024-08-31T08:14:17.527Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tni7xuoszzj", + "host": "rum.hlx.page", + "time": "2024-09-01T06:13:45.705Z", + "timeSlot": "2024-09-01T06:13:45.705Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zd3idf83r", + "host": "rum.hlx.page", + "time": "2024-08-31T11:36:21.616Z", + "timeSlot": "2024-08-31T11:36:21.616Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "agc31k1uirt", + "host": "rum.hlx.page", + "time": "2024-09-02T12:11:55.328Z", + "timeSlot": "2024-09-02T12:11:55.328Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "b998hdqgp07", + "host": "rum.hlx.page", + "time": "2024-08-31T23:55:30.682Z", + "timeSlot": "2024-08-31T23:55:30.682Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "58n7hwwwu09", + "host": "rum.hlx.page", + "time": "2024-09-01T01:54:44.294Z", + "timeSlot": "2024-09-01T01:54:44.294Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "quukf0xi72s", + "host": "rum.hlx.page", + "time": "2024-09-02T08:30:49.357Z", + "timeSlot": "2024-09-02T08:30:49.357Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "fhrsr54hr4j", + "host": "rum.hlx.page", + "time": "2024-09-02T10:53:49.916Z", + "timeSlot": "2024-09-02T10:53:49.916Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5py53ojz8v", + "host": "rum.hlx.page", + "time": "2024-09-02T08:53:43.024Z", + "timeSlot": "2024-09-02T08:53:43.024Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "17ukfhky6et", + "host": "rum.hlx.page", + "time": "2024-09-02T07:03:41.369Z", + "timeSlot": "2024-09-02T07:03:41.369Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ifgjkiida9f", + "host": "rum.hlx.page", + "time": "2024-08-31T21:56:02.750Z", + "timeSlot": "2024-08-31T21:56:02.750Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gw36yj8lc8w", + "host": "rum.hlx.page", + "time": "2024-08-31T02:00:18.093Z", + "timeSlot": "2024-08-31T02:00:18.093Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sybyt1ypk4", + "host": "rum.hlx.page", + "time": "2024-08-31T18:05:10.478Z", + "timeSlot": "2024-08-31T18:05:10.478Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "74ow48qzvv3", + "host": "rum.hlx.page", + "time": "2024-09-01T13:10:33.551Z", + "timeSlot": "2024-09-01T13:10:33.551Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "audx1kutzit", + "host": "rum.hlx.page", + "time": "2024-09-01T17:01:16.095Z", + "timeSlot": "2024-09-01T17:01:16.095Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "52lxffjki2q", + "host": "rum.hlx.page", + "time": "2024-08-31T00:52:21.907Z", + "timeSlot": "2024-08-31T00:52:21.907Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zrc6slsiyk", + "host": "rum.hlx.page", + "time": "2024-09-01T17:03:47.411Z", + "timeSlot": "2024-09-01T17:03:47.411Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r5xlkz40lb8", + "host": "rum.hlx.page", + "time": "2024-08-31T23:07:06.415Z", + "timeSlot": "2024-08-31T23:07:06.415Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "uasxpu9i0d", + "host": "rum.hlx.page", + "time": "2024-09-01T19:56:18.527Z", + "timeSlot": "2024-09-01T19:56:18.527Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bkv4ffc1pyp", + "host": "rum.hlx.page", + "time": "2024-08-31T09:46:59.347Z", + "timeSlot": "2024-08-31T09:46:59.347Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "edu92vp3bn", + "host": "rum.hlx.page", + "time": "2024-08-31T07:42:14.633Z", + "timeSlot": "2024-08-31T07:42:14.633Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ykripzl1fq", + "host": "rum.hlx.page", + "time": "2024-09-02T06:05:34.991Z", + "timeSlot": "2024-09-02T06:05:34.991Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1j5iodf3dtw", + "host": "rum.hlx.page", + "time": "2024-09-01T16:26:25.621Z", + "timeSlot": "2024-09-01T16:26:25.621Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wvd9xaxqy", + "host": "rum.hlx.page", + "time": "2024-09-01T09:15:32.440Z", + "timeSlot": "2024-09-01T09:15:32.440Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nvj9cqoi99j", + "host": "rum.hlx.page", + "time": "2024-09-02T11:45:13.702Z", + "timeSlot": "2024-09-02T11:45:13.702Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7tfck1rg39g", + "host": "rum.hlx.page", + "time": "2024-09-02T12:25:59.555Z", + "timeSlot": "2024-09-02T12:25:59.555Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bdws1bw9lhj", + "host": "rum.hlx.page", + "time": "2024-09-01T13:52:04.051Z", + "timeSlot": "2024-09-01T13:52:04.051Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ddm5qupffd8", + "host": "rum.hlx.page", + "time": "2024-09-02T06:07:13.193Z", + "timeSlot": "2024-09-02T06:07:13.193Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "7bemjzqrwxq", + "host": "rum.hlx.page", + "time": "2024-08-31T22:39:56.074Z", + "timeSlot": "2024-08-31T22:39:56.074Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "95ucy9hrigc", + "host": "rum.hlx.page", + "time": "2024-09-02T06:36:01.600Z", + "timeSlot": "2024-09-02T06:36:01.600Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tf7nimdlt9", + "host": "rum.hlx.page", + "time": "2024-08-31T01:50:52.368Z", + "timeSlot": "2024-08-31T01:50:52.368Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wk8c9fmxpva", + "host": "rum.hlx.page", + "time": "2024-08-30T16:21:56.151Z", + "timeSlot": "2024-08-30T16:21:56.151Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cj98rgbrvd7", + "host": "rum.hlx.page", + "time": "2024-08-30T21:08:46.981Z", + "timeSlot": "2024-08-30T21:08:46.981Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3px365m8f69", + "host": "rum.hlx.page", + "time": "2024-09-02T14:52:08.734Z", + "timeSlot": "2024-09-02T14:52:08.734Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "urud92r5o4", + "host": "rum.hlx.page", + "time": "2024-09-01T08:08:02.536Z", + "timeSlot": "2024-09-01T08:08:02.536Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zzw0130bs88", + "host": "rum.hlx.page", + "time": "2024-08-31T17:30:56.887Z", + "timeSlot": "2024-08-31T17:30:56.887Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ixcqtjstf", + "host": "rum.hlx.page", + "time": "2024-09-02T10:31:38.513Z", + "timeSlot": "2024-09-02T10:31:38.513Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p07hxppbga9", + "host": "rum.hlx.page", + "time": "2024-08-31T00:44:27.787Z", + "timeSlot": "2024-08-31T00:44:27.787Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vy3v3njav8r", + "host": "rum.hlx.page", + "time": "2024-09-01T14:29:51.757Z", + "timeSlot": "2024-09-01T14:29:51.757Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e0yyjot90ft", + "host": "rum.hlx.page", + "time": "2024-08-31T11:02:21.126Z", + "timeSlot": "2024-08-31T11:02:21.126Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ldup2mnv92m", + "host": "rum.hlx.page", + "time": "2024-09-02T05:57:37.088Z", + "timeSlot": "2024-09-02T05:57:37.088Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vopry5wu328", + "host": "rum.hlx.page", + "time": "2024-09-01T16:52:16.847Z", + "timeSlot": "2024-09-01T16:52:16.847Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "51cupv3h6oi", + "host": "rum.hlx.page", + "time": "2024-09-01T07:57:01.851Z", + "timeSlot": "2024-09-01T07:57:01.851Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "eg97tsz95tl", + "host": "rum.hlx.page", + "time": "2024-09-01T00:09:58.937Z", + "timeSlot": "2024-09-01T00:09:58.937Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h8a2xgpbqz6", + "host": "rum.hlx.page", + "time": "2024-08-31T00:02:16.610Z", + "timeSlot": "2024-08-31T00:02:16.610Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e4l71txqtb8", + "host": "rum.hlx.page", + "time": "2024-09-02T00:49:44.691Z", + "timeSlot": "2024-09-02T00:49:44.691Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d1v0ci8v6qe", + "host": "rum.hlx.page", + "time": "2024-09-02T07:34:07.076Z", + "timeSlot": "2024-09-02T07:34:07.076Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "o0ekdzvks7", + "host": "rum.hlx.page", + "time": "2024-08-30T23:15:07.656Z", + "timeSlot": "2024-08-30T23:15:07.656Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "f5h98yuikoe", + "host": "rum.hlx.page", + "time": "2024-09-02T10:25:55.293Z", + "timeSlot": "2024-09-02T10:25:55.293Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s09adyql4c8", + "host": "rum.hlx.page", + "time": "2024-09-02T11:38:59.429Z", + "timeSlot": "2024-09-02T11:38:59.429Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9h39nb6n8mn", + "host": "rum.hlx.page", + "time": "2024-08-31T11:10:41.367Z", + "timeSlot": "2024-08-31T11:10:41.367Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "abbl4aqjwud", + "host": "rum.hlx.page", + "time": "2024-08-31T13:54:09.529Z", + "timeSlot": "2024-08-31T13:54:09.529Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "i95rvxsznah", + "host": "rum.hlx.page", + "time": "2024-09-01T15:52:31.820Z", + "timeSlot": "2024-09-01T15:52:31.820Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ssynclbj1or", + "host": "rum.hlx.page", + "time": "2024-08-31T13:44:05.345Z", + "timeSlot": "2024-08-31T13:44:05.345Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "y2fuzv7rk3c", + "host": "rum.hlx.page", + "time": "2024-09-01T01:10:31.858Z", + "timeSlot": "2024-09-01T01:10:31.858Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ziachly7cd", + "host": "rum.hlx.page", + "time": "2024-09-01T18:05:41.670Z", + "timeSlot": "2024-09-01T18:05:41.670Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4qiagf9jyju", + "host": "rum.hlx.page", + "time": "2024-09-01T12:50:23.044Z", + "timeSlot": "2024-09-01T12:50:23.044Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "npi2qr3vb7", + "host": "rum.hlx.page", + "time": "2024-09-02T04:19:58.501Z", + "timeSlot": "2024-09-02T04:19:58.501Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "kjk0q1x8f0f", + "host": "rum.hlx.page", + "time": "2024-09-02T05:04:26.293Z", + "timeSlot": "2024-09-02T05:04:26.293Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4p8jq4wp68w", + "host": "rum.hlx.page", + "time": "2024-08-30T18:48:06.941Z", + "timeSlot": "2024-08-30T18:48:06.941Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "92t3od6nimf", + "host": "rum.hlx.page", + "time": "2024-09-02T09:37:45.078Z", + "timeSlot": "2024-09-02T09:37:45.078Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "zjxgmhwh7f9", + "host": "rum.hlx.page", + "time": "2024-08-31T19:23:24.964Z", + "timeSlot": "2024-08-31T19:23:24.964Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nss5phl5ird", + "host": "rum.hlx.page", + "time": "2024-09-01T06:57:49.614Z", + "timeSlot": "2024-09-01T06:57:49.614Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uam3uy1k8g", + "host": "rum.hlx.page", + "time": "2024-09-01T12:37:54.222Z", + "timeSlot": "2024-09-01T12:37:54.222Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1l26llpztr2", + "host": "rum.hlx.page", + "time": "2024-09-01T23:04:24.678Z", + "timeSlot": "2024-09-01T23:04:24.678Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "n1ycf0194ef", + "host": "rum.hlx.page", + "time": "2024-09-01T16:15:10.311Z", + "timeSlot": "2024-09-01T16:15:10.311Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "gri8jtx8ru7", + "host": "rum.hlx.page", + "time": "2024-08-31T03:39:30.852Z", + "timeSlot": "2024-08-31T03:39:30.852Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "bsedfx7maxo", + "host": "rum.hlx.page", + "time": "2024-09-01T19:44:37.217Z", + "timeSlot": "2024-09-01T19:44:37.217Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "iqlretzff5r", + "host": "rum.hlx.page", + "time": "2024-08-30T21:37:16.589Z", + "timeSlot": "2024-08-30T21:37:16.589Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7mdgrhumm32", + "host": "rum.hlx.page", + "time": "2024-08-30T19:27:33.694Z", + "timeSlot": "2024-08-30T19:27:33.694Z", + "url": "https://www.spacecat.com/contact", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "q7euluidoh", + "host": "rum.hlx.page", + "time": "2024-08-31T06:21:06.902Z", + "timeSlot": "2024-08-31T06:21:06.902Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2dm1lng083i", + "host": "rum.hlx.page", + "time": "2024-09-01T04:16:14.442Z", + "timeSlot": "2024-09-01T04:16:14.442Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "flb2eqvsioq", + "host": "rum.hlx.page", + "time": "2024-08-30T22:00:05.805Z", + "timeSlot": "2024-08-30T22:00:05.805Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2vfbwmcqj2n", + "host": "rum.hlx.page", + "time": "2024-08-31T07:27:43.771Z", + "timeSlot": "2024-08-31T07:27:43.771Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "c3qlkcp48yh", + "host": "rum.hlx.page", + "time": "2024-09-01T08:28:02.741Z", + "timeSlot": "2024-09-01T08:28:02.741Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "v2hqhqv7kl8", + "host": "rum.hlx.page", + "time": "2024-08-31T04:53:34.922Z", + "timeSlot": "2024-08-31T04:53:34.922Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "33oh9ivlx7v", + "host": "rum.hlx.page", + "time": "2024-08-31T12:08:13.358Z", + "timeSlot": "2024-08-31T12:08:13.358Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2xtxju4e47o", + "host": "rum.hlx.page", + "time": "2024-08-31T18:17:58.850Z", + "timeSlot": "2024-08-31T18:17:58.850Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ns0na8xfllh", + "host": "rum.hlx.page", + "time": "2024-08-31T01:43:49.980Z", + "timeSlot": "2024-08-31T01:43:49.980Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "odh0bhrea38", + "host": "rum.hlx.page", + "time": "2024-08-30T22:44:31.029Z", + "timeSlot": "2024-08-30T22:44:31.029Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gnciqiqho29", + "host": "rum.hlx.page", + "time": "2024-09-01T07:49:12.420Z", + "timeSlot": "2024-09-01T07:49:12.420Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "doqzyfwvter", + "host": "rum.hlx.page", + "time": "2024-09-02T14:18:39.470Z", + "timeSlot": "2024-09-02T14:18:39.470Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "llh2579oej", + "host": "rum.hlx.page", + "time": "2024-08-31T15:49:46.679Z", + "timeSlot": "2024-08-31T15:49:46.679Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4mq94aladjy", + "host": "rum.hlx.page", + "time": "2024-08-31T04:42:54.524Z", + "timeSlot": "2024-08-31T04:42:54.524Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5hecw0vvnba", + "host": "rum.hlx.page", + "time": "2024-08-31T12:23:43.163Z", + "timeSlot": "2024-08-31T12:23:43.163Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ns5g4ekmsp", + "host": "rum.hlx.page", + "time": "2024-08-31T23:23:54.876Z", + "timeSlot": "2024-08-31T23:23:54.876Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "l2m0yhbw8f", + "host": "rum.hlx.page", + "time": "2024-08-31T18:28:13.207Z", + "timeSlot": "2024-08-31T18:28:13.207Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "38gx8eio52j", + "host": "rum.hlx.page", + "time": "2024-08-30T18:21:51.660Z", + "timeSlot": "2024-08-30T18:21:51.660Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "z8rf4hysgtq", + "host": "rum.hlx.page", + "time": "2024-09-02T13:42:43.722Z", + "timeSlot": "2024-09-02T13:42:43.722Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vrt9xscof5i", + "host": "rum.hlx.page", + "time": "2024-08-30T22:28:19.993Z", + "timeSlot": "2024-08-30T22:28:19.993Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jx00kat0yrg", + "host": "rum.hlx.page", + "time": "2024-08-31T08:20:16.854Z", + "timeSlot": "2024-08-31T08:20:16.854Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "f66h1cyark", + "host": "rum.hlx.page", + "time": "2024-09-02T02:30:03.146Z", + "timeSlot": "2024-09-02T02:30:03.146Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "aq8rejysqz5", + "host": "rum.hlx.page", + "time": "2024-08-31T22:57:19.489Z", + "timeSlot": "2024-08-31T22:57:19.489Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "hwabudzncpl", + "host": "rum.hlx.page", + "time": "2024-09-02T11:24:26.358Z", + "timeSlot": "2024-09-02T11:24:26.358Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xnhocu03fw", + "host": "rum.hlx.page", + "time": "2024-08-31T05:49:25.042Z", + "timeSlot": "2024-08-31T05:49:25.042Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rhl94cw0bm9", + "host": "rum.hlx.page", + "time": "2024-09-01T01:26:01.301Z", + "timeSlot": "2024-09-01T01:26:01.301Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "b0006z7yb7f", + "host": "rum.hlx.page", + "time": "2024-08-31T21:52:31.956Z", + "timeSlot": "2024-08-31T21:52:31.956Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "kytmifzvmq", + "host": "rum.hlx.page", + "time": "2024-09-02T10:30:08.658Z", + "timeSlot": "2024-09-02T10:30:08.658Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "b47fxmzhz3f", + "host": "rum.hlx.page", + "time": "2024-08-31T01:10:25.693Z", + "timeSlot": "2024-08-31T01:10:25.693Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a51c9bx2gu", + "host": "rum.hlx.page", + "time": "2024-09-01T13:02:30.736Z", + "timeSlot": "2024-09-01T13:02:30.736Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "je8iylzo8e", + "host": "rum.hlx.page", + "time": "2024-08-31T06:03:33.584Z", + "timeSlot": "2024-08-31T06:03:33.584Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mvefkimhal", + "host": "rum.hlx.page", + "time": "2024-09-01T20:13:27.345Z", + "timeSlot": "2024-09-01T20:13:27.345Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "luuy7px3fa", + "host": "rum.hlx.page", + "time": "2024-08-31T11:40:50.931Z", + "timeSlot": "2024-08-31T11:40:50.931Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "dyjhk9g7mzu", + "host": "rum.hlx.page", + "time": "2024-09-01T01:12:24.007Z", + "timeSlot": "2024-09-01T01:12:24.007Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rmx3fhh5rcp", + "host": "rum.hlx.page", + "time": "2024-08-30T20:45:06.660Z", + "timeSlot": "2024-08-30T20:45:06.660Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7rupxtzg2rx", + "host": "rum.hlx.page", + "time": "2024-09-02T00:54:34.536Z", + "timeSlot": "2024-09-02T00:54:34.536Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4tuh2f6si6m", + "host": "rum.hlx.page", + "time": "2024-09-01T14:55:12.092Z", + "timeSlot": "2024-09-01T14:55:12.092Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "718gjnosjfw", + "host": "rum.hlx.page", + "time": "2024-09-01T18:52:19.172Z", + "timeSlot": "2024-09-01T18:52:19.172Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "b2z5zevowl7", + "host": "rum.hlx.page", + "time": "2024-08-30T22:01:48.097Z", + "timeSlot": "2024-08-30T22:01:48.097Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0ssn7lkafpo", + "host": "rum.hlx.page", + "time": "2024-08-30T15:30:01.997Z", + "timeSlot": "2024-08-30T15:30:01.997Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7254ufm4twd", + "host": "rum.hlx.page", + "time": "2024-09-01T10:13:55.594Z", + "timeSlot": "2024-09-01T10:13:55.594Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "skpew8shygn", + "host": "rum.hlx.page", + "time": "2024-08-31T02:23:55.223Z", + "timeSlot": "2024-08-31T02:23:55.223Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "u5wbpbakur", + "host": "rum.hlx.page", + "time": "2024-09-01T02:21:53.728Z", + "timeSlot": "2024-09-01T02:21:53.728Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "kusgd9sgjvm", + "host": "rum.hlx.page", + "time": "2024-09-01T20:11:03.623Z", + "timeSlot": "2024-09-01T20:11:03.623Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "o6ldw8innwq", + "host": "rum.hlx.page", + "time": "2024-09-01T04:33:10.854Z", + "timeSlot": "2024-09-01T04:33:10.854Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1o0pmdj0t4z", + "host": "rum.hlx.page", + "time": "2024-09-01T00:00:10.238Z", + "timeSlot": "2024-09-01T00:00:10.238Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qj7m4xmpwy", + "host": "rum.hlx.page", + "time": "2024-08-31T22:11:30.402Z", + "timeSlot": "2024-08-31T22:11:30.402Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8a2wx61uav8", + "host": "rum.hlx.page", + "time": "2024-08-31T07:09:21.444Z", + "timeSlot": "2024-08-31T07:09:21.444Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l6q5zfbew2a", + "host": "rum.hlx.page", + "time": "2024-09-01T18:57:21.033Z", + "timeSlot": "2024-09-01T18:57:21.033Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gixnuj0h3yg", + "host": "rum.hlx.page", + "time": "2024-09-01T04:55:20.729Z", + "timeSlot": "2024-09-01T04:55:20.729Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dotdldjbeq8", + "host": "rum.hlx.page", + "time": "2024-09-02T01:21:18.366Z", + "timeSlot": "2024-09-02T01:21:18.366Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "stp0rl2v2un", + "host": "rum.hlx.page", + "time": "2024-09-02T05:18:06.642Z", + "timeSlot": "2024-09-02T05:18:06.642Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "aab71howoj5", + "host": "rum.hlx.page", + "time": "2024-09-02T05:02:58.129Z", + "timeSlot": "2024-09-02T05:02:58.129Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "rfpbyz0gff", + "host": "rum.hlx.page", + "time": "2024-08-31T05:15:07.537Z", + "timeSlot": "2024-08-31T05:15:07.537Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9cxbz3zne4v", + "host": "rum.hlx.page", + "time": "2024-08-30T20:56:27.669Z", + "timeSlot": "2024-08-30T20:56:27.669Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l0797ab92uk", + "host": "rum.hlx.page", + "time": "2024-09-01T00:17:10.596Z", + "timeSlot": "2024-09-01T00:17:10.596Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2a0fclzrne", + "host": "rum.hlx.page", + "time": "2024-09-01T19:57:37.660Z", + "timeSlot": "2024-09-01T19:57:37.660Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "8c2nmz0reiq", + "host": "rum.hlx.page", + "time": "2024-09-02T05:22:53.930Z", + "timeSlot": "2024-09-02T05:22:53.930Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "j5830l5yxa", + "host": "rum.hlx.page", + "time": "2024-08-30T18:54:26.374Z", + "timeSlot": "2024-08-30T18:54:26.374Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m7fznwznq8p", + "host": "rum.hlx.page", + "time": "2024-09-01T19:30:11.216Z", + "timeSlot": "2024-09-01T19:30:11.216Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sswr32j922a", + "host": "rum.hlx.page", + "time": "2024-09-01T11:50:07.612Z", + "timeSlot": "2024-09-01T11:50:07.612Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3j1ktbhbx0c", + "host": "rum.hlx.page", + "time": "2024-09-02T09:57:04.958Z", + "timeSlot": "2024-09-02T09:57:04.958Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zflgih7d0h", + "host": "rum.hlx.page", + "time": "2024-08-30T18:55:41.361Z", + "timeSlot": "2024-08-30T18:55:41.361Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "807gidgnkpy", + "host": "rum.hlx.page", + "time": "2024-09-02T01:32:27.735Z", + "timeSlot": "2024-09-02T01:32:27.735Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "290pojpomod", + "host": "rum.hlx.page", + "time": "2024-09-02T08:58:08.365Z", + "timeSlot": "2024-09-02T08:58:08.365Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bg8wgp2l0gv", + "host": "rum.hlx.page", + "time": "2024-09-02T01:34:44.749Z", + "timeSlot": "2024-09-02T01:34:44.749Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ww2pui4eazn", + "host": "rum.hlx.page", + "time": "2024-08-31T10:04:24.978Z", + "timeSlot": "2024-08-31T10:04:24.978Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nn7lknymfeh", + "host": "rum.hlx.page", + "time": "2024-09-01T20:12:04.999Z", + "timeSlot": "2024-09-01T20:12:04.999Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "z53zh0kfk9", + "host": "rum.hlx.page", + "time": "2024-09-01T10:29:38.457Z", + "timeSlot": "2024-09-01T10:29:38.457Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5syolvdl38f", + "host": "rum.hlx.page", + "time": "2024-08-31T20:29:49.635Z", + "timeSlot": "2024-08-31T20:29:49.635Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5abw55tzhc9", + "host": "rum.hlx.page", + "time": "2024-08-31T02:52:43.605Z", + "timeSlot": "2024-08-31T02:52:43.605Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wz1wm4883wl", + "host": "rum.hlx.page", + "time": "2024-09-02T01:55:42.464Z", + "timeSlot": "2024-09-02T01:55:42.464Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "v3my2c8gwn", + "host": "rum.hlx.page", + "time": "2024-08-31T13:18:26.410Z", + "timeSlot": "2024-08-31T13:18:26.410Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "eh38kdtee66", + "host": "rum.hlx.page", + "time": "2024-09-01T04:04:25.656Z", + "timeSlot": "2024-09-01T04:04:25.656Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u32nvir5bha", + "host": "rum.hlx.page", + "time": "2024-08-30T20:50:10.055Z", + "timeSlot": "2024-08-30T20:50:10.055Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8zvmypki89l", + "host": "rum.hlx.page", + "time": "2024-09-01T20:05:55.770Z", + "timeSlot": "2024-09-01T20:05:55.770Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1bqfjeqfkle", + "host": "rum.hlx.page", + "time": "2024-09-01T05:23:19.192Z", + "timeSlot": "2024-09-01T05:23:19.192Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "jg42lmxupq", + "host": "rum.hlx.page", + "time": "2024-09-01T23:40:20.589Z", + "timeSlot": "2024-09-01T23:40:20.589Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "o818ryituv", + "host": "rum.hlx.page", + "time": "2024-09-02T11:26:00.028Z", + "timeSlot": "2024-09-02T11:26:00.028Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zuzgt8zyl8", + "host": "rum.hlx.page", + "time": "2024-08-31T04:08:01.492Z", + "timeSlot": "2024-08-31T04:08:01.492Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xg2wz3rjwfo", + "host": "rum.hlx.page", + "time": "2024-08-31T11:59:27.861Z", + "timeSlot": "2024-08-31T11:59:27.861Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "eb9mdc9b4gn", + "host": "rum.hlx.page", + "time": "2024-08-31T21:20:38.730Z", + "timeSlot": "2024-08-31T21:20:38.730Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tnnj8qqf3cq", + "host": "rum.hlx.page", + "time": "2024-09-01T03:28:54.385Z", + "timeSlot": "2024-09-01T03:28:54.385Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "imaq6l6i6bp", + "host": "rum.hlx.page", + "time": "2024-08-30T21:23:38.543Z", + "timeSlot": "2024-08-30T21:23:38.543Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hga3fd1n5j6", + "host": "rum.hlx.page", + "time": "2024-08-31T03:48:58.821Z", + "timeSlot": "2024-08-31T03:48:58.821Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hw6ztpc3cjh", + "host": "rum.hlx.page", + "time": "2024-08-31T22:16:01.309Z", + "timeSlot": "2024-08-31T22:16:01.309Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ox2rj2x6cvf", + "host": "rum.hlx.page", + "time": "2024-09-01T17:06:50.335Z", + "timeSlot": "2024-09-01T17:06:50.335Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nndlaymz7g7", + "host": "rum.hlx.page", + "time": "2024-09-01T10:18:55.085Z", + "timeSlot": "2024-09-01T10:18:55.085Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ia8l3gh7tqi", + "host": "rum.hlx.page", + "time": "2024-08-31T06:12:48.676Z", + "timeSlot": "2024-08-31T06:12:48.676Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "80hytg4922d", + "host": "rum.hlx.page", + "time": "2024-09-01T15:19:08.591Z", + "timeSlot": "2024-09-01T15:19:08.591Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gki40m4xgww", + "host": "rum.hlx.page", + "time": "2024-08-31T17:09:15.353Z", + "timeSlot": "2024-08-31T17:09:15.353Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "o6x697lhg18", + "host": "rum.hlx.page", + "time": "2024-08-31T03:12:54.587Z", + "timeSlot": "2024-08-31T03:12:54.587Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xy4ssmxwe18", + "host": "rum.hlx.page", + "time": "2024-09-01T14:17:21.688Z", + "timeSlot": "2024-09-01T14:17:21.688Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d3vl19bdcj", + "host": "rum.hlx.page", + "time": "2024-08-31T14:25:13.924Z", + "timeSlot": "2024-08-31T14:25:13.924Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s869tfnahi", + "host": "rum.hlx.page", + "time": "2024-08-30T23:45:10.529Z", + "timeSlot": "2024-08-30T23:45:10.529Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "05sx7r949mp5", + "host": "rum.hlx.page", + "time": "2024-09-02T13:40:53.957Z", + "timeSlot": "2024-09-02T13:40:53.957Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6wygiz8zo07", + "host": "rum.hlx.page", + "time": "2024-09-01T10:06:11.627Z", + "timeSlot": "2024-09-01T10:06:11.627Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "p8111dl0r5d", + "host": "rum.hlx.page", + "time": "2024-08-31T18:54:05.876Z", + "timeSlot": "2024-08-31T18:54:05.876Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0xgytxjtyx9", + "host": "rum.hlx.page", + "time": "2024-09-01T04:38:10.540Z", + "timeSlot": "2024-09-01T04:38:10.540Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "013uo5cfcf8v", + "host": "rum.hlx.page", + "time": "2024-09-01T15:20:02.980Z", + "timeSlot": "2024-09-01T15:20:02.980Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jgjyei047u", + "host": "rum.hlx.page", + "time": "2024-09-01T10:45:48.894Z", + "timeSlot": "2024-09-01T10:45:48.894Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "rt4km561uk", + "host": "rum.hlx.page", + "time": "2024-09-01T02:41:42.261Z", + "timeSlot": "2024-09-01T02:41:42.261Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "nv5er7v9ns", + "host": "rum.hlx.page", + "time": "2024-08-30T23:12:02.688Z", + "timeSlot": "2024-08-30T23:12:02.688Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "iuvrgxfsxvh", + "host": "rum.hlx.page", + "time": "2024-09-02T09:11:04.242Z", + "timeSlot": "2024-09-02T09:11:04.242Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a1ewchhpizn", + "host": "rum.hlx.page", + "time": "2024-09-02T07:48:20.070Z", + "timeSlot": "2024-09-02T07:48:20.070Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "65luy8rsanp", + "host": "rum.hlx.page", + "time": "2024-09-02T10:19:34.662Z", + "timeSlot": "2024-09-02T10:19:34.662Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "n9is3wod81d", + "host": "rum.hlx.page", + "time": "2024-09-01T16:35:24.445Z", + "timeSlot": "2024-09-01T16:35:24.445Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bdghjzhujmn", + "host": "rum.hlx.page", + "time": "2024-09-01T23:19:26.848Z", + "timeSlot": "2024-09-01T23:19:26.848Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "5vf5yqoxart", + "host": "rum.hlx.page", + "time": "2024-09-01T20:46:03.783Z", + "timeSlot": "2024-09-01T20:46:03.783Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jmb20v9ze59", + "host": "rum.hlx.page", + "time": "2024-09-01T21:38:27.074Z", + "timeSlot": "2024-09-01T21:38:27.074Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bxnog24r0tf", + "host": "rum.hlx.page", + "time": "2024-09-01T20:25:19.005Z", + "timeSlot": "2024-09-01T20:25:19.005Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "30qnd1et1v", + "host": "rum.hlx.page", + "time": "2024-08-31T17:04:11.013Z", + "timeSlot": "2024-08-31T17:04:11.013Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "a0eo3a9f1ze", + "host": "rum.hlx.page", + "time": "2024-08-31T10:51:04.191Z", + "timeSlot": "2024-08-31T10:51:04.191Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "g6dklokuo3", + "host": "rum.hlx.page", + "time": "2024-09-01T00:48:43.334Z", + "timeSlot": "2024-09-01T00:48:43.334Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pedt82uazo", + "host": "rum.hlx.page", + "time": "2024-09-02T14:12:50.738Z", + "timeSlot": "2024-09-02T14:12:50.738Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "eryzl3xrwfu", + "host": "rum.hlx.page", + "time": "2024-09-01T02:38:50.995Z", + "timeSlot": "2024-09-01T02:38:50.995Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3j6daqai49d", + "host": "rum.hlx.page", + "time": "2024-09-01T16:43:43.848Z", + "timeSlot": "2024-09-01T16:43:43.848Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "bpwz0vdyfzs", + "host": "rum.hlx.page", + "time": "2024-08-31T20:07:03.222Z", + "timeSlot": "2024-08-31T20:07:03.222Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bs4hfysb6ag", + "host": "rum.hlx.page", + "time": "2024-09-02T05:26:05.634Z", + "timeSlot": "2024-09-02T05:26:05.634Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wac7ookfhd", + "host": "rum.hlx.page", + "time": "2024-08-31T14:04:46.783Z", + "timeSlot": "2024-08-31T14:04:46.783Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5s5rxncv84j", + "host": "rum.hlx.page", + "time": "2024-08-31T20:08:08.450Z", + "timeSlot": "2024-08-31T20:08:08.450Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0ddwcgzd5i4", + "host": "rum.hlx.page", + "time": "2024-09-02T06:55:01.529Z", + "timeSlot": "2024-09-02T06:55:01.529Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "n6vnn0vhzii", + "host": "rum.hlx.page", + "time": "2024-08-31T15:27:00.807Z", + "timeSlot": "2024-08-31T15:27:00.807Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1jvyhi7anl5", + "host": "rum.hlx.page", + "time": "2024-09-02T00:10:38.773Z", + "timeSlot": "2024-09-02T00:10:38.773Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tvdzqmd156s", + "host": "rum.hlx.page", + "time": "2024-09-02T05:44:29.112Z", + "timeSlot": "2024-09-02T05:44:29.112Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2bm7wawq564", + "host": "rum.hlx.page", + "time": "2024-09-02T07:24:04.548Z", + "timeSlot": "2024-09-02T07:24:04.548Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "4lh2c1q0z6t", + "host": "rum.hlx.page", + "time": "2024-09-01T18:21:34.649Z", + "timeSlot": "2024-09-01T18:21:34.649Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ygux07uv0a", + "host": "rum.hlx.page", + "time": "2024-08-30T21:05:14.985Z", + "timeSlot": "2024-08-30T21:05:14.985Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2i8xunv2awe", + "host": "rum.hlx.page", + "time": "2024-09-01T07:55:03.886Z", + "timeSlot": "2024-09-01T07:55:03.886Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ywgwj2aps8r", + "host": "rum.hlx.page", + "time": "2024-09-02T08:36:57.111Z", + "timeSlot": "2024-09-02T08:36:57.111Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0qwyd674dzz", + "host": "rum.hlx.page", + "time": "2024-09-01T15:34:23.291Z", + "timeSlot": "2024-09-01T15:34:23.291Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w4hthbf86t", + "host": "rum.hlx.page", + "time": "2024-09-01T19:35:53.536Z", + "timeSlot": "2024-09-01T19:35:53.536Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ixn5g9sjtnl", + "host": "rum.hlx.page", + "time": "2024-08-30T21:37:58.407Z", + "timeSlot": "2024-08-30T21:37:58.407Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "x1xq7nrzrr", + "host": "rum.hlx.page", + "time": "2024-08-31T13:52:13.578Z", + "timeSlot": "2024-08-31T13:52:13.578Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2sdqb9ve9q3", + "host": "rum.hlx.page", + "time": "2024-09-01T01:27:12.663Z", + "timeSlot": "2024-09-01T01:27:12.663Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e8t8tzqv748", + "host": "rum.hlx.page", + "time": "2024-09-01T06:46:09.973Z", + "timeSlot": "2024-09-01T06:46:09.973Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "rzvtb754vq", + "host": "rum.hlx.page", + "time": "2024-09-02T10:58:53.229Z", + "timeSlot": "2024-09-02T10:58:53.229Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1ld1rj2w239", + "host": "rum.hlx.page", + "time": "2024-09-02T11:16:50.760Z", + "timeSlot": "2024-09-02T11:16:50.760Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "xzmwq2qilxh", + "host": "rum.hlx.page", + "time": "2024-08-31T05:04:36.053Z", + "timeSlot": "2024-08-31T05:04:36.053Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "i7t2r3efl4f", + "host": "rum.hlx.page", + "time": "2024-09-01T18:14:46.281Z", + "timeSlot": "2024-09-01T18:14:46.281Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6a4s9zua27u", + "host": "rum.hlx.page", + "time": "2024-08-30T21:25:14.536Z", + "timeSlot": "2024-08-30T21:25:14.536Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vr7og9md58", + "host": "rum.hlx.page", + "time": "2024-08-31T21:47:55.987Z", + "timeSlot": "2024-08-31T21:47:55.987Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y9eq9pj2uv", + "host": "rum.hlx.page", + "time": "2024-09-01T23:52:47.537Z", + "timeSlot": "2024-09-01T23:52:47.537Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "nldlr1781km", + "host": "rum.hlx.page", + "time": "2024-09-01T09:09:05.073Z", + "timeSlot": "2024-09-01T09:09:05.073Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "of57to00wh", + "host": "rum.hlx.page", + "time": "2024-09-01T07:51:36.815Z", + "timeSlot": "2024-09-01T07:51:36.815Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6sgttrgxvkg", + "host": "rum.hlx.page", + "time": "2024-08-31T05:35:11.922Z", + "timeSlot": "2024-08-31T05:35:11.922Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4d27w9f4t3v", + "host": "rum.hlx.page", + "time": "2024-08-30T21:48:06.238Z", + "timeSlot": "2024-08-30T21:48:06.238Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ex7xblcu28", + "host": "rum.hlx.page", + "time": "2024-08-30T19:09:22.238Z", + "timeSlot": "2024-08-30T19:09:22.238Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ux385uawpg", + "host": "rum.hlx.page", + "time": "2024-09-02T05:09:51.450Z", + "timeSlot": "2024-09-02T05:09:51.450Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g8a4xdwctxm", + "host": "rum.hlx.page", + "time": "2024-09-02T06:21:31.675Z", + "timeSlot": "2024-09-02T06:21:31.675Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qf1s1mxgy8", + "host": "rum.hlx.page", + "time": "2024-09-02T08:12:42.280Z", + "timeSlot": "2024-09-02T08:12:42.280Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vfywj74sbab", + "host": "rum.hlx.page", + "time": "2024-08-31T07:03:50.334Z", + "timeSlot": "2024-08-31T07:03:50.334Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fm5hqvvyr4o", + "host": "rum.hlx.page", + "time": "2024-09-01T08:37:44.012Z", + "timeSlot": "2024-09-01T08:37:44.012Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "mw4q2x52wwk", + "host": "rum.hlx.page", + "time": "2024-08-30T23:09:16.859Z", + "timeSlot": "2024-08-30T23:09:16.859Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e4emn098euc", + "host": "rum.hlx.page", + "time": "2024-08-30T16:19:19.329Z", + "timeSlot": "2024-08-30T16:19:19.329Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "daarer1undh", + "host": "rum.hlx.page", + "time": "2024-08-30T17:49:35.700Z", + "timeSlot": "2024-08-30T17:49:35.700Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nsjz4gzhvqh", + "host": "rum.hlx.page", + "time": "2024-09-01T01:46:57.698Z", + "timeSlot": "2024-09-01T01:46:57.698Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "0g3he4sbtqi5", + "host": "rum.hlx.page", + "time": "2024-09-02T08:35:01.326Z", + "timeSlot": "2024-09-02T08:35:01.326Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "41iyddrl7ul", + "host": "rum.hlx.page", + "time": "2024-09-02T08:00:55.011Z", + "timeSlot": "2024-09-02T08:00:55.011Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "f8qnp9j3cvf", + "host": "rum.hlx.page", + "time": "2024-08-31T10:34:31.377Z", + "timeSlot": "2024-08-31T10:34:31.377Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "eylzcgyy5c6", + "host": "rum.hlx.page", + "time": "2024-09-02T08:07:54.636Z", + "timeSlot": "2024-09-02T08:07:54.636Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "95ws94fm65l", + "host": "rum.hlx.page", + "time": "2024-09-01T05:27:57.266Z", + "timeSlot": "2024-09-01T05:27:57.266Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "9dhnnv3cyal", + "host": "rum.hlx.page", + "time": "2024-08-31T19:47:26.294Z", + "timeSlot": "2024-08-31T19:47:26.294Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "4zs51614ce8", + "host": "rum.hlx.page", + "time": "2024-08-30T19:35:42.806Z", + "timeSlot": "2024-08-30T19:35:42.806Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "n4x093w9kt", + "host": "rum.hlx.page", + "time": "2024-09-01T08:51:14.232Z", + "timeSlot": "2024-09-01T08:51:14.232Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bza436jzghn", + "host": "rum.hlx.page", + "time": "2024-09-02T05:01:53.280Z", + "timeSlot": "2024-09-02T05:01:53.280Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ajxorieqcj", + "host": "rum.hlx.page", + "time": "2024-08-31T15:37:49.776Z", + "timeSlot": "2024-08-31T15:37:49.776Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ccocqtny8ag", + "host": "rum.hlx.page", + "time": "2024-09-01T07:24:52.313Z", + "timeSlot": "2024-09-01T07:24:52.313Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "48jt79bx7ix", + "host": "rum.hlx.page", + "time": "2024-09-02T02:11:14.644Z", + "timeSlot": "2024-09-02T02:11:14.644Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2bug014663e", + "host": "rum.hlx.page", + "time": "2024-08-31T09:14:44.075Z", + "timeSlot": "2024-08-31T09:14:44.075Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jpc6hfpmfdn", + "host": "rum.hlx.page", + "time": "2024-08-31T18:32:37.160Z", + "timeSlot": "2024-08-31T18:32:37.160Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "25p6ucdqgtx", + "host": "rum.hlx.page", + "time": "2024-08-31T08:44:14.291Z", + "timeSlot": "2024-08-31T08:44:14.291Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "eaghp7cz7kh", + "host": "rum.hlx.page", + "time": "2024-08-30T17:50:23.193Z", + "timeSlot": "2024-08-30T17:50:23.193Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "xcv6f3lcug", + "host": "rum.hlx.page", + "time": "2024-08-31T01:18:20.599Z", + "timeSlot": "2024-08-31T01:18:20.599Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e6ba4y6xojs", + "host": "rum.hlx.page", + "time": "2024-08-31T16:28:08.929Z", + "timeSlot": "2024-08-31T16:28:08.929Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vty83yndar", + "host": "rum.hlx.page", + "time": "2024-08-30T20:12:35.141Z", + "timeSlot": "2024-08-30T20:12:35.141Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "q96gdv91zx", + "host": "rum.hlx.page", + "time": "2024-09-01T15:51:32.665Z", + "timeSlot": "2024-09-01T15:51:32.665Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gzz4wt0ppwi", + "host": "rum.hlx.page", + "time": "2024-08-30T19:39:52.330Z", + "timeSlot": "2024-08-30T19:39:52.330Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "wopgklz2zj", + "host": "rum.hlx.page", + "time": "2024-09-02T00:57:06.562Z", + "timeSlot": "2024-09-02T00:57:06.562Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0s69vh07lm5g", + "host": "rum.hlx.page", + "time": "2024-09-01T06:16:21.453Z", + "timeSlot": "2024-09-01T06:16:21.453Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pc4adeekzh", + "host": "rum.hlx.page", + "time": "2024-08-31T06:32:42.758Z", + "timeSlot": "2024-08-31T06:32:42.758Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ymdw44si3zh", + "host": "rum.hlx.page", + "time": "2024-09-01T11:54:47.985Z", + "timeSlot": "2024-09-01T11:54:47.985Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "cq5xiex4vkn", + "host": "rum.hlx.page", + "time": "2024-08-31T20:26:34.274Z", + "timeSlot": "2024-08-31T20:26:34.274Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "f5c3r84wygg", + "host": "rum.hlx.page", + "time": "2024-09-01T16:03:57.594Z", + "timeSlot": "2024-09-01T16:03:57.594Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wg7rany8pq", + "host": "rum.hlx.page", + "time": "2024-09-02T07:34:10.004Z", + "timeSlot": "2024-09-02T07:34:10.004Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ut85maimb2", + "host": "rum.hlx.page", + "time": "2024-09-02T01:23:25.905Z", + "timeSlot": "2024-09-02T01:23:25.905Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ij6wukevzan", + "host": "rum.hlx.page", + "time": "2024-08-31T20:28:16.938Z", + "timeSlot": "2024-08-31T20:28:16.938Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3ly6vo7986w", + "host": "rum.hlx.page", + "time": "2024-09-01T12:49:06.230Z", + "timeSlot": "2024-09-01T12:49:06.230Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zrxiuwmmvg", + "host": "rum.hlx.page", + "time": "2024-08-31T09:58:59.014Z", + "timeSlot": "2024-08-31T09:58:59.014Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7i285aj77th", + "host": "rum.hlx.page", + "time": "2024-09-02T03:12:03.032Z", + "timeSlot": "2024-09-02T03:12:03.032Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xo92q61qpz8", + "host": "rum.hlx.page", + "time": "2024-09-02T10:20:02.798Z", + "timeSlot": "2024-09-02T10:20:02.798Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "aqvamb0kmc", + "host": "rum.hlx.page", + "time": "2024-08-31T02:08:45.509Z", + "timeSlot": "2024-08-31T02:08:45.509Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1ywe7k0lbz8", + "host": "rum.hlx.page", + "time": "2024-09-01T06:20:54.305Z", + "timeSlot": "2024-09-01T06:20:54.305Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "hbv66v810c", + "host": "rum.hlx.page", + "time": "2024-09-02T04:45:30.351Z", + "timeSlot": "2024-09-02T04:45:30.351Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wzbj9l69tk", + "host": "rum.hlx.page", + "time": "2024-08-31T15:25:19.771Z", + "timeSlot": "2024-08-31T15:25:19.771Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qgnkw39gjpj", + "host": "rum.hlx.page", + "time": "2024-09-02T04:20:51.259Z", + "timeSlot": "2024-09-02T04:20:51.259Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "16oyvo1oev1", + "host": "rum.hlx.page", + "time": "2024-09-01T16:12:49.305Z", + "timeSlot": "2024-09-01T16:12:49.305Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jx6nckf8tf", + "host": "rum.hlx.page", + "time": "2024-09-01T00:24:13.708Z", + "timeSlot": "2024-09-01T00:24:13.708Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "vu3kospqtfg", + "host": "rum.hlx.page", + "time": "2024-08-30T16:36:06.749Z", + "timeSlot": "2024-08-30T16:36:06.749Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "02zffg16x14t", + "host": "rum.hlx.page", + "time": "2024-08-30T20:07:21.499Z", + "timeSlot": "2024-08-30T20:07:21.499Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t2cc8dpzf", + "host": "rum.hlx.page", + "time": "2024-08-31T21:00:42.694Z", + "timeSlot": "2024-08-31T21:00:42.694Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "iuduqrd0zuh", + "host": "rum.hlx.page", + "time": "2024-09-01T05:55:55.112Z", + "timeSlot": "2024-09-01T05:55:55.112Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "81rgo0cai2a", + "host": "rum.hlx.page", + "time": "2024-08-30T16:59:53.982Z", + "timeSlot": "2024-08-30T16:59:53.982Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "66ul5qwm2sv", + "host": "rum.hlx.page", + "time": "2024-08-31T01:13:00.813Z", + "timeSlot": "2024-08-31T01:13:00.813Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s4wvu1o6st", + "host": "rum.hlx.page", + "time": "2024-09-01T08:53:59.982Z", + "timeSlot": "2024-09-01T08:53:59.982Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pgvvd37n03", + "host": "rum.hlx.page", + "time": "2024-09-02T04:23:33.556Z", + "timeSlot": "2024-09-02T04:23:33.556Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0ijaot650z8", + "host": "rum.hlx.page", + "time": "2024-08-31T09:03:53.295Z", + "timeSlot": "2024-08-31T09:03:53.295Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sth9h5ngs9", + "host": "rum.hlx.page", + "time": "2024-08-30T16:24:46.515Z", + "timeSlot": "2024-08-30T16:24:46.515Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bn81rivs0uj", + "host": "rum.hlx.page", + "time": "2024-09-01T04:40:46.452Z", + "timeSlot": "2024-09-01T04:40:46.452Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g2qptstmlag", + "host": "rum.hlx.page", + "time": "2024-09-02T07:41:52.823Z", + "timeSlot": "2024-09-02T07:41:52.823Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jfkp0slhx1", + "host": "rum.hlx.page", + "time": "2024-09-01T08:51:50.039Z", + "timeSlot": "2024-09-01T08:51:50.039Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "roa2qmfy30j", + "host": "rum.hlx.page", + "time": "2024-09-01T20:20:21.730Z", + "timeSlot": "2024-09-01T20:20:21.730Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sn03p13ptei", + "host": "rum.hlx.page", + "time": "2024-08-31T13:37:31.797Z", + "timeSlot": "2024-08-31T13:37:31.797Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "4kr5psyqmww", + "host": "rum.hlx.page", + "time": "2024-08-31T00:10:37.893Z", + "timeSlot": "2024-08-31T00:10:37.893Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r6hvltle26f", + "host": "rum.hlx.page", + "time": "2024-09-02T03:08:57.804Z", + "timeSlot": "2024-09-02T03:08:57.804Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "su9ejd0pji", + "host": "rum.hlx.page", + "time": "2024-08-31T01:41:37.967Z", + "timeSlot": "2024-08-31T01:41:37.967Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ys7eaffg1t", + "host": "rum.hlx.page", + "time": "2024-09-02T11:39:42.459Z", + "timeSlot": "2024-09-02T11:39:42.459Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "5729ojl008", + "host": "rum.hlx.page", + "time": "2024-08-31T20:01:12.877Z", + "timeSlot": "2024-08-31T20:01:12.877Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rpwwlxl8x2", + "host": "rum.hlx.page", + "time": "2024-08-31T06:11:06.600Z", + "timeSlot": "2024-08-31T06:11:06.600Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x98t3gry68", + "host": "rum.hlx.page", + "time": "2024-09-02T10:15:24.045Z", + "timeSlot": "2024-09-02T10:15:24.045Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9eaml9qimd7", + "host": "rum.hlx.page", + "time": "2024-08-31T21:23:55.732Z", + "timeSlot": "2024-08-31T21:23:55.732Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7cn9dj9czfr", + "host": "rum.hlx.page", + "time": "2024-09-01T16:53:29.820Z", + "timeSlot": "2024-09-01T16:53:29.820Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "bne9htzmapv", + "host": "rum.hlx.page", + "time": "2024-09-02T13:35:42.698Z", + "timeSlot": "2024-09-02T13:35:42.698Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "e0tvqck7tx9", + "host": "rum.hlx.page", + "time": "2024-08-31T01:58:51.221Z", + "timeSlot": "2024-08-31T01:58:51.221Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yj829lkyzk", + "host": "rum.hlx.page", + "time": "2024-08-31T10:44:19.407Z", + "timeSlot": "2024-08-31T10:44:19.407Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ixohm2qhm4", + "host": "rum.hlx.page", + "time": "2024-08-31T09:08:53.627Z", + "timeSlot": "2024-08-31T09:08:53.627Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z4c6xaouyqc", + "host": "rum.hlx.page", + "time": "2024-08-30T16:14:52.388Z", + "timeSlot": "2024-08-30T16:14:52.388Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tru0o7tn5k", + "host": "rum.hlx.page", + "time": "2024-08-30T15:15:29.599Z", + "timeSlot": "2024-08-30T15:15:29.599Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "7eq8et6d9uh", + "host": "rum.hlx.page", + "time": "2024-09-01T08:38:12.493Z", + "timeSlot": "2024-09-01T08:38:12.493Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "535j3kc8v2v", + "host": "rum.hlx.page", + "time": "2024-08-31T02:11:09.490Z", + "timeSlot": "2024-08-31T02:11:09.490Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sur1pr4xy8k", + "host": "rum.hlx.page", + "time": "2024-09-02T04:13:17.146Z", + "timeSlot": "2024-09-02T04:13:17.146Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "37xxu37zxcu", + "host": "rum.hlx.page", + "time": "2024-08-30T22:01:22.523Z", + "timeSlot": "2024-08-30T22:01:22.523Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "avnz75f5t3o", + "host": "rum.hlx.page", + "time": "2024-09-02T09:35:55.153Z", + "timeSlot": "2024-09-02T09:35:55.153Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "t4vd2k5o05m", + "host": "rum.hlx.page", + "time": "2024-09-01T08:21:43.638Z", + "timeSlot": "2024-09-01T08:21:43.638Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rj7n9jbf3pl", + "host": "rum.hlx.page", + "time": "2024-08-31T18:04:16.973Z", + "timeSlot": "2024-08-31T18:04:16.973Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6yzdzqldq9y", + "host": "rum.hlx.page", + "time": "2024-08-31T13:40:35.090Z", + "timeSlot": "2024-08-31T13:40:35.090Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ms1cqd6ii6r", + "host": "rum.hlx.page", + "time": "2024-09-01T19:23:36.650Z", + "timeSlot": "2024-09-01T19:23:36.650Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "qis21j8yep", + "host": "rum.hlx.page", + "time": "2024-08-31T08:55:22.999Z", + "timeSlot": "2024-08-31T08:55:22.999Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "kyd1ylxvhgd", + "host": "rum.hlx.page", + "time": "2024-09-01T13:29:38.056Z", + "timeSlot": "2024-09-01T13:29:38.056Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jdjd724v5bh", + "host": "rum.hlx.page", + "time": "2024-09-01T06:34:49.579Z", + "timeSlot": "2024-09-01T06:34:49.579Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bgqmmra8l77", + "host": "rum.hlx.page", + "time": "2024-08-30T20:41:48.921Z", + "timeSlot": "2024-08-30T20:41:48.921Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "oku96rj3je", + "host": "rum.hlx.page", + "time": "2024-08-31T08:15:41.589Z", + "timeSlot": "2024-08-31T08:15:41.589Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wmfxaye9x5h", + "host": "rum.hlx.page", + "time": "2024-08-31T19:39:49.034Z", + "timeSlot": "2024-08-31T19:39:49.034Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pfuxcn4fqv", + "host": "rum.hlx.page", + "time": "2024-08-31T05:55:07.992Z", + "timeSlot": "2024-08-31T05:55:07.992Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jwsdogx1i7", + "host": "rum.hlx.page", + "time": "2024-09-01T16:08:20.793Z", + "timeSlot": "2024-09-01T16:08:20.793Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7xgj6qapj4p", + "host": "rum.hlx.page", + "time": "2024-08-30T19:56:29.240Z", + "timeSlot": "2024-08-30T19:56:29.240Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "p4kjr8dqgt", + "host": "rum.hlx.page", + "time": "2024-08-31T07:25:06.881Z", + "timeSlot": "2024-08-31T07:25:06.881Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tdmknztr0n", + "host": "rum.hlx.page", + "time": "2024-09-02T13:33:24.842Z", + "timeSlot": "2024-09-02T13:33:24.842Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "r1ij87tg37e", + "host": "rum.hlx.page", + "time": "2024-09-01T05:08:51.228Z", + "timeSlot": "2024-09-01T05:08:51.228Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8j76tk7u9xd", + "host": "rum.hlx.page", + "time": "2024-09-01T15:31:47.352Z", + "timeSlot": "2024-09-01T15:31:47.352Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zftb9fip99c", + "host": "rum.hlx.page", + "time": "2024-08-31T08:27:46.409Z", + "timeSlot": "2024-08-31T08:27:46.409Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "69k4fltqodb", + "host": "rum.hlx.page", + "time": "2024-08-30T23:45:00.643Z", + "timeSlot": "2024-08-30T23:45:00.643Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "az2hmbxi25n", + "host": "rum.hlx.page", + "time": "2024-09-01T08:39:29.221Z", + "timeSlot": "2024-09-01T08:39:29.221Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3zylkyd5wqa", + "host": "rum.hlx.page", + "time": "2024-08-31T05:17:35.115Z", + "timeSlot": "2024-08-31T05:17:35.115Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y61ccww5jfl", + "host": "rum.hlx.page", + "time": "2024-09-01T08:57:35.231Z", + "timeSlot": "2024-09-01T08:57:35.231Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r8idyiislps", + "host": "rum.hlx.page", + "time": "2024-08-31T18:48:37.615Z", + "timeSlot": "2024-08-31T18:48:37.615Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "aw2nmfck8zf", + "host": "rum.hlx.page", + "time": "2024-09-01T00:12:12.804Z", + "timeSlot": "2024-09-01T00:12:12.804Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "n3napb6atn", + "host": "rum.hlx.page", + "time": "2024-08-31T07:09:44.189Z", + "timeSlot": "2024-08-31T07:09:44.189Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "7qhjiulrtob", + "host": "rum.hlx.page", + "time": "2024-09-01T22:22:35.000Z", + "timeSlot": "2024-09-01T22:22:35.000Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xx2lb1mta9n", + "host": "rum.hlx.page", + "time": "2024-08-30T18:00:38.438Z", + "timeSlot": "2024-08-30T18:00:38.438Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g9yp6h2ahr8", + "host": "rum.hlx.page", + "time": "2024-08-31T00:47:41.959Z", + "timeSlot": "2024-08-31T00:47:41.959Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "amhdevg8ob", + "host": "rum.hlx.page", + "time": "2024-09-01T13:48:58.122Z", + "timeSlot": "2024-09-01T13:48:58.122Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4ueql8hwvf6", + "host": "rum.hlx.page", + "time": "2024-08-31T20:18:10.080Z", + "timeSlot": "2024-08-31T20:18:10.080Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "iycssthtoj9", + "host": "rum.hlx.page", + "time": "2024-08-31T21:44:01.067Z", + "timeSlot": "2024-08-31T21:44:01.067Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x94hhhtqa9l", + "host": "rum.hlx.page", + "time": "2024-09-01T02:17:01.448Z", + "timeSlot": "2024-09-01T02:17:01.448Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "o2nnu5zjc4k", + "host": "rum.hlx.page", + "time": "2024-09-01T20:06:07.144Z", + "timeSlot": "2024-09-01T20:06:07.144Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mafbsdaofa", + "host": "rum.hlx.page", + "time": "2024-08-31T06:15:31.369Z", + "timeSlot": "2024-08-31T06:15:31.369Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nsi9wvw5ng8", + "host": "rum.hlx.page", + "time": "2024-09-01T05:05:06.234Z", + "timeSlot": "2024-09-01T05:05:06.234Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ukm41p716ii", + "host": "rum.hlx.page", + "time": "2024-08-31T06:33:26.265Z", + "timeSlot": "2024-08-31T06:33:26.265Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3a43fltx6qw", + "host": "rum.hlx.page", + "time": "2024-08-31T02:24:17.578Z", + "timeSlot": "2024-08-31T02:24:17.578Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "j22q7riq679", + "host": "rum.hlx.page", + "time": "2024-08-31T17:48:59.846Z", + "timeSlot": "2024-08-31T17:48:59.846Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8a94zij6l0a", + "host": "rum.hlx.page", + "time": "2024-08-30T22:46:23.060Z", + "timeSlot": "2024-08-30T22:46:23.060Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "yqgd5xzlbsj", + "host": "rum.hlx.page", + "time": "2024-08-31T20:14:23.592Z", + "timeSlot": "2024-08-31T20:14:23.592Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m9nbmfoirz", + "host": "rum.hlx.page", + "time": "2024-09-01T02:42:00.148Z", + "timeSlot": "2024-09-01T02:42:00.148Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ca2z5nw0kt", + "host": "rum.hlx.page", + "time": "2024-09-02T12:17:15.959Z", + "timeSlot": "2024-09-02T12:17:15.959Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pb5c3ykspt", + "host": "rum.hlx.page", + "time": "2024-08-31T15:18:44.250Z", + "timeSlot": "2024-08-31T15:18:44.250Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pprtm56jcb", + "host": "rum.hlx.page", + "time": "2024-08-31T01:40:58.554Z", + "timeSlot": "2024-08-31T01:40:58.554Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "koj2um5kx5a", + "host": "rum.hlx.page", + "time": "2024-09-02T03:36:00.936Z", + "timeSlot": "2024-09-02T03:36:00.936Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1wdqbf46cds", + "host": "rum.hlx.page", + "time": "2024-08-31T15:38:08.352Z", + "timeSlot": "2024-08-31T15:38:08.352Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "32dmf4co37k", + "host": "rum.hlx.page", + "time": "2024-09-02T11:19:57.458Z", + "timeSlot": "2024-09-02T11:19:57.458Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m3478gd0kgs", + "host": "rum.hlx.page", + "time": "2024-08-31T01:22:32.474Z", + "timeSlot": "2024-08-31T01:22:32.474Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "f12flzwdi2f", + "host": "rum.hlx.page", + "time": "2024-09-01T05:31:02.786Z", + "timeSlot": "2024-09-01T05:31:02.786Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "iltr18i0et", + "host": "rum.hlx.page", + "time": "2024-09-02T08:03:20.047Z", + "timeSlot": "2024-09-02T08:03:20.047Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "4idhrckg57", + "host": "rum.hlx.page", + "time": "2024-08-31T06:43:13.233Z", + "timeSlot": "2024-08-31T06:43:13.233Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1j6tcy93c0q", + "host": "rum.hlx.page", + "time": "2024-09-02T10:10:51.641Z", + "timeSlot": "2024-09-02T10:10:51.641Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "iiap2msq4k9", + "host": "rum.hlx.page", + "time": "2024-09-01T22:13:24.086Z", + "timeSlot": "2024-09-01T22:13:24.086Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "k3ovaur4gm", + "host": "rum.hlx.page", + "time": "2024-08-30T17:26:46.638Z", + "timeSlot": "2024-08-30T17:26:46.638Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "govsv3i1qxr", + "host": "rum.hlx.page", + "time": "2024-09-01T21:09:21.846Z", + "timeSlot": "2024-09-01T21:09:21.846Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qcmhwqa6lm", + "host": "rum.hlx.page", + "time": "2024-09-01T12:17:58.069Z", + "timeSlot": "2024-09-01T12:17:58.069Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3rafujika7a", + "host": "rum.hlx.page", + "time": "2024-09-01T23:04:45.742Z", + "timeSlot": "2024-09-01T23:04:45.742Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "70gc53oc7dg", + "host": "rum.hlx.page", + "time": "2024-08-30T21:39:43.718Z", + "timeSlot": "2024-08-30T21:39:43.718Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jqj7ouv5kx", + "host": "rum.hlx.page", + "time": "2024-08-31T08:22:44.122Z", + "timeSlot": "2024-08-31T08:22:44.122Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y4y2c211u9", + "host": "rum.hlx.page", + "time": "2024-08-31T19:56:51.510Z", + "timeSlot": "2024-08-31T19:56:51.510Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "8fitu5759x3", + "host": "rum.hlx.page", + "time": "2024-08-31T01:23:30.425Z", + "timeSlot": "2024-08-31T01:23:30.425Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pwd54syoqg9", + "host": "rum.hlx.page", + "time": "2024-09-02T06:18:19.461Z", + "timeSlot": "2024-09-02T06:18:19.461Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "73l274d77wb", + "host": "rum.hlx.page", + "time": "2024-09-02T14:21:31.080Z", + "timeSlot": "2024-09-02T14:21:31.080Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qnquphlqqyp", + "host": "rum.hlx.page", + "time": "2024-09-01T17:49:57.803Z", + "timeSlot": "2024-09-01T17:49:57.803Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cm5grg326ke", + "host": "rum.hlx.page", + "time": "2024-08-31T08:50:05.863Z", + "timeSlot": "2024-08-31T08:50:05.863Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wht57r5rixo", + "host": "rum.hlx.page", + "time": "2024-09-01T00:52:42.696Z", + "timeSlot": "2024-09-01T00:52:42.696Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xtsw3dnq3wq", + "host": "rum.hlx.page", + "time": "2024-08-31T12:38:00.298Z", + "timeSlot": "2024-08-31T12:38:00.298Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "i8elb3gzf9", + "host": "rum.hlx.page", + "time": "2024-09-01T20:03:49.979Z", + "timeSlot": "2024-09-01T20:03:49.979Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ud5td1s45gm", + "host": "rum.hlx.page", + "time": "2024-08-31T20:08:45.034Z", + "timeSlot": "2024-08-31T20:08:45.034Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "28dqwc03s33j", + "host": "rum.hlx.page", + "time": "2024-08-31T08:42:06.689Z", + "timeSlot": "2024-08-31T08:42:06.689Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xsxyfsdh6xj", + "host": "rum.hlx.page", + "time": "2024-09-01T08:57:05.771Z", + "timeSlot": "2024-09-01T08:57:05.771Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s0gbkhjwr2", + "host": "rum.hlx.page", + "time": "2024-08-30T19:39:35.337Z", + "timeSlot": "2024-08-30T19:39:35.337Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "320hd1zpb6z", + "host": "rum.hlx.page", + "time": "2024-09-01T23:03:56.819Z", + "timeSlot": "2024-09-01T23:03:56.819Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2ib25kfxp0x", + "host": "rum.hlx.page", + "time": "2024-08-31T18:20:22.861Z", + "timeSlot": "2024-08-31T18:20:22.861Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xvh0nk80qcn", + "host": "rum.hlx.page", + "time": "2024-09-02T12:14:02.272Z", + "timeSlot": "2024-09-02T12:14:02.272Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "wmrfv8fg54k", + "host": "rum.hlx.page", + "time": "2024-08-30T19:14:07.810Z", + "timeSlot": "2024-08-30T19:14:07.810Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "36itvrvittj", + "host": "rum.hlx.page", + "time": "2024-09-02T03:56:52.935Z", + "timeSlot": "2024-09-02T03:56:52.935Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cm8q2s2taje", + "host": "rum.hlx.page", + "time": "2024-08-31T22:33:58.182Z", + "timeSlot": "2024-08-31T22:33:58.182Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sh6zsa3yew", + "host": "rum.hlx.page", + "time": "2024-08-31T14:11:38.039Z", + "timeSlot": "2024-08-31T14:11:38.039Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "79w2srq1zpm", + "host": "rum.hlx.page", + "time": "2024-09-01T12:21:07.468Z", + "timeSlot": "2024-09-01T12:21:07.468Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "daieebryzc6", + "host": "rum.hlx.page", + "time": "2024-09-01T05:43:08.397Z", + "timeSlot": "2024-09-01T05:43:08.397Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zf2tyixsl6h", + "host": "rum.hlx.page", + "time": "2024-09-01T12:02:45.976Z", + "timeSlot": "2024-09-01T12:02:45.976Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cxks286lum7", + "host": "rum.hlx.page", + "time": "2024-09-01T13:22:10.989Z", + "timeSlot": "2024-09-01T13:22:10.989Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pybdvqafad8", + "host": "rum.hlx.page", + "time": "2024-09-02T06:44:27.426Z", + "timeSlot": "2024-09-02T06:44:27.426Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "x579y0xjoqn", + "host": "rum.hlx.page", + "time": "2024-09-02T09:55:56.004Z", + "timeSlot": "2024-09-02T09:55:56.004Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z8o30q3a8rq", + "host": "rum.hlx.page", + "time": "2024-09-01T16:58:12.026Z", + "timeSlot": "2024-09-01T16:58:12.026Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3w58wkweg9p", + "host": "rum.hlx.page", + "time": "2024-08-31T13:26:08.973Z", + "timeSlot": "2024-08-31T13:26:08.973Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5gxfqrok2gi", + "host": "rum.hlx.page", + "time": "2024-09-01T21:52:45.823Z", + "timeSlot": "2024-09-01T21:52:45.823Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "z8o664kinur", + "host": "rum.hlx.page", + "time": "2024-09-01T00:30:56.343Z", + "timeSlot": "2024-09-01T00:30:56.343Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k16lxp4dg6", + "host": "rum.hlx.page", + "time": "2024-08-31T15:33:41.804Z", + "timeSlot": "2024-08-31T15:33:41.804Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vxmdvzjjnsi", + "host": "rum.hlx.page", + "time": "2024-09-01T03:09:05.095Z", + "timeSlot": "2024-09-01T03:09:05.095Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lc2t32rfux", + "host": "rum.hlx.page", + "time": "2024-09-02T10:34:54.508Z", + "timeSlot": "2024-09-02T10:34:54.508Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "o2jo6yfs76", + "host": "rum.hlx.page", + "time": "2024-09-01T16:09:33.360Z", + "timeSlot": "2024-09-01T16:09:33.360Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4v0ua5jlzt", + "host": "rum.hlx.page", + "time": "2024-08-31T05:34:29.495Z", + "timeSlot": "2024-08-31T05:34:29.495Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "aa90ujfhgjf", + "host": "rum.hlx.page", + "time": "2024-08-31T05:17:55.678Z", + "timeSlot": "2024-08-31T05:17:55.678Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2xqzwpjvyov", + "host": "rum.hlx.page", + "time": "2024-09-01T18:05:06.056Z", + "timeSlot": "2024-09-01T18:05:06.056Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s49390ea89", + "host": "rum.hlx.page", + "time": "2024-08-30T16:02:44.825Z", + "timeSlot": "2024-08-30T16:02:44.825Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r24tkpy35i", + "host": "rum.hlx.page", + "time": "2024-08-31T11:18:18.018Z", + "timeSlot": "2024-08-31T11:18:18.018Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tvb9yerufn", + "host": "rum.hlx.page", + "time": "2024-09-01T02:36:58.783Z", + "timeSlot": "2024-09-01T02:36:58.783Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y75i47hab4", + "host": "rum.hlx.page", + "time": "2024-08-31T10:15:07.511Z", + "timeSlot": "2024-08-31T10:15:07.511Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "176t7x9d0ns", + "host": "rum.hlx.page", + "time": "2024-08-30T22:39:00.270Z", + "timeSlot": "2024-08-30T22:39:00.270Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "al9x1hyiy8w", + "host": "rum.hlx.page", + "time": "2024-08-30T15:35:00.640Z", + "timeSlot": "2024-08-30T15:35:00.640Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dh6lfthzkab", + "host": "rum.hlx.page", + "time": "2024-08-31T22:51:07.597Z", + "timeSlot": "2024-08-31T22:51:07.597Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "syboi6vt4ee", + "host": "rum.hlx.page", + "time": "2024-09-01T15:23:35.904Z", + "timeSlot": "2024-09-01T15:23:35.904Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cructnhnzdp", + "host": "rum.hlx.page", + "time": "2024-08-31T14:30:59.019Z", + "timeSlot": "2024-08-31T14:30:59.019Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "gacrdhs8q3w", + "host": "rum.hlx.page", + "time": "2024-09-02T08:09:51.593Z", + "timeSlot": "2024-09-02T08:09:51.593Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nom2nz2p22c", + "host": "rum.hlx.page", + "time": "2024-09-02T06:11:29.506Z", + "timeSlot": "2024-09-02T06:11:29.506Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lbeoycmyb8r", + "host": "rum.hlx.page", + "time": "2024-08-31T16:47:37.473Z", + "timeSlot": "2024-08-31T16:47:37.473Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "v8mcpez13g8", + "host": "rum.hlx.page", + "time": "2024-09-01T03:40:21.325Z", + "timeSlot": "2024-09-01T03:40:21.325Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pe13xq1dcb", + "host": "rum.hlx.page", + "time": "2024-09-01T21:53:35.497Z", + "timeSlot": "2024-09-01T21:53:35.497Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "d4hgzr7lpi", + "host": "rum.hlx.page", + "time": "2024-09-01T20:31:37.969Z", + "timeSlot": "2024-09-01T20:31:37.969Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5pfm6091mel", + "host": "rum.hlx.page", + "time": "2024-08-31T08:17:55.867Z", + "timeSlot": "2024-08-31T08:17:55.867Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nmnoc9rq0a", + "host": "rum.hlx.page", + "time": "2024-09-02T13:42:25.860Z", + "timeSlot": "2024-09-02T13:42:25.860Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "99vffewnhsr", + "host": "rum.hlx.page", + "time": "2024-08-31T17:26:05.724Z", + "timeSlot": "2024-08-31T17:26:05.724Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "7n32pshkxq5", + "host": "rum.hlx.page", + "time": "2024-09-02T03:54:05.415Z", + "timeSlot": "2024-09-02T03:54:05.415Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "sgy1lcswkcm", + "host": "rum.hlx.page", + "time": "2024-09-02T04:20:47.999Z", + "timeSlot": "2024-09-02T04:20:47.999Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bkxahk7glaa", + "host": "rum.hlx.page", + "time": "2024-09-01T06:46:07.548Z", + "timeSlot": "2024-09-01T06:46:07.548Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xgis0f2lq6q", + "host": "rum.hlx.page", + "time": "2024-09-02T14:57:52.711Z", + "timeSlot": "2024-09-02T14:57:52.711Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "chr1c9ubbuf", + "host": "rum.hlx.page", + "time": "2024-08-30T17:00:27.663Z", + "timeSlot": "2024-08-30T17:00:27.663Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "duss670vnw", + "host": "rum.hlx.page", + "time": "2024-09-02T14:25:17.260Z", + "timeSlot": "2024-09-02T14:25:17.260Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2pt0glu36x7", + "host": "rum.hlx.page", + "time": "2024-09-01T05:54:33.074Z", + "timeSlot": "2024-09-01T05:54:33.074Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "itny7gpkidb", + "host": "rum.hlx.page", + "time": "2024-09-02T03:02:33.858Z", + "timeSlot": "2024-09-02T03:02:33.858Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m7bicxo5c4c", + "host": "rum.hlx.page", + "time": "2024-09-02T02:49:02.806Z", + "timeSlot": "2024-09-02T02:49:02.806Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "x2plpuof3n9", + "host": "rum.hlx.page", + "time": "2024-09-01T14:51:59.699Z", + "timeSlot": "2024-09-01T14:51:59.699Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pw0qa82tckr", + "host": "rum.hlx.page", + "time": "2024-09-01T03:44:02.217Z", + "timeSlot": "2024-09-01T03:44:02.217Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "r72xokres3", + "host": "rum.hlx.page", + "time": "2024-09-01T05:45:24.967Z", + "timeSlot": "2024-09-01T05:45:24.967Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jytpm5u4h9a", + "host": "rum.hlx.page", + "time": "2024-09-01T00:35:54.310Z", + "timeSlot": "2024-09-01T00:35:54.310Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3git34pgzej", + "host": "rum.hlx.page", + "time": "2024-09-01T02:59:48.977Z", + "timeSlot": "2024-09-01T02:59:48.977Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "spcemk462mp", + "host": "rum.hlx.page", + "time": "2024-09-01T05:24:26.706Z", + "timeSlot": "2024-09-01T05:24:26.706Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gstrylu2qvk", + "host": "rum.hlx.page", + "time": "2024-08-31T18:27:44.015Z", + "timeSlot": "2024-08-31T18:27:44.015Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "u7aj15ue3lb", + "host": "rum.hlx.page", + "time": "2024-08-31T14:10:50.017Z", + "timeSlot": "2024-08-31T14:10:50.017Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jpfrbjp5p7j", + "host": "rum.hlx.page", + "time": "2024-09-01T00:03:40.504Z", + "timeSlot": "2024-09-01T00:03:40.504Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z78142glkn", + "host": "rum.hlx.page", + "time": "2024-09-01T06:25:01.978Z", + "timeSlot": "2024-09-01T06:25:01.978Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zczdaxrz6vr", + "host": "rum.hlx.page", + "time": "2024-08-30T21:51:00.779Z", + "timeSlot": "2024-08-30T21:51:00.779Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7qrjmxcc6uu", + "host": "rum.hlx.page", + "time": "2024-08-31T01:35:57.433Z", + "timeSlot": "2024-08-31T01:35:57.433Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ebxm2b9ev3s", + "host": "rum.hlx.page", + "time": "2024-09-01T12:19:11.624Z", + "timeSlot": "2024-09-01T12:19:11.624Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dezcv0lj52", + "host": "rum.hlx.page", + "time": "2024-09-01T17:18:31.625Z", + "timeSlot": "2024-09-01T17:18:31.625Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wt27y49o9zr", + "host": "rum.hlx.page", + "time": "2024-08-31T23:35:48.649Z", + "timeSlot": "2024-08-31T23:35:48.649Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8qacfxtsvsp", + "host": "rum.hlx.page", + "time": "2024-09-01T23:11:34.794Z", + "timeSlot": "2024-09-01T23:11:34.794Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "knmmmqrfy2l", + "host": "rum.hlx.page", + "time": "2024-08-30T20:16:39.116Z", + "timeSlot": "2024-08-30T20:16:39.116Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "h7lo4tr4gj", + "host": "rum.hlx.page", + "time": "2024-09-01T05:52:36.819Z", + "timeSlot": "2024-09-01T05:52:36.819Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0yq8oawtzzc", + "host": "rum.hlx.page", + "time": "2024-09-02T14:26:54.811Z", + "timeSlot": "2024-09-02T14:26:54.811Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "neo5t964xxi", + "host": "rum.hlx.page", + "time": "2024-08-31T08:25:31.218Z", + "timeSlot": "2024-08-31T08:25:31.218Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fc6p1xbuacb", + "host": "rum.hlx.page", + "time": "2024-09-01T06:30:13.843Z", + "timeSlot": "2024-09-01T06:30:13.843Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rlhbrfijxll", + "host": "rum.hlx.page", + "time": "2024-09-02T12:12:48.633Z", + "timeSlot": "2024-09-02T12:12:48.633Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "np09k4nohwp", + "host": "rum.hlx.page", + "time": "2024-09-01T07:56:13.807Z", + "timeSlot": "2024-09-01T07:56:13.807Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bgkyozp3vft", + "host": "rum.hlx.page", + "time": "2024-08-31T19:08:22.594Z", + "timeSlot": "2024-08-31T19:08:22.594Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jhw2kfk4aa", + "host": "rum.hlx.page", + "time": "2024-09-01T14:14:39.423Z", + "timeSlot": "2024-09-01T14:14:39.423Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "z07mp4cvbzt", + "host": "rum.hlx.page", + "time": "2024-09-01T21:13:17.687Z", + "timeSlot": "2024-09-01T21:13:17.687Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "t72e3qa01ub", + "host": "rum.hlx.page", + "time": "2024-09-02T03:33:59.950Z", + "timeSlot": "2024-09-02T03:33:59.950Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "akwh9ak28hl", + "host": "rum.hlx.page", + "time": "2024-08-31T15:39:55.110Z", + "timeSlot": "2024-08-31T15:39:55.110Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "puxjpycddzb", + "host": "rum.hlx.page", + "time": "2024-09-01T03:15:53.562Z", + "timeSlot": "2024-09-01T03:15:53.562Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4v92tj8ijvl", + "host": "rum.hlx.page", + "time": "2024-08-31T10:28:27.406Z", + "timeSlot": "2024-08-31T10:28:27.406Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wv0s5r72hpr", + "host": "rum.hlx.page", + "time": "2024-09-02T08:22:12.946Z", + "timeSlot": "2024-09-02T08:22:12.946Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "os6wg9qgrda", + "host": "rum.hlx.page", + "time": "2024-08-31T20:42:43.611Z", + "timeSlot": "2024-08-31T20:42:43.611Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "vp03o13fg6k", + "host": "rum.hlx.page", + "time": "2024-09-01T18:05:03.912Z", + "timeSlot": "2024-09-01T18:05:03.912Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fydr765ywbc", + "host": "rum.hlx.page", + "time": "2024-09-01T10:47:33.887Z", + "timeSlot": "2024-09-01T10:47:33.887Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lsby0ouqgo", + "host": "rum.hlx.page", + "time": "2024-08-30T22:46:13.464Z", + "timeSlot": "2024-08-30T22:46:13.464Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7ntyd4aadqc", + "host": "rum.hlx.page", + "time": "2024-09-02T05:21:15.845Z", + "timeSlot": "2024-09-02T05:21:15.845Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "88gmu966608", + "host": "rum.hlx.page", + "time": "2024-09-01T05:02:04.258Z", + "timeSlot": "2024-09-01T05:02:04.258Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1ce8jcl51a2", + "host": "rum.hlx.page", + "time": "2024-09-02T05:29:58.656Z", + "timeSlot": "2024-09-02T05:29:58.656Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zv6gy08v6y", + "host": "rum.hlx.page", + "time": "2024-08-31T06:38:15.555Z", + "timeSlot": "2024-08-31T06:38:15.555Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fkjv57x85qh", + "host": "rum.hlx.page", + "time": "2024-09-02T04:11:39.535Z", + "timeSlot": "2024-09-02T04:11:39.535Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tqr8k29w17o", + "host": "rum.hlx.page", + "time": "2024-09-01T12:50:37.121Z", + "timeSlot": "2024-09-01T12:50:37.121Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "jp63rv49ujj", + "host": "rum.hlx.page", + "time": "2024-08-31T06:40:31.957Z", + "timeSlot": "2024-08-31T06:40:31.957Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ik352tk82a", + "host": "rum.hlx.page", + "time": "2024-09-02T06:06:44.033Z", + "timeSlot": "2024-09-02T06:06:44.033Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xhtbm678vx", + "host": "rum.hlx.page", + "time": "2024-09-01T22:20:53.353Z", + "timeSlot": "2024-09-01T22:20:53.353Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6ja1hj9ajrb", + "host": "rum.hlx.page", + "time": "2024-09-01T17:32:05.065Z", + "timeSlot": "2024-09-01T17:32:05.065Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gla7tl9mvcs", + "host": "rum.hlx.page", + "time": "2024-09-01T15:04:54.009Z", + "timeSlot": "2024-09-01T15:04:54.009Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "neblwq73syp", + "host": "rum.hlx.page", + "time": "2024-09-01T06:01:30.392Z", + "timeSlot": "2024-09-01T06:01:30.392Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "cyvlxcy05n", + "host": "rum.hlx.page", + "time": "2024-08-31T14:19:31.769Z", + "timeSlot": "2024-08-31T14:19:31.769Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4g1xbn2ip5b", + "host": "rum.hlx.page", + "time": "2024-08-31T10:15:51.685Z", + "timeSlot": "2024-08-31T10:15:51.685Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z8d1arxvkh", + "host": "rum.hlx.page", + "time": "2024-09-01T02:44:11.316Z", + "timeSlot": "2024-09-01T02:44:11.316Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "930lpldrc8", + "host": "rum.hlx.page", + "time": "2024-08-31T19:41:00.908Z", + "timeSlot": "2024-08-31T19:41:00.908Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "brdcfk8j3jo", + "host": "rum.hlx.page", + "time": "2024-09-01T10:27:11.718Z", + "timeSlot": "2024-09-01T10:27:11.718Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "dz0o5zig3gs", + "host": "rum.hlx.page", + "time": "2024-08-30T23:44:07.615Z", + "timeSlot": "2024-08-30T23:44:07.615Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a1r5zbw4acn", + "host": "rum.hlx.page", + "time": "2024-09-01T16:07:33.769Z", + "timeSlot": "2024-09-01T16:07:33.769Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xoabe3xqda", + "host": "rum.hlx.page", + "time": "2024-09-01T22:21:22.077Z", + "timeSlot": "2024-09-01T22:21:22.077Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gm3ck3cbh3u", + "host": "rum.hlx.page", + "time": "2024-08-30T22:24:13.952Z", + "timeSlot": "2024-08-30T22:24:13.952Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "htkkqz6sd4o", + "host": "rum.hlx.page", + "time": "2024-08-31T17:47:15.947Z", + "timeSlot": "2024-08-31T17:47:15.947Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tem7nfr98f", + "host": "rum.hlx.page", + "time": "2024-09-01T03:41:14.532Z", + "timeSlot": "2024-09-01T03:41:14.532Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "15grtwr3voz", + "host": "rum.hlx.page", + "time": "2024-08-31T18:53:42.682Z", + "timeSlot": "2024-08-31T18:53:42.682Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2uyo7llto5g", + "host": "rum.hlx.page", + "time": "2024-09-01T01:13:12.904Z", + "timeSlot": "2024-09-01T01:13:12.904Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "p0dl40j18hr", + "host": "rum.hlx.page", + "time": "2024-08-30T21:56:42.896Z", + "timeSlot": "2024-08-30T21:56:42.896Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xaq3ochvhv", + "host": "rum.hlx.page", + "time": "2024-09-01T17:01:36.484Z", + "timeSlot": "2024-09-01T17:01:36.484Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "novleooo5t", + "host": "rum.hlx.page", + "time": "2024-08-31T11:47:16.067Z", + "timeSlot": "2024-08-31T11:47:16.067Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a21wes3xrvr", + "host": "rum.hlx.page", + "time": "2024-08-30T16:11:28.445Z", + "timeSlot": "2024-08-30T16:11:28.445Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xq9m6ak7w6a", + "host": "rum.hlx.page", + "time": "2024-08-31T00:21:44.508Z", + "timeSlot": "2024-08-31T00:21:44.508Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7ufocpwojpn", + "host": "rum.hlx.page", + "time": "2024-09-01T20:41:36.724Z", + "timeSlot": "2024-09-01T20:41:36.724Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "c6hl74brp2f", + "host": "rum.hlx.page", + "time": "2024-09-01T10:04:56.129Z", + "timeSlot": "2024-09-01T10:04:56.129Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "o2zieoksho9", + "host": "rum.hlx.page", + "time": "2024-08-30T20:54:15.319Z", + "timeSlot": "2024-08-30T20:54:15.319Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g9bx2g3h6i9", + "host": "rum.hlx.page", + "time": "2024-08-30T22:24:14.209Z", + "timeSlot": "2024-08-30T22:24:14.209Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mxv50bznfef", + "host": "rum.hlx.page", + "time": "2024-09-02T07:13:27.356Z", + "timeSlot": "2024-09-02T07:13:27.356Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3j78t8ps0lq", + "host": "rum.hlx.page", + "time": "2024-09-01T05:58:38.639Z", + "timeSlot": "2024-09-01T05:58:38.639Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "eyub6fnllxj", + "host": "rum.hlx.page", + "time": "2024-09-01T03:05:27.795Z", + "timeSlot": "2024-09-01T03:05:27.795Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "m3e3fws2mj", + "host": "rum.hlx.page", + "time": "2024-09-01T06:45:24.355Z", + "timeSlot": "2024-09-01T06:45:24.355Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rz240hz2edm", + "host": "rum.hlx.page", + "time": "2024-08-31T07:16:46.707Z", + "timeSlot": "2024-08-31T07:16:46.707Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zx57f8vm57l", + "host": "rum.hlx.page", + "time": "2024-09-01T06:11:25.053Z", + "timeSlot": "2024-09-01T06:11:25.053Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "cp8gkrolfts", + "host": "rum.hlx.page", + "time": "2024-08-31T09:58:11.704Z", + "timeSlot": "2024-08-31T09:58:11.704Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3eq5w271huj", + "host": "rum.hlx.page", + "time": "2024-08-31T07:37:40.414Z", + "timeSlot": "2024-08-31T07:37:40.414Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "7xtws0vek3b", + "host": "rum.hlx.page", + "time": "2024-09-02T04:17:45.494Z", + "timeSlot": "2024-09-02T04:17:45.494Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wjht4ttz1br", + "host": "rum.hlx.page", + "time": "2024-09-02T08:55:53.967Z", + "timeSlot": "2024-09-02T08:55:53.967Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q417v6vw1aa", + "host": "rum.hlx.page", + "time": "2024-09-01T04:24:58.835Z", + "timeSlot": "2024-09-01T04:24:58.835Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "lbidaipa2t", + "host": "rum.hlx.page", + "time": "2024-08-30T23:19:39.207Z", + "timeSlot": "2024-08-30T23:19:39.207Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "j8md6hnaeaa", + "host": "rum.hlx.page", + "time": "2024-08-31T05:20:53.251Z", + "timeSlot": "2024-08-31T05:20:53.251Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "t9gfyj5x6ws", + "host": "rum.hlx.page", + "time": "2024-09-01T14:21:25.016Z", + "timeSlot": "2024-09-01T14:21:25.016Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1y6wd3tt1ve", + "host": "rum.hlx.page", + "time": "2024-08-30T19:41:30.492Z", + "timeSlot": "2024-08-30T19:41:30.492Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6gr433pxwif", + "host": "rum.hlx.page", + "time": "2024-09-02T09:09:07.707Z", + "timeSlot": "2024-09-02T09:09:07.707Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gx66z68u3j6", + "host": "rum.hlx.page", + "time": "2024-09-01T21:44:42.488Z", + "timeSlot": "2024-09-01T21:44:42.488Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m9gbo087o", + "host": "rum.hlx.page", + "time": "2024-08-31T07:27:45.981Z", + "timeSlot": "2024-08-31T07:27:45.981Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "lla0sd0qmyf", + "host": "rum.hlx.page", + "time": "2024-09-01T08:58:04.546Z", + "timeSlot": "2024-09-01T08:58:04.546Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h3a4r82yidr", + "host": "rum.hlx.page", + "time": "2024-08-31T17:39:42.709Z", + "timeSlot": "2024-08-31T17:39:42.709Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4l21tmv4vjf", + "host": "rum.hlx.page", + "time": "2024-08-31T01:01:24.638Z", + "timeSlot": "2024-08-31T01:01:24.638Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8da35r2peq", + "host": "rum.hlx.page", + "time": "2024-09-02T12:36:31.290Z", + "timeSlot": "2024-09-02T12:36:31.290Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ds2oz4taxdl", + "host": "rum.hlx.page", + "time": "2024-08-31T21:06:56.950Z", + "timeSlot": "2024-08-31T21:06:56.950Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "fcyp4jrccis", + "host": "rum.hlx.page", + "time": "2024-08-31T19:49:02.095Z", + "timeSlot": "2024-08-31T19:49:02.095Z", + "url": "https://www.spacecat.com/products", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rvi9wrr6d7", + "host": "rum.hlx.page", + "time": "2024-09-01T18:35:22.188Z", + "timeSlot": "2024-09-01T18:35:22.188Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "81zg5248igh", + "host": "rum.hlx.page", + "time": "2024-08-31T13:53:03.197Z", + "timeSlot": "2024-08-31T13:53:03.197Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wwwghemtj8", + "host": "rum.hlx.page", + "time": "2024-09-01T13:16:39.096Z", + "timeSlot": "2024-09-01T13:16:39.096Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1oue05ma3hb", + "host": "rum.hlx.page", + "time": "2024-08-30T23:05:02.731Z", + "timeSlot": "2024-08-30T23:05:02.731Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "6g72m1qdkxq", + "host": "rum.hlx.page", + "time": "2024-08-31T19:16:34.654Z", + "timeSlot": "2024-08-31T19:16:34.654Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3u2pi05fbuq", + "host": "rum.hlx.page", + "time": "2024-09-02T00:12:22.676Z", + "timeSlot": "2024-09-02T00:12:22.676Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lux1i3fr85n", + "host": "rum.hlx.page", + "time": "2024-08-30T15:33:38.067Z", + "timeSlot": "2024-08-30T15:33:38.067Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "iunitptua5h", + "host": "rum.hlx.page", + "time": "2024-09-01T05:53:06.445Z", + "timeSlot": "2024-09-01T05:53:06.445Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q08exot89e", + "host": "rum.hlx.page", + "time": "2024-09-02T04:40:32.588Z", + "timeSlot": "2024-09-02T04:40:32.588Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "n3yrw3pgug", + "host": "rum.hlx.page", + "time": "2024-08-31T21:34:00.059Z", + "timeSlot": "2024-08-31T21:34:00.059Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e0gvbxp1ann", + "host": "rum.hlx.page", + "time": "2024-08-31T21:51:02.458Z", + "timeSlot": "2024-08-31T21:51:02.458Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ay7wvohp8ga", + "host": "rum.hlx.page", + "time": "2024-08-31T02:34:33.582Z", + "timeSlot": "2024-08-31T02:34:33.582Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9ll00f3pk7", + "host": "rum.hlx.page", + "time": "2024-09-02T05:46:47.987Z", + "timeSlot": "2024-09-02T05:46:47.987Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3y4m7z3kvij", + "host": "rum.hlx.page", + "time": "2024-08-31T05:07:11.506Z", + "timeSlot": "2024-08-31T05:07:11.506Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bhd7x60bbon", + "host": "rum.hlx.page", + "time": "2024-08-31T08:11:27.057Z", + "timeSlot": "2024-08-31T08:11:27.057Z", + "url": "https://www.spacecat.com/products", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "iie8my1exy", + "host": "rum.hlx.page", + "time": "2024-09-01T21:50:55.160Z", + "timeSlot": "2024-09-01T21:50:55.160Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "v7f60mdwo", + "host": "rum.hlx.page", + "time": "2024-09-01T06:59:14.040Z", + "timeSlot": "2024-09-01T06:59:14.040Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dmcqv3gpt94", + "host": "rum.hlx.page", + "time": "2024-08-31T23:49:16.376Z", + "timeSlot": "2024-08-31T23:49:16.376Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4h01u81y4pg", + "host": "rum.hlx.page", + "time": "2024-08-31T18:43:09.376Z", + "timeSlot": "2024-08-31T18:43:09.376Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1g5110flhwe", + "host": "rum.hlx.page", + "time": "2024-08-31T13:20:56.571Z", + "timeSlot": "2024-08-31T13:20:56.571Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9wpl1iqcve6", + "host": "rum.hlx.page", + "time": "2024-08-31T14:10:29.741Z", + "timeSlot": "2024-08-31T14:10:29.741Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "39celogq4il", + "host": "rum.hlx.page", + "time": "2024-09-01T16:25:58.528Z", + "timeSlot": "2024-09-01T16:25:58.528Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zh6ezcygq2o", + "host": "rum.hlx.page", + "time": "2024-09-02T05:39:41.374Z", + "timeSlot": "2024-09-02T05:39:41.374Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xdzkw56x55", + "host": "rum.hlx.page", + "time": "2024-08-31T04:44:11.053Z", + "timeSlot": "2024-08-31T04:44:11.053Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jtjb8klbd3c", + "host": "rum.hlx.page", + "time": "2024-09-02T01:40:32.341Z", + "timeSlot": "2024-09-02T01:40:32.341Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bxu6w3omq9p", + "host": "rum.hlx.page", + "time": "2024-09-01T16:17:15.477Z", + "timeSlot": "2024-09-01T16:17:15.477Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bdak760f4fh", + "host": "rum.hlx.page", + "time": "2024-08-31T05:47:16.291Z", + "timeSlot": "2024-08-31T05:47:16.291Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "9om91xyspjg", + "host": "rum.hlx.page", + "time": "2024-08-30T22:20:51.192Z", + "timeSlot": "2024-08-30T22:20:51.192Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7jhyy7tobgb", + "host": "rum.hlx.page", + "time": "2024-08-31T22:16:11.149Z", + "timeSlot": "2024-08-31T22:16:11.149Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2sepk5e2tvh", + "host": "rum.hlx.page", + "time": "2024-09-01T07:50:36.838Z", + "timeSlot": "2024-09-01T07:50:36.838Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ktigfrv33c9", + "host": "rum.hlx.page", + "time": "2024-08-31T18:39:32.454Z", + "timeSlot": "2024-08-31T18:39:32.454Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1ow0drbri2v", + "host": "rum.hlx.page", + "time": "2024-08-30T18:56:27.469Z", + "timeSlot": "2024-08-30T18:56:27.469Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zrcjbp0v968", + "host": "rum.hlx.page", + "time": "2024-09-01T10:43:12.548Z", + "timeSlot": "2024-09-01T10:43:12.548Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2gvpdu7k6mu", + "host": "rum.hlx.page", + "time": "2024-09-02T12:23:23.178Z", + "timeSlot": "2024-09-02T12:23:23.178Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "tg3odjuzjnl", + "host": "rum.hlx.page", + "time": "2024-09-01T13:37:06.902Z", + "timeSlot": "2024-09-01T13:37:06.902Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "n63haie3aa", + "host": "rum.hlx.page", + "time": "2024-08-31T05:30:13.023Z", + "timeSlot": "2024-08-31T05:30:13.023Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dlvf3metx5l", + "host": "rum.hlx.page", + "time": "2024-08-31T20:00:41.658Z", + "timeSlot": "2024-08-31T20:00:41.658Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "c07tbfr6d5", + "host": "rum.hlx.page", + "time": "2024-09-01T17:45:54.682Z", + "timeSlot": "2024-09-01T17:45:54.682Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zcoce9gyb3o", + "host": "rum.hlx.page", + "time": "2024-09-01T19:55:08.948Z", + "timeSlot": "2024-09-01T19:55:08.948Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "q29i89gawp", + "host": "rum.hlx.page", + "time": "2024-09-01T14:18:47.864Z", + "timeSlot": "2024-09-01T14:18:47.864Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r65ysay4lo", + "host": "rum.hlx.page", + "time": "2024-08-31T02:02:31.447Z", + "timeSlot": "2024-08-31T02:02:31.447Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "d0n8c05aiu6", + "host": "rum.hlx.page", + "time": "2024-08-31T19:21:18.715Z", + "timeSlot": "2024-08-31T19:21:18.715Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qj6i0l04lj", + "host": "rum.hlx.page", + "time": "2024-09-01T09:49:39.457Z", + "timeSlot": "2024-09-01T09:49:39.457Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "8giq0kruzw6", + "host": "rum.hlx.page", + "time": "2024-08-30T18:05:22.124Z", + "timeSlot": "2024-08-30T18:05:22.124Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rxzq6qemdg", + "host": "rum.hlx.page", + "time": "2024-09-01T08:10:25.386Z", + "timeSlot": "2024-09-01T08:10:25.386Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3nk6mycoj69", + "host": "rum.hlx.page", + "time": "2024-08-30T17:06:12.542Z", + "timeSlot": "2024-08-30T17:06:12.542Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "6fqmx3vqn36", + "host": "rum.hlx.page", + "time": "2024-08-30T20:09:40.347Z", + "timeSlot": "2024-08-30T20:09:40.347Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "qkvfiuphve9", + "host": "rum.hlx.page", + "time": "2024-09-02T13:19:34.312Z", + "timeSlot": "2024-09-02T13:19:34.312Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jk85z714zd", + "host": "rum.hlx.page", + "time": "2024-09-01T03:14:42.574Z", + "timeSlot": "2024-09-01T03:14:42.574Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hqwjw1tnkc", + "host": "rum.hlx.page", + "time": "2024-09-01T05:29:06.651Z", + "timeSlot": "2024-09-01T05:29:06.651Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nkwemlta1b", + "host": "rum.hlx.page", + "time": "2024-09-01T05:00:10.716Z", + "timeSlot": "2024-09-01T05:00:10.716Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ht6y0npb4zp", + "host": "rum.hlx.page", + "time": "2024-08-30T17:18:52.130Z", + "timeSlot": "2024-08-30T17:18:52.130Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xje0yg1ydh", + "host": "rum.hlx.page", + "time": "2024-09-01T07:54:15.175Z", + "timeSlot": "2024-09-01T07:54:15.175Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "29mbf2eddzg", + "host": "rum.hlx.page", + "time": "2024-09-01T13:00:37.128Z", + "timeSlot": "2024-09-01T13:00:37.128Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "z9dlbwbawoh", + "host": "rum.hlx.page", + "time": "2024-09-01T11:31:57.475Z", + "timeSlot": "2024-09-01T11:31:57.475Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "v90igrynstp", + "host": "rum.hlx.page", + "time": "2024-08-31T15:07:12.538Z", + "timeSlot": "2024-08-31T15:07:12.538Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "b9r0jspaoge", + "host": "rum.hlx.page", + "time": "2024-09-01T12:09:39.256Z", + "timeSlot": "2024-09-01T12:09:39.256Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xe1drtb1iuc", + "host": "rum.hlx.page", + "time": "2024-09-02T00:12:42.060Z", + "timeSlot": "2024-09-02T00:12:42.060Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "lc9qh0butl", + "host": "rum.hlx.page", + "time": "2024-08-31T23:58:19.352Z", + "timeSlot": "2024-08-31T23:58:19.352Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "88k8fkwy70g", + "host": "rum.hlx.page", + "time": "2024-08-31T20:50:46.546Z", + "timeSlot": "2024-08-31T20:50:46.546Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u7z80mutdvr", + "host": "rum.hlx.page", + "time": "2024-09-01T09:18:44.000Z", + "timeSlot": "2024-09-01T09:18:44.000Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sjj0nsyvtbh", + "host": "rum.hlx.page", + "time": "2024-08-31T12:11:03.401Z", + "timeSlot": "2024-08-31T12:11:03.401Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "s4u9h5gewao", + "host": "rum.hlx.page", + "time": "2024-09-02T00:53:29.966Z", + "timeSlot": "2024-09-02T00:53:29.966Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cg1x299jyuh", + "host": "rum.hlx.page", + "time": "2024-08-31T09:04:47.883Z", + "timeSlot": "2024-08-31T09:04:47.883Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mxap8tvvcqb", + "host": "rum.hlx.page", + "time": "2024-08-30T16:27:11.118Z", + "timeSlot": "2024-08-30T16:27:11.118Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "fmlel4wqwxq", + "host": "rum.hlx.page", + "time": "2024-08-31T23:06:21.577Z", + "timeSlot": "2024-08-31T23:06:21.577Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1mtjiiqc84r", + "host": "rum.hlx.page", + "time": "2024-08-31T17:51:10.800Z", + "timeSlot": "2024-08-31T17:51:10.800Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "77x1xkjepwu", + "host": "rum.hlx.page", + "time": "2024-08-31T12:48:52.499Z", + "timeSlot": "2024-08-31T12:48:52.499Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "slpbaql1c1r", + "host": "rum.hlx.page", + "time": "2024-09-01T20:39:42.639Z", + "timeSlot": "2024-09-01T20:39:42.639Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ce4y90y3rdi", + "host": "rum.hlx.page", + "time": "2024-08-30T17:41:11.154Z", + "timeSlot": "2024-08-30T17:41:11.154Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "l38j1l1cmio", + "host": "rum.hlx.page", + "time": "2024-09-02T03:24:24.012Z", + "timeSlot": "2024-09-02T03:24:24.012Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "jkm9vd8ef7b", + "host": "rum.hlx.page", + "time": "2024-08-31T10:42:43.628Z", + "timeSlot": "2024-08-31T10:42:43.628Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4cnkirvr6go", + "host": "rum.hlx.page", + "time": "2024-08-31T11:29:43.194Z", + "timeSlot": "2024-08-31T11:29:43.194Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "q1321sejvuq", + "host": "rum.hlx.page", + "time": "2024-09-01T23:44:39.403Z", + "timeSlot": "2024-09-01T23:44:39.403Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "93xc8h213kf", + "host": "rum.hlx.page", + "time": "2024-09-01T00:28:35.767Z", + "timeSlot": "2024-09-01T00:28:35.767Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "7xy4oudrqph", + "host": "rum.hlx.page", + "time": "2024-08-30T19:11:37.713Z", + "timeSlot": "2024-08-30T19:11:37.713Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gnkg5k1b8fe", + "host": "rum.hlx.page", + "time": "2024-08-31T19:44:13.913Z", + "timeSlot": "2024-08-31T19:44:13.913Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xz9qjz90e6g", + "host": "rum.hlx.page", + "time": "2024-09-01T23:30:33.632Z", + "timeSlot": "2024-09-01T23:30:33.632Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "m1ylpctn2ka", + "host": "rum.hlx.page", + "time": "2024-08-30T19:06:52.082Z", + "timeSlot": "2024-08-30T19:06:52.082Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "t5xm6iucg87", + "host": "rum.hlx.page", + "time": "2024-09-01T01:52:49.203Z", + "timeSlot": "2024-09-01T01:52:49.203Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "owqycoj5oqg", + "host": "rum.hlx.page", + "time": "2024-08-31T04:07:03.800Z", + "timeSlot": "2024-08-31T04:07:03.800Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p8t062wros", + "host": "rum.hlx.page", + "time": "2024-08-31T08:05:12.628Z", + "timeSlot": "2024-08-31T08:05:12.628Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "vojft4v8fn", + "host": "rum.hlx.page", + "time": "2024-09-02T03:59:58.160Z", + "timeSlot": "2024-09-02T03:59:58.160Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qp5tha35wus", + "host": "rum.hlx.page", + "time": "2024-09-02T03:44:30.349Z", + "timeSlot": "2024-09-02T03:44:30.349Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2fon8zh9lom", + "host": "rum.hlx.page", + "time": "2024-09-02T12:38:30.378Z", + "timeSlot": "2024-09-02T12:38:30.378Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "r1814463nz", + "host": "rum.hlx.page", + "time": "2024-08-31T02:35:58.315Z", + "timeSlot": "2024-08-31T02:35:58.315Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4ddnmwd4qia", + "host": "rum.hlx.page", + "time": "2024-09-02T03:56:53.452Z", + "timeSlot": "2024-09-02T03:56:53.452Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "qcl7rnwtggp", + "host": "rum.hlx.page", + "time": "2024-08-30T23:46:56.156Z", + "timeSlot": "2024-08-30T23:46:56.156Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "khd9uukbpuh", + "host": "rum.hlx.page", + "time": "2024-09-01T10:58:50.610Z", + "timeSlot": "2024-09-01T10:58:50.610Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jjgasa4kix", + "host": "rum.hlx.page", + "time": "2024-09-01T16:57:50.495Z", + "timeSlot": "2024-09-01T16:57:50.495Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "l7iqoz6d7f", + "host": "rum.hlx.page", + "time": "2024-09-01T22:16:21.628Z", + "timeSlot": "2024-09-01T22:16:21.628Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "m1qm6qs6css", + "host": "rum.hlx.page", + "time": "2024-08-31T17:00:07.176Z", + "timeSlot": "2024-08-31T17:00:07.176Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kcfws3biej9", + "host": "rum.hlx.page", + "time": "2024-09-02T02:22:44.112Z", + "timeSlot": "2024-09-02T02:22:44.112Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sboh9xmu22", + "host": "rum.hlx.page", + "time": "2024-09-01T09:32:03.895Z", + "timeSlot": "2024-09-01T09:32:03.895Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7dojgun0m2l", + "host": "rum.hlx.page", + "time": "2024-08-31T12:30:58.725Z", + "timeSlot": "2024-08-31T12:30:58.725Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "t1jg17aniun", + "host": "rum.hlx.page", + "time": "2024-08-31T20:50:44.449Z", + "timeSlot": "2024-08-31T20:50:44.449Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "13i6pbj0nhbc", + "host": "rum.hlx.page", + "time": "2024-09-01T06:28:07.569Z", + "timeSlot": "2024-09-01T06:28:07.569Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jmkyt4uhzyt", + "host": "rum.hlx.page", + "time": "2024-09-01T16:46:27.890Z", + "timeSlot": "2024-09-01T16:46:27.890Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "uns669c7a9g", + "host": "rum.hlx.page", + "time": "2024-08-31T03:10:54.748Z", + "timeSlot": "2024-08-31T03:10:54.748Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "j3lldnr0ljl", + "host": "rum.hlx.page", + "time": "2024-08-30T20:18:08.664Z", + "timeSlot": "2024-08-30T20:18:08.664Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7rj9wfoks3l", + "host": "rum.hlx.page", + "time": "2024-09-02T04:15:19.671Z", + "timeSlot": "2024-09-02T04:15:19.671Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "n8og3wguhsa", + "host": "rum.hlx.page", + "time": "2024-09-02T02:38:57.822Z", + "timeSlot": "2024-09-02T02:38:57.822Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "jjy3gsbfwdo", + "host": "rum.hlx.page", + "time": "2024-09-01T12:13:11.272Z", + "timeSlot": "2024-09-01T12:13:11.272Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "yda9g3054f", + "host": "rum.hlx.page", + "time": "2024-08-31T15:35:00.404Z", + "timeSlot": "2024-08-31T15:35:00.404Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hetvfb6tgva", + "host": "rum.hlx.page", + "time": "2024-09-01T23:37:24.812Z", + "timeSlot": "2024-09-01T23:37:24.812Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pxd6vg3xim", + "host": "rum.hlx.page", + "time": "2024-08-30T16:23:54.663Z", + "timeSlot": "2024-08-30T16:23:54.663Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g4vx5wlq36e", + "host": "rum.hlx.page", + "time": "2024-09-02T03:09:07.166Z", + "timeSlot": "2024-09-02T03:09:07.166Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "an4yta77f5g", + "host": "rum.hlx.page", + "time": "2024-08-30T21:27:31.162Z", + "timeSlot": "2024-08-30T21:27:31.162Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5n8itmqn55s", + "host": "rum.hlx.page", + "time": "2024-09-02T06:10:43.436Z", + "timeSlot": "2024-09-02T06:10:43.436Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2awkdyammva", + "host": "rum.hlx.page", + "time": "2024-08-30T18:44:37.861Z", + "timeSlot": "2024-08-30T18:44:37.861Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vqi0634w1lp", + "host": "rum.hlx.page", + "time": "2024-09-02T01:21:20.905Z", + "timeSlot": "2024-09-02T01:21:20.905Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "lp639fg5f7b", + "host": "rum.hlx.page", + "time": "2024-09-02T03:21:44.324Z", + "timeSlot": "2024-09-02T03:21:44.324Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uzxcui8pfwj", + "host": "rum.hlx.page", + "time": "2024-09-02T06:00:21.076Z", + "timeSlot": "2024-09-02T06:00:21.076Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gmpdlgakjxf", + "host": "rum.hlx.page", + "time": "2024-09-01T20:39:23.786Z", + "timeSlot": "2024-09-01T20:39:23.786Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "mg8ptkybt3d", + "host": "rum.hlx.page", + "time": "2024-09-01T00:07:50.818Z", + "timeSlot": "2024-09-01T00:07:50.818Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "13v3wh32c59", + "host": "rum.hlx.page", + "time": "2024-08-30T19:46:13.349Z", + "timeSlot": "2024-08-30T19:46:13.349Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yn54md88ab", + "host": "rum.hlx.page", + "time": "2024-09-01T21:57:59.974Z", + "timeSlot": "2024-09-01T21:57:59.974Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "alt8lbbd6b", + "host": "rum.hlx.page", + "time": "2024-09-01T10:29:24.947Z", + "timeSlot": "2024-09-01T10:29:24.947Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "evxi9vnyy0g", + "host": "rum.hlx.page", + "time": "2024-08-31T03:19:38.791Z", + "timeSlot": "2024-08-31T03:19:38.791Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "59xm47109dv", + "host": "rum.hlx.page", + "time": "2024-09-02T07:36:50.344Z", + "timeSlot": "2024-09-02T07:36:50.344Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l92lwso5ri", + "host": "rum.hlx.page", + "time": "2024-09-01T20:39:08.908Z", + "timeSlot": "2024-09-01T20:39:08.908Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "udtg16sahal", + "host": "rum.hlx.page", + "time": "2024-09-01T10:00:33.183Z", + "timeSlot": "2024-09-01T10:00:33.183Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "tvpt8ih8u4", + "host": "rum.hlx.page", + "time": "2024-08-31T22:23:33.445Z", + "timeSlot": "2024-08-31T22:23:33.445Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "44dshtc99l4", + "host": "rum.hlx.page", + "time": "2024-09-02T11:55:33.794Z", + "timeSlot": "2024-09-02T11:55:33.794Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "759uhsy2xtv", + "host": "rum.hlx.page", + "time": "2024-08-30T19:58:25.725Z", + "timeSlot": "2024-08-30T19:58:25.725Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lhkri9rsdnn", + "host": "rum.hlx.page", + "time": "2024-08-31T01:33:02.325Z", + "timeSlot": "2024-08-31T01:33:02.325Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rz5qa4tsucl", + "host": "rum.hlx.page", + "time": "2024-08-30T20:38:05.976Z", + "timeSlot": "2024-08-30T20:38:05.976Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "wbs0ftodd3k", + "host": "rum.hlx.page", + "time": "2024-08-30T18:06:32.143Z", + "timeSlot": "2024-08-30T18:06:32.143Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "eer779nf425", + "host": "rum.hlx.page", + "time": "2024-09-01T09:34:24.779Z", + "timeSlot": "2024-09-01T09:34:24.779Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ahlw0u4rpbl", + "host": "rum.hlx.page", + "time": "2024-08-30T20:21:50.375Z", + "timeSlot": "2024-08-30T20:21:50.375Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q2nx3d1qkwe", + "host": "rum.hlx.page", + "time": "2024-08-30T21:08:27.960Z", + "timeSlot": "2024-08-30T21:08:27.960Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "hgz6t8j011l", + "host": "rum.hlx.page", + "time": "2024-09-01T11:09:07.017Z", + "timeSlot": "2024-09-01T11:09:07.017Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "m4btefx0wlb", + "host": "rum.hlx.page", + "time": "2024-09-01T09:23:39.303Z", + "timeSlot": "2024-09-01T09:23:39.303Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qoc5v83ovlh", + "host": "rum.hlx.page", + "time": "2024-08-31T10:43:46.843Z", + "timeSlot": "2024-08-31T10:43:46.843Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "c04dhw7sccc", + "host": "rum.hlx.page", + "time": "2024-08-31T00:43:51.029Z", + "timeSlot": "2024-08-31T00:43:51.029Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "41id3jv7h4g", + "host": "rum.hlx.page", + "time": "2024-09-01T16:27:19.563Z", + "timeSlot": "2024-09-01T16:27:19.563Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7pzk0e3dob5", + "host": "rum.hlx.page", + "time": "2024-08-30T23:10:27.058Z", + "timeSlot": "2024-08-30T23:10:27.058Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "rk6r536ucz8", + "host": "rum.hlx.page", + "time": "2024-09-01T14:43:02.680Z", + "timeSlot": "2024-09-01T14:43:02.680Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rileffi8lk8", + "host": "rum.hlx.page", + "time": "2024-09-01T03:04:57.337Z", + "timeSlot": "2024-09-01T03:04:57.337Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1guyzrui2jr", + "host": "rum.hlx.page", + "time": "2024-09-01T20:46:05.717Z", + "timeSlot": "2024-09-01T20:46:05.717Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2ls29baumm7", + "host": "rum.hlx.page", + "time": "2024-08-31T04:20:51.180Z", + "timeSlot": "2024-08-31T04:20:51.180Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w5ftyby2mi", + "host": "rum.hlx.page", + "time": "2024-08-31T16:47:14.001Z", + "timeSlot": "2024-08-31T16:47:14.001Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qjsylp47lfl", + "host": "rum.hlx.page", + "time": "2024-08-30T20:55:03.126Z", + "timeSlot": "2024-08-30T20:55:03.126Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0xmdg6wus6gr", + "host": "rum.hlx.page", + "time": "2024-09-02T09:03:15.257Z", + "timeSlot": "2024-09-02T09:03:15.257Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "plcojvbdu3", + "host": "rum.hlx.page", + "time": "2024-09-01T18:56:12.536Z", + "timeSlot": "2024-09-01T18:56:12.536Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "41eftcqksoz", + "host": "rum.hlx.page", + "time": "2024-08-31T03:24:21.398Z", + "timeSlot": "2024-08-31T03:24:21.398Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ob024xl1nki", + "host": "rum.hlx.page", + "time": "2024-08-31T22:18:12.147Z", + "timeSlot": "2024-08-31T22:18:12.147Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "sm6sytyrcdn", + "host": "rum.hlx.page", + "time": "2024-09-01T15:56:41.041Z", + "timeSlot": "2024-09-01T15:56:41.041Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ovvbc0652kl", + "host": "rum.hlx.page", + "time": "2024-09-02T14:58:04.653Z", + "timeSlot": "2024-09-02T14:58:04.653Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ownw69x8v", + "host": "rum.hlx.page", + "time": "2024-09-02T13:48:21.566Z", + "timeSlot": "2024-09-02T13:48:21.566Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4vrisc85c0y", + "host": "rum.hlx.page", + "time": "2024-09-01T03:12:16.560Z", + "timeSlot": "2024-09-01T03:12:16.560Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dfnnu91seym", + "host": "rum.hlx.page", + "time": "2024-09-02T08:09:57.430Z", + "timeSlot": "2024-09-02T08:09:57.430Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xihizkywk3q", + "host": "rum.hlx.page", + "time": "2024-08-31T15:01:50.558Z", + "timeSlot": "2024-08-31T15:01:50.558Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hfzqxpxqbp", + "host": "rum.hlx.page", + "time": "2024-09-02T10:48:47.861Z", + "timeSlot": "2024-09-02T10:48:47.861Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "kpq08t0xqa", + "host": "rum.hlx.page", + "time": "2024-08-31T19:20:00.020Z", + "timeSlot": "2024-08-31T19:20:00.020Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "yht08sfhqtp", + "host": "rum.hlx.page", + "time": "2024-09-01T06:37:41.237Z", + "timeSlot": "2024-09-01T06:37:41.237Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "697shz47iyd", + "host": "rum.hlx.page", + "time": "2024-09-01T16:21:54.408Z", + "timeSlot": "2024-09-01T16:21:54.408Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nv9l7477r1", + "host": "rum.hlx.page", + "time": "2024-09-02T06:27:11.179Z", + "timeSlot": "2024-09-02T06:27:11.179Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7kvp0ogd688", + "host": "rum.hlx.page", + "time": "2024-08-30T21:48:21.587Z", + "timeSlot": "2024-08-30T21:48:21.587Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "6sk1hb4b6ls", + "host": "rum.hlx.page", + "time": "2024-08-31T11:43:49.547Z", + "timeSlot": "2024-08-31T11:43:49.547Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tfkqr15t3zo", + "host": "rum.hlx.page", + "time": "2024-09-01T06:05:33.565Z", + "timeSlot": "2024-09-01T06:05:33.565Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pjjyoxvty5f", + "host": "rum.hlx.page", + "time": "2024-09-02T01:13:20.341Z", + "timeSlot": "2024-09-02T01:13:20.341Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "468bnvmaghx", + "host": "rum.hlx.page", + "time": "2024-08-31T20:40:56.605Z", + "timeSlot": "2024-08-31T20:40:56.605Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h1oq21vwexf", + "host": "rum.hlx.page", + "time": "2024-09-02T10:19:01.604Z", + "timeSlot": "2024-09-02T10:19:01.604Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u4n09p0c2h", + "host": "rum.hlx.page", + "time": "2024-09-02T00:14:27.156Z", + "timeSlot": "2024-09-02T00:14:27.156Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6h7dg2tafql", + "host": "rum.hlx.page", + "time": "2024-08-31T02:14:34.702Z", + "timeSlot": "2024-08-31T02:14:34.702Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7jxvwellfhc", + "host": "rum.hlx.page", + "time": "2024-08-31T00:52:32.154Z", + "timeSlot": "2024-08-31T00:52:32.154Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "f448ya4dlgf", + "host": "rum.hlx.page", + "time": "2024-08-30T22:35:06.244Z", + "timeSlot": "2024-08-30T22:35:06.244Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hlmyvp3ca5", + "host": "rum.hlx.page", + "time": "2024-09-02T09:01:57.134Z", + "timeSlot": "2024-09-02T09:01:57.134Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w2zmek34o6", + "host": "rum.hlx.page", + "time": "2024-09-01T11:53:13.474Z", + "timeSlot": "2024-09-01T11:53:13.474Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nti6x15of4", + "host": "rum.hlx.page", + "time": "2024-08-31T03:49:18.368Z", + "timeSlot": "2024-08-31T03:49:18.368Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ot8k4asljtb", + "host": "rum.hlx.page", + "time": "2024-08-31T01:07:56.012Z", + "timeSlot": "2024-08-31T01:07:56.012Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "87sqwmngcl5", + "host": "rum.hlx.page", + "time": "2024-09-02T07:35:20.330Z", + "timeSlot": "2024-09-02T07:35:20.330Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "khnozzsxv8", + "host": "rum.hlx.page", + "time": "2024-09-02T13:31:51.753Z", + "timeSlot": "2024-09-02T13:31:51.753Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "xx8n9ef6zjc", + "host": "rum.hlx.page", + "time": "2024-09-02T11:10:30.418Z", + "timeSlot": "2024-09-02T11:10:30.418Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "3s8dwtse30j", + "host": "rum.hlx.page", + "time": "2024-09-01T03:52:08.934Z", + "timeSlot": "2024-09-01T03:52:08.934Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "c0mn912o3r9", + "host": "rum.hlx.page", + "time": "2024-08-30T20:21:10.611Z", + "timeSlot": "2024-08-30T20:21:10.611Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xh9okbsp2c", + "host": "rum.hlx.page", + "time": "2024-08-31T21:24:52.263Z", + "timeSlot": "2024-08-31T21:24:52.263Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ndzppz6qaq", + "host": "rum.hlx.page", + "time": "2024-09-01T10:16:05.458Z", + "timeSlot": "2024-09-01T10:16:05.458Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "5mr8q92w75v", + "host": "rum.hlx.page", + "time": "2024-09-01T19:34:24.311Z", + "timeSlot": "2024-09-01T19:34:24.311Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w3ja4scrz2n", + "host": "rum.hlx.page", + "time": "2024-08-31T08:22:08.603Z", + "timeSlot": "2024-08-31T08:22:08.603Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gk63de7aeec", + "host": "rum.hlx.page", + "time": "2024-08-31T02:59:30.478Z", + "timeSlot": "2024-08-31T02:59:30.478Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "a0zz1vhd3m7", + "host": "rum.hlx.page", + "time": "2024-08-30T19:20:08.517Z", + "timeSlot": "2024-08-30T19:20:08.517Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "84tr8apnq4t", + "host": "rum.hlx.page", + "time": "2024-09-01T14:03:26.009Z", + "timeSlot": "2024-09-01T14:03:26.009Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dplnn5odwtk", + "host": "rum.hlx.page", + "time": "2024-09-01T00:19:32.091Z", + "timeSlot": "2024-09-01T00:19:32.091Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xclmz3vv9t", + "host": "rum.hlx.page", + "time": "2024-09-01T04:25:43.318Z", + "timeSlot": "2024-09-01T04:25:43.318Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6bqjz21zhwg", + "host": "rum.hlx.page", + "time": "2024-08-31T05:38:48.407Z", + "timeSlot": "2024-08-31T05:38:48.407Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "5yprhyq59gw", + "host": "rum.hlx.page", + "time": "2024-09-01T11:49:45.236Z", + "timeSlot": "2024-09-01T11:49:45.236Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bnq049sozgc", + "host": "rum.hlx.page", + "time": "2024-08-31T05:14:03.258Z", + "timeSlot": "2024-08-31T05:14:03.258Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "g1wun4iwzfl", + "host": "rum.hlx.page", + "time": "2024-09-01T20:40:48.393Z", + "timeSlot": "2024-09-01T20:40:48.393Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "iigsdhfudi", + "host": "rum.hlx.page", + "time": "2024-08-30T23:22:43.381Z", + "timeSlot": "2024-08-30T23:22:43.381Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "iehi13fa7l", + "host": "rum.hlx.page", + "time": "2024-08-31T23:11:33.640Z", + "timeSlot": "2024-08-31T23:11:33.640Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2qlo09pfjzq", + "host": "rum.hlx.page", + "time": "2024-09-01T00:55:38.239Z", + "timeSlot": "2024-09-01T00:55:38.239Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3hnyvbnfr1q", + "host": "rum.hlx.page", + "time": "2024-09-01T03:34:20.571Z", + "timeSlot": "2024-09-01T03:34:20.571Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5sh7280km5", + "host": "rum.hlx.page", + "time": "2024-09-02T13:38:49.495Z", + "timeSlot": "2024-09-02T13:38:49.495Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2wajm9anboi", + "host": "rum.hlx.page", + "time": "2024-09-01T08:56:34.403Z", + "timeSlot": "2024-09-01T08:56:34.403Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fxagrzkqhf", + "host": "rum.hlx.page", + "time": "2024-09-02T12:57:57.786Z", + "timeSlot": "2024-09-02T12:57:57.786Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6r6mjqxmhic", + "host": "rum.hlx.page", + "time": "2024-09-01T12:18:08.965Z", + "timeSlot": "2024-09-01T12:18:08.965Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5hm4oplc8zo", + "host": "rum.hlx.page", + "time": "2024-08-30T21:19:52.340Z", + "timeSlot": "2024-08-30T21:19:52.340Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z8s9tds37jo", + "host": "rum.hlx.page", + "time": "2024-08-31T21:28:05.550Z", + "timeSlot": "2024-08-31T21:28:05.550Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0p6um2m5c1a", + "host": "rum.hlx.page", + "time": "2024-08-31T01:09:51.825Z", + "timeSlot": "2024-08-31T01:09:51.825Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wocahdwm3dh", + "host": "rum.hlx.page", + "time": "2024-09-01T09:23:42.377Z", + "timeSlot": "2024-09-01T09:23:42.377Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hjzdaebnb7h", + "host": "rum.hlx.page", + "time": "2024-09-02T06:36:25.628Z", + "timeSlot": "2024-09-02T06:36:25.628Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "unk01kmk7x", + "host": "rum.hlx.page", + "time": "2024-08-31T14:02:47.943Z", + "timeSlot": "2024-08-31T14:02:47.943Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x8ff0ml1n2q", + "host": "rum.hlx.page", + "time": "2024-09-01T19:59:01.632Z", + "timeSlot": "2024-09-01T19:59:01.632Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "i7nwvbp6xtn", + "host": "rum.hlx.page", + "time": "2024-08-31T10:15:05.603Z", + "timeSlot": "2024-08-31T10:15:05.603Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7237qz0678a", + "host": "rum.hlx.page", + "time": "2024-08-31T16:56:49.458Z", + "timeSlot": "2024-08-31T16:56:49.458Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "t5u64jau5up", + "host": "rum.hlx.page", + "time": "2024-08-31T18:57:30.711Z", + "timeSlot": "2024-08-31T18:57:30.711Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2de2uzfrry3", + "host": "rum.hlx.page", + "time": "2024-08-30T15:17:43.678Z", + "timeSlot": "2024-08-30T15:17:43.678Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "s3c14d0xqnm", + "host": "rum.hlx.page", + "time": "2024-09-02T04:11:29.043Z", + "timeSlot": "2024-09-02T04:11:29.043Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "f37d09x31p6", + "host": "rum.hlx.page", + "time": "2024-09-02T07:33:52.468Z", + "timeSlot": "2024-09-02T07:33:52.468Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "t0ky79tngm", + "host": "rum.hlx.page", + "time": "2024-08-31T13:27:24.063Z", + "timeSlot": "2024-08-31T13:27:24.063Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "i7ba2vl34r", + "host": "rum.hlx.page", + "time": "2024-08-30T23:20:28.113Z", + "timeSlot": "2024-08-30T23:20:28.113Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hlshzuhfe6b", + "host": "rum.hlx.page", + "time": "2024-09-01T10:15:15.773Z", + "timeSlot": "2024-09-01T10:15:15.773Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xfm6cglqgbl", + "host": "rum.hlx.page", + "time": "2024-08-31T20:40:27.491Z", + "timeSlot": "2024-08-31T20:40:27.491Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "et2ty7b03vt", + "host": "rum.hlx.page", + "time": "2024-08-31T00:45:24.034Z", + "timeSlot": "2024-08-31T00:45:24.034Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "umi8gb36q7f", + "host": "rum.hlx.page", + "time": "2024-09-02T10:29:26.494Z", + "timeSlot": "2024-09-02T10:29:26.494Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6potnj518di", + "host": "rum.hlx.page", + "time": "2024-09-02T04:12:18.600Z", + "timeSlot": "2024-09-02T04:12:18.600Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ujarciwsbr", + "host": "rum.hlx.page", + "time": "2024-09-01T04:58:00.528Z", + "timeSlot": "2024-09-01T04:58:00.528Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vx1zeqcl2g", + "host": "rum.hlx.page", + "time": "2024-09-01T13:52:04.009Z", + "timeSlot": "2024-09-01T13:52:04.009Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qzvh4twg90p", + "host": "rum.hlx.page", + "time": "2024-08-31T12:50:03.288Z", + "timeSlot": "2024-08-31T12:50:03.288Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "iqxv1e6ggr", + "host": "rum.hlx.page", + "time": "2024-08-30T19:40:29.494Z", + "timeSlot": "2024-08-30T19:40:29.494Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "c600cnl3p8s", + "host": "rum.hlx.page", + "time": "2024-09-01T06:51:56.147Z", + "timeSlot": "2024-09-01T06:51:56.147Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "etr8lbtr88g", + "host": "rum.hlx.page", + "time": "2024-09-01T02:43:25.268Z", + "timeSlot": "2024-09-01T02:43:25.268Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "yhr4snh9ftc", + "host": "rum.hlx.page", + "time": "2024-08-31T11:54:18.519Z", + "timeSlot": "2024-08-31T11:54:18.519Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ezdbp7hv64e", + "host": "rum.hlx.page", + "time": "2024-09-01T03:23:17.554Z", + "timeSlot": "2024-09-01T03:23:17.554Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bnllsgplk8b", + "host": "rum.hlx.page", + "time": "2024-09-02T01:11:59.453Z", + "timeSlot": "2024-09-02T01:11:59.453Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4nfijkj774l", + "host": "rum.hlx.page", + "time": "2024-08-31T15:32:09.332Z", + "timeSlot": "2024-08-31T15:32:09.332Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p65ciuynlbh", + "host": "rum.hlx.page", + "time": "2024-09-02T11:40:26.666Z", + "timeSlot": "2024-09-02T11:40:26.666Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jvz64k9ozni", + "host": "rum.hlx.page", + "time": "2024-09-02T07:24:34.335Z", + "timeSlot": "2024-09-02T07:24:34.335Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "vq73rlr5fb", + "host": "rum.hlx.page", + "time": "2024-09-02T14:36:46.679Z", + "timeSlot": "2024-09-02T14:36:46.679Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "svhluxoee5g", + "host": "rum.hlx.page", + "time": "2024-08-31T23:07:55.981Z", + "timeSlot": "2024-08-31T23:07:55.981Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rl9aubffcgh", + "host": "rum.hlx.page", + "time": "2024-09-01T03:54:12.651Z", + "timeSlot": "2024-09-01T03:54:12.651Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "grz5mfdhkcc", + "host": "rum.hlx.page", + "time": "2024-08-31T06:19:23.330Z", + "timeSlot": "2024-08-31T06:19:23.330Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "kvrmtk4vu", + "host": "rum.hlx.page", + "time": "2024-09-02T08:37:42.192Z", + "timeSlot": "2024-09-02T08:37:42.192Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "e9ems1mlwoa", + "host": "rum.hlx.page", + "time": "2024-09-01T17:12:07.252Z", + "timeSlot": "2024-09-01T17:12:07.252Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v32p73lpxy", + "host": "rum.hlx.page", + "time": "2024-09-01T10:35:45.671Z", + "timeSlot": "2024-09-01T10:35:45.671Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "u06fc9gb0kh", + "host": "rum.hlx.page", + "time": "2024-08-30T20:26:14.827Z", + "timeSlot": "2024-08-30T20:26:14.827Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ufffgcota6l", + "host": "rum.hlx.page", + "time": "2024-09-01T05:11:37.443Z", + "timeSlot": "2024-09-01T05:11:37.443Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "i34xw6uq7sk", + "host": "rum.hlx.page", + "time": "2024-08-31T23:46:44.834Z", + "timeSlot": "2024-08-31T23:46:44.834Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ub838zidx1", + "host": "rum.hlx.page", + "time": "2024-08-31T03:47:27.424Z", + "timeSlot": "2024-08-31T03:47:27.424Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uxlohpavcng", + "host": "rum.hlx.page", + "time": "2024-08-30T23:19:53.027Z", + "timeSlot": "2024-08-30T23:19:53.027Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "jz1fpg5s77", + "host": "rum.hlx.page", + "time": "2024-09-02T00:02:54.863Z", + "timeSlot": "2024-09-02T00:02:54.863Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qjwg3wycfp9", + "host": "rum.hlx.page", + "time": "2024-08-30T17:14:21.778Z", + "timeSlot": "2024-08-30T17:14:21.778Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7bcfdclbl6u", + "host": "rum.hlx.page", + "time": "2024-09-02T07:01:57.301Z", + "timeSlot": "2024-09-02T07:01:57.301Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "47hcw00j8qp", + "host": "rum.hlx.page", + "time": "2024-09-01T06:41:45.505Z", + "timeSlot": "2024-09-01T06:41:45.505Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "q301ia54r2", + "host": "rum.hlx.page", + "time": "2024-08-31T00:31:12.570Z", + "timeSlot": "2024-08-31T00:31:12.570Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "zh5kp146kd8", + "host": "rum.hlx.page", + "time": "2024-08-31T21:58:20.916Z", + "timeSlot": "2024-08-31T21:58:20.916Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "pgewx50czg", + "host": "rum.hlx.page", + "time": "2024-09-01T20:04:10.179Z", + "timeSlot": "2024-09-01T20:04:10.179Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "kt8o3tonawl", + "host": "rum.hlx.page", + "time": "2024-09-01T22:53:50.387Z", + "timeSlot": "2024-09-01T22:53:50.387Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "iwmsj2t8ooe", + "host": "rum.hlx.page", + "time": "2024-08-31T00:35:38.761Z", + "timeSlot": "2024-08-31T00:35:38.761Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "syt3qyjwo3d", + "host": "rum.hlx.page", + "time": "2024-09-02T07:23:43.793Z", + "timeSlot": "2024-09-02T07:23:43.793Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5wcn9wzr62", + "host": "rum.hlx.page", + "time": "2024-08-31T10:39:30.107Z", + "timeSlot": "2024-08-31T10:39:30.107Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9ykv8diyni9", + "host": "rum.hlx.page", + "time": "2024-09-02T12:18:51.765Z", + "timeSlot": "2024-09-02T12:18:51.765Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "884otcbyag", + "host": "rum.hlx.page", + "time": "2024-08-31T05:47:09.917Z", + "timeSlot": "2024-08-31T05:47:09.917Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "224sb0crqx9", + "host": "rum.hlx.page", + "time": "2024-08-30T21:09:10.879Z", + "timeSlot": "2024-08-30T21:09:10.879Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z1wek2o5sqj", + "host": "rum.hlx.page", + "time": "2024-08-31T15:32:16.799Z", + "timeSlot": "2024-08-31T15:32:16.799Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "s592i78xcqh", + "host": "rum.hlx.page", + "time": "2024-08-31T10:55:23.889Z", + "timeSlot": "2024-08-31T10:55:23.889Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "d4p16hk7gb6", + "host": "rum.hlx.page", + "time": "2024-09-01T13:07:08.428Z", + "timeSlot": "2024-09-01T13:07:08.428Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "igfde6bit8f", + "host": "rum.hlx.page", + "time": "2024-09-01T03:42:26.221Z", + "timeSlot": "2024-09-01T03:42:26.221Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nn77eoore6", + "host": "rum.hlx.page", + "time": "2024-08-31T09:36:21.166Z", + "timeSlot": "2024-08-31T09:36:21.166Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "518wmbpojrx", + "host": "rum.hlx.page", + "time": "2024-08-31T18:54:02.934Z", + "timeSlot": "2024-08-31T18:54:02.934Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "l585npbt2t9", + "host": "rum.hlx.page", + "time": "2024-09-02T08:41:38.558Z", + "timeSlot": "2024-09-02T08:41:38.558Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "m85ma4nxye", + "host": "rum.hlx.page", + "time": "2024-09-01T02:49:32.027Z", + "timeSlot": "2024-09-01T02:49:32.027Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "isc40s0xrcj", + "host": "rum.hlx.page", + "time": "2024-09-01T17:19:27.347Z", + "timeSlot": "2024-09-01T17:19:27.347Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "m2dp5fq2pme", + "host": "rum.hlx.page", + "time": "2024-08-30T21:00:09.126Z", + "timeSlot": "2024-08-30T21:00:09.126Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "gjl46t5esnq", + "host": "rum.hlx.page", + "time": "2024-09-02T09:37:22.095Z", + "timeSlot": "2024-09-02T09:37:22.095Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "y60ee6677qh", + "host": "rum.hlx.page", + "time": "2024-08-30T19:03:30.044Z", + "timeSlot": "2024-08-30T19:03:30.044Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "g2p9h562olr", + "host": "rum.hlx.page", + "time": "2024-08-31T11:46:38.465Z", + "timeSlot": "2024-08-31T11:46:38.465Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "19auo807x18", + "host": "rum.hlx.page", + "time": "2024-08-31T18:42:55.791Z", + "timeSlot": "2024-08-31T18:42:55.791Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6oy48yh7bdh", + "host": "rum.hlx.page", + "time": "2024-09-01T18:24:27.717Z", + "timeSlot": "2024-09-01T18:24:27.717Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "asivewqrw0t", + "host": "rum.hlx.page", + "time": "2024-08-31T18:02:36.908Z", + "timeSlot": "2024-08-31T18:02:36.908Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fcrlk819avp", + "host": "rum.hlx.page", + "time": "2024-09-01T16:24:43.747Z", + "timeSlot": "2024-09-01T16:24:43.747Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u0ly2qny5a", + "host": "rum.hlx.page", + "time": "2024-08-31T12:42:38.597Z", + "timeSlot": "2024-08-31T12:42:38.597Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "uvlc48g115d", + "host": "rum.hlx.page", + "time": "2024-09-01T21:42:29.536Z", + "timeSlot": "2024-09-01T21:42:29.536Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "m1fnl375wa", + "host": "rum.hlx.page", + "time": "2024-08-30T19:33:49.366Z", + "timeSlot": "2024-08-30T19:33:49.366Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h25kuevwfzi", + "host": "rum.hlx.page", + "time": "2024-09-01T10:47:32.722Z", + "timeSlot": "2024-09-01T10:47:32.722Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w8y7qlonso", + "host": "rum.hlx.page", + "time": "2024-09-01T13:43:44.404Z", + "timeSlot": "2024-09-01T13:43:44.404Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "r6bh8is3o1s", + "host": "rum.hlx.page", + "time": "2024-08-31T00:48:20.550Z", + "timeSlot": "2024-08-31T00:48:20.550Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "alfkilp0uu", + "host": "rum.hlx.page", + "time": "2024-08-31T04:37:36.623Z", + "timeSlot": "2024-08-31T04:37:36.623Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1bzxyrib2i3", + "host": "rum.hlx.page", + "time": "2024-09-02T11:38:23.884Z", + "timeSlot": "2024-09-02T11:38:23.884Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gzpduoat1jp", + "host": "rum.hlx.page", + "time": "2024-09-02T04:13:19.624Z", + "timeSlot": "2024-09-02T04:13:19.624Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "p6tj14nelw", + "host": "rum.hlx.page", + "time": "2024-09-01T20:12:07.897Z", + "timeSlot": "2024-09-01T20:12:07.897Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "fdxrschl18u", + "host": "rum.hlx.page", + "time": "2024-09-01T01:35:19.316Z", + "timeSlot": "2024-09-01T01:35:19.316Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "oga73kx6c7b", + "host": "rum.hlx.page", + "time": "2024-09-01T16:00:11.283Z", + "timeSlot": "2024-09-01T16:00:11.283Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "74axewi6mo3", + "host": "rum.hlx.page", + "time": "2024-09-01T13:27:24.309Z", + "timeSlot": "2024-09-01T13:27:24.309Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gnb8646674o", + "host": "rum.hlx.page", + "time": "2024-08-31T18:40:18.424Z", + "timeSlot": "2024-08-31T18:40:18.424Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ya0856rmfue", + "host": "rum.hlx.page", + "time": "2024-08-31T19:36:01.160Z", + "timeSlot": "2024-08-31T19:36:01.160Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vks09uykygi", + "host": "rum.hlx.page", + "time": "2024-09-01T18:04:58.003Z", + "timeSlot": "2024-09-01T18:04:58.003Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ouh3nzuw6ck", + "host": "rum.hlx.page", + "time": "2024-09-01T23:12:52.612Z", + "timeSlot": "2024-09-01T23:12:52.612Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0zwi926eg9ag", + "host": "rum.hlx.page", + "time": "2024-08-31T13:51:42.809Z", + "timeSlot": "2024-08-31T13:51:42.809Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3w3loijyt6p", + "host": "rum.hlx.page", + "time": "2024-09-02T02:17:14.712Z", + "timeSlot": "2024-09-02T02:17:14.712Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l52zqhd1cgn", + "host": "rum.hlx.page", + "time": "2024-09-01T07:35:31.369Z", + "timeSlot": "2024-09-01T07:35:31.369Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7oim06eg2bc", + "host": "rum.hlx.page", + "time": "2024-09-02T14:46:03.255Z", + "timeSlot": "2024-09-02T14:46:03.255Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "r0wezqe4xma", + "host": "rum.hlx.page", + "time": "2024-09-02T00:04:46.176Z", + "timeSlot": "2024-09-02T00:04:46.176Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "sxn8waak0cj", + "host": "rum.hlx.page", + "time": "2024-08-30T22:23:30.482Z", + "timeSlot": "2024-08-30T22:23:30.482Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a477lcw4g85", + "host": "rum.hlx.page", + "time": "2024-08-31T13:01:11.926Z", + "timeSlot": "2024-08-31T13:01:11.926Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bihfa6lhmm7", + "host": "rum.hlx.page", + "time": "2024-09-02T03:33:24.102Z", + "timeSlot": "2024-09-02T03:33:24.102Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "iej5hp7d3xr", + "host": "rum.hlx.page", + "time": "2024-09-01T01:02:25.780Z", + "timeSlot": "2024-09-01T01:02:25.780Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2241jd2ejyw", + "host": "rum.hlx.page", + "time": "2024-08-31T00:30:05.875Z", + "timeSlot": "2024-08-31T00:30:05.875Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gri0c06mn4b", + "host": "rum.hlx.page", + "time": "2024-08-31T03:42:10.820Z", + "timeSlot": "2024-08-31T03:42:10.820Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jfl2m9wqioi", + "host": "rum.hlx.page", + "time": "2024-09-02T14:44:18.806Z", + "timeSlot": "2024-09-02T14:44:18.806Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8hi80xtqk4", + "host": "rum.hlx.page", + "time": "2024-08-31T23:12:02.077Z", + "timeSlot": "2024-08-31T23:12:02.077Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "187necw2op4", + "host": "rum.hlx.page", + "time": "2024-08-30T21:06:25.832Z", + "timeSlot": "2024-08-30T21:06:25.832Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "br0h83gkpuw", + "host": "rum.hlx.page", + "time": "2024-09-01T14:54:37.623Z", + "timeSlot": "2024-09-01T14:54:37.623Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1546hftya6u", + "host": "rum.hlx.page", + "time": "2024-08-30T21:35:08.942Z", + "timeSlot": "2024-08-30T21:35:08.942Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "l91xbhsfprf", + "host": "rum.hlx.page", + "time": "2024-09-01T12:18:23.871Z", + "timeSlot": "2024-09-01T12:18:23.871Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "fgpmjd3ggei", + "host": "rum.hlx.page", + "time": "2024-08-31T15:44:16.950Z", + "timeSlot": "2024-08-31T15:44:16.950Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4ddvpq0rp9g", + "host": "rum.hlx.page", + "time": "2024-09-01T01:27:02.452Z", + "timeSlot": "2024-09-01T01:27:02.452Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bnglujhnuws", + "host": "rum.hlx.page", + "time": "2024-08-31T04:04:39.660Z", + "timeSlot": "2024-08-31T04:04:39.660Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "dhgcgprsy7g", + "host": "rum.hlx.page", + "time": "2024-09-02T00:55:13.546Z", + "timeSlot": "2024-09-02T00:55:13.546Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5hml5wmk2jp", + "host": "rum.hlx.page", + "time": "2024-08-30T23:00:43.625Z", + "timeSlot": "2024-08-30T23:00:43.625Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ji6ufvn96o9", + "host": "rum.hlx.page", + "time": "2024-09-01T06:16:26.878Z", + "timeSlot": "2024-09-01T06:16:26.878Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zf5pf5fbcf", + "host": "rum.hlx.page", + "time": "2024-08-31T19:03:17.004Z", + "timeSlot": "2024-08-31T19:03:17.004Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7fhed2w9jp4", + "host": "rum.hlx.page", + "time": "2024-09-01T05:20:23.656Z", + "timeSlot": "2024-09-01T05:20:23.656Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "hwfpu8auaj", + "host": "rum.hlx.page", + "time": "2024-09-01T15:38:18.519Z", + "timeSlot": "2024-09-01T15:38:18.519Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "c83oz9rp0d", + "host": "rum.hlx.page", + "time": "2024-08-31T05:47:18.942Z", + "timeSlot": "2024-08-31T05:47:18.942Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cqct1hwtof8", + "host": "rum.hlx.page", + "time": "2024-08-31T05:16:36.325Z", + "timeSlot": "2024-08-31T05:16:36.325Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vjbko4tmqyb", + "host": "rum.hlx.page", + "time": "2024-08-30T22:48:22.640Z", + "timeSlot": "2024-08-30T22:48:22.640Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2chav4qneg7", + "host": "rum.hlx.page", + "time": "2024-08-31T06:28:13.643Z", + "timeSlot": "2024-08-31T06:28:13.643Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l28k5u1t2ub", + "host": "rum.hlx.page", + "time": "2024-09-01T17:42:17.824Z", + "timeSlot": "2024-09-01T17:42:17.824Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a67123u4v0m", + "host": "rum.hlx.page", + "time": "2024-08-31T12:56:20.891Z", + "timeSlot": "2024-08-31T12:56:20.891Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ry9iudjtt6", + "host": "rum.hlx.page", + "time": "2024-08-30T20:10:07.706Z", + "timeSlot": "2024-08-30T20:10:07.706Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mf7v6c993j", + "host": "rum.hlx.page", + "time": "2024-08-30T15:07:28.145Z", + "timeSlot": "2024-08-30T15:07:28.145Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ie6h80y9g8", + "host": "rum.hlx.page", + "time": "2024-09-01T11:12:57.016Z", + "timeSlot": "2024-09-01T11:12:57.016Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vmvxga3ibjf", + "host": "rum.hlx.page", + "time": "2024-08-31T08:01:40.992Z", + "timeSlot": "2024-08-31T08:01:40.992Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "whhcbtv22ei", + "host": "rum.hlx.page", + "time": "2024-08-30T22:18:37.962Z", + "timeSlot": "2024-08-30T22:18:37.962Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "q805by9lm9", + "host": "rum.hlx.page", + "time": "2024-08-30T20:29:21.540Z", + "timeSlot": "2024-08-30T20:29:21.540Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "yq37ngu0ov", + "host": "rum.hlx.page", + "time": "2024-09-01T22:44:27.133Z", + "timeSlot": "2024-09-01T22:44:27.133Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "psx9sgkn9yr", + "host": "rum.hlx.page", + "time": "2024-09-02T02:22:48.172Z", + "timeSlot": "2024-09-02T02:22:48.172Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "3e2pp6mfuga", + "host": "rum.hlx.page", + "time": "2024-09-01T18:38:21.743Z", + "timeSlot": "2024-09-01T18:38:21.743Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "nzywjzkaw5", + "host": "rum.hlx.page", + "time": "2024-09-01T08:47:54.328Z", + "timeSlot": "2024-09-01T08:47:54.328Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tzpv9rf0oer", + "host": "rum.hlx.page", + "time": "2024-08-30T20:15:41.225Z", + "timeSlot": "2024-08-30T20:15:41.225Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wn5qlctzyp", + "host": "rum.hlx.page", + "time": "2024-09-01T03:15:35.059Z", + "timeSlot": "2024-09-01T03:15:35.059Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zxs3fd7ztbi", + "host": "rum.hlx.page", + "time": "2024-09-01T13:23:11.377Z", + "timeSlot": "2024-09-01T13:23:11.377Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k70tduky45", + "host": "rum.hlx.page", + "time": "2024-08-31T02:57:42.558Z", + "timeSlot": "2024-08-31T02:57:42.558Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ihz3759eysg", + "host": "rum.hlx.page", + "time": "2024-09-01T17:36:41.316Z", + "timeSlot": "2024-09-01T17:36:41.316Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vykkbjd4irl", + "host": "rum.hlx.page", + "time": "2024-09-01T15:24:34.091Z", + "timeSlot": "2024-09-01T15:24:34.091Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "9z8idvu64n9", + "host": "rum.hlx.page", + "time": "2024-09-01T20:08:51.644Z", + "timeSlot": "2024-09-01T20:08:51.644Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "oq4etu0yh5", + "host": "rum.hlx.page", + "time": "2024-09-02T10:40:05.593Z", + "timeSlot": "2024-09-02T10:40:05.593Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jrftp97ckte", + "host": "rum.hlx.page", + "time": "2024-09-02T03:59:08.833Z", + "timeSlot": "2024-09-02T03:59:08.833Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2k59rxo7qfc", + "host": "rum.hlx.page", + "time": "2024-08-31T22:31:35.638Z", + "timeSlot": "2024-08-31T22:31:35.638Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4web5q6pq4i", + "host": "rum.hlx.page", + "time": "2024-09-02T07:06:34.470Z", + "timeSlot": "2024-09-02T07:06:34.470Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "nu4ytwfc4pf", + "host": "rum.hlx.page", + "time": "2024-09-02T02:45:48.369Z", + "timeSlot": "2024-09-02T02:45:48.369Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7mqmorenqor", + "host": "rum.hlx.page", + "time": "2024-09-01T05:34:52.622Z", + "timeSlot": "2024-09-01T05:34:52.622Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lp37tre04v", + "host": "rum.hlx.page", + "time": "2024-09-01T23:10:13.471Z", + "timeSlot": "2024-09-01T23:10:13.471Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "a5in6o72kum", + "host": "rum.hlx.page", + "time": "2024-09-01T11:21:17.636Z", + "timeSlot": "2024-09-01T11:21:17.636Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "3zzkarjgqm1", + "host": "rum.hlx.page", + "time": "2024-08-30T16:20:35.303Z", + "timeSlot": "2024-08-30T16:20:35.303Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bm5dwnw9hp5", + "host": "rum.hlx.page", + "time": "2024-09-01T12:23:01.903Z", + "timeSlot": "2024-09-01T12:23:01.903Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pvtghm5dyzo", + "host": "rum.hlx.page", + "time": "2024-09-01T12:40:09.260Z", + "timeSlot": "2024-09-01T12:40:09.260Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mwwcz2r106", + "host": "rum.hlx.page", + "time": "2024-08-31T00:21:21.797Z", + "timeSlot": "2024-08-31T00:21:21.797Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "rfw99y4krh", + "host": "rum.hlx.page", + "time": "2024-09-02T08:27:23.050Z", + "timeSlot": "2024-09-02T08:27:23.050Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ffay9ljayjw", + "host": "rum.hlx.page", + "time": "2024-08-31T22:20:41.820Z", + "timeSlot": "2024-08-31T22:20:41.820Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "yiqkpcmnrnf", + "host": "rum.hlx.page", + "time": "2024-08-31T12:37:46.804Z", + "timeSlot": "2024-08-31T12:37:46.804Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "tcdu31yuyd", + "host": "rum.hlx.page", + "time": "2024-08-31T21:48:53.390Z", + "timeSlot": "2024-08-31T21:48:53.390Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lxu6elidyw", + "host": "rum.hlx.page", + "time": "2024-08-31T10:54:24.354Z", + "timeSlot": "2024-08-31T10:54:24.354Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3zf50757hcq", + "host": "rum.hlx.page", + "time": "2024-08-31T23:46:30.457Z", + "timeSlot": "2024-08-31T23:46:30.457Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "uz6qe207bc", + "host": "rum.hlx.page", + "time": "2024-08-31T00:44:26.745Z", + "timeSlot": "2024-08-31T00:44:26.745Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1wrsebjclr6", + "host": "rum.hlx.page", + "time": "2024-09-02T02:33:34.550Z", + "timeSlot": "2024-09-02T02:33:34.550Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "456jirkldlv", + "host": "rum.hlx.page", + "time": "2024-08-30T17:14:55.468Z", + "timeSlot": "2024-08-30T17:14:55.468Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lbyq41z3uk", + "host": "rum.hlx.page", + "time": "2024-08-31T15:52:25.807Z", + "timeSlot": "2024-08-31T15:52:25.807Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "biubkfp2fls", + "host": "rum.hlx.page", + "time": "2024-08-31T19:23:09.945Z", + "timeSlot": "2024-08-31T19:23:09.945Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gtl026id5x", + "host": "rum.hlx.page", + "time": "2024-09-01T09:44:02.439Z", + "timeSlot": "2024-09-01T09:44:02.439Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "it5yud30uk", + "host": "rum.hlx.page", + "time": "2024-09-02T07:14:34.880Z", + "timeSlot": "2024-09-02T07:14:34.880Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x0l9oyqc41n", + "host": "rum.hlx.page", + "time": "2024-08-31T13:14:19.031Z", + "timeSlot": "2024-08-31T13:14:19.031Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "e0spzdzno7m", + "host": "rum.hlx.page", + "time": "2024-09-02T05:23:36.813Z", + "timeSlot": "2024-09-02T05:23:36.813Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "69lxxymns4s", + "host": "rum.hlx.page", + "time": "2024-09-02T04:35:56.838Z", + "timeSlot": "2024-09-02T04:35:56.838Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zsa4g2olrge", + "host": "rum.hlx.page", + "time": "2024-09-01T20:14:16.559Z", + "timeSlot": "2024-09-01T20:14:16.559Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vp9pu2k6uqm", + "host": "rum.hlx.page", + "time": "2024-09-01T02:15:51.846Z", + "timeSlot": "2024-09-01T02:15:51.846Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ufaq0pc62zm", + "host": "rum.hlx.page", + "time": "2024-09-02T06:37:48.518Z", + "timeSlot": "2024-09-02T06:37:48.518Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "c36ove4smbr", + "host": "rum.hlx.page", + "time": "2024-09-01T11:44:36.640Z", + "timeSlot": "2024-09-01T11:44:36.640Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "hr7jha76fr9", + "host": "rum.hlx.page", + "time": "2024-08-30T17:45:26.521Z", + "timeSlot": "2024-08-30T17:45:26.521Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "li3y57tiqo", + "host": "rum.hlx.page", + "time": "2024-09-01T18:36:54.692Z", + "timeSlot": "2024-09-01T18:36:54.692Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gkhpqz9j2h8", + "host": "rum.hlx.page", + "time": "2024-08-31T23:08:10.779Z", + "timeSlot": "2024-08-31T23:08:10.779Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3foxbiscgac", + "host": "rum.hlx.page", + "time": "2024-08-30T23:29:24.390Z", + "timeSlot": "2024-08-30T23:29:24.390Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8yyp21v3qhu", + "host": "rum.hlx.page", + "time": "2024-08-30T19:06:50.834Z", + "timeSlot": "2024-08-30T19:06:50.834Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "23hb9tkkdei", + "host": "rum.hlx.page", + "time": "2024-09-01T22:21:35.214Z", + "timeSlot": "2024-09-01T22:21:35.214Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "j39pl9t1xq", + "host": "rum.hlx.page", + "time": "2024-08-31T03:15:46.026Z", + "timeSlot": "2024-08-31T03:15:46.026Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "zrxbl298347", + "host": "rum.hlx.page", + "time": "2024-09-02T06:49:38.311Z", + "timeSlot": "2024-09-02T06:49:38.311Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tqr0zo0mpjp", + "host": "rum.hlx.page", + "time": "2024-09-01T17:54:30.473Z", + "timeSlot": "2024-09-01T17:54:30.473Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5i6vuo2xiaj", + "host": "rum.hlx.page", + "time": "2024-09-01T13:27:06.968Z", + "timeSlot": "2024-09-01T13:27:06.968Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "oolhz8g3b97", + "host": "rum.hlx.page", + "time": "2024-09-01T17:43:21.199Z", + "timeSlot": "2024-09-01T17:43:21.199Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nlp82ynemtb", + "host": "rum.hlx.page", + "time": "2024-08-31T13:57:08.179Z", + "timeSlot": "2024-08-31T13:57:08.179Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "wz461ayemla", + "host": "rum.hlx.page", + "time": "2024-08-30T20:51:07.729Z", + "timeSlot": "2024-08-30T20:51:07.729Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lhqgyxngm6n", + "host": "rum.hlx.page", + "time": "2024-09-01T16:09:06.814Z", + "timeSlot": "2024-09-01T16:09:06.814Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "36ed0phr202", + "host": "rum.hlx.page", + "time": "2024-09-01T15:32:30.349Z", + "timeSlot": "2024-09-01T15:32:30.349Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "oy0nlfl6vai", + "host": "rum.hlx.page", + "time": "2024-08-31T17:03:45.214Z", + "timeSlot": "2024-08-31T17:03:45.214Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "5diaql1ukj4", + "host": "rum.hlx.page", + "time": "2024-09-01T11:24:15.793Z", + "timeSlot": "2024-09-01T11:24:15.793Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "oke6y54pkb", + "host": "rum.hlx.page", + "time": "2024-09-02T12:38:47.664Z", + "timeSlot": "2024-09-02T12:38:47.664Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zoscked9qp9", + "host": "rum.hlx.page", + "time": "2024-09-02T07:01:35.030Z", + "timeSlot": "2024-09-02T07:01:35.030Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "r2sct5n3f3b", + "host": "rum.hlx.page", + "time": "2024-08-31T19:35:44.910Z", + "timeSlot": "2024-08-31T19:35:44.910Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "686n7y4cyut", + "host": "rum.hlx.page", + "time": "2024-08-30T22:15:05.484Z", + "timeSlot": "2024-08-30T22:15:05.484Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zn8zpeccu1", + "host": "rum.hlx.page", + "time": "2024-08-30T20:33:40.578Z", + "timeSlot": "2024-08-30T20:33:40.578Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8ijlvsbfvb6", + "host": "rum.hlx.page", + "time": "2024-08-31T16:45:57.598Z", + "timeSlot": "2024-08-31T16:45:57.598Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "6ysk1cm5zkk", + "host": "rum.hlx.page", + "time": "2024-08-31T08:48:10.349Z", + "timeSlot": "2024-08-31T08:48:10.349Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2474x1kl2aw", + "host": "rum.hlx.page", + "time": "2024-08-31T07:47:46.528Z", + "timeSlot": "2024-08-31T07:47:46.528Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tdfi5jsf5v", + "host": "rum.hlx.page", + "time": "2024-09-01T13:46:04.922Z", + "timeSlot": "2024-09-01T13:46:04.922Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "1lsg8uwfct4", + "host": "rum.hlx.page", + "time": "2024-09-01T09:01:17.303Z", + "timeSlot": "2024-09-01T09:01:17.303Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rtqwqdndrmd", + "host": "rum.hlx.page", + "time": "2024-08-31T06:00:30.378Z", + "timeSlot": "2024-08-31T06:00:30.378Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "eq0dy9fwuz9", + "host": "rum.hlx.page", + "time": "2024-09-01T07:51:12.204Z", + "timeSlot": "2024-09-01T07:51:12.204Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rxhoy3a3i3k", + "host": "rum.hlx.page", + "time": "2024-08-31T01:37:57.626Z", + "timeSlot": "2024-08-31T01:37:57.626Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zyf3knfu4", + "host": "rum.hlx.page", + "time": "2024-09-02T08:54:37.994Z", + "timeSlot": "2024-09-02T08:54:37.994Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "65btxc21gt", + "host": "rum.hlx.page", + "time": "2024-08-31T11:49:07.424Z", + "timeSlot": "2024-08-31T11:49:07.424Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "45ujfv9fdbh", + "host": "rum.hlx.page", + "time": "2024-08-31T03:20:47.248Z", + "timeSlot": "2024-08-31T03:20:47.248Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4flmzn4iexg", + "host": "rum.hlx.page", + "time": "2024-08-31T06:46:08.058Z", + "timeSlot": "2024-08-31T06:46:08.058Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "8wxgr0zleul", + "host": "rum.hlx.page", + "time": "2024-09-02T05:37:39.096Z", + "timeSlot": "2024-09-02T05:37:39.096Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "69hmob5n6i", + "host": "rum.hlx.page", + "time": "2024-09-01T20:50:48.556Z", + "timeSlot": "2024-09-01T20:50:48.556Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "k93xsruqyog", + "host": "rum.hlx.page", + "time": "2024-09-01T14:29:00.705Z", + "timeSlot": "2024-09-01T14:29:00.705Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "es3zwsshwai", + "host": "rum.hlx.page", + "time": "2024-09-02T00:49:56.806Z", + "timeSlot": "2024-09-02T00:49:56.806Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "abbizpt2iuh", + "host": "rum.hlx.page", + "time": "2024-09-02T06:49:49.552Z", + "timeSlot": "2024-09-02T06:49:49.552Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "mofac8a29bt", + "host": "rum.hlx.page", + "time": "2024-09-01T16:32:45.685Z", + "timeSlot": "2024-09-01T16:32:45.685Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "xlli82ikxo", + "host": "rum.hlx.page", + "time": "2024-08-31T19:23:45.348Z", + "timeSlot": "2024-08-31T19:23:45.348Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "03i2f3lrj2l4", + "host": "rum.hlx.page", + "time": "2024-08-30T23:31:04.691Z", + "timeSlot": "2024-08-30T23:31:04.691Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gx9tm9gny5d", + "host": "rum.hlx.page", + "time": "2024-08-30T20:19:43.451Z", + "timeSlot": "2024-08-30T20:19:43.451Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jrte76e0iyl", + "host": "rum.hlx.page", + "time": "2024-09-01T18:03:57.279Z", + "timeSlot": "2024-09-01T18:03:57.279Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "0mvs2exjx2k8", + "host": "rum.hlx.page", + "time": "2024-08-31T06:15:31.570Z", + "timeSlot": "2024-08-31T06:15:31.570Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v4kf5jymre", + "host": "rum.hlx.page", + "time": "2024-08-31T10:49:27.640Z", + "timeSlot": "2024-08-31T10:49:27.640Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "0evrmybo2fp7", + "host": "rum.hlx.page", + "time": "2024-08-31T06:38:31.016Z", + "timeSlot": "2024-08-31T06:38:31.016Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "p4ildywt5to", + "host": "rum.hlx.page", + "time": "2024-09-01T05:46:15.142Z", + "timeSlot": "2024-09-01T05:46:15.142Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t1u6wzsxrmh", + "host": "rum.hlx.page", + "time": "2024-09-01T10:39:50.402Z", + "timeSlot": "2024-09-01T10:39:50.402Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qico91ifpo", + "host": "rum.hlx.page", + "time": "2024-08-31T04:08:06.672Z", + "timeSlot": "2024-08-31T04:08:06.672Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "y0vkcibpsxj", + "host": "rum.hlx.page", + "time": "2024-08-30T20:15:38.375Z", + "timeSlot": "2024-08-30T20:15:38.375Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7xnook5jak5", + "host": "rum.hlx.page", + "time": "2024-08-30T18:53:32.250Z", + "timeSlot": "2024-08-30T18:53:32.250Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "vgydht68f4d", + "host": "rum.hlx.page", + "time": "2024-09-02T08:21:38.164Z", + "timeSlot": "2024-09-02T08:21:38.164Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0pf0vhc08uth", + "host": "rum.hlx.page", + "time": "2024-09-01T05:22:47.020Z", + "timeSlot": "2024-09-01T05:22:47.020Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ux657u46grj", + "host": "rum.hlx.page", + "time": "2024-09-01T15:52:14.516Z", + "timeSlot": "2024-09-01T15:52:14.516Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "z89d3ip5o0a", + "host": "rum.hlx.page", + "time": "2024-08-31T11:52:09.312Z", + "timeSlot": "2024-08-31T11:52:09.312Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1b8tcy7kr89", + "host": "rum.hlx.page", + "time": "2024-08-30T16:11:46.222Z", + "timeSlot": "2024-08-30T16:11:46.222Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2ddkbv3h6c6", + "host": "rum.hlx.page", + "time": "2024-09-02T08:44:45.807Z", + "timeSlot": "2024-09-02T08:44:45.807Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "yvwvxcwe2n", + "host": "rum.hlx.page", + "time": "2024-08-31T09:42:15.219Z", + "timeSlot": "2024-08-31T09:42:15.219Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zw5vor6pj2", + "host": "rum.hlx.page", + "time": "2024-09-01T23:41:05.861Z", + "timeSlot": "2024-09-01T23:41:05.861Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "afte6noz1ke", + "host": "rum.hlx.page", + "time": "2024-09-01T18:06:54.344Z", + "timeSlot": "2024-09-01T18:06:54.344Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lpkdw9i3v1", + "host": "rum.hlx.page", + "time": "2024-09-01T05:54:29.566Z", + "timeSlot": "2024-09-01T05:54:29.566Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "m3l79a4r0n", + "host": "rum.hlx.page", + "time": "2024-09-02T07:02:05.025Z", + "timeSlot": "2024-09-02T07:02:05.025Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qfjotpocdl", + "host": "rum.hlx.page", + "time": "2024-08-31T02:23:43.007Z", + "timeSlot": "2024-08-31T02:23:43.007Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "zz1t699fwpl", + "host": "rum.hlx.page", + "time": "2024-09-01T17:54:08.824Z", + "timeSlot": "2024-09-01T17:54:08.824Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "msz556qvfes", + "host": "rum.hlx.page", + "time": "2024-08-31T15:44:26.076Z", + "timeSlot": "2024-08-31T15:44:26.076Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w1mglw4jr69", + "host": "rum.hlx.page", + "time": "2024-08-30T16:26:39.747Z", + "timeSlot": "2024-08-30T16:26:39.747Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bjvwkw4x3bg", + "host": "rum.hlx.page", + "time": "2024-09-02T05:24:12.955Z", + "timeSlot": "2024-09-02T05:24:12.955Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pupwxj24g2k", + "host": "rum.hlx.page", + "time": "2024-08-31T13:49:26.510Z", + "timeSlot": "2024-08-31T13:49:26.510Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "izdpb1jj07", + "host": "rum.hlx.page", + "time": "2024-09-01T09:36:28.391Z", + "timeSlot": "2024-09-01T09:36:28.391Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qon2943bl1g", + "host": "rum.hlx.page", + "time": "2024-09-01T19:45:55.963Z", + "timeSlot": "2024-09-01T19:45:55.963Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "aw7v6y0y508", + "host": "rum.hlx.page", + "time": "2024-09-01T11:21:33.284Z", + "timeSlot": "2024-09-01T11:21:33.284Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "x8pr3otkfym", + "host": "rum.hlx.page", + "time": "2024-08-31T23:21:27.544Z", + "timeSlot": "2024-08-31T23:21:27.544Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bdhlzks87pn", + "host": "rum.hlx.page", + "time": "2024-08-31T08:32:27.862Z", + "timeSlot": "2024-08-31T08:32:27.862Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bdslv59fslv", + "host": "rum.hlx.page", + "time": "2024-08-30T21:59:32.447Z", + "timeSlot": "2024-08-30T21:59:32.447Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "73nb14awgb", + "host": "rum.hlx.page", + "time": "2024-09-01T01:10:55.867Z", + "timeSlot": "2024-09-01T01:10:55.867Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "3aw3cfhzn15", + "host": "rum.hlx.page", + "time": "2024-09-01T12:49:43.660Z", + "timeSlot": "2024-09-01T12:49:43.660Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "q634wokrnla", + "host": "rum.hlx.page", + "time": "2024-09-01T00:01:51.285Z", + "timeSlot": "2024-09-01T00:01:51.285Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "arjn6twuvql", + "host": "rum.hlx.page", + "time": "2024-09-01T08:54:56.580Z", + "timeSlot": "2024-09-01T08:54:56.580Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3hhjldey8pn", + "host": "rum.hlx.page", + "time": "2024-09-01T16:26:59.102Z", + "timeSlot": "2024-09-01T16:26:59.102Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "me8y3eh599", + "host": "rum.hlx.page", + "time": "2024-08-30T22:30:20.433Z", + "timeSlot": "2024-08-30T22:30:20.433Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sb882gdna7d", + "host": "rum.hlx.page", + "time": "2024-09-02T12:57:49.551Z", + "timeSlot": "2024-09-02T12:57:49.551Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cpj02vcmkl4", + "host": "rum.hlx.page", + "time": "2024-09-01T00:35:40.325Z", + "timeSlot": "2024-09-01T00:35:40.325Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "c2maj3govcf", + "host": "rum.hlx.page", + "time": "2024-09-01T23:24:17.262Z", + "timeSlot": "2024-09-01T23:24:17.262Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1o2tgltver2", + "host": "rum.hlx.page", + "time": "2024-09-02T10:22:50.170Z", + "timeSlot": "2024-09-02T10:22:50.170Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "el6gnsv10m", + "host": "rum.hlx.page", + "time": "2024-09-01T01:37:16.729Z", + "timeSlot": "2024-09-01T01:37:16.729Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ll5020lco1q", + "host": "rum.hlx.page", + "time": "2024-08-31T07:18:35.100Z", + "timeSlot": "2024-08-31T07:18:35.100Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dgqphwx7p8", + "host": "rum.hlx.page", + "time": "2024-09-01T01:45:10.504Z", + "timeSlot": "2024-09-01T01:45:10.504Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "l23o2bl9d7e", + "host": "rum.hlx.page", + "time": "2024-09-01T16:30:13.261Z", + "timeSlot": "2024-09-01T16:30:13.261Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9cee23o6lbv", + "host": "rum.hlx.page", + "time": "2024-09-01T18:52:23.559Z", + "timeSlot": "2024-09-01T18:52:23.559Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6c4tebqg8zq", + "host": "rum.hlx.page", + "time": "2024-08-30T16:29:27.407Z", + "timeSlot": "2024-08-30T16:29:27.407Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "h2pjmhnpdd", + "host": "rum.hlx.page", + "time": "2024-08-30T19:04:37.390Z", + "timeSlot": "2024-08-30T19:04:37.390Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8b0lot2s6r9", + "host": "rum.hlx.page", + "time": "2024-09-02T08:55:16.509Z", + "timeSlot": "2024-09-02T08:55:16.509Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xqii6dypn9", + "host": "rum.hlx.page", + "time": "2024-08-30T19:15:19.053Z", + "timeSlot": "2024-08-30T19:15:19.053Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bakps8fsu4u", + "host": "rum.hlx.page", + "time": "2024-09-02T02:49:07.250Z", + "timeSlot": "2024-09-02T02:49:07.250Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nvzfmlyin7c", + "host": "rum.hlx.page", + "time": "2024-08-31T03:15:11.562Z", + "timeSlot": "2024-08-31T03:15:11.562Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7n6mc3ivny4", + "host": "rum.hlx.page", + "time": "2024-08-30T19:14:18.594Z", + "timeSlot": "2024-08-30T19:14:18.594Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3b06lgnhw3u", + "host": "rum.hlx.page", + "time": "2024-08-30T21:03:08.916Z", + "timeSlot": "2024-08-30T21:03:08.916Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "rnixqh7ir3", + "host": "rum.hlx.page", + "time": "2024-08-30T21:40:26.641Z", + "timeSlot": "2024-08-30T21:40:26.641Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ebwd52s382s", + "host": "rum.hlx.page", + "time": "2024-09-02T14:09:34.450Z", + "timeSlot": "2024-09-02T14:09:34.450Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "teer4t4oaf", + "host": "rum.hlx.page", + "time": "2024-09-01T00:44:31.738Z", + "timeSlot": "2024-09-01T00:44:31.738Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t7kpravcwyl", + "host": "rum.hlx.page", + "time": "2024-09-01T10:34:52.936Z", + "timeSlot": "2024-09-01T10:34:52.936Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ep1st23e45i", + "host": "rum.hlx.page", + "time": "2024-09-01T21:09:25.165Z", + "timeSlot": "2024-09-01T21:09:25.165Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "xo8qekf4gf", + "host": "rum.hlx.page", + "time": "2024-09-01T19:02:13.754Z", + "timeSlot": "2024-09-01T19:02:13.754Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "r4pqgi1hxmp", + "host": "rum.hlx.page", + "time": "2024-09-02T04:14:12.156Z", + "timeSlot": "2024-09-02T04:14:12.156Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r2hh8srbcs8", + "host": "rum.hlx.page", + "time": "2024-09-01T13:11:36.086Z", + "timeSlot": "2024-09-01T13:11:36.086Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "x3ckqctxax8", + "host": "rum.hlx.page", + "time": "2024-08-31T03:25:31.995Z", + "timeSlot": "2024-08-31T03:25:31.995Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "vv6yim149k", + "host": "rum.hlx.page", + "time": "2024-08-31T04:53:42.192Z", + "timeSlot": "2024-08-31T04:53:42.192Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "mb0i25dc3kn", + "host": "rum.hlx.page", + "time": "2024-08-31T02:57:25.249Z", + "timeSlot": "2024-08-31T02:57:25.249Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5xbd42trot", + "host": "rum.hlx.page", + "time": "2024-09-02T01:22:04.557Z", + "timeSlot": "2024-09-02T01:22:04.557Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4cvkt5khje", + "host": "rum.hlx.page", + "time": "2024-08-31T05:54:21.497Z", + "timeSlot": "2024-08-31T05:54:21.497Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "q48dzm41gge", + "host": "rum.hlx.page", + "time": "2024-09-01T03:02:31.452Z", + "timeSlot": "2024-09-01T03:02:31.452Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "dequ9vul42j", + "host": "rum.hlx.page", + "time": "2024-09-02T00:18:33.778Z", + "timeSlot": "2024-09-02T00:18:33.778Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sfgtppjiucq", + "host": "rum.hlx.page", + "time": "2024-09-01T04:47:27.279Z", + "timeSlot": "2024-09-01T04:47:27.279Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5ya2qklknoh", + "host": "rum.hlx.page", + "time": "2024-09-01T23:13:54.927Z", + "timeSlot": "2024-09-01T23:13:54.927Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "q4tltud5uc8", + "host": "rum.hlx.page", + "time": "2024-09-02T10:16:17.442Z", + "timeSlot": "2024-09-02T10:16:17.442Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "1fyj21qr0bv", + "host": "rum.hlx.page", + "time": "2024-09-02T13:38:16.228Z", + "timeSlot": "2024-09-02T13:38:16.228Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "doxwxe2we8t", + "host": "rum.hlx.page", + "time": "2024-08-30T22:24:48.482Z", + "timeSlot": "2024-08-30T22:24:48.482Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "x4bhu3c7lde", + "host": "rum.hlx.page", + "time": "2024-09-02T04:53:34.011Z", + "timeSlot": "2024-09-02T04:53:34.011Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "e124qyms28h", + "host": "rum.hlx.page", + "time": "2024-08-31T04:42:47.665Z", + "timeSlot": "2024-08-31T04:42:47.665Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "55mt3mvltrf", + "host": "rum.hlx.page", + "time": "2024-08-31T18:35:59.788Z", + "timeSlot": "2024-08-31T18:35:59.788Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xkut2w5nioj", + "host": "rum.hlx.page", + "time": "2024-09-01T02:59:31.539Z", + "timeSlot": "2024-09-01T02:59:31.539Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pmwrw9orwo", + "host": "rum.hlx.page", + "time": "2024-08-30T23:19:49.348Z", + "timeSlot": "2024-08-30T23:19:49.348Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "d6txlvpshgc", + "host": "rum.hlx.page", + "time": "2024-09-01T08:59:47.228Z", + "timeSlot": "2024-09-01T08:59:47.228Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dpdzuat9k4a", + "host": "rum.hlx.page", + "time": "2024-08-30T21:57:59.512Z", + "timeSlot": "2024-08-30T21:57:59.512Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9k5mix2f08v", + "host": "rum.hlx.page", + "time": "2024-09-02T10:02:25.275Z", + "timeSlot": "2024-09-02T10:02:25.275Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "c8nx42b6kf", + "host": "rum.hlx.page", + "time": "2024-09-02T09:12:54.427Z", + "timeSlot": "2024-09-02T09:12:54.427Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "f4lrh52tasn", + "host": "rum.hlx.page", + "time": "2024-08-30T22:34:04.764Z", + "timeSlot": "2024-08-30T22:34:04.764Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "i5f549zbgdr", + "host": "rum.hlx.page", + "time": "2024-09-01T01:55:15.105Z", + "timeSlot": "2024-09-01T01:55:15.105Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ess628cuheb", + "host": "rum.hlx.page", + "time": "2024-08-30T16:03:20.039Z", + "timeSlot": "2024-08-30T16:03:20.039Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qvw88vvv61", + "host": "rum.hlx.page", + "time": "2024-09-01T12:17:37.830Z", + "timeSlot": "2024-09-01T12:17:37.830Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "i8m1fsso6r", + "host": "rum.hlx.page", + "time": "2024-09-02T07:12:42.004Z", + "timeSlot": "2024-09-02T07:12:42.004Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "lesozzjmtte", + "host": "rum.hlx.page", + "time": "2024-09-01T03:32:41.797Z", + "timeSlot": "2024-09-01T03:32:41.797Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "puexqfzo0sc", + "host": "rum.hlx.page", + "time": "2024-08-31T05:57:34.896Z", + "timeSlot": "2024-08-31T05:57:34.896Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "l9wxbhxge1", + "host": "rum.hlx.page", + "time": "2024-09-02T13:15:10.167Z", + "timeSlot": "2024-09-02T13:15:10.167Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "unbhv1k51oo", + "host": "rum.hlx.page", + "time": "2024-09-01T22:31:36.121Z", + "timeSlot": "2024-09-01T22:31:36.121Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "rh62xuiyoq", + "host": "rum.hlx.page", + "time": "2024-09-02T09:57:52.196Z", + "timeSlot": "2024-09-02T09:57:52.196Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9oajjjof9v6", + "host": "rum.hlx.page", + "time": "2024-08-31T14:30:32.697Z", + "timeSlot": "2024-08-31T14:30:32.697Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ruwsnei0fh", + "host": "rum.hlx.page", + "time": "2024-08-31T19:00:51.095Z", + "timeSlot": "2024-08-31T19:00:51.095Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ypl0t8195vi", + "host": "rum.hlx.page", + "time": "2024-09-02T05:16:00.996Z", + "timeSlot": "2024-09-02T05:16:00.996Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cg9e03bt97j", + "host": "rum.hlx.page", + "time": "2024-09-01T17:56:06.392Z", + "timeSlot": "2024-09-01T17:56:06.392Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vekqh9f33ni", + "host": "rum.hlx.page", + "time": "2024-08-31T05:50:20.840Z", + "timeSlot": "2024-08-31T05:50:20.840Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dcqp765ibyh", + "host": "rum.hlx.page", + "time": "2024-08-31T03:19:51.448Z", + "timeSlot": "2024-08-31T03:19:51.448Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8lehb4wjyqj", + "host": "rum.hlx.page", + "time": "2024-09-01T16:22:39.749Z", + "timeSlot": "2024-09-01T16:22:39.749Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "qb5c5gf4oj", + "host": "rum.hlx.page", + "time": "2024-09-01T06:48:35.926Z", + "timeSlot": "2024-09-01T06:48:35.926Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gzivt6y8rhl", + "host": "rum.hlx.page", + "time": "2024-08-31T09:56:08.719Z", + "timeSlot": "2024-08-31T09:56:08.719Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vx72moozdsd", + "host": "rum.hlx.page", + "time": "2024-08-31T07:12:12.784Z", + "timeSlot": "2024-08-31T07:12:12.784Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ppvvwintb2s", + "host": "rum.hlx.page", + "time": "2024-09-01T16:55:12.112Z", + "timeSlot": "2024-09-01T16:55:12.112Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "g4oync4mli", + "host": "rum.hlx.page", + "time": "2024-08-31T06:12:38.481Z", + "timeSlot": "2024-08-31T06:12:38.481Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2r73s3dtauo", + "host": "rum.hlx.page", + "time": "2024-08-31T17:11:31.384Z", + "timeSlot": "2024-08-31T17:11:31.384Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ozlkxulx69d", + "host": "rum.hlx.page", + "time": "2024-09-02T11:46:30.320Z", + "timeSlot": "2024-09-02T11:46:30.320Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "rkkzfrbcjt", + "host": "rum.hlx.page", + "time": "2024-09-02T08:16:58.750Z", + "timeSlot": "2024-09-02T08:16:58.750Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "vriq2f7v60t", + "host": "rum.hlx.page", + "time": "2024-09-02T08:22:13.390Z", + "timeSlot": "2024-09-02T08:22:13.390Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r669uk7ruek", + "host": "rum.hlx.page", + "time": "2024-09-01T20:11:10.228Z", + "timeSlot": "2024-09-01T20:11:10.228Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x77amwi7owo", + "host": "rum.hlx.page", + "time": "2024-09-02T00:39:02.668Z", + "timeSlot": "2024-09-02T00:39:02.668Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "5h36st3q8df", + "host": "rum.hlx.page", + "time": "2024-08-31T03:24:26.598Z", + "timeSlot": "2024-08-31T03:24:26.598Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "obrgu2rs6z", + "host": "rum.hlx.page", + "time": "2024-09-01T22:14:22.937Z", + "timeSlot": "2024-09-01T22:14:22.937Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mloeqjygvxl", + "host": "rum.hlx.page", + "time": "2024-09-01T00:13:00.135Z", + "timeSlot": "2024-09-01T00:13:00.135Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v1blkylj5f", + "host": "rum.hlx.page", + "time": "2024-08-31T23:35:43.823Z", + "timeSlot": "2024-08-31T23:35:43.823Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qal1tnayj9", + "host": "rum.hlx.page", + "time": "2024-08-31T08:04:00.777Z", + "timeSlot": "2024-08-31T08:04:00.777Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2nccqynjf1m", + "host": "rum.hlx.page", + "time": "2024-08-31T11:07:39.693Z", + "timeSlot": "2024-08-31T11:07:39.693Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0a70cgbdg5xs", + "host": "rum.hlx.page", + "time": "2024-08-31T20:40:53.545Z", + "timeSlot": "2024-08-31T20:40:53.545Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "87e6t3qol5", + "host": "rum.hlx.page", + "time": "2024-09-02T07:06:47.070Z", + "timeSlot": "2024-09-02T07:06:47.070Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nhbc9x86t38", + "host": "rum.hlx.page", + "time": "2024-08-31T09:38:07.125Z", + "timeSlot": "2024-08-31T09:38:07.125Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5rmvkqm2zhy", + "host": "rum.hlx.page", + "time": "2024-09-01T10:15:43.293Z", + "timeSlot": "2024-09-01T10:15:43.293Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "438e9t9pqj2", + "host": "rum.hlx.page", + "time": "2024-08-30T19:55:41.555Z", + "timeSlot": "2024-08-30T19:55:41.555Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xbq1qwfs2el", + "host": "rum.hlx.page", + "time": "2024-09-02T11:14:17.910Z", + "timeSlot": "2024-09-02T11:14:17.910Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y45wly61yzp", + "host": "rum.hlx.page", + "time": "2024-08-31T14:51:36.264Z", + "timeSlot": "2024-08-31T14:51:36.264Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "i2wzuudt0yc", + "host": "rum.hlx.page", + "time": "2024-08-31T20:53:21.341Z", + "timeSlot": "2024-08-31T20:53:21.341Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jiomeiewed9", + "host": "rum.hlx.page", + "time": "2024-09-01T11:12:32.912Z", + "timeSlot": "2024-09-01T11:12:32.912Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "h1yhtqqgbwj", + "host": "rum.hlx.page", + "time": "2024-08-31T15:22:17.709Z", + "timeSlot": "2024-08-31T15:22:17.709Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tsd3ztwdbzp", + "host": "rum.hlx.page", + "time": "2024-08-31T03:49:37.660Z", + "timeSlot": "2024-08-31T03:49:37.660Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "gvuiyshu12r", + "host": "rum.hlx.page", + "time": "2024-08-31T22:08:29.896Z", + "timeSlot": "2024-08-31T22:08:29.896Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "qkqrc0zp8ks", + "host": "rum.hlx.page", + "time": "2024-09-02T06:33:52.213Z", + "timeSlot": "2024-09-02T06:33:52.213Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "euqggzjb8st", + "host": "rum.hlx.page", + "time": "2024-08-31T22:46:37.260Z", + "timeSlot": "2024-08-31T22:46:37.260Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "14puorl9xr3", + "host": "rum.hlx.page", + "time": "2024-09-01T23:05:32.575Z", + "timeSlot": "2024-09-01T23:05:32.575Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0r1i0tgyqez", + "host": "rum.hlx.page", + "time": "2024-09-01T20:04:45.603Z", + "timeSlot": "2024-09-01T20:04:45.603Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ahhmo3hmn44", + "host": "rum.hlx.page", + "time": "2024-08-31T14:32:10.151Z", + "timeSlot": "2024-08-31T14:32:10.151Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bhk6yzg0v4", + "host": "rum.hlx.page", + "time": "2024-08-31T21:35:04.257Z", + "timeSlot": "2024-08-31T21:35:04.257Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2nka9my2t0u", + "host": "rum.hlx.page", + "time": "2024-09-01T06:19:43.885Z", + "timeSlot": "2024-09-01T06:19:43.885Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "j5c207puggf", + "host": "rum.hlx.page", + "time": "2024-08-30T23:40:42.614Z", + "timeSlot": "2024-08-30T23:40:42.614Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w9jmenqz9u9", + "host": "rum.hlx.page", + "time": "2024-09-01T21:30:21.470Z", + "timeSlot": "2024-09-01T21:30:21.470Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "79gr1u8jdvj", + "host": "rum.hlx.page", + "time": "2024-08-30T22:36:34.932Z", + "timeSlot": "2024-08-30T22:36:34.932Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "thnq3xuvm3", + "host": "rum.hlx.page", + "time": "2024-08-31T20:30:27.352Z", + "timeSlot": "2024-08-31T20:30:27.352Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "09d5gl0mu1yg", + "host": "rum.hlx.page", + "time": "2024-09-02T06:22:03.032Z", + "timeSlot": "2024-09-02T06:22:03.032Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "64mftkr73po", + "host": "rum.hlx.page", + "time": "2024-09-01T11:31:03.082Z", + "timeSlot": "2024-09-01T11:31:03.082Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w8o296cwtpg", + "host": "rum.hlx.page", + "time": "2024-09-01T12:55:24.845Z", + "timeSlot": "2024-09-01T12:55:24.845Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e4kwntt5pvu", + "host": "rum.hlx.page", + "time": "2024-09-02T12:37:40.417Z", + "timeSlot": "2024-09-02T12:37:40.417Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "lv4xkeix4v", + "host": "rum.hlx.page", + "time": "2024-09-01T13:02:36.394Z", + "timeSlot": "2024-09-01T13:02:36.394Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jq2q5q93c4", + "host": "rum.hlx.page", + "time": "2024-08-31T06:49:19.940Z", + "timeSlot": "2024-08-31T06:49:19.940Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ygymmxk84bp", + "host": "rum.hlx.page", + "time": "2024-09-02T08:31:15.566Z", + "timeSlot": "2024-09-02T08:31:15.566Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bh4e3mv1xyw", + "host": "rum.hlx.page", + "time": "2024-09-01T10:32:07.143Z", + "timeSlot": "2024-09-01T10:32:07.143Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ej86ne2o5if", + "host": "rum.hlx.page", + "time": "2024-08-31T02:15:31.162Z", + "timeSlot": "2024-08-31T02:15:31.162Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0u0b4ymhjuh9", + "host": "rum.hlx.page", + "time": "2024-08-30T23:37:25.292Z", + "timeSlot": "2024-08-30T23:37:25.292Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mcfmqxojcjm", + "host": "rum.hlx.page", + "time": "2024-09-01T16:17:27.115Z", + "timeSlot": "2024-09-01T16:17:27.115Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "n9b559hgax", + "host": "rum.hlx.page", + "time": "2024-08-31T17:46:45.939Z", + "timeSlot": "2024-08-31T17:46:45.939Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ugul3ssqz7o", + "host": "rum.hlx.page", + "time": "2024-09-01T00:13:52.530Z", + "timeSlot": "2024-09-01T00:13:52.530Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kgao0tlfw68", + "host": "rum.hlx.page", + "time": "2024-09-02T07:50:58.768Z", + "timeSlot": "2024-09-02T07:50:58.768Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ypng6wvs9a", + "host": "rum.hlx.page", + "time": "2024-08-31T03:48:35.453Z", + "timeSlot": "2024-08-31T03:48:35.453Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lan1ivq9n5", + "host": "rum.hlx.page", + "time": "2024-08-31T07:55:11.427Z", + "timeSlot": "2024-08-31T07:55:11.427Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cqp2xetjgct", + "host": "rum.hlx.page", + "time": "2024-08-30T23:41:35.159Z", + "timeSlot": "2024-08-30T23:41:35.159Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k5gs1dacw9", + "host": "rum.hlx.page", + "time": "2024-08-31T15:02:46.836Z", + "timeSlot": "2024-08-31T15:02:46.836Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zdyjhu5ytw", + "host": "rum.hlx.page", + "time": "2024-08-30T22:21:12.286Z", + "timeSlot": "2024-08-30T22:21:12.286Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1mtvh9rzp1l", + "host": "rum.hlx.page", + "time": "2024-08-31T03:58:52.926Z", + "timeSlot": "2024-08-31T03:58:52.926Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d000z1ko9cv", + "host": "rum.hlx.page", + "time": "2024-09-02T09:00:50.036Z", + "timeSlot": "2024-09-02T09:00:50.036Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cfizs58g654", + "host": "rum.hlx.page", + "time": "2024-09-02T13:22:13.985Z", + "timeSlot": "2024-09-02T13:22:13.985Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5juy36anyiu", + "host": "rum.hlx.page", + "time": "2024-08-31T10:41:48.988Z", + "timeSlot": "2024-08-31T10:41:48.988Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5qlnfspv63t", + "host": "rum.hlx.page", + "time": "2024-08-31T04:30:39.500Z", + "timeSlot": "2024-08-31T04:30:39.500Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "otu8r459pl8", + "host": "rum.hlx.page", + "time": "2024-09-01T17:48:18.794Z", + "timeSlot": "2024-09-01T17:48:18.794Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vwe1uxuen3", + "host": "rum.hlx.page", + "time": "2024-08-30T17:05:21.724Z", + "timeSlot": "2024-08-30T17:05:21.724Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "h4cs1mpmzyp", + "host": "rum.hlx.page", + "time": "2024-09-01T19:13:58.818Z", + "timeSlot": "2024-09-01T19:13:58.818Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dgbhf13a6", + "host": "rum.hlx.page", + "time": "2024-08-31T13:55:31.048Z", + "timeSlot": "2024-08-31T13:55:31.048Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "6xck66hk0fq", + "host": "rum.hlx.page", + "time": "2024-09-01T01:25:49.558Z", + "timeSlot": "2024-09-01T01:25:49.558Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cajgch6dn2v", + "host": "rum.hlx.page", + "time": "2024-09-01T05:20:05.333Z", + "timeSlot": "2024-09-01T05:20:05.333Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "91i5kfwqnho", + "host": "rum.hlx.page", + "time": "2024-08-31T02:15:53.608Z", + "timeSlot": "2024-08-31T02:15:53.608Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pq9nvusqi4", + "host": "rum.hlx.page", + "time": "2024-08-31T22:06:17.934Z", + "timeSlot": "2024-08-31T22:06:17.934Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pgyfrv2i51q", + "host": "rum.hlx.page", + "time": "2024-09-01T02:37:14.118Z", + "timeSlot": "2024-09-01T02:37:14.118Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "kw0zthzkx4l", + "host": "rum.hlx.page", + "time": "2024-09-01T23:02:57.864Z", + "timeSlot": "2024-09-01T23:02:57.864Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "keb08v6iufo", + "host": "rum.hlx.page", + "time": "2024-09-01T08:43:49.710Z", + "timeSlot": "2024-09-01T08:43:49.710Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "raf34mp2ab", + "host": "rum.hlx.page", + "time": "2024-08-31T02:06:00.335Z", + "timeSlot": "2024-08-31T02:06:00.335Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "9i33qooqhb4", + "host": "rum.hlx.page", + "time": "2024-08-31T19:02:11.232Z", + "timeSlot": "2024-08-31T19:02:11.232Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1v0t7tolzlw", + "host": "rum.hlx.page", + "time": "2024-08-30T22:49:51.922Z", + "timeSlot": "2024-08-30T22:49:51.922Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8e15jrfikx7", + "host": "rum.hlx.page", + "time": "2024-09-02T09:03:16.113Z", + "timeSlot": "2024-09-02T09:03:16.113Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "cjwr0v074tk", + "host": "rum.hlx.page", + "time": "2024-09-02T13:05:03.282Z", + "timeSlot": "2024-09-02T13:05:03.282Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "10lts0wk426", + "host": "rum.hlx.page", + "time": "2024-09-01T15:41:03.951Z", + "timeSlot": "2024-09-01T15:41:03.951Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "nnowqs7jeck", + "host": "rum.hlx.page", + "time": "2024-09-01T01:18:35.813Z", + "timeSlot": "2024-09-01T01:18:35.813Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ay0gv7skn2", + "host": "rum.hlx.page", + "time": "2024-09-02T14:03:49.264Z", + "timeSlot": "2024-09-02T14:03:49.264Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "21yz2w12k3k", + "host": "rum.hlx.page", + "time": "2024-09-02T01:34:49.485Z", + "timeSlot": "2024-09-02T01:34:49.485Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "73tciszw6ou", + "host": "rum.hlx.page", + "time": "2024-08-31T21:34:12.377Z", + "timeSlot": "2024-08-31T21:34:12.377Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xkm4c5kf9op", + "host": "rum.hlx.page", + "time": "2024-08-30T22:31:31.769Z", + "timeSlot": "2024-08-30T22:31:31.769Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "b8os7wdogya", + "host": "rum.hlx.page", + "time": "2024-09-02T10:17:07.950Z", + "timeSlot": "2024-09-02T10:17:07.950Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "996utqsj0ks", + "host": "rum.hlx.page", + "time": "2024-09-01T12:24:13.338Z", + "timeSlot": "2024-09-01T12:24:13.338Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nsoyoo1538p", + "host": "rum.hlx.page", + "time": "2024-09-01T10:41:58.317Z", + "timeSlot": "2024-09-01T10:41:58.317Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "low7y6wpif", + "host": "rum.hlx.page", + "time": "2024-08-31T15:54:35.802Z", + "timeSlot": "2024-08-31T15:54:35.802Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "f5hsn4e6x", + "host": "rum.hlx.page", + "time": "2024-09-01T10:29:48.788Z", + "timeSlot": "2024-09-01T10:29:48.788Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "awfhfy6x1i", + "host": "rum.hlx.page", + "time": "2024-09-01T14:12:12.157Z", + "timeSlot": "2024-09-01T14:12:12.157Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "vg2z5tavx0h", + "host": "rum.hlx.page", + "time": "2024-09-01T05:10:19.264Z", + "timeSlot": "2024-09-01T05:10:19.264Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "am433orvgdk", + "host": "rum.hlx.page", + "time": "2024-09-01T08:47:55.059Z", + "timeSlot": "2024-09-01T08:47:55.059Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dr172zlh7sb", + "host": "rum.hlx.page", + "time": "2024-08-31T14:57:47.149Z", + "timeSlot": "2024-08-31T14:57:47.149Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "n3cbongg64", + "host": "rum.hlx.page", + "time": "2024-09-01T11:25:02.307Z", + "timeSlot": "2024-09-01T11:25:02.307Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "f6r34br3n3t", + "host": "rum.hlx.page", + "time": "2024-08-31T15:27:17.988Z", + "timeSlot": "2024-08-31T15:27:17.988Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5ydw246ixck", + "host": "rum.hlx.page", + "time": "2024-09-01T10:08:00.465Z", + "timeSlot": "2024-09-01T10:08:00.465Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "f0cm1bq4e4k", + "host": "rum.hlx.page", + "time": "2024-08-30T16:05:09.171Z", + "timeSlot": "2024-08-30T16:05:09.171Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ffsp48mtbv", + "host": "rum.hlx.page", + "time": "2024-08-31T09:09:54.889Z", + "timeSlot": "2024-08-31T09:09:54.889Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "21icct69eoej", + "host": "rum.hlx.page", + "time": "2024-08-30T17:47:34.945Z", + "timeSlot": "2024-08-30T17:47:34.945Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lok851nxm6", + "host": "rum.hlx.page", + "time": "2024-09-01T11:54:46.686Z", + "timeSlot": "2024-09-01T11:54:46.686Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "p39cnoh8yg", + "host": "rum.hlx.page", + "time": "2024-08-30T18:51:48.166Z", + "timeSlot": "2024-08-30T18:51:48.166Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ioftf7623e", + "host": "rum.hlx.page", + "time": "2024-08-30T21:35:44.564Z", + "timeSlot": "2024-08-30T21:35:44.564Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "nj0ejqvhzm", + "host": "rum.hlx.page", + "time": "2024-08-31T22:49:53.206Z", + "timeSlot": "2024-08-31T22:49:53.206Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "1c766psduddh", + "host": "rum.hlx.page", + "time": "2024-08-31T19:07:04.540Z", + "timeSlot": "2024-08-31T19:07:04.540Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6863r34l2lj", + "host": "rum.hlx.page", + "time": "2024-09-02T10:30:33.357Z", + "timeSlot": "2024-09-02T10:30:33.357Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mcq4q59fy6", + "host": "rum.hlx.page", + "time": "2024-08-31T17:24:40.833Z", + "timeSlot": "2024-08-31T17:24:40.833Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "q3dsz9xaq5", + "host": "rum.hlx.page", + "time": "2024-09-02T01:41:51.195Z", + "timeSlot": "2024-09-02T01:41:51.195Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bp9vp892bc7", + "host": "rum.hlx.page", + "time": "2024-08-30T20:30:40.432Z", + "timeSlot": "2024-08-30T20:30:40.432Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nib0lv08g7o", + "host": "rum.hlx.page", + "time": "2024-08-31T00:49:48.435Z", + "timeSlot": "2024-08-31T00:49:48.435Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "kbif5gxxico", + "host": "rum.hlx.page", + "time": "2024-09-01T13:16:08.279Z", + "timeSlot": "2024-09-01T13:16:08.279Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "fuarwn39i4", + "host": "rum.hlx.page", + "time": "2024-09-02T04:08:14.671Z", + "timeSlot": "2024-09-02T04:08:14.671Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jwm5156ip7", + "host": "rum.hlx.page", + "time": "2024-08-31T17:34:50.756Z", + "timeSlot": "2024-08-31T17:34:50.756Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "1310h6f9jfu", + "host": "rum.hlx.page", + "time": "2024-08-30T23:51:34.662Z", + "timeSlot": "2024-08-30T23:51:34.662Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "0k291qdhtntl", + "host": "rum.hlx.page", + "time": "2024-09-01T16:53:30.676Z", + "timeSlot": "2024-09-01T16:53:30.676Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "jn00sboiu2", + "host": "rum.hlx.page", + "time": "2024-09-01T04:55:53.064Z", + "timeSlot": "2024-09-01T04:55:53.064Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sfi8s48naot", + "host": "rum.hlx.page", + "time": "2024-09-01T02:02:43.036Z", + "timeSlot": "2024-09-01T02:02:43.036Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qrsk0hvuy7", + "host": "rum.hlx.page", + "time": "2024-09-02T04:00:11.947Z", + "timeSlot": "2024-09-02T04:00:11.947Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "guc6atttgu4", + "host": "rum.hlx.page", + "time": "2024-09-02T03:45:24.623Z", + "timeSlot": "2024-09-02T03:45:24.623Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4yj4woqqy5e", + "host": "rum.hlx.page", + "time": "2024-08-31T10:49:40.500Z", + "timeSlot": "2024-08-31T10:49:40.500Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "t41uz7t6q1g", + "host": "rum.hlx.page", + "time": "2024-09-01T07:20:49.612Z", + "timeSlot": "2024-09-01T07:20:49.612Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "jbye4hjbnvf", + "host": "rum.hlx.page", + "time": "2024-09-01T16:38:44.896Z", + "timeSlot": "2024-09-01T16:38:44.896Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dfaeyt2opi", + "host": "rum.hlx.page", + "time": "2024-09-01T06:25:56.208Z", + "timeSlot": "2024-09-01T06:25:56.208Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "9m5lzylo4y4", + "host": "rum.hlx.page", + "time": "2024-08-30T15:34:27.358Z", + "timeSlot": "2024-08-30T15:34:27.358Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "dsoconfo1ch", + "host": "rum.hlx.page", + "time": "2024-09-01T23:46:58.231Z", + "timeSlot": "2024-09-01T23:46:58.231Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6xhin203aqv", + "host": "rum.hlx.page", + "time": "2024-08-31T18:35:24.213Z", + "timeSlot": "2024-08-31T18:35:24.213Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "top4sbbgpb", + "host": "rum.hlx.page", + "time": "2024-09-01T20:04:31.280Z", + "timeSlot": "2024-09-01T20:04:31.280Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6va1ilsesbp", + "host": "rum.hlx.page", + "time": "2024-08-31T18:10:15.673Z", + "timeSlot": "2024-08-31T18:10:15.673Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fr1bh21fg27", + "host": "rum.hlx.page", + "time": "2024-08-31T02:29:19.346Z", + "timeSlot": "2024-08-31T02:29:19.346Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0928ur47ff9f", + "host": "rum.hlx.page", + "time": "2024-08-31T23:30:58.769Z", + "timeSlot": "2024-08-31T23:30:58.769Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vz3jaxjsi5j", + "host": "rum.hlx.page", + "time": "2024-09-01T19:11:15.756Z", + "timeSlot": "2024-09-01T19:11:15.756Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "1r45iuqg7in", + "host": "rum.hlx.page", + "time": "2024-08-31T06:03:48.542Z", + "timeSlot": "2024-08-31T06:03:48.542Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "v3zet4l8yj", + "host": "rum.hlx.page", + "time": "2024-09-01T11:43:04.382Z", + "timeSlot": "2024-09-01T11:43:04.382Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "f6rvqqg1chi", + "host": "rum.hlx.page", + "time": "2024-09-01T16:50:19.113Z", + "timeSlot": "2024-09-01T16:50:19.113Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "cafxo052smu", + "host": "rum.hlx.page", + "time": "2024-08-30T19:50:41.620Z", + "timeSlot": "2024-08-30T19:50:41.620Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ow5ah7zttco", + "host": "rum.hlx.page", + "time": "2024-08-30T16:26:10.890Z", + "timeSlot": "2024-08-30T16:26:10.890Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w1bzdjsa238", + "host": "rum.hlx.page", + "time": "2024-08-31T03:27:17.715Z", + "timeSlot": "2024-08-31T03:27:17.715Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "44h5wqu94i4", + "host": "rum.hlx.page", + "time": "2024-08-31T02:14:30.353Z", + "timeSlot": "2024-08-31T02:14:30.353Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pemfysjh37", + "host": "rum.hlx.page", + "time": "2024-09-01T12:02:41.142Z", + "timeSlot": "2024-09-01T12:02:41.142Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "y7ph3zebfdc", + "host": "rum.hlx.page", + "time": "2024-09-02T04:29:02.615Z", + "timeSlot": "2024-09-02T04:29:02.615Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gcwvachy6n", + "host": "rum.hlx.page", + "time": "2024-08-31T02:17:48.358Z", + "timeSlot": "2024-08-31T02:17:48.358Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "e8jp9el6rqg", + "host": "rum.hlx.page", + "time": "2024-09-01T18:34:22.489Z", + "timeSlot": "2024-09-01T18:34:22.489Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lvl3z2gfqy", + "host": "rum.hlx.page", + "time": "2024-09-01T14:51:30.459Z", + "timeSlot": "2024-09-01T14:51:30.459Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ybp0mkqzo1", + "host": "rum.hlx.page", + "time": "2024-08-30T17:00:32.336Z", + "timeSlot": "2024-08-30T17:00:32.336Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "r5vqv5zmd0a", + "host": "rum.hlx.page", + "time": "2024-09-02T14:22:37.093Z", + "timeSlot": "2024-09-02T14:22:37.093Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4uhvdslsib", + "host": "rum.hlx.page", + "time": "2024-08-31T13:17:50.274Z", + "timeSlot": "2024-08-31T13:17:50.274Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "k5x6h6yam9g", + "host": "rum.hlx.page", + "time": "2024-08-30T23:30:44.801Z", + "timeSlot": "2024-08-30T23:30:44.801Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "h1p0vthmuco", + "host": "rum.hlx.page", + "time": "2024-08-31T16:24:40.723Z", + "timeSlot": "2024-08-31T16:24:40.723Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fdnffwt00ou", + "host": "rum.hlx.page", + "time": "2024-08-30T22:24:09.555Z", + "timeSlot": "2024-08-30T22:24:09.555Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mwoxcdpfb1o", + "host": "rum.hlx.page", + "time": "2024-09-01T18:41:24.151Z", + "timeSlot": "2024-09-01T18:41:24.151Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bxkepwzbx2", + "host": "rum.hlx.page", + "time": "2024-09-01T01:44:02.139Z", + "timeSlot": "2024-09-01T01:44:02.139Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "azdu0nt3ed", + "host": "rum.hlx.page", + "time": "2024-09-02T05:51:05.801Z", + "timeSlot": "2024-09-02T05:51:05.801Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "b1tz8tynr2", + "host": "rum.hlx.page", + "time": "2024-08-30T16:26:59.484Z", + "timeSlot": "2024-08-30T16:26:59.484Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "mr1gpk9uoak", + "host": "rum.hlx.page", + "time": "2024-08-31T13:16:18.193Z", + "timeSlot": "2024-08-31T13:16:18.193Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "0kcxqp2p4i9j", + "host": "rum.hlx.page", + "time": "2024-09-01T13:05:15.255Z", + "timeSlot": "2024-09-01T13:05:15.255Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "aooif6qgq4d", + "host": "rum.hlx.page", + "time": "2024-09-02T04:06:24.615Z", + "timeSlot": "2024-09-02T04:06:24.615Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nvt7jpd53ya", + "host": "rum.hlx.page", + "time": "2024-09-01T19:01:53.664Z", + "timeSlot": "2024-09-01T19:01:53.664Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dr3o7b0aznt", + "host": "rum.hlx.page", + "time": "2024-08-31T00:20:49.436Z", + "timeSlot": "2024-08-31T00:20:49.436Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "y1qivwqb3f", + "host": "rum.hlx.page", + "time": "2024-08-30T18:55:32.888Z", + "timeSlot": "2024-08-30T18:55:32.888Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fn5gglgruck", + "host": "rum.hlx.page", + "time": "2024-08-31T10:11:25.709Z", + "timeSlot": "2024-08-31T10:11:25.709Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bz0z7afjeel", + "host": "rum.hlx.page", + "time": "2024-08-30T17:36:29.729Z", + "timeSlot": "2024-08-30T17:36:29.729Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "35k3uemmwwj", + "host": "rum.hlx.page", + "time": "2024-08-30T22:59:24.581Z", + "timeSlot": "2024-08-30T22:59:24.581Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "q5ajmkf7bd", + "host": "rum.hlx.page", + "time": "2024-08-31T22:29:51.704Z", + "timeSlot": "2024-08-31T22:29:51.704Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "2xdbrztd4jy", + "host": "rum.hlx.page", + "time": "2024-08-31T03:13:33.988Z", + "timeSlot": "2024-08-31T03:13:33.988Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "c5cqqvxa0tk", + "host": "rum.hlx.page", + "time": "2024-09-02T03:25:43.355Z", + "timeSlot": "2024-09-02T03:25:43.355Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "9wdhvub1de", + "host": "rum.hlx.page", + "time": "2024-08-31T21:07:21.085Z", + "timeSlot": "2024-08-31T21:07:21.085Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "t36c7bjp3ob", + "host": "rum.hlx.page", + "time": "2024-09-02T09:52:59.215Z", + "timeSlot": "2024-09-02T09:52:59.215Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "q79m6lbp87", + "host": "rum.hlx.page", + "time": "2024-09-02T10:40:22.774Z", + "timeSlot": "2024-09-02T10:40:22.774Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8fxodp6qkpp", + "host": "rum.hlx.page", + "time": "2024-08-31T16:11:23.177Z", + "timeSlot": "2024-08-31T16:11:23.177Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "njlied3ftg", + "host": "rum.hlx.page", + "time": "2024-09-02T07:32:31.541Z", + "timeSlot": "2024-09-02T07:32:31.541Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "uqd9uho4xe9", + "host": "rum.hlx.page", + "time": "2024-08-31T05:04:39.682Z", + "timeSlot": "2024-08-31T05:04:39.682Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tisg90djmw", + "host": "rum.hlx.page", + "time": "2024-09-02T06:42:28.833Z", + "timeSlot": "2024-09-02T06:42:28.833Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5lrfg0zw4rg", + "host": "rum.hlx.page", + "time": "2024-09-01T22:24:00.119Z", + "timeSlot": "2024-09-01T22:24:00.119Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "us3fg920q4m", + "host": "rum.hlx.page", + "time": "2024-09-02T13:30:10.822Z", + "timeSlot": "2024-09-02T13:30:10.822Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "vuj5eur1n7d", + "host": "rum.hlx.page", + "time": "2024-08-31T13:34:57.687Z", + "timeSlot": "2024-08-31T13:34:57.687Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "5cysc3tbdbq", + "host": "rum.hlx.page", + "time": "2024-08-30T21:50:25.136Z", + "timeSlot": "2024-08-30T21:50:25.136Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5j9iur8gnql", + "host": "rum.hlx.page", + "time": "2024-08-31T04:28:23.822Z", + "timeSlot": "2024-08-31T04:28:23.822Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4rp5cl2ogd4", + "host": "rum.hlx.page", + "time": "2024-09-01T20:00:04.321Z", + "timeSlot": "2024-09-01T20:00:04.321Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "k49gqoztwhf", + "host": "rum.hlx.page", + "time": "2024-08-30T18:06:00.241Z", + "timeSlot": "2024-08-30T18:06:00.241Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0duqeryd50oa", + "host": "rum.hlx.page", + "time": "2024-08-31T20:39:26.022Z", + "timeSlot": "2024-08-31T20:39:26.022Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x8gq9jlv08", + "host": "rum.hlx.page", + "time": "2024-08-30T21:03:22.732Z", + "timeSlot": "2024-08-30T21:03:22.732Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "66e8rrtwx0c", + "host": "rum.hlx.page", + "time": "2024-09-01T18:04:37.930Z", + "timeSlot": "2024-09-01T18:04:37.930Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nu5rj9icbqs", + "host": "rum.hlx.page", + "time": "2024-08-30T15:01:35.028Z", + "timeSlot": "2024-08-30T15:01:35.028Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nhy3i50pp4b", + "host": "rum.hlx.page", + "time": "2024-09-01T04:28:13.478Z", + "timeSlot": "2024-09-01T04:28:13.478Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "y0obn886m0m", + "host": "rum.hlx.page", + "time": "2024-09-01T15:11:59.490Z", + "timeSlot": "2024-09-01T15:11:59.490Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "hk2csbo9z1q", + "host": "rum.hlx.page", + "time": "2024-09-02T13:02:24.320Z", + "timeSlot": "2024-09-02T13:02:24.320Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "urmhcxwhtag", + "host": "rum.hlx.page", + "time": "2024-08-31T14:10:27.388Z", + "timeSlot": "2024-08-31T14:10:27.388Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0i1s9ph22b1p", + "host": "rum.hlx.page", + "time": "2024-09-01T06:00:44.226Z", + "timeSlot": "2024-09-01T06:00:44.226Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "272fkb55tekj", + "host": "rum.hlx.page", + "time": "2024-09-01T00:41:09.398Z", + "timeSlot": "2024-09-01T00:41:09.398Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dodoz0i4g14", + "host": "rum.hlx.page", + "time": "2024-09-02T10:56:44.432Z", + "timeSlot": "2024-09-02T10:56:44.432Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "29m39ii6ayf", + "host": "rum.hlx.page", + "time": "2024-08-31T01:10:19.108Z", + "timeSlot": "2024-08-31T01:10:19.108Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "rk24833wfn", + "host": "rum.hlx.page", + "time": "2024-09-02T02:33:38.055Z", + "timeSlot": "2024-09-02T02:33:38.055Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "bg1svbvnbgo", + "host": "rum.hlx.page", + "time": "2024-09-01T18:13:18.372Z", + "timeSlot": "2024-09-01T18:13:18.372Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "k0yk2r7c3zo", + "host": "rum.hlx.page", + "time": "2024-08-31T03:10:06.697Z", + "timeSlot": "2024-08-31T03:10:06.697Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3chxr4ze1l2", + "host": "rum.hlx.page", + "time": "2024-09-02T07:01:50.144Z", + "timeSlot": "2024-09-02T07:01:50.144Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "dfkidmxiiwo", + "host": "rum.hlx.page", + "time": "2024-09-02T01:20:49.951Z", + "timeSlot": "2024-09-02T01:20:49.951Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gfd8r2o85yh", + "host": "rum.hlx.page", + "time": "2024-09-01T10:56:52.853Z", + "timeSlot": "2024-09-01T10:56:52.853Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wze7il3odm8", + "host": "rum.hlx.page", + "time": "2024-08-31T00:15:39.653Z", + "timeSlot": "2024-08-31T00:15:39.653Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "2v5ll4no2b", + "host": "rum.hlx.page", + "time": "2024-09-02T13:41:08.429Z", + "timeSlot": "2024-09-02T13:41:08.429Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "l4e1hjs8sk", + "host": "rum.hlx.page", + "time": "2024-09-02T01:19:36.111Z", + "timeSlot": "2024-09-02T01:19:36.111Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w617lgfkipc", + "host": "rum.hlx.page", + "time": "2024-08-31T05:26:27.655Z", + "timeSlot": "2024-08-31T05:26:27.655Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "j9qkgs7v9hr", + "host": "rum.hlx.page", + "time": "2024-09-01T06:25:05.074Z", + "timeSlot": "2024-09-01T06:25:05.074Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xg8vdioh5ed", + "host": "rum.hlx.page", + "time": "2024-08-30T20:38:58.696Z", + "timeSlot": "2024-08-30T20:38:58.696Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "t1xm9htslf8", + "host": "rum.hlx.page", + "time": "2024-09-01T06:36:58.791Z", + "timeSlot": "2024-09-01T06:36:58.791Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ac0knygpgq", + "host": "rum.hlx.page", + "time": "2024-08-30T17:36:01.258Z", + "timeSlot": "2024-08-30T17:36:01.258Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "02lsbvr5paek", + "host": "rum.hlx.page", + "time": "2024-09-01T00:46:47.371Z", + "timeSlot": "2024-09-01T00:46:47.371Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "aub6za56sf8", + "host": "rum.hlx.page", + "time": "2024-08-31T19:00:05.261Z", + "timeSlot": "2024-08-31T19:00:05.261Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "vaqhnqaj39j", + "host": "rum.hlx.page", + "time": "2024-08-31T19:43:44.825Z", + "timeSlot": "2024-08-31T19:43:44.825Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "5p5g3dnt2bk", + "host": "rum.hlx.page", + "time": "2024-09-01T13:21:52.265Z", + "timeSlot": "2024-09-01T13:21:52.265Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "w2p5wi47m2p", + "host": "rum.hlx.page", + "time": "2024-09-02T13:18:43.028Z", + "timeSlot": "2024-09-02T13:18:43.028Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qf6bqd2l84o", + "host": "rum.hlx.page", + "time": "2024-08-31T02:04:27.726Z", + "timeSlot": "2024-08-31T02:04:27.726Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "h3tgbuq9oma", + "host": "rum.hlx.page", + "time": "2024-08-31T13:02:34.013Z", + "timeSlot": "2024-08-31T13:02:34.013Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "679bks8wddx", + "host": "rum.hlx.page", + "time": "2024-09-01T15:09:10.738Z", + "timeSlot": "2024-09-01T15:09:10.738Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2pui5ufblb", + "host": "rum.hlx.page", + "time": "2024-08-31T22:31:47.177Z", + "timeSlot": "2024-08-31T22:31:47.177Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "zrut2wagvd", + "host": "rum.hlx.page", + "time": "2024-09-01T09:30:49.452Z", + "timeSlot": "2024-09-01T09:30:49.452Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "juy96bf9j9n", + "host": "rum.hlx.page", + "time": "2024-08-31T15:59:13.612Z", + "timeSlot": "2024-08-31T15:59:13.612Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u12maex1mvk", + "host": "rum.hlx.page", + "time": "2024-09-02T13:46:02.112Z", + "timeSlot": "2024-09-02T13:46:02.112Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sx919zlgbua", + "host": "rum.hlx.page", + "time": "2024-09-01T23:55:22.799Z", + "timeSlot": "2024-09-01T23:55:22.799Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qdjwe3utdyo", + "host": "rum.hlx.page", + "time": "2024-08-31T22:54:13.349Z", + "timeSlot": "2024-08-31T22:54:13.349Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "lr1s1lvlvy", + "host": "rum.hlx.page", + "time": "2024-09-01T02:20:27.079Z", + "timeSlot": "2024-09-01T02:20:27.079Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1hc6kn69lv1", + "host": "rum.hlx.page", + "time": "2024-08-30T17:01:48.258Z", + "timeSlot": "2024-08-30T17:01:48.258Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "394nsczgaqp", + "host": "rum.hlx.page", + "time": "2024-09-02T10:47:41.796Z", + "timeSlot": "2024-09-02T10:47:41.796Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "arvh603gz6", + "host": "rum.hlx.page", + "time": "2024-09-01T01:29:46.939Z", + "timeSlot": "2024-09-01T01:29:46.939Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "xtyzmj8nyfm", + "host": "rum.hlx.page", + "time": "2024-08-30T22:54:21.286Z", + "timeSlot": "2024-08-30T22:54:21.286Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "xvntkcf1z1i", + "host": "rum.hlx.page", + "time": "2024-09-01T23:51:36.176Z", + "timeSlot": "2024-09-01T23:51:36.176Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "oyjwn59smkj", + "host": "rum.hlx.page", + "time": "2024-08-30T23:53:55.368Z", + "timeSlot": "2024-08-30T23:53:55.368Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "7eqf0dmiyk6", + "host": "rum.hlx.page", + "time": "2024-09-01T21:32:30.840Z", + "timeSlot": "2024-09-01T21:32:30.840Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "2c2f9sqo84y", + "host": "rum.hlx.page", + "time": "2024-08-31T11:29:36.921Z", + "timeSlot": "2024-08-31T11:29:36.921Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1vod51g9pws", + "host": "rum.hlx.page", + "time": "2024-09-02T02:42:48.240Z", + "timeSlot": "2024-09-02T02:42:48.240Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "xm4io6d4ufn", + "host": "rum.hlx.page", + "time": "2024-09-01T06:00:32.249Z", + "timeSlot": "2024-09-01T06:00:32.249Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5773hckfeif", + "host": "rum.hlx.page", + "time": "2024-08-30T19:34:12.918Z", + "timeSlot": "2024-08-30T19:34:12.918Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "je2ojv3jxfm", + "host": "rum.hlx.page", + "time": "2024-08-30T15:22:57.504Z", + "timeSlot": "2024-08-30T15:22:57.504Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "emgi5zu4xf", + "host": "rum.hlx.page", + "time": "2024-09-01T15:05:11.790Z", + "timeSlot": "2024-09-01T15:05:11.790Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "9djod0zhvcq", + "host": "rum.hlx.page", + "time": "2024-08-30T19:48:35.311Z", + "timeSlot": "2024-08-30T19:48:35.311Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mh718dt1mv", + "host": "rum.hlx.page", + "time": "2024-09-01T05:37:44.004Z", + "timeSlot": "2024-09-01T05:37:44.004Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "nifxi0cnl3o", + "host": "rum.hlx.page", + "time": "2024-09-02T05:39:54.892Z", + "timeSlot": "2024-09-02T05:39:54.892Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hnbe9r8toe", + "host": "rum.hlx.page", + "time": "2024-08-30T18:55:34.298Z", + "timeSlot": "2024-08-30T18:55:34.298Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "td9jl88vzxs", + "host": "rum.hlx.page", + "time": "2024-09-01T05:29:34.746Z", + "timeSlot": "2024-09-01T05:29:34.746Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "ximkmfi9dqf", + "host": "rum.hlx.page", + "time": "2024-08-30T22:38:36.463Z", + "timeSlot": "2024-08-30T22:38:36.463Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "7cex28xehg5", + "host": "rum.hlx.page", + "time": "2024-08-31T10:47:28.549Z", + "timeSlot": "2024-08-31T10:47:28.549Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ydw5sditl6", + "host": "rum.hlx.page", + "time": "2024-09-01T05:25:39.675Z", + "timeSlot": "2024-09-01T05:25:39.675Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "16blj9p6l4x", + "host": "rum.hlx.page", + "time": "2024-08-31T08:16:28.806Z", + "timeSlot": "2024-08-31T08:16:28.806Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wgd394oycy", + "host": "rum.hlx.page", + "time": "2024-09-01T17:32:16.677Z", + "timeSlot": "2024-09-01T17:32:16.677Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ots1u42y4e", + "host": "rum.hlx.page", + "time": "2024-09-02T07:58:51.311Z", + "timeSlot": "2024-09-02T07:58:51.311Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9rflr163t7q", + "host": "rum.hlx.page", + "time": "2024-08-30T23:36:57.583Z", + "timeSlot": "2024-08-30T23:36:57.583Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "odk6mdiljos", + "host": "rum.hlx.page", + "time": "2024-09-01T23:17:10.426Z", + "timeSlot": "2024-09-01T23:17:10.426Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2bvjv6myjlc", + "host": "rum.hlx.page", + "time": "2024-09-01T07:34:00.239Z", + "timeSlot": "2024-09-01T07:34:00.239Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "sfqpq9dw72m", + "host": "rum.hlx.page", + "time": "2024-09-02T00:57:22.568Z", + "timeSlot": "2024-09-02T00:57:22.568Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3xr9flouyon", + "host": "rum.hlx.page", + "time": "2024-08-31T23:16:07.831Z", + "timeSlot": "2024-08-31T23:16:07.831Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "d2n45psa1cg", + "host": "rum.hlx.page", + "time": "2024-09-02T02:34:36.453Z", + "timeSlot": "2024-09-02T02:34:36.453Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4pe1j4qffcx", + "host": "rum.hlx.page", + "time": "2024-09-01T10:56:06.039Z", + "timeSlot": "2024-09-01T10:56:06.039Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "0g3l7y0zldws", + "host": "rum.hlx.page", + "time": "2024-09-01T20:39:20.411Z", + "timeSlot": "2024-09-01T20:39:20.411Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hop4l5xfbql", + "host": "rum.hlx.page", + "time": "2024-08-30T19:22:20.059Z", + "timeSlot": "2024-08-30T19:22:20.059Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "9jhkekd3mvd", + "host": "rum.hlx.page", + "time": "2024-09-01T07:40:43.019Z", + "timeSlot": "2024-09-01T07:40:43.019Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "hr1lz3kk5sf", + "host": "rum.hlx.page", + "time": "2024-08-31T05:58:13.878Z", + "timeSlot": "2024-08-31T05:58:13.878Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hnhgbcf1yr6", + "host": "rum.hlx.page", + "time": "2024-08-31T18:38:31.340Z", + "timeSlot": "2024-08-31T18:38:31.340Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "emyuwqvqokl", + "host": "rum.hlx.page", + "time": "2024-09-02T11:55:30.215Z", + "timeSlot": "2024-09-02T11:55:30.215Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mns3yg6do3i", + "host": "rum.hlx.page", + "time": "2024-08-31T07:57:16.070Z", + "timeSlot": "2024-08-31T07:57:16.070Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hslrqu8yytf", + "host": "rum.hlx.page", + "time": "2024-09-01T03:02:07.123Z", + "timeSlot": "2024-09-01T03:02:07.123Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "yzq6ccxqyf", + "host": "rum.hlx.page", + "time": "2024-09-02T06:31:00.087Z", + "timeSlot": "2024-09-02T06:31:00.087Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "hn26h0iuvxn", + "host": "rum.hlx.page", + "time": "2024-08-31T16:27:41.863Z", + "timeSlot": "2024-08-31T16:27:41.863Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cq8ldbkz0k8", + "host": "rum.hlx.page", + "time": "2024-08-31T17:17:02.203Z", + "timeSlot": "2024-08-31T17:17:02.203Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "i1my3vlxez8", + "host": "rum.hlx.page", + "time": "2024-09-02T14:57:43.671Z", + "timeSlot": "2024-09-02T14:57:43.671Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "idivnykopl9", + "host": "rum.hlx.page", + "time": "2024-08-31T16:01:24.753Z", + "timeSlot": "2024-08-31T16:01:24.753Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a1g2c6rda1r", + "host": "rum.hlx.page", + "time": "2024-08-30T15:36:14.363Z", + "timeSlot": "2024-08-30T15:36:14.363Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2dzb8cvrz68", + "host": "rum.hlx.page", + "time": "2024-08-30T21:00:13.812Z", + "timeSlot": "2024-08-30T21:00:13.812Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "pw03bywkdw8", + "host": "rum.hlx.page", + "time": "2024-09-01T18:18:18.813Z", + "timeSlot": "2024-09-01T18:18:18.813Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "5qt50unsnsi", + "host": "rum.hlx.page", + "time": "2024-09-02T10:57:47.336Z", + "timeSlot": "2024-09-02T10:57:47.336Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "96g0joozayr", + "host": "rum.hlx.page", + "time": "2024-08-31T06:09:37.215Z", + "timeSlot": "2024-08-31T06:09:37.215Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "zcd4f7twr1q", + "host": "rum.hlx.page", + "time": "2024-08-30T20:25:35.892Z", + "timeSlot": "2024-08-30T20:25:35.892Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "83cxbyeqt1r", + "host": "rum.hlx.page", + "time": "2024-08-31T23:44:49.195Z", + "timeSlot": "2024-08-31T23:44:49.195Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "fjz0jflt4zu", + "host": "rum.hlx.page", + "time": "2024-09-01T13:46:59.580Z", + "timeSlot": "2024-09-01T13:46:59.580Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9hadsa3e3li", + "host": "rum.hlx.page", + "time": "2024-09-02T12:59:42.282Z", + "timeSlot": "2024-09-02T12:59:42.282Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "4dx0e9aycce", + "host": "rum.hlx.page", + "time": "2024-09-01T21:19:11.020Z", + "timeSlot": "2024-09-01T21:19:11.020Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vlztg14q0i", + "host": "rum.hlx.page", + "time": "2024-09-01T15:51:58.406Z", + "timeSlot": "2024-09-01T15:51:58.406Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "69l3x73g87j", + "host": "rum.hlx.page", + "time": "2024-09-01T09:53:37.800Z", + "timeSlot": "2024-09-01T09:53:37.800Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tfostomefyo", + "host": "rum.hlx.page", + "time": "2024-09-01T07:39:37.249Z", + "timeSlot": "2024-09-01T07:39:37.249Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bbmgw5pmcma", + "host": "rum.hlx.page", + "time": "2024-09-02T09:26:18.445Z", + "timeSlot": "2024-09-02T09:26:18.445Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "izjs385rzpj", + "host": "rum.hlx.page", + "time": "2024-09-01T18:11:14.485Z", + "timeSlot": "2024-09-01T18:11:14.485Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "faopfhqoqdb", + "host": "rum.hlx.page", + "time": "2024-08-31T19:49:47.820Z", + "timeSlot": "2024-08-31T19:49:47.820Z", + "url": "https://www.spacecat.com/landing-page", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z1mdz3n1gy", + "host": "rum.hlx.page", + "time": "2024-09-01T18:48:57.342Z", + "timeSlot": "2024-09-01T18:48:57.342Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "cxq00g44ip6", + "host": "rum.hlx.page", + "time": "2024-09-02T14:38:14.143Z", + "timeSlot": "2024-09-02T14:38:14.143Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "qoa2plszfje", + "host": "rum.hlx.page", + "time": "2024-09-01T10:02:20.151Z", + "timeSlot": "2024-09-01T10:02:20.151Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mo1vcghjhi", + "host": "rum.hlx.page", + "time": "2024-08-31T02:59:08.591Z", + "timeSlot": "2024-08-31T02:59:08.591Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "q70ycsn1lt", + "host": "rum.hlx.page", + "time": "2024-08-31T01:24:20.123Z", + "timeSlot": "2024-08-31T01:24:20.123Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ko0htb7tl7l", + "host": "rum.hlx.page", + "time": "2024-08-30T19:34:17.058Z", + "timeSlot": "2024-08-30T19:34:17.058Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "s8kyie2b9po", + "host": "rum.hlx.page", + "time": "2024-09-01T22:50:49.148Z", + "timeSlot": "2024-09-01T22:50:49.148Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sev3zbpbquj", + "host": "rum.hlx.page", + "time": "2024-08-30T23:54:51.257Z", + "timeSlot": "2024-08-30T23:54:51.257Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "wo4xycsnymp", + "host": "rum.hlx.page", + "time": "2024-09-01T10:22:58.807Z", + "timeSlot": "2024-09-01T10:22:58.807Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "11nxwkgk50z", + "host": "rum.hlx.page", + "time": "2024-09-02T04:44:16.026Z", + "timeSlot": "2024-09-02T04:44:16.026Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bzkmkvxxvs", + "host": "rum.hlx.page", + "time": "2024-09-01T12:26:23.699Z", + "timeSlot": "2024-09-01T12:26:23.699Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pfykqy3hfq", + "host": "rum.hlx.page", + "time": "2024-09-01T00:41:14.986Z", + "timeSlot": "2024-09-01T00:41:14.986Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "pdv61v4rgxa", + "host": "rum.hlx.page", + "time": "2024-09-01T14:44:38.823Z", + "timeSlot": "2024-09-01T14:44:38.823Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "mwd8io92x3", + "host": "rum.hlx.page", + "time": "2024-09-01T21:33:04.656Z", + "timeSlot": "2024-09-01T21:33:04.656Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bb4e0ahpznm", + "host": "rum.hlx.page", + "time": "2024-09-02T05:52:54.136Z", + "timeSlot": "2024-09-02T05:52:54.136Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "18wxdvihgon", + "host": "rum.hlx.page", + "time": "2024-08-31T09:46:24.020Z", + "timeSlot": "2024-08-31T09:46:24.020Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mv30szppc4", + "host": "rum.hlx.page", + "time": "2024-08-31T08:11:47.071Z", + "timeSlot": "2024-08-31T08:11:47.071Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gz8js56i0p", + "host": "rum.hlx.page", + "time": "2024-08-31T04:21:25.692Z", + "timeSlot": "2024-08-31T04:21:25.692Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "shsykv1bnfg", + "host": "rum.hlx.page", + "time": "2024-09-01T08:49:21.925Z", + "timeSlot": "2024-09-01T08:49:21.925Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "k5d2fq5phz", + "host": "rum.hlx.page", + "time": "2024-08-31T15:41:13.036Z", + "timeSlot": "2024-08-31T15:41:13.036Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "p1x7uu4xzdr", + "host": "rum.hlx.page", + "time": "2024-09-01T14:51:54.981Z", + "timeSlot": "2024-09-01T14:51:54.981Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "yb2kfmd1zm", + "host": "rum.hlx.page", + "time": "2024-09-01T06:25:32.303Z", + "timeSlot": "2024-09-01T06:25:32.303Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "vpcpgvodawm", + "host": "rum.hlx.page", + "time": "2024-08-31T10:42:17.118Z", + "timeSlot": "2024-08-31T10:42:17.118Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sj6y2csozs", + "host": "rum.hlx.page", + "time": "2024-09-02T00:20:45.567Z", + "timeSlot": "2024-09-02T00:20:45.567Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "l48vdlzkpz", + "host": "rum.hlx.page", + "time": "2024-08-31T23:24:10.433Z", + "timeSlot": "2024-08-31T23:24:10.433Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "gdytfms5dpq", + "host": "rum.hlx.page", + "time": "2024-08-31T18:53:55.981Z", + "timeSlot": "2024-08-31T18:53:55.981Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "co3lv9qosha", + "host": "rum.hlx.page", + "time": "2024-08-31T14:21:15.348Z", + "timeSlot": "2024-08-31T14:21:15.348Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "0seo3ogqw6h", + "host": "rum.hlx.page", + "time": "2024-08-31T10:38:02.281Z", + "timeSlot": "2024-08-31T10:38:02.281Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ge0jlq8fu3s", + "host": "rum.hlx.page", + "time": "2024-08-31T09:26:42.314Z", + "timeSlot": "2024-08-31T09:26:42.314Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "z33m1d07lsi", + "host": "rum.hlx.page", + "time": "2024-09-01T01:50:01.427Z", + "timeSlot": "2024-09-01T01:50:01.427Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "k6ym6i923hf", + "host": "rum.hlx.page", + "time": "2024-08-31T23:26:03.371Z", + "timeSlot": "2024-08-31T23:26:03.371Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1hnx3lphd05", + "host": "rum.hlx.page", + "time": "2024-08-31T02:25:31.088Z", + "timeSlot": "2024-08-31T02:25:31.088Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "noj0eodgy1", + "host": "rum.hlx.page", + "time": "2024-09-02T00:01:54.499Z", + "timeSlot": "2024-09-02T00:01:54.499Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "8wdi7dpraht", + "host": "rum.hlx.page", + "time": "2024-09-02T04:20:42.108Z", + "timeSlot": "2024-09-02T04:20:42.108Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "yvjc160ye5k", + "host": "rum.hlx.page", + "time": "2024-08-31T16:16:04.849Z", + "timeSlot": "2024-08-31T16:16:04.849Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "adgt4zcdi2n", + "host": "rum.hlx.page", + "time": "2024-09-01T14:13:37.889Z", + "timeSlot": "2024-09-01T14:13:37.889Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "pzcc527v99g", + "host": "rum.hlx.page", + "time": "2024-09-01T08:27:17.571Z", + "timeSlot": "2024-09-01T08:27:17.571Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "kjz7gj29c7", + "host": "rum.hlx.page", + "time": "2024-09-02T13:42:56.325Z", + "timeSlot": "2024-09-02T13:42:56.325Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bl50fplz4wv", + "host": "rum.hlx.page", + "time": "2024-09-02T13:00:11.688Z", + "timeSlot": "2024-09-02T13:00:11.688Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "pqvyzlz17wp", + "host": "rum.hlx.page", + "time": "2024-08-31T14:58:03.879Z", + "timeSlot": "2024-08-31T14:58:03.879Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8dqaqy1kns", + "host": "rum.hlx.page", + "time": "2024-09-01T18:19:19.131Z", + "timeSlot": "2024-09-01T18:19:19.131Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w2qavtkjfgk", + "host": "rum.hlx.page", + "time": "2024-09-02T10:55:09.037Z", + "timeSlot": "2024-09-02T10:55:09.037Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "wn2fe4yf17n", + "host": "rum.hlx.page", + "time": "2024-09-01T14:23:28.399Z", + "timeSlot": "2024-09-01T14:23:28.399Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "sxbc3sqddjm", + "host": "rum.hlx.page", + "time": "2024-09-01T17:28:13.131Z", + "timeSlot": "2024-09-01T17:28:13.131Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "o8hxh8madv", + "host": "rum.hlx.page", + "time": "2024-09-02T02:15:15.613Z", + "timeSlot": "2024-09-02T02:15:15.613Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "xabplifnvbm", + "host": "rum.hlx.page", + "time": "2024-08-31T21:28:52.748Z", + "timeSlot": "2024-08-31T21:28:52.748Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "y2b5qk8puia", + "host": "rum.hlx.page", + "time": "2024-09-02T02:47:31.755Z", + "timeSlot": "2024-09-02T02:47:31.755Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "2uvpwgplpve", + "host": "rum.hlx.page", + "time": "2024-09-01T21:11:33.592Z", + "timeSlot": "2024-09-01T21:11:33.592Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "aloyaesg5bc", + "host": "rum.hlx.page", + "time": "2024-09-02T05:43:05.569Z", + "timeSlot": "2024-09-02T05:43:05.569Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "j1nqeadwh7r", + "host": "rum.hlx.page", + "time": "2024-09-01T01:41:07.728Z", + "timeSlot": "2024-09-01T01:41:07.728Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ncv5e73tre", + "host": "rum.hlx.page", + "time": "2024-09-01T02:03:01.206Z", + "timeSlot": "2024-09-01T02:03:01.206Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "o0n7pt91w1m", + "host": "rum.hlx.page", + "time": "2024-09-02T04:19:16.718Z", + "timeSlot": "2024-09-02T04:19:16.718Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "6t3xrdqgqwi", + "host": "rum.hlx.page", + "time": "2024-08-31T01:37:58.033Z", + "timeSlot": "2024-08-31T01:37:58.033Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "lt81u9636n", + "host": "rum.hlx.page", + "time": "2024-08-30T17:41:22.051Z", + "timeSlot": "2024-08-30T17:41:22.051Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "d8bqw0yve1", + "host": "rum.hlx.page", + "time": "2024-08-31T14:18:41.686Z", + "timeSlot": "2024-08-31T14:18:41.686Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "89727pfu82", + "host": "rum.hlx.page", + "time": "2024-08-30T19:08:46.413Z", + "timeSlot": "2024-08-30T19:08:46.413Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "20pguxsnypd", + "host": "rum.hlx.page", + "time": "2024-09-02T12:40:02.505Z", + "timeSlot": "2024-09-02T12:40:02.505Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1e0ehqotacuh", + "host": "rum.hlx.page", + "time": "2024-08-30T19:58:58.297Z", + "timeSlot": "2024-08-30T19:58:58.297Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "tqqep0l4al", + "host": "rum.hlx.page", + "time": "2024-08-31T05:47:57.936Z", + "timeSlot": "2024-08-31T05:47:57.936Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "u8mkb1dsvm8", + "host": "rum.hlx.page", + "time": "2024-09-01T07:54:13.626Z", + "timeSlot": "2024-09-01T07:54:13.626Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "76q77a5fl4a", + "host": "rum.hlx.page", + "time": "2024-08-31T21:27:30.656Z", + "timeSlot": "2024-08-31T21:27:30.656Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "lvk8ljap9z", + "host": "rum.hlx.page", + "time": "2024-08-31T00:43:56.188Z", + "timeSlot": "2024-08-31T00:43:56.188Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "rh2pxf91ooq", + "host": "rum.hlx.page", + "time": "2024-08-31T04:27:39.062Z", + "timeSlot": "2024-08-31T04:27:39.062Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "vqp8mtgow8", + "host": "rum.hlx.page", + "time": "2024-09-01T14:37:45.214Z", + "timeSlot": "2024-09-01T14:37:45.214Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4dr3w868yhh", + "host": "rum.hlx.page", + "time": "2024-08-31T16:23:40.054Z", + "timeSlot": "2024-08-31T16:23:40.054Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "btm2hpksuzp", + "host": "rum.hlx.page", + "time": "2024-08-31T05:34:38.127Z", + "timeSlot": "2024-08-31T05:34:38.127Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "muo5x0uk1cp", + "host": "rum.hlx.page", + "time": "2024-08-31T18:55:21.929Z", + "timeSlot": "2024-08-31T18:55:21.929Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "3m018xcz1re", + "host": "rum.hlx.page", + "time": "2024-09-01T21:54:01.426Z", + "timeSlot": "2024-09-01T21:54:01.426Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "svoj2f983x", + "host": "rum.hlx.page", + "time": "2024-09-01T17:36:59.586Z", + "timeSlot": "2024-09-01T17:36:59.586Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "9maqx4hoi54", + "host": "rum.hlx.page", + "time": "2024-09-02T00:19:40.334Z", + "timeSlot": "2024-09-02T00:19:40.334Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "1mklinljctz", + "host": "rum.hlx.page", + "time": "2024-08-31T00:21:24.439Z", + "timeSlot": "2024-08-31T00:21:24.439Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nm921915xql", + "host": "rum.hlx.page", + "time": "2024-08-31T13:05:56.597Z", + "timeSlot": "2024-08-31T13:05:56.597Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "a7yhu3zagg", + "host": "rum.hlx.page", + "time": "2024-09-01T12:12:35.038Z", + "timeSlot": "2024-09-01T12:12:35.038Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7bisb3yc1sl", + "host": "rum.hlx.page", + "time": "2024-08-31T01:04:51.742Z", + "timeSlot": "2024-08-31T01:04:51.742Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "dq5pjp1itfd", + "host": "rum.hlx.page", + "time": "2024-08-30T16:21:53.053Z", + "timeSlot": "2024-08-30T16:21:53.053Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "x2tomubtsld", + "host": "rum.hlx.page", + "time": "2024-09-02T09:00:40.396Z", + "timeSlot": "2024-09-02T09:00:40.396Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6jx6w28s5x", + "host": "rum.hlx.page", + "time": "2024-08-30T23:22:00.368Z", + "timeSlot": "2024-08-30T23:22:00.368Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "w5wtbomzp4c", + "host": "rum.hlx.page", + "time": "2024-09-01T17:44:46.460Z", + "timeSlot": "2024-09-01T17:44:46.460Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bt56wuxxk0d", + "host": "rum.hlx.page", + "time": "2024-09-02T11:29:27.717Z", + "timeSlot": "2024-09-02T11:29:27.717Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "u6jmqflwch", + "host": "rum.hlx.page", + "time": "2024-09-01T15:14:37.725Z", + "timeSlot": "2024-09-01T15:14:37.725Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5rqehayifkb", + "host": "rum.hlx.page", + "time": "2024-09-02T02:21:41.274Z", + "timeSlot": "2024-09-02T02:21:41.274Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "zlgzj2p4igl", + "host": "rum.hlx.page", + "time": "2024-08-31T16:19:13.162Z", + "timeSlot": "2024-08-31T16:19:13.162Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "js0nwzc7h8a", + "host": "rum.hlx.page", + "time": "2024-09-01T00:31:53.856Z", + "timeSlot": "2024-09-01T00:31:53.856Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mctiv0c8nik", + "host": "rum.hlx.page", + "time": "2024-08-31T09:36:02.855Z", + "timeSlot": "2024-08-31T09:36:02.855Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ow7o7tkl5is", + "host": "rum.hlx.page", + "time": "2024-09-01T12:02:36.826Z", + "timeSlot": "2024-09-01T12:02:36.826Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4dqoh2o8k5j", + "host": "rum.hlx.page", + "time": "2024-08-31T01:38:50.294Z", + "timeSlot": "2024-08-31T01:38:50.294Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "qxqlf21slbb", + "host": "rum.hlx.page", + "time": "2024-08-31T10:53:46.380Z", + "timeSlot": "2024-08-31T10:53:46.380Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "k8h2cbnw6wd", + "host": "rum.hlx.page", + "time": "2024-09-02T13:18:30.912Z", + "timeSlot": "2024-09-02T13:18:30.912Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5zb6eplj7lu", + "host": "rum.hlx.page", + "time": "2024-08-31T14:33:07.971Z", + "timeSlot": "2024-08-31T14:33:07.971Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "46yhj6lxvrw", + "host": "rum.hlx.page", + "time": "2024-09-01T03:13:26.477Z", + "timeSlot": "2024-09-01T03:13:26.477Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "jeyx5gvrfg8", + "host": "rum.hlx.page", + "time": "2024-09-02T06:57:41.647Z", + "timeSlot": "2024-09-02T06:57:41.647Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "9rt67ohzgmg", + "host": "rum.hlx.page", + "time": "2024-09-01T09:42:33.047Z", + "timeSlot": "2024-09-01T09:42:33.047Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "im232mbbof", + "host": "rum.hlx.page", + "time": "2024-09-02T07:13:45.686Z", + "timeSlot": "2024-09-02T07:13:45.686Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "umx5zklvivh", + "host": "rum.hlx.page", + "time": "2024-09-01T09:33:49.774Z", + "timeSlot": "2024-09-01T09:33:49.774Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "bzd2778t8h7", + "host": "rum.hlx.page", + "time": "2024-09-02T01:04:03.968Z", + "timeSlot": "2024-09-02T01:04:03.968Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "3r109ilnl17", + "host": "rum.hlx.page", + "time": "2024-08-31T19:51:35.694Z", + "timeSlot": "2024-08-31T19:51:35.694Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ar8v19mgeeo", + "host": "rum.hlx.page", + "time": "2024-09-02T03:58:19.241Z", + "timeSlot": "2024-09-02T03:58:19.241Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4zms4k8m425", + "host": "rum.hlx.page", + "time": "2024-09-01T02:05:06.453Z", + "timeSlot": "2024-09-01T02:05:06.453Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "n7sgc2ma9gg", + "host": "rum.hlx.page", + "time": "2024-09-02T03:39:08.642Z", + "timeSlot": "2024-09-02T03:39:08.642Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "fo0pa91piqv", + "host": "rum.hlx.page", + "time": "2024-09-02T09:52:58.583Z", + "timeSlot": "2024-09-02T09:52:58.583Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ojcm7gf1qw", + "host": "rum.hlx.page", + "time": "2024-09-01T21:29:20.437Z", + "timeSlot": "2024-09-01T21:29:20.437Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "imq2astv9p", + "host": "rum.hlx.page", + "time": "2024-09-02T13:11:03.428Z", + "timeSlot": "2024-09-02T13:11:03.428Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "gmcfikcuyqu", + "host": "rum.hlx.page", + "time": "2024-08-31T13:02:51.235Z", + "timeSlot": "2024-08-31T13:02:51.235Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "j6z544fhkkb", + "host": "rum.hlx.page", + "time": "2024-08-31T11:48:30.878Z", + "timeSlot": "2024-08-31T11:48:30.878Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2i20jtlzn0q", + "host": "rum.hlx.page", + "time": "2024-08-31T06:37:36.517Z", + "timeSlot": "2024-08-31T06:37:36.517Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6qt6pykm1pp", + "host": "rum.hlx.page", + "time": "2024-09-01T06:15:17.645Z", + "timeSlot": "2024-09-01T06:15:17.645Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "nk8kjemvd8o", + "host": "rum.hlx.page", + "time": "2024-08-30T23:56:45.383Z", + "timeSlot": "2024-08-30T23:56:45.383Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "cq57ke58nym", + "host": "rum.hlx.page", + "time": "2024-09-01T22:37:03.616Z", + "timeSlot": "2024-09-01T22:37:03.616Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5tqo14hoim9", + "host": "rum.hlx.page", + "time": "2024-09-02T05:25:14.376Z", + "timeSlot": "2024-09-02T05:25:14.376Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "ukvgnp5rgo", + "host": "rum.hlx.page", + "time": "2024-08-31T03:46:47.932Z", + "timeSlot": "2024-08-31T03:46:47.932Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "b99pycp27k6", + "host": "rum.hlx.page", + "time": "2024-08-31T16:42:29.202Z", + "timeSlot": "2024-08-31T16:42:29.202Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "swj1kxv4ghk", + "host": "rum.hlx.page", + "time": "2024-08-31T05:29:50.945Z", + "timeSlot": "2024-08-31T05:29:50.945Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "qzlrr2kbjv", + "host": "rum.hlx.page", + "time": "2024-08-31T20:39:06.846Z", + "timeSlot": "2024-08-31T20:39:06.846Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "c058i37qcxj", + "host": "rum.hlx.page", + "time": "2024-08-31T01:35:38.450Z", + "timeSlot": "2024-08-31T01:35:38.450Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "c1ql6rkn309", + "host": "rum.hlx.page", + "time": "2024-09-01T00:06:26.697Z", + "timeSlot": "2024-09-01T00:06:26.697Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4ud1fca0qox", + "host": "rum.hlx.page", + "time": "2024-08-31T12:11:46.684Z", + "timeSlot": "2024-08-31T12:11:46.684Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "0cduvkm06do", + "host": "rum.hlx.page", + "time": "2024-09-02T13:43:55.808Z", + "timeSlot": "2024-09-02T13:43:55.808Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "zfgehqhxxhe", + "host": "rum.hlx.page", + "time": "2024-09-01T20:44:51.139Z", + "timeSlot": "2024-09-01T20:44:51.139Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zl9zftkeutn", + "host": "rum.hlx.page", + "time": "2024-08-31T11:45:17.210Z", + "timeSlot": "2024-08-31T11:45:17.210Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ai3cgucnqlv", + "host": "rum.hlx.page", + "time": "2024-09-01T16:13:55.863Z", + "timeSlot": "2024-09-01T16:13:55.863Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "tg7dlnimdyn", + "host": "rum.hlx.page", + "time": "2024-08-31T18:11:36.286Z", + "timeSlot": "2024-08-31T18:11:36.286Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "gpbt4k97axd", + "host": "rum.hlx.page", + "time": "2024-09-01T23:22:47.363Z", + "timeSlot": "2024-09-01T23:22:47.363Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ivll6tso8pc", + "host": "rum.hlx.page", + "time": "2024-08-30T23:18:11.427Z", + "timeSlot": "2024-08-30T23:18:11.427Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "d0q615e9sc5", + "host": "rum.hlx.page", + "time": "2024-09-01T01:46:56.535Z", + "timeSlot": "2024-09-01T01:46:56.535Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "z1mru3wxt5k", + "host": "rum.hlx.page", + "time": "2024-09-01T00:09:00.883Z", + "timeSlot": "2024-09-01T00:09:00.883Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "h4wneztntwe", + "host": "rum.hlx.page", + "time": "2024-08-31T09:08:18.319Z", + "timeSlot": "2024-08-31T09:08:18.319Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "iknt4x1jea", + "host": "rum.hlx.page", + "time": "2024-08-31T21:46:18.269Z", + "timeSlot": "2024-08-31T21:46:18.269Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "d4c9vn8dv59", + "host": "rum.hlx.page", + "time": "2024-09-02T02:15:52.504Z", + "timeSlot": "2024-09-02T02:15:52.504Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "p9cutzamill", + "host": "rum.hlx.page", + "time": "2024-09-02T01:10:50.380Z", + "timeSlot": "2024-09-02T01:10:50.380Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "zb1bgq1ra4", + "host": "rum.hlx.page", + "time": "2024-08-31T15:43:46.322Z", + "timeSlot": "2024-08-31T15:43:46.322Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "pcqy4yv1r1", + "host": "rum.hlx.page", + "time": "2024-09-01T15:48:44.984Z", + "timeSlot": "2024-09-01T15:48:44.984Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "sahz2p5n6gg", + "host": "rum.hlx.page", + "time": "2024-09-01T09:21:16.628Z", + "timeSlot": "2024-09-01T09:21:16.628Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "4ptl0gnjq8k", + "host": "rum.hlx.page", + "time": "2024-08-31T06:28:59.907Z", + "timeSlot": "2024-08-31T06:28:59.907Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4pzstqi0aqm", + "host": "rum.hlx.page", + "time": "2024-08-31T02:41:25.699Z", + "timeSlot": "2024-08-31T02:41:25.699Z", + "url": "https://www.spacecat.com/pricing", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6p2yg13d867", + "host": "rum.hlx.page", + "time": "2024-09-01T04:12:21.526Z", + "timeSlot": "2024-09-01T04:12:21.526Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "rxfivnekm5r", + "host": "rum.hlx.page", + "time": "2024-08-31T01:01:39.303Z", + "timeSlot": "2024-08-31T01:01:39.303Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "zdjxu7utrfe", + "host": "rum.hlx.page", + "time": "2024-09-01T08:02:37.425Z", + "timeSlot": "2024-09-01T08:02:37.425Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "h2rwumzmvv", + "host": "rum.hlx.page", + "time": "2024-09-02T03:25:53.012Z", + "timeSlot": "2024-09-02T03:25:53.012Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "42zawfw7", + "host": "rum.hlx.page", + "time": "2024-09-02T13:43:29.590Z", + "timeSlot": "2024-09-02T13:43:29.590Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "kjqmylcicup", + "host": "rum.hlx.page", + "time": "2024-08-31T21:03:14.320Z", + "timeSlot": "2024-08-31T21:03:14.320Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "nelkcma2b8k", + "host": "rum.hlx.page", + "time": "2024-09-02T05:26:44.155Z", + "timeSlot": "2024-09-02T05:26:44.155Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fv9c93wac7", + "host": "rum.hlx.page", + "time": "2024-09-02T03:17:41.084Z", + "timeSlot": "2024-09-02T03:17:41.084Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "5zths9klewh", + "host": "rum.hlx.page", + "time": "2024-08-31T05:50:37.019Z", + "timeSlot": "2024-08-31T05:50:37.019Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "qtd3r3ge4jg", + "host": "rum.hlx.page", + "time": "2024-08-31T19:43:48.498Z", + "timeSlot": "2024-08-31T19:43:48.498Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "exahyr60nrs", + "host": "rum.hlx.page", + "time": "2024-08-30T21:23:30.539Z", + "timeSlot": "2024-08-30T21:23:30.539Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "nuc75x8m6ya", + "host": "rum.hlx.page", + "time": "2024-09-02T03:43:44.097Z", + "timeSlot": "2024-09-02T03:43:44.097Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "cci23bukwdw", + "host": "rum.hlx.page", + "time": "2024-09-01T19:53:29.022Z", + "timeSlot": "2024-09-01T19:53:29.022Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "p0wtrainhvg", + "host": "rum.hlx.page", + "time": "2024-09-01T10:18:06.700Z", + "timeSlot": "2024-09-01T10:18:06.700Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "mhrfsmsfpam", + "host": "rum.hlx.page", + "time": "2024-09-01T19:37:41.696Z", + "timeSlot": "2024-09-01T19:37:41.696Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "t4n5dx6izxp", + "host": "rum.hlx.page", + "time": "2024-09-01T20:27:15.238Z", + "timeSlot": "2024-09-01T20:27:15.238Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5zq6hb45s", + "host": "rum.hlx.page", + "time": "2024-09-02T10:54:50.278Z", + "timeSlot": "2024-09-02T10:54:50.278Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "ba788q0bzmd", + "host": "rum.hlx.page", + "time": "2024-09-02T06:48:59.496Z", + "timeSlot": "2024-09-02T06:48:59.496Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "teqsqpobg9q", + "host": "rum.hlx.page", + "time": "2024-08-31T12:17:39.172Z", + "timeSlot": "2024-08-31T12:17:39.172Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "taasg3l2je", + "host": "rum.hlx.page", + "time": "2024-08-30T23:27:18.446Z", + "timeSlot": "2024-08-30T23:27:18.446Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "4fbznw8prb4", + "host": "rum.hlx.page", + "time": "2024-08-31T07:35:24.093Z", + "timeSlot": "2024-08-31T07:35:24.093Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "msa4nmd1trh", + "host": "rum.hlx.page", + "time": "2024-09-01T08:05:55.570Z", + "timeSlot": "2024-09-01T08:05:55.570Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "fr5asnp7b05", + "host": "rum.hlx.page", + "time": "2024-09-01T05:56:04.841Z", + "timeSlot": "2024-09-01T05:56:04.841Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "wilk424q5is", + "host": "rum.hlx.page", + "time": "2024-09-01T19:46:28.819Z", + "timeSlot": "2024-09-01T19:46:28.819Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "7rpii5g5ug", + "host": "rum.hlx.page", + "time": "2024-08-31T03:51:40.522Z", + "timeSlot": "2024-08-31T03:51:40.522Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "x0ku0jkf6in", + "host": "rum.hlx.page", + "time": "2024-09-01T08:43:09.516Z", + "timeSlot": "2024-09-01T08:43:09.516Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "u06mgpsziy", + "host": "rum.hlx.page", + "time": "2024-08-31T06:18:01.824Z", + "timeSlot": "2024-08-31T06:18:01.824Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "42cvlwr33h7", + "host": "rum.hlx.page", + "time": "2024-08-31T10:47:04.742Z", + "timeSlot": "2024-08-31T10:47:04.742Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "sh6z8avvyjc", + "host": "rum.hlx.page", + "time": "2024-08-31T15:38:09.501Z", + "timeSlot": "2024-08-31T15:38:09.501Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "fwvi11hs23b", + "host": "rum.hlx.page", + "time": "2024-08-30T21:52:51.676Z", + "timeSlot": "2024-08-30T21:52:51.676Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "6ats7803i4s", + "host": "rum.hlx.page", + "time": "2024-08-31T23:44:06.446Z", + "timeSlot": "2024-08-31T23:44:06.446Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "bmb4omdy8as", + "host": "rum.hlx.page", + "time": "2024-08-30T16:22:36.626Z", + "timeSlot": "2024-08-30T16:22:36.626Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "awf8wiyyalm", + "host": "rum.hlx.page", + "time": "2024-09-01T21:54:18.977Z", + "timeSlot": "2024-09-01T21:54:18.977Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "mopo7xikr6h", + "host": "rum.hlx.page", + "time": "2024-08-30T19:30:16.445Z", + "timeSlot": "2024-08-30T19:30:16.445Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "5cnhc1l3djr", + "host": "rum.hlx.page", + "time": "2024-08-31T15:38:33.675Z", + "timeSlot": "2024-08-31T15:38:33.675Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6zg0at6zjyr", + "host": "rum.hlx.page", + "time": "2024-09-01T01:15:33.065Z", + "timeSlot": "2024-09-01T01:15:33.065Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "xi0d4yi5twf", + "host": "rum.hlx.page", + "time": "2024-09-01T18:03:59.710Z", + "timeSlot": "2024-09-01T18:03:59.710Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "ycfzpn8gjhp", + "host": "rum.hlx.page", + "time": "2024-08-30T19:57:24.985Z", + "timeSlot": "2024-08-30T19:57:24.985Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "oabapbs5go", + "host": "rum.hlx.page", + "time": "2024-08-31T20:35:02.427Z", + "timeSlot": "2024-08-31T20:35:02.427Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "po25necij4h", + "host": "rum.hlx.page", + "time": "2024-08-31T01:50:51.583Z", + "timeSlot": "2024-08-31T01:50:51.583Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "cfwzae12rn", + "host": "rum.hlx.page", + "time": "2024-09-02T08:12:00.882Z", + "timeSlot": "2024-09-02T08:12:00.882Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "8prpt91aip2", + "host": "rum.hlx.page", + "time": "2024-08-31T15:14:58.637Z", + "timeSlot": "2024-08-31T15:14:58.637Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "prbxbl4yir", + "host": "rum.hlx.page", + "time": "2024-09-02T00:21:42.953Z", + "timeSlot": "2024-09-02T00:21:42.953Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "0wwotw6874i", + "host": "rum.hlx.page", + "time": "2024-09-01T07:19:35.732Z", + "timeSlot": "2024-09-01T07:19:35.732Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "thepvgv66hn", + "host": "rum.hlx.page", + "time": "2024-08-31T21:13:29.626Z", + "timeSlot": "2024-08-31T21:13:29.626Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "bp9b7clru3", + "host": "rum.hlx.page", + "time": "2024-09-02T00:05:30.145Z", + "timeSlot": "2024-09-02T00:05:30.145Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "607vsshspcj", + "host": "rum.hlx.page", + "time": "2024-09-01T18:12:10.244Z", + "timeSlot": "2024-09-01T18:12:10.244Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "4k9j3kfpetq", + "host": "rum.hlx.page", + "time": "2024-09-02T12:41:10.408Z", + "timeSlot": "2024-09-02T12:41:10.408Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "8rfcjjdww1v", + "host": "rum.hlx.page", + "time": "2024-08-30T17:17:49.049Z", + "timeSlot": "2024-08-30T17:17:49.049Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "5f89wtxzf12", + "host": "rum.hlx.page", + "time": "2024-08-31T21:27:34.006Z", + "timeSlot": "2024-08-31T21:27:34.006Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "6vivsqq3bjr", + "host": "rum.hlx.page", + "time": "2024-08-30T20:36:09.074Z", + "timeSlot": "2024-08-30T20:36:09.074Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "iqu9ovqenj", + "host": "rum.hlx.page", + "time": "2024-08-31T07:21:27.903Z", + "timeSlot": "2024-08-31T07:21:27.903Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "jk8umrc3qx9", + "host": "rum.hlx.page", + "time": "2024-08-31T11:49:50.464Z", + "timeSlot": "2024-08-31T11:49:50.464Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "desktop:mac", + "weight": 100, + "events": [] + }, + { + "id": "nkpmjoeywwm", + "host": "rum.hlx.page", + "time": "2024-09-02T01:58:41.759Z", + "timeSlot": "2024-09-02T01:58:41.759Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:android", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "01jbumyah6yx", + "host": "rum.hlx.page", + "time": "2024-09-02T11:36:29.497Z", + "timeSlot": "2024-09-02T11:36:29.497Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "h5xfepkacml", + "host": "rum.hlx.page", + "time": "2024-08-30T20:07:38.526Z", + "timeSlot": "2024-08-30T20:07:38.526Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "z8p2mtl6kh", + "host": "rum.hlx.page", + "time": "2024-09-02T13:22:46.973Z", + "timeSlot": "2024-09-02T13:22:46.973Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + }, + { + "id": "b8776jrq4l", + "host": "rum.hlx.page", + "time": "2024-08-31T23:48:19.110Z", + "timeSlot": "2024-08-31T23:48:19.110Z", + "url": "https://www.spacecat.com/", + "userAgent": "mobile:ios", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + } + ] + }, + { + "id": "2cy7kf923t6", + "host": "rum.hlx.page", + "time": "2024-09-01T08:13:38.036Z", + "timeSlot": "2024-09-01T08:13:38.036Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:android", + "weight": 100, + "events": [] + }, + { + "id": "57qcl6m2r1i", + "host": "rum.hlx.page", + "time": "2024-09-02T06:09:18.364Z", + "timeSlot": "2024-09-02T06:09:18.364Z", + "url": "https://www.spacecat.com/", + "userAgent": "desktop:mac", + "weight": 100, + "events": [ + { + "checkpoint": "paid", + "source": "gclid", + "target": "google" + }, + { + "checkpoint": "click", + "source": ".some-block", + "target": "some-url" + } + ] + }, + { + "id": "ncae4p07l6", + "host": "rum.hlx.page", + "time": "2024-08-30T22:43:33.198Z", + "timeSlot": "2024-08-30T22:43:33.198Z", + "url": "https://www.spacecat.com/about-us", + "userAgent": "mobile:ios", + "weight": 100, + "events": [] + } + ] +} diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/high-inorganic-high-bounce.json b/packages/spacecat-shared-rum-api-client/test/fixtures/high-inorganic-high-bounce.json new file mode 100644 index 00000000..7b777cf9 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/high-inorganic-high-bounce.json @@ -0,0 +1,42 @@ +[ + { + "type": "high-inorganic-high-bounce-rate", + "page": "https://www.spacecat.com/", + "screenshot": "", + "trackedPageKPIName": "Bounce Rate", + "trackedPageKPIValue": 0.6507592190889371, + "pageViews": 46100, + "samples": 46100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 46100, + "paid": 40700, + "owned": 5400, + "earned": 0 + } + } + ] + }, + { + "type": "high-inorganic-high-bounce-rate", + "page": "https://www.spacecat.com/pricing", + "screenshot": "", + "trackedPageKPIName": "Bounce Rate", + "trackedPageKPIValue": 0.8723897911832946, + "pageViews": 43100, + "samples": 43100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 43100, + "paid": 24100, + "owned": 19000, + "earned": 0 + } + } + ] + } +] diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/high-organic-low-ctr.json b/packages/spacecat-shared-rum-api-client/test/fixtures/high-organic-low-ctr.json new file mode 100644 index 00000000..89b5bc8b --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/high-organic-low-ctr.json @@ -0,0 +1,29 @@ +[ + { + "type": "high-organic-low-ctr", + "page": "https://www.spacecat.com/about-us", + "screenshot": "", + "trackedPageKPIName": "Click Through Rate", + "trackedPageKPIValue": 0.14099783080260303, + "pageViews": 46100, + "samples": 46100, + "metrics": [ + { + "type": "traffic", + "value": { + "total": 46100, + "paid": 0, + "owned": 46100, + "earned": 0 + } + }, + { + "type": "ctr", + "value": { + "page": 0.14099783080260303, + "siteAverage": 0.4077909270216962 + } + } + ] + } +] diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json index eb6f3ebe..916b1051 100644 --- a/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/trafficSources.json @@ -2,6 +2,9 @@ { "url": "https://www.aem.live/home", "total": 2620, + "earned": 400, + "owned": 2220, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -16,6 +19,9 @@ { "url": "https://www.aem.live/developer/block-collection", "total": 2000, + "earned": 0, + "owned": 2000, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -26,6 +32,9 @@ { "url": "https://www.aem.live/docs/", "total": 1910, + "earned": 100, + "owned": 1810, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -40,6 +49,9 @@ { "url": "https://www.aem.live/tools/rum/explorer.html", "total": 1600, + "earned": 100, + "owned": 1500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -54,6 +66,9 @@ { "url": "https://www.aem.live/developer/tutorial", "total": 1600, + "earned": 200, + "owned": 1400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -68,6 +83,9 @@ { "url": "https://www.aem.live/developer/anatomy-of-a-franklin-project", "total": 1200, + "earned": 0, + "owned": 1200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -78,6 +96,9 @@ { "url": "https://www.aem.live/developer/indexing", "total": 1000, + "earned": 0, + "owned": 1000, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -88,6 +109,9 @@ { "url": "https://www.aem.live/docs/custom-headers", "total": 900, + "earned": 0, + "owned": 900, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -98,6 +122,9 @@ { "url": "https://www.aem.live/developer/spreadsheets", "total": 900, + "earned": 0, + "owned": 900, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -108,6 +135,9 @@ { "url": "https://www.aem.live/docs/dev-collab-and-good-practices", "total": 700, + "earned": 0, + "owned": 700, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -118,6 +148,9 @@ { "url": "https://www.aem.live/docs/go-live-checklist", "total": 600, + "earned": 0, + "owned": 600, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -128,6 +161,9 @@ { "url": "https://www.aem.live/developer/markup-sections-blocks", "total": 510, + "earned": 0, + "owned": 510, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -138,6 +174,9 @@ { "url": "https://www.aem.live/developer/favicon", "total": 500, + "earned": 0, + "owned": 500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -148,6 +187,9 @@ { "url": "https://www.aem.live/developer/keeping-it-100", "total": 500, + "earned": 0, + "owned": 500, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -158,6 +200,9 @@ { "url": "https://www.aem.live/tools/sidekick/", "total": 410, + "earned": 0, + "owned": 410, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -168,6 +213,9 @@ { "url": "https://www.aem.live/docs/placeholders", "total": 403, + "earned": 0, + "owned": 403, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -178,6 +226,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-worker-setup", "total": 400, + "earned": 0, + "owned": 400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -188,6 +239,9 @@ { "url": "https://www.aem.live/docs/byo-dns", "total": 400, + "earned": 0, + "owned": 400, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -198,6 +252,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-fastly-setup", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -208,6 +265,9 @@ { "url": "https://www.aem.live/docs/davidsmodel", "total": 300, + "earned": 200, + "owned": 100, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -222,6 +282,9 @@ { "url": "https://www.aem.live/docs/setup-customer-sharepoint", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -232,6 +295,9 @@ { "url": "https://www.aem.live/developer/sitemap", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -242,6 +308,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-akamai-setup", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -252,6 +321,9 @@ { "url": "https://www.aem.live/docs/redirects", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -262,6 +334,9 @@ { "url": "https://www.aem.live/docs/bulk-metadata", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -272,6 +347,9 @@ { "url": "https://www.aem.live/some-other-page", "total": 300, + "earned": 0, + "owned": 300, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -282,6 +360,9 @@ { "url": "https://www.aem.live/docs/authoring", "total": 210, + "earned": 0, + "owned": 210, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -292,6 +373,9 @@ { "url": "https://www.aem.live/docs/sidekick", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -302,6 +386,9 @@ { "url": "https://www.aem.live/developer/web-components", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -312,6 +399,9 @@ { "url": "https://www.aem.live/docs/authentication-setup-site", "total": 200, + "earned": 100, + "owned": 100, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -326,6 +416,9 @@ { "url": "https://www.aem.live/developer/rum", "total": 200, + "earned": 100, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -340,6 +433,9 @@ { "url": "https://www.aem.live/docs/faq", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -350,6 +446,9 @@ { "url": "https://www.aem.live/developer/placeholders", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -360,6 +459,9 @@ { "url": "https://www.aem.live/developer/block-collection/section-metadata", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -370,6 +472,9 @@ { "url": "https://www.aem.live/vip/intake", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -380,6 +485,9 @@ { "url": "https://www.aem.live/new-exp-page", "total": 200, + "earned": 0, + "owned": 200, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -390,6 +498,9 @@ { "url": "https://www.aem.live/docs/sidekick-extension", "total": 110, + "earned": 100, + "owned": 10, + "paid": 0, "sources": [ { "type": "earned:search", @@ -404,6 +515,9 @@ { "url": "https://www.aem.live/docs/rum", "total": 110, + "earned": 0, + "owned": 110, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -414,6 +528,9 @@ { "url": "https://www.aem.live/developer/target-integration", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -424,6 +541,9 @@ { "url": "https://www.aem.live/docs/architecture", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -434,6 +554,9 @@ { "url": "https://www.aem.live/developer/block-collection/breadcrumbs", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -444,6 +567,9 @@ { "url": "https://www.aem.live/developer/block-collection/headings", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -454,6 +580,9 @@ { "url": "https://www.aem.live/docs/cdn-guide", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -464,6 +593,9 @@ { "url": "https://www.aem.live/tools/bot/setup", "total": 100, + "earned": 100, + "owned": 0, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -474,6 +606,9 @@ { "url": "https://www.aem.live/developer/github-actions", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -484,6 +619,9 @@ { "url": "https://www.aem.live/developer/importer", "total": 100, + "earned": 100, + "owned": 0, + "paid": 0, "sources": [ { "type": "earned:referral", @@ -494,6 +632,9 @@ { "url": "https://www.aem.live/developer/configuring-aem-assets-sidekick-plugin", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -504,6 +645,9 @@ { "url": "https://www.aem.live/tools/rum/list.html", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -514,6 +658,9 @@ { "url": "https://www.aem.live/docs/setup-byo-cdn-push-invalidation", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -524,6 +671,9 @@ { "url": "https://www.aem.live/developer/forms", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -534,6 +684,9 @@ { "url": "https://www.aem.live/developer/", "total": 100, + "earned": 0, + "owned": 100, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -544,6 +697,9 @@ { "url": "https://www.aem.live/docs/admin.html", "total": 20, + "earned": 0, + "owned": 20, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -554,6 +710,9 @@ { "url": "https://www.aem.live/community-feeds.json", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -564,6 +723,9 @@ { "url": "https://www.aem.live/docs/global", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -574,6 +736,9 @@ { "url": "https://www.aem.live/developer/franklin-video-series-advanced", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -584,6 +749,9 @@ { "url": "https://www.aem.live/developer/markup-reference", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -594,6 +762,9 @@ { "url": "https://www.aem.live/docs/byo-cdn-cloudflare-setup", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -604,6 +775,9 @@ { "url": "https://www.aem.live/developer/franklin-video-series", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", @@ -614,6 +788,9 @@ { "url": "https://www.aem.live/docs/aem-assets-sidekick-plugin", "total": 10, + "earned": 0, + "owned": 10, + "paid": 0, "sources": [ { "type": "owned:direct", diff --git a/packages/spacecat-shared-rum-api-client/test/functions.test.js b/packages/spacecat-shared-rum-api-client/test/functions.test.js index 58a88d07..25ab4cc2 100644 --- a/packages/spacecat-shared-rum-api-client/test/functions.test.js +++ b/packages/spacecat-shared-rum-api-client/test/functions.test.js @@ -16,14 +16,19 @@ import cwv from '../src/functions/cwv.js'; import notfound from '../src/functions/404.js'; import experiment from '../src/functions/experiment.js'; import trafficAcquisition from '../src/functions/traffic-acquisition.js'; +import highInorganicHighBounce from '../src/functions/opportunities/high-inorganic-high-bounce-rate.js'; +import highOrganicLowCTR from '../src/functions/opportunities/high-organic-low-ctr.js'; import variant from '../src/functions/variant.js'; import bundles from './fixtures/bundles.json' assert { type: 'json' }; +import bundlesWithTraffic from './fixtures/bundles-with-traffic-source.json' assert { type: 'json' }; import bundlesForVariant from './fixtures/bundles_for_variant.json' assert { type: 'json' }; import expectedCwvResult from './fixtures/cwv.json' assert { type: 'json' }; import expected404Result from './fixtures/notfound.json' assert { type: 'json' }; import expectedExperimentsResult from './fixtures/experiments.json' assert { type: 'json' }; import expectedTrafficSourcesResult from './fixtures/trafficSources.json' assert { type: 'json' }; import expectedVariantResult from './fixtures/variant.json' assert { type: 'json' }; +import expectedHighInorganicHighBounceResult from './fixtures/high-inorganic-high-bounce.json' assert { type: 'json' }; +import expectedHighOrganicLowCTRResult from './fixtures/high-organic-low-ctr.json' assert { type: 'json' }; describe('Query functions', () => { it('crunches cwv data', async () => { @@ -50,4 +55,20 @@ describe('Query functions', () => { const trafficSourcesResult = await trafficAcquisition.handler(bundles.rumBundles); expect(expectedTrafficSourcesResult).to.eql(trafficSourcesResult); }); + + it('crunches oppty/high-inorganic-high-bounce', async () => { + const highInorganicHighBounceResult = highInorganicHighBounce.handler( + bundlesWithTraffic.rumBundles, + { interval: 7 }, + ); + expect(expectedHighInorganicHighBounceResult).to.eql(highInorganicHighBounceResult); + }); + + it('crunches oppty/high-organic-low-ctr', async () => { + const highInorganicHighBounceResult = highOrganicLowCTR.handler( + bundlesWithTraffic.rumBundles, + { interval: 7 }, + ); + expect(expectedHighOrganicLowCTRResult).to.eql(highInorganicHighBounceResult); + }); }); From 792445010135d544a2c5077f0593e85772a02d9d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 3 Sep 2024 09:45:41 +0000 Subject: [PATCH 11/46] chore(release): 2.9.0 [skip ci] # [@adobe/spacecat-shared-rum-api-client-v2.9.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.8.0...@adobe/spacecat-shared-rum-api-client-v2.9.0) (2024-09-03) ### Features * experimentation opportunities ([#351](https://github.com/adobe/spacecat-shared/issues/351)) ([f21a765](https://github.com/adobe/spacecat-shared/commit/f21a765996990b1748c11b0cd8089e87ec91d9ad)) --- packages/spacecat-shared-rum-api-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-rum-api-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-rum-api-client/CHANGELOG.md b/packages/spacecat-shared-rum-api-client/CHANGELOG.md index 74edbf39..0ffc0497 100644 --- a/packages/spacecat-shared-rum-api-client/CHANGELOG.md +++ b/packages/spacecat-shared-rum-api-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-rum-api-client-v2.9.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.8.0...@adobe/spacecat-shared-rum-api-client-v2.9.0) (2024-09-03) + + +### Features + +* experimentation opportunities ([#351](https://github.com/adobe/spacecat-shared/issues/351)) ([f21a765](https://github.com/adobe/spacecat-shared/commit/f21a765996990b1748c11b0cd8089e87ec91d9ad)) + # [@adobe/spacecat-shared-rum-api-client-v2.8.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.7.4...@adobe/spacecat-shared-rum-api-client-v2.8.0) (2024-08-26) diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index b59edb9a..476fb9bd 100644 --- a/packages/spacecat-shared-rum-api-client/package.json +++ b/packages/spacecat-shared-rum-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-rum-api-client", - "version": "2.8.0", + "version": "2.9.0", "description": "Shared modules of the Spacecat Services - Rum API client", "type": "module", "engines": { From b54833615d480a567fc87e17009f6c5e87110179 Mon Sep 17 00:00:00 2001 From: Iulia Grumaz Date: Wed, 4 Sep 2024 13:27:20 +0300 Subject: [PATCH 12/46] fix(ahrefs-client): broken backlinks filter adjustment: do not limit to is do follow and is content (#357) Update Ahrefs broken backlinks filter to include links that where found outside the biggest piece of content on the page and links that have a nofollow attribute. Fix should have been delivered via https://github.com/adobe/spacecat-shared/pull/302, but that one was actually updating the get all backlinks (all, not only the broken ones) function. --- packages/spacecat-shared-ahrefs-client/src/index.js | 2 -- packages/spacecat-shared-ahrefs-client/test/index.test.js | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/spacecat-shared-ahrefs-client/src/index.js b/packages/spacecat-shared-ahrefs-client/src/index.js index e61c8e92..97c68a03 100644 --- a/packages/spacecat-shared-ahrefs-client/src/index.js +++ b/packages/spacecat-shared-ahrefs-client/src/index.js @@ -83,8 +83,6 @@ export default class AhrefsAPIClient { async getBrokenBacklinks(url, limit = 50) { const filter = { and: [ - { field: 'is_dofollow', is: ['eq', 1] }, - { field: 'is_content', is: ['eq', 1] }, { field: 'domain_rating_source', is: ['gte', 29.5] }, { field: 'traffic_domain', is: ['gte', 500] }, { field: 'links_external', is: ['lte', 300] }, diff --git a/packages/spacecat-shared-ahrefs-client/test/index.test.js b/packages/spacecat-shared-ahrefs-client/test/index.test.js index af409a84..1f36a154 100644 --- a/packages/spacecat-shared-ahrefs-client/test/index.test.js +++ b/packages/spacecat-shared-ahrefs-client/test/index.test.js @@ -199,8 +199,6 @@ describe('AhrefsAPIClient', () => { output: 'json', where: JSON.stringify({ and: [ - { field: 'is_dofollow', is: ['eq', 1] }, - { field: 'is_content', is: ['eq', 1] }, { field: 'domain_rating_source', is: ['gte', 29.5] }, { field: 'traffic_domain', is: ['gte', 500] }, { field: 'links_external', is: ['lte', 300] }, @@ -212,7 +210,7 @@ describe('AhrefsAPIClient', () => { const result = await client.getBrokenBacklinks('test-site.com'); expect(result).to.deep.equal({ result: backlinksResponse, - fullAuditRef: 'https://example.com/site-explorer/broken-backlinks?select=title%2Curl_from%2Curl_to%2Ctraffic_domain&limit=50&mode=prefix&order_by=domain_rating_source%3Adesc%2Ctraffic_domain%3Adesc&target=test-site.com&output=json&where=%7B%22and%22%3A%5B%7B%22field%22%3A%22is_dofollow%22%2C%22is%22%3A%5B%22eq%22%2C1%5D%7D%2C%7B%22field%22%3A%22is_content%22%2C%22is%22%3A%5B%22eq%22%2C1%5D%7D%2C%7B%22field%22%3A%22domain_rating_source%22%2C%22is%22%3A%5B%22gte%22%2C29.5%5D%7D%2C%7B%22field%22%3A%22traffic_domain%22%2C%22is%22%3A%5B%22gte%22%2C500%5D%7D%2C%7B%22field%22%3A%22links_external%22%2C%22is%22%3A%5B%22lte%22%2C300%5D%7D%5D%7D', + fullAuditRef: 'https://example.com/site-explorer/broken-backlinks?select=title%2Curl_from%2Curl_to%2Ctraffic_domain&limit=50&mode=prefix&order_by=domain_rating_source%3Adesc%2Ctraffic_domain%3Adesc&target=test-site.com&output=json&where=%7B%22and%22%3A%5B%7B%22field%22%3A%22domain_rating_source%22%2C%22is%22%3A%5B%22gte%22%2C29.5%5D%7D%2C%7B%22field%22%3A%22traffic_domain%22%2C%22is%22%3A%5B%22gte%22%2C500%5D%7D%2C%7B%22field%22%3A%22links_external%22%2C%22is%22%3A%5B%22lte%22%2C300%5D%7D%5D%7D', }); }); }); From 1e984906934a4f7cf018f2762e1bf8d7bc144c7d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 4 Sep 2024 10:29:46 +0000 Subject: [PATCH 13/46] chore(release): 1.5.2 [skip ci] # [@adobe/spacecat-shared-ahrefs-client-v1.5.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.1...@adobe/spacecat-shared-ahrefs-client-v1.5.2) (2024-09-04) ### Bug Fixes * **ahrefs-client:** broken backlinks filter adjustment: do not limit to is do follow and is content ([#357](https://github.com/adobe/spacecat-shared/issues/357)) ([b548336](https://github.com/adobe/spacecat-shared/commit/b54833615d480a567fc87e17009f6c5e87110179)) --- packages/spacecat-shared-ahrefs-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-ahrefs-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-ahrefs-client/CHANGELOG.md b/packages/spacecat-shared-ahrefs-client/CHANGELOG.md index 285c727c..18fe9e50 100644 --- a/packages/spacecat-shared-ahrefs-client/CHANGELOG.md +++ b/packages/spacecat-shared-ahrefs-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-ahrefs-client-v1.5.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.1...@adobe/spacecat-shared-ahrefs-client-v1.5.2) (2024-09-04) + + +### Bug Fixes + +* **ahrefs-client:** broken backlinks filter adjustment: do not limit to is do follow and is content ([#357](https://github.com/adobe/spacecat-shared/issues/357)) ([b548336](https://github.com/adobe/spacecat-shared/commit/b54833615d480a567fc87e17009f6c5e87110179)) + # [@adobe/spacecat-shared-ahrefs-client-v1.5.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.0...@adobe/spacecat-shared-ahrefs-client-v1.5.1) (2024-08-24) diff --git a/packages/spacecat-shared-ahrefs-client/package.json b/packages/spacecat-shared-ahrefs-client/package.json index 240d83e4..9065a8b7 100644 --- a/packages/spacecat-shared-ahrefs-client/package.json +++ b/packages/spacecat-shared-ahrefs-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-ahrefs-client", - "version": "1.5.1", + "version": "1.5.2", "description": "Shared modules of the Spacecat Services - Ahrefs Client", "type": "module", "engines": { From 91399b3331849bbf771d108958751003ec9820aa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:58:15 +0200 Subject: [PATCH 14/46] fix(deps): update external major (major) (#355) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [googleapis](https://redirect.github.com/googleapis/google-api-nodejs-client) | [`142.0.0` -> `144.0.0`](https://renovatebot.com/diffs/npm/googleapis/142.0.0/144.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/googleapis/144.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/googleapis/144.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/googleapis/142.0.0/144.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/googleapis/142.0.0/144.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [jsdoc-to-markdown](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown) | [`8.0.3` -> `9.0.0`](https://renovatebot.com/diffs/npm/jsdoc-to-markdown/8.0.3/9.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jsdoc-to-markdown/9.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jsdoc-to-markdown/9.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jsdoc-to-markdown/8.0.3/9.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jsdoc-to-markdown/8.0.3/9.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
googleapis/google-api-nodejs-client (googleapis) ### [`v144.0.0`](https://redirect.github.com/googleapis/google-api-nodejs-client/blob/HEAD/CHANGELOG.md#14400-2024-08-30) [Compare Source](https://redirect.github.com/googleapis/google-api-nodejs-client/compare/googleapis-v143.0.0...googleapis-v144.0.0) ##### ⚠ BREAKING CHANGES - **migrationcenter:** This release has breaking changes. - **discoveryengine:** This release has breaking changes. - **content:** This release has breaking changes. - **compute:** This release has breaking changes. - **aiplatform:** This release has breaking changes. ##### Features - **aiplatform:** update the API ([5608606](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/560860666d0ddffa1424ce9c404109ce9f3ac6f7)) - **alloydb:** update the API ([ada8fc6](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/ada8fc685e70ac650421bc6eccf9d5e12e47720f)) - **artifactregistry:** update the API ([698b77f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/698b77f53f1683f3c5c6a67c874bc66a7b1c18f6)) - **compute:** update the API ([42c636d](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/42c636d95a50083214fa77604de496f03b96d784)) - **content:** update the API ([65db039](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/65db03915d0b74ee864ec54cb23a3eb549df6ebf)) - **dataproc:** update the API ([0ce260e](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/0ce260e745c14e69a876a8ae68638229340465ad)) - **discoveryengine:** update the API ([d7d6c3f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/d7d6c3f1726c4647f42fe1cc02e189bb1ddbc7ab)) - **healthcare:** update the API ([4767f7a](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/4767f7ac66946a69e766b3560d36142f52681be9)) - **migrationcenter:** update the API ([d42c0fd](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/d42c0fd2364d050bf206f650ffd7a7bc865b7aec)) - regenerate index files ([2f2ab88](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/2f2ab8899c2296147016111461b9ee8a80d8c5ec)) - **securitycenter:** update the API ([b82bcee](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/b82bceec5286bf7e018e33c6674ed17b7f644698)) - **servicenetworking:** update the API ([770e82d](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/770e82d4274e4121b68730ee809c841a7cf103d5)) ##### Bug Fixes - **analyticsadmin:** update the API ([9b434bb](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/9b434bb40d59f70cdf0873986109d68fd5f0c4ee)) - **analyticsdata:** update the API ([725603f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/725603f462bdee7a46e53c3fca6a83590d326a7c)) - **assuredworkloads:** update the API ([d19c969](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/d19c9692a940fac059512bf2059e9f0e954f49f7)) - **cloudasset:** update the API ([09063b6](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/09063b6fa3f09756153326cef180c5750409d655)) - **cloudfunctions:** update the API ([158373f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/158373f1d84156c77b347f5925fa1bcde28acc8a)) - **places:** update the API ([f9b8acb](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f9b8acbc01ca8d32a86827fb7813f7b0a10c06a6)) - **retail:** update the API ([f2c43de](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f2c43de9cf0fb7f398ae00147c7578bde1bdca5a)) - **sheets:** update the API ([2c4f5c4](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/2c4f5c4289630060b4ab221715790867492d222c)) - **workspaceevents:** update the API ([dbdb567](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/dbdb5670b40f930facb092aa26e0540bf41e9d77)) ### [`v143.0.0`](https://redirect.github.com/googleapis/google-api-nodejs-client/blob/HEAD/CHANGELOG.md#14300-2024-08-27) [Compare Source](https://redirect.github.com/googleapis/google-api-nodejs-client/compare/googleapis-v142.0.0...googleapis-v143.0.0) ##### ⚠ BREAKING CHANGES - **vmmigration:** This release has breaking changes. - **dialogflow:** This release has breaking changes. - **dfareporting:** This release has breaking changes. - **compute:** This release has breaking changes. - **backupdr:** This release has breaking changes. - **alloydb:** This release has breaking changes. ##### Features - **accessapproval:** update the API ([cf90cc5](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/cf90cc55062dc3ba4708ccbcaff90f4ebbc1853b)) - **alloydb:** update the API ([a65f1c6](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/a65f1c6b3afc77831875f13ff365f81446ce20b1)) - **androidmanagement:** update the API ([5366254](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/5366254d09e981b9e0dd97a7d66bec74dc362099)) - **androidpublisher:** update the API ([39227ab](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/39227abcc4e15f60b66eba06e8f12e4f988ad008)) - **assuredworkloads:** update the API ([4a6bb6a](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/4a6bb6afb5f48331b77b393f83afcc89aeeb3a43)) - **backupdr:** update the API ([42f5614](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/42f561492446c7acd519b2fae69d8d26826fa86b)) - **batch:** update the API ([3d92a17](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/3d92a17f62147ec8b2835235b662f1cad0b22e9c)) - **chat:** update the API ([24087bb](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/24087bba4d4c8841e04f97fd87d075bfcbfd91c7)) - **cloudasset:** update the API ([2f72369](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/2f7236928e32e49a3144b2fd4937931ac770f9ff)) - **cloudkms:** update the API ([d790478](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/d79047865541d80777c203276cf7cd2c1263da3b)) - **compute:** update the API ([07afb29](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/07afb29aacc1065a71c07c2f3fac9add8aa2b824)) - **connectors:** update the API ([e313580](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/e313580d2d6bdcb4a90a00376b12b6dba101300b)) - **containeranalysis:** update the API ([f67b2f1](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f67b2f199f41f639f824f6872a5dc1f36b0e9bc4)) - **container:** update the API ([c798230](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/c798230310d4fbada896c2a5c8dc5a322aaefd8e)) - **customsearch:** update the API ([b0db98e](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/b0db98e665385c8ac8a52a070ff20a9943c104ed)) - **dataflow:** update the API ([1f67690](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/1f6769038476c3668f525cac94b4fb8ef8c7fbb6)) - **dataplex:** update the API ([ed2ce18](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/ed2ce18e28fd05eff735da24b0af68437ccae0a8)) - **dfareporting:** update the API ([f690620](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f690620a4dc6c0f4b2390cf7bd4e7520fefc1606)) - **dialogflow:** update the API ([7e85135](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/7e8513507641937ced2254fd140f98488226de17)) - **discoveryengine:** update the API ([a71fc00](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/a71fc0044dc152600f98fab793bd4da9f38afae2)) - **displayvideo:** update the API ([64a72df](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/64a72df736168da551b9e1ada86b3a2595291ffd)) - **firebasedynamiclinks:** update the API ([8f190a1](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/8f190a1b12e4d2d1ff7ef4357f023bf442c1653f)) - **firebaseml:** update the API ([b6ef740](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/b6ef740ae5920f2d8fcb1260c144063c6c5bd250)) - **gkeonprem:** update the API ([c344788](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/c3447883c154ee15b5412989824f7a7c677f856c)) - **healthcare:** update the API ([f267f00](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f267f00de372bb5ea2a2a8e53a80f71fa4939c4a)) - **looker:** update the API ([96cf760](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/96cf76098cf60a929957856d8e4acc4e8735e697)) - **merchantapi:** update the API ([f9aa1e5](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f9aa1e52ab76989b668106f466e634994a78386f)) - **migrationcenter:** update the API ([1c2cc5f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/1c2cc5f4e24ec807ec18b0e5341bf4528418e903)) - **networkmanagement:** update the API ([3c4d5be](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/3c4d5bedeebefae2c2a4c553c15fd8e97314d8f1)) - **networkservices:** update the API ([08c6b8f](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/08c6b8f4d2f9228cc03c9ea33b7b8b27d6b5f83e)) - **notebooks:** update the API ([80ae519](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/80ae51937f70b562e729cf7002fc383e7dd40a16)) - **privateca:** update the API ([1601667](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/1601667b9453f0794ff0b836a1da203c388ad455)) - **recaptchaenterprise:** update the API ([f26a373](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/f26a3735f9f180854b1ddf90e38cd52718b541b9)) - **redis:** update the API ([98cd830](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/98cd830d6378293f1f09d356c512fabbbe873230)) - regenerate index files ([ecd017c](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/ecd017c8f0dbfbbcf9c99884462fce5e36965466)) - **run:** update the API ([008997a](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/008997a09ab9b04010e1a6990e2027bca81ab5c7)) - **searchads360:** update the API ([44d0e72](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/44d0e72d60589a4640760f4025c479af340d57a2)) - **servicenetworking:** update the API ([e673e80](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/e673e80007c4ce25a1e7ebb808b5f677e7f32d59)) - **solar:** update the API ([36d8685](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/36d868518c22daaf01b43b26d4ec4dc6e5666e90)) - **sqladmin:** update the API ([fe2dacf](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/fe2dacfc9d9e22b886933adfa1bcd7eb532185f7)) - **storage:** update the API ([cae4993](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/cae49936785d6e4532bf5e78c4a4aec48ba1139c)) - **translate:** update the API ([841a829](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/841a82938451a65ba84422285229061afbd7a5aa)) - **vmmigration:** update the API ([614baa2](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/614baa252fdccd0fb3d7b444570733ae34374af4)) - **workflowexecutions:** update the API ([7e5f42a](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/7e5f42a7c7b74d580dabe8dcc94ebfe95fdb9ac5)) - **workflows:** update the API ([467b748](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/467b748af9574c1e16d23fb3fc4ad5f1df999e48)) - **workstations:** update the API ([4b60597](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/4b6059747dd903095babcd69a7f56f7d3d076ec2)) - **youtube:** update the API ([3d838e7](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/3d838e7dc4a5fa26933a0042355cad3f63d8b9a6)) ##### Bug Fixes - **analyticsadmin:** update the API ([90c32f5](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/90c32f578b1ca14cc97b972430dc3c46b90225d8)) - **androidenterprise:** update the API ([bc97b0e](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/bc97b0e91f823a24ed71802070f508d3063d03c8)) - **artifactregistry:** update the API ([3702a0d](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/3702a0d062838d9c11e5b54bbac1c3703e94fc9f)) - **bigquery:** update the API ([2aca035](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/2aca0358c5cd5f5d83b9aaf276ebe84dd5a93a44)) - **chromemanagement:** update the API ([71a65a8](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/71a65a88bb182e71a54c2c1134b35a73e979c3f8)) - **cloudcontrolspartner:** update the API ([5ed5388](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/5ed53884e9a1ea1cc400977996a3a3e51c35ab97)) - **cloudtasks:** update the API ([ab3a2bc](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/ab3a2bc0892c51516b473e7c20f7cd8978e9b883)) - **cloudtrace:** update the API ([e6d9ca4](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/e6d9ca416645e58b93b41b462f96875d8316687c)) - **datastream:** update the API ([73a27e5](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/73a27e556dd1cf98a57d879cb1416fcc9c5bd3d7)) - **dlp:** update the API ([52cf151](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/52cf151b18840bfdd8b04b08dd5f99b55a0eb2bd)) - **drive:** update the API ([d1f9ef2](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/d1f9ef2c0cee23a87f3033b9565fcfb70b3df974)) - **gkehub:** update the API ([75d45d7](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/75d45d767bc0c0ad8c03c4855cd43f896b67c91d)) - **retail:** update the API ([2179668](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/2179668e37934ee952551833881bfa1d7b2056bd)) - **secretmanager:** update the API ([144ba15](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/144ba152a0cccc9b1c20f522cbe0255ab6fd97d9)) - **spanner:** update the API ([ccac052](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/ccac0528486986aa6aabd08defd08b68b7c4060f)) - **texttospeech:** update the API ([c9e1e37](https://redirect.github.com/googleapis/google-api-nodejs-client/commit/c9e1e374cc6c6e578d81c57c41b6b95e6e21c4f1))
jsdoc2md/jsdoc-to-markdown (jsdoc-to-markdown) ### [`v9.0.0`](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/releases/tag/v9.0.0) [Compare Source](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/compare/v8.0.3...v9.0.0) The default output has not changed. The minimum required Node version is still v12.17. The goals for this release were bug fixing and simplification. Feel free to comment in the [release discussion](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/discussions/305) or post an issue. #### Breaking changes since v8.0.3 - Removed `.renderSync()`, `.getTemplateDataSync()` and `.getJsdocDataSync()`. The jsdoc2md API is now async-only. - Previously, passing either `option.files` or `option.source` was mandatory. Now, it is either `option.files`, `option.source` or `option.configure`. [https://github.com/jsdoc2md/jsdoc-api/issues/27](https://redirect.github.com/jsdoc2md/jsdoc-api/issues/27) #### Non-breaking changes - Fixed a bug where it was possible for a handlebars template to be passed into the jsdoc-api `template` option. [#​303](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/issues/303) - Support clever-links, monospace-links, `{@​linkcode}` and `{@​linkplain}`. [#​301](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/issues/301) - Fixed a 'maximum call stack size exceeded' error. The user now gets a warning if the malformed input which formerly caused the error is detected. [https://github.com/jsdoc2md/dmd/issues/89](https://redirect.github.com/jsdoc2md/dmd/issues/89) - Fixed an issue where the dmd internal partials failed to load if a user's directory name contained special glob characters. [https://github.com/jsdoc2md/dmd/issues/82](https://redirect.github.com/jsdoc2md/dmd/issues/82) - Added the `--EOL` option to control line-endings. Fixes [https://github.com/jsdoc2md/dmd/issues/92](https://redirect.github.com/jsdoc2md/dmd/issues/92). - Fixed an issue where setting `{ pedantic: false }` confused the underlying jsdoc. [https://github.com/jsdoc2md/jsdoc-api/issues/22](https://redirect.github.com/jsdoc2md/jsdoc-api/issues/22) - Can now pass an array of strings to `.source`. [https://github.com/jsdoc2md/jsdoc-api/issues/11](https://redirect.github.com/jsdoc2md/jsdoc-api/issues/11) - Added support for `@hideconstructor`. [https://github.com/jsdoc2md/dmd/issues/94](https://redirect.github.com/jsdoc2md/dmd/issues/94) - Print a warning when the most common mistake is detected (`@module` tag required) [https://github.com/jsdoc2md/dmd/issues/96](https://redirect.github.com/jsdoc2md/dmd/issues/96) - Fixed an issue where a `@example` was excluded in the output if the doclet did not contain a description. [https://github.com/jsdoc2md/jsdoc-parse/issues/33](https://redirect.github.com/jsdoc2md/jsdoc-parse/issues/33) #### Other improvements - Greatly optimised the dependency tree - upgraded all deps to their latest versions (removing deprecation warnings) and factored many old modules out of the project. #### Upgrade notes - Update your code replacing any use of `.renderSync()`, `.getTemplateDataSync()` and `.getJsdocDataSync()` with their async equivalents. - To see an example of API usage, see [here](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/wiki/How-to-create-one-output-file-per-class).
--- ### Configuration πŸ“… **Schedule**: Branch creation - "after 2pm on Monday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 680 ++++++------------ package.json | 2 +- .../package.json | 2 +- 3 files changed, 234 insertions(+), 450 deletions(-) diff --git a/package-lock.json b/package-lock.json index 28497828..3dc702c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,7 +22,7 @@ "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.1.5", - "jsdoc-to-markdown": "8.0.3", + "jsdoc-to-markdown": "9.0.0", "lint-staged": "15.2.9", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", @@ -3962,25 +3962,6 @@ "node": ">=6" } }, - "node_modules/ansi-escape-sequences": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/ansi-escape-sequences/node_modules/array-back": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/ansi-escapes": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", @@ -4364,26 +4345,24 @@ } }, "node_modules/cache-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-2.0.0.tgz", - "integrity": "sha512-4gkeHlFpSKgm3vm2gJN5sPqfmijYRFYCQ6tv5cLw0xVmT6r1z1vd4FNnpuOREco3cBs1G709sZ72LdgddKvL5w==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-3.0.0.tgz", + "integrity": "sha512-LDGNWYv/tqRWAAZxMy75PIYynaIuhcyoyjJtwA7X5uMZjdzvGm+XmTey/GXUy2EJ+lwc2eBFzFYxjvNYyE/0Iw==", "dev": true, + "license": "MIT", "dependencies": { - "array-back": "^4.0.1", - "fs-then-native": "^2.0.0", - "mkdirp2": "^1.0.4" + "array-back": "^6.2.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/cache-point/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "dev": true, - "engines": { - "node": ">=8" + "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "^0.1.1" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } } }, "node_modules/call-bind": { @@ -4487,6 +4466,22 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/chalk-template": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz", + "integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/chalk-template?sponsor=1" + } + }, "node_modules/char-regex": { "version": "1.0.2", "dev": true, @@ -4800,19 +4795,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/collect-all": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-1.0.4.tgz", - "integrity": "sha512-RKZhRwJtJEP5FWul+gkSMEnaK6H3AGPTTWOiRimCcs+rc/OmQE3Yhy1Q7A7KsdkG3ZXVdZq68Y6ONSdvkeEcKA==", - "dev": true, - "dependencies": { - "stream-connect": "^1.0.2", - "stream-via": "^1.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/color-convert": { "version": "2.0.1", "dev": true, @@ -4854,87 +4836,6 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/command-line-args": { - "version": "5.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-args/node_modules/array-back": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/command-line-args/node_modules/typical": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/command-line-tool": { - "version": "0.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escape-sequences": "^4.0.0", - "array-back": "^2.0.0", - "command-line-args": "^5.0.0", - "command-line-usage": "^4.1.0", - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-tool/node_modules/array-back": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/command-line-usage": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escape-sequences": "^4.0.0", - "array-back": "^2.0.0", - "table-layout": "^0.4.2", - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-usage/node_modules/array-back": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/commander": { "version": "12.1.0", "dev": true, @@ -5163,6 +5064,16 @@ ], "license": "MIT" }, + "node_modules/current-module-paths": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/current-module-paths/-/current-module-paths-1.1.2.tgz", + "integrity": "sha512-H4s4arcLx/ugbu1XkkgSvcUZax0L6tXUqnppGniQb8l5VjUKGHoayXE5RiriiPhYDd+kjZnaok1Uig13PKtKYQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.17" + } + }, "node_modules/d3-array": { "version": "3.2.4", "license": "ISC", @@ -5450,26 +5361,30 @@ "license": "MIT" }, "node_modules/dmd": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/dmd/-/dmd-6.2.3.tgz", - "integrity": "sha512-SIEkjrG7cZ9GWZQYk/mH+mWtcRPly/3ibVuXO/tP/MFoWz6KiRK77tSMq6YQBPl7RljPtXPQ/JhxbNuCdi1bNw==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/dmd/-/dmd-7.0.5.tgz", + "integrity": "sha512-L/+QeMhaAbKufDUVxbWMprigu+YB0lhLS76KzMc151q2OFCvgbgSwqPbM8v3Xj0uDRPeGuYo71RCSyHKf+pJjA==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^6.2.2", - "cache-point": "^2.0.0", + "cache-point": "^3.0.0", "common-sequence": "^2.0.2", - "file-set": "^4.0.2", + "file-set": "^5.2.2", "handlebars": "^4.7.8", "marked": "^4.3.0", - "object-get": "^2.1.1", - "reduce-flatten": "^3.0.1", - "reduce-unique": "^2.0.1", - "reduce-without": "^1.0.1", - "test-value": "^3.0.0", - "walk-back": "^5.1.0" + "walk-back": "^5.1.1" }, "engines": { - "node": ">=12" + "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "latest" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } } }, "node_modules/doctrine": { @@ -6411,25 +6326,25 @@ } }, "node_modules/file-set": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/file-set/-/file-set-4.0.2.tgz", - "integrity": "sha512-fuxEgzk4L8waGXaAkd8cMr73Pm0FxOVkn8hztzUW7BAHhOGH90viQNXbiOsnecCWmfInqU6YmAMwxRMdKETceQ==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/file-set/-/file-set-5.2.2.tgz", + "integrity": "sha512-/KgJI1V/QaDK4enOk/E2xMFk1cTWJghEr7UmWiRZfZ6upt6gQCfMn4jJ7aOm64OKurj4TaVnSSgSDqv5ZKYA3A==", "dev": true, + "license": "MIT", "dependencies": { - "array-back": "^5.0.0", - "glob": "^7.1.6" + "array-back": "^6.2.2", + "fast-glob": "^3.3.2" }, "engines": { - "node": ">=10" - } - }, - "node_modules/file-set/node_modules/array-back": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-5.0.0.tgz", - "integrity": "sha512-kgVWwJReZWmVuWOQKEOohXKJX+nD02JAZ54D1RRWlv8L0NebauKAaFxACKzB74RTclt1+WNz5KHaLRDAPZbDEw==", - "dev": true, - "engines": { - "node": ">=10" + "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "latest" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } } }, "node_modules/file-url": { @@ -6451,25 +6366,6 @@ "node": ">=8" } }, - "node_modules/find-replace": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/find-replace/node_modules/array-back": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/find-up": { "version": "5.0.0", "dev": true, @@ -6634,15 +6530,6 @@ "node": ">=14.14" } }, - "node_modules/fs-then-native": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fs-then-native/-/fs-then-native-2.0.0.tgz", - "integrity": "sha512-X712jAOaWXkemQCAmWeg5rOT2i+KOpWz1Z/txk/cW0qlOu2oQ9H61vc5w3X/iyuUEfq/OyaFJ78/cZAQD1/bgA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/fs.realpath": { "version": "1.0.0", "dev": true, @@ -6933,9 +6820,10 @@ } }, "node_modules/googleapis": { - "version": "142.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-142.0.0.tgz", - "integrity": "sha512-LsU1ynez4/KNPwnFMSDI93pBEsETNdQPCrT3kz2qgiNg5H2pW4dKW+1VmENMkZ4u9lMxA89nnXD3nqWBJ0rruQ==", + "version": "144.0.0", + "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-144.0.0.tgz", + "integrity": "sha512-ELcWOXtJxjPX4vsKMh+7V+jZvgPwYMlEhQFiu2sa9Qmt5veX8nwXPksOWGGN6Zk4xCiLygUyaz7xGtcMO+Onxw==", + "license": "Apache-2.0", "dependencies": { "google-auth-library": "^9.0.0", "googleapis-common": "^7.0.0" @@ -8088,57 +7976,167 @@ } }, "node_modules/jsdoc-api": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-8.1.1.tgz", - "integrity": "sha512-yas9E4h8NHp1CTEZiU/DPNAvLoUcip+Hl8Xi1RBYzHqSrgsF+mImAZNtwymrXvgbrgl4bNGBU9syulM0JzFeHQ==", + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-9.3.1.tgz", + "integrity": "sha512-pgZ5nrLnzF8Swxbv5OV8RYAoM/S3Cbf1UHncNYMRCQwU4KlCfg5bz5/VZlg0a1EATSHclIBf9Hm55GkXz0VItA==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^6.2.2", - "cache-point": "^2.0.0", - "collect-all": "^1.0.4", - "file-set": "^4.0.2", - "fs-then-native": "^2.0.0", + "cache-point": "^3.0.0", + "current-module-paths": "^1.1.2", + "file-set": "^5.2.0", "jsdoc": "^4.0.3", "object-to-spawn-args": "^2.0.1", - "temp-path": "^1.0.0", - "walk-back": "^5.1.0" + "walk-back": "^5.1.1" }, "engines": { "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "latest" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } } }, "node_modules/jsdoc-parse": { - "version": "6.2.1", + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-6.2.4.tgz", + "integrity": "sha512-MQA+lCe3ioZd0uGbyB3nDCDZcKgKC7m/Ivt0LgKZdUoOlMJxUWJQ3WI6GeyHp9ouznKaCjlp7CU9sw5k46yZTw==", "dev": true, "license": "MIT", "dependencies": { "array-back": "^6.2.2", + "find-replace": "^5.0.1", "lodash.omit": "^4.5.0", - "reduce-extract": "^1.0.0", - "sort-array": "^4.1.5", - "test-value": "^3.0.0" + "sort-array": "^5.0.0" }, "engines": { "node": ">=12" } }, + "node_modules/jsdoc-parse/node_modules/find-replace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-5.0.1.tgz", + "integrity": "sha512-o5/Y8HrCNRuFF5rdNTkX8Vhv6kTFTV0t1zIoigwlCdbkA9qaapRzxvWPND2VvlFa9LBI05Q1i8ml/saMqkOJUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/jsdoc-to-markdown": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-8.0.3.tgz", - "integrity": "sha512-JGYYd5xygnQt1DIxH+HUI+X/ynL8qWihzIF0n15NSCNtM6MplzawURRcaLI2WkiS2hIjRIgsphCOfM7FkaWiNg==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-9.0.0.tgz", + "integrity": "sha512-wUgad4sac29h3uKbaqV9D49BqHXB0JvoZH3u8Jt6f4hMMcGPtA8RNwV31YJpgsZV5QFMxaT9ben9h52I6rGyUQ==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^6.2.2", - "command-line-tool": "^0.8.0", + "command-line-args": "^6.0.0", + "command-line-usage": "^7.0.3", "config-master": "^3.1.0", - "dmd": "^6.2.3", - "jsdoc-api": "^8.1.1", - "jsdoc-parse": "^6.2.1", - "walk-back": "^5.1.0" + "dmd": "^7.0.5", + "jsdoc-api": "^9.3.1", + "jsdoc-parse": "^6.2.4", + "walk-back": "^5.1.1" }, "bin": { "jsdoc2md": "bin/cli.js" }, + "engines": { + "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "latest" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } + } + }, + "node_modules/jsdoc-to-markdown/node_modules/command-line-args": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-6.0.0.tgz", + "integrity": "sha512-zDdHxHzlCp/gA1gy0VtPK3YL0Aob3ijJdwZ7H3HSl55hh8EziLtRlyj/od8EGRJfX8IjussC/mQkScl2Ms5Suw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "find-replace": "^5.0.1", + "lodash.camelcase": "^4.3.0", + "typical": "^7.1.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jsdoc-to-markdown/node_modules/command-line-usage": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-7.0.3.tgz", + "integrity": "sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "chalk-template": "^0.4.0", + "table-layout": "^4.1.0", + "typical": "^7.1.1" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/jsdoc-to-markdown/node_modules/find-replace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-5.0.1.tgz", + "integrity": "sha512-o5/Y8HrCNRuFF5rdNTkX8Vhv6kTFTV0t1zIoigwlCdbkA9qaapRzxvWPND2VvlFa9LBI05Q1i8ml/saMqkOJUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/jsdoc-to-markdown/node_modules/table-layout": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-4.1.1.tgz", + "integrity": "sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "wordwrapjs": "^5.1.0" + }, + "engines": { + "node": ">=12.17" + } + }, + "node_modules/jsdoc-to-markdown/node_modules/typical": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/typical/-/typical-7.1.1.tgz", + "integrity": "sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.17" + } + }, + "node_modules/jsdoc-to-markdown/node_modules/wordwrapjs": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-5.1.0.tgz", + "integrity": "sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==", + "dev": true, + "license": "MIT", "engines": { "node": ">=12.17" } @@ -8696,11 +8694,6 @@ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "license": "MIT" }, - "node_modules/lodash.padend": { - "version": "4.6.1", - "dev": true, - "license": "MIT" - }, "node_modules/lodash.uniqby": { "version": "4.7.0", "dev": true, @@ -9863,12 +9856,6 @@ "node": ">=10" } }, - "node_modules/mkdirp2": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.5.tgz", - "integrity": "sha512-xOE9xbICroUDmG1ye2h4bZ8WBie9EGmACaco8K8cx6RlkJJrxGIqjGqztAI+NMhexXBcdGbSEzI6N3EJPevxZw==", - "dev": true - }, "node_modules/mnemonist": { "version": "0.38.3", "license": "MIT", @@ -12821,12 +12808,6 @@ "node": ">=0.10.0" } }, - "node_modules/object-get": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/object-get/-/object-get-2.1.1.tgz", - "integrity": "sha512-7n4IpLMzGGcLEMiQKsNR7vCe+N5E9LORFrtNUVy4sO3dj9a3HedZCxEL2T7QuLhcHN1NBuBsMOKaOsAYI9IIvg==", - "dev": true - }, "node_modules/object-inspect": { "version": "1.13.2", "license": "MIT", @@ -13688,95 +13669,6 @@ "node": ">=8.10.0" } }, - "node_modules/reduce-extract": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "test-value": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reduce-extract/node_modules/array-back": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "typical": "^2.6.0" - }, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/reduce-extract/node_modules/test-value": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^1.0.2", - "typical": "^2.4.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reduce-flatten": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-3.0.1.tgz", - "integrity": "sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/reduce-unique": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/reduce-unique/-/reduce-unique-2.0.1.tgz", - "integrity": "sha512-x4jH/8L1eyZGR785WY+ePtyMNhycl1N2XOLxhCbzZFaqF4AXjLzqSxa2UHgJ2ZVR/HHyPOvl1L7xRnW8ye5MdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/reduce-without": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz", - "integrity": "sha512-zQv5y/cf85sxvdrKPlfcRzlDn/OqKFThNimYmsS3flmkioKvkUGn2Qg9cJVoQiEvdxFGLE0MQER/9fZ9sUqdxg==", - "dev": true, - "dependencies": { - "test-value": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reduce-without/node_modules/array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha512-1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw==", - "dev": true, - "dependencies": { - "typical": "^2.6.0" - }, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/reduce-without/node_modules/test-value": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz", - "integrity": "sha512-+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w==", - "dev": true, - "dependencies": { - "array-back": "^1.0.3", - "typical": "^2.6.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/regenerator-runtime": { "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", @@ -14849,31 +14741,35 @@ } }, "node_modules/sort-array": { - "version": "4.1.5", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/sort-array/-/sort-array-5.0.0.tgz", + "integrity": "sha512-Sg9MzajSGprcSrMIxsXyNT0e0JB47RJRfJspC+7co4Z5BdNsNl8FmWI+lXEpyKq+vkMG6pHgAhqyCO+bkDTfFQ==", "dev": true, "license": "MIT", "dependencies": { - "array-back": "^5.0.0", - "typical": "^6.0.1" + "array-back": "^6.2.2", + "typical": "^7.1.1" }, "engines": { - "node": ">=10" - } - }, - "node_modules/sort-array/node_modules/array-back": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" + "node": ">=12.17" + }, + "peerDependencies": { + "@75lb/nature": "^0.1.1" + }, + "peerDependenciesMeta": { + "@75lb/nature": { + "optional": true + } } }, "node_modules/sort-array/node_modules/typical": { - "version": "6.0.1", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/typical/-/typical-7.1.1.tgz", + "integrity": "sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12.17" } }, "node_modules/source-map": { @@ -14962,39 +14858,6 @@ "readable-stream": "^2.0.2" } }, - "node_modules/stream-connect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz", - "integrity": "sha512-68Kl+79cE0RGKemKkhxTSg8+6AGrqBt+cbZAXevg2iJ6Y3zX4JhA/sZeGzLpxW9cXhmqAcE7KnJCisUmIUfnFQ==", - "dev": true, - "dependencies": { - "array-back": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stream-connect/node_modules/array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha512-1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw==", - "dev": true, - "dependencies": { - "typical": "^2.6.0" - }, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/stream-via": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", - "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/string_decoder": { "version": "1.1.1", "license": "MIT", @@ -15241,32 +15104,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/table-layout": { - "version": "0.4.5", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^2.0.0", - "deep-extend": "~0.6.0", - "lodash.padend": "^4.6.1", - "typical": "^2.6.1", - "wordwrapjs": "^3.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/table-layout/node_modules/array-back": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/temp-dir": { "version": "3.0.0", "dev": true, @@ -15275,12 +15112,6 @@ "node": ">=14.16" } }, - "node_modules/temp-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz", - "integrity": "sha512-TvmyH7kC6ZVTYkqCODjJIbgvu0FKiwQpZ4D1aknE7xpcDf/qEOB8KZEK5ef2pfbVoiBhNWs3yx4y+ESMtNYmlg==", - "dev": true - }, "node_modules/tempy": { "version": "3.1.0", "dev": true, @@ -15352,29 +15183,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/test-value": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^2.0.0", - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/test-value/node_modules/array-back": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/text-table": { "version": "0.2.0", "dev": true, @@ -15625,11 +15433,6 @@ "node": ">=14.17" } }, - "node_modules/typical": { - "version": "2.6.1", - "dev": true, - "license": "MIT" - }, "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", @@ -16062,10 +15865,11 @@ } }, "node_modules/walk-back": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-5.1.0.tgz", - "integrity": "sha512-Uhxps5yZcVNbLEAnb+xaEEMdgTXl9qAQDzKYejG2AZ7qPwRQ81lozY9ECDbjLPNWm7YsO1IK5rsP1KoQzXAcGA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-5.1.1.tgz", + "integrity": "sha512-e/FRLDVdZQWFrAzU6Hdvpm7D7m2ina833gIKLptQykRK49mmCYHLHq7UqjPDbxbKLZkTkW1rFqbengdE3sLfdw==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.17" } @@ -16177,26 +15981,6 @@ "dev": true, "license": "MIT" }, - "node_modules/wordwrapjs": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "reduce-flatten": "^1.0.1", - "typical": "^2.6.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/wordwrapjs/node_modules/reduce-flatten": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/workerpool": { "version": "6.5.1", "dev": true, @@ -17938,7 +17722,7 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.2", + "version": "1.0.3", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -19092,7 +18876,7 @@ "@adobe/spacecat-shared-utils": "1.15.1", "@aws-sdk/client-secrets-manager": "3.637.0", "google-auth-library": "9.14.0", - "googleapis": "142.0.0" + "googleapis": "144.0.0" }, "devDependencies": { "chai": "5.1.1", @@ -27435,7 +27219,7 @@ }, "packages/spacecat-shared-rum-api-client": { "name": "@adobe/spacecat-shared-rum-api-client", - "version": "2.8.0", + "version": "2.9.0", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", diff --git a/package.json b/package.json index 1da730ec..f6874935 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.1.5", - "jsdoc-to-markdown": "8.0.3", + "jsdoc-to-markdown": "9.0.0", "lint-staged": "15.2.9", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index 8ca12409..fa1dc38d 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -40,7 +40,7 @@ "@adobe/spacecat-shared-utils": "1.15.1", "@aws-sdk/client-secrets-manager": "3.637.0", "google-auth-library": "9.14.0", - "googleapis": "142.0.0" + "googleapis": "144.0.0" }, "devDependencies": { "chai": "5.1.1", From bb4f07d715e1d44a752aa7cc18d05e297b4e6e7c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 4 Sep 2024 12:00:46 +0000 Subject: [PATCH 15/46] chore(release): 1.2.3 [skip ci] # [@adobe/spacecat-shared-google-client-v1.2.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.2...@adobe/spacecat-shared-google-client-v1.2.3) (2024-09-04) ### Bug Fixes * **deps:** update external major (major) ([#355](https://github.com/adobe/spacecat-shared/issues/355)) ([91399b3](https://github.com/adobe/spacecat-shared/commit/91399b3331849bbf771d108958751003ec9820aa)) --- packages/spacecat-shared-google-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-google-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-google-client/CHANGELOG.md b/packages/spacecat-shared-google-client/CHANGELOG.md index a9d57109..fff9ebdc 100644 --- a/packages/spacecat-shared-google-client/CHANGELOG.md +++ b/packages/spacecat-shared-google-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-google-client-v1.2.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.2...@adobe/spacecat-shared-google-client-v1.2.3) (2024-09-04) + + +### Bug Fixes + +* **deps:** update external major (major) ([#355](https://github.com/adobe/spacecat-shared/issues/355)) ([91399b3](https://github.com/adobe/spacecat-shared/commit/91399b3331849bbf771d108958751003ec9820aa)) + # [@adobe/spacecat-shared-google-client-v1.2.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.1...@adobe/spacecat-shared-google-client-v1.2.2) (2024-08-26) diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index fa1dc38d..71681e0b 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-google-client", - "version": "1.2.2", + "version": "1.2.3", "description": "Shared modules of the Spacecat Services - Google Client", "type": "module", "engines": { From d10be03d35efbff3a89d552551da3e8fdf7e78f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ekrem=20Do=C4=9Fan?= Date: Wed, 4 Sep 2024 22:31:22 +0200 Subject: [PATCH 16/46] docs: update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fca5ae89..d246b419 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Shared modules for Spacecat Services - `spacecat-shared-dynamodb` - DynamoDB client for basic access - `spacecat-shared-http-utils` - HTTP utility functions - `spacecat-shared-utils` - Utility functions +- `spacecat-shared-rum-api-client` - Client for RUM Bundler API: [DOCS](https://github.com/adobe/spacecat-shared/blob/main/packages/spacecat-shared-rum-api-client/README.md) ## Installation ```bash From bb408da627820266b398d12ec2ed13f9d7248c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20J=C3=A4ggi?= <1872195+solaris007@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:40:28 +0200 Subject: [PATCH 17/46] chore: migrate renovate secrets (#358) --- default.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/default.json b/default.json index 107732fd..c889c400 100644 --- a/default.json +++ b/default.json @@ -46,8 +46,5 @@ "updateTypes": ["patch", "minor"], "automerge": true } - ], - "encrypted": { - "npmToken": "wcFMA/xDdHCJBTolAQ//cBnUY2GbbFUjxEW/JyLas0ZYKaS9XCOrP4FA7r43SwRV44ynLM0XIWB+ceGUFrTN8YWfvkbbMVFcxqKYFnjl2l1S/8G9jvvS7bJLZCd1WNk7oVkIXnpb76FE6FQe0giudOiaWo21QVORVEoN/G6du3EOEiCghLMSCMtjg9+0M9Qg9dFJFoUeAHxLhGMjU3kQFO89ljYjaEYA4dvY2Id4pQOx2l0K2T70hSvGhrDGnDyGzOdA3rtz5as+/LgASvOOsTvn9JRndN9G1vnWqHR8xJBibPOqRyJ82IH+pe/+fRex/4Dr1HxlVa9BPhLslAFgUZqTrmwVhZutwURd5sRYNbYiMCBNNjmuVSfIIv+3/y4yEimaQWoh5RVGNxfYddryOSL/FKGeIybuKpskhzTzjtohvu71EjBinyx0qw/O92gZ+UHIZqhOWfmIoGV/pLPjGqkboXYjeQmSauVl8e9by1QXDiGmKe0T16UblNAhU+sQJdneFE4UBflK61jnReAUOsRVFvn9vuVrOuF8zwdXPs8xb7vuE77wUg9M/2N7I+y3tzVtb4uHvoVjtzIlkBe37xkzunKCDbk/Hdgk4lGdlFeTpQYL8Q/rU0itnYHZwfUThgPq1BhP+rWxj6Qkv1DR1983yowG9Zv54bO42oGO6apVAMZQ4q8Bz15BK0TCQFzSdAHRSJq9bALOc/HK5GbEQQ7sZ1JU76jjSFXqeBMZs7A2jrm1yNJAJ7WW+zLgXLjm9s1e1epn4PXerD50ypBKZnKfhmnnBB67IlO4IVfOLIllq3N1dJT2q5zqGdfgMN1qbyCg2JlgVSM8k83wwYtdLXC+mfl+" - } + ] } From c785f392ef741da92261fa62c06532a4f9428615 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 16:10:30 +0000 Subject: [PATCH 18/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.6 (#359) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://redirect.github.com/adobe/spacecat-helix-content-sdk) | [`1.1.5` -> `1.1.6`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.5/1.1.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.5/1.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.5/1.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.6`](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/405db44e07fc9ddb8b113fa32b9f808db1be7bdf...0cbfe9d72113852790eb5fd658711977a970b791) [Compare Source](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/405db44e07fc9ddb8b113fa32b9f808db1be7bdf...0cbfe9d72113852790eb5fd658711977a970b791)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 20 +++++++++---------- .../package.json | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3dc702c5..017f2627 100644 --- a/package-lock.json +++ b/package-lock.json @@ -251,9 +251,9 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.5.tgz", - "integrity": "sha512-r6PDtt1GH7WS5hye3rSw216mnC8HFgee+6T5kE/QCM+IdoUR3wsA8RLIMon3xLAMiLbRRkS7pP4ALtbilW9B6g==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.6.tgz", + "integrity": "sha512-bKRJZhPLEmBc9tkYINh2JwmC+HeLnF21L9rESYwwkNhXKpUNcWX9FpveKMSo2MGgUbKgO6mjrxywcs4H/0KiCg==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -263,7 +263,7 @@ "@azure/msal-node": "2.13.1", "@googleapis/docs": "3.3.0", "@googleapis/drive": "8.14.0", - "@googleapis/sheets": "9.3.0", + "@googleapis/sheets": "9.3.1", "@microsoft/microsoft-graph-client": "3.0.7", "deep-equal": "2.2.3", "github-slugger": "2.0.0", @@ -1949,9 +1949,9 @@ } }, "node_modules/@googleapis/sheets": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/@googleapis/sheets/-/sheets-9.3.0.tgz", - "integrity": "sha512-JfL3TWk//ZlVEWr73rrMuxQyQtAc4/mgvEUXu3o2jvAYzf5euzL25P3Yl12T67v5xJMm36fjdv/snuANGPQfGQ==", + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/@googleapis/sheets/-/sheets-9.3.1.tgz", + "integrity": "sha512-nPgzOiDs/FSFhE+dX2KfkmsmkXM3WfXYP06FoW8cXvHshwxHSI3FbXwe5XJYstDAWXP9YA7AMSvmwnuD4OAl2w==", "license": "Apache-2.0", "dependencies": { "googleapis-common": "^7.0.0" @@ -16268,7 +16268,7 @@ }, "packages/spacecat-shared-ahrefs-client": { "name": "@adobe/spacecat-shared-ahrefs-client", - "version": "1.5.1", + "version": "1.5.2", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -17726,7 +17726,7 @@ "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.5", + "@adobe/spacecat-helix-content-sdk": "1.1.6", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { @@ -18867,7 +18867,7 @@ }, "packages/spacecat-shared-google-client": { "name": "@adobe/spacecat-shared-google-client", - "version": "1.2.2", + "version": "1.2.3", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 1d397c9d..39e48fc3 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.5", + "@adobe/spacecat-helix-content-sdk": "1.1.6", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From 336518c11d908c8acf2f570aa20a98402b83fc82 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 16:12:58 +0000 Subject: [PATCH 19/46] chore(release): 1.0.4 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.3...@adobe/spacecat-shared-content-client-v1.0.4) (2024-09-07) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.6 ([#359](https://github.com/adobe/spacecat-shared/issues/359)) ([c785f39](https://github.com/adobe/spacecat-shared/commit/c785f392ef741da92261fa62c06532a4f9428615)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index 4c3e7e43..ac0fe28c 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.3...@adobe/spacecat-shared-content-client-v1.0.4) (2024-09-07) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.6 ([#359](https://github.com/adobe/spacecat-shared/issues/359)) ([c785f39](https://github.com/adobe/spacecat-shared/commit/c785f392ef741da92261fa62c06532a4f9428615)) + # [@adobe/spacecat-shared-content-client-v1.0.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.2...@adobe/spacecat-shared-content-client-v1.0.3) (2024-09-02) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 39e48fc3..1a960be5 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.3", + "version": "1.0.4", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From 315f6e42798d78d33f435e67f70e9a35d05ecf2b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 20:15:31 +0000 Subject: [PATCH 20/46] fix(deps): update external fixes (#360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@aws-sdk/client-dynamodb](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb)) | [`3.637.0` -> `3.645.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.637.0/3.645.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-s3](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | [`3.637.0` -> `3.645.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.637.0/3.645.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-secrets-manager](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-secrets-manager) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager)) | [`3.637.0` -> `3.645.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.637.0/3.645.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-secrets-manager/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-secrets-manager/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-secrets-manager/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-secrets-manager/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-sqs](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sqs) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs)) | [`3.637.0` -> `3.645.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sqs/3.637.0/3.645.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sqs/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sqs/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sqs/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sqs/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/lib-dynamodb](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/lib/lib-dynamodb) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb)) | [`3.637.0` -> `3.645.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2flib-dynamodb/3.637.0/3.645.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2flib-dynamodb/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2flib-dynamodb/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2flib-dynamodb/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2flib-dynamodb/3.637.0/3.645.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@slack/web-api](https://slack.dev/node-slack-sdk/web-api) ([source](https://redirect.github.com/slackapi/node-slack-sdk)) | [`7.3.4` -> `7.4.0`](https://renovatebot.com/diffs/npm/@slack%2fweb-api/7.3.4/7.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@slack%2fweb-api/7.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@slack%2fweb-api/7.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@slack%2fweb-api/7.3.4/7.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@slack%2fweb-api/7.3.4/7.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.3.0` -> `8.4.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.3.0/8.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/8.3.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/8.3.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.3.0` -> `8.4.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.3.0/8.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/8.3.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.3.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [dynamo-db-local](https://redirect.github.com/chrisguttandin/dynamo-db-local) | [`9.2.0` -> `9.2.1`](https://renovatebot.com/diffs/npm/dynamo-db-local/9.2.0/9.2.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/dynamo-db-local/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/dynamo-db-local/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/dynamo-db-local/9.2.0/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/dynamo-db-local/9.2.0/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [google-auth-library](https://redirect.github.com/googleapis/google-auth-library-nodejs) | [`9.14.0` -> `9.14.1`](https://renovatebot.com/diffs/npm/google-auth-library/9.14.0/9.14.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/google-auth-library/9.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/google-auth-library/9.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/google-auth-library/9.14.0/9.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/google-auth-library/9.14.0/9.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [lint-staged](https://redirect.github.com/lint-staged/lint-staged) | [`15.2.9` -> `15.2.10`](https://renovatebot.com/diffs/npm/lint-staged/15.2.9/15.2.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.2.9/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.2.9/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
aws/aws-sdk-js-v3 (@​aws-sdk/client-dynamodb) ### [`v3.645.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36450-2024-09-04) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.637.0...v3.645.0) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://redirect.github.com/aws-sdk/client-dynamodb)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3) ### [`v3.645.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36450-2024-09-04) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.637.0...v3.645.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3)
aws/aws-sdk-js-v3 (@​aws-sdk/client-secrets-manager) ### [`v3.645.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36450-2024-09-04) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.637.0...v3.645.0) **Note:** Version bump only for package [@​aws-sdk/client-secrets-manager](https://redirect.github.com/aws-sdk/client-secrets-manager)
aws/aws-sdk-js-v3 (@​aws-sdk/client-sqs) ### [`v3.645.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36450-2024-09-04) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.637.0...v3.645.0) **Note:** Version bump only for package [@​aws-sdk/client-sqs](https://redirect.github.com/aws-sdk/client-sqs)
aws/aws-sdk-js-v3 (@​aws-sdk/lib-dynamodb) ### [`v3.645.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36450-2024-09-04) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.637.0...v3.645.0) **Note:** Version bump only for package [@​aws-sdk/lib-dynamodb](https://redirect.github.com/aws-sdk/lib-dynamodb)
slackapi/node-slack-sdk (@​slack/web-api) ### [`v7.4.0`](https://redirect.github.com/slackapi/node-slack-sdk/releases/tag/%40slack/web-api%407.4.0) [Compare Source](https://redirect.github.com/slackapi/node-slack-sdk/compare/@slack/web-api@7.3.4...@slack/web-api@7.4.0) ### What's Changed We've released two new APIs for use via `@slack/web-api`: - https://api.slack.com/methods/conversations.requestSharedInvite.approve - https://api.slack.com/methods/conversations.requestSharedInvite.deny ### Full Changelog [`a3a06ec`](https://redirect.github.com/slackapi/node-slack-sdk/commit/a3a06ecb) web-api(feat): add support for `conversations.requestShared` `approve` , `deny` APIs ([#​1843](https://redirect.github.com/slackapi/node-slack-sdk/issues/1843))
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v8.4.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#840-2024-09-02) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.3.0...v8.4.0) This was a version bump only for eslint-plugin to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v8.4.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#840-2024-09-02) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.3.0...v8.4.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
chrisguttandin/dynamo-db-local (dynamo-db-local) ### [`v9.2.1`](https://redirect.github.com/chrisguttandin/dynamo-db-local/releases/tag/v9.2.1) [Compare Source](https://redirect.github.com/chrisguttandin/dynamo-db-local/compare/v9.2.0...v9.2.1) [all commits](https://redirect.github.com/chrisguttandin/dynamo-db-local/compare/v9.2.0...v9.2.1)
googleapis/google-auth-library-nodejs (google-auth-library) ### [`v9.14.1`](https://redirect.github.com/googleapis/google-auth-library-nodejs/blob/HEAD/CHANGELOG.md#9141-2024-08-30) [Compare Source](https://redirect.github.com/googleapis/google-auth-library-nodejs/compare/v9.14.0...v9.14.1) ##### Performance Improvements - **GoogleAuth:** Improve Client Creation From Files/Streams Perf ([#​1856](https://redirect.github.com/googleapis/google-auth-library-nodejs/issues/1856)) ([85d9d6f](https://redirect.github.com/googleapis/google-auth-library-nodejs/commit/85d9d6fe312f5ed68db22a28b84b6c8f257f9ec9))
lint-staged/lint-staged (lint-staged) ### [`v15.2.10`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#15210) [Compare Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.2.9...v15.2.10) ##### Patch Changes - [#​1471](https://redirect.github.com/lint-staged/lint-staged/pull/1471) [`e3f283b`](https://redirect.github.com/lint-staged/lint-staged/commit/e3f283b250868b7c15ceb54d2a51b2e5fb3a18a9) Thanks [@​iiroj](https://redirect.github.com/iiroj)! - Update minor dependencies, including `micromatch@~4.0.8`.
--- ### Configuration πŸ“… **Schedule**: Branch creation - "after 2pm on Saturday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 329 +++++++++--------- package.json | 6 +- .../spacecat-shared-data-access/package.json | 6 +- packages/spacecat-shared-dynamo/package.json | 4 +- .../package.json | 4 +- .../spacecat-shared-slack-client/package.json | 2 +- packages/spacecat-shared-utils/package.json | 4 +- 7 files changed, 186 insertions(+), 169 deletions(-) diff --git a/package-lock.json b/package-lock.json index 017f2627..b9746f81 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,14 +16,14 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.3.0", - "@typescript-eslint/parser": "8.3.0", + "@typescript-eslint/eslint-plugin": "8.4.0", + "@typescript-eslint/parser": "8.4.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.1.5", "jsdoc-to-markdown": "9.0.0", - "lint-staged": "15.2.9", + "lint-staged": "15.2.10", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", "nock": "13.5.5", @@ -525,25 +525,25 @@ } }, "node_modules/@aws-sdk/client-dynamodb": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.637.0.tgz", - "integrity": "sha512-zUneT0yLgJjC69yry2fgYVWkv68OeV3amWaDXHirA8yJgygyc7tBLo+sQmtHczmKt8dBD9bU3OWpbAbtpF9Esw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.645.0.tgz", + "integrity": "sha512-y7UHtIIAWQOzJXNh3KLU91ILz1Ivb2/FuEXnhdJhRurbNI9AwKIVZQlXGq31O8EHO6MU64ptxooNa0WVTezoxg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", - "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/client-sso-oidc": "3.645.0", + "@aws-sdk/client-sts": "3.645.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-endpoint-discovery": "3.620.0", "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -593,18 +593,18 @@ } }, "node_modules/@aws-sdk/client-s3": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.637.0.tgz", - "integrity": "sha512-y6UC94fsMvhKbf0dzfnjVP1HePeGjplfcYfilZU1COIJLyTkMcUv4XcT4I407CGIrvgEafONHkiC09ygqUauNA==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.645.0.tgz", + "integrity": "sha512-RjT/mfNv4yr1uv/+aEXgSIxC5EB+yHPSU7hH0KZOZrvZEFASLl0i4FeoHzbMEOH5KdKGAi0uu3zRP3D1y45sKg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha1-browser": "5.2.0", "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", - "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/client-sso-oidc": "3.645.0", + "@aws-sdk/client-sts": "3.645.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-bucket-endpoint": "3.620.0", "@aws-sdk/middleware-expect-continue": "3.620.0", "@aws-sdk/middleware-flexible-checksums": "3.620.0", @@ -614,11 +614,11 @@ "@aws-sdk/middleware-recursion-detection": "3.620.0", "@aws-sdk/middleware-sdk-s3": "3.635.0", "@aws-sdk/middleware-ssec": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/signature-v4-multi-region": "3.635.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@aws-sdk/xml-builder": "3.609.0", @@ -662,24 +662,24 @@ } }, "node_modules/@aws-sdk/client-secrets-manager": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.637.0.tgz", - "integrity": "sha512-4AEV+4yhaFYlnD90MbtOouqTyrPVmD8OeGotsjtWxgnVHk55Vd0/dIWVGjic0YCxH3SNdWqJJ9G8Vd93fWymVA==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.645.0.tgz", + "integrity": "sha512-bM0bgwVjrzpmbcsY8sWYW5JnSUwQMcM7+hrVA6bWXNkMAScwJit6fq0nmXBbHRcPDaRI5WPt8t6C9q1DIGW6eg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", - "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/client-sso-oidc": "3.645.0", + "@aws-sdk/client-sts": "3.645.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -728,25 +728,25 @@ } }, "node_modules/@aws-sdk/client-sqs": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.637.0.tgz", - "integrity": "sha512-0slT2OCa8uOottHFjIBD9EuTotu3Qdzp7Z7PqtkSqQdbXxC8CFsDLNfZVqpU8o/+mf79I2fJK21pEPhBnm654g==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.645.0.tgz", + "integrity": "sha512-raheGXdneYgKC/iTq5n4O+ZvHMK3bvrxj5Yx3QFx/T01KNXtrc1csx5Y0BhojDPvPRSeGz1VfqWr51r7uRb6Yg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", - "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/client-sso-oidc": "3.645.0", + "@aws-sdk/client-sts": "3.645.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", "@aws-sdk/middleware-sdk-sqs": "3.635.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -782,9 +782,9 @@ } }, "node_modules/@aws-sdk/client-sso": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.637.0.tgz", - "integrity": "sha512-+KjLvgX5yJYROWo3TQuwBJlHCY0zz9PsLuEolmXQn0BVK1L/m9GteZHtd+rEdAoDGBpE0Xqjy1oz5+SmtsaRUw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.645.0.tgz", + "integrity": "sha512-2rc8TjnsNddOeKQ/pfNN7deNvGLXAeKeYtHtGDAiM2qfTKxd2sNcAsZ+JCDLyshuD4xLM5fpUyR0X8As9EAouQ==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", @@ -793,10 +793,10 @@ "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -831,22 +831,22 @@ } }, "node_modules/@aws-sdk/client-sso-oidc": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.637.0.tgz", - "integrity": "sha512-27bHALN6Qb6m6KZmPvRieJ/QRlj1lyac/GT2Rn5kJpre8Mpp+yxrtvp3h9PjNBty4lCeFEENfY4dGNSozBuBcw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.645.0.tgz", + "integrity": "sha512-X9ULtdk3cO+1ysurEkJ1MSnu6U00qodXx+IVual+1jXX4RYY1WmQmfo7uDKf6FFkz7wW1DAqU+GJIBNQr0YH8A==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -880,27 +880,27 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.637.0" + "@aws-sdk/client-sts": "^3.645.0" } }, "node_modules/@aws-sdk/client-sts": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.637.0.tgz", - "integrity": "sha512-xUi7x4qDubtA8QREtlblPuAcn91GS/09YVEY/RwU7xCY0aqGuFwgszAANlha4OUIqva8oVj2WO4gJuG+iaSnhw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.645.0.tgz", + "integrity": "sha512-6azXYtvtnAsPf2ShN9vKynIYVcJOpo6IoVmoMAVgNaBJyllP+s/RORzranYZzckqfmrudSxtct4rVapjLWuAMg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", + "@aws-sdk/client-sso-oidc": "3.645.0", "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/credential-provider-node": "3.645.0", "@aws-sdk/middleware-host-header": "3.620.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/middleware-user-agent": "3.645.0", "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@aws-sdk/util-user-agent-browser": "3.609.0", "@aws-sdk/util-user-agent-node": "3.614.0", "@smithy/config-resolver": "^3.0.5", @@ -1013,15 +1013,15 @@ } }, "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.637.0.tgz", - "integrity": "sha512-h+PFCWfZ0Q3Dx84SppET/TFpcQHmxFW8/oV9ArEvMilw4EBN+IlxgbL0CnHwjHW64szcmrM0mbebjEfHf4FXmw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.645.0.tgz", + "integrity": "sha512-LlZW0qwUwNlTaAIDCNpLbPsyXvS42pRIwF92fgtCQedmdnpN3XRUC6hcwSYI7Xru3GGKp3RnceOvsdOaRJORsw==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/credential-provider-env": "3.620.1", "@aws-sdk/credential-provider-http": "3.635.0", "@aws-sdk/credential-provider-process": "3.620.1", - "@aws-sdk/credential-provider-sso": "3.637.0", + "@aws-sdk/credential-provider-sso": "3.645.0", "@aws-sdk/credential-provider-web-identity": "3.621.0", "@aws-sdk/types": "3.609.0", "@smithy/credential-provider-imds": "^3.2.0", @@ -1034,20 +1034,20 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.637.0" + "@aws-sdk/client-sts": "^3.645.0" } }, "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.637.0.tgz", - "integrity": "sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.645.0.tgz", + "integrity": "sha512-eGFFuNvLeXjCJf5OCIuSEflxUowmK+bCS+lK4M8ofsYOEGAivdx7C0UPxNjHpvM8wKd8vpMl5phTeS9BWX5jMQ==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/credential-provider-env": "3.620.1", "@aws-sdk/credential-provider-http": "3.635.0", - "@aws-sdk/credential-provider-ini": "3.637.0", + "@aws-sdk/credential-provider-ini": "3.645.0", "@aws-sdk/credential-provider-process": "3.620.1", - "@aws-sdk/credential-provider-sso": "3.637.0", + "@aws-sdk/credential-provider-sso": "3.645.0", "@aws-sdk/credential-provider-web-identity": "3.621.0", "@aws-sdk/types": "3.609.0", "@smithy/credential-provider-imds": "^3.2.0", @@ -1077,12 +1077,12 @@ } }, "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.637.0.tgz", - "integrity": "sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.645.0.tgz", + "integrity": "sha512-d6XuChAl5NCsCrUexc6AFb4efPmb9+66iwPylKG+iMTMYgO1ackfy1Q2/f35jdn0jolkPkzKsVyfzsEVoID6ew==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/client-sso": "3.637.0", + "@aws-sdk/client-sso": "3.645.0", "@aws-sdk/token-providers": "3.614.0", "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", @@ -1124,12 +1124,12 @@ } }, "node_modules/@aws-sdk/lib-dynamodb": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.637.0.tgz", - "integrity": "sha512-jyIZBagxcwrzWdgDZdlqXKWz1uKPNGxFuUODwhRj3337EZz+yVo1qSfs6s9TKO7+nta+kPLg2mo064KXP5XHJw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.645.0.tgz", + "integrity": "sha512-VzgXayTZFZjnnES49D3kbAz1DiMzvmGxo89ujm6/tts6DTOTaORkVWkxvVSiv8TDIAnshVcZhcnde6EypWylUQ==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/util-dynamodb": "3.637.0", + "@aws-sdk/util-dynamodb": "3.645.0", "@smithy/core": "^2.4.0", "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", @@ -1139,7 +1139,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.637.0" + "@aws-sdk/client-dynamodb": "^3.645.0" } }, "node_modules/@aws-sdk/middleware-bucket-endpoint": { @@ -1462,13 +1462,13 @@ } }, "node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.637.0.tgz", - "integrity": "sha512-EYo0NE9/da/OY8STDsK2LvM4kNa79DBsf4YVtaG4P5pZ615IeFsD8xOHZeuJmUrSMlVQ8ywPRX7WMucUybsKug==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.645.0.tgz", + "integrity": "sha512-NpTAtqWK+49lRuxfz7st9for80r4NriCMK0RfdJSoPFVntjsSQiQ7+2nW2XL05uVY633e9DvCAw8YatX3zd1mw==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-endpoints": "3.645.0", "@smithy/protocol-http": "^4.1.0", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -1550,9 +1550,9 @@ } }, "node_modules/@aws-sdk/util-dynamodb": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.637.0.tgz", - "integrity": "sha512-C2q8HcGRiahtf46Mhaqydh1gofeksj7m74PJXHYKW+pKBMLPlpou1+w2o5QSpVEp0dSBtKw30eRVQzxhqg/ACA==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.645.0.tgz", + "integrity": "sha512-RiZyA1fx1/Crohr5ljK0ax73vtdJzOfSvdvnDB55wE/aP885srzoqA/dWaXvQm1mPGP6ypW2m8sS7mbzZ9bzSg==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" @@ -1561,13 +1561,13 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.637.0" + "@aws-sdk/client-dynamodb": "^3.645.0" } }, "node_modules/@aws-sdk/util-endpoints": { - "version": "3.637.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.637.0.tgz", - "integrity": "sha512-pAqOKUHeVWHEXXDIp/qoMk/6jyxIb6GGjnK1/f8dKHtKIEs4tKsnnL563gceEvdad53OPXIt86uoevCcCzmBnw==", + "version": "3.645.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.645.0.tgz", + "integrity": "sha512-Oe+xaU4ic4PB1k3pb5VTC1/MWES13IlgpaQw01bVHGfwP6Yv6zZOxizRzca2Y3E+AyR+nKD7vXtHRY+w3bi4bg==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.609.0", @@ -2946,9 +2946,9 @@ } }, "node_modules/@slack/web-api": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@slack/web-api/-/web-api-7.3.4.tgz", - "integrity": "sha512-KwLK8dlz2lhr3NO7kbYQ7zgPTXPKrhq1JfQc0etJ0K8LSJhYYnf8GbVznvgDT/Uz1/pBXfFQnoXjrQIOKAdSuw==", + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@slack/web-api/-/web-api-7.4.0.tgz", + "integrity": "sha512-U+0pui9VcddRt3yTSkLAArVB6G8EyOb0g+/vL1E6u8k46IYc1H4UKDuULF734A2ynVyxYKHIXK8OHilX6YhwjQ==", "license": "MIT", "dependencies": { "@slack/logger": "^4.0.0", @@ -3696,17 +3696,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.3.0.tgz", - "integrity": "sha512-FLAIn63G5KH+adZosDYiutqkOkYEx0nvcwNNfJAf+c7Ae/H35qWwTYvPZUKFj5AS+WfHG/WJJfWnDnyNUlp8UA==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.4.0.tgz", + "integrity": "sha512-rg8LGdv7ri3oAlenMACk9e+AR4wUV0yrrG+XKsGKOK0EVgeEDqurkXMPILG2836fW4ibokTB5v4b6Z9+GYQDEw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.3.0", - "@typescript-eslint/type-utils": "8.3.0", - "@typescript-eslint/utils": "8.3.0", - "@typescript-eslint/visitor-keys": "8.3.0", + "@typescript-eslint/scope-manager": "8.4.0", + "@typescript-eslint/type-utils": "8.4.0", + "@typescript-eslint/utils": "8.4.0", + "@typescript-eslint/visitor-keys": "8.4.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -3730,16 +3730,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.3.0.tgz", - "integrity": "sha512-h53RhVyLu6AtpUzVCYLPhZGL5jzTD9fZL+SYf/+hYOx2bDkyQXztXSc4tbvKYHzfMXExMLiL9CWqJmVz6+78IQ==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.4.0.tgz", + "integrity": "sha512-NHgWmKSgJk5K9N16GIhQ4jSobBoJwrmURaLErad0qlLjrpP5bECYg+wxVTGlGZmJbU03jj/dfnb6V9bw+5icsA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "8.3.0", - "@typescript-eslint/types": "8.3.0", - "@typescript-eslint/typescript-estree": "8.3.0", - "@typescript-eslint/visitor-keys": "8.3.0", + "@typescript-eslint/scope-manager": "8.4.0", + "@typescript-eslint/types": "8.4.0", + "@typescript-eslint/typescript-estree": "8.4.0", + "@typescript-eslint/visitor-keys": "8.4.0", "debug": "^4.3.4" }, "engines": { @@ -3759,14 +3759,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.3.0.tgz", - "integrity": "sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.4.0.tgz", + "integrity": "sha512-n2jFxLeY0JmKfUqy3P70rs6vdoPjHK8P/w+zJcV3fk0b0BwRXC/zxRTEnAsgYT7MwdQDt/ZEbtdzdVC+hcpF0A==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.3.0", - "@typescript-eslint/visitor-keys": "8.3.0" + "@typescript-eslint/types": "8.4.0", + "@typescript-eslint/visitor-keys": "8.4.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3777,14 +3777,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.3.0.tgz", - "integrity": "sha512-wrV6qh//nLbfXZQoj32EXKmwHf4b7L+xXLrP3FZ0GOUU72gSvLjeWUl5J5Ue5IwRxIV1TfF73j/eaBapxx99Lg==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.4.0.tgz", + "integrity": "sha512-pu2PAmNrl9KX6TtirVOrbLPLwDmASpZhK/XU7WvoKoCUkdtq9zF7qQ7gna0GBZFN0hci0vHaSusiL2WpsQk37A==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.3.0", - "@typescript-eslint/utils": "8.3.0", + "@typescript-eslint/typescript-estree": "8.4.0", + "@typescript-eslint/utils": "8.4.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -3802,9 +3802,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.3.0.tgz", - "integrity": "sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.4.0.tgz", + "integrity": "sha512-T1RB3KQdskh9t3v/qv7niK6P8yvn7ja1mS7QK7XfRVL6wtZ8/mFs/FHf4fKvTA0rKnqnYxl/uHFNbnEt0phgbw==", "dev": true, "license": "MIT", "engines": { @@ -3816,14 +3816,14 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.3.0.tgz", - "integrity": "sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.4.0.tgz", + "integrity": "sha512-kJ2OIP4dQw5gdI4uXsaxUZHRwWAGpREJ9Zq6D5L0BweyOrWsL6Sz0YcAZGWhvKnH7fm1J5YFE1JrQL0c9dd53A==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "8.3.0", - "@typescript-eslint/visitor-keys": "8.3.0", + "@typescript-eslint/types": "8.4.0", + "@typescript-eslint/visitor-keys": "8.4.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", @@ -3845,16 +3845,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.3.0.tgz", - "integrity": "sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.4.0.tgz", + "integrity": "sha512-swULW8n1IKLjRAgciCkTCafyTHHfwVQFt8DovmaF69sKbOxTSFMmIZaSHjqO9i/RV0wIblaawhzvtva8Nmm7lQ==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.3.0", - "@typescript-eslint/types": "8.3.0", - "@typescript-eslint/typescript-estree": "8.3.0" + "@typescript-eslint/scope-manager": "8.4.0", + "@typescript-eslint/types": "8.4.0", + "@typescript-eslint/typescript-estree": "8.4.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3868,13 +3868,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.3.0.tgz", - "integrity": "sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.4.0.tgz", + "integrity": "sha512-zTQD6WLNTre1hj5wp09nBIDiOc2U5r/qmzo7wxPn4ZgAjHql09EofqhF9WF+fZHzL5aCyaIpPcT2hyxl73kr9A==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.3.0", + "@typescript-eslint/types": "8.4.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -5443,17 +5443,25 @@ } }, "node_modules/dynamo-db-local": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/dynamo-db-local/-/dynamo-db-local-9.2.0.tgz", - "integrity": "sha512-vHMIQrHBhnlcSs5KP+EeDBxBvB5OdkASvGclhUlWOzstcqtNQ7fQfQBYLvPw4jrPc9Vb3JGOzJP2hVHh9UKEnQ==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/dynamo-db-local/-/dynamo-db-local-9.2.1.tgz", + "integrity": "sha512-n88Xzwned4xr96FVetzRSgD4BzhK5PPJVYebFF0w/4ZkLclLVHOl/ZpjNbLlxn5pZhB91iOyzNUAei9fhy88LA==", "dev": true, + "license": "MIT", "dependencies": { - "tslib": "^2.6.3" + "tslib": "^2.7.0" }, "engines": { "node": ">=18.2.0" } }, + "node_modules/dynamo-db-local/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true, + "license": "0BSD" + }, "node_modules/eastasianwidth": { "version": "0.2.0", "dev": true, @@ -6803,9 +6811,9 @@ } }, "node_modules/google-auth-library": { - "version": "9.14.0", - "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.14.0.tgz", - "integrity": "sha512-Y/eq+RWVs55Io/anIsm24sDS8X79Tq948zVLGaa7+KlJYYqaGwp1YI37w48nzrNi12RgnzMrQD4NzdmCowT90g==", + "version": "9.14.1", + "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.14.1.tgz", + "integrity": "sha512-Rj+PMjoNFGFTmtItH7gHfbHpGVSb3vmnGK3nwNBqxQF9NoBpttSZI/rc0WiM63ma2uGDQtYEkMHkK9U6937NiA==", "license": "Apache-2.0", "dependencies": { "base64-js": "^1.3.0", @@ -8350,9 +8358,9 @@ } }, "node_modules/lint-staged": { - "version": "15.2.9", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.9.tgz", - "integrity": "sha512-BZAt8Lk3sEnxw7tfxM7jeZlPRuT4M68O0/CwZhhaw6eeWu0Lz5eERE3m386InivXB64fp/mDID452h48tvKlRQ==", + "version": "15.2.10", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.10.tgz", + "integrity": "sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==", "dev": true, "license": "MIT", "dependencies": { @@ -8362,7 +8370,7 @@ "execa": "~8.0.1", "lilconfig": "~3.1.2", "listr2": "~8.2.4", - "micromatch": "~4.0.7", + "micromatch": "~4.0.8", "pidtree": "~0.6.0", "string-argv": "~0.3.2", "yaml": "~2.5.0" @@ -8391,13 +8399,13 @@ } }, "node_modules/lint-staged/node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -8481,6 +8489,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/lint-staged/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, "node_modules/lint-staged/node_modules/npm-run-path": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", @@ -9752,7 +9767,9 @@ "license": "MIT" }, "node_modules/micromatch": { - "version": "4.0.7", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { @@ -17722,7 +17739,7 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.3", + "version": "1.0.4", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -17765,8 +17782,8 @@ "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.637.0", - "@aws-sdk/lib-dynamodb": "3.637.0", + "@aws-sdk/client-dynamodb": "3.645.0", + "@aws-sdk/lib-dynamodb": "3.645.0", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" @@ -17774,7 +17791,7 @@ "devDependencies": { "chai": "5.1.1", "chai-as-promised": "8.0.0", - "dynamo-db-local": "9.2.0", + "dynamo-db-local": "9.2.1", "sinon": "18.0.0", "sinon-chai": "4.0.0" }, @@ -18834,8 +18851,8 @@ "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-utils": "1.1.0", - "@aws-sdk/client-dynamodb": "3.637.0", - "@aws-sdk/lib-dynamodb": "3.637.0" + "@aws-sdk/client-dynamodb": "3.645.0", + "@aws-sdk/lib-dynamodb": "3.645.0" }, "devDependencies": { "chai": "5.1.1" @@ -18874,8 +18891,8 @@ "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-http-utils": "1.1.4", "@adobe/spacecat-shared-utils": "1.15.1", - "@aws-sdk/client-secrets-manager": "3.637.0", - "google-auth-library": "9.14.0", + "@aws-sdk/client-secrets-manager": "3.645.0", + "google-auth-library": "9.14.1", "googleapis": "144.0.0" }, "devDependencies": { @@ -27254,7 +27271,7 @@ "dependencies": { "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-utils": "1.7.2", - "@slack/web-api": "7.3.4" + "@slack/web-api": "7.4.0" }, "devDependencies": { "chai": "5.1.1", @@ -27317,8 +27334,8 @@ "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.637.0", - "@aws-sdk/client-sqs": "3.637.0", + "@aws-sdk/client-s3": "3.645.0", + "@aws-sdk/client-sqs": "3.645.0", "@json2csv/plainjs": "7.0.6" }, "devDependencies": { diff --git a/package.json b/package.json index f6874935..a3b7207b 100644 --- a/package.json +++ b/package.json @@ -36,14 +36,14 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.3.0", - "@typescript-eslint/parser": "8.3.0", + "@typescript-eslint/eslint-plugin": "8.4.0", + "@typescript-eslint/parser": "8.4.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.1.5", "jsdoc-to-markdown": "9.0.0", - "lint-staged": "15.2.9", + "lint-staged": "15.2.10", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", "nock": "13.5.5", diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index 6f12524b..f10c8a7c 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -35,8 +35,8 @@ "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.637.0", - "@aws-sdk/lib-dynamodb": "3.637.0", + "@aws-sdk/client-dynamodb": "3.645.0", + "@aws-sdk/lib-dynamodb": "3.645.0", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" @@ -44,7 +44,7 @@ "devDependencies": { "chai": "5.1.1", "chai-as-promised": "8.0.0", - "dynamo-db-local": "9.2.0", + "dynamo-db-local": "9.2.1", "sinon": "18.0.0", "sinon-chai": "4.0.0" } diff --git a/packages/spacecat-shared-dynamo/package.json b/packages/spacecat-shared-dynamo/package.json index 18aa2887..284f216a 100644 --- a/packages/spacecat-shared-dynamo/package.json +++ b/packages/spacecat-shared-dynamo/package.json @@ -33,8 +33,8 @@ "access": "public" }, "dependencies": { - "@aws-sdk/client-dynamodb": "3.637.0", - "@aws-sdk/lib-dynamodb": "3.637.0", + "@aws-sdk/client-dynamodb": "3.645.0", + "@aws-sdk/lib-dynamodb": "3.645.0", "@adobe/spacecat-shared-utils": "1.1.0" }, "devDependencies": { diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index 71681e0b..fcd089cd 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -38,8 +38,8 @@ "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-http-utils": "1.1.4", "@adobe/spacecat-shared-utils": "1.15.1", - "@aws-sdk/client-secrets-manager": "3.637.0", - "google-auth-library": "9.14.0", + "@aws-sdk/client-secrets-manager": "3.645.0", + "google-auth-library": "9.14.1", "googleapis": "144.0.0" }, "devDependencies": { diff --git a/packages/spacecat-shared-slack-client/package.json b/packages/spacecat-shared-slack-client/package.json index 74ccd903..9d0bc0e7 100644 --- a/packages/spacecat-shared-slack-client/package.json +++ b/packages/spacecat-shared-slack-client/package.json @@ -35,7 +35,7 @@ "dependencies": { "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-utils": "1.7.2", - "@slack/web-api": "7.3.4" + "@slack/web-api": "7.4.0" }, "devDependencies": { "chai": "5.1.1", diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index 05740167..493a6f3d 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -45,8 +45,8 @@ }, "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.637.0", - "@aws-sdk/client-sqs": "3.637.0", + "@aws-sdk/client-s3": "3.645.0", + "@aws-sdk/client-sqs": "3.645.0", "@json2csv/plainjs": "7.0.6" } } From a07d6186f228eb51c7a23ec71f2c245e13aad76a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 20:18:08 +0000 Subject: [PATCH 21/46] chore(release): 1.43.4 [skip ci] # [@adobe/spacecat-shared-data-access-v1.43.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.3...@adobe/spacecat-shared-data-access-v1.43.4) (2024-09-07) ### Bug Fixes * **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) --- packages/spacecat-shared-data-access/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-data-access/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-data-access/CHANGELOG.md b/packages/spacecat-shared-data-access/CHANGELOG.md index 4d09a016..1a8368b2 100644 --- a/packages/spacecat-shared-data-access/CHANGELOG.md +++ b/packages/spacecat-shared-data-access/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-data-access-v1.43.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.3...@adobe/spacecat-shared-data-access-v1.43.4) (2024-09-07) + + +### Bug Fixes + +* **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) + # [@adobe/spacecat-shared-data-access-v1.43.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.2...@adobe/spacecat-shared-data-access-v1.43.3) (2024-08-24) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index f10c8a7c..60267031 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-data-access", - "version": "1.43.3", + "version": "1.43.4", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "engines": { From 53efae285b502c0b5de0f824711d45b20aef6da8 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 20:18:26 +0000 Subject: [PATCH 22/46] chore(release): 1.3.35 [skip ci] # [@adobe/spacecat-shared-dynamo-v1.3.35](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.34...@adobe/spacecat-shared-dynamo-v1.3.35) (2024-09-07) ### Bug Fixes * **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) --- packages/spacecat-shared-dynamo/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-dynamo/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-dynamo/CHANGELOG.md b/packages/spacecat-shared-dynamo/CHANGELOG.md index cc8f1009..f09a1adf 100644 --- a/packages/spacecat-shared-dynamo/CHANGELOG.md +++ b/packages/spacecat-shared-dynamo/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-dynamo-v1.3.35](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.34...@adobe/spacecat-shared-dynamo-v1.3.35) (2024-09-07) + + +### Bug Fixes + +* **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) + # [@adobe/spacecat-shared-dynamo-v1.3.34](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.33...@adobe/spacecat-shared-dynamo-v1.3.34) (2024-08-24) diff --git a/packages/spacecat-shared-dynamo/package.json b/packages/spacecat-shared-dynamo/package.json index 284f216a..6d0e4f58 100644 --- a/packages/spacecat-shared-dynamo/package.json +++ b/packages/spacecat-shared-dynamo/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-dynamo", - "version": "1.3.34", + "version": "1.3.35", "description": "Shared modules of the Spacecat Services - DynamoDB client", "type": "module", "engines": { From 6d82c4334e8592e8802035bd5a5315873edfcf13 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 20:18:49 +0000 Subject: [PATCH 23/46] chore(release): 1.2.4 [skip ci] # [@adobe/spacecat-shared-google-client-v1.2.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.3...@adobe/spacecat-shared-google-client-v1.2.4) (2024-09-07) ### Bug Fixes * **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) --- packages/spacecat-shared-google-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-google-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-google-client/CHANGELOG.md b/packages/spacecat-shared-google-client/CHANGELOG.md index fff9ebdc..1940c00d 100644 --- a/packages/spacecat-shared-google-client/CHANGELOG.md +++ b/packages/spacecat-shared-google-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-google-client-v1.2.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.3...@adobe/spacecat-shared-google-client-v1.2.4) (2024-09-07) + + +### Bug Fixes + +* **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) + # [@adobe/spacecat-shared-google-client-v1.2.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.2...@adobe/spacecat-shared-google-client-v1.2.3) (2024-09-04) diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index fcd089cd..1133c3a5 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-google-client", - "version": "1.2.3", + "version": "1.2.4", "description": "Shared modules of the Spacecat Services - Google Client", "type": "module", "engines": { From ba9e5408ea90d68f7f0a8a3bf30840a04fe93a1a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 20:19:19 +0000 Subject: [PATCH 24/46] chore(release): 1.3.14 [skip ci] # [@adobe/spacecat-shared-slack-client-v1.3.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.13...@adobe/spacecat-shared-slack-client-v1.3.14) (2024-09-07) ### Bug Fixes * **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) --- packages/spacecat-shared-slack-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-slack-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-slack-client/CHANGELOG.md b/packages/spacecat-shared-slack-client/CHANGELOG.md index 261bd3d2..6f5462da 100644 --- a/packages/spacecat-shared-slack-client/CHANGELOG.md +++ b/packages/spacecat-shared-slack-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-slack-client-v1.3.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.13...@adobe/spacecat-shared-slack-client-v1.3.14) (2024-09-07) + + +### Bug Fixes + +* **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) + # [@adobe/spacecat-shared-slack-client-v1.3.13](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.12...@adobe/spacecat-shared-slack-client-v1.3.13) (2024-08-24) diff --git a/packages/spacecat-shared-slack-client/package.json b/packages/spacecat-shared-slack-client/package.json index 9d0bc0e7..689f9014 100644 --- a/packages/spacecat-shared-slack-client/package.json +++ b/packages/spacecat-shared-slack-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-slack-client", - "version": "1.3.13", + "version": "1.3.14", "description": "Shared modules of the Spacecat Services - Slack Client", "type": "module", "engines": { From 6c4c99f41886c7265b320f147de46d99856e30da Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 7 Sep 2024 20:19:41 +0000 Subject: [PATCH 25/46] chore(release): 1.19.7 [skip ci] # [@adobe/spacecat-shared-utils-v1.19.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.6...@adobe/spacecat-shared-utils-v1.19.7) (2024-09-07) ### Bug Fixes * **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) --- packages/spacecat-shared-utils/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-utils/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-utils/CHANGELOG.md b/packages/spacecat-shared-utils/CHANGELOG.md index ff3ca3fc..e529c0b5 100644 --- a/packages/spacecat-shared-utils/CHANGELOG.md +++ b/packages/spacecat-shared-utils/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-utils-v1.19.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.6...@adobe/spacecat-shared-utils-v1.19.7) (2024-09-07) + + +### Bug Fixes + +* **deps:** update external fixes ([#360](https://github.com/adobe/spacecat-shared/issues/360)) ([315f6e4](https://github.com/adobe/spacecat-shared/commit/315f6e42798d78d33f435e67f70e9a35d05ecf2b)) + # [@adobe/spacecat-shared-utils-v1.19.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.5...@adobe/spacecat-shared-utils-v1.19.6) (2024-08-24) diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index 493a6f3d..b866b20d 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-utils", - "version": "1.19.6", + "version": "1.19.7", "description": "Shared modules of the Spacecat Services - utils", "type": "module", "engines": { From a81d24c49cdd7c16467a58d7a979e448e99dc9e1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 22:27:41 +0000 Subject: [PATCH 26/46] chore(deps): update dependency @adobe/eslint-config-helix to v2.0.7 (#361) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/eslint-config-helix](https://redirect.github.com/adobe/helix-eslint-config) | [`2.0.6` -> `2.0.7`](https://renovatebot.com/diffs/npm/@adobe%2feslint-config-helix/2.0.6/2.0.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2feslint-config-helix/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2feslint-config-helix/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2feslint-config-helix/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2feslint-config-helix/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/helix-eslint-config (@​adobe/eslint-config-helix) ### [`v2.0.7`](https://redirect.github.com/adobe/helix-eslint-config/blob/HEAD/CHANGELOG.md#207-2024-09-07) [Compare Source](https://redirect.github.com/adobe/helix-eslint-config/compare/v2.0.6...v2.0.7) ##### Bug Fixes - **deps:** update dependency eslint-plugin-import to v2.30.0 ([39f0aa1](https://redirect.github.com/adobe/helix-eslint-config/commit/39f0aa1dcb38d0c568056988674e1a0b46eabf1c))
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 445 ++++++++++++++++++++++++++++++++++++++++++++-- package.json | 2 +- 2 files changed, 427 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index b9746f81..11ab87b5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,7 +12,7 @@ "./packages/*" ], "devDependencies": { - "@adobe/eslint-config-helix": "2.0.6", + "@adobe/eslint-config-helix": "2.0.7", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", @@ -37,14 +37,16 @@ } }, "node_modules/@adobe/eslint-config-helix": { - "version": "2.0.6", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@adobe/eslint-config-helix/-/eslint-config-helix-2.0.7.tgz", + "integrity": "sha512-G7ZgiU6jPoR0lZGxnIMrRHyZ/pp5qWJZojUNfEEwVc7lJ0BSnTy4V+JZDhR9TGXhnY/XSBd22QEvnJeTwppfJw==", "dev": true, "license": "Apache-2.0", "dependencies": { "eslint-config-airbnb-base": "15.0.0", "eslint-import-resolver-exports": "1.0.0-beta.5", "eslint-plugin-header": "3.1.1", - "eslint-plugin-import": "2.29.1" + "eslint-plugin-import": "2.30.0" }, "engines": { "node": ">= 12" @@ -2402,6 +2404,13 @@ "node": ">=12" } }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, "node_modules/@sec-ant/readable-stream": { "version": "0.4.1", "dev": true, @@ -5932,7 +5941,9 @@ } }, "node_modules/eslint-module-utils": { - "version": "2.8.1", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.11.0.tgz", + "integrity": "sha512-gbBE5Hitek/oG6MUVj6sFuzEjA/ClzNflVrLovHi/JgLdC7fiN5gLAY1WIPW1a0V5I999MnsrvVrCOGmmVqDBQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5949,6 +5960,8 @@ }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5964,25 +5977,28 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.1", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz", + "integrity": "sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==", "dev": true, "license": "MIT", "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.8", + "array.prototype.findlastindex": "^1.2.5", "array.prototype.flat": "^1.3.2", "array.prototype.flatmap": "^1.3.2", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", + "eslint-module-utils": "^2.9.0", + "hasown": "^2.0.2", + "is-core-module": "^2.15.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.0", "semver": "^6.3.1", "tsconfig-paths": "^3.15.0" }, @@ -7542,7 +7558,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.0", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dev": true, "license": "MIT", "dependencies": { @@ -17760,6 +17778,395 @@ "npm": "^10.0.0 <11.0.0" } }, + "packages/spacecat-shared-content-client/node_modules/@adobe/spacecat-shared-utils": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-shared-utils/-/spacecat-shared-utils-1.19.6.tgz", + "integrity": "sha512-CBAhIOV1BpNgDXG17xvoqApOjlXzOWm2KpnjkUhr5vICS97nn8In+0E9xuvIQolk3lfvYdiodCiu/E8KfjiMGA==", + "license": "Apache-2.0", + "dependencies": { + "@adobe/fetch": "4.1.8", + "@aws-sdk/client-s3": "3.637.0", + "@aws-sdk/client-sqs": "3.637.0", + "@json2csv/plainjs": "7.0.6" + }, + "engines": { + "node": "^20.0.0 <21.0.0", + "npm": "^10.0.0 <11.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/client-s3": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.637.0.tgz", + "integrity": "sha512-y6UC94fsMvhKbf0dzfnjVP1HePeGjplfcYfilZU1COIJLyTkMcUv4XcT4I407CGIrvgEafONHkiC09ygqUauNA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha1-browser": "5.2.0", + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.637.0", + "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/middleware-bucket-endpoint": "3.620.0", + "@aws-sdk/middleware-expect-continue": "3.620.0", + "@aws-sdk/middleware-flexible-checksums": "3.620.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-location-constraint": "3.609.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-sdk-s3": "3.635.0", + "@aws-sdk/middleware-ssec": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/signature-v4-multi-region": "3.635.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@aws-sdk/xml-builder": "3.609.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/eventstream-serde-browser": "^3.0.6", + "@smithy/eventstream-serde-config-resolver": "^3.0.3", + "@smithy/eventstream-serde-node": "^3.0.5", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-blob-browser": "^3.1.2", + "@smithy/hash-node": "^3.0.3", + "@smithy/hash-stream-node": "^3.1.2", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/md5-js": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/smithy-client": "^3.2.0", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-stream": "^3.1.3", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.1.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/client-sqs": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.637.0.tgz", + "integrity": "sha512-0slT2OCa8uOottHFjIBD9EuTotu3Qdzp7Z7PqtkSqQdbXxC8CFsDLNfZVqpU8o/+mf79I2fJK21pEPhBnm654g==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.637.0", + "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-sdk-sqs": "3.635.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-node": "^3.0.3", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/md5-js": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/smithy-client": "^3.2.0", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/client-sso": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.637.0.tgz", + "integrity": "sha512-+KjLvgX5yJYROWo3TQuwBJlHCY0zz9PsLuEolmXQn0BVK1L/m9GteZHtd+rEdAoDGBpE0Xqjy1oz5+SmtsaRUw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-node": "^3.0.3", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/smithy-client": "^3.2.0", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.637.0.tgz", + "integrity": "sha512-27bHALN6Qb6m6KZmPvRieJ/QRlj1lyac/GT2Rn5kJpre8Mpp+yxrtvp3h9PjNBty4lCeFEENfY4dGNSozBuBcw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-node": "^3.0.3", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/smithy-client": "^3.2.0", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.637.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/client-sts": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.637.0.tgz", + "integrity": "sha512-xUi7x4qDubtA8QREtlblPuAcn91GS/09YVEY/RwU7xCY0aqGuFwgszAANlha4OUIqva8oVj2WO4gJuG+iaSnhw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.637.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-node": "^3.0.3", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/smithy-client": "^3.2.0", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.637.0.tgz", + "integrity": "sha512-h+PFCWfZ0Q3Dx84SppET/TFpcQHmxFW8/oV9ArEvMilw4EBN+IlxgbL0CnHwjHW64szcmrM0mbebjEfHf4FXmw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.620.1", + "@aws-sdk/credential-provider-http": "3.635.0", + "@aws-sdk/credential-provider-process": "3.620.1", + "@aws-sdk/credential-provider-sso": "3.637.0", + "@aws-sdk/credential-provider-web-identity": "3.621.0", + "@aws-sdk/types": "3.609.0", + "@smithy/credential-provider-imds": "^3.2.0", + "@smithy/property-provider": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.637.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.637.0.tgz", + "integrity": "sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.620.1", + "@aws-sdk/credential-provider-http": "3.635.0", + "@aws-sdk/credential-provider-ini": "3.637.0", + "@aws-sdk/credential-provider-process": "3.620.1", + "@aws-sdk/credential-provider-sso": "3.637.0", + "@aws-sdk/credential-provider-web-identity": "3.621.0", + "@aws-sdk/types": "3.609.0", + "@smithy/credential-provider-imds": "^3.2.0", + "@smithy/property-provider": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.637.0.tgz", + "integrity": "sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/client-sso": "3.637.0", + "@aws-sdk/token-providers": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@smithy/property-provider": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.637.0.tgz", + "integrity": "sha512-EYo0NE9/da/OY8STDsK2LvM4kNa79DBsf4YVtaG4P5pZ615IeFsD8xOHZeuJmUrSMlVQ8ywPRX7WMucUybsKug==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@smithy/protocol-http": "^4.1.0", + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "packages/spacecat-shared-content-client/node_modules/@aws-sdk/util-endpoints": { + "version": "3.637.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.637.0.tgz", + "integrity": "sha512-pAqOKUHeVWHEXXDIp/qoMk/6jyxIb6GGjnK1/f8dKHtKIEs4tKsnnL563gceEvdad53OPXIt86uoevCcCzmBnw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.609.0", + "@smithy/types": "^3.3.0", + "@smithy/util-endpoints": "^2.0.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, "packages/spacecat-shared-content-client/node_modules/nock": { "version": "13.5.4", "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.4.tgz", @@ -17777,7 +18184,7 @@ }, "packages/spacecat-shared-data-access": { "name": "@adobe/spacecat-shared-data-access", - "version": "1.43.3", + "version": "1.43.4", "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", @@ -18847,7 +19254,7 @@ }, "packages/spacecat-shared-dynamo": { "name": "@adobe/spacecat-shared-dynamo", - "version": "1.3.34", + "version": "1.3.35", "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-utils": "1.1.0", @@ -18884,7 +19291,7 @@ }, "packages/spacecat-shared-google-client": { "name": "@adobe/spacecat-shared-google-client", - "version": "1.2.3", + "version": "1.2.4", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -27266,7 +27673,7 @@ }, "packages/spacecat-shared-slack-client": { "name": "@adobe/spacecat-shared-slack-client", - "version": "1.3.13", + "version": "1.3.14", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -27330,7 +27737,7 @@ }, "packages/spacecat-shared-utils": { "name": "@adobe/spacecat-shared-utils", - "version": "1.19.6", + "version": "1.19.7", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", diff --git a/package.json b/package.json index a3b7207b..35858562 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "./packages/*" ], "devDependencies": { - "@adobe/eslint-config-helix": "2.0.6", + "@adobe/eslint-config-helix": "2.0.7", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", From b8006573b0c08bbd29f5248d618e1532690bb53d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:28:16 +0000 Subject: [PATCH 27/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.7 (#364) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://redirect.github.com/adobe/spacecat-helix-content-sdk) | [`1.1.6` -> `1.1.7`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.6/1.1.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.6/1.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.6/1.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.7`](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/0cbfe9d72113852790eb5fd658711977a970b791...1976ce95dddd5b01691ef506af449b715c9cedb3) [Compare Source](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/0cbfe9d72113852790eb5fd658711977a970b791...1976ce95dddd5b01691ef506af449b715c9cedb3)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 17 +++++++++-------- .../spacecat-shared-content-client/package.json | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 11ab87b5..ef8d76dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -131,9 +131,9 @@ } }, "node_modules/@adobe/helix-md2docx": { - "version": "2.1.71", - "resolved": "https://registry.npmjs.org/@adobe/helix-md2docx/-/helix-md2docx-2.1.71.tgz", - "integrity": "sha512-IOF9K/p1WLWJg5q0yuxKfUDPYVZpMkag5eubJRJ1ArCcuC9bGkvk5rCP/wHGU1bi3Ci532bpEHT6naAA66T+tA==", + "version": "2.1.72", + "resolved": "https://registry.npmjs.org/@adobe/helix-md2docx/-/helix-md2docx-2.1.72.tgz", + "integrity": "sha512-Bwu8jqsN2LqQAMdiN33ZgXI3ikttXz5WU7dobD43xjteacEOvhW5nVtAFlJpY7St0xlajHagoAfOwTZ5B4Ihbw==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -253,14 +253,15 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.6.tgz", - "integrity": "sha512-bKRJZhPLEmBc9tkYINh2JwmC+HeLnF21L9rESYwwkNhXKpUNcWX9FpveKMSo2MGgUbKgO6mjrxywcs4H/0KiCg==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.7.tgz", + "integrity": "sha512-b305seiD9shMgNBb+vnGLUvPqQ9YiqftJk+OhtrkveOBKU+SU12TtyZ09MdSBR9YN71alZl4RwCMn/yHPXTTeg==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", "@adobe/helix-docx2md": "1.6.6", - "@adobe/helix-md2docx": "2.1.71", + "@adobe/helix-markdown-support": "7.1.5", + "@adobe/helix-md2docx": "2.1.72", "@adobe/mdast-util-gridtables": "4.0.6", "@azure/msal-node": "2.13.1", "@googleapis/docs": "3.3.0", @@ -17761,7 +17762,7 @@ "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.6", + "@adobe/spacecat-helix-content-sdk": "1.1.7", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 1a960be5..579cece7 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.6", + "@adobe/spacecat-helix-content-sdk": "1.1.7", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From f9ab1518914377bccb8d10a368bf3d99053522eb Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 10 Sep 2024 16:30:42 +0000 Subject: [PATCH 28/46] chore(release): 1.0.5 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.4...@adobe/spacecat-shared-content-client-v1.0.5) (2024-09-10) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.7 ([#364](https://github.com/adobe/spacecat-shared/issues/364)) ([b800657](https://github.com/adobe/spacecat-shared/commit/b8006573b0c08bbd29f5248d618e1532690bb53d)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index ac0fe28c..270c6dee 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.4...@adobe/spacecat-shared-content-client-v1.0.5) (2024-09-10) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.7 ([#364](https://github.com/adobe/spacecat-shared/issues/364)) ([b800657](https://github.com/adobe/spacecat-shared/commit/b8006573b0c08bbd29f5248d618e1532690bb53d)) + # [@adobe/spacecat-shared-content-client-v1.0.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.3...@adobe/spacecat-shared-content-client-v1.0.4) (2024-09-07) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 579cece7..4db910e3 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.4", + "version": "1.0.5", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From 17b216d75f3573480e257c36101b0388dc1772be Mon Sep 17 00:00:00 2001 From: Sweta Barman Date: Wed, 11 Sep 2024 16:48:27 -0400 Subject: [PATCH 29/46] feat: Add a query to get all import urls by jobId (#365) ## Related Issues [SITES-24337](https://jira.corp.adobe.com/browse/SITES-24337) We want to add a query to retrieve all URLs based on a jobId to generate an import report. The discussion started here: https://github.com/adobe/spacecat-content-processor/pull/143#discussion_r1754542157 for this PR. --- package-lock.json | 2 +- .../src/index.d.ts | 3 +++ .../src/service/import-url/accessPatterns.js | 22 ++++++++++++++++++- .../src/service/import-url/index.js | 7 ++++++ .../unit/service/import-url/index.test.js | 16 ++++++++++++++ .../test/unit/service/index.test.js | 1 + 6 files changed, 49 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index ef8d76dc..9a854369 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17758,7 +17758,7 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.4", + "version": "1.0.5", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", diff --git a/packages/spacecat-shared-data-access/src/index.d.ts b/packages/spacecat-shared-data-access/src/index.d.ts index 68e9da4a..aca06218 100644 --- a/packages/spacecat-shared-data-access/src/index.d.ts +++ b/packages/spacecat-shared-data-access/src/index.d.ts @@ -779,6 +779,9 @@ export interface DataAccess { jobId: string, status: string, ) => Promise; + getImportUrlsByJobId: ( + jobId: string, + ) => Promise; getApiKeyByHashedApiKey: ( hashedApiKey: string, ) => Promise; diff --git a/packages/spacecat-shared-data-access/src/service/import-url/accessPatterns.js b/packages/spacecat-shared-data-access/src/service/import-url/accessPatterns.js index 35696cc2..d5eddf7a 100644 --- a/packages/spacecat-shared-data-access/src/service/import-url/accessPatterns.js +++ b/packages/spacecat-shared-data-access/src/service/import-url/accessPatterns.js @@ -79,7 +79,7 @@ export const updateImportUrl = async (dynamoClient, config, log, importUrl) => { * @param {Logger} log * @param {string} jobId * @param {string} status - * @returns {Promise} + * @returns {Promise} */ export const getImportUrlsByJobIdAndStatus = async (dynamoClient, config, log, jobId, status) => { const items = await dynamoClient.query({ @@ -96,3 +96,23 @@ export const getImportUrlsByJobIdAndStatus = async (dynamoClient, config, log, j }); return items.map((item) => ImportUrlDto.fromDynamoItem(item)); }; + +/** + * Get Import Urls by Job ID + * @param {DynamoClient} dynamoClient + * @param {Object} config + * @param {Logger} log + * @param {string} jobId + * @returns {Promise} + */ +export const getImportUrlsByJobId = async (dynamoClient, config, log, jobId) => { + const items = await dynamoClient.query({ + TableName: config.tableNameImportUrls, + IndexName: config.indexNameImportUrlsByJobIdAndStatus, + KeyConditionExpression: 'jobId = :jobId', + ExpressionAttributeValues: { + ':jobId': jobId, + }, + }); + return items.map((item) => ImportUrlDto.fromDynamoItem(item)); +}; diff --git a/packages/spacecat-shared-data-access/src/service/import-url/index.js b/packages/spacecat-shared-data-access/src/service/import-url/index.js index d0355bc2..905858c3 100644 --- a/packages/spacecat-shared-data-access/src/service/import-url/index.js +++ b/packages/spacecat-shared-data-access/src/service/import-url/index.js @@ -15,6 +15,7 @@ import { createNewImportUrl, updateImportUrl, getImportUrlsByJobIdAndStatus, + getImportUrlsByJobId, } from './accessPatterns.js'; export const importUrlFunctions = (dynamoClient, config, log) => ({ @@ -43,4 +44,10 @@ export const importUrlFunctions = (dynamoClient, config, log) => ({ jobId, status, ), + getImportUrlsByJobId: (jobId) => getImportUrlsByJobId( + dynamoClient, + config, + log, + jobId, + ), }); diff --git a/packages/spacecat-shared-data-access/test/unit/service/import-url/index.test.js b/packages/spacecat-shared-data-access/test/unit/service/import-url/index.test.js index 40b0a253..39d0e335 100644 --- a/packages/spacecat-shared-data-access/test/unit/service/import-url/index.test.js +++ b/packages/spacecat-shared-data-access/test/unit/service/import-url/index.test.js @@ -121,5 +121,21 @@ describe('Import Url Tests', () => { expect(result[0].getUrl()).to.equal('https://www.test.com'); }); }); + + describe('getImportUrlsByJobId', () => { + it('should return an array of ImportUrl when items are found', async () => { + const mockImportUrl = { + id: 'test-url-id', + status: 'RUNNING', + url: 'https://www.test.com', + jobId: 'test-job-id', + }; + mockDynamoClient.query.resolves([mockImportUrl]); + const result = await exportedFunctions.getImportUrlsByJobId('test-url-id'); + expect(result.length).to.equal(1); + expect(result[0].getUrl()).to.equal('https://www.test.com'); + expect(result[0].getId()).to.equal('test-url-id'); + }); + }); }); }); diff --git a/packages/spacecat-shared-data-access/test/unit/service/index.test.js b/packages/spacecat-shared-data-access/test/unit/service/index.test.js index 07eaa54c..05e86081 100644 --- a/packages/spacecat-shared-data-access/test/unit/service/index.test.js +++ b/packages/spacecat-shared-data-access/test/unit/service/index.test.js @@ -91,6 +91,7 @@ describe('Data Access Object Tests', () => { 'createNewImportUrl', 'updateImportUrl', 'getImportUrlsByJobIdAndStatus', + 'getImportUrlsByJobId', ]; const experimentFunctions = [ From 22ac204ef751532087402c5b28dc1b4ef59d55c5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 11 Sep 2024 20:56:45 +0000 Subject: [PATCH 30/46] chore(release): 1.44.0 [skip ci] # [@adobe/spacecat-shared-data-access-v1.44.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.4...@adobe/spacecat-shared-data-access-v1.44.0) (2024-09-11) ### Features * Add a query to get all import urls by jobId ([#365](https://github.com/adobe/spacecat-shared/issues/365)) ([17b216d](https://github.com/adobe/spacecat-shared/commit/17b216d75f3573480e257c36101b0388dc1772be)), closes [/github.com/adobe/spacecat-content-processor/pull/143#discussion_r1754542157](https://github.com//github.com/adobe/spacecat-content-processor/pull/143/issues/discussion_r1754542157) --- packages/spacecat-shared-data-access/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-data-access/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-data-access/CHANGELOG.md b/packages/spacecat-shared-data-access/CHANGELOG.md index 1a8368b2..da57dc1c 100644 --- a/packages/spacecat-shared-data-access/CHANGELOG.md +++ b/packages/spacecat-shared-data-access/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-data-access-v1.44.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.4...@adobe/spacecat-shared-data-access-v1.44.0) (2024-09-11) + + +### Features + +* Add a query to get all import urls by jobId ([#365](https://github.com/adobe/spacecat-shared/issues/365)) ([17b216d](https://github.com/adobe/spacecat-shared/commit/17b216d75f3573480e257c36101b0388dc1772be)), closes [/github.com/adobe/spacecat-content-processor/pull/143#discussion_r1754542157](https://github.com//github.com/adobe/spacecat-content-processor/pull/143/issues/discussion_r1754542157) + # [@adobe/spacecat-shared-data-access-v1.43.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.3...@adobe/spacecat-shared-data-access-v1.43.4) (2024-09-07) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index 60267031..c5581ab1 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-data-access", - "version": "1.43.4", + "version": "1.44.0", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "engines": { From 9e162f3df0a7a26731e0ddb5cac4fb44846e99b5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 16:25:10 +0000 Subject: [PATCH 31/46] fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.1.8 (#367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://redirect.github.com/adobe/spacecat-helix-content-sdk) | [`1.1.7` -> `1.1.8`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.1.7/1.1.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.1.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.1.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.1.7/1.1.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.1.7/1.1.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
adobe/spacecat-helix-content-sdk (@​adobe/spacecat-helix-content-sdk) ### [`v1.1.8`](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/1976ce95dddd5b01691ef506af449b715c9cedb3...8879cdfac812e3de44bf5c4419fd010fdbabe83b) [Compare Source](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/1976ce95dddd5b01691ef506af449b715c9cedb3...8879cdfac812e3de44bf5c4419fd010fdbabe83b)
--- ### Configuration πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 10 +++++----- packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9a854369..ced827aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -253,9 +253,9 @@ } }, "node_modules/@adobe/spacecat-helix-content-sdk": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.7.tgz", - "integrity": "sha512-b305seiD9shMgNBb+vnGLUvPqQ9YiqftJk+OhtrkveOBKU+SU12TtyZ09MdSBR9YN71alZl4RwCMn/yHPXTTeg==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/@adobe/spacecat-helix-content-sdk/-/spacecat-helix-content-sdk-1.1.8.tgz", + "integrity": "sha512-8Aw3SUjM6dG/e/yXeSawn7I+XoagPNTQVxVnIuctqxdGzD7DSrQBBz/LuwP9w3zjAe1NQkEke2nP2U6vrc1amw==", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -17762,7 +17762,7 @@ "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.7", + "@adobe/spacecat-helix-content-sdk": "1.1.8", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { @@ -18185,7 +18185,7 @@ }, "packages/spacecat-shared-data-access": { "name": "@adobe/spacecat-shared-data-access", - "version": "1.43.4", + "version": "1.44.0", "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 4db910e3..ea351c08 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@adobe/helix-universal": "5.0.5", - "@adobe/spacecat-helix-content-sdk": "1.1.7", + "@adobe/spacecat-helix-content-sdk": "1.1.8", "@adobe/spacecat-shared-utils": "1.19.6" }, "devDependencies": { From d20e62e39b3186d2b5c4449a03e3e1a1ed810ef4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 13 Sep 2024 16:27:33 +0000 Subject: [PATCH 32/46] chore(release): 1.0.6 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.5...@adobe/spacecat-shared-content-client-v1.0.6) (2024-09-13) ### Bug Fixes * **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.8 ([#367](https://github.com/adobe/spacecat-shared/issues/367)) ([9e162f3](https://github.com/adobe/spacecat-shared/commit/9e162f3df0a7a26731e0ddb5cac4fb44846e99b5)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index 270c6dee..e17d2c07 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.5...@adobe/spacecat-shared-content-client-v1.0.6) (2024-09-13) + + +### Bug Fixes + +* **deps:** update dependency @adobe/spacecat-helix-content-sdk to v1.1.8 ([#367](https://github.com/adobe/spacecat-shared/issues/367)) ([9e162f3](https://github.com/adobe/spacecat-shared/commit/9e162f3df0a7a26731e0ddb5cac4fb44846e99b5)) + # [@adobe/spacecat-shared-content-client-v1.0.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.4...@adobe/spacecat-shared-content-client-v1.0.5) (2024-09-10) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index ea351c08..449c8a5a 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.5", + "version": "1.0.6", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From 5412d7be554b9940d43b39b18f2913146e866846 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:24:08 +0000 Subject: [PATCH 33/46] fix(deps): update external fixes (#369) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@aws-sdk/client-dynamodb](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb)) | [`3.645.0` -> `3.651.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.645.0/3.651.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-s3](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | [`3.645.0` -> `3.651.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.645.0/3.651.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-secrets-manager](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-secrets-manager) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager)) | [`3.645.0` -> `3.651.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.645.0/3.651.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-secrets-manager/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-secrets-manager/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-secrets-manager/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-secrets-manager/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-sqs](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sqs) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs)) | [`3.645.0` -> `3.651.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sqs/3.645.0/3.651.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sqs/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sqs/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sqs/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sqs/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/lib-dynamodb](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/lib/lib-dynamodb) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb)) | [`3.645.0` -> `3.651.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2flib-dynamodb/3.645.0/3.651.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2flib-dynamodb/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2flib-dynamodb/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2flib-dynamodb/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2flib-dynamodb/3.645.0/3.651.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.4.0` -> `8.5.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.4.0/8.5.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/8.4.0/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/8.4.0/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.4.0` -> `8.5.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.4.0/8.5.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/8.4.0/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.4.0/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [husky](https://redirect.github.com/typicode/husky) | [`9.1.5` -> `9.1.6`](https://renovatebot.com/diffs/npm/husky/9.1.5/9.1.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/husky/9.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/husky/9.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/husky/9.1.5/9.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/husky/9.1.5/9.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [jose](https://redirect.github.com/panva/jose) | [`5.8.0` -> `5.9.2`](https://renovatebot.com/diffs/npm/jose/5.8.0/5.9.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jose/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jose/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jose/5.8.0/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jose/5.8.0/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [jsdoc-to-markdown](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown) | [`9.0.0` -> `9.0.1`](https://renovatebot.com/diffs/npm/jsdoc-to-markdown/9.0.0/9.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jsdoc-to-markdown/9.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jsdoc-to-markdown/9.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jsdoc-to-markdown/9.0.0/9.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jsdoc-to-markdown/9.0.0/9.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [semantic-release](https://redirect.github.com/semantic-release/semantic-release) | [`24.1.0` -> `24.1.1`](https://renovatebot.com/diffs/npm/semantic-release/24.1.0/24.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/semantic-release/24.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/semantic-release/24.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/semantic-release/24.1.0/24.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/semantic-release/24.1.0/24.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [sinon](https://sinonjs.org/) ([source](https://redirect.github.com/sinonjs/sinon)) | [`18.0.0` -> `18.0.1`](https://renovatebot.com/diffs/npm/sinon/18.0.0/18.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sinon/18.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sinon/18.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sinon/18.0.0/18.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sinon/18.0.0/18.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [typescript](https://www.typescriptlang.org/) ([source](https://redirect.github.com/microsoft/TypeScript)) | [`5.5.4` -> `5.6.2`](https://renovatebot.com/diffs/npm/typescript/5.5.4/5.6.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.5.4/5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.5.4/5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
aws/aws-sdk-js-v3 (@​aws-sdk/client-dynamodb) ### [`v3.651.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36511-2024-09-13) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.650.0...v3.651.1) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://redirect.github.com/aws-sdk/client-dynamodb) ### [`v3.650.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36500-2024-09-11) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.649.0...v3.650.0) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://redirect.github.com/aws-sdk/client-dynamodb) ### [`v3.649.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36490-2024-09-10) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.648.0...v3.649.0) ##### Features - **endpoints:** codegen sync for request creation performance improvements ([#​6449](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6449)) ([c8e8f28](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c8e8f28d0714c8165162e1411b5f740ba729a93a)) ### [`v3.648.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36480-2024-09-09) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.645.0...v3.648.0) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://redirect.github.com/aws-sdk/client-dynamodb)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3) ### [`v3.651.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36511-2024-09-13) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.651.0...v3.651.1) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3) ### [`v3.651.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36510-2024-09-12) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.650.0...v3.651.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3) ### [`v3.650.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36500-2024-09-11) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.649.0...v3.650.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3) ### [`v3.649.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36490-2024-09-10) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.645.0...v3.649.0) ##### Features - **endpoints:** codegen sync for request creation performance improvements ([#​6449](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6449)) ([c8e8f28](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c8e8f28d0714c8165162e1411b5f740ba729a93a))
aws/aws-sdk-js-v3 (@​aws-sdk/client-secrets-manager) ### [`v3.651.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36511-2024-09-13) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.650.0...v3.651.1) **Note:** Version bump only for package [@​aws-sdk/client-secrets-manager](https://redirect.github.com/aws-sdk/client-secrets-manager) ### [`v3.650.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36500-2024-09-11) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.649.0...v3.650.0) **Note:** Version bump only for package [@​aws-sdk/client-secrets-manager](https://redirect.github.com/aws-sdk/client-secrets-manager) ### [`v3.649.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36490-2024-09-10) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.645.0...v3.649.0) ##### Features - **endpoints:** codegen sync for request creation performance improvements ([#​6449](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6449)) ([c8e8f28](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c8e8f28d0714c8165162e1411b5f740ba729a93a))
aws/aws-sdk-js-v3 (@​aws-sdk/client-sqs) ### [`v3.651.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36511-2024-09-13) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.650.0...v3.651.1) **Note:** Version bump only for package [@​aws-sdk/client-sqs](https://redirect.github.com/aws-sdk/client-sqs) ### [`v3.650.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36500-2024-09-11) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.649.0...v3.650.0) **Note:** Version bump only for package [@​aws-sdk/client-sqs](https://redirect.github.com/aws-sdk/client-sqs) ### [`v3.649.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36490-2024-09-10) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.645.0...v3.649.0) ##### Features - **endpoints:** codegen sync for request creation performance improvements ([#​6449](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6449)) ([c8e8f28](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c8e8f28d0714c8165162e1411b5f740ba729a93a))
aws/aws-sdk-js-v3 (@​aws-sdk/lib-dynamodb) ### [`v3.651.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36511-2024-09-13) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.650.0...v3.651.1) **Note:** Version bump only for package [@​aws-sdk/lib-dynamodb](https://redirect.github.com/aws-sdk/lib-dynamodb) ### [`v3.650.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36500-2024-09-11) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.649.0...v3.650.0) ##### Bug Fixes - **codegen:** checkstyle issue in DocumentBareBonesClientGenerator ([#​6455](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6455)) ([c3d86a6](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c3d86a6a5ce9cf1fdb6ab087d8e87138bf168132)) ### [`v3.649.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36490-2024-09-10) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.648.0...v3.649.0) ##### Features - **endpoints:** codegen sync for request creation performance improvements ([#​6449](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6449)) ([c8e8f28](https://redirect.github.com/aws/aws-sdk-js-v3/commit/c8e8f28d0714c8165162e1411b5f740ba729a93a)) ### [`v3.648.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36480-2024-09-09) [Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.645.0...v3.648.0) **Note:** Version bump only for package [@​aws-sdk/lib-dynamodb](https://redirect.github.com/aws-sdk/lib-dynamodb)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v8.5.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#850-2024-09-09) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.4.0...v8.5.0) ##### πŸš€ Features - **eslint-plugin:** \[no-duplicate-type-constituents] prevent unnecessary \` - **eslint-plugin:** \[no-unsafe-argument] differentiate error types ##### 🩹 Fixes - **eslint-plugin:** \[no-unnecessary-type-assertion] fix TSNonNullExpression fixer - **eslint-plugin:** \[no-misused-promises] handle static method - **eslint-plugin:** \[no-unnecessary-type-parameters] fix AST quick path scope analysis - **eslint-plugin:** \[consistent-type-assertions] access parser services lazily ##### ❀️ Thank You - [`f44da95`](https://redirect.github.com/typescript-eslint/typescript-eslint/commit/f44da958e) - Josh Goldberg ✨ - Kirk Waiblinger - YeonJuan You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v8.5.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#850-2024-09-09) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.4.0...v8.5.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typicode/husky (husky) ### [`v9.1.6`](https://redirect.github.com/typicode/husky/compare/v9.1.5...a2d942a670b3d6a04578005a0fd2dc310e511849) [Compare Source](https://redirect.github.com/typicode/husky/compare/v9.1.5...v9.1.6)
panva/jose (jose) ### [`v5.9.2`](https://redirect.github.com/panva/jose/blob/HEAD/CHANGELOG.md#592-2024-09-14) [Compare Source](https://redirect.github.com/panva/jose/compare/v5.9.1...v5.9.2) ##### Refactor - **types:** remove index signatures from JWK interfaces ([ccf0cda](https://redirect.github.com/panva/jose/commit/ccf0cdaa7166d9273a951356859172192ed1be3f)) ### [`v5.9.1`](https://redirect.github.com/panva/jose/blob/HEAD/CHANGELOG.md#591-2024-09-13) [Compare Source](https://redirect.github.com/panva/jose/compare/v5.9.0...v5.9.1) ##### Fixes - **types:** add missing index signature on the convenience JWK types ([90a93dc](https://redirect.github.com/panva/jose/commit/90a93dc9ce5da294e91d2a964ed593299c464893)) ### [`v5.9.0`](https://redirect.github.com/panva/jose/blob/HEAD/CHANGELOG.md#590-2024-09-13) [Compare Source](https://redirect.github.com/panva/jose/compare/v5.8.0...v5.9.0) ##### Features - allow JWK objects as "key" input to sign and verify ([c6302ea](https://redirect.github.com/panva/jose/commit/c6302ea6886974eb433c51ddcf6eff1bbfdf5459))
jsdoc2md/jsdoc-to-markdown (jsdoc-to-markdown) ### [`v9.0.1`](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/compare/v9.0.0...v9.0.1) [Compare Source](https://redirect.github.com/jsdoc2md/jsdoc-to-markdown/compare/v9.0.0...v9.0.1)
semantic-release/semantic-release (semantic-release) ### [`v24.1.1`](https://redirect.github.com/semantic-release/semantic-release/compare/v24.1.0...v24.1.1) [Compare Source](https://redirect.github.com/semantic-release/semantic-release/compare/v24.1.0...v24.1.1)
sinonjs/sinon (sinon) ### [`v18.0.1`](https://redirect.github.com/sinonjs/sinon/blob/HEAD/CHANGES.md#1801) [Compare Source](https://redirect.github.com/sinonjs/sinon/compare/v18.0.0...v18.0.1) Basically a patch release to update a transitive dependency in Nise. - [`03e33ec6`](https://redirect.github.com/sinonjs/sinon/commit/03e33ec6475d7e7acfe62676af63eb2344cd6db0) Pin fake-timers@11.2.2 to avoid breaking change (Carl-Erik Kopseng) - [`5a7924ad`](https://redirect.github.com/sinonjs/sinon/commit/5a7924ad94f37b9985899fc8a1dbfd29cbdd7967) Add createStubInstance header in stubs.md (Daniel Kaplan) - [`ad6804cd`](https://redirect.github.com/sinonjs/sinon/commit/ad6804cd4143eaaaa8f989dae20dbf7295444893) Bump elliptic from 6.5.5 to 6.5.7 ([#​2608](https://redirect.github.com/sinonjs/sinon/issues/2608)) (dependabot\[bot]) - [`033287bd`](https://redirect.github.com/sinonjs/sinon/commit/033287bded8dfce16653b33292ef2fef9ed487b0) Bump path-to-regexp and nise ([#​2611](https://redirect.github.com/sinonjs/sinon/issues/2611)) (dependabot\[bot]) > Bumps [path-to-regexp](https://redirect.github.com/pillarjs/path-to-regexp) to 8.1.0 and updates ancestor dependency [nise](https://redirect.github.com/sinonjs/nise). These dependencies need to be updated together. > > Updates `path-to-regexp` from 6.2.2 to 8.1.0 > > - [Release notes](https://redirect.github.com/pillarjs/path-to-regexp/releases) > - [Changelog](https://redirect.github.com/pillarjs/path-to-regexp/blob/master/History.md) > - [Commits](https://redirect.github.com/pillarjs/path-to-regexp/compare/v6.2.2...v8.1.0) > > Updates `nise` from 6.0.0 to 6.0.1 > > - [Changelog](https://redirect.github.com/sinonjs/nise/blob/main/History.md) > - [Commits](https://redirect.github.com/sinonjs/nise/commits) > > *** > > updated-dependencies: > > - dependency-name: path-to-regexp > > dependency-type: indirect > > - dependency-name: nise > > dependency-type: direct:production > > ... > > Signed-off-by: dependabot\[bot] > > Co-authored-by: dependabot\[bot] <49699333+dependabot\[bot][@​users](https://redirect.github.com/users).noreply.github.com> - [`0c609f95`](https://redirect.github.com/sinonjs/sinon/commit/0c609f95b1f4f18e02896b5a87bbc59f5787093e) re-add testing of esm browser builds (Carl-Erik Kopseng) > It seems unclear why it was removed in the first place: I have tested extensively that it > does work and it does fail the build if changing any assertion in the script - [`da4230a0`](https://redirect.github.com/sinonjs/sinon/commit/da4230a00c929f56738d272da469a5ecb9d40da7) Bump braces from 3.0.2 to 3.0.3 ([#​2605](https://redirect.github.com/sinonjs/sinon/issues/2605)) (dependabot\[bot]) > Bumps [braces](https://redirect.github.com/micromatch/braces) from 3.0.2 to 3.0.3. > > - [Changelog](https://redirect.github.com/micromatch/braces/blob/master/CHANGELOG.md) > - [Commits](https://redirect.github.com/micromatch/braces/compare/3.0.2...3.0.3) > > *** > > updated-dependencies: > > - dependency-name: braces > > dependency-type: indirect > > ... > > Signed-off-by: dependabot\[bot] > > Co-authored-by: dependabot\[bot] <49699333+dependabot\[bot][@​users](https://redirect.github.com/users).noreply.github.com> - [`02542370`](https://redirect.github.com/sinonjs/sinon/commit/02542370a4d92ef12270638f97db29ca4f1cca66) feat(ci): add node v22 ([#​2600](https://redirect.github.com/sinonjs/sinon/issues/2600)) (Rotzbua) - [`794cb81a`](https://redirect.github.com/sinonjs/sinon/commit/794cb81a3bf639c8fb0880f4509a5a1a42066b6e) fix(tests): typo ([#​2603](https://redirect.github.com/sinonjs/sinon/issues/2603)) (Rotzbua) - [`1eb2a254`](https://redirect.github.com/sinonjs/sinon/commit/1eb2a25486564ff6b834cfe0a62329dd8bd455fe) Use NodeJS 22.2.0 as base development version (Carl-Erik Kopseng) - [`1aa713fd`](https://redirect.github.com/sinonjs/sinon/commit/1aa713fd413e1b34645fddff1871da99c6d263f8) Bump rexml from 3.2.5 to 3.2.8 ([#​2599](https://redirect.github.com/sinonjs/sinon/issues/2599)) (dependabot\[bot]) > Bumps [rexml](https://redirect.github.com/ruby/rexml) from 3.2.5 to 3.2.8. > > > - [Release notes](https://redirect.github.com/ruby/rexml/releases) > > - [Changelog](https://redirect.github.com/ruby/rexml/blob/master/NEWS.md) > > - [Commits](https://redirect.github.com/ruby/rexml/compare/v3.2.5...v3.2.8) > > > \--- > > updated-dependencies: > > - dependency-name: rexml > > dependency-type: indirect > > ... > > > Signed-off-by: dependabot\[bot] > > Co-authored-by: dependabot\[bot] <49699333+dependabot\[bot][@​users](https://redirect.github.com/users).noreply.github.com> *Released by [Carl-Erik Kopseng](https://redirect.github.com/fatso83) on 2024-09-10.*
microsoft/TypeScript (typescript) ### [`v5.6.2`](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...a7e3374f13327483fbe94e32806d65785b0b6cda) [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2)
--- ### Configuration πŸ“… **Schedule**: Branch creation - "after 2pm on Saturday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 3045 ++++++++++++----- package.json | 12 +- .../package.json | 4 +- .../package.json | 4 +- .../spacecat-shared-data-access/package.json | 6 +- packages/spacecat-shared-dynamo/package.json | 4 +- .../package.json | 6 +- .../spacecat-shared-gpt-client/package.json | 4 +- .../spacecat-shared-http-utils/package.json | 4 +- .../spacecat-shared-ims-client/package.json | 4 +- .../package.json | 4 +- .../spacecat-shared-slack-client/package.json | 4 +- packages/spacecat-shared-utils/package.json | 8 +- 13 files changed, 2308 insertions(+), 801 deletions(-) diff --git a/package-lock.json b/package-lock.json index ced827aa..469c2a21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,20 +16,20 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.4.0", - "@typescript-eslint/parser": "8.4.0", + "@typescript-eslint/eslint-plugin": "8.5.0", + "@typescript-eslint/parser": "8.5.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", - "husky": "9.1.5", - "jsdoc-to-markdown": "9.0.0", + "husky": "9.1.6", + "jsdoc-to-markdown": "9.0.1", "lint-staged": "15.2.10", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", "nock": "13.5.5", - "semantic-release": "24.1.0", + "semantic-release": "24.1.1", "semantic-release-monorepo": "8.0.2", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -528,53 +528,53 @@ } }, "node_modules/@aws-sdk/client-dynamodb": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.645.0.tgz", - "integrity": "sha512-y7UHtIIAWQOzJXNh3KLU91ILz1Ivb2/FuEXnhdJhRurbNI9AwKIVZQlXGq31O8EHO6MU64ptxooNa0WVTezoxg==", + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.651.1.tgz", + "integrity": "sha512-HrZ01VVoJeL1Ye94xVA/LIL1aY+sSmoCshcYnY9Wl2Xgs/QDCA8y+Q+Yvcyoua949X32wXPAhmXRjeuIfY7MNg==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.645.0", - "@aws-sdk/client-sts": "3.645.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-endpoint-discovery": "3.620.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", + "@aws-sdk/client-sso-oidc": "3.651.1", + "@aws-sdk/client-sts": "3.651.1", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-endpoint-discovery": "3.649.0", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", "@smithy/util-base64": "^3.0.0", "@smithy/util-body-length-browser": "^3.0.0", "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", "@smithy/util-utf8": "^3.0.0", - "@smithy/util-waiter": "^3.1.2", + "@smithy/util-waiter": "^3.1.3", "tslib": "^2.6.2", "uuid": "^9.0.1" }, @@ -582,6 +582,158 @@ "node": ">=16.0.0" } }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, "node_modules/@aws-sdk/client-dynamodb/node_modules/uuid": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", @@ -596,467 +748,1697 @@ } }, "node_modules/@aws-sdk/client-s3": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.645.0.tgz", - "integrity": "sha512-RjT/mfNv4yr1uv/+aEXgSIxC5EB+yHPSU7hH0KZOZrvZEFASLl0i4FeoHzbMEOH5KdKGAi0uu3zRP3D1y45sKg==", + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.651.1.tgz", + "integrity": "sha512-xNm+ixNRcotyrHgjUGGEyara6kCKgDdW2EVjHBZa5T+tbmtyqezwH3UzbSDZ6MlNoLhJMfR7ozuwYTIOARoBfA==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha1-browser": "5.2.0", "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.645.0", - "@aws-sdk/client-sts": "3.645.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-bucket-endpoint": "3.620.0", - "@aws-sdk/middleware-expect-continue": "3.620.0", - "@aws-sdk/middleware-flexible-checksums": "3.620.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-location-constraint": "3.609.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-sdk-s3": "3.635.0", - "@aws-sdk/middleware-ssec": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/signature-v4-multi-region": "3.635.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@aws-sdk/xml-builder": "3.609.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/eventstream-serde-browser": "^3.0.6", - "@smithy/eventstream-serde-config-resolver": "^3.0.3", - "@smithy/eventstream-serde-node": "^3.0.5", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-blob-browser": "^3.1.2", - "@smithy/hash-node": "^3.0.3", - "@smithy/hash-stream-node": "^3.1.2", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/md5-js": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", + "@aws-sdk/client-sso-oidc": "3.651.1", + "@aws-sdk/client-sts": "3.651.1", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-bucket-endpoint": "3.649.0", + "@aws-sdk/middleware-expect-continue": "3.649.0", + "@aws-sdk/middleware-flexible-checksums": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-location-constraint": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-sdk-s3": "3.651.1", + "@aws-sdk/middleware-ssec": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/signature-v4-multi-region": "3.651.1", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@aws-sdk/xml-builder": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/eventstream-serde-browser": "^3.0.7", + "@smithy/eventstream-serde-config-resolver": "^3.0.4", + "@smithy/eventstream-serde-node": "^3.0.6", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-blob-browser": "^3.1.3", + "@smithy/hash-node": "^3.0.4", + "@smithy/hash-stream-node": "^3.1.3", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/md5-js": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", "@smithy/util-base64": "^3.0.0", "@smithy/util-body-length-browser": "^3.0.0", "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-stream": "^3.1.3", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-stream": "^3.1.4", "@smithy/util-utf8": "^3.0.0", - "@smithy/util-waiter": "^3.1.2", + "@smithy/util-waiter": "^3.1.3", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-bucket-endpoint": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.649.0.tgz", + "integrity": "sha512-ZdDICtUU4YZkrVllTUOH1Fj/F3WShLhkfNKJE3HJ/yj6pS8JS9P2lWzHiHkHiidjrHSxc6NuBo6vuZ+182XLbw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-expect-continue": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.649.0.tgz", + "integrity": "sha512-pW2id/mWNd+L0/hZKp5yL3J+8rTwsamu9E69Hc5pM3qTF4K4DTZZ+A0sQbY6duIvZvc8IbQHbSMulBOLyWNP3A==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-flexible-checksums": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.651.1.tgz", + "integrity": "sha512-cFlXSzhdRKU1vOFTIYC3HzkN7Dwwcf07rKU1sB/PrDy4ztLhGgAwvcRwj2AqErZB62C5AdN4l7peB1Iw/oSxRQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/crc32": "5.2.0", + "@aws-crypto/crc32c": "5.2.0", + "@aws-sdk/types": "3.649.0", + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-location-constraint": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.649.0.tgz", + "integrity": "sha512-O9AXhaFUQx34UTnp/cKCcaWW/IVk4mntlWfFjsIxvRatamKaY33b5fOiakGG+J1t0QFK0niDBSvOYUR1fdlHzw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-sdk-s3": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.651.1.tgz", + "integrity": "sha512-4BameU35aBSzrm3L/Iphc6vFLRhz6sBwgQf09mqPA2ZlX/YFqVe8HbS8wM4DG02W8A2MRTnHXRIfFoOrErp2sw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/core": "3.651.1", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-stream": "^3.1.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-ssec": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.649.0.tgz", + "integrity": "sha512-r/WBIpX+Kcx+AV5vJ+LbdDOuibk7spBqcFK2LytQjOZKPksZNRAM99khbFe9vr9S1+uDmCLVjAVkIfQ5seJrOw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/signature-v4-multi-region": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.651.1.tgz", + "integrity": "sha512-aLPCMq4c/A9DmdZLhufWOgfHN2Vgft65dB2tfbATjs6kZjusSaDFxWzjmWX3y8i2ZQ+vU0nAkkWIHFJdf+47fA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/middleware-sdk-s3": "3.651.1", + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/xml-builder": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.649.0.tgz", + "integrity": "sha512-XVESKkK7m5LdCVzZ3NvAja40BEyCrfPqtaiFAAhJIvW2U1Edyugf2o3XikuQY62crGT6BZagxJFgOiLKvuTiTg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/client-secrets-manager": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.651.1.tgz", + "integrity": "sha512-PPX2RqdMgUb2BWwzugQu3xVxPcNphaKPR1zpZU52DLiZpoxOSDQ3d2NLr4osUV+6h+6z9K8Ub2gjp8qwwy9zPg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.651.1", + "@aws-sdk/client-sts": "3.651.1", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/client-secrets-manager/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@aws-sdk/client-sqs": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.651.1.tgz", + "integrity": "sha512-BVvppr0ASHX46lOxcWBiGSKrKOMTlTsjaDPC/7x4FACVoZcCu1x/0IlGFkPzkP0JpBoFvYITrBaZcL7ZdsZCIw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.651.1", + "@aws-sdk/client-sts": "3.651.1", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-sdk-sqs": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/md5-js": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-sdk-sqs": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.649.0.tgz", + "integrity": "sha512-ifuBdP4onwjdQ3NuneW6s6Ev4wPR/D+4PJbEV6aJqutHkTsp5aKemVCxkjl8KTchMtE6ICst0SHy1t20FZpmDw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-sqs/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/client-sso": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.651.1.tgz", + "integrity": "sha512-Fm8PoMgiBKmmKrY6QQUGj/WW6eIiQqC1I0AiVXfO+Sqkmxcg3qex+CZBAYrTuIDnvnc/89f9N4mdL8V9DRn03Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.651.1.tgz", + "integrity": "sha512-PKwAyTJW8pgaPIXm708haIZWBAwNycs25yNcD7OQ3NLcmgGxvrx6bSlhPEGcvwdTYwQMJsdx8ls+khlYbLqTvQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.651.1" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-sso/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/client-sts": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.651.1.tgz", + "integrity": "sha512-4X2RqLqeDuVLk+Omt4X+h+Fa978Wn+zek/AM4HSPi4C5XzRBEFLRRtOQUvkETvIjbEwTYQhm0LdgzcBH4bUqIg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.651.1", + "@aws-sdk/core": "3.651.1", + "@aws-sdk/credential-provider-node": "3.651.1", + "@aws-sdk/middleware-host-header": "3.649.0", + "@aws-sdk/middleware-logger": "3.649.0", + "@aws-sdk/middleware-recursion-detection": "3.649.0", + "@aws-sdk/middleware-user-agent": "3.649.0", + "@aws-sdk/region-config-resolver": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@aws-sdk/util-user-agent-browser": "3.649.0", + "@aws-sdk/util-user-agent-node": "3.649.0", + "@smithy/config-resolver": "^3.0.6", + "@smithy/core": "^2.4.1", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/hash-node": "^3.0.4", + "@smithy/invalid-dependency": "^3.0.4", + "@smithy/middleware-content-length": "^3.0.6", + "@smithy/middleware-endpoint": "^3.1.1", + "@smithy/middleware-retry": "^3.0.16", + "@smithy/middleware-serde": "^3.0.4", + "@smithy/middleware-stack": "^3.0.4", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/url-parser": "^3.0.4", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.16", + "@smithy/util-defaults-mode-node": "^3.0.16", + "@smithy/util-endpoints": "^2.1.0", + "@smithy/util-middleware": "^3.0.4", + "@smithy/util-retry": "^3.0.4", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/core": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.651.1.tgz", + "integrity": "sha512-eqOq3W39K+5QTP5GAXtmP2s9B7hhM2pVz8OPe5tqob8o1xQgkwdgHerf3FoshO9bs0LDxassU/fUSz1wlwqfqg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.1", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/signature-v4": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-middleware": "^3.0.4", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.649.0.tgz", + "integrity": "sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/middleware-logger": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.649.0.tgz", + "integrity": "sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.649.0.tgz", + "integrity": "sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.649.0.tgz", + "integrity": "sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.649.0.tgz", + "integrity": "sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.649.0.tgz", + "integrity": "sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } } }, - "node_modules/@aws-sdk/client-secrets-manager": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.645.0.tgz", - "integrity": "sha512-bM0bgwVjrzpmbcsY8sWYW5JnSUwQMcM7+hrVA6bWXNkMAScwJit6fq0nmXBbHRcPDaRI5WPt8t6C9q1DIGW6eg==", + "node_modules/@aws-sdk/client-sts/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/@aws-sdk/core": { + "version": "3.635.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.635.0.tgz", + "integrity": "sha512-i1x/E/sgA+liUE1XJ7rj1dhyXpAKO1UKFUcTTHXok2ARjWTvszHnSXMOsB77aPbmn0fUp1JTx2kHUAZ1LVt5Bg==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.645.0", - "@aws-sdk/client-sts": "3.645.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", + "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.1.0", + "@smithy/signature-v4": "^4.1.0", "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", - "tslib": "^2.6.2", - "uuid": "^9.0.1" + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-secrets-manager/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "node_modules/@aws-sdk/core/node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } ], "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, "bin": { - "uuid": "dist/bin/uuid" + "fxparser": "src/cli/cli.js" } }, - "node_modules/@aws-sdk/client-sqs": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.645.0.tgz", - "integrity": "sha512-raheGXdneYgKC/iTq5n4O+ZvHMK3bvrxj5Yx3QFx/T01KNXtrc1csx5Y0BhojDPvPRSeGz1VfqWr51r7uRb6Yg==", + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.620.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz", + "integrity": "sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.645.0", - "@aws-sdk/client-sts": "3.645.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-sdk-sqs": "3.635.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/md5-js": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", + "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.645.0.tgz", - "integrity": "sha512-2rc8TjnsNddOeKQ/pfNN7deNvGLXAeKeYtHtGDAiM2qfTKxd2sNcAsZ+JCDLyshuD4xLM5fpUyR0X8As9EAouQ==", + "node_modules/@aws-sdk/credential-provider-http": { + "version": "3.635.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.635.0.tgz", + "integrity": "sha512-iJyRgEjOCQlBMXqtwPLIKYc7Bsc6nqjrZybdMDenPDa+kmLg7xh8LxHsu9088e+2/wtLicE34FsJJIfzu3L82g==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", "@smithy/node-http-handler": "^3.1.4", + "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.1.0", "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", + "@smithy/util-stream": "^3.1.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso-oidc": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.645.0.tgz", - "integrity": "sha512-X9ULtdk3cO+1ysurEkJ1MSnu6U00qodXx+IVual+1jXX4RYY1WmQmfo7uDKf6FFkz7wW1DAqU+GJIBNQr0YH8A==", + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.651.1.tgz", + "integrity": "sha512-yOzPC3GbwLZ8IYzke4fy70ievmunnBUni/MOXFE8c9kAIV+/RMC7IWx14nAAZm0gAcY+UtCXvBVZprFqmctfzA==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", + "@aws-sdk/credential-provider-env": "3.649.0", + "@aws-sdk/credential-provider-http": "3.649.0", + "@aws-sdk/credential-provider-process": "3.649.0", + "@aws-sdk/credential-provider-sso": "3.651.1", + "@aws-sdk/credential-provider-web-identity": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@smithy/credential-provider-imds": "^3.2.1", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.645.0" + "@aws-sdk/client-sts": "^3.651.1" } }, - "node_modules/@aws-sdk/client-sts": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.645.0.tgz", - "integrity": "sha512-6azXYtvtnAsPf2ShN9vKynIYVcJOpo6IoVmoMAVgNaBJyllP+s/RORzranYZzckqfmrudSxtct4rVapjLWuAMg==", + "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.649.0.tgz", + "integrity": "sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.645.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.645.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.645.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.649.0.tgz", + "integrity": "sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-stream": "^3.1.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.649.0.tgz", + "integrity": "sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/core": { - "version": "3.635.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.635.0.tgz", - "integrity": "sha512-i1x/E/sgA+liUE1XJ7rj1dhyXpAKO1UKFUcTTHXok2ARjWTvszHnSXMOsB77aPbmn0fUp1JTx2kHUAZ1LVt5Bg==", + "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.649.0.tgz", + "integrity": "sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/core": "^2.4.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/signature-v4": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-middleware": "^3.0.3", - "fast-xml-parser": "4.4.1", + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.649.0" } }, - "node_modules/@aws-sdk/core/node_modules/fast-xml-parser": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", - "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - }, - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - ], - "license": "MIT", + "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", "dependencies": { - "strnum": "^1.0.5" + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" }, - "bin": { - "fxparser": "src/cli/cli.js" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-env": { - "version": "3.620.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz", - "integrity": "sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg==", + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.651.1.tgz", + "integrity": "sha512-QKA74Qs83FTUz3jS39kBuNbLAnm6cgDqomm7XS/BkYgtUq+1lI9WL97astNIuoYvumGIS58kuIa+I3ycOA4wgw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "3.609.0", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", + "@aws-sdk/credential-provider-env": "3.649.0", + "@aws-sdk/credential-provider-http": "3.649.0", + "@aws-sdk/credential-provider-ini": "3.651.1", + "@aws-sdk/credential-provider-process": "3.649.0", + "@aws-sdk/credential-provider-sso": "3.651.1", + "@aws-sdk/credential-provider-web-identity": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@smithy/credential-provider-imds": "^3.2.1", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-http": { - "version": "3.635.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.635.0.tgz", - "integrity": "sha512-iJyRgEjOCQlBMXqtwPLIKYc7Bsc6nqjrZybdMDenPDa+kmLg7xh8LxHsu9088e+2/wtLicE34FsJJIfzu3L82g==", + "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.649.0.tgz", + "integrity": "sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "3.609.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.1.3", + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.645.0.tgz", - "integrity": "sha512-LlZW0qwUwNlTaAIDCNpLbPsyXvS42pRIwF92fgtCQedmdnpN3XRUC6hcwSYI7Xru3GGKp3RnceOvsdOaRJORsw==", + "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.649.0.tgz", + "integrity": "sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/credential-provider-env": "3.620.1", - "@aws-sdk/credential-provider-http": "3.635.0", - "@aws-sdk/credential-provider-process": "3.620.1", - "@aws-sdk/credential-provider-sso": "3.645.0", - "@aws-sdk/credential-provider-web-identity": "3.621.0", - "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", + "@aws-sdk/types": "3.649.0", + "@smithy/fetch-http-handler": "^3.2.5", + "@smithy/node-http-handler": "^3.2.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", + "@smithy/util-stream": "^3.1.4", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.649.0.tgz", + "integrity": "sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.649.0.tgz", + "integrity": "sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.645.0" + "@aws-sdk/client-sts": "^3.649.0" } }, - "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.645.0.tgz", - "integrity": "sha512-eGFFuNvLeXjCJf5OCIuSEflxUowmK+bCS+lK4M8ofsYOEGAivdx7C0UPxNjHpvM8wKd8vpMl5phTeS9BWX5jMQ==", + "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/credential-provider-env": "3.620.1", - "@aws-sdk/credential-provider-http": "3.635.0", - "@aws-sdk/credential-provider-ini": "3.645.0", - "@aws-sdk/credential-provider-process": "3.620.1", - "@aws-sdk/credential-provider-sso": "3.645.0", - "@aws-sdk/credential-provider-web-identity": "3.621.0", - "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { @@ -1080,17 +2462,49 @@ } }, "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.645.0.tgz", - "integrity": "sha512-d6XuChAl5NCsCrUexc6AFb4efPmb9+66iwPylKG+iMTMYgO1ackfy1Q2/f35jdn0jolkPkzKsVyfzsEVoID6ew==", + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.651.1.tgz", + "integrity": "sha512-7jeU+Jbn65aDaNjkjWDQcXwjNTzpYNKovkSSRmfVpP5WYiKerVS5mrfg3RiBeiArou5igCUtYcOKlRJiGRO47g==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/client-sso": "3.645.0", - "@aws-sdk/token-providers": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", + "@aws-sdk/client-sso": "3.651.1", + "@aws-sdk/token-providers": "3.649.0", + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.649.0.tgz", + "integrity": "sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.649.0", + "@smithy/property-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.5", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.649.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { @@ -1127,22 +2541,22 @@ } }, "node_modules/@aws-sdk/lib-dynamodb": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.645.0.tgz", - "integrity": "sha512-VzgXayTZFZjnnES49D3kbAz1DiMzvmGxo89ujm6/tts6DTOTaORkVWkxvVSiv8TDIAnshVcZhcnde6EypWylUQ==", + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.651.1.tgz", + "integrity": "sha512-b5FYNUaogL+hiIG1F+L9CW6S+XXWaoPtYajIVTi6AbOVjiTxUqyeSdUK+oqnEKuCZ6CkY4kfedRwVchBprEmiw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/util-dynamodb": "3.645.0", - "@smithy/core": "^2.4.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", + "@aws-sdk/util-dynamodb": "3.651.1", + "@smithy/core": "^2.4.1", + "@smithy/smithy-client": "^3.3.0", + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.645.0" + "@aws-sdk/client-dynamodb": "^3.651.1" } }, "node_modules/@aws-sdk/middleware-bucket-endpoint": { @@ -1163,14 +2577,29 @@ } }, "node_modules/@aws-sdk/middleware-endpoint-discovery": { - "version": "3.620.0", + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.649.0.tgz", + "integrity": "sha512-deyv8Vx2a7+63NVrOURfUlyfxPbpbtJSPHLbQikHthuEs3dYol/5LXr1VonFe9dlzHRa1ZPMnA2ibOBmUCwz5g==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/endpoint-cache": "3.572.0", - "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", + "@aws-sdk/types": "3.649.0", + "@smithy/node-config-provider": "^3.1.5", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-endpoint-discovery/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { @@ -1465,15 +2894,28 @@ } }, "node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.645.0.tgz", - "integrity": "sha512-NpTAtqWK+49lRuxfz7st9for80r4NriCMK0RfdJSoPFVntjsSQiQ7+2nW2XL05uVY633e9DvCAw8YatX3zd1mw==", + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.649.0.tgz", + "integrity": "sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.645.0", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", + "@aws-sdk/types": "3.649.0", + "@aws-sdk/util-endpoints": "3.649.0", + "@smithy/protocol-http": "^4.1.1", + "@smithy/types": "^3.4.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { @@ -1553,9 +2995,9 @@ } }, "node_modules/@aws-sdk/util-dynamodb": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.645.0.tgz", - "integrity": "sha512-RiZyA1fx1/Crohr5ljK0ax73vtdJzOfSvdvnDB55wE/aP885srzoqA/dWaXvQm1mPGP6ypW2m8sS7mbzZ9bzSg==", + "version": "3.651.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.651.1.tgz", + "integrity": "sha512-/06/Ao3AnvTlHu5jFqpGwK9eqbjwHRTWmyFPo65gwuR1QQwxQbGw0QSnk2OMMUm1CeGmqARj93TYZif/71UheA==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" @@ -1564,18 +3006,31 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.645.0" + "@aws-sdk/client-dynamodb": "^3.651.1" } }, "node_modules/@aws-sdk/util-endpoints": { - "version": "3.645.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.645.0.tgz", - "integrity": "sha512-Oe+xaU4ic4PB1k3pb5VTC1/MWES13IlgpaQw01bVHGfwP6Yv6zZOxizRzca2Y3E+AyR+nKD7vXtHRY+w3bi4bg==", + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.649.0.tgz", + "integrity": "sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "3.609.0", - "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.5", + "@aws-sdk/types": "3.649.0", + "@smithy/types": "^3.4.0", + "@smithy/util-endpoints": "^2.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-endpoints/node_modules/@aws-sdk/types": { + "version": "3.649.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.649.0.tgz", + "integrity": "sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.0", "tslib": "^2.6.2" }, "engines": { @@ -2980,10 +4435,12 @@ } }, "node_modules/@smithy/abort-controller": { - "version": "3.1.1", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.4.tgz", + "integrity": "sha512-VupaALAQlXViW3/enTf/f5l5JZYSAxoJL7f0nanhNNKnww6DGCg1oYIuNP78KDugnkwthBO6iEcym16HhWV8RQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3006,13 +4463,15 @@ } }, "node_modules/@smithy/config-resolver": { - "version": "3.0.5", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.8.tgz", + "integrity": "sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", + "@smithy/util-middleware": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -3020,19 +4479,19 @@ } }, "node_modules/@smithy/core": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.4.0.tgz", - "integrity": "sha512-cHXq+FneIF/KJbt4q4pjN186+Jf4ZB0ZOqEaZMBhT79srEyGDDBV31NqBRBjazz8ppQ1bJbDJMY9ba5wKFV36w==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.4.3.tgz", + "integrity": "sha512-4LTusLqFMRVQUfC3RNuTg6IzYTeJNpydRdTKq7J5wdEyIRQSu3rGIa3s80mgG2hhe6WOZl9IqTSo1pgbn6EHhA==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.18", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.2", + "@smithy/types": "^3.4.2", "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", + "@smithy/util-middleware": "^3.0.6", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, @@ -3041,15 +4500,15 @@ } }, "node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz", - "integrity": "sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA==", + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.3.tgz", + "integrity": "sha512-VoxMzSzdvkkjMJNE38yQgx4CfnmT+Z+5EUXkg4x7yag93eQkVQgZvN3XBSHC/ylfBbLbAtdu7flTCChX9I+mVg==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/property-provider": "^3.1.6", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -3057,25 +4516,25 @@ } }, "node_modules/@smithy/eventstream-codec": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz", - "integrity": "sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.5.tgz", + "integrity": "sha512-6pu+PT2r+5ZnWEV3vLV1DzyrpJ0TmehQlniIDCSpZg6+Ji2SfOI38EqUyQ+O8lotVElCrfVc9chKtSMe9cmCZQ==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/crc32": "5.2.0", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "@smithy/util-hex-encoding": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/eventstream-serde-browser": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.6.tgz", - "integrity": "sha512-2hM54UWQUOrki4BtsUI1WzmD13/SeaqT/AB3EUJKbcver/WgKNaiJ5y5F5XXuVe6UekffVzuUDrBZVAA3AWRpQ==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.9.tgz", + "integrity": "sha512-PiQLo6OQmZAotJweIcObL1H44gkvuJACKMNqpBBe5Rf2Ax1DOcGi/28+feZI7yTe1ERHlQQaGnm8sSkyDUgsMg==", "license": "Apache-2.0", "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.5", - "@smithy/types": "^3.3.0", + "@smithy/eventstream-serde-universal": "^3.0.8", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3083,10 +4542,12 @@ } }, "node_modules/@smithy/eventstream-serde-config-resolver": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.6.tgz", + "integrity": "sha512-iew15It+c7WfnVowWkt2a7cdPp533LFJnpjDQgfZQcxv2QiOcyEcea31mnrk5PVbgo0nNH3VbYGq7myw2q/F6A==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3094,13 +4555,13 @@ } }, "node_modules/@smithy/eventstream-serde-node": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.5.tgz", - "integrity": "sha512-+upXvnHNyZP095s11jF5dhGw/Ihzqwl5G+/KtMnoQOpdfC3B5HYCcDVG9EmgkhJMXJlM64PyN5gjJl0uXFQehQ==", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.8.tgz", + "integrity": "sha512-6m+wI+fT0na+6oao6UqALVA38fsScCpoG5UO/A8ZSyGLnPM2i4MS1cFUhpuALgvLMxfYoTCh7qSeJa0aG4IWpQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.5", - "@smithy/types": "^3.3.0", + "@smithy/eventstream-serde-universal": "^3.0.8", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3108,13 +4569,13 @@ } }, "node_modules/@smithy/eventstream-serde-universal": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.5.tgz", - "integrity": "sha512-5u/nXbyoh1s4QxrvNre9V6vfyoLWuiVvvd5TlZjGThIikc3G+uNiG9uOTCWweSRjv1asdDIWK7nOmN7le4RYHQ==", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.8.tgz", + "integrity": "sha512-09tqzIQ6e+7jLqGvRji1yJoDbL/zob0OFhq75edgStWErGLf16+yI5hRc/o9/YAybOhUZs/swpW2SPn892G5Gg==", "license": "Apache-2.0", "dependencies": { - "@smithy/eventstream-codec": "^3.1.2", - "@smithy/types": "^3.3.0", + "@smithy/eventstream-codec": "^3.1.5", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3122,31 +4583,37 @@ } }, "node_modules/@smithy/fetch-http-handler": { - "version": "3.2.4", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.7.tgz", + "integrity": "sha512-Ra6IPI1spYLO+t62/3jQbodjOwAbto9wlpJdHZwkycm0Kit+GVpzHW/NMmSgY4rK1bjJ4qLAmCnaBzePO5Nkkg==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/querystring-builder": "^3.0.6", + "@smithy/types": "^3.4.2", "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/hash-blob-browser": { - "version": "3.1.2", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.5.tgz", + "integrity": "sha512-Vi3eoNCmao4iKglS80ktYnBOIqZhjbDDwa1IIbF/VaJ8PsHnZTQ5wSicicPrU7nTI4JPFn92/txzWkh4GlK18Q==", "license": "Apache-2.0", "dependencies": { "@smithy/chunked-blob-reader": "^3.0.0", "@smithy/chunked-blob-reader-native": "^3.0.0", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" } }, "node_modules/@smithy/hash-node": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.6.tgz", + "integrity": "sha512-c/FHEdKK/7DU2z6ZE91L36ahyXWayR3B+FzELjnYq7wH5YqIseM24V+pWCS9kFn1Ln8OFGTf+pyYPiHZuX0s/Q==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "@smithy/util-buffer-from": "^3.0.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" @@ -3156,10 +4623,12 @@ } }, "node_modules/@smithy/hash-stream-node": { - "version": "3.1.2", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.1.5.tgz", + "integrity": "sha512-61CyFCzqN3VBfcnGX7mof/rkzLb8oHjm4Lr6ZwBIRpBssBb8d09ChrZAqinP2rUrA915BRNkq9NpJz18N7+3hQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, @@ -3168,10 +4637,12 @@ } }, "node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.6.tgz", + "integrity": "sha512-czM7Ioq3s8pIXht7oD+vmgy4Wfb4XavU/k/irO8NdXFFOx7YAlsCCcKOh/lJD1mJSYQqiR7NmpZ9JviryD/7AQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" } }, @@ -3186,20 +4657,24 @@ } }, "node_modules/@smithy/md5-js": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.6.tgz", + "integrity": "sha512-Ze690T8O3M5SVbb70WormwrKzVf9QQRtIuxtJDgpUQDkmt+PtdYDetBbyCbF9ryupxLw6tgzWKgwffAShhVIXQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.8.tgz", + "integrity": "sha512-VuyszlSO49WKh3H9/kIO2kf07VUwGV80QRiaDxUfP8P8UKlokz381ETJvwLhwuypBYhLymCYyNhB3fLAGBX2og==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3207,15 +4682,17 @@ } }, "node_modules/@smithy/middleware-endpoint": { - "version": "3.1.0", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.3.tgz", + "integrity": "sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-middleware": "^3.0.3", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-middleware": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -3223,18 +4700,18 @@ } }, "node_modules/@smithy/middleware-retry": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.15.tgz", - "integrity": "sha512-iTMedvNt1ApdvkaoE8aSDuwaoc+BhvHqttbA/FO4Ty+y/S5hW6Ci/CTScG7vam4RYJWZxdTElc3MEfHRVH6cgQ==", + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.18.tgz", + "integrity": "sha512-YU1o/vYob6vlqZdd97MN8cSXRToknLXhFBL3r+c9CZcnxkO/rgNZ++CfgX2vsmnEKvlqdi26+SRtSzlVp5z6Mg==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/protocol-http": "^4.1.3", + "@smithy/service-error-classification": "^3.0.6", + "@smithy/smithy-client": "^3.3.2", + "@smithy/types": "^3.4.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", "tslib": "^2.6.2", "uuid": "^9.0.1" }, @@ -3256,10 +4733,12 @@ } }, "node_modules/@smithy/middleware-serde": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.6.tgz", + "integrity": "sha512-KKTUSl1MzOM0MAjGbudeaVNtIDo+PpekTBkCNwvfZlKndodrnvRo+00USatiyLOc0ujjO9UydMRu3O9dYML7ag==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3267,10 +4746,12 @@ } }, "node_modules/@smithy/middleware-stack": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.6.tgz", + "integrity": "sha512-2c0eSYhTQ8xQqHMcRxLMpadFbTXg6Zla5l0mwNftFCZMQmuhI7EbAJMx6R5eqfuV3YbJ3QGyS3d5uSmrHV8Khg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3278,12 +4759,14 @@ } }, "node_modules/@smithy/node-config-provider": { - "version": "3.1.4", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.7.tgz", + "integrity": "sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3291,13 +4774,15 @@ } }, "node_modules/@smithy/node-http-handler": { - "version": "3.1.4", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.2.tgz", + "integrity": "sha512-42Cy4/oT2O+00aiG1iQ7Kd7rE6q8j7vI0gFfnMlUiATvyo8vefJkhb7O10qZY0jAqo5WZdUzfl9IV6wQ3iMBCg==", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^3.1.1", - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/abort-controller": "^3.1.4", + "@smithy/protocol-http": "^4.1.3", + "@smithy/querystring-builder": "^3.0.6", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3305,10 +4790,12 @@ } }, "node_modules/@smithy/property-provider": { - "version": "3.1.3", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.6.tgz", + "integrity": "sha512-NK3y/T7Q/Bw+Z8vsVs9MYIQ5v7gOX7clyrXcwhhIBQhbPgRl6JDrZbusO9qWDhcEus75Tg+VCxtIRfo3H76fpw==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3316,10 +4803,12 @@ } }, "node_modules/@smithy/protocol-http": { - "version": "4.1.0", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.3.tgz", + "integrity": "sha512-GcbMmOYpH9iRqtC05RbRnc/0FssxSTHlmaNhYBTgSgNCYpdR3Kt88u5GAZTBmouzv+Zlj/VRv92J9ruuDeJuEw==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3327,10 +4816,12 @@ } }, "node_modules/@smithy/querystring-builder": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.6.tgz", + "integrity": "sha512-sQe08RunoObe+Usujn9+R2zrLuQERi3CWvRO3BvnoWSYUaIrLKuAIeY7cMeDax6xGyfIP3x/yFWbEKSXvOnvVg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "@smithy/util-uri-escape": "^3.0.0", "tslib": "^2.6.2" }, @@ -3339,10 +4830,12 @@ } }, "node_modules/@smithy/querystring-parser": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.6.tgz", + "integrity": "sha512-UJKw4LlEkytzz2Wq+uIdHf6qOtFfee/o7ruH0jF5I6UAuU+19r9QV7nU3P/uI0l6+oElRHmG/5cBBcGJrD7Ozg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3350,20 +4843,24 @@ } }, "node_modules/@smithy/service-error-classification": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.6.tgz", + "integrity": "sha512-53SpchU3+DUZrN7J6sBx9tBiCVGzsib2e4sc512Q7K9fpC5zkJKs6Z9s+qbMxSYrkEkle6hnMtrts7XNkMJJMg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0" + "@smithy/types": "^3.4.2" }, "engines": { "node": ">=16.0.0" } }, "node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.4", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.7.tgz", + "integrity": "sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3371,14 +4868,16 @@ } }, "node_modules/@smithy/signature-v4": { - "version": "4.1.0", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.1.3.tgz", + "integrity": "sha512-YD2KYSCEEeFHcWZ1E3mLdAaHl8T/TANh6XwmocQ6nPcTdBfh4N5fusgnblnWDlnlU1/cUqEq3PiGi22GmT2Lkg==", "license": "Apache-2.0", "dependencies": { "@smithy/is-array-buffer": "^3.0.0", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", "@smithy/util-hex-encoding": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", + "@smithy/util-middleware": "^3.0.6", "@smithy/util-uri-escape": "^3.0.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" @@ -3388,16 +4887,16 @@ } }, "node_modules/@smithy/smithy-client": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.2.0.tgz", - "integrity": "sha512-pDbtxs8WOhJLJSeaF/eAbPgXg4VVYFlRcL/zoNYA5WbG3wBL06CHtBSg53ppkttDpAJ/hdiede+xApip1CwSLw==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.3.2.tgz", + "integrity": "sha512-RKDfhF2MTwXl7jan5d7QfS9eCC6XJbO3H+EZAvLQN8A5in4ib2Ml4zoeLo57w9QrqFekBPcsoC2hW3Ekw4vQ9Q==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.1.3", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "@smithy/util-stream": "^3.1.6", "tslib": "^2.6.2" }, "engines": { @@ -3405,7 +4904,9 @@ } }, "node_modules/@smithy/types": { - "version": "3.3.0", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.4.2.tgz", + "integrity": "sha512-tHiFcfcVedVBHpmHUEUHOCCih8iZbIAYn9NvPsNzaPm/237I3imdDdZoOC8c87H5HBAVEa06tTgb+OcSWV9g5w==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" @@ -3415,11 +4916,13 @@ } }, "node_modules/@smithy/url-parser": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.6.tgz", + "integrity": "sha512-47Op/NU8Opt49KyGpHtVdnmmJMsp2hEwBdyjuFB9M2V5QVOwA7pBhhxKN5z6ztKGrMw76gd8MlbPuzzvaAncuQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/querystring-parser": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/querystring-parser": "^3.0.6", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" } }, @@ -3474,14 +4977,14 @@ } }, "node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.15.tgz", - "integrity": "sha512-FZ4Psa3vjp8kOXcd3HJOiDPBCWtiilLl57r0cnNtq/Ga9RSDrM5ERL6xt+tO43+2af6Pn5Yp92x2n5vPuduNfg==", + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.18.tgz", + "integrity": "sha512-/eveCzU6Z6Yw8dlYQLA4rcK30XY0E4L3lD3QFHm59mzDaWYelrXE1rlynuT3J6qxv+5yNy3a1JuzhG5hk5hcmw==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/smithy-client": "^3.3.2", + "@smithy/types": "^3.4.2", "bowser": "^2.11.0", "tslib": "^2.6.2" }, @@ -3490,17 +4993,17 @@ } }, "node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.15.tgz", - "integrity": "sha512-KSyAAx2q6d0t6f/S4XB2+3+6aQacm3aLMhs9aLMqn18uYGUepbdssfogW5JQZpc6lXNBnp0tEnR5e9CEKmEd7A==", + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.18.tgz", + "integrity": "sha512-9cfzRjArtOFPlTYRREJk00suUxVXTgbrzVncOyMRTUeMKnecG/YentLF3cORa+R6mUOMSrMSnT18jos1PKqK6Q==", "license": "Apache-2.0", "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/credential-provider-imds": "^3.2.3", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/property-provider": "^3.1.6", + "@smithy/smithy-client": "^3.3.2", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3508,11 +5011,13 @@ } }, "node_modules/@smithy/util-endpoints": { - "version": "2.0.5", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.2.tgz", + "integrity": "sha512-FEISzffb4H8DLzGq1g4MuDpcv6CIG15fXoQzDH9SjpRJv6h7J++1STFWWinilG0tQh9H1v2UKWG19Jjr2B16zQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3530,10 +5035,12 @@ } }, "node_modules/@smithy/util-middleware": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.6.tgz", + "integrity": "sha512-BxbX4aBhI1O9p87/xM+zWy0GzT3CEVcXFPBRDoHAM+pV0eSW156pR+PSYEz0DQHDMYDsYAflC2bQNz2uaDBUZQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3541,11 +5048,13 @@ } }, "node_modules/@smithy/util-retry": { - "version": "3.0.3", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.6.tgz", + "integrity": "sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==", "license": "Apache-2.0", "dependencies": { - "@smithy/service-error-classification": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/service-error-classification": "^3.0.6", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3553,12 +5062,14 @@ } }, "node_modules/@smithy/util-stream": { - "version": "3.1.3", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.1.6.tgz", + "integrity": "sha512-lQEUfTx1ht5CRdvIjdAN/gUL6vQt2wSARGGLaBHNe+iJSkRHlWzY+DOn0mFTmTgyU3jcI5n9DkT5gTzYuSOo6A==", "license": "Apache-2.0", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/fetch-http-handler": "^3.2.7", + "@smithy/node-http-handler": "^3.2.2", + "@smithy/types": "^3.4.2", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", "@smithy/util-hex-encoding": "^3.0.0", @@ -3591,11 +5102,13 @@ } }, "node_modules/@smithy/util-waiter": { - "version": "3.1.2", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.1.5.tgz", + "integrity": "sha512-jYOSvM3H6sZe3CHjzD2VQNCjWBJs+4DbtwBMvUp9y5EnnwNa7NQxTeYeQw0CKCAdGGZ3QvVkyJmvbvs5M/B10A==", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^3.1.1", - "@smithy/types": "^3.3.0", + "@smithy/abort-controller": "^3.1.4", + "@smithy/types": "^3.4.2", "tslib": "^2.6.2" }, "engines": { @@ -3706,17 +5219,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.4.0.tgz", - "integrity": "sha512-rg8LGdv7ri3oAlenMACk9e+AR4wUV0yrrG+XKsGKOK0EVgeEDqurkXMPILG2836fW4ibokTB5v4b6Z9+GYQDEw==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.5.0.tgz", + "integrity": "sha512-lHS5hvz33iUFQKuPFGheAB84LwcJ60G8vKnEhnfcK1l8kGVLro2SFYW6K0/tj8FUhRJ0VHyg1oAfg50QGbPPHw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.4.0", - "@typescript-eslint/type-utils": "8.4.0", - "@typescript-eslint/utils": "8.4.0", - "@typescript-eslint/visitor-keys": "8.4.0", + "@typescript-eslint/scope-manager": "8.5.0", + "@typescript-eslint/type-utils": "8.5.0", + "@typescript-eslint/utils": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -3740,16 +5253,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.4.0.tgz", - "integrity": "sha512-NHgWmKSgJk5K9N16GIhQ4jSobBoJwrmURaLErad0qlLjrpP5bECYg+wxVTGlGZmJbU03jj/dfnb6V9bw+5icsA==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.5.0.tgz", + "integrity": "sha512-gF77eNv0Xz2UJg/NbpWJ0kqAm35UMsvZf1GHj8D9MRFTj/V3tAciIWXfmPLsAAF/vUlpWPvUDyH1jjsr0cMVWw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "8.4.0", - "@typescript-eslint/types": "8.4.0", - "@typescript-eslint/typescript-estree": "8.4.0", - "@typescript-eslint/visitor-keys": "8.4.0", + "@typescript-eslint/scope-manager": "8.5.0", + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/typescript-estree": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0", "debug": "^4.3.4" }, "engines": { @@ -3769,14 +5282,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.4.0.tgz", - "integrity": "sha512-n2jFxLeY0JmKfUqy3P70rs6vdoPjHK8P/w+zJcV3fk0b0BwRXC/zxRTEnAsgYT7MwdQDt/ZEbtdzdVC+hcpF0A==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.5.0.tgz", + "integrity": "sha512-06JOQ9Qgj33yvBEx6tpC8ecP9o860rsR22hWMEd12WcTRrfaFgHr2RB/CA/B+7BMhHkXT4chg2MyboGdFGawYg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.4.0", - "@typescript-eslint/visitor-keys": "8.4.0" + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3787,14 +5300,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.4.0.tgz", - "integrity": "sha512-pu2PAmNrl9KX6TtirVOrbLPLwDmASpZhK/XU7WvoKoCUkdtq9zF7qQ7gna0GBZFN0hci0vHaSusiL2WpsQk37A==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.5.0.tgz", + "integrity": "sha512-N1K8Ix+lUM+cIDhL2uekVn/ZD7TZW+9/rwz8DclQpcQ9rk4sIL5CAlBC0CugWKREmDjBzI/kQqU4wkg46jWLYA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.4.0", - "@typescript-eslint/utils": "8.4.0", + "@typescript-eslint/typescript-estree": "8.5.0", + "@typescript-eslint/utils": "8.5.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -3812,9 +5325,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.4.0.tgz", - "integrity": "sha512-T1RB3KQdskh9t3v/qv7niK6P8yvn7ja1mS7QK7XfRVL6wtZ8/mFs/FHf4fKvTA0rKnqnYxl/uHFNbnEt0phgbw==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.5.0.tgz", + "integrity": "sha512-qjkormnQS5wF9pjSi6q60bKUHH44j2APxfh9TQRXK8wbYVeDYYdYJGIROL87LGZZ2gz3Rbmjc736qyL8deVtdw==", "dev": true, "license": "MIT", "engines": { @@ -3826,14 +5339,14 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.4.0.tgz", - "integrity": "sha512-kJ2OIP4dQw5gdI4uXsaxUZHRwWAGpREJ9Zq6D5L0BweyOrWsL6Sz0YcAZGWhvKnH7fm1J5YFE1JrQL0c9dd53A==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.5.0.tgz", + "integrity": "sha512-vEG2Sf9P8BPQ+d0pxdfndw3xIXaoSjliG0/Ejk7UggByZPKXmJmw3GW5jV2gHNQNawBUyfahoSiCFVov0Ruf7Q==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "8.4.0", - "@typescript-eslint/visitor-keys": "8.4.0", + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", @@ -3855,16 +5368,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.4.0.tgz", - "integrity": "sha512-swULW8n1IKLjRAgciCkTCafyTHHfwVQFt8DovmaF69sKbOxTSFMmIZaSHjqO9i/RV0wIblaawhzvtva8Nmm7lQ==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.5.0.tgz", + "integrity": "sha512-6yyGYVL0e+VzGYp60wvkBHiqDWOpT63pdMV2CVG4LVDd5uR6q1qQN/7LafBZtAtNIn/mqXjsSeS5ggv/P0iECw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.4.0", - "@typescript-eslint/types": "8.4.0", - "@typescript-eslint/typescript-estree": "8.4.0" + "@typescript-eslint/scope-manager": "8.5.0", + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/typescript-estree": "8.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3878,13 +5391,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.4.0.tgz", - "integrity": "sha512-zTQD6WLNTre1hj5wp09nBIDiOc2U5r/qmzo7wxPn4ZgAjHql09EofqhF9WF+fZHzL5aCyaIpPcT2hyxl73kr9A==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.5.0.tgz", + "integrity": "sha512-yTPqMnbAZJNy2Xq2XU8AdtOW9tJIr+UQb64aXB9f3B1498Zx9JorVgFJcZpEc9UBuCCrdzKID2RGAMkYcDtZOw==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.4.0", + "@typescript-eslint/types": "8.5.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -4846,6 +6359,38 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/command-line-args": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-6.0.0.tgz", + "integrity": "sha512-zDdHxHzlCp/gA1gy0VtPK3YL0Aob3ijJdwZ7H3HSl55hh8EziLtRlyj/od8EGRJfX8IjussC/mQkScl2Ms5Suw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "find-replace": "^5.0.1", + "lodash.camelcase": "^4.3.0", + "typical": "^7.1.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/command-line-usage": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-7.0.3.tgz", + "integrity": "sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "chalk-template": "^0.4.0", + "table-layout": "^4.1.0", + "typical": "^7.1.1" + }, + "engines": { + "node": ">=12.20.0" + } + }, "node_modules/commander": { "version": "12.1.0", "dev": true, @@ -5371,9 +6916,9 @@ "license": "MIT" }, "node_modules/dmd": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/dmd/-/dmd-7.0.5.tgz", - "integrity": "sha512-L/+QeMhaAbKufDUVxbWMprigu+YB0lhLS76KzMc151q2OFCvgbgSwqPbM8v3Xj0uDRPeGuYo71RCSyHKf+pJjA==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/dmd/-/dmd-7.0.6.tgz", + "integrity": "sha512-Z2044iEaeaXuNY+FItBshyrFtHyMkokzlTDlD9LeB7xEA6tmfmME5w1SJYapnfDYgF82QD8GgZ+jZ5V2dcN0Iw==", "dev": true, "license": "MIT", "dependencies": { @@ -6391,6 +7936,19 @@ "node": ">=8" } }, + "node_modules/find-replace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-5.0.1.tgz", + "integrity": "sha512-o5/Y8HrCNRuFF5rdNTkX8Vhv6kTFTV0t1zIoigwlCdbkA9qaapRzxvWPND2VvlFa9LBI05Q1i8ml/saMqkOJUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/find-up": { "version": "5.0.0", "dev": true, @@ -7319,9 +8877,9 @@ } }, "node_modules/husky": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.5.tgz", - "integrity": "sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==", + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.6.tgz", + "integrity": "sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==", "dev": true, "license": "MIT", "bin": { @@ -7941,9 +9499,9 @@ } }, "node_modules/jose": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/jose/-/jose-5.8.0.tgz", - "integrity": "sha512-E7CqYpL/t7MMnfGnK/eg416OsFCVUrU/Y3Vwe7QjKhu/BkS1Ms455+2xsqZQVN57/U2MHMBvEb5SrmAZWAIntA==", + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/jose/-/jose-5.9.2.tgz", + "integrity": "sha512-ILI2xx/I57b20sd7rHZvgiiQrmp2mcotwsAH+5ajbpFQbrYVQdNHYlQhoA5cFb78CgtBOxtC05TeA+mcgkuCqQ==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/panva" @@ -8045,23 +9603,10 @@ "node": ">=12" } }, - "node_modules/jsdoc-parse/node_modules/find-replace": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-5.0.1.tgz", - "integrity": "sha512-o5/Y8HrCNRuFF5rdNTkX8Vhv6kTFTV0t1zIoigwlCdbkA9qaapRzxvWPND2VvlFa9LBI05Q1i8ml/saMqkOJUQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^6.2.2" - }, - "engines": { - "node": ">=14" - } - }, "node_modules/jsdoc-to-markdown": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-9.0.0.tgz", - "integrity": "sha512-wUgad4sac29h3uKbaqV9D49BqHXB0JvoZH3u8Jt6f4hMMcGPtA8RNwV31YJpgsZV5QFMxaT9ben9h52I6rGyUQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-9.0.1.tgz", + "integrity": "sha512-iWPQKA43vxKDe/dixF+GHjAU1ds0P2yXJLBdeKGKXMggjgsy3sHlnIrT6IdxcUB8vTGQy/Z2c3ureUbDWwYL3A==", "dev": true, "license": "MIT", "dependencies": { @@ -8069,7 +9614,7 @@ "command-line-args": "^6.0.0", "command-line-usage": "^7.0.3", "config-master": "^3.1.0", - "dmd": "^7.0.5", + "dmd": "^7.0.6", "jsdoc-api": "^9.3.1", "jsdoc-parse": "^6.2.4", "walk-back": "^5.1.1" @@ -8089,85 +9634,6 @@ } } }, - "node_modules/jsdoc-to-markdown/node_modules/command-line-args": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-6.0.0.tgz", - "integrity": "sha512-zDdHxHzlCp/gA1gy0VtPK3YL0Aob3ijJdwZ7H3HSl55hh8EziLtRlyj/od8EGRJfX8IjussC/mQkScl2Ms5Suw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^6.2.2", - "find-replace": "^5.0.1", - "lodash.camelcase": "^4.3.0", - "typical": "^7.1.1" - }, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/jsdoc-to-markdown/node_modules/command-line-usage": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-7.0.3.tgz", - "integrity": "sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^6.2.2", - "chalk-template": "^0.4.0", - "table-layout": "^4.1.0", - "typical": "^7.1.1" - }, - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/jsdoc-to-markdown/node_modules/find-replace": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-5.0.1.tgz", - "integrity": "sha512-o5/Y8HrCNRuFF5rdNTkX8Vhv6kTFTV0t1zIoigwlCdbkA9qaapRzxvWPND2VvlFa9LBI05Q1i8ml/saMqkOJUQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^6.2.2" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/jsdoc-to-markdown/node_modules/table-layout": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-4.1.1.tgz", - "integrity": "sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-back": "^6.2.2", - "wordwrapjs": "^5.1.0" - }, - "engines": { - "node": ">=12.17" - } - }, - "node_modules/jsdoc-to-markdown/node_modules/typical": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/typical/-/typical-7.1.1.tgz", - "integrity": "sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.17" - } - }, - "node_modules/jsdoc-to-markdown/node_modules/wordwrapjs": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-5.1.0.tgz", - "integrity": "sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.17" - } - }, "node_modules/jsdoc/node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", @@ -14023,9 +15489,9 @@ "license": "ISC" }, "node_modules/semantic-release": { - "version": "24.1.0", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.1.0.tgz", - "integrity": "sha512-FwaE2hKDHQn9G6GA7xmqsc9WnsjaFD/ppLM5PUg56Do9oKSCf+vH6cPeb3hEBV/m06n8Sh9vbVqPjHu/1onzQw==", + "version": "24.1.1", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.1.1.tgz", + "integrity": "sha512-4Ax2GxD411jUe9IdhOjMLuN+6wAj+aKjvOGngByrpD/iKL+UKN/2puQglhyI4gxNyy9XzEBMzBwbqpnEwbXGEg==", "dev": true, "license": "MIT", "dependencies": { @@ -14044,7 +15510,7 @@ "get-stream": "^6.0.0", "git-log-parser": "^1.2.0", "hook-std": "^3.0.0", - "hosted-git-info": "^7.0.0", + "hosted-git-info": "^8.0.0", "import-from-esm": "^1.3.1", "lodash-es": "^4.17.21", "marked": "^12.0.0", @@ -14353,6 +15819,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/hosted-git-info": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.0.0.tgz", + "integrity": "sha512-4nw3vOVR+vHUOT8+U4giwe2tcGv+R3pwwRidUe67DoMBTjhrfr6rZYJVVwdkBE+Um050SG+X9tf0Jo4fOpn01w==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, "node_modules/semantic-release/node_modules/human-signals": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz", @@ -14699,12 +16178,14 @@ } }, "node_modules/sinon": { - "version": "18.0.0", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-18.0.1.tgz", + "integrity": "sha512-a2N2TDY1uGviajJ6r4D1CyRAkzE9NNVlYOV1wX5xQDuAk0ONgzgRl0EjCQuRCPxOwp13ghsMwt9Gdldujs39qw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.1", - "@sinonjs/fake-timers": "^11.2.2", + "@sinonjs/fake-timers": "11.2.2", "@sinonjs/samsam": "^8.0.0", "diff": "^5.2.0", "nise": "^6.0.0", @@ -14798,16 +16279,6 @@ } } }, - "node_modules/sort-array/node_modules/typical": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/typical/-/typical-7.1.1.tgz", - "integrity": "sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.17" - } - }, "node_modules/source-map": { "version": "0.6.1", "dev": true, @@ -15140,6 +16611,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/table-layout": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-4.1.1.tgz", + "integrity": "sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-back": "^6.2.2", + "wordwrapjs": "^5.1.0" + }, + "engines": { + "node": ">=12.17" + } + }, "node_modules/temp-dir": { "version": "3.0.0", "dev": true, @@ -15458,7 +16943,9 @@ } }, "node_modules/typescript": { - "version": "5.5.4", + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -15469,6 +16956,16 @@ "node": ">=14.17" } }, + "node_modules/typical": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/typical/-/typical-7.1.1.tgz", + "integrity": "sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.17" + } + }, "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", @@ -16017,6 +17514,16 @@ "dev": true, "license": "MIT" }, + "node_modules/wordwrapjs": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-5.1.0.tgz", + "integrity": "sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.17" + } + }, "node_modules/workerpool": { "version": "6.5.1", "dev": true, @@ -16315,9 +17822,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -17758,7 +19265,7 @@ }, "packages/spacecat-shared-content-client": { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.5", + "version": "1.0.6", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -17770,9 +19277,9 @@ "chai-as-promised": "8.0.0", "esmock": "2.6.7", "nock": "13.5.4", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -18190,8 +19697,8 @@ "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.645.0", - "@aws-sdk/lib-dynamodb": "3.645.0", + "@aws-sdk/client-dynamodb": "3.651.1", + "@aws-sdk/lib-dynamodb": "3.651.1", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" @@ -18200,7 +19707,7 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "dynamo-db-local": "9.2.1", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0" }, "engines": { @@ -19259,8 +20766,8 @@ "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-utils": "1.1.0", - "@aws-sdk/client-dynamodb": "3.645.0", - "@aws-sdk/lib-dynamodb": "3.645.0" + "@aws-sdk/client-dynamodb": "3.651.1", + "@aws-sdk/lib-dynamodb": "3.651.1" }, "devDependencies": { "chai": "5.1.1" @@ -19299,7 +20806,7 @@ "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-http-utils": "1.1.4", "@adobe/spacecat-shared-utils": "1.15.1", - "@aws-sdk/client-secrets-manager": "3.645.0", + "@aws-sdk/client-secrets-manager": "3.651.1", "google-auth-library": "9.14.1", "googleapis": "144.0.0" }, @@ -19307,9 +20814,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -21466,9 +22973,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -21557,13 +23064,13 @@ "@adobe/fetch": "4.1.8", "@adobe/spacecat-shared-data-access": "1.41.3", "@adobe/spacecat-shared-utils": "1.19.1", - "jose": "5.8.0" + "jose": "5.9.2" }, "devDependencies": { "@adobe/helix-shared-wrap": "2.0.2", "chai": "5.1.1", "chai-as-promised": "8.0.0", - "sinon": "18.0.0" + "sinon": "18.0.1" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -27592,9 +29099,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -27659,9 +29166,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -27685,10 +29192,10 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", "slack-block-builder": "2.8.0", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "engines": { "node": "^20.0.0 <21.0.0", @@ -27742,8 +29249,8 @@ "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.645.0", - "@aws-sdk/client-sqs": "3.645.0", + "@aws-sdk/client-s3": "3.651.1", + "@aws-sdk/client-sqs": "3.651.1", "@json2csv/plainjs": "7.0.6" }, "devDependencies": { @@ -27751,9 +29258,9 @@ "@adobe/spacecat-shared-data-access": "file:../spacecat-shared-data-access", "chai": "5.1.1", "chai-as-promised": "8.0.0", - "husky": "9.1.5", + "husky": "9.1.6", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0" }, "engines": { diff --git a/package.json b/package.json index 35858562..132105b5 100644 --- a/package.json +++ b/package.json @@ -36,20 +36,20 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "8.4.0", - "@typescript-eslint/parser": "8.4.0", + "@typescript-eslint/eslint-plugin": "8.5.0", + "@typescript-eslint/parser": "8.5.0", "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", - "husky": "9.1.5", - "jsdoc-to-markdown": "9.0.0", + "husky": "9.1.6", + "jsdoc-to-markdown": "9.0.1", "lint-staged": "15.2.10", "mocha": "10.7.3", "mocha-multi-reporters": "1.5.1", "nock": "13.5.5", - "semantic-release": "24.1.0", + "semantic-release": "24.1.1", "semantic-release-monorepo": "8.0.2", - "typescript": "5.5.4" + "typescript": "5.6.2" }, "lint-staged": { "*.js": "eslint" diff --git a/packages/spacecat-shared-ahrefs-client/package.json b/packages/spacecat-shared-ahrefs-client/package.json index 9065a8b7..6372f23c 100644 --- a/packages/spacecat-shared-ahrefs-client/package.json +++ b/packages/spacecat-shared-ahrefs-client/package.json @@ -42,8 +42,8 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 449c8a5a..9222869c 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -43,8 +43,8 @@ "chai-as-promised": "8.0.0", "esmock": "2.6.7", "nock": "13.5.4", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index c5581ab1..3f9cf045 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -35,8 +35,8 @@ "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.645.0", - "@aws-sdk/lib-dynamodb": "3.645.0", + "@aws-sdk/client-dynamodb": "3.651.1", + "@aws-sdk/lib-dynamodb": "3.651.1", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" @@ -45,7 +45,7 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "dynamo-db-local": "9.2.1", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0" } } diff --git a/packages/spacecat-shared-dynamo/package.json b/packages/spacecat-shared-dynamo/package.json index 6d0e4f58..25f2389d 100644 --- a/packages/spacecat-shared-dynamo/package.json +++ b/packages/spacecat-shared-dynamo/package.json @@ -33,8 +33,8 @@ "access": "public" }, "dependencies": { - "@aws-sdk/client-dynamodb": "3.645.0", - "@aws-sdk/lib-dynamodb": "3.645.0", + "@aws-sdk/client-dynamodb": "3.651.1", + "@aws-sdk/lib-dynamodb": "3.651.1", "@adobe/spacecat-shared-utils": "1.1.0" }, "devDependencies": { diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index 1133c3a5..5d165bc1 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -38,7 +38,7 @@ "@adobe/helix-universal": "5.0.5", "@adobe/spacecat-shared-http-utils": "1.1.4", "@adobe/spacecat-shared-utils": "1.15.1", - "@aws-sdk/client-secrets-manager": "3.645.0", + "@aws-sdk/client-secrets-manager": "3.651.1", "google-auth-library": "9.14.1", "googleapis": "144.0.0" }, @@ -46,8 +46,8 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-gpt-client/package.json b/packages/spacecat-shared-gpt-client/package.json index aacdebe7..1bc09579 100644 --- a/packages/spacecat-shared-gpt-client/package.json +++ b/packages/spacecat-shared-gpt-client/package.json @@ -43,8 +43,8 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-http-utils/package.json b/packages/spacecat-shared-http-utils/package.json index 39728b28..f9c16a4d 100644 --- a/packages/spacecat-shared-http-utils/package.json +++ b/packages/spacecat-shared-http-utils/package.json @@ -36,12 +36,12 @@ "@adobe/fetch": "4.1.8", "@adobe/spacecat-shared-utils": "1.19.1", "@adobe/spacecat-shared-data-access": "1.41.3", - "jose": "5.8.0" + "jose": "5.9.2" }, "devDependencies": { "@adobe/helix-shared-wrap": "2.0.2", "chai": "5.1.1", "chai-as-promised": "8.0.0", - "sinon": "18.0.0" + "sinon": "18.0.1" } } diff --git a/packages/spacecat-shared-ims-client/package.json b/packages/spacecat-shared-ims-client/package.json index df72d221..cac824f2 100644 --- a/packages/spacecat-shared-ims-client/package.json +++ b/packages/spacecat-shared-ims-client/package.json @@ -42,8 +42,8 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index 476fb9bd..188bbb1e 100644 --- a/packages/spacecat-shared-rum-api-client/package.json +++ b/packages/spacecat-shared-rum-api-client/package.json @@ -47,8 +47,8 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-slack-client/package.json b/packages/spacecat-shared-slack-client/package.json index 689f9014..0b8a97fe 100644 --- a/packages/spacecat-shared-slack-client/package.json +++ b/packages/spacecat-shared-slack-client/package.json @@ -41,9 +41,9 @@ "chai": "5.1.1", "chai-as-promised": "8.0.0", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0", "slack-block-builder": "2.8.0", - "typescript": "5.5.4" + "typescript": "5.6.2" } } diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index b866b20d..5dc2f798 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -38,15 +38,15 @@ "@adobe/spacecat-shared-data-access": "file:../spacecat-shared-data-access", "chai": "5.1.1", "chai-as-promised": "8.0.0", - "husky": "9.1.5", + "husky": "9.1.6", "nock": "13.5.5", - "sinon": "18.0.0", + "sinon": "18.0.1", "sinon-chai": "4.0.0" }, "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.645.0", - "@aws-sdk/client-sqs": "3.645.0", + "@aws-sdk/client-s3": "3.651.1", + "@aws-sdk/client-sqs": "3.651.1", "@json2csv/plainjs": "7.0.6" } } From 064b0a93f4bc4bb645b2d407c8761169e55ed9eb Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:26:31 +0000 Subject: [PATCH 34/46] chore(release): 1.5.3 [skip ci] # [@adobe/spacecat-shared-ahrefs-client-v1.5.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.2...@adobe/spacecat-shared-ahrefs-client-v1.5.3) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-ahrefs-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-ahrefs-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-ahrefs-client/CHANGELOG.md b/packages/spacecat-shared-ahrefs-client/CHANGELOG.md index 18fe9e50..0c722796 100644 --- a/packages/spacecat-shared-ahrefs-client/CHANGELOG.md +++ b/packages/spacecat-shared-ahrefs-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-ahrefs-client-v1.5.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.2...@adobe/spacecat-shared-ahrefs-client-v1.5.3) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-ahrefs-client-v1.5.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.1...@adobe/spacecat-shared-ahrefs-client-v1.5.2) (2024-09-04) diff --git a/packages/spacecat-shared-ahrefs-client/package.json b/packages/spacecat-shared-ahrefs-client/package.json index 6372f23c..1c6b4e40 100644 --- a/packages/spacecat-shared-ahrefs-client/package.json +++ b/packages/spacecat-shared-ahrefs-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-ahrefs-client", - "version": "1.5.2", + "version": "1.5.3", "description": "Shared modules of the Spacecat Services - Ahrefs Client", "type": "module", "engines": { From e0e4d43a1406fc063f608de2fed2f4c19bbff708 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:26:50 +0000 Subject: [PATCH 35/46] chore(release): 1.0.7 [skip ci] # [@adobe/spacecat-shared-content-client-v1.0.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.6...@adobe/spacecat-shared-content-client-v1.0.7) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-content-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-content-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-content-client/CHANGELOG.md b/packages/spacecat-shared-content-client/CHANGELOG.md index e17d2c07..8bbf6d54 100644 --- a/packages/spacecat-shared-content-client/CHANGELOG.md +++ b/packages/spacecat-shared-content-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-content-client-v1.0.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.6...@adobe/spacecat-shared-content-client-v1.0.7) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-content-client-v1.0.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.0.5...@adobe/spacecat-shared-content-client-v1.0.6) (2024-09-13) diff --git a/packages/spacecat-shared-content-client/package.json b/packages/spacecat-shared-content-client/package.json index 9222869c..263b22a6 100644 --- a/packages/spacecat-shared-content-client/package.json +++ b/packages/spacecat-shared-content-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-content-client", - "version": "1.0.6", + "version": "1.0.7", "description": "Shared modules of the Spacecat Services - Content Client", "type": "module", "engines": { From 7ebbe5c6371582c23cc91411c73a4738491679af Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:27:09 +0000 Subject: [PATCH 36/46] chore(release): 1.44.1 [skip ci] # [@adobe/spacecat-shared-data-access-v1.44.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.44.0...@adobe/spacecat-shared-data-access-v1.44.1) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-data-access/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-data-access/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-data-access/CHANGELOG.md b/packages/spacecat-shared-data-access/CHANGELOG.md index da57dc1c..c05d78b9 100644 --- a/packages/spacecat-shared-data-access/CHANGELOG.md +++ b/packages/spacecat-shared-data-access/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-data-access-v1.44.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.44.0...@adobe/spacecat-shared-data-access-v1.44.1) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-data-access-v1.44.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.43.4...@adobe/spacecat-shared-data-access-v1.44.0) (2024-09-11) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index 3f9cf045..a9b72264 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-data-access", - "version": "1.44.0", + "version": "1.44.1", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "engines": { From f78688e3f0b58ae39bb4d2afebd092ee68615b2e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:27:29 +0000 Subject: [PATCH 37/46] chore(release): 1.3.36 [skip ci] # [@adobe/spacecat-shared-dynamo-v1.3.36](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.35...@adobe/spacecat-shared-dynamo-v1.3.36) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-dynamo/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-dynamo/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-dynamo/CHANGELOG.md b/packages/spacecat-shared-dynamo/CHANGELOG.md index f09a1adf..725a49b6 100644 --- a/packages/spacecat-shared-dynamo/CHANGELOG.md +++ b/packages/spacecat-shared-dynamo/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-dynamo-v1.3.36](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.35...@adobe/spacecat-shared-dynamo-v1.3.36) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-dynamo-v1.3.35](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-dynamo-v1.3.34...@adobe/spacecat-shared-dynamo-v1.3.35) (2024-09-07) diff --git a/packages/spacecat-shared-dynamo/package.json b/packages/spacecat-shared-dynamo/package.json index 25f2389d..d0d7a179 100644 --- a/packages/spacecat-shared-dynamo/package.json +++ b/packages/spacecat-shared-dynamo/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-dynamo", - "version": "1.3.35", + "version": "1.3.36", "description": "Shared modules of the Spacecat Services - DynamoDB client", "type": "module", "engines": { From 53c692126efe7c86993ed9abea46ff0be52575c9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:27:51 +0000 Subject: [PATCH 38/46] chore(release): 1.2.5 [skip ci] # [@adobe/spacecat-shared-google-client-v1.2.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.4...@adobe/spacecat-shared-google-client-v1.2.5) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-google-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-google-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-google-client/CHANGELOG.md b/packages/spacecat-shared-google-client/CHANGELOG.md index 1940c00d..11f4a9f0 100644 --- a/packages/spacecat-shared-google-client/CHANGELOG.md +++ b/packages/spacecat-shared-google-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-google-client-v1.2.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.4...@adobe/spacecat-shared-google-client-v1.2.5) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-google-client-v1.2.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-google-client-v1.2.3...@adobe/spacecat-shared-google-client-v1.2.4) (2024-09-07) diff --git a/packages/spacecat-shared-google-client/package.json b/packages/spacecat-shared-google-client/package.json index 5d165bc1..c67b0ce2 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-google-client", - "version": "1.2.4", + "version": "1.2.5", "description": "Shared modules of the Spacecat Services - Google Client", "type": "module", "engines": { From 7c59d3b450b0f02808996278ad5d5d3f2aa204d6 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:28:09 +0000 Subject: [PATCH 39/46] chore(release): 1.2.13 [skip ci] # [@adobe/spacecat-shared-gpt-client-v1.2.13](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-gpt-client-v1.2.12...@adobe/spacecat-shared-gpt-client-v1.2.13) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-gpt-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-gpt-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-gpt-client/CHANGELOG.md b/packages/spacecat-shared-gpt-client/CHANGELOG.md index 4f915b3a..72105921 100644 --- a/packages/spacecat-shared-gpt-client/CHANGELOG.md +++ b/packages/spacecat-shared-gpt-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-gpt-client-v1.2.13](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-gpt-client-v1.2.12...@adobe/spacecat-shared-gpt-client-v1.2.13) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-gpt-client-v1.2.12](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-gpt-client-v1.2.11...@adobe/spacecat-shared-gpt-client-v1.2.12) (2024-08-24) diff --git a/packages/spacecat-shared-gpt-client/package.json b/packages/spacecat-shared-gpt-client/package.json index 1bc09579..02fb4bd3 100644 --- a/packages/spacecat-shared-gpt-client/package.json +++ b/packages/spacecat-shared-gpt-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-gpt-client", - "version": "1.2.12", + "version": "1.2.13", "description": "Shared modules of the Spacecat Services - GPT Client", "type": "module", "engines": { From b365a9c48f766053eca2897b8ffa8b5758a72ec0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:28:28 +0000 Subject: [PATCH 40/46] chore(release): 1.6.9 [skip ci] # [@adobe/spacecat-shared-http-utils-v1.6.9](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.6.8...@adobe/spacecat-shared-http-utils-v1.6.9) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-http-utils/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-http-utils/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-http-utils/CHANGELOG.md b/packages/spacecat-shared-http-utils/CHANGELOG.md index 76c14901..b8f1096b 100644 --- a/packages/spacecat-shared-http-utils/CHANGELOG.md +++ b/packages/spacecat-shared-http-utils/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-http-utils-v1.6.9](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.6.8...@adobe/spacecat-shared-http-utils-v1.6.9) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-http-utils-v1.6.8](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.6.7...@adobe/spacecat-shared-http-utils-v1.6.8) (2024-08-22) diff --git a/packages/spacecat-shared-http-utils/package.json b/packages/spacecat-shared-http-utils/package.json index f9c16a4d..08b5a524 100644 --- a/packages/spacecat-shared-http-utils/package.json +++ b/packages/spacecat-shared-http-utils/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-http-utils", - "version": "1.6.8", + "version": "1.6.9", "description": "Shared modules of the Spacecat Services - HTTP Utils", "type": "module", "engines": { From 33cb0f609b92ea973f0758a456fd4bcf789cf189 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:28:50 +0000 Subject: [PATCH 41/46] chore(release): 1.3.14 [skip ci] # [@adobe/spacecat-shared-ims-client-v1.3.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ims-client-v1.3.13...@adobe/spacecat-shared-ims-client-v1.3.14) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-ims-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-ims-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-ims-client/CHANGELOG.md b/packages/spacecat-shared-ims-client/CHANGELOG.md index f76efc5d..e34836ef 100644 --- a/packages/spacecat-shared-ims-client/CHANGELOG.md +++ b/packages/spacecat-shared-ims-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-ims-client-v1.3.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ims-client-v1.3.13...@adobe/spacecat-shared-ims-client-v1.3.14) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-ims-client-v1.3.13](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ims-client-v1.3.12...@adobe/spacecat-shared-ims-client-v1.3.13) (2024-08-24) diff --git a/packages/spacecat-shared-ims-client/package.json b/packages/spacecat-shared-ims-client/package.json index cac824f2..399a082e 100644 --- a/packages/spacecat-shared-ims-client/package.json +++ b/packages/spacecat-shared-ims-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-ims-client", - "version": "1.3.13", + "version": "1.3.14", "description": "Shared modules of the Spacecat Services - IMS Client", "type": "module", "engines": { From 2b1098ee8e53deaa2ffc73538d92a13b83f9d419 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:29:09 +0000 Subject: [PATCH 42/46] chore(release): 2.9.1 [skip ci] # [@adobe/spacecat-shared-rum-api-client-v2.9.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.9.0...@adobe/spacecat-shared-rum-api-client-v2.9.1) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-rum-api-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-rum-api-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-rum-api-client/CHANGELOG.md b/packages/spacecat-shared-rum-api-client/CHANGELOG.md index 0ffc0497..16315d3d 100644 --- a/packages/spacecat-shared-rum-api-client/CHANGELOG.md +++ b/packages/spacecat-shared-rum-api-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-rum-api-client-v2.9.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.9.0...@adobe/spacecat-shared-rum-api-client-v2.9.1) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-rum-api-client-v2.9.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.8.0...@adobe/spacecat-shared-rum-api-client-v2.9.0) (2024-09-03) diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index 188bbb1e..7ea1c5f3 100644 --- a/packages/spacecat-shared-rum-api-client/package.json +++ b/packages/spacecat-shared-rum-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-rum-api-client", - "version": "2.9.0", + "version": "2.9.1", "description": "Shared modules of the Spacecat Services - Rum API client", "type": "module", "engines": { From 620b4b86b51839bad104a7b5256b6645e8982c02 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:29:27 +0000 Subject: [PATCH 43/46] chore(release): 1.3.15 [skip ci] # [@adobe/spacecat-shared-slack-client-v1.3.15](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.14...@adobe/spacecat-shared-slack-client-v1.3.15) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-slack-client/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-slack-client/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-slack-client/CHANGELOG.md b/packages/spacecat-shared-slack-client/CHANGELOG.md index 6f5462da..458a7051 100644 --- a/packages/spacecat-shared-slack-client/CHANGELOG.md +++ b/packages/spacecat-shared-slack-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-slack-client-v1.3.15](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.14...@adobe/spacecat-shared-slack-client-v1.3.15) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-slack-client-v1.3.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.13...@adobe/spacecat-shared-slack-client-v1.3.14) (2024-09-07) diff --git a/packages/spacecat-shared-slack-client/package.json b/packages/spacecat-shared-slack-client/package.json index 0b8a97fe..a45c5d84 100644 --- a/packages/spacecat-shared-slack-client/package.json +++ b/packages/spacecat-shared-slack-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-slack-client", - "version": "1.3.14", + "version": "1.3.15", "description": "Shared modules of the Spacecat Services - Slack Client", "type": "module", "engines": { From 300b683d4068e6d55aa7b65bdd3f1fa7f5586703 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 14 Sep 2024 17:29:49 +0000 Subject: [PATCH 44/46] chore(release): 1.19.8 [skip ci] # [@adobe/spacecat-shared-utils-v1.19.8](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.7...@adobe/spacecat-shared-utils-v1.19.8) (2024-09-14) ### Bug Fixes * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) --- packages/spacecat-shared-utils/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-utils/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-utils/CHANGELOG.md b/packages/spacecat-shared-utils/CHANGELOG.md index e529c0b5..1794f5fa 100644 --- a/packages/spacecat-shared-utils/CHANGELOG.md +++ b/packages/spacecat-shared-utils/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-utils-v1.19.8](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.7...@adobe/spacecat-shared-utils-v1.19.8) (2024-09-14) + + +### Bug Fixes + +* **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846)) + # [@adobe/spacecat-shared-utils-v1.19.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.19.6...@adobe/spacecat-shared-utils-v1.19.7) (2024-09-07) diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index 5dc2f798..c3f679c3 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-utils", - "version": "1.19.7", + "version": "1.19.8", "description": "Shared modules of the Spacecat Services - utils", "type": "module", "engines": { From 1327a5bcc60fdb7dab0284e9d10d3001ad7fa403 Mon Sep 17 00:00:00 2001 From: Iulia Grumaz Date: Mon, 16 Sep 2024 14:52:45 +0300 Subject: [PATCH 45/46] fix(audits): extend expiry date for audits from 1 to 6 months (#363) Extend expiry date for audits from 1 to 6 months. Temporarily until we clarify how to rollup and summarize the data based on reporting use cases. --- packages/spacecat-shared-data-access/src/models/audit.js | 2 +- .../spacecat-shared-data-access/test/unit/models/audit.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/spacecat-shared-data-access/src/models/audit.js b/packages/spacecat-shared-data-access/src/models/audit.js index abc15be5..48bed660 100644 --- a/packages/spacecat-shared-data-access/src/models/audit.js +++ b/packages/spacecat-shared-data-access/src/models/audit.js @@ -25,7 +25,7 @@ export const AUDIT_TYPE_LHS_MOBILE = 'lhs-mobile'; export const AUDIT_TYPE_EXPERIMENTATION_ESS_MONTHLY = 'experimentation-ess-monthly'; export const AUDIT_TYPE_EXPERIMENTATION_ESS_DAILY = 'experimentation-ess-daily'; -const EXPIRES_IN_DAYS = 30; +const EXPIRES_IN_DAYS = 30 * 6; const AUDIT_TYPE_PROPERTIES = { [AUDIT_TYPE_LHS_DESKTOP]: ['performance', 'seo', 'accessibility', 'best-practices'], diff --git a/packages/spacecat-shared-data-access/test/unit/models/audit.test.js b/packages/spacecat-shared-data-access/test/unit/models/audit.test.js index 6d35eaf5..0607d391 100644 --- a/packages/spacecat-shared-data-access/test/unit/models/audit.test.js +++ b/packages/spacecat-shared-data-access/test/unit/models/audit.test.js @@ -109,7 +109,7 @@ describe('Audit Model Tests', () => { const audit = createAudit(validData); expect(audit.getExpiresAt()).to.be.a('Date'); const expectedDate = new Date(validData.auditedAt); - expectedDate.setDate(expectedDate.getDate() + 30); + expectedDate.setDate(expectedDate.getDate() + 30 * 6); expect(audit.getExpiresAt().toDateString()).to.equal(expectedDate.toDateString()); }); }); From 0362ba4fbade99737b4cd32d57e120b697b44fe0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 16 Sep 2024 11:55:12 +0000 Subject: [PATCH 46/46] chore(release): 1.44.2 [skip ci] # [@adobe/spacecat-shared-data-access-v1.44.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.44.1...@adobe/spacecat-shared-data-access-v1.44.2) (2024-09-16) ### Bug Fixes * **audits:** extend expiry date for audits from 1 to 6 months ([#363](https://github.com/adobe/spacecat-shared/issues/363)) ([1327a5b](https://github.com/adobe/spacecat-shared/commit/1327a5bcc60fdb7dab0284e9d10d3001ad7fa403)) --- packages/spacecat-shared-data-access/CHANGELOG.md | 7 +++++++ packages/spacecat-shared-data-access/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/spacecat-shared-data-access/CHANGELOG.md b/packages/spacecat-shared-data-access/CHANGELOG.md index c05d78b9..15c49ebc 100644 --- a/packages/spacecat-shared-data-access/CHANGELOG.md +++ b/packages/spacecat-shared-data-access/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-data-access-v1.44.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.44.1...@adobe/spacecat-shared-data-access-v1.44.2) (2024-09-16) + + +### Bug Fixes + +* **audits:** extend expiry date for audits from 1 to 6 months ([#363](https://github.com/adobe/spacecat-shared/issues/363)) ([1327a5b](https://github.com/adobe/spacecat-shared/commit/1327a5bcc60fdb7dab0284e9d10d3001ad7fa403)) + # [@adobe/spacecat-shared-data-access-v1.44.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.44.0...@adobe/spacecat-shared-data-access-v1.44.1) (2024-09-14) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index a9b72264..fe46eb17 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-data-access", - "version": "1.44.1", + "version": "1.44.2", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "engines": {