diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 7f8c0ba7..63eee285 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' diff --git a/manage/app/services/identity-attributes.js b/manage/app/services/identity-attributes.js index 409e3c6f..820a1f86 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' }, ]); @@ -69,6 +70,7 @@ export default Service.extend({ fields: [ { 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' }, ], }, diff --git a/monorepo/packages/sync/ops/transform-customer.js b/monorepo/packages/sync/ops/transform-customer.js index a8ad8b4c..04be10f4 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'], ]); /** diff --git a/monorepo/services/server/src/services/identity-attributes.js b/monorepo/services/server/src/services/identity-attributes.js index 66ace8a7..15c4fe50 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 Sales', label: 'Annual Sales' }, // { key: 'attributes.NAICS Code', label: 'NAICS' }, ];