From 6328550ae41ec920849f3f6cb5924a40cb8a7c1c Mon Sep 17 00:00:00 2001 From: Shinsina Date: Thu, 1 May 2025 09:53:13 -0500 Subject: [PATCH 1/5] Include Annual Sales in demoMap --- monorepo/packages/sync/ops/transform-customer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monorepo/packages/sync/ops/transform-customer.js b/monorepo/packages/sync/ops/transform-customer.js index a8ad8b4..04be10f 100644 --- a/monorepo/packages/sync/ops/transform-customer.js +++ b/monorepo/packages/sync/ops/transform-customer.js @@ -13,6 +13,8 @@ const demoMap = new Map([ [86, 'Job Function'], [105, 'Industry'], [106, 'Job Function'], + [83, 'Annual Sales'], + [103, 'Annual Sales'], ]); /** From 6f3659313fc1b7696c32e33dfb5aa085d1730545 Mon Sep 17 00:00:00 2001 From: Shinsina Date: Thu, 1 May 2025 09:53:31 -0500 Subject: [PATCH 2/5] Include Annual Revenue in Identity Attributes --- manage/app/services/identity-attributes.js | 1 + monorepo/services/server/src/services/identity-attributes.js | 1 + 2 files changed, 2 insertions(+) diff --git a/manage/app/services/identity-attributes.js b/manage/app/services/identity-attributes.js index 409e3c6..905b507 100644 --- a/manage/app/services/identity-attributes.js +++ b/manage/app/services/identity-attributes.js @@ -69,6 +69,7 @@ export default Service.extend({ fields: [ { key: 'attributes.Industry', label: 'Industry' }, { key: 'attributes.Job Function', label: 'Job Function' }, + { key: 'attributes.Annual Revenue', label: 'Annual Revenue' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ], }, diff --git a/monorepo/services/server/src/services/identity-attributes.js b/monorepo/services/server/src/services/identity-attributes.js index 66ace8a..f2f3ebd 100644 --- a/monorepo/services/server/src/services/identity-attributes.js +++ b/monorepo/services/server/src/services/identity-attributes.js @@ -13,5 +13,6 @@ module.exports = [ { key: 'phoneNumber', label: 'Phone #', adminOnly: true }, { key: 'attributes.Industry', label: 'Industry' }, { key: 'attributes.Job Function', label: 'Job Function' }, + { key: 'attributes.Annual Revenue', label: 'Annual Revenue' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ]; From 2cd6edc6a011924da975bdd91d4fc48d6e9c12de Mon Sep 17 00:00:00 2001 From: Shinsina Date: Thu, 1 May 2025 09:55:45 -0500 Subject: [PATCH 3/5] Revenue -> Sales (actual demo name) --- manage/app/services/identity-attributes.js | 2 +- monorepo/services/server/src/services/identity-attributes.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manage/app/services/identity-attributes.js b/manage/app/services/identity-attributes.js index 905b507..d90c3ae 100644 --- a/manage/app/services/identity-attributes.js +++ b/manage/app/services/identity-attributes.js @@ -69,7 +69,7 @@ export default Service.extend({ fields: [ { key: 'attributes.Industry', label: 'Industry' }, { key: 'attributes.Job Function', label: 'Job Function' }, - { key: 'attributes.Annual Revenue', label: 'Annual Revenue' }, + { key: 'attributes.Annual Sales', label: 'Annual Sales' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ], }, diff --git a/monorepo/services/server/src/services/identity-attributes.js b/monorepo/services/server/src/services/identity-attributes.js index f2f3ebd..15c4fe5 100644 --- a/monorepo/services/server/src/services/identity-attributes.js +++ b/monorepo/services/server/src/services/identity-attributes.js @@ -13,6 +13,6 @@ module.exports = [ { key: 'phoneNumber', label: 'Phone #', adminOnly: true }, { key: 'attributes.Industry', label: 'Industry' }, { key: 'attributes.Job Function', label: 'Job Function' }, - { key: 'attributes.Annual Revenue', label: 'Annual Revenue' }, + { key: 'attributes.Annual Sales', label: 'Annual Sales' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ]; From d08016dc4424336cf4f8c405948ad6f392d84c78 Mon Sep 17 00:00:00 2001 From: Shinsina Date: Thu, 1 May 2025 09:57:56 -0500 Subject: [PATCH 4/5] Include Annual Sales in setting of fields --- manage/app/services/identity-attributes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/manage/app/services/identity-attributes.js b/manage/app/services/identity-attributes.js index d90c3ae..820a1f8 100644 --- a/manage/app/services/identity-attributes.js +++ b/manage/app/services/identity-attributes.js @@ -42,6 +42,7 @@ export default Service.extend({ { key: 'phoneNumber', label: 'Phone #', adminOnly: true }, { key: 'attributes.Industry', label: 'Industry' }, { key: 'attributes.Job Function', label: 'Job Function' }, + { key: 'attributes.Annual Sales', label: 'Annual Sales' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ]); From 3a641d54f918bc36718f87dc760e96527c485472 Mon Sep 17 00:00:00 2001 From: Shinsina Date: Thu, 1 May 2025 10:28:01 -0500 Subject: [PATCH 5/5] Bump cache action to version 4 --- .github/workflows/node-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 7f8c0ba..63eee28 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -23,7 +23,7 @@ jobs: with: node-version: 10.x - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: yarn-cache with: path: '**/node_modules' @@ -49,7 +49,7 @@ jobs: with: node-version: 14.x - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: yarn-cache with: path: '**/node_modules'