From ec9d83a9f59ba7c88b2be3181c60290eae132219 Mon Sep 17 00:00:00 2001 From: rachel-kittens Date: Fri, 12 Jul 2024 09:23:12 -0700 Subject: [PATCH 1/4] feat: audit top pages for language mismatch (SITES-22690) (#289) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added `variant.js` to `packages/spacecat-shared-rum-api-client/src/functions` to create languages & regions insights from RUM bundles. Please ensure your pull request adheres to the following guidelines: - [x] make sure to link the related issues in this description - [x] when merging / squashing, make sure the fixed issue references are visible in the commits, for easy compilation of release notes ## Related Issues [SITES-22690](https://jira.corp.adobe.com/browse/SITES-22690) Thanks for contributing! --------- Co-authored-by: Dominique Jäggi <1872195+solaris007@users.noreply.github.com> --- .../src/functions/variant.js | 121 + .../src/index.js | 2 + .../test/fixtures/bundles_for_variant.json | 9175 +++++++++++++++++ .../test/fixtures/variant.json | 35 + .../test/functions.test.js | 10 +- 5 files changed, 9342 insertions(+), 1 deletion(-) create mode 100644 packages/spacecat-shared-rum-api-client/src/functions/variant.js create mode 100644 packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json create mode 100644 packages/spacecat-shared-rum-api-client/test/fixtures/variant.json diff --git a/packages/spacecat-shared-rum-api-client/src/functions/variant.js b/packages/spacecat-shared-rum-api-client/src/functions/variant.js new file mode 100644 index 000000000..f9fa96a70 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/variant.js @@ -0,0 +1,121 @@ +/* + * 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 { isObject } from '@adobe/spacecat-shared-utils'; + +const VARIANT_CHECKPOINT = 'variant'; + +function getOrCreateLanguageObject(languageInsights, language) { + let languageObject = languageInsights.find((l) => l.language === language); + + if (isObject(languageObject)) { + return languageObject; + } + + languageObject = { + language, + count: 0, + mismatches: { + type1: { preferredLanguages: {} }, // Type 1 mismatches + type2: { preferredLanguages: {} }, // Type 2 mismatches + type3: { preferredLanguages: {} }, // Type 3 mismatches + }, + regions: {}, // Tracks the count of events for each region + }; + + languageInsights.push(languageObject); + return languageObject; +} + +function handler(bundles) { + const languageInsights = []; + + for (const bundle of bundles) { + let preferredLanguages = []; + let pageLanguage = null; + let userRegion = null; + + for (const event of bundle.events) { + if (event.checkpoint === VARIANT_CHECKPOINT) { + const { target, source } = event; + + if (source === 'preferred-languages') { + preferredLanguages = target.split(',').map((lang) => lang.trim()); + } else if (source === 'page-language') { + pageLanguage = target; + } else if (source === 'user-region') { + userRegion = target; + } + } + } + + if (pageLanguage) { + const languageObject = getOrCreateLanguageObject(languageInsights, pageLanguage); + languageObject.count += 1; // Increment the total count for this page language + + // Type 1 Mismatch: List out each mismatch if the preferred language list + // does not contain the page language + const isType1Mismatch = !preferredLanguages.includes(pageLanguage); + if (isType1Mismatch) { + preferredLanguages.forEach((preferredLanguage) => { + if (!languageObject.mismatches.type1.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type1.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type1.preferredLanguages[preferredLanguage] += 1; + } + }); + } + + // Type 2 Mismatch: Count as one mismatch if any preferred language + // is different from page language + const isType2Mismatch = preferredLanguages.some( + (preferredLanguage) => preferredLanguage !== pageLanguage, + ); + if (isType2Mismatch) { + const preferredLanguage = preferredLanguages.join(','); + if (!languageObject.mismatches.type2.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type2.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type2.preferredLanguages[preferredLanguage] += 1; + } + } + + // Type 3 Mismatch: Compare each language in preferred language list to page language, + // and count each mismatch + preferredLanguages.forEach((preferredLanguage) => { + if (preferredLanguage !== pageLanguage) { + if (!languageObject.mismatches.type3.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type3.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type3.preferredLanguages[preferredLanguage] += 1; + } + } + }); + + // Track regions + if (userRegion) { + if (!languageObject.regions[userRegion]) { + languageObject.regions[userRegion] = 1; + } else { + languageObject.regions[userRegion] += 1; + } + } + } + } + + return languageInsights; +} + +export default { + handler, + checkpoints: VARIANT_CHECKPOINT, +}; diff --git a/packages/spacecat-shared-rum-api-client/src/index.js b/packages/spacecat-shared-rum-api-client/src/index.js index c394c3ceb..9722dec60 100644 --- a/packages/spacecat-shared-rum-api-client/src/index.js +++ b/packages/spacecat-shared-rum-api-client/src/index.js @@ -13,11 +13,13 @@ import { fetchBundles } from './common/rum-bundler-client.js'; import notfound from './functions/404.js'; import cwv from './functions/cwv.js'; import experiment from './functions/experiment.js'; +import variant from './functions/variant.js'; const HANDLERS = { 404: notfound, cwv, experiment, + variant, }; export default class RUMAPIClient { diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json new file mode 100644 index 000000000..27df1676b --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json @@ -0,0 +1,9175 @@ +{ + "rumBundles": [ + { + "id": "NPRrw", + "host": "rum.hlx.page", + "time": "2024-07-08T01:00:23.322Z", + "timeSlot": "2024-07-08T01:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/dog-health/what-does-a-black-lump-on-a-dogs-skin-mean", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 23322 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1794 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1785 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_19fe63dcc2ea2fe707004b07ea3623bcc03b4197a.jpeg", + "source": ".hero", + "timeDelta": 1795 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 2009 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12139 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1785 + }, + { + "checkpoint": "loadresource", + "target": 56, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1786 + }, + { + "checkpoint": "loadresource", + "target": 54, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1785 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1795 + }, + { + "checkpoint": "loadresource", + "target": 40, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1786 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1738 + }, + { + "checkpoint": "leave", + "timeDelta": 32610 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1786 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1783 + }, + { + "checkpoint": "cwv-ttfb", + "value": 193, + "timeDelta": 5278 + }, + { + "checkpoint": "lazy", + "timeDelta": 1737 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2083 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1789 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1785 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1786 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1794 + }, + { + "checkpoint": "cwv", + "timeDelta": 5189 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 400 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1738 + } + ] + }, + { + "id": "Lo", + "host": "rum.hlx.page", + "time": "2024-07-08T01:00:00.574Z", + "timeSlot": "2024-07-08T01:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/acetaminophen-tylenol-for-dogs", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 574 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3496 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 3489 + }, + { + "checkpoint": "loadresource", + "target": 104, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3493 + }, + { + "checkpoint": "viewblock", + "source": ".toc", + "timeDelta": 3496 + }, + { + "checkpoint": "error", + "timeDelta": 4189 + }, + { + "checkpoint": "loadresource", + "target": 52, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4225 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 16688 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/dog-medications-vaccinations/3-medications-you-should-never-give-your-dog", + "source": "#main", + "timeDelta": 110186 + }, + { + "checkpoint": "cwv", + "timeDelta": 7320 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 1731 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3493 + }, + { + "checkpoint": "cwv-ttfb", + "value": 50, + "timeDelta": 7381 + }, + { + "checkpoint": "load", + "timeDelta": 1731 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17663 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 3418 + }, + { + "checkpoint": "cwv-lcp", + "value": 732, + "timeDelta": 7381, + "source": ".hero", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1549fc75dd3ac0b8d3780463066ae8c15121786a7.jpeg" + }, + { + "checkpoint": "loadresource", + "target": 87, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3494 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3617 + }, + { + "checkpoint": "lazy", + "timeDelta": 3417 + }, + { + "checkpoint": "loadresource", + "target": 84, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3492 + }, + { + "checkpoint": "loadresource", + "target": 87, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3493 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3496 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3495 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 14275 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3418 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3494 + }, + { + "checkpoint": "leave", + "timeDelta": 110506 + }, + { + "checkpoint": "cwv-fid", + "value": 20, + "timeDelta": 16595 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3494 + } + ] + }, + { + "id": "DZckmnr", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:01.200Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-care/pit-bull-dog-names", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1200 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1206 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1207 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 162 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1223 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1225 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1197 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1203 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1204 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1204 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1205 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1206 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1208 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1203 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1225 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1207 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1210 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1223 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_11297ec1ceb0ec2461e3af69140bf7b3d72763e97.jpeg", + "source": ".hero", + "timeDelta": 1235 + }, + { + "checkpoint": "lazy", + "timeDelta": 1131 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "error", + "timeDelta": 1426 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1204 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "top", + "timeDelta": 139 + }, + { + "checkpoint": "load", + "timeDelta": 161 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1234 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1205 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1222 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1235 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1222 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1202 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1132 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1234 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1233 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1132 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1223 + } + ] + }, + { + "id": "KLachn", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:00.354Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/cats/breeds/choosing-a-manx", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 356 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 94 + }, + { + "checkpoint": "leave", + "timeDelta": 134643 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "cwv-ttfb", + "value": 49, + "timeDelta": 3422 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 356 + }, + { + "checkpoint": "cwv", + "timeDelta": 3328 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 9694 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 352 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 351 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 357 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 356 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 356 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 356 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/breeds/media_1718b4bb024a278304e6d67a7fd8226482a0ac7eb.jpeg", + "source": ".hero", + "timeDelta": 357 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 329 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 280 + }, + { + "checkpoint": "lazy", + "timeDelta": 279 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 280 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 6967 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 353 + } + ] + }, + { + "id": "HIQZp", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:01.893Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/birds/general/10-most-common-budgie-diseases", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "enter", + "target": "visible", + "source": "https://duckduckgo.com/", + "timeDelta": 1893 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1898 + }, + { + "checkpoint": "loadresource", + "target": 235, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1903 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1897 + }, + { + "checkpoint": "loadresource", + "target": 71, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1899 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1901 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1902 + }, + { + "checkpoint": "loadresource", + "target": 50, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1900 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1910 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1911 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 3494 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2060 + }, + { + "checkpoint": "error", + "timeDelta": 344 + }, + { + "checkpoint": "leave", + "timeDelta": 70987 + }, + { + "checkpoint": "lazy", + "timeDelta": 1827 + }, + { + "checkpoint": "loadresource", + "target": 73, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1898 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1829 + }, + { + "checkpoint": "error", + "timeDelta": 5117 + }, + { + "checkpoint": "cwv", + "timeDelta": 5137 + }, + { + "checkpoint": "cwv-ttfb", + "value": 97, + "timeDelta": 5180 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12106 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/reptiles/general/media_19e91b84b41025de0c014165fc390a98c1c8cbc19.jpeg", + "source": ".article-navigation", + "timeDelta": 67475 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1864 + }, + { + "checkpoint": "loadresource", + "target": 49, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1900 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/birds/general/media_1ff48f1eaa43170d43f9ce967bf8496a51458e04c.jpeg", + "source": ".hero", + "timeDelta": 1912 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 67425 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 67194 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 13774 + }, + { + "checkpoint": "error", + "target": 113, + "source": "https://www.petplace.com/scripts/adsense.js", + "timeDelta": 5116 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3309 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 337 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1901 + }, + { + "checkpoint": "error", + "timeDelta": 5118 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1897 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1830 + }, + { + "checkpoint": "loadresource", + "target": 63, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1899 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1902 + }, + { + "checkpoint": "loadresource", + "target": 33, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1896 + } + ] + }, + { + "id": "68z", + "host": "rum.hlx.page", + "time": "2024-07-08T03:00:04.254Z", + "timeSlot": "2024-07-08T03:00:00.000Z", + "url": "https://www.petplace.com/article/category/breeds/cat-breeds", + "userAgent": "desktop:chromeos", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4254 + }, + { + "checkpoint": "cwv", + "timeDelta": 4612 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4972 + }, + { + "checkpoint": "leave", + "timeDelta": 19645 + }, + { + "checkpoint": "cwv-inp", + "value": 8, + "timeDelta": 19652 + }, + { + "checkpoint": "viewblock", + "source": ".popular-tags", + "timeDelta": 1484 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3113 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1462 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1478 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1464 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1471 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1466 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1464 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1474 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1481 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1469 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1476 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1478 + }, + { + "checkpoint": "loadresource", + "target": 85, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1646 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2096 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "cwv-ttfb", + "value": 252, + "timeDelta": 4673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1470 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4660 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4623 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 541 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1459 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3004 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3568 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2268 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2764 + }, + { + "checkpoint": "loadresource", + "target": 55, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2831 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1461 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1463 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1460 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1463 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1467 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1468 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2660 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2712 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1223 + }, + { + "checkpoint": "loadresource", + "target": 33, + "source": "https://www.petplace.com/fragments/popular-tags.plain.html", + "timeDelta": 1461 + }, + { + "checkpoint": "loadresource", + "target": 57, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2898 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/article/cats/breeds/media_14728ff37f996eb6604e8884eb1ed76121d1a2824.jpeg", + "source": ".cards", + "timeDelta": 19577 + }, + { + "checkpoint": "cwv-fid", + "value": 3.7000000029802322, + "timeDelta": 19581 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4543 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2150 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4361 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4878 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1222 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "lazy", + "timeDelta": 1219 + }, + { + "checkpoint": "cwv-lcp", + "value": 1047.2999999970198, + "timeDelta": 4671, + "source": ".newsletter-signup #sign-up-for-the-petplace-newsletter--get-a-free-month-of-dogtv" + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2616 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3517 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3161 + }, + { + "checkpoint": "cwv-cls", + "value": 0.923399196523613, + "timeDelta": 4673 + }, + { + "checkpoint": "cwv-lcp", + "value": 1580.5, + "timeDelta": 4672, + "source": ".cards", + "target": "https://www.petplace.com/article/cats/breeds/media_1ed8127404234bf3c1991061cbbcf6177f98c327b.jpeg" + }, + { + "checkpoint": "cwv-lcp", + "value": 597.3999999985099, + "timeDelta": 4670, + "source": "#cat-breeds" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1469 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1471 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 193294 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2214 + }, + { + "checkpoint": "error", + "target": 96, + "source": "https://www.petplace.com/blocks/article-pagination/article-pagination.js", + "timeDelta": 582 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1473 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1466 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3059 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3416 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3629 + }, + { + "checkpoint": "cwv-cls", + "value": 0.08692920931661012, + "timeDelta": 193916 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4760 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4710 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1348 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/checklist", + "timeDelta": 1457 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1467 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4813 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".header #nav", + "timeDelta": 221984 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1465 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1476 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1462 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2954 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1475 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1462 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2310 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4308 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1481 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3465 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1474 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1477 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1477 + }, + { + "checkpoint": "loadresource", + "target": 89, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1540 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1475 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4409 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 193412 + }, + { + "checkpoint": "cwv-cls", + "value": 0.04346460465830506, + "timeDelta": 193857 + }, + { + "checkpoint": "cwv-lcp", + "value": 125.79999999701977, + "timeDelta": 193411 + }, + { + "checkpoint": "cwv-fid", + "value": 4.899999998509884, + "timeDelta": 221442 + } + ] + }, + { + "id": "8BC", + "host": "rum.hlx.page", + "time": "2024-07-08T04:00:01.032Z", + "timeSlot": "2024-07-08T04:00:00.000Z", + "url": "https://www.petplace.com/article/horses/general/vaccination-of-horses", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1031 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1033 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1046 + }, + { + "checkpoint": "top", + "timeDelta": 97 + }, + { + "checkpoint": "load", + "timeDelta": 144 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1031 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1024 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/horses/general/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1045 + }, + { + "checkpoint": "lazy", + "timeDelta": 995 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 996 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 996 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1036 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1046 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1026 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1040 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1042 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1021 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1023 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1025 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1025 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1028 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1028 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1029 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1036 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1026 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1033 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1039 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1029 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1042 + }, + { + "checkpoint": "pagesviewed", + "source": -4, + "timeDelta": 145 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1040 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "error", + "timeDelta": 1156 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1146 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1033 + } + ] + }, + { + "id": "R", + "host": "rum.hlx.page", + "time": "2024-07-08T04:00:02.671Z", + "timeSlot": "2024-07-08T04:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2555 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 2556 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2692 + }, + { + "checkpoint": "lazy", + "timeDelta": 2552 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2668 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 2673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2675 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 2677 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2691 + }, + { + "checkpoint": "top", + "timeDelta": 494 + }, + { + "checkpoint": "load", + "timeDelta": 525 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 526 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2665 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/blocks/adoptable-pets/adoptable-pets.js", + "timeDelta": 2663 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2668 + }, + { + "checkpoint": "loadresource", + "target": 51, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2770 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2662 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2676 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2606 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://24petconnect.com/", + "timeDelta": 2658 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2661 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2662 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2664 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/blocks/adoptable-pets/adoptable-pets.css", + "timeDelta": 2663 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2661 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2664 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2665 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1740aa105bbc41052f254093d1112ead04d221c37.jpeg", + "source": ".columns", + "timeDelta": 2679 + }, + { + "checkpoint": "leave", + "timeDelta": 2873 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2664 + } + ] + }, + { + "id": "QUWXcn", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:01.673Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_18a976fc2997c2168a9c239c55bb2e8e3494085d3.png", + "source": ".home-banner", + "timeDelta": 1673 + }, + { + "checkpoint": "enter", + "target": "hidden", + "source": "", + "timeDelta": 1168 + }, + { + "checkpoint": "viewblock", + "source": ".home-banner", + "timeDelta": 1672 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1170 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 667 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1169 + }, + { + "checkpoint": "cwv", + "timeDelta": 4224 + }, + { + "checkpoint": "lazy", + "timeDelta": 1124 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1171 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1125 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1142 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1170 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 1126 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1169 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1170 + } + ] + }, + { + "id": "SXfhx", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:02.839Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/search", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 311, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2839 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2840 + }, + { + "checkpoint": "cwv-fid", + "value": 11.100000001490116, + "timeDelta": 8948 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 8963 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2841 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "viewblock", + "source": ".search", + "timeDelta": 2879 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "loadresource", + "target": 55, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2881 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 2838 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 2762 + }, + { + "checkpoint": "viewblock", + "source": ".cards", + "timeDelta": 2942 + }, + { + "checkpoint": "cwv-ttfb", + "value": 546.8000000044703, + "timeDelta": 6258 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 818 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2760 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_19b03997f517db477a2a43e7f3f10a7008c354080.png", + "source": "#main", + "timeDelta": 2880 + }, + { + "checkpoint": "cwv-cls", + "value": 0.21185558014871103, + "timeDelta": 6260 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2839 + }, + { + "checkpoint": "loadresource", + "target": 301, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2840 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2841 + }, + { + "checkpoint": "loadresource", + "target": 124, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2840 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2831 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".header #nav", + "timeDelta": 11219 + }, + { + "checkpoint": "leave", + "timeDelta": 11258 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 26602 + }, + { + "checkpoint": "cwv-lcp", + "value": 89.69999999552965, + "timeDelta": 26672 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 26673 + }, + { + "checkpoint": "cwv-lcp", + "value": 1268.6000000014901, + "timeDelta": 6256, + "source": "#main", + "target": "https://www.petplace.com/media_19b03997f517db477a2a43e7f3f10a7008c354080.png" + }, + { + "checkpoint": "cwv-inp", + "value": 80, + "timeDelta": 11261 + }, + { + "checkpoint": "nullsearch", + "target": "GROMIT - ID#A586724", + "source": ".search-input", + "timeDelta": 2825 + }, + { + "checkpoint": "lazy", + "timeDelta": 2757 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2841 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "cwv", + "timeDelta": 6159 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2851 + } + ] + }, + { + "id": "Ghj", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:00.528Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/all-about-the-russian-blue-personality", + "userAgent": "mobile:ipados", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 528 + } + ] + }, + { + "id": "6Ugh", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:07.609Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/normal-cat-behavior/perfect-cat-day-whats-ideal-cat-schedule", + "userAgent": "desktop:mac", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 437, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7609 + }, + { + "checkpoint": "acquisition", + "target": "push_traffic", + "source": "owned:push", + "timeDelta": 7586 + }, + { + "checkpoint": "loadresource", + "target": 398, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7604 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 7612 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 7610 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7607 + }, + { + "checkpoint": "loadresource", + "target": 89, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 7593 + }, + { + "checkpoint": "cwv-lcp", + "value": 1368, + "timeDelta": 12185, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/normal-cat-behavior/media_12ff8df21ed52cf2d40df4d6f54ceec3a23af4dbf.jpeg" + }, + { + "checkpoint": "cwv", + "timeDelta": 11925 + }, + { + "checkpoint": "acquisition", + "target": "pushly", + "source": "owned:push", + "timeDelta": 7587 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 7596 + }, + { + "checkpoint": "loadresource", + "target": 400, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7608 + }, + { + "checkpoint": "loadresource", + "target": 531, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7605 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 7603 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 7588 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 7601 + }, + { + "checkpoint": "loadresource", + "target": 259, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 7610 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 7611 + }, + { + "checkpoint": "leave", + "timeDelta": 26982 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 7383 + }, + { + "checkpoint": "lazy", + "timeDelta": 7250 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 7251 + }, + { + "checkpoint": "loadresource", + "target": 238, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 8726 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 877 + }, + { + "checkpoint": "load", + "timeDelta": 3085 + }, + { + "checkpoint": "error", + "timeDelta": 11906 + }, + { + "checkpoint": "cwv-ttfb", + "value": 436, + "timeDelta": 12185 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 7251 + }, + { + "checkpoint": "pagesviewed", + "source": 5, + "timeDelta": 3086 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1094532 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 1098579 + } + ] + }, + { + "id": "KMW", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:01.128Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/small-mammals/general/making-a-great-bed-for-your-gerbil", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1129 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1117 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1117 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1113 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1116 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1125 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1127 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1133 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/small-mammals/general/media_14ae44a47188ac7a0ff78dc95d2e3e34e3198a48e.jpeg", + "source": ".hero", + "timeDelta": 1132 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1129 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1123 + }, + { + "checkpoint": "lazy", + "timeDelta": 1046 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1047 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1047 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1132 + }, + { + "checkpoint": "load", + "timeDelta": 232 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1127 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "top", + "timeDelta": 205 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1118 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1123 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1115 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1125 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1131 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "pagesviewed", + "source": 8, + "timeDelta": 233 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1079 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1114 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1115 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1116 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1117 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1237 + }, + { + "checkpoint": "error", + "timeDelta": 1245 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1118 + } + ] + }, + { + "id": "Zt", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:01.820Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/cats/just-for-fun/dont-use-sparkys-flea-drops-on-fluffy", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1820 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1809 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1816 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1742 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1818 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1825 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1818 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1829 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1817 + }, + { + "checkpoint": "lazy", + "timeDelta": 1742 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1808 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1782 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1812 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1824 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1825 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1813 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1830 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1743 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1806 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1808 + }, + { + "checkpoint": "load", + "timeDelta": 469 + }, + { + "checkpoint": "top", + "timeDelta": 451 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 470 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1827 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1812 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1813 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1814 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1809 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1815 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1812 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1824 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "error", + "timeDelta": 2223 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2186 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1810 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1815 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1822 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1820 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1816 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1827 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1831 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1830 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1814 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1822 + } + ] + }, + { + "id": "14k", + "host": "rum.hlx.page", + "time": "2024-07-08T09:00:00.914Z", + "timeSlot": "2024-07-08T09:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/is-my-cats-incision-healing-normally", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 914 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 934 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 932 + }, + { + "checkpoint": "leave", + "timeDelta": 7678 + }, + { + "checkpoint": "error", + "timeDelta": 4052 + }, + { + "checkpoint": "cwv", + "timeDelta": 4062 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 896 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 935 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 933 + }, + { + "checkpoint": "cwv-ttfb", + "value": 209, + "timeDelta": 4096 + }, + { + "checkpoint": "lazy", + "timeDelta": 895 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 929 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 931 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 932 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 310 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 895 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 934 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 932 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 933 + }, + { + "checkpoint": "error", + "timeDelta": 4054 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1020 + } + ] + }, + { + "id": "7Datu", + "host": "rum.hlx.page", + "time": "2024-07-08T10:00:04.198Z", + "timeSlot": "2024-07-08T10:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/56255509/PP2323", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 4198 + }, + { + "checkpoint": "load", + "timeDelta": 408 + }, + { + "checkpoint": "top", + "timeDelta": 392 + }, + { + "checkpoint": "loadresource", + "target": 97, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 4199 + }, + { + "checkpoint": "leave", + "timeDelta": 6820 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 4101 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 4192 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 4196 + }, + { + "checkpoint": "loadresource", + "target": 101, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 4199 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 4100 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 409 + }, + { + "checkpoint": "cwv", + "timeDelta": 7387 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4200 + }, + { + "checkpoint": "cwv-ttfb", + "value": 345.00000000000006, + "timeDelta": 7491 + }, + { + "checkpoint": "lazy", + "timeDelta": 4099 + }, + { + "checkpoint": "loadresource", + "target": 92, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 4294 + }, + { + "checkpoint": "viewblock", + "source": ".pet-details", + "timeDelta": 1000145 + } + ] + }, + { + "id": "2AFNx", + "host": "rum.hlx.page", + "time": "2024-07-08T10:00:08.036Z", + "timeSlot": "2024-07-08T10:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/cat-health/what-does-an-enlarged-heart-mean-for-cats", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "click", + "source": ".disclosure", + "timeDelta": 8036 + }, + { + "checkpoint": "cwv", + "timeDelta": 4850 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1480 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1553 + }, + { + "checkpoint": "cwv-ttfb", + "value": 92, + "timeDelta": 4894 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1550 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1552 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1554 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1556 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1553 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1556 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1575 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/cat-health/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1576 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1575 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1575 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1551 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1555 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1574 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1556 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 245 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1480 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1516 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 13351 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1556 + }, + { + "checkpoint": "lazy", + "timeDelta": 1479 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 11823 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1553 + }, + { + "checkpoint": "leave", + "timeDelta": 94362 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/cat-health/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1576 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1548 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1772 + } + ] + }, + { + "id": "17Nbi", + "host": "rum.hlx.page", + "time": "2024-07-08T11:00:01.691Z", + "timeSlot": "2024-07-08T11:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/just-for-fun/jfk-jr-s-beloved-dog", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1667 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1688 + }, + { + "checkpoint": "loadresource", + "target": 22, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1693 + }, + { + "checkpoint": "pagesviewed", + "source": 5, + "timeDelta": 379 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1688 + }, + { + "checkpoint": "cwv", + "timeDelta": 4942 + }, + { + "checkpoint": "lazy", + "timeDelta": 1649 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 1650 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1713 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "cwv-inp", + "value": 88, + "timeDelta": 10404 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1706 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1695 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1684 + }, + { + "checkpoint": "top", + "timeDelta": 349 + }, + { + "checkpoint": "leave", + "timeDelta": 10409 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1688 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1689 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "cwv-cls", + "value": 0.015444820068726255, + "timeDelta": 4987 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1695 + }, + { + "checkpoint": "cwv-cls", + "value": 0.09329641313326932, + "timeDelta": 8478 + }, + { + "checkpoint": "load", + "timeDelta": 378 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1650 + }, + { + "checkpoint": "cwv-ttfb", + "value": 257.30000001192093, + "timeDelta": 4986 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1876 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3652 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1689 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1694 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1693 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 435 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1694 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1695 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "cwv-lcp", + "value": 512.2000000029802, + "timeDelta": 4985, + "source": ".hero", + "target": "https://www.petplace.com/article/dogs/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1705 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1687 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1705 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1694 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1705 + } + ] + }, + { + "id": "PViop", + "host": "rum.hlx.page", + "time": "2024-07-08T12:00:04.453Z", + "timeSlot": "2024-07-08T12:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-care/top-1200-pet-names", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "viewblock", + "source": ".embed", + "timeDelta": 4453 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 2153 + }, + { + "checkpoint": "loadresource", + "target": 79, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2156 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 2163 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2421 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 517 + }, + { + "checkpoint": "cwv", + "timeDelta": 5539 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 2164 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_1d9ae98408a0f19a048758ba9818ca8e666b48aed.jpeg", + "source": ".hero", + "timeDelta": 2164 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 9912 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12499 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17854 + }, + { + "checkpoint": "loadresource", + "target": 59, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 2155 + }, + { + "checkpoint": "lazy", + "timeDelta": 2093 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2155 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2156 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2144 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2157 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2155 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2157 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2094 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 2095 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2156 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 4456 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 2165 + }, + { + "checkpoint": "cwv-ttfb", + "value": 252, + "timeDelta": 5591 + }, + { + "checkpoint": "leave", + "timeDelta": 265868 + } + ] + }, + { + "id": "8Rl", + "host": "rum.hlx.page", + "time": "2024-07-08T12:00:01.712Z", + "timeSlot": "2024-07-08T12:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/cats-and-mating", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1712 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "variant", + "target": "en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 1675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "pagesviewed", + "source": 6, + "timeDelta": 141 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "cwv-inp", + "value": 112, + "timeDelta": 32522 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1708 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 22, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/media_1a20768d2cbe4dd2bb895e471ad63a53f0c22785a.jpeg", + "source": ".hero", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1712 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1712 + }, + { + "checkpoint": "lazy", + "timeDelta": 1674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "cwv", + "timeDelta": 5035 + }, + { + "checkpoint": "cwv-fid", + "value": 4, + "timeDelta": 6851 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1712 + }, + { + "checkpoint": "cwv-ttfb", + "value": 64.29999995231628, + "timeDelta": 5121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1979 + }, + { + "checkpoint": "leave", + "timeDelta": 32493 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1712 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1724 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1712 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 6930 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 206 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 14142 + }, + { + "checkpoint": "load", + "timeDelta": 141 + }, + { + "checkpoint": "top", + "timeDelta": 124 + }, + { + "checkpoint": "cwv-lcp", + "value": 400.19999998807907, + "timeDelta": 5120, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-health/media_1a20768d2cbe4dd2bb895e471ad63a53f0c22785a.jpeg" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "cwv-cls", + "value": 0.06952602222396255, + "timeDelta": 5121 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12090 + } + ] + }, + { + "id": "268bi", + "host": "rum.hlx.page", + "time": "2024-07-08T13:00:01.315Z", + "timeSlot": "2024-07-08T13:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/survey", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "lazy", + "timeDelta": 1315 + }, + { + "checkpoint": "load", + "timeDelta": 205 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-9-option-23", + "timeDelta": 28703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1403 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 24187 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-11-option-29", + "timeDelta": 34645 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-17-option-46", + "timeDelta": 54597 + }, + { + "checkpoint": "pagesviewed", + "source": 4, + "timeDelta": 207 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 48701 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 34635 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-12-option-48", + "timeDelta": 37902 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 159269 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-5", + "timeDelta": 7460 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 17889 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-3-option-10", + "timeDelta": 9690 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 26545 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-start", + "timeDelta": 2712 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-8-option-20", + "timeDelta": 26551 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 39675 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 55228 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 153208 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184965 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-13-option-35", + "timeDelta": 39686 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 51906 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-14-option-50", + "timeDelta": 45537 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 62112 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-16-option-44", + "timeDelta": 51185 + }, + { + "checkpoint": "loadresource", + "target": 88, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1335 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 31959 + }, + { + "checkpoint": "loadresource", + "target": 82, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1335 + }, + { + "checkpoint": "click", + "source": ".pet-survey .button", + "timeDelta": 11484 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-10-option-27", + "timeDelta": 31260 + }, + { + "checkpoint": "click", + "source": ".footer", + "timeDelta": 75003 + }, + { + "checkpoint": "loadresource", + "target": 86, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1558 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-7-option-13", + "timeDelta": 23385 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 37892 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1316 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1383 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1379 + }, + { + "checkpoint": "cwv", + "timeDelta": 4586 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 23377 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 183882 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 20227 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1335 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 4600 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-5", + "timeDelta": 4815 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 27375 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 40381 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184285 + }, + { + "checkpoint": "viewblock", + "source": ".pet-survey", + "timeDelta": 1336 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 8413 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 45528 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 47911 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 51176 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-back", + "timeDelta": 162992 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 38906 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 75748 + }, + { + "checkpoint": "leave", + "timeDelta": 92710 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "cwv-inp", + "value": 72, + "timeDelta": 92706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 28694 + }, + { + "checkpoint": "top", + "timeDelta": 118 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey #dog-survey-form", + "timeDelta": 60234 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 147587 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184085 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 4807 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 182893 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 31251 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 146223 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 183488 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 1316 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/dogs/55632124/PP20156", + "timeDelta": 1334 + }, + { + "checkpoint": "cwv-fid", + "value": 9.5, + "timeDelta": 4597 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/survey", + "source": ".pet-survey #dog-survey-form", + "timeDelta": 141484 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 46156 + }, + { + "checkpoint": "cwv-ttfb", + "value": 8.099999964237213, + "timeDelta": 4600 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1380 + }, + { + "checkpoint": "cwv-lcp", + "value": 1061, + "timeDelta": 4599, + "source": ".pet-survey" + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 6717 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-6", + "timeDelta": 6725 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-multi-select-question-4-options", + "timeDelta": 16926 + }, + { + "checkpoint": "click", + "source": ".pet-survey form input[type='checkbox']#pet-survey-summary-agreement", + "timeDelta": 60242 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1403 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 7449 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 9683 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-15-option-42", + "timeDelta": 47919 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1331 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 159811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 10457 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 35577 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 29305 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 54587 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 154827 + }, + { + "checkpoint": "loadresource", + "target": 79, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1410 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-4-option-BEAGLE", + "timeDelta": 16935 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 156061 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 171500 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 151224 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 157604 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 158467 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 160753 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 189838 + }, + { + "checkpoint": "click", + "source": ".footer", + "timeDelta": 180049 + } + ] + }, + { + "id": "7Lb", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:00.375Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 375 + }, + { + "checkpoint": "load", + "timeDelta": 381 + }, + { + "checkpoint": "pagesviewed", + "source": -2, + "timeDelta": 382 + } + ] + }, + { + "id": "AMTWhm", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:03.289Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 3289 + }, + { + "checkpoint": "cwv", + "timeDelta": 6311 + }, + { + "checkpoint": "click", + "source": ".columns #breed", + "timeDelta": 7894 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3354 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#labradorretriever", + "timeDelta": 109931 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3289 + }, + { + "checkpoint": "load", + "timeDelta": 89 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3354 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 3355 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-standard", + "timeDelta": 131438 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#bichonfrise", + "timeDelta": 18598 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#welshcorgi-pembroke", + "timeDelta": 158399 + }, + { + "checkpoint": "lazy", + "timeDelta": 3288 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1740aa105bbc41052f254093d1112ead04d221c37.jpeg", + "source": ".columns", + "timeDelta": 3355 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='radio']#radio-Dog", + "timeDelta": 6922 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cairnterrier", + "timeDelta": 27814 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3354 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://ws.petango.com/", + "timeDelta": 3353 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 26860 + }, + { + "checkpoint": "viewblock", + "source": ".adoptable-pets", + "timeDelta": 171285 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#manchesterterrier", + "timeDelta": 114348 + }, + { + "checkpoint": "pagesviewed", + "source": -3, + "timeDelta": 90 + }, + { + "checkpoint": "top", + "timeDelta": 82 + }, + { + "checkpoint": "cwv-ttfb", + "value": 60, + "timeDelta": 6400 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#norfolkterrier", + "timeDelta": 121068 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3341 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3354 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3354 + }, + { + "checkpoint": "click", + "source": ".columns form fieldset", + "timeDelta": 6919 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#mixedbreed", + "timeDelta": 165382 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#chihuahua-smoothcoated", + "timeDelta": 69966 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_19055ae663201d30bd6c54037a1c21778963d9cd6.png", + "source": ".columns", + "timeDelta": 166470 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#irishwolfhound", + "timeDelta": 104803 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-miniature", + "timeDelta": 130498 + }, + { + "checkpoint": "leave", + "timeDelta": 173287 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cotondetulear", + "timeDelta": 41495 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#westhighlandwhiteterrier", + "timeDelta": 153430 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 167335 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 164538 + }, + { + "checkpoint": "click", + "source": ".columns form button#breed-button", + "timeDelta": 8978 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_11ef8bbdb27610ca89544f13cb758c18f2e3e5a37.png", + "source": ".columns", + "timeDelta": 167585 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#grandbassetgriffonvendeen", + "timeDelta": 95148 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 163540 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#dandiedinmontterrier", + "timeDelta": 48383 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#englishcockerspaniel", + "timeDelta": 87166 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 157363 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#dachshund", + "timeDelta": 44095 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-toy", + "timeDelta": 132615 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#yorkshireterrier", + "timeDelta": 163171 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1b6be49e41bdc8633b714890daaee460efac10412.png", + "source": ".columns", + "timeDelta": 169341 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#welshcorgi-cardigan", + "timeDelta": 157101 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/checklist", + "source": ".columns .button", + "timeDelta": 173205 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cockerspaniel", + "timeDelta": 78031 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 153427 + } + ] + }, + { + "id": "04DLan", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:00.088Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/search", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 88 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 88 + }, + { + "checkpoint": "pagesviewed", + "source": 167, + "timeDelta": 10 + }, + { + "checkpoint": "lazy", + "timeDelta": 87 + }, + { + "checkpoint": "error", + "timeDelta": 105 + }, + { + "checkpoint": "error", + "timeDelta": 105 + }, + { + "checkpoint": "top", + "timeDelta": 7 + } + ] + }, + { + "id": "07GOan", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:03.661Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/A1018504/CCST", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 3661 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 3683 + }, + { + "checkpoint": "leave", + "timeDelta": 35928 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 3690 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 3296 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 3699 + }, + { + "checkpoint": "lazy", + "timeDelta": 3294 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3296 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3334 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 3675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 3703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 3693 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 3701 + }, + { + "checkpoint": "cwv-ttfb", + "value": 1854.1999999955297, + "timeDelta": 6555 + }, + { + "checkpoint": "cwv-lcp", + "value": 3261.6999999955297, + "timeDelta": 6550, + "source": ".pet-details" + }, + { + "checkpoint": "load", + "timeDelta": 1974 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3668 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 3673 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3671 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 3679 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 3672 + }, + { + "checkpoint": "cwv", + "timeDelta": 6482 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 6556 + }, + { + "checkpoint": "cwv-lcp", + "value": 3333.89999999851, + "timeDelta": 6553, + "source": ".pet-details" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 3681 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 3679 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 3692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 3685 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 3698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 3689 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 3704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 3684 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 3699 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 3697 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 3695 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 3691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 3703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 3693 + }, + { + "checkpoint": "top", + "timeDelta": 1963 + }, + { + "checkpoint": "pagesviewed", + "source": -13, + "timeDelta": 1975 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 3674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 3675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 3682 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 3680 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 3687 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 3700 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 3680 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 3682 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 3688 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 3696 + } + ] + }, + { + "id": "ADkp", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:02.378Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/56228789/PP556", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2378 + }, + { + "checkpoint": "top", + "timeDelta": 549 + }, + { + "checkpoint": "load", + "timeDelta": 1605 + }, + { + "checkpoint": "pagesviewed", + "source": -4, + "timeDelta": 1606 + }, + { + "checkpoint": "cwv", + "timeDelta": 5430 + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2378 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 2322 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2322 + }, + { + "checkpoint": "lazy", + "timeDelta": 2322 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://ws.petango.com/", + "timeDelta": 2377 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 15654 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2358 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2379 + }, + { + "checkpoint": "leave", + "timeDelta": 10594 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2379 + }, + { + "checkpoint": "cwv-ttfb", + "value": 458, + "timeDelta": 5474 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17948 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2424 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 13766 + }, + { + "checkpoint": "click", + "source": ".pet-details #56228789", + "timeDelta": 9070 + } + ] + }, + { + "id": "2068678001-1720453249195-c80b7f822a9ee", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:49.000Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "sidekick:shown", + "source": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "timeDelta": 49000 + }, + { + "checkpoint": "sidekick:loaded", + "target": "windows:chrome:extension", + "source": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "timeDelta": 49000 + } + ] + }, + { + "id": "Viq", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:31.912Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/amoxicillin-for-dogs-and-cats", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 31912 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 6612 + }, + { + "checkpoint": "cwv", + "timeDelta": 11372 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 31917 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 31909 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 31918 + }, + { + "checkpoint": "loadresource", + "target": 149, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 31895 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 6631 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 31925 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 31922 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 31908 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 31922 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 31905 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 31905 + }, + { + "checkpoint": "leave", + "timeDelta": 40392 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 103606 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 31920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 31914 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 31924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 31903 + }, + { + "checkpoint": "loadresource", + "target": 209, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 31896 + }, + { + "checkpoint": "loadresource", + "target": 180, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 31897 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 31910 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1f51af83c0034c69ffa46deb71514a1574a44a9a3.png", + "source": ".article-navigation", + "timeDelta": 103706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 31911 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 31907 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 31920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 31912 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 103689 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 6611 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 31908 + }, + { + "checkpoint": "loadresource", + "target": 169, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 31899 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 31913 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 31903 + }, + { + "checkpoint": "loadresource", + "target": 151, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 31894 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 31901 + }, + { + "checkpoint": "loadresource", + "target": 167, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 31900 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 31919 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 31916 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 31921 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 31904 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 31891 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 31906 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 31918 + }, + { + "checkpoint": "loadresource", + "target": 168, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 31898 + }, + { + "checkpoint": "cwv-ttfb", + "value": 37.59999990463257, + "timeDelta": 63097 + }, + { + "checkpoint": "enter", + "target": "hidden", + "source": "https://www.google.com/", + "timeDelta": 31885 + }, + { + "checkpoint": "loadresource", + "target": 154, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 31898 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 31923 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 501 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 31915 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 31913 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 31924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 31902 + }, + { + "checkpoint": "cwv-inp", + "value": 8, + "timeDelta": 92356 + }, + { + "checkpoint": "lazy", + "timeDelta": 6610 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 31915 + } + ] + }, + { + "id": "0BFhm", + "host": "rum.hlx.page", + "time": "2024-07-08T16:00:00.262Z", + "timeSlot": "2024-07-08T16:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 262 + } + ] + }, + { + "id": "CNTy", + "host": "rum.hlx.page", + "time": "2024-07-08T16:00:05.207Z", + "timeSlot": "2024-07-08T16:00:00.000Z", + "url": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/why-does-my-cat-wiggle-the-top-of-his-bum-with-his-tail-straight-up-in-the-air", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "cwv-ttfb", + "value": 1071, + "timeDelta": 5207 + }, + { + "checkpoint": "reload", + "target": "visible", + "source": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/why-does-my-cat-wiggle-the-top-of-his-bum-with-his-tail-straight-up-in-the-air", + "timeDelta": 1988 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1998 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1994 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1992 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1994 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1993 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "top", + "timeDelta": 1225 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2099 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1992 + }, + { + "checkpoint": "cwv", + "timeDelta": 5164 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1998 + }, + { + "checkpoint": "leave", + "timeDelta": 10619 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1936 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1997 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1991 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1999 + }, + { + "checkpoint": "load", + "timeDelta": 1247 + }, + { + "checkpoint": "pagesviewed", + "source": 3, + "timeDelta": 1248 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1992 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 2006 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1986 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 1299 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1997 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/media_13640684c2505ca295e2b2fcf72a18ddf41cd458e.png", + "source": ".hero", + "timeDelta": 2007 + }, + { + "checkpoint": "lazy", + "timeDelta": 1936 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 1937 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1999 + } + ] + }, + { + "id": "038EKny", + "host": "rum.hlx.page", + "time": "2024-07-08T17:00:01.200Z", + "timeSlot": "2024-07-08T17:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/just-for-fun/preventing-dog-bites-things-to-do-before-you-get-a-dog", + "userAgent": "desktop:windows", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1200 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 932 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 922 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 916 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 938 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 897 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 938 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 938 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 938 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 939 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 935 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 940 + }, + { + "checkpoint": "lazy", + "timeDelta": 896 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 928 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 936 + }, + { + "checkpoint": "top", + "timeDelta": 79 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 923 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 927 + }, + { + "checkpoint": "leave", + "timeDelta": 3359 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 924 + }, + { + "checkpoint": "pagesviewed", + "source": 870, + "timeDelta": 124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 930 + }, + { + "checkpoint": "load", + "timeDelta": 123 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 914 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 929 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 939 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 898 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 926 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 937 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 940 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 935 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 935 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 940 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 930 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 925 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 919 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 938 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 927 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 930 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 923 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 932 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 935 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 928 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 926 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 934 + } + ] + }, + { + "id": "AB", + "host": "rum.hlx.page", + "time": "2024-07-08T17:00:01.797Z", + "timeSlot": "2024-07-08T17:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/38660912/81870", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1797 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1797 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1734 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1734 + }, + { + "checkpoint": "lazy", + "timeDelta": 1733 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1793 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1796 + }, + { + "checkpoint": "cwv-ttfb", + "value": 101, + "timeDelta": 4804 + }, + { + "checkpoint": "load", + "timeDelta": 139 + }, + { + "checkpoint": "top", + "timeDelta": 134 + }, + { + "checkpoint": "pagesviewed", + "source": -6, + "timeDelta": 140 + }, + { + "checkpoint": "viewblock", + "source": ".pet-details", + "timeDelta": 4736 + }, + { + "checkpoint": "cwv", + "timeDelta": 4745 + }, + { + "checkpoint": "leave", + "timeDelta": 22306 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1797 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 1796 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1797 + } + ] + }, + { + "id": "26Oj", + "host": "rum.hlx.page", + "time": "2024-07-08T18:00:03.402Z", + "timeSlot": "2024-07-08T18:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/joint-effusion-swelling-in-dogs", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3402 + }, + { + "checkpoint": "cwv-cls", + "value": 0.050889726137767516, + "timeDelta": 6898 + }, + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3400 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 3405 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3402 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 3422 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 3406 + }, + { + "checkpoint": "cwv-fid", + "value": 5, + "timeDelta": 10548 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 3426 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3427 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3400 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 3416 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/media_11194471a09e31b5d6eabd0a72c74fde47a4d467a.png", + "source": ".hero", + "timeDelta": 3425 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 3413 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 3414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 3407 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 3420 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 3412 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 3414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 3418 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 3419 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 3405 + }, + { + "checkpoint": "lazy", + "timeDelta": 3324 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 3421 + }, + { + "checkpoint": "leave", + "timeDelta": 109116 + }, + { + "checkpoint": "viewblock", + "source": ".toc", + "timeDelta": 4211 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 448 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3397 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 3410 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 3416 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 3422 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3395 + }, + { + "checkpoint": "loadresource", + "target": 148, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3397 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 3403 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3396 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 16027 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3398 + }, + { + "checkpoint": "cwv-inp", + "value": 208, + "timeDelta": 109110 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3327 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3399 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 3420 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 3409 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 3417 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 3410 + }, + { + "checkpoint": "cwv-ttfb", + "value": 275.09999999962747, + "timeDelta": 6897 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3359 + }, + { + "checkpoint": "cwv-lcp", + "value": 713.4000000003725, + "timeDelta": 6896, + "source": ".hero", + "target": "https://www.petplace.com/article/dogs/pet-health/media_11194471a09e31b5d6eabd0a72c74fde47a4d467a.png" + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 10711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 3419 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3403 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 3411 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 3409 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 3408 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 3407 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 3408 + }, + { + "checkpoint": "variant", + "target": "en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 3328 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 3404 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3714 + }, + { + "checkpoint": "cwv", + "timeDelta": 6838 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3553 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 3412 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 3404 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3399 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 3413 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 3415 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 3417 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 3393 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 14003 + } + ] + }, + { + "id": "VXahx", + "host": "rum.hlx.page", + "time": "2024-07-08T20:00:02.381Z", + "timeSlot": "2024-07-08T20:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/12-things-you-may-not-know-about-cat-death", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2381 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2382 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2383 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2381 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "loadresource", + "target": 51, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 2371 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 2369 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2372 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2371 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2372 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2373 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 565 + }, + { + "checkpoint": "variant", + "target": "en_CA", + "source": "user-region", + "timeDelta": 2333 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2383 + }, + { + "checkpoint": "loadresource", + "target": 83, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2812 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2373 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2375 + }, + { + "checkpoint": "cwv-lcp", + "value": 792.6999999880791, + "timeDelta": 5987, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_1810472fd85e1e46279cb87e03b76883084ce50a2.jpeg" + }, + { + "checkpoint": "cwv-cls", + "value": 0.06395546640397946, + "timeDelta": 5988 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2382 + }, + { + "checkpoint": "cwv", + "timeDelta": 5919 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 15390 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2374 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2386 + }, + { + "checkpoint": "cwv-fid", + "value": 3.300000011920929, + "timeDelta": 15375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2372 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2374 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_10701ca0fa7ab29ad3991894f2c54a2dd5eff8a6e.png", + "source": ".article-navigation", + "timeDelta": 45837 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12873 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 45819 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2281 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 43612 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "leave", + "timeDelta": 47578 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2373 + }, + { + "checkpoint": "lazy", + "timeDelta": 2280 + }, + { + "checkpoint": "variant", + "target": "en-CA,en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 2281 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2384 + }, + { + "checkpoint": "cwv-inp", + "value": 48, + "timeDelta": 47564 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2384 + } + ] + }, + { + "id": "Jqu", + "host": "rum.hlx.page", + "time": "2024-07-08T22:00:04.513Z", + "timeSlot": "2024-07-08T22:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/dog-health/dog-diseases-symptoms/symptoms-and-causes-of-nausea-in-dogs", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4513 + }, + { + "checkpoint": "lazy", + "timeDelta": 4444 + }, + { + "checkpoint": "loadresource", + "target": 77, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 4509 + }, + { + "checkpoint": "loadresource", + "target": 63, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "loadresource", + "target": 70, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4518 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 16714 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "cwv-ttfb", + "value": 187, + "timeDelta": 8094 + }, + { + "checkpoint": "loadresource", + "target": 124, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4510 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 11536 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 15049 + }, + { + "checkpoint": "load", + "timeDelta": 502 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 4509 + }, + { + "checkpoint": "loadresource", + "target": 58, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 4510 + }, + { + "checkpoint": "loadresource", + "target": 180, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4511 + }, + { + "checkpoint": "loadresource", + "target": 70, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4879 + }, + { + "checkpoint": "loadresource", + "target": 76, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4511 + }, + { + "checkpoint": "loadresource", + "target": 104, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4517 + }, + { + "checkpoint": "leave", + "timeDelta": 159117 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 575 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 4446 + }, + { + "checkpoint": "loadresource", + "target": 75, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "loadresource", + "target": 71, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "loadresource", + "target": 58, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4515 + }, + { + "checkpoint": "top", + "timeDelta": 351 + }, + { + "checkpoint": "loadresource", + "target": 65, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4512 + }, + { + "checkpoint": "loadresource", + "target": 50, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4518 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 4446 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 4520 + }, + { + "checkpoint": "loadresource", + "target": 113, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 4520 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 13434 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 157292 + }, + { + "checkpoint": "loadresource", + "target": 73, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4515 + }, + { + "checkpoint": "loadresource", + "target": 69, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 503 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 153753 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4519 + }, + { + "checkpoint": "loadresource", + "target": 75, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4513 + }, + { + "checkpoint": "cwv", + "timeDelta": 8030 + }, + { + "checkpoint": "loadresource", + "target": 65, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 4519 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 4527 + }, + { + "checkpoint": "loadresource", + "target": 373, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4512 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 4506 + }, + { + "checkpoint": "loadresource", + "target": 68, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4517 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 157197 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 4519 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_170fba30426d5874f726c4976fc17dcfad78364a7.jpeg", + "source": ".article-navigation", + "timeDelta": 157324 + } + ] + }, + { + "id": "fgmw", + "host": "rum.hlx.page", + "time": "2024-07-08T22:00:00.810Z", + "timeSlot": "2024-07-08T22:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 810 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 812 + }, + { + "checkpoint": "cwv-ttfb", + "value": 308, + "timeDelta": 3590 + }, + { + "checkpoint": "leave", + "timeDelta": 8954 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 495 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 809 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/dogs/55383651/PP5961", + "timeDelta": 805 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 808 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 810 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 811 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 812 + }, + { + "checkpoint": "viewblock", + "source": ".panel-cards", + "timeDelta": 1756 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".panel-cards .button", + "timeDelta": 8835 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_156820c901b3a90bfe46c54a77922ffcc05bc3879.png", + "source": ".panel-cards", + "timeDelta": 1572 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 454 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 390 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_15a172cf68bada7e2e72a3462bff76c7fa2a399d6.png", + "source": ".panel-cards", + "timeDelta": 2489 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_1ca5cf4ec1a1feeb96f663ff536ac736fc61401b3.png", + "source": ".panel-cards", + "timeDelta": 2023 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_18a976fc2997c2168a9c239c55bb2e8e3494085d3.png", + "source": ".home-banner", + "timeDelta": 815 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 454 + }, + { + "checkpoint": "lazy", + "timeDelta": 453 + }, + { + "checkpoint": "cwv", + "timeDelta": 3504 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 808 + }, + { + "checkpoint": "viewblock", + "source": ".home-banner", + "timeDelta": 814 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 811 + } + ] + }, + { + "id": "IPYop", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:03.474Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/why-do-cats-smell-other-cats-butts", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3474 + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3010 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 3007 + }, + { + "checkpoint": "error", + "timeDelta": 466 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2886 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2957 + }, + { + "checkpoint": "error", + "timeDelta": 466 + }, + { + "checkpoint": "cwv", + "timeDelta": 6538 + }, + { + "checkpoint": "lazy", + "timeDelta": 2884 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 3016 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 45827 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3010 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3011 + }, + { + "checkpoint": "loadresource", + "target": 126, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3008 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3015 + }, + { + "checkpoint": "loadresource", + "target": 250, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3009 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3007 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3009 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3008 + }, + { + "checkpoint": "cwv-ttfb", + "value": 260, + "timeDelta": 6667 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 48845 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 2887 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 3015 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 3005 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_1a7361c3fc99595907686eb3f4f425bc15cb6a7af.jpeg", + "source": ".hero", + "timeDelta": 3016 + }, + { + "checkpoint": "loadresource", + "target": 205, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 13836 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 457 + }, + { + "checkpoint": "leave", + "timeDelta": 227587 + } + ] + }, + { + "id": "79Ddju", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:00.055Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/prednisone-prednisolone-for-dogs-and-cats", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 55 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 169 + }, + { + "checkpoint": "cwv-ttfb", + "value": 14, + "timeDelta": 3344 + }, + { + "checkpoint": "lazy", + "timeDelta": 165 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/article/dogs/pet-health/acute-moist-dermatitis-hot-spots-in-dogs", + "timeDelta": 168 + }, + { + "checkpoint": "cwv", + "timeDelta": 3206 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 194 + }, + { + "checkpoint": "leave", + "timeDelta": 2839 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 177 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 177 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 169 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 169 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 169 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 166 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 170 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1ee082c070cbcad7c301d493c1f20474cbe0e9456.png", + "source": ".hero", + "timeDelta": 177 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 170 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 169 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 166 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 179 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 170 + } + ] + }, + { + "id": "7CHTUkwz", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:07.974Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/diazepam-valium-for-dogs-and-cats", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 7974 + }, + { + "checkpoint": "lazy", + "timeDelta": 7747 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 7969 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 7971 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 7973 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 7975 + }, + { + "checkpoint": "click", + "source": "#main", + "timeDelta": 74690 + }, + { + "checkpoint": "cwv-cls", + "value": 0.018736580730399226, + "timeDelta": 102258 + }, + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 7933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 7964 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 7750 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 44396 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 7777 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 7967 + }, + { + "checkpoint": "leave", + "timeDelta": 75003 + }, + { + "checkpoint": "cwv-inp", + "value": 208, + "timeDelta": 75045 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 7961 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 7966 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 7958 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 101637 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 7959 + }, + { + "checkpoint": "cwv-lcp", + "value": 2348.5, + "timeDelta": 12640, + "source": ".hero", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_160a8a357f60be726917ff08bf77981e2fde18600.jpeg" + }, + { + "checkpoint": "variant", + "target": "en-US,fa-IR,fa,en", + "source": "preferred-languages", + "timeDelta": 7751 + }, + { + "checkpoint": "loadresource", + "target": 152, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 7929 + }, + { + "checkpoint": "loadresource", + "target": 139, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 7930 + }, + { + "checkpoint": "loadresource", + "target": 164, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 7934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 7938 + }, + { + "checkpoint": "loadresource", + "target": 385, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 7953 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 7955 + }, + { + "checkpoint": "loadresource", + "target": 144, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 7935 + }, + { + "checkpoint": "cwv-cls", + "value": 0.019971529218241336, + "timeDelta": 12643 + }, + { + "checkpoint": "cwv-lcp", + "value": 165.90000000596046, + "timeDelta": 101635 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 7945 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 7949 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 1890 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 7970 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 20985 + }, + { + "checkpoint": "cwv-cls", + "value": 0.03747316146079845, + "timeDelta": 102289 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 7946 + }, + { + "checkpoint": "loadresource", + "target": 153, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 7937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 7951 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 7995 + }, + { + "checkpoint": "loadresource", + "target": 154, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 9119 + }, + { + "checkpoint": "cwv-ttfb", + "value": 889.1999999880791, + "timeDelta": 12641 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 101506 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 7943 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 7941 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 7944 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 7942 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 7950 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 7947 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 7972 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 7921 + }, + { + "checkpoint": "loadresource", + "target": 140, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 7927 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 7939 + }, + { + "checkpoint": "cwv-fid", + "value": 13.400000005960464, + "timeDelta": 20965 + }, + { + "checkpoint": "cwv", + "timeDelta": 12445 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 19317 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 7952 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 7954 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 7957 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 7960 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 7962 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 7965 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 7967 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 4208632 + }, + { + "checkpoint": "cwv-lcp", + "value": 452.80000001192093, + "timeDelta": 4208722 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 4208723 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_160a8a357f60be726917ff08bf77981e2fde18600.jpeg", + "source": ".hero", + "timeDelta": 4212108 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 4212118 + } + ] + } + ] +} \ No newline at end of file diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json b/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json new file mode 100644 index 000000000..7894fa9ae --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json @@ -0,0 +1,35 @@ +[ + { + "language": "en-US", + "count": 35, + "mismatches": { + "type1": { + "preferredLanguages": { + "en-GB": 4 + } + }, + "type2": { + "preferredLanguages": { + "en-US,en": 9, + "en-GB": 4, + "en-GB,en-US,en": 2, + "en-CA,en-GB,en-US,en": 1, + "en-US,fa-IR,fa,en": 1 + } + }, + "type3": { + "preferredLanguages": { + "en": 13, + "en-GB": 7, + "en-CA": 1, + "fa-IR": 1, + "fa": 1 + } + } + }, + "regions": { + "en_US": 33, + "en_CA": 1 + } + } +] \ No newline at end of file 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 cb79a3a00..a5b4b4abf 100644 --- a/packages/spacecat-shared-rum-api-client/test/functions.test.js +++ b/packages/spacecat-shared-rum-api-client/test/functions.test.js @@ -14,11 +14,14 @@ import { expect } from 'chai'; import cwv from '../src/functions/cwv.js'; import notfound from '../src/functions/404.js'; -import bundles from './fixtures/bundles.json' assert { type: 'json' }; import experiment from '../src/functions/experiment.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' }; 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 expectedVariantResult from './fixtures/variant.json' assert { type: 'json' }; describe('Query functions', () => { it('crunches cwv data', async () => { @@ -35,4 +38,9 @@ describe('Query functions', () => { const experimentsResult = experiment.handler(bundles.rumBundles); expect(expectedExperimentsResult).to.eql(experimentsResult); }); + + it('crunches variant data', async () => { + const variantResult = variant.handler(bundlesForVariant.rumBundles); + expect(expectedVariantResult).to.eql(variantResult); + }); }); From b1a4a9f13317fe50c560ad74b3f3987788c5baa3 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 12 Jul 2024 16:25:31 +0000 Subject: [PATCH 2/4] chore(release): 2.3.0 [skip ci] # [@adobe/spacecat-shared-rum-api-client-v2.3.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.2.1...@adobe/spacecat-shared-rum-api-client-v2.3.0) (2024-07-12) ### Features * audit top pages for language mismatch (SITES-22690) ([#289](https://github.com/adobe/spacecat-shared/issues/289)) ([ec9d83a](https://github.com/adobe/spacecat-shared/commit/ec9d83a9f59ba7c88b2be3181c60290eae132219)) --- 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 a4614a604..9a720f70f 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.3.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.2.1...@adobe/spacecat-shared-rum-api-client-v2.3.0) (2024-07-12) + + +### Features + +* audit top pages for language mismatch (SITES-22690) ([#289](https://github.com/adobe/spacecat-shared/issues/289)) ([ec9d83a](https://github.com/adobe/spacecat-shared/commit/ec9d83a9f59ba7c88b2be3181c60290eae132219)) + # [@adobe/spacecat-shared-rum-api-client-v2.2.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.2.0...@adobe/spacecat-shared-rum-api-client-v2.2.1) (2024-07-08) diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index c0871edde..2cc45ad7d 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.2.1", + "version": "2.3.0", "description": "Shared modules of the Spacecat Services - Rum API client", "type": "module", "main": "src/index.js", From 5678328a8efe4c2068b3b796274d8e4392f75c8a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:48:59 +0000 Subject: [PATCH 3/4] fix(deps): update external fixes (#291) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@aws-sdk/client-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb)) | [`3.609.0` -> `3.614.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.609.0/3.614.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | [`3.609.0` -> `3.614.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.609.0/3.614.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-secrets-manager](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-secrets-manager) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager)) | [`3.609.0` -> `3.614.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.609.0/3.614.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-secrets-manager/3.614.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.614.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.609.0/3.614.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.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-sqs](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sqs) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs)) | [`3.609.0` -> `3.614.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sqs/3.609.0/3.614.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sqs/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sqs/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sqs/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sqs/3.609.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/lib-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/lib/lib-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb)) | [`3.610.0` -> `3.614.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2flib-dynamodb/3.610.0/3.614.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2flib-dynamodb/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2flib-dynamodb/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2flib-dynamodb/3.610.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2flib-dynamodb/3.610.0/3.614.0?slim=true)](https://docs.renovatebot.com/merge-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)) | [`7.15.0` -> `7.16.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/7.15.0/7.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/7.15.0/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/7.15.0/7.16.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)) | [`7.15.0` -> `7.16.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/7.15.0/7.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/7.15.0/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/7.15.0/7.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [ajv](https://ajv.js.org) ([source](https://togithub.com/ajv-validator/ajv)) | [`8.16.0` -> `8.17.1`](https://renovatebot.com/diffs/npm/ajv/8.16.0/8.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/ajv/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ajv/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ajv/8.16.0/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ajv/8.16.0/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
aws/aws-sdk-js-v3 (@​aws-sdk/client-dynamodb) ### [`v3.614.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36140-2024-07-10) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.613.0...v3.614.0) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb) ### [`v3.613.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#36130-2024-07-09) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.609.0...v3.613.0) **Note:** Version bump only for package [@​aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3) ### [`v3.614.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36140-2024-07-10) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.613.0...v3.614.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3) ### [`v3.613.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36130-2024-07-09) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.609.0...v3.613.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)
aws/aws-sdk-js-v3 (@​aws-sdk/client-secrets-manager) ### [`v3.614.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36140-2024-07-10) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.613.0...v3.614.0) **Note:** Version bump only for package [@​aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager) ### [`v3.613.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#36130-2024-07-09) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.609.0...v3.613.0) **Note:** Version bump only for package [@​aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)
aws/aws-sdk-js-v3 (@​aws-sdk/client-sqs) ### [`v3.614.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36140-2024-07-10) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.613.0...v3.614.0) **Note:** Version bump only for package [@​aws-sdk/client-sqs](https://togithub.com/aws-sdk/client-sqs) ### [`v3.613.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sqs/CHANGELOG.md#36130-2024-07-09) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.609.0...v3.613.0) **Note:** Version bump only for package [@​aws-sdk/client-sqs](https://togithub.com/aws-sdk/client-sqs)
aws/aws-sdk-js-v3 (@​aws-sdk/lib-dynamodb) ### [`v3.614.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36140-2024-07-10) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.613.0...v3.614.0) **Note:** Version bump only for package [@​aws-sdk/lib-dynamodb](https://togithub.com/aws-sdk/lib-dynamodb) ### [`v3.613.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/lib/lib-dynamodb/CHANGELOG.md#36130-2024-07-09) [Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.610.0...v3.613.0) **Note:** Version bump only for package [@​aws-sdk/lib-dynamodb](https://togithub.com/aws-sdk/lib-dynamodb)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7160-2024-07-08) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0) ##### 🚀 Features - **rule-tester:** stricter rule test validations - **eslint-plugin:** \[no-unnecessary-parameter-property-assignment] add new rule - **eslint-plugin:** add support for nested namespaces to unsafe-member-access - **eslint-plugin:** \[no-floating-promises] add checkThenables option ##### 🩹 Fixes - **deps:** update dependency [@​eslint-community/regexpp](https://togithub.com/eslint-community/regexpp) to v4.11.0 - **eslint-plugin:** \[no-floating-promises] add `suggestions` to tests from [#​9263](https://togithub.com/typescript-eslint/typescript-eslint/issues/9263) `checkThenables` - **website:** react key error on internal pages of website - **eslint-plugin:** \[restrict-template-expressions] don't report tuples if `allowArray` option is enabled ##### ❤️ Thank You - Abraham Guo - auvred - Josh Goldberg ✨ - Juan Sanchez - Vinccool96 - YeonJuan - Yukihiro Hasegawa 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) ### [`v7.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7160-2024-07-08) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0) ##### 🩹 Fixes - **deps:** update dependency [@​eslint-community/regexpp](https://togithub.com/eslint-community/regexpp) to v4.11.0 - **website:** react key error on internal pages of website ##### ❤️ Thank You - Abraham Guo - auvred - Josh Goldberg ✨ - Juan Sanchez - Vinccool96 - YeonJuan - Yukihiro Hasegawa 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.
ajv-validator/ajv (ajv) ### [`v8.17.1`](https://togithub.com/ajv-validator/ajv/releases/tag/v8.17.1) [Compare Source](https://togithub.com/ajv-validator/ajv/compare/v8.16.0...v8.17.1) #### What's Changed - bump version to 8.17.1 by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2472](https://togithub.com/ajv-validator/ajv/pull/2472) **Full Changelog**: https://github.com/ajv-validator/ajv/compare/v8.17.0...v8.17.1 #### Plus everything in 8.17.0 which failed to release The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time. Revert "Revert fast-uri change ([https://github.com/ajv-validator/ajv/pull/2444](https://togithub.com/ajv-validator/ajv/pull/2444))" by [@​gurgunday](https://togithub.com/gurgunday) in [https://github.com/ajv-validator/ajv/pull/2448](https://togithub.com/ajv-validator/ajv/pull/2448) fix: ignore new eslint error for [@​typescript-eslint/no-extraneous-class](https://togithub.com/typescript-eslint/no-extraneous-class) by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2455](https://togithub.com/ajv-validator/ajv/pull/2455) docs: clarify behaviour of addVocabulary by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2454](https://togithub.com/ajv-validator/ajv/pull/2454) docs: refactor to improve legibility by [@​blottn](https://togithub.com/blottn) in [https://github.com/ajv-validator/ajv/pull/2432](https://togithub.com/ajv-validator/ajv/pull/2432) Fix grammatical typo in managing-schemas.md by [@​wetneb](https://togithub.com/wetneb) in [https://github.com/ajv-validator/ajv/pull/2305](https://togithub.com/ajv-validator/ajv/pull/2305) docs: Fix broken strict-mode link by [@​alexanderjsx](https://togithub.com/alexanderjsx) in [https://github.com/ajv-validator/ajv/pull/2459](https://togithub.com/ajv-validator/ajv/pull/2459) feat: add test for encoded refs and bump fast-uri by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2449](https://togithub.com/ajv-validator/ajv/pull/2449) fix: changes for [@​typescript-eslint/array-type](https://togithub.com/typescript-eslint/array-type) rule by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2467](https://togithub.com/ajv-validator/ajv/pull/2467) fixes [https://github.com/ajv-validator/ajv/issues/2217](https://togithub.com/ajv-validator/ajv/issues/2217) - clarify custom keyword naming by [@​jasoniangreen](https://togithub.com/jasoniangreen) in [https://github.com/ajv-validator/ajv/pull/2457](https://togithub.com/ajv-validator/ajv/pull/2457)
--- ### Configuration 📅 **Schedule**: Branch creation - "after 2pm on Saturday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/adobe/spacecat-shared). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 4098 +++++++++-------- package.json | 6 +- .../spacecat-shared-data-access/package.json | 4 +- packages/spacecat-shared-dynamo/package.json | 4 +- .../package.json | 2 +- packages/spacecat-shared-utils/package.json | 4 +- 6 files changed, 2065 insertions(+), 2053 deletions(-) diff --git a/package-lock.json b/package-lock.json index e80f359b9..9d9a1ae57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,9 +16,9 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "7.15.0", - "@typescript-eslint/parser": "7.15.0", - "ajv": "8.16.0", + "@typescript-eslint/eslint-plugin": "7.16.0", + "@typescript-eslint/parser": "7.16.0", + "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.0.11", @@ -262,48 +262,48 @@ "license": "0BSD" }, "node_modules/@aws-sdk/client-dynamodb": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.609.0.tgz", - "integrity": "sha512-eu4JWHYzUukqMV+gfZLZbSPoC+KOLzhfGQn/HkSg8/utSiUEi4TjuNtVyWlBaSBDJ3T7rQQKRqTpDrkGS3ZWiQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.614.0.tgz", + "integrity": "sha512-/Qhpim9Y6GfsZ4tcHgXo+YrBR44WGU6ON1PuT8X8D31aIb1mmtcHCF1c86QQ97sGkgmnCcaTWhQYjLNiJOZkbA==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", - "@aws-sdk/middleware-endpoint-discovery": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", + "@aws-sdk/middleware-endpoint-discovery": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -426,12 +426,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -441,12 +441,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -469,13 +469,13 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -494,12 +494,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -528,11 +528,11 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -543,15 +543,15 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -561,11 +561,11 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -576,9 +576,9 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -647,13 +647,13 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -664,14 +664,14 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -707,12 +707,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -721,9 +721,9 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -796,9 +796,9 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -808,15 +808,15 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -900,12 +900,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -915,15 +915,15 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -932,11 +932,11 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -981,12 +981,12 @@ } }, "node_modules/@aws-sdk/client-dynamodb/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -1071,65 +1071,65 @@ } }, "node_modules/@aws-sdk/client-s3": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.609.0.tgz", - "integrity": "sha512-lh8NxL9qm8eSphEcsTGjNMArYRlga4yTZCr3d7UPCRFiV1oz3e0EIA5EnxSriYi9P5Houi5d9GSWtPOel2mAow==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.614.0.tgz", + "integrity": "sha512-9BlhfeBegvyjOqHtcr9kvrT80wiy7EVUiqYyTFiiDv/hJIcG88XHQCZdLU7658XBkQ7aFrr5b8rF2HRD1oroxw==", "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.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", - "@aws-sdk/middleware-bucket-endpoint": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", + "@aws-sdk/middleware-bucket-endpoint": "3.614.0", "@aws-sdk/middleware-expect-continue": "3.609.0", - "@aws-sdk/middleware-flexible-checksums": "3.609.0", + "@aws-sdk/middleware-flexible-checksums": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-location-constraint": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-sdk-s3": "3.609.0", + "@aws-sdk/middleware-sdk-s3": "3.614.0", "@aws-sdk/middleware-signing": "3.609.0", "@aws-sdk/middleware-ssec": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", - "@aws-sdk/signature-v4-multi-region": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/signature-v4-multi-region": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", "@aws-sdk/xml-builder": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", "@smithy/eventstream-serde-browser": "^3.0.4", "@smithy/eventstream-serde-config-resolver": "^3.0.3", "@smithy/eventstream-serde-node": "^3.0.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@smithy/fetch-http-handler": "^3.2.1", "@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.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-retry": "^3.0.3", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "@smithy/util-utf8": "^3.0.0", "@smithy/util-waiter": "^3.1.2", "tslib": "^2.6.2" @@ -1256,13 +1256,13 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-bucket-endpoint": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.609.0.tgz", - "integrity": "sha512-QhHRfr4e7FqaMUAnOAFdQVOR3yDLw40i1IZPo+TeiKyev9LEyYEX2l6DbdaIwAztofOpAxfFNj/IJ0V/efzz/w==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.614.0.tgz", + "integrity": "sha512-TqEY8KcZeZ0LIxXaqG9RSSNnDHvD8RAFP4Xenwsxqnyad0Yn7LgCoFwRByelJ0t54ROYL1/ETJleWE4U4TOXdg==", "dependencies": { "@aws-sdk/types": "3.609.0", "@aws-sdk/util-arn-parser": "3.568.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", @@ -1287,9 +1287,9 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-flexible-checksums": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.609.0.tgz", - "integrity": "sha512-TJ4WE+ehT+qcrhr7/yJCzmJJPmUoPPWIbCnFzqGxauH/dpVBCslmd1vZg3h2VnfRiaDkc6f68dqYVc29CaurhQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.614.0.tgz", + "integrity": "sha512-ZLpxVXMboDeMT7p2Kdp5m1uLVKOktkZoMgLvvbe3zbrU4Ji5IU5xVE0aa4X7H28BtuODCs6SLESnPs19bhMKlA==", "dependencies": { "@aws-crypto/crc32": "5.2.0", "@aws-crypto/crc32c": "5.2.0", @@ -1389,12 +1389,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -1404,12 +1404,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -1443,13 +1443,13 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -1468,12 +1468,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -1531,11 +1531,11 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -1546,15 +1546,15 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -1564,11 +1564,11 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -1641,9 +1641,9 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -1746,13 +1746,13 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -1763,14 +1763,14 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -1806,12 +1806,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -1820,9 +1820,9 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -1895,9 +1895,9 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -1924,15 +1924,15 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -2016,12 +2016,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -2031,15 +2031,15 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2048,11 +2048,11 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2097,12 +2097,12 @@ } }, "node_modules/@aws-sdk/client-s3/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -2187,47 +2187,47 @@ } }, "node_modules/@aws-sdk/client-secrets-manager": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.609.0.tgz", - "integrity": "sha512-1vDLUl0TuZx7TATsYkIaKj9etNzTpFVF95FpfFnJeyen397tYLot5sUNkcMCJvOLbdNVnJo1o5F8GNfU776EIQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.614.0.tgz", + "integrity": "sha512-gxCYaRYF78R5xBxXoKdF+xiWiElIJqOTSNxjt28ch+GEn9TNAYwpQcTxejBZ5VxeDwbmBjRaB9Vpx9FPeImTMw==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -2349,12 +2349,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -2364,12 +2364,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -2392,13 +2392,13 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -2417,12 +2417,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2451,11 +2451,11 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -2466,15 +2466,15 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -2484,11 +2484,11 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -2499,9 +2499,9 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -2570,13 +2570,13 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -2587,14 +2587,14 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -2630,12 +2630,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2644,9 +2644,9 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -2719,9 +2719,9 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -2731,15 +2731,15 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -2823,12 +2823,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -2838,15 +2838,15 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2855,11 +2855,11 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -2904,12 +2904,12 @@ } }, "node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -2981,49 +2981,49 @@ } }, "node_modules/@aws-sdk/client-sqs": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.609.0.tgz", - "integrity": "sha512-0cJsOWp1AOt7MYNdpq8k0nDY5g2twXdnTcryljubIXJJMrORSd4p9YtH3X8auJaqb9vd2t/D8XhoJTNbTC/4lQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.614.0.tgz", + "integrity": "sha512-jCeHIlfwBSuoKN7Nf+DHYbH1eBuWALf+o9WaK8J+xhU0VE6G0DGdjHhjW1aTGTchBntARzqzMqwvY1e18Ac1zQ==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-sdk-sqs": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-sdk-sqs": "3.614.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/md5-js": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -3144,12 +3144,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-sdk-sqs": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.609.0.tgz", - "integrity": "sha512-0rbOiErKuKIc9fLyjiqtjgAcUt6yBBcXVwta/q+W7WLxJbNtkTfGKfKhxPtp0+5S8EyljMpg2rITBCJzNRXjiA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.614.0.tgz", + "integrity": "sha512-TFBbXEMnzBqGVPatL5Pg8a3kPOUrhSWxXXWZjr6S4D5ffCJnCNSzfi09SUoehe6uYmTQlS7AAqugTIFdRnA/ww==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-hex-encoding": "^3.0.0", "@smithy/util-utf8": "^3.0.0", @@ -3160,12 +3160,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -3175,12 +3175,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -3203,13 +3203,13 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -3228,12 +3228,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -3262,11 +3262,11 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -3277,15 +3277,15 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -3295,11 +3295,11 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -3310,9 +3310,9 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -3391,13 +3391,13 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -3408,14 +3408,14 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -3451,12 +3451,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -3465,9 +3465,9 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -3540,9 +3540,9 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -3552,15 +3552,15 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -3644,12 +3644,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -3659,15 +3659,15 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -3676,11 +3676,11 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -3725,12 +3725,12 @@ } }, "node_modules/@aws-sdk/client-sqs/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -3802,44 +3802,44 @@ } }, "node_modules/@aws-sdk/client-sso": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.609.0.tgz", - "integrity": "sha512-gqXGFDkIpKHCKAbeJK4aIDt3tiwJ26Rf5Tqw9JS6BYXsdMeOB8FTzqD9R+Yc1epHd8s5L94sdqXT5PapgxFZrg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.614.0.tgz", + "integrity": "sha512-p5pyYaxRzBttjBkqfc8i3K7DzBdTg3ECdVgBo6INIUxfvDy0J8QUE8vNtCgvFIkq+uPw/8M+Eo4zzln7anuO0Q==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.609.0", + "@aws-sdk/core": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -3850,45 +3850,45 @@ } }, "node_modules/@aws-sdk/client-sso-oidc": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.609.0.tgz", - "integrity": "sha512-0bNPAyPdkWkS9EGB2A9BZDkBNrnVCBzk5lYRezoT4K3/gi9w1DTYH5tuRdwaTZdxW19U1mq7CV0YJJARKO1L9Q==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.614.0.tgz", + "integrity": "sha512-BI1NWcpppbHg/28zbUg54dZeckork8BItZIcjls12vxasy+p3iEzrJVG60jcbUTTsk3Qc1tyxNfrdcVqx0y7Ww==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -3898,7 +3898,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.609.0" + "@aws-sdk/client-sts": "^3.614.0" } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/sha256-browser": { @@ -4012,12 +4012,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -4027,12 +4027,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -4055,13 +4055,13 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -4080,12 +4080,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -4114,11 +4114,11 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -4129,15 +4129,15 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -4147,11 +4147,11 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -4162,9 +4162,9 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -4233,13 +4233,13 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -4250,14 +4250,14 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -4293,12 +4293,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -4307,9 +4307,9 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -4382,9 +4382,9 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -4394,15 +4394,15 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -4486,12 +4486,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -4501,15 +4501,15 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -4518,11 +4518,11 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -4567,12 +4567,12 @@ } }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -4754,12 +4754,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -4769,12 +4769,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -4797,13 +4797,13 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -4822,12 +4822,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -4856,11 +4856,11 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -4871,15 +4871,15 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -4889,11 +4889,11 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -4904,9 +4904,9 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -4975,13 +4975,13 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -4992,14 +4992,14 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -5035,12 +5035,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -5049,9 +5049,9 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -5124,9 +5124,9 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -5136,15 +5136,15 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -5228,12 +5228,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -5243,15 +5243,15 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -5260,11 +5260,11 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -5309,12 +5309,12 @@ } }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -5386,46 +5386,46 @@ } }, "node_modules/@aws-sdk/client-sts": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.609.0.tgz", - "integrity": "sha512-A0B3sDKFoFlGo8RYRjDBWHXpbgirer2bZBkCIzhSPHc1vOFHt/m2NcUoE2xnBKXJFrptL1xDkvo1P+XYp/BfcQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.614.0.tgz", + "integrity": "sha512-i6QmaVA1KHHYNnI2VYQy/sc31rLm4+jSp8b/YbQpFnD0w3aXsrEEHHlxek45uSkHb4Nrj1omFBVy/xp1WVYx2Q==", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -5546,12 +5546,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -5561,12 +5561,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -5589,13 +5589,13 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" }, "engines": { @@ -5614,12 +5614,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -5648,11 +5648,11 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -5663,15 +5663,15 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -5681,11 +5681,11 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -5696,9 +5696,9 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -5767,13 +5767,13 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -5784,14 +5784,14 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -5827,12 +5827,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -5841,9 +5841,9 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -5916,9 +5916,9 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -5928,15 +5928,15 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -6020,12 +6020,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" @@ -6035,15 +6035,15 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "dependencies": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6052,11 +6052,11 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6101,12 +6101,12 @@ } }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -6178,14 +6178,14 @@ } }, "node_modules/@aws-sdk/core": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.609.0.tgz", - "integrity": "sha512-ptqw+DTxLr01+pKjDUuo53SEDzI+7nFM3WfQaEo0yhDg8vWw8PER4sWj1Ysx67ksctnZesPUjqxd5SHbtdBxiA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.614.0.tgz", + "integrity": "sha512-BUuS5/1YkgmKc4J0bg83XEtMyDHVyqG2QDzfmhYe8gbOIZabUl1FlrFVwhCAthtrrI6MPGTQcERB4BtJKUSplw==", "dependencies": { - "@smithy/core": "^2.2.4", + "@smithy/core": "^2.2.6", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "fast-xml-parser": "4.2.5", "tslib": "^2.6.2" @@ -6207,15 +6207,15 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" @@ -6225,9 +6225,9 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -6248,13 +6248,13 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -6265,14 +6265,14 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -6308,12 +6308,12 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6322,9 +6322,9 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -6397,9 +6397,9 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -6426,15 +6426,15 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -6524,12 +6524,12 @@ } }, "node_modules/@aws-sdk/core/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -6610,19 +6610,19 @@ } }, "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.609.0.tgz", - "integrity": "sha512-hwaBfXuBTv6/eAdEsDfGcteYUW6Km7lvvubbxEdxIuJNF3vswR7RMGIXaEC37hhPkTTgd3H0TONammhwZIfkog==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.614.0.tgz", + "integrity": "sha512-KfLuLFGwlvFSZ2MuzYwWGPb1y5TeiwX5okIDe0aQ1h10oD3924FXbN+mabOnUHQ8EFcGAtCaWbrC86mI7ktC6A==", "dependencies": { "@aws-sdk/credential-provider-env": "3.609.0", - "@aws-sdk/credential-provider-http": "3.609.0", - "@aws-sdk/credential-provider-process": "3.609.0", - "@aws-sdk/credential-provider-sso": "3.609.0", + "@aws-sdk/credential-provider-http": "3.614.0", + "@aws-sdk/credential-provider-process": "3.614.0", + "@aws-sdk/credential-provider-sso": "3.614.0", "@aws-sdk/credential-provider-web-identity": "3.609.0", "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.1.3", + "@smithy/credential-provider-imds": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6630,7 +6630,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sts": "^3.609.0" + "@aws-sdk/client-sts": "^3.614.0" } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-env": { @@ -6648,18 +6648,18 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-http": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.609.0.tgz", - "integrity": "sha512-GQQfB9Mk4XUZwaPsk4V3w8MqleS6ApkZKVQn3vTLAKa8Y7B2Imcpe5zWbKYjDd8MPpMWjHcBGFTVlDRFP4zwSQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.614.0.tgz", + "integrity": "sha512-YIEjlNUKb3Vo/iTnGAPdsiDC3FUUnNoex2OwU8LmR7AkYZiWdB8nx99DfgkkY+OFMUpw7nKD2PCOtuFONelfGA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -6667,13 +6667,13 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-process": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.609.0.tgz", - "integrity": "sha512-Ux35nGOSJKZWUIM3Ny0ROZ8cqPRUEkh+tR3X2o9ydEbFiLq3eMMyEnHJqx4EeUjLRchidlm4CCid9GxMe5/gdw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz", + "integrity": "sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6706,11 +6706,11 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -6721,9 +6721,9 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -6744,13 +6744,13 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -6785,12 +6785,12 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -6799,9 +6799,9 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -6863,9 +6863,9 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -6875,15 +6875,15 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -6960,12 +6960,12 @@ } }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -7001,20 +7001,20 @@ } }, "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.609.0.tgz", - "integrity": "sha512-4J8/JRuqfxJDGD9jTHVCBxCvYt7/Vgj2Stlhj930mrjFPO/yRw8ilAAZxBWe0JHPX3QwepCmh4ErZe53F5ysxQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.614.0.tgz", + "integrity": "sha512-4J6gPEuFZP0mkWq5E//oMS1vrmMM88iNNcv7TEljYnsc6JTAlKejCyFwx6CN+nkIhmIZsl06SXIhBemzBdBPfg==", "dependencies": { "@aws-sdk/credential-provider-env": "3.609.0", - "@aws-sdk/credential-provider-http": "3.609.0", - "@aws-sdk/credential-provider-ini": "3.609.0", - "@aws-sdk/credential-provider-process": "3.609.0", - "@aws-sdk/credential-provider-sso": "3.609.0", + "@aws-sdk/credential-provider-http": "3.614.0", + "@aws-sdk/credential-provider-ini": "3.614.0", + "@aws-sdk/credential-provider-process": "3.614.0", + "@aws-sdk/credential-provider-sso": "3.614.0", "@aws-sdk/credential-provider-web-identity": "3.609.0", "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.1.3", + "@smithy/credential-provider-imds": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7037,18 +7037,18 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-http": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.609.0.tgz", - "integrity": "sha512-GQQfB9Mk4XUZwaPsk4V3w8MqleS6ApkZKVQn3vTLAKa8Y7B2Imcpe5zWbKYjDd8MPpMWjHcBGFTVlDRFP4zwSQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.614.0.tgz", + "integrity": "sha512-YIEjlNUKb3Vo/iTnGAPdsiDC3FUUnNoex2OwU8LmR7AkYZiWdB8nx99DfgkkY+OFMUpw7nKD2PCOtuFONelfGA==", "dependencies": { "@aws-sdk/types": "3.609.0", - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -7056,13 +7056,13 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-process": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.609.0.tgz", - "integrity": "sha512-Ux35nGOSJKZWUIM3Ny0ROZ8cqPRUEkh+tR3X2o9ydEbFiLq3eMMyEnHJqx4EeUjLRchidlm4CCid9GxMe5/gdw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz", + "integrity": "sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7095,11 +7095,11 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "dependencies": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -7110,9 +7110,9 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -7133,13 +7133,13 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -7174,12 +7174,12 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7188,9 +7188,9 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -7252,9 +7252,9 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -7264,15 +7264,15 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -7349,12 +7349,12 @@ } }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -7405,15 +7405,15 @@ } }, "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.609.0.tgz", - "integrity": "sha512-oQPGDKMMIxjvTcm86g07RPYeC7mCNk+29dPpY15ZAPRpAF7F0tircsC3wT9fHzNaKShEyK5LuI5Kg/uxsdy+Iw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.614.0.tgz", + "integrity": "sha512-55+gp0JY4451cWI1qXmVMFM0GQaBKiQpXv2P0xmd9P3qLDyeFUSEW8XPh0d2lb1ICr6x4s47ynXVdGCIv2mXMg==", "dependencies": { - "@aws-sdk/client-sso": "3.609.0", - "@aws-sdk/token-providers": "3.609.0", + "@aws-sdk/client-sso": "3.614.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.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7446,9 +7446,9 @@ } }, "node_modules/@aws-sdk/credential-provider-sso/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -7532,12 +7532,12 @@ } }, "node_modules/@aws-sdk/lib-dynamodb": { - "version": "3.610.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.610.0.tgz", - "integrity": "sha512-hlzq36zVnimVO0qX9jZSEL+MowpC5iLH00sLZnW90Q88ZCf/rnCiiEcyHnQSS+YLFDLXMtqqI3b2JZfDJlCGUw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.614.0.tgz", + "integrity": "sha512-hHbw4f4ZBmsoyRGmyVsjXe/I3F4ewzw5zZSgKZcmGTgPt1fm8WKAA18YPh8K3CScGWerHFY3w2ilPNHDr+xpsg==", "dependencies": { - "@aws-sdk/util-dynamodb": "3.609.0", - "@smithy/smithy-client": "^3.1.5", + "@aws-sdk/util-dynamodb": "3.614.0", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7545,7 +7545,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.609.0" + "@aws-sdk/client-dynamodb": "^3.614.0" } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/abort-controller": { @@ -7561,9 +7561,9 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -7584,13 +7584,13 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -7625,12 +7625,12 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7639,9 +7639,9 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -7703,9 +7703,9 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -7715,15 +7715,15 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -7800,12 +7800,12 @@ } }, "node_modules/@aws-sdk/lib-dynamodb/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -7858,13 +7858,13 @@ } }, "node_modules/@aws-sdk/middleware-endpoint-discovery": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.609.0.tgz", - "integrity": "sha512-HnjoduqkbsU+x7V+SF/h0/fxBKzG9ABlYteR2yiZEVyY70o2Wtt7fh4mZoVvpyuDEFCsYnLk9Ve0+7mNo7+pWA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.614.0.tgz", + "integrity": "sha512-xEe9a3aaAzzo5RlRz4SSsGYpYiju29SdYDQYsm1v3syWGOqNzFlJE7aFuSP0/WYgdwB6svILLdAeZs8w2fj3GQ==", "dependencies": { "@aws-sdk/endpoint-cache": "3.572.0", "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -7898,12 +7898,12 @@ } }, "node_modules/@aws-sdk/middleware-endpoint-discovery/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -7936,9 +7936,9 @@ } }, "node_modules/@aws-sdk/middleware-endpoint-discovery/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -8045,16 +8045,16 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.609.0.tgz", - "integrity": "sha512-kvwjL6OJFhAGWoYaIWR7HmILjiVk6xVj6QEU6qZMA7FtGgvlKi4pLfs8Of+hQqo+2TEhUoxG/5t6WqwB8uxjsw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.614.0.tgz", + "integrity": "sha512-9fJTaiuuOfFV4FqmUEhPYzrtv7JOfYpB7q65oG3uayVH4ngWHIJkjnnX79zRhNZKdPGta+XIsnZzjEghg82ngA==", "dependencies": { "@aws-sdk/types": "3.609.0", "@aws-sdk/util-arn-parser": "3.568.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "tslib": "^2.6.2" @@ -8099,9 +8099,9 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "dependencies": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -8122,13 +8122,13 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "dependencies": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -8163,12 +8163,12 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "dependencies": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -8177,9 +8177,9 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "dependencies": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -8241,9 +8241,9 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -8270,15 +8270,15 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "dependencies": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" }, "engines": { @@ -8366,12 +8366,12 @@ } }, "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -8518,11 +8518,11 @@ } }, "node_modules/@aws-sdk/signature-v4-multi-region": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.609.0.tgz", - "integrity": "sha512-FJs0BxVMyYOKNu7nzFI1kehfgWoYmdto5B8BSS29geUACF7jlOoeCfNZWVrnMjvAxVlSQ5O7Mr575932BnsycA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.614.0.tgz", + "integrity": "sha512-6mW3ONW4oLzxrePznYhz7sNT9ji9Am9ufLeV722tbOVS5lArBOZ6E1oPz0uYBhisUPznWKhcLRMggt7vIJWMng==", "dependencies": { - "@aws-sdk/middleware-sdk-s3": "3.609.0", + "@aws-sdk/middleware-sdk-s3": "3.614.0", "@aws-sdk/types": "3.609.0", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", @@ -8655,13 +8655,13 @@ } }, "node_modules/@aws-sdk/token-providers": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.609.0.tgz", - "integrity": "sha512-WvhW/7XSf+H7YmtiIigQxfDVZVZI7mbKikQ09YpzN7FeN3TmYib1+0tB+EE9TbICkwssjiFc71FEBEh4K9grKQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz", + "integrity": "sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==", "dependencies": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -8669,7 +8669,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-sso-oidc": "^3.609.0" + "@aws-sdk/client-sso-oidc": "^3.614.0" } }, "node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/types": { @@ -8697,9 +8697,9 @@ } }, "node_modules/@aws-sdk/token-providers/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "dependencies": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -8743,9 +8743,9 @@ } }, "node_modules/@aws-sdk/util-dynamodb": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.609.0.tgz", - "integrity": "sha512-FdXv4M/5Vee6zUuokpXpOPWK9hs6i4Bp4AZNWT2MTvOjUHP4BlP3b7h3Znb3pjjbA522VqDb674hrPXtS4sIWQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.614.0.tgz", + "integrity": "sha512-ce0HZGiM2KxG5Wa07ykxZt4iQCUAj/n/ZhnXKo7ZUU1T2qPZVl65zAnCgF7VXH/l3CO638ENWHG25aXEYfM5Bg==", "dependencies": { "tslib": "^2.6.2" }, @@ -8753,7 +8753,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "@aws-sdk/client-dynamodb": "^3.609.0" + "@aws-sdk/client-dynamodb": "^3.614.0" } }, "node_modules/@aws-sdk/util-endpoints": { @@ -10974,16 +10974,16 @@ "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.15.0.tgz", - "integrity": "sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.0.tgz", + "integrity": "sha512-py1miT6iQpJcs1BiJjm54AMzeuMPBSPuKPlnT8HlfudbcS5rYeX5jajpLf3mrdRh9dA/Ec2FVUY0ifeVNDIhZw==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/type-utils": "7.15.0", - "@typescript-eslint/utils": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/type-utils": "7.16.0", + "@typescript-eslint/utils": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -11007,15 +11007,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.15.0.tgz", - "integrity": "sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.0.tgz", + "integrity": "sha512-ar9E+k7CU8rWi2e5ErzQiC93KKEFAXA2Kky0scAlPcxYblLt8+XZuHUZwlyfXILyQa95P6lQg+eZgh/dDs3+Vw==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/typescript-estree": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/typescript-estree": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "debug": "^4.3.4" }, "engines": { @@ -11035,13 +11035,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.15.0.tgz", - "integrity": "sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz", + "integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0" + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -11052,13 +11052,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.15.0.tgz", - "integrity": "sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.0.tgz", + "integrity": "sha512-j0fuUswUjDHfqV/UdW6mLtOQQseORqfdmoBNDFOqs9rvNVR2e+cmu6zJu/Ku4SDuqiJko6YnhwcL8x45r8Oqxg==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.15.0", - "@typescript-eslint/utils": "7.15.0", + "@typescript-eslint/typescript-estree": "7.16.0", + "@typescript-eslint/utils": "7.16.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -11079,9 +11079,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.15.0.tgz", - "integrity": "sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz", + "integrity": "sha512-fecuH15Y+TzlUutvUl9Cc2XJxqdLr7+93SQIbcZfd4XRGGKoxyljK27b+kxKamjRkU7FYC6RrbSCg0ALcZn/xw==", "dev": true, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -11092,13 +11092,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.15.0.tgz", - "integrity": "sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.0.tgz", + "integrity": "sha512-a5NTvk51ZndFuOLCh5OaJBELYc2O3Zqxfl3Js78VFE1zE46J2AaVuW+rEbVkQznjkmlzWsUI15BG5tQMixzZLw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -11144,15 +11144,15 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.15.0.tgz", - "integrity": "sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz", + "integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/typescript-estree": "7.15.0" + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/typescript-estree": "7.16.0" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -11166,12 +11166,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.15.0.tgz", - "integrity": "sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz", + "integrity": "sha512-rMo01uPy9C7XxG7AFsxa8zLnWXTF8N3PYclekWSrurvhwiw1eW88mrKiAYe6s53AUY57nTRz8dJsuuXdkAhzCg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/types": "7.16.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -11229,15 +11229,15 @@ } }, "node_modules/ajv": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", - "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -13219,6 +13219,12 @@ "dev": true, "license": "MIT" }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "dev": true + }, "node_modules/fast-xml-parser": { "version": "4.2.5", "funding": [ @@ -21624,7 +21630,7 @@ }, "packages/spacecat-shared-ahrefs-client": { "name": "@adobe/spacecat-shared-ahrefs-client", - "version": "1.3.1", + "version": "1.3.2", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -22107,13 +22113,13 @@ }, "packages/spacecat-shared-data-access": { "name": "@adobe/spacecat-shared-data-access", - "version": "1.34.1", + "version": "1.35.1", "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0", + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.0", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" @@ -22622,12 +22628,12 @@ }, "packages/spacecat-shared-dynamo": { "name": "@adobe/spacecat-shared-dynamo", - "version": "1.3.26", + "version": "1.3.27", "license": "Apache-2.0", "dependencies": { "@adobe/spacecat-shared-utils": "1.1.0", - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0" + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.0" }, "devDependencies": { "chai": "4.4.1" @@ -22651,14 +22657,14 @@ }, "packages/spacecat-shared-google-client": { "name": "@adobe/spacecat-shared-google-client", - "version": "1.1.12", + "version": "1.1.13", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.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.609.0", + "@aws-sdk/client-secrets-manager": "3.614.0", "google-auth-library": "9.11.0", "googleapis": "140.0.1" }, @@ -24167,7 +24173,7 @@ }, "packages/spacecat-shared-gpt-client": { "name": "@adobe/spacecat-shared-gpt-client", - "version": "1.2.9", + "version": "1.2.10", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -24262,7 +24268,7 @@ }, "packages/spacecat-shared-ims-client": { "name": "@adobe/spacecat-shared-ims-client", - "version": "1.3.10", + "version": "1.3.11", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -24309,7 +24315,7 @@ }, "packages/spacecat-shared-rum-api-client": { "name": "@adobe/spacecat-shared-rum-api-client", - "version": "2.2.0", + "version": "2.3.0", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", @@ -24334,7 +24340,7 @@ }, "packages/spacecat-shared-slack-client": { "name": "@adobe/spacecat-shared-slack-client", - "version": "1.3.8", + "version": "1.3.9", "license": "Apache-2.0", "dependencies": { "@adobe/helix-universal": "5.0.5", @@ -24381,12 +24387,12 @@ }, "packages/spacecat-shared-utils": { "name": "@adobe/spacecat-shared-utils", - "version": "1.18.1", + "version": "1.18.2", "license": "Apache-2.0", "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.609.0", - "@aws-sdk/client-sqs": "3.609.0", + "@aws-sdk/client-s3": "3.614.0", + "@aws-sdk/client-sqs": "3.614.0", "@json2csv/plainjs": "7.0.6" }, "devDependencies": { @@ -24886,8 +24892,8 @@ "requires": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0", + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.0", "@types/joi": "17.2.3", "chai": "4.4.1", "chai-as-promised": "8.0.0", @@ -25287,8 +25293,8 @@ "version": "file:packages/spacecat-shared-dynamo", "requires": { "@adobe/spacecat-shared-utils": "1.1.0", - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0", + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.0", "chai": "4.4.1" }, "dependencies": { @@ -25313,7 +25319,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.609.0", + "@aws-sdk/client-secrets-manager": "3.614.0", "chai": "4.4.1", "chai-as-promised": "8.0.0", "google-auth-library": "9.11.0", @@ -26835,8 +26841,8 @@ "@adobe/fetch": "4.1.8", "@adobe/helix-shared-wrap": "2.0.2", "@adobe/spacecat-shared-data-access": "file:../spacecat-shared-data-access", - "@aws-sdk/client-s3": "3.609.0", - "@aws-sdk/client-sqs": "3.609.0", + "@aws-sdk/client-s3": "3.614.0", + "@aws-sdk/client-sqs": "3.614.0", "@json2csv/plainjs": "7.0.6", "chai": "4.4.1", "chai-as-promised": "8.0.0", @@ -26956,48 +26962,48 @@ } }, "@aws-sdk/client-dynamodb": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.609.0.tgz", - "integrity": "sha512-eu4JWHYzUukqMV+gfZLZbSPoC+KOLzhfGQn/HkSg8/utSiUEi4TjuNtVyWlBaSBDJ3T7rQQKRqTpDrkGS3ZWiQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.614.0.tgz", + "integrity": "sha512-/Qhpim9Y6GfsZ4tcHgXo+YrBR44WGU6ON1PuT8X8D31aIb1mmtcHCF1c86QQ97sGkgmnCcaTWhQYjLNiJOZkbA==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", - "@aws-sdk/middleware-endpoint-discovery": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", + "@aws-sdk/middleware-endpoint-discovery": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -27103,24 +27109,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -27137,13 +27143,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -27159,12 +27165,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -27179,11 +27185,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -27191,26 +27197,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -27218,9 +27224,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -27279,13 +27285,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -27293,14 +27299,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -27327,20 +27333,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -27395,24 +27401,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -27480,37 +27486,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -27543,12 +27549,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -27614,65 +27620,65 @@ } }, "@aws-sdk/client-s3": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.609.0.tgz", - "integrity": "sha512-lh8NxL9qm8eSphEcsTGjNMArYRlga4yTZCr3d7UPCRFiV1oz3e0EIA5EnxSriYi9P5Houi5d9GSWtPOel2mAow==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.614.0.tgz", + "integrity": "sha512-9BlhfeBegvyjOqHtcr9kvrT80wiy7EVUiqYyTFiiDv/hJIcG88XHQCZdLU7658XBkQ7aFrr5b8rF2HRD1oroxw==", "requires": { "@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.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", - "@aws-sdk/middleware-bucket-endpoint": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", + "@aws-sdk/middleware-bucket-endpoint": "3.614.0", "@aws-sdk/middleware-expect-continue": "3.609.0", - "@aws-sdk/middleware-flexible-checksums": "3.609.0", + "@aws-sdk/middleware-flexible-checksums": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-location-constraint": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-sdk-s3": "3.609.0", + "@aws-sdk/middleware-sdk-s3": "3.614.0", "@aws-sdk/middleware-signing": "3.609.0", "@aws-sdk/middleware-ssec": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", - "@aws-sdk/signature-v4-multi-region": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/signature-v4-multi-region": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", "@aws-sdk/xml-builder": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", "@smithy/eventstream-serde-browser": "^3.0.4", "@smithy/eventstream-serde-config-resolver": "^3.0.3", "@smithy/eventstream-serde-node": "^3.0.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@smithy/fetch-http-handler": "^3.2.1", "@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.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-retry": "^3.0.3", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "@smithy/util-utf8": "^3.0.0", "@smithy/util-waiter": "^3.1.2", "tslib": "^2.6.2" @@ -27787,13 +27793,13 @@ } }, "@aws-sdk/middleware-bucket-endpoint": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.609.0.tgz", - "integrity": "sha512-QhHRfr4e7FqaMUAnOAFdQVOR3yDLw40i1IZPo+TeiKyev9LEyYEX2l6DbdaIwAztofOpAxfFNj/IJ0V/efzz/w==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.614.0.tgz", + "integrity": "sha512-TqEY8KcZeZ0LIxXaqG9RSSNnDHvD8RAFP4Xenwsxqnyad0Yn7LgCoFwRByelJ0t54ROYL1/ETJleWE4U4TOXdg==", "requires": { "@aws-sdk/types": "3.609.0", "@aws-sdk/util-arn-parser": "3.568.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", @@ -27812,9 +27818,9 @@ } }, "@aws-sdk/middleware-flexible-checksums": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.609.0.tgz", - "integrity": "sha512-TJ4WE+ehT+qcrhr7/yJCzmJJPmUoPPWIbCnFzqGxauH/dpVBCslmd1vZg3h2VnfRiaDkc6f68dqYVc29CaurhQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.614.0.tgz", + "integrity": "sha512-ZLpxVXMboDeMT7p2Kdp5m1uLVKOktkZoMgLvvbe3zbrU4Ji5IU5xVE0aa4X7H28BtuODCs6SLESnPs19bhMKlA==", "requires": { "@aws-crypto/crc32": "5.2.0", "@aws-crypto/crc32c": "5.2.0", @@ -27893,24 +27899,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -27935,13 +27941,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -27957,12 +27963,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -28003,11 +28009,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -28015,26 +28021,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -28092,9 +28098,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -28184,13 +28190,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -28198,14 +28204,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -28232,20 +28238,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -28300,9 +28306,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -28323,15 +28329,15 @@ } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -28399,37 +28405,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -28462,12 +28468,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -28533,47 +28539,47 @@ } }, "@aws-sdk/client-secrets-manager": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.609.0.tgz", - "integrity": "sha512-1vDLUl0TuZx7TATsYkIaKj9etNzTpFVF95FpfFnJeyen397tYLot5sUNkcMCJvOLbdNVnJo1o5F8GNfU776EIQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.614.0.tgz", + "integrity": "sha512-gxCYaRYF78R5xBxXoKdF+xiWiElIJqOTSNxjt28ch+GEn9TNAYwpQcTxejBZ5VxeDwbmBjRaB9Vpx9FPeImTMw==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -28678,24 +28684,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -28712,13 +28718,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -28734,12 +28740,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -28754,11 +28760,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -28766,26 +28772,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -28793,9 +28799,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -28854,13 +28860,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -28868,14 +28874,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -28902,20 +28908,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -28970,24 +28976,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -29055,37 +29061,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -29118,12 +29124,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -29179,49 +29185,49 @@ } }, "@aws-sdk/client-sqs": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.609.0.tgz", - "integrity": "sha512-0cJsOWp1AOt7MYNdpq8k0nDY5g2twXdnTcryljubIXJJMrORSd4p9YtH3X8auJaqb9vd2t/D8XhoJTNbTC/4lQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.614.0.tgz", + "integrity": "sha512-jCeHIlfwBSuoKN7Nf+DHYbH1eBuWALf+o9WaK8J+xhU0VE6G0DGdjHhjW1aTGTchBntARzqzMqwvY1e18Ac1zQ==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/client-sts": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/client-sts": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-sdk-sqs": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-sdk-sqs": "3.614.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/md5-js": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -29325,12 +29331,12 @@ } }, "@aws-sdk/middleware-sdk-sqs": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.609.0.tgz", - "integrity": "sha512-0rbOiErKuKIc9fLyjiqtjgAcUt6yBBcXVwta/q+W7WLxJbNtkTfGKfKhxPtp0+5S8EyljMpg2rITBCJzNRXjiA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.614.0.tgz", + "integrity": "sha512-TFBbXEMnzBqGVPatL5Pg8a3kPOUrhSWxXXWZjr6S4D5ffCJnCNSzfi09SUoehe6uYmTQlS7AAqugTIFdRnA/ww==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-hex-encoding": "^3.0.0", "@smithy/util-utf8": "^3.0.0", @@ -29338,24 +29344,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -29372,13 +29378,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -29394,12 +29400,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -29414,11 +29420,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -29426,26 +29432,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -29453,9 +29459,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -29524,13 +29530,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -29538,14 +29544,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -29572,20 +29578,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -29640,24 +29646,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -29725,37 +29731,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -29788,12 +29794,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -29849,44 +29855,44 @@ } }, "@aws-sdk/client-sso": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.609.0.tgz", - "integrity": "sha512-gqXGFDkIpKHCKAbeJK4aIDt3tiwJ26Rf5Tqw9JS6BYXsdMeOB8FTzqD9R+Yc1epHd8s5L94sdqXT5PapgxFZrg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.614.0.tgz", + "integrity": "sha512-p5pyYaxRzBttjBkqfc8i3K7DzBdTg3ECdVgBo6INIUxfvDy0J8QUE8vNtCgvFIkq+uPw/8M+Eo4zzln7anuO0Q==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.609.0", + "@aws-sdk/core": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -29990,24 +29996,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -30024,13 +30030,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -30046,12 +30052,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -30066,11 +30072,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -30078,26 +30084,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -30105,9 +30111,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -30166,13 +30172,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -30180,14 +30186,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -30214,20 +30220,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -30282,24 +30288,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -30367,37 +30373,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -30430,12 +30436,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -30491,45 +30497,45 @@ } }, "@aws-sdk/client-sso-oidc": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.609.0.tgz", - "integrity": "sha512-0bNPAyPdkWkS9EGB2A9BZDkBNrnVCBzk5lYRezoT4K3/gi9w1DTYH5tuRdwaTZdxW19U1mq7CV0YJJARKO1L9Q==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.614.0.tgz", + "integrity": "sha512-BI1NWcpppbHg/28zbUg54dZeckork8BItZIcjls12vxasy+p3iEzrJVG60jcbUTTsk3Qc1tyxNfrdcVqx0y7Ww==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -30633,24 +30639,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -30667,13 +30673,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -30689,12 +30695,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -30709,11 +30715,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -30721,26 +30727,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -30748,9 +30754,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -30809,13 +30815,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -30823,14 +30829,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -30857,20 +30863,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -30925,24 +30931,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -31010,37 +31016,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -31073,12 +31079,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -31134,46 +31140,46 @@ } }, "@aws-sdk/client-sts": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.609.0.tgz", - "integrity": "sha512-A0B3sDKFoFlGo8RYRjDBWHXpbgirer2bZBkCIzhSPHc1vOFHt/m2NcUoE2xnBKXJFrptL1xDkvo1P+XYp/BfcQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.614.0.tgz", + "integrity": "sha512-i6QmaVA1KHHYNnI2VYQy/sc31rLm4+jSp8b/YbQpFnD0w3aXsrEEHHlxek45uSkHb4Nrj1omFBVy/xp1WVYx2Q==", "requires": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.609.0", - "@aws-sdk/core": "3.609.0", - "@aws-sdk/credential-provider-node": "3.609.0", + "@aws-sdk/client-sso-oidc": "3.614.0", + "@aws-sdk/core": "3.614.0", + "@aws-sdk/credential-provider-node": "3.614.0", "@aws-sdk/middleware-host-header": "3.609.0", "@aws-sdk/middleware-logger": "3.609.0", "@aws-sdk/middleware-recursion-detection": "3.609.0", - "@aws-sdk/middleware-user-agent": "3.609.0", - "@aws-sdk/region-config-resolver": "3.609.0", + "@aws-sdk/middleware-user-agent": "3.614.0", + "@aws-sdk/region-config-resolver": "3.614.0", "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.609.0", - "@smithy/config-resolver": "^3.0.4", - "@smithy/core": "^2.2.4", - "@smithy/fetch-http-handler": "^3.2.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.2.6", + "@smithy/fetch-http-handler": "^3.2.1", "@smithy/hash-node": "^3.0.3", "@smithy/invalid-dependency": "^3.0.3", "@smithy/middleware-content-length": "^3.0.3", - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.2", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@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.7", - "@smithy/util-defaults-mode-node": "^3.0.7", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-defaults-mode-browser": "^3.0.9", + "@smithy/util-defaults-mode-node": "^3.0.9", + "@smithy/util-endpoints": "^2.0.5", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", "@smithy/util-utf8": "^3.0.0", @@ -31277,24 +31283,24 @@ } }, "@aws-sdk/middleware-user-agent": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.609.0.tgz", - "integrity": "sha512-nbq7MXRmeXm4IDqh+sJRAxGPAq0OfGmGIwKvJcw66hLoG8CmhhVMZmIAEBDFr57S+YajGwnLLRt+eMI05MMeVA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.614.0.tgz", + "integrity": "sha512-xUxh0UPQiMTG6E31Yvu6zVYlikrIcFDKljM11CaatInzvZubGTGiX0DjpqRlfGzUNsuPc/zNrKwRP2+wypgqIw==", "requires": { "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.609.0", + "@aws-sdk/util-endpoints": "3.614.0", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@aws-sdk/region-config-resolver": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.609.0.tgz", - "integrity": "sha512-lMHBG8zg9GWYBc9/XVPKyuAUd7iKqfPP7z04zGta2kGNOKbUTeqmAdc1gJGku75p4kglIPlGBorOxti8DhRmKw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz", + "integrity": "sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -31311,13 +31317,13 @@ } }, "@aws-sdk/util-endpoints": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.609.0.tgz", - "integrity": "sha512-Rh+3V8dOvEeE1aQmUy904DYWtLUEJ7Vf5XBPlQ6At3pBhp+zpXbsnpZzVL33c8lW1xfj6YPwtO6gOeEsl1juCQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz", + "integrity": "sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/types": "^3.3.0", - "@smithy/util-endpoints": "^2.0.4", + "@smithy/util-endpoints": "^2.0.5", "tslib": "^2.6.2" } }, @@ -31333,12 +31339,12 @@ } }, "@aws-sdk/util-user-agent-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.609.0.tgz", - "integrity": "sha512-DlZBwQ/HkZyf3pOWc7+wjJRk5R7x9YxHhs2szHwtv1IW30KMabjjjX0GMlGJ9LLkBHkbaaEY/w9Tkj12XRLhRg==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz", + "integrity": "sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -31353,11 +31359,11 @@ } }, "@smithy/config-resolver": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.4.tgz", - "integrity": "sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz", + "integrity": "sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "@smithy/util-middleware": "^3.0.3", @@ -31365,26 +31371,26 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -31392,9 +31398,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -31453,13 +31459,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -31467,14 +31473,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -31501,20 +31507,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -31569,24 +31575,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -31654,37 +31660,37 @@ } }, "@smithy/util-defaults-mode-browser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.7.tgz", - "integrity": "sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.9.tgz", + "integrity": "sha512-WKPcElz92MAQG09miBdb0GxEH/MwD5GfE8g07WokITq5g6J1ROQfYCKC1wNnkqAGfrSywT7L0rdvvqlBplqiyA==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "@smithy/util-defaults-mode-node": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.7.tgz", - "integrity": "sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.9.tgz", + "integrity": "sha512-dQLrUqFxqpf0GvEKEuFdgXcdZwz6oFm752h4d6C7lQz+RLddf761L2r7dSwGWzESMMB3wKj0jL+skRhEGlecjw==", "requires": { - "@smithy/config-resolver": "^3.0.4", - "@smithy/credential-provider-imds": "^3.1.3", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/config-resolver": "^3.0.5", + "@smithy/credential-provider-imds": "^3.1.4", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/util-endpoints": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.4.tgz", - "integrity": "sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz", + "integrity": "sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -31717,12 +31723,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -31778,14 +31784,14 @@ } }, "@aws-sdk/core": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.609.0.tgz", - "integrity": "sha512-ptqw+DTxLr01+pKjDUuo53SEDzI+7nFM3WfQaEo0yhDg8vWw8PER4sWj1Ysx67ksctnZesPUjqxd5SHbtdBxiA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.614.0.tgz", + "integrity": "sha512-BUuS5/1YkgmKc4J0bg83XEtMyDHVyqG2QDzfmhYe8gbOIZabUl1FlrFVwhCAthtrrI6MPGTQcERB4BtJKUSplw==", "requires": { - "@smithy/core": "^2.2.4", + "@smithy/core": "^2.2.6", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "fast-xml-parser": "4.2.5", "tslib": "^2.6.2" @@ -31801,24 +31807,24 @@ } }, "@smithy/core": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.4.tgz", - "integrity": "sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.2.6.tgz", + "integrity": "sha512-tBbVIv/ui7/lLTKayYJJvi8JLVL2SwOQTbNFEOrvzSE3ktByvsa1erwBOnAMo8N5Vu30g7lN4lLStrU75oDGuw==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", - "@smithy/middleware-retry": "^3.0.7", + "@smithy/middleware-endpoint": "^3.0.5", + "@smithy/middleware-retry": "^3.0.9", "@smithy/middleware-serde": "^3.0.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -31836,13 +31842,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -31850,14 +31856,14 @@ } }, "@smithy/middleware-retry": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.7.tgz", - "integrity": "sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.9.tgz", + "integrity": "sha512-Mrv9omExU1gA7Y0VEJG2LieGfPYtwwcEiOnVGZ54a37NEMr66TJ0glFslOJFuKWG6izg5DpKIUmDV9rRxjm47Q==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-middleware": "^3.0.3", "@smithy/util-retry": "^3.0.3", @@ -31884,20 +31890,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -31952,9 +31958,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -31975,15 +31981,15 @@ } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -32052,12 +32058,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -32118,19 +32124,19 @@ } }, "@aws-sdk/credential-provider-ini": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.609.0.tgz", - "integrity": "sha512-hwaBfXuBTv6/eAdEsDfGcteYUW6Km7lvvubbxEdxIuJNF3vswR7RMGIXaEC37hhPkTTgd3H0TONammhwZIfkog==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.614.0.tgz", + "integrity": "sha512-KfLuLFGwlvFSZ2MuzYwWGPb1y5TeiwX5okIDe0aQ1h10oD3924FXbN+mabOnUHQ8EFcGAtCaWbrC86mI7ktC6A==", "requires": { "@aws-sdk/credential-provider-env": "3.609.0", - "@aws-sdk/credential-provider-http": "3.609.0", - "@aws-sdk/credential-provider-process": "3.609.0", - "@aws-sdk/credential-provider-sso": "3.609.0", + "@aws-sdk/credential-provider-http": "3.614.0", + "@aws-sdk/credential-provider-process": "3.614.0", + "@aws-sdk/credential-provider-sso": "3.614.0", "@aws-sdk/credential-provider-web-identity": "3.609.0", "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.1.3", + "@smithy/credential-provider-imds": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -32147,29 +32153,29 @@ } }, "@aws-sdk/credential-provider-http": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.609.0.tgz", - "integrity": "sha512-GQQfB9Mk4XUZwaPsk4V3w8MqleS6ApkZKVQn3vTLAKa8Y7B2Imcpe5zWbKYjDd8MPpMWjHcBGFTVlDRFP4zwSQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.614.0.tgz", + "integrity": "sha512-YIEjlNUKb3Vo/iTnGAPdsiDC3FUUnNoex2OwU8LmR7AkYZiWdB8nx99DfgkkY+OFMUpw7nKD2PCOtuFONelfGA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, "@aws-sdk/credential-provider-process": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.609.0.tgz", - "integrity": "sha512-Ux35nGOSJKZWUIM3Ny0ROZ8cqPRUEkh+tR3X2o9ydEbFiLq3eMMyEnHJqx4EeUjLRchidlm4CCid9GxMe5/gdw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz", + "integrity": "sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -32193,11 +32199,11 @@ } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -32205,9 +32211,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -32225,13 +32231,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -32257,20 +32263,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -32317,24 +32323,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -32393,12 +32399,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -32427,20 +32433,20 @@ } }, "@aws-sdk/credential-provider-node": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.609.0.tgz", - "integrity": "sha512-4J8/JRuqfxJDGD9jTHVCBxCvYt7/Vgj2Stlhj930mrjFPO/yRw8ilAAZxBWe0JHPX3QwepCmh4ErZe53F5ysxQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.614.0.tgz", + "integrity": "sha512-4J6gPEuFZP0mkWq5E//oMS1vrmMM88iNNcv7TEljYnsc6JTAlKejCyFwx6CN+nkIhmIZsl06SXIhBemzBdBPfg==", "requires": { "@aws-sdk/credential-provider-env": "3.609.0", - "@aws-sdk/credential-provider-http": "3.609.0", - "@aws-sdk/credential-provider-ini": "3.609.0", - "@aws-sdk/credential-provider-process": "3.609.0", - "@aws-sdk/credential-provider-sso": "3.609.0", + "@aws-sdk/credential-provider-http": "3.614.0", + "@aws-sdk/credential-provider-ini": "3.614.0", + "@aws-sdk/credential-provider-process": "3.614.0", + "@aws-sdk/credential-provider-sso": "3.614.0", "@aws-sdk/credential-provider-web-identity": "3.609.0", "@aws-sdk/types": "3.609.0", - "@smithy/credential-provider-imds": "^3.1.3", + "@smithy/credential-provider-imds": "^3.1.4", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -32457,29 +32463,29 @@ } }, "@aws-sdk/credential-provider-http": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.609.0.tgz", - "integrity": "sha512-GQQfB9Mk4XUZwaPsk4V3w8MqleS6ApkZKVQn3vTLAKa8Y7B2Imcpe5zWbKYjDd8MPpMWjHcBGFTVlDRFP4zwSQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.614.0.tgz", + "integrity": "sha512-YIEjlNUKb3Vo/iTnGAPdsiDC3FUUnNoex2OwU8LmR7AkYZiWdB8nx99DfgkkY+OFMUpw7nKD2PCOtuFONelfGA==", "requires": { "@aws-sdk/types": "3.609.0", - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/property-provider": "^3.1.3", "@smithy/protocol-http": "^4.0.3", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, "@aws-sdk/credential-provider-process": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.609.0.tgz", - "integrity": "sha512-Ux35nGOSJKZWUIM3Ny0ROZ8cqPRUEkh+tR3X2o9ydEbFiLq3eMMyEnHJqx4EeUjLRchidlm4CCid9GxMe5/gdw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz", + "integrity": "sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -32503,11 +32509,11 @@ } }, "@smithy/credential-provider-imds": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.3.tgz", - "integrity": "sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", + "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", "requires": { - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", "@smithy/types": "^3.3.0", "@smithy/url-parser": "^3.0.3", @@ -32515,9 +32521,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -32535,13 +32541,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -32567,20 +32573,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -32627,24 +32633,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -32703,12 +32709,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -32749,15 +32755,15 @@ } }, "@aws-sdk/credential-provider-sso": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.609.0.tgz", - "integrity": "sha512-oQPGDKMMIxjvTcm86g07RPYeC7mCNk+29dPpY15ZAPRpAF7F0tircsC3wT9fHzNaKShEyK5LuI5Kg/uxsdy+Iw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.614.0.tgz", + "integrity": "sha512-55+gp0JY4451cWI1qXmVMFM0GQaBKiQpXv2P0xmd9P3qLDyeFUSEW8XPh0d2lb1ICr6x4s47ynXVdGCIv2mXMg==", "requires": { - "@aws-sdk/client-sso": "3.609.0", - "@aws-sdk/token-providers": "3.609.0", + "@aws-sdk/client-sso": "3.614.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.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -32781,9 +32787,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -32846,12 +32852,12 @@ } }, "@aws-sdk/lib-dynamodb": { - "version": "3.610.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.610.0.tgz", - "integrity": "sha512-hlzq36zVnimVO0qX9jZSEL+MowpC5iLH00sLZnW90Q88ZCf/rnCiiEcyHnQSS+YLFDLXMtqqI3b2JZfDJlCGUw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.614.0.tgz", + "integrity": "sha512-hHbw4f4ZBmsoyRGmyVsjXe/I3F4ewzw5zZSgKZcmGTgPt1fm8WKAA18YPh8K3CScGWerHFY3w2ilPNHDr+xpsg==", "requires": { - "@aws-sdk/util-dynamodb": "3.609.0", - "@smithy/smithy-client": "^3.1.5", + "@aws-sdk/util-dynamodb": "3.614.0", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -32866,9 +32872,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -32886,13 +32892,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -32918,20 +32924,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -32978,24 +32984,24 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -33054,12 +33060,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -33102,13 +33108,13 @@ } }, "@aws-sdk/middleware-endpoint-discovery": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.609.0.tgz", - "integrity": "sha512-HnjoduqkbsU+x7V+SF/h0/fxBKzG9ABlYteR2yiZEVyY70o2Wtt7fh4mZoVvpyuDEFCsYnLk9Ve0+7mNo7+pWA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.614.0.tgz", + "integrity": "sha512-xEe9a3aaAzzo5RlRz4SSsGYpYiju29SdYDQYsm1v3syWGOqNzFlJE7aFuSP0/WYgdwB6svILLdAeZs8w2fj3GQ==", "requires": { "@aws-sdk/endpoint-cache": "3.572.0", "@aws-sdk/types": "3.609.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -33133,12 +33139,12 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } @@ -33162,9 +33168,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -33249,16 +33255,16 @@ } }, "@aws-sdk/middleware-sdk-s3": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.609.0.tgz", - "integrity": "sha512-kvwjL6OJFhAGWoYaIWR7HmILjiVk6xVj6QEU6qZMA7FtGgvlKi4pLfs8Of+hQqo+2TEhUoxG/5t6WqwB8uxjsw==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.614.0.tgz", + "integrity": "sha512-9fJTaiuuOfFV4FqmUEhPYzrtv7JOfYpB7q65oG3uayVH4ngWHIJkjnnX79zRhNZKdPGta+XIsnZzjEghg82ngA==", "requires": { "@aws-sdk/types": "3.609.0", "@aws-sdk/util-arn-parser": "3.568.0", - "@smithy/node-config-provider": "^3.1.3", + "@smithy/node-config-provider": "^3.1.4", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", - "@smithy/smithy-client": "^3.1.5", + "@smithy/smithy-client": "^3.1.7", "@smithy/types": "^3.3.0", "@smithy/util-config-provider": "^3.0.0", "tslib": "^2.6.2" @@ -33291,9 +33297,9 @@ } }, "@smithy/fetch-http-handler": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.0.tgz", - "integrity": "sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.1.tgz", + "integrity": "sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==", "requires": { "@smithy/protocol-http": "^4.0.3", "@smithy/querystring-builder": "^3.0.3", @@ -33311,13 +33317,13 @@ } }, "@smithy/middleware-endpoint": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.4.tgz", - "integrity": "sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", + "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", "requires": { "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.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", @@ -33343,20 +33349,20 @@ } }, "@smithy/node-config-provider": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.3.tgz", - "integrity": "sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz", + "integrity": "sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==", "requires": { "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" } }, "@smithy/node-http-handler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.1.tgz", - "integrity": "sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.2.tgz", + "integrity": "sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==", "requires": { "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.0.3", @@ -33403,9 +33409,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -33426,15 +33432,15 @@ } }, "@smithy/smithy-client": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.5.tgz", - "integrity": "sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.7.tgz", + "integrity": "sha512-nZbJZB0XI3YnaFBWGDBr7kjaew6O0oNYNmopyIz6gKZEbxzrtH7rwvU1GcVxcSFoOwWecLJEe79fxEMljHopFQ==", "requires": { - "@smithy/middleware-endpoint": "^3.0.4", + "@smithy/middleware-endpoint": "^3.0.5", "@smithy/middleware-stack": "^3.0.3", "@smithy/protocol-http": "^4.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.0.5", + "@smithy/util-stream": "^3.0.6", "tslib": "^2.6.2" } }, @@ -33501,12 +33507,12 @@ } }, "@smithy/util-stream": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.5.tgz", - "integrity": "sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.6.tgz", + "integrity": "sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==", "requires": { - "@smithy/fetch-http-handler": "^3.2.0", - "@smithy/node-http-handler": "^3.1.1", + "@smithy/fetch-http-handler": "^3.2.1", + "@smithy/node-http-handler": "^3.1.2", "@smithy/types": "^3.3.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", @@ -33622,11 +33628,11 @@ } }, "@aws-sdk/signature-v4-multi-region": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.609.0.tgz", - "integrity": "sha512-FJs0BxVMyYOKNu7nzFI1kehfgWoYmdto5B8BSS29geUACF7jlOoeCfNZWVrnMjvAxVlSQ5O7Mr575932BnsycA==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.614.0.tgz", + "integrity": "sha512-6mW3ONW4oLzxrePznYhz7sNT9ji9Am9ufLeV722tbOVS5lArBOZ6E1oPz0uYBhisUPznWKhcLRMggt7vIJWMng==", "requires": { - "@aws-sdk/middleware-sdk-s3": "3.609.0", + "@aws-sdk/middleware-sdk-s3": "3.614.0", "@aws-sdk/types": "3.609.0", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2", @@ -33728,13 +33734,13 @@ } }, "@aws-sdk/token-providers": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.609.0.tgz", - "integrity": "sha512-WvhW/7XSf+H7YmtiIigQxfDVZVZI7mbKikQ09YpzN7FeN3TmYib1+0tB+EE9TbICkwssjiFc71FEBEh4K9grKQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz", + "integrity": "sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==", "requires": { "@aws-sdk/types": "3.609.0", "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, @@ -33758,9 +33764,9 @@ } }, "@smithy/shared-ini-file-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.3.tgz", - "integrity": "sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz", + "integrity": "sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==", "requires": { "@smithy/types": "^3.3.0", "tslib": "^2.6.2" @@ -33794,9 +33800,9 @@ } }, "@aws-sdk/util-dynamodb": { - "version": "3.609.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.609.0.tgz", - "integrity": "sha512-FdXv4M/5Vee6zUuokpXpOPWK9hs6i4Bp4AZNWT2MTvOjUHP4BlP3b7h3Znb3pjjbA522VqDb674hrPXtS4sIWQ==", + "version": "3.614.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.614.0.tgz", + "integrity": "sha512-ce0HZGiM2KxG5Wa07ykxZt4iQCUAj/n/ZhnXKo7ZUU1T2qPZVl65zAnCgF7VXH/l3CO638ENWHG25aXEYfM5Bg==", "requires": { "tslib": "^2.6.2" } @@ -35383,16 +35389,16 @@ "dev": true }, "@typescript-eslint/eslint-plugin": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.15.0.tgz", - "integrity": "sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.0.tgz", + "integrity": "sha512-py1miT6iQpJcs1BiJjm54AMzeuMPBSPuKPlnT8HlfudbcS5rYeX5jajpLf3mrdRh9dA/Ec2FVUY0ifeVNDIhZw==", "dev": true, "requires": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/type-utils": "7.15.0", - "@typescript-eslint/utils": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/type-utils": "7.16.0", + "@typescript-eslint/utils": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -35400,54 +35406,54 @@ } }, "@typescript-eslint/parser": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.15.0.tgz", - "integrity": "sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.0.tgz", + "integrity": "sha512-ar9E+k7CU8rWi2e5ErzQiC93KKEFAXA2Kky0scAlPcxYblLt8+XZuHUZwlyfXILyQa95P6lQg+eZgh/dDs3+Vw==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/typescript-estree": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/typescript-estree": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.15.0.tgz", - "integrity": "sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz", + "integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==", "dev": true, "requires": { - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0" + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0" } }, "@typescript-eslint/type-utils": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.15.0.tgz", - "integrity": "sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.0.tgz", + "integrity": "sha512-j0fuUswUjDHfqV/UdW6mLtOQQseORqfdmoBNDFOqs9rvNVR2e+cmu6zJu/Ku4SDuqiJko6YnhwcL8x45r8Oqxg==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "7.15.0", - "@typescript-eslint/utils": "7.15.0", + "@typescript-eslint/typescript-estree": "7.16.0", + "@typescript-eslint/utils": "7.16.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" } }, "@typescript-eslint/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.15.0.tgz", - "integrity": "sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz", + "integrity": "sha512-fecuH15Y+TzlUutvUl9Cc2XJxqdLr7+93SQIbcZfd4XRGGKoxyljK27b+kxKamjRkU7FYC6RrbSCg0ALcZn/xw==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.15.0.tgz", - "integrity": "sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.0.tgz", + "integrity": "sha512-a5NTvk51ZndFuOLCh5OaJBELYc2O3Zqxfl3Js78VFE1zE46J2AaVuW+rEbVkQznjkmlzWsUI15BG5tQMixzZLw==", "dev": true, "requires": { - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/visitor-keys": "7.15.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/visitor-keys": "7.16.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -35477,24 +35483,24 @@ } }, "@typescript-eslint/utils": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.15.0.tgz", - "integrity": "sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz", + "integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.15.0", - "@typescript-eslint/types": "7.15.0", - "@typescript-eslint/typescript-estree": "7.15.0" + "@typescript-eslint/scope-manager": "7.16.0", + "@typescript-eslint/types": "7.16.0", + "@typescript-eslint/typescript-estree": "7.16.0" } }, "@typescript-eslint/visitor-keys": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.15.0.tgz", - "integrity": "sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz", + "integrity": "sha512-rMo01uPy9C7XxG7AFsxa8zLnWXTF8N3PYclekWSrurvhwiw1eW88mrKiAYe6s53AUY57nTRz8dJsuuXdkAhzCg==", "dev": true, "requires": { - "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/types": "7.16.0", "eslint-visitor-keys": "^3.4.3" } }, @@ -35526,15 +35532,15 @@ } }, "ajv": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", - "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" } }, "ansi-colors": { @@ -36845,6 +36851,12 @@ "version": "2.0.6", "dev": true }, + "fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "dev": true + }, "fast-xml-parser": { "version": "4.2.5", "requires": { diff --git a/package.json b/package.json index 74535c20e..332273a14 100644 --- a/package.json +++ b/package.json @@ -32,9 +32,9 @@ "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "12.0.1", - "@typescript-eslint/eslint-plugin": "7.15.0", - "@typescript-eslint/parser": "7.15.0", - "ajv": "8.16.0", + "@typescript-eslint/eslint-plugin": "7.16.0", + "@typescript-eslint/parser": "7.16.0", + "ajv": "8.17.1", "c8": "10.1.2", "eslint": "8.57.0", "husky": "9.0.11", diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index 529ab14df..7faffdf53 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -31,8 +31,8 @@ "dependencies": { "@adobe/spacecat-shared-dynamo": "1.2.5", "@adobe/spacecat-shared-utils": "1.2.0", - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0", + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.0", "@types/joi": "17.2.3", "joi": "17.13.3", "uuid": "10.0.0" diff --git a/packages/spacecat-shared-dynamo/package.json b/packages/spacecat-shared-dynamo/package.json index e8f0aafdd..8f89cd236 100644 --- a/packages/spacecat-shared-dynamo/package.json +++ b/packages/spacecat-shared-dynamo/package.json @@ -29,8 +29,8 @@ "access": "public" }, "dependencies": { - "@aws-sdk/client-dynamodb": "3.609.0", - "@aws-sdk/lib-dynamodb": "3.610.0", + "@aws-sdk/client-dynamodb": "3.614.0", + "@aws-sdk/lib-dynamodb": "3.614.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 21811e3b5..3fcd91773 100644 --- a/packages/spacecat-shared-google-client/package.json +++ b/packages/spacecat-shared-google-client/package.json @@ -34,7 +34,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.609.0", + "@aws-sdk/client-secrets-manager": "3.614.0", "google-auth-library": "9.11.0", "googleapis": "140.0.1" }, diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index 2132ca5b0..67aab8108 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -41,8 +41,8 @@ }, "dependencies": { "@adobe/fetch": "4.1.8", - "@aws-sdk/client-s3": "3.609.0", - "@aws-sdk/client-sqs": "3.609.0", + "@aws-sdk/client-s3": "3.614.0", + "@aws-sdk/client-sqs": "3.614.0", "@json2csv/plainjs": "7.0.6" } } From 492b755ef2bf0207500a1323efe188c4f0777799 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 13 Jul 2024 16:51:02 +0000 Subject: [PATCH 4/4] chore(release): 1.35.2 [skip ci] # [@adobe/spacecat-shared-data-access-v1.35.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.35.1...@adobe/spacecat-shared-data-access-v1.35.2) (2024-07-13) ### Bug Fixes * **deps:** update external fixes ([#291](https://github.com/adobe/spacecat-shared/issues/291)) ([5678328](https://github.com/adobe/spacecat-shared/commit/5678328a8efe4c2068b3b796274d8e4392f75c8a)) --- 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 d04442c70..1f7e5a47d 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.35.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.35.1...@adobe/spacecat-shared-data-access-v1.35.2) (2024-07-13) + + +### Bug Fixes + +* **deps:** update external fixes ([#291](https://github.com/adobe/spacecat-shared/issues/291)) ([5678328](https://github.com/adobe/spacecat-shared/commit/5678328a8efe4c2068b3b796274d8e4392f75c8a)) + # [@adobe/spacecat-shared-data-access-v1.35.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.35.0...@adobe/spacecat-shared-data-access-v1.35.1) (2024-07-12) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index 7faffdf53..f10d86482 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.35.1", + "version": "1.35.2", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "main": "src/index.js",