Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down
2 changes: 2 additions & 0 deletions manage/app/services/identity-attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
]);

Expand Down Expand Up @@ -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' },
],
},
Expand Down
2 changes: 2 additions & 0 deletions monorepo/packages/sync/ops/transform-customer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const demoMap = new Map([
[86, 'Job Function'],
[105, 'Industry'],
[106, 'Job Function'],
[83, 'Annual Sales'],
[103, 'Annual Sales'],
]);

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
];