From f19cf406a335437d7ae2bd62464796752411e056 Mon Sep 17 00:00:00 2001 From: Edson Amaya Date: Thu, 23 Feb 2023 15:38:47 -0600 Subject: [PATCH 1/2] Updated config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index be30d9f8..752a100c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: build: docker: - - image: circleci/node:10 + - image: circleci/node:14 steps: - checkout - restore_cache: From 9f4082030053154b65d721562e48135cb62d4564 Mon Sep 17 00:00:00 2001 From: Edson Amaya Date: Tue, 14 Mar 2023 11:50:45 -0600 Subject: [PATCH 2/2] Fix issue 309 on validation about Fullstory --- src/consent-manager-builder/fetch-destinations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consent-manager-builder/fetch-destinations.ts b/src/consent-manager-builder/fetch-destinations.ts index 7fee3493..bbab2a2c 100644 --- a/src/consent-manager-builder/fetch-destinations.ts +++ b/src/consent-manager-builder/fetch-destinations.ts @@ -21,7 +21,7 @@ async function fetchDestinationForWriteKey( // Rename creationName to id to abstract the weird data model for (const destination of destinations) { // Because of the legacy Fullstory integration the creationName for this integration is the `name` - if (destination.name === 'Fullstory (Actions)') { + if (destination.name === 'Fullstory') { destination.id = destination.name } else { destination.id = destination.creationName