@twentyhq/people-data-labs 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +7 -0
- package/.nvmrc +1 -0
- package/.oxlintrc.json +58 -0
- package/.yarnrc.yml +1 -0
- package/README.md +16 -0
- package/package.json +37 -0
- package/public/gallery/cover.png +0 -0
- package/public/people-data-labs-icon.png +0 -0
- package/src/__tests__/global-setup.ts +87 -0
- package/src/__tests__/people-data-labs.integration-test.ts +25 -0
- package/src/application-config.ts +18 -0
- package/src/command-menu-items/enrich-companies.ts +14 -0
- package/src/command-menu-items/enrich-people.ts +14 -0
- package/src/constants/__tests__/select-option-constants.spec.ts +142 -0
- package/src/constants/billing-margin-multiplier.ts +1 -0
- package/src/constants/company-match-cost-dollars.ts +1 -0
- package/src/constants/company-type-options.ts +46 -0
- package/src/constants/enrichment-status-options.ts +19 -0
- package/src/constants/enrichment-workflow-seeds.ts +27 -0
- package/src/constants/funding-stage-options.ts +195 -0
- package/src/constants/industry-options.ts +1033 -0
- package/src/constants/inferred-salary-options.ts +81 -0
- package/src/constants/job-role-options.ts +172 -0
- package/src/constants/job-title-class-options.ts +39 -0
- package/src/constants/job-title-sub-role-options.ts +746 -0
- package/src/constants/location-continent-options.ts +53 -0
- package/src/constants/metro-options.ts +2692 -0
- package/src/constants/mic-exchange-options.ts +494 -0
- package/src/constants/micro-credits-per-dollar.ts +1 -0
- package/src/constants/pdl-base-url.ts +1 -0
- package/src/constants/person-match-cost-dollars.ts +1 -0
- package/src/constants/seniority-options.ts +74 -0
- package/src/constants/sex-options.ts +18 -0
- package/src/constants/size-options.ts +60 -0
- package/src/constants/universal-identifiers.ts +1516 -0
- package/src/constants/update-fields-option-values.ts +5 -0
- package/src/constants/update-fields-options.ts +7 -0
- package/src/fields/company/pdl-affiliated-profiles.field.ts +20 -0
- package/src/fields/company/pdl-alternative-domains.field.ts +20 -0
- package/src/fields/company/pdl-alternative-names.field.ts +20 -0
- package/src/fields/company/pdl-company-type.field.ts +28 -0
- package/src/fields/company/pdl-employee-count-by-country.field.ts +21 -0
- package/src/fields/company/pdl-employee-count.field.ts +19 -0
- package/src/fields/company/pdl-enrichment-status.field.ts +29 -0
- package/src/fields/company/pdl-facebook-url.field.ts +19 -0
- package/src/fields/company/pdl-founded-year.field.ts +19 -0
- package/src/fields/company/pdl-funding-stages.field.ts +28 -0
- package/src/fields/company/pdl-headline.field.ts +19 -0
- package/src/fields/company/pdl-id.field.ts +19 -0
- package/src/fields/company/pdl-industry-detail.field.ts +20 -0
- package/src/fields/company/pdl-industry.field.ts +28 -0
- package/src/fields/company/pdl-last-enriched-at.field.ts +20 -0
- package/src/fields/company/pdl-last-funding-date.field.ts +20 -0
- package/src/fields/company/pdl-latest-funding-stage.field.ts +29 -0
- package/src/fields/company/pdl-legal-name.field.ts +19 -0
- package/src/fields/company/pdl-linkedin-id.field.ts +19 -0
- package/src/fields/company/pdl-location-continent.field.ts +29 -0
- package/src/fields/company/pdl-location-metro.field.ts +28 -0
- package/src/fields/company/pdl-mic-exchange.field.ts +28 -0
- package/src/fields/company/pdl-naics.field.ts +19 -0
- package/src/fields/company/pdl-number-funding-rounds.field.ts +20 -0
- package/src/fields/company/pdl-raw-payload.field.ts +19 -0
- package/src/fields/company/pdl-sic.field.ts +19 -0
- package/src/fields/company/pdl-size-range.field.ts +28 -0
- package/src/fields/company/pdl-summary.field.ts +19 -0
- package/src/fields/company/pdl-tags.field.ts +19 -0
- package/src/fields/company/pdl-ticker.field.ts +19 -0
- package/src/fields/company/pdl-total-funding.field.ts +19 -0
- package/src/fields/company/pdl-twitter-url.field.ts +19 -0
- package/src/fields/person/pdl-birth-date.field.ts +19 -0
- package/src/fields/person/pdl-birth-year.field.ts +19 -0
- package/src/fields/person/pdl-certifications.field.ts +19 -0
- package/src/fields/person/pdl-education.field.ts +19 -0
- package/src/fields/person/pdl-enrichment-status.field.ts +29 -0
- package/src/fields/person/pdl-experience.field.ts +19 -0
- package/src/fields/person/pdl-facebook-url.field.ts +19 -0
- package/src/fields/person/pdl-github-url.field.ts +19 -0
- package/src/fields/person/pdl-headline.field.ts +19 -0
- package/src/fields/person/pdl-id.field.ts +19 -0
- package/src/fields/person/pdl-industry.field.ts +28 -0
- package/src/fields/person/pdl-inferred-salary.field.ts +28 -0
- package/src/fields/person/pdl-interests.field.ts +19 -0
- package/src/fields/person/pdl-job-onet-code.field.ts +19 -0
- package/src/fields/person/pdl-job-role.field.ts +28 -0
- package/src/fields/person/pdl-job-start-date.field.ts +19 -0
- package/src/fields/person/pdl-job-summary.field.ts +19 -0
- package/src/fields/person/pdl-job-title-class.field.ts +28 -0
- package/src/fields/person/pdl-job-title-sub-role.field.ts +29 -0
- package/src/fields/person/pdl-languages.field.ts +19 -0
- package/src/fields/person/pdl-last-enriched-at.field.ts +19 -0
- package/src/fields/person/pdl-likelihood.field.ts +19 -0
- package/src/fields/person/pdl-linkedin-connections.field.ts +20 -0
- package/src/fields/person/pdl-linkedin-username.field.ts +20 -0
- package/src/fields/person/pdl-location-metro.field.ts +28 -0
- package/src/fields/person/pdl-location.field.ts +19 -0
- package/src/fields/person/pdl-name-aliases.field.ts +19 -0
- package/src/fields/person/pdl-profiles.field.ts +19 -0
- package/src/fields/person/pdl-raw-payload.field.ts +19 -0
- package/src/fields/person/pdl-seniority.field.ts +28 -0
- package/src/fields/person/pdl-sex.field.ts +28 -0
- package/src/fields/person/pdl-skills.field.ts +19 -0
- package/src/fields/person/pdl-summary.field.ts +19 -0
- package/src/fields/person/pdl-twitter-url.field.ts +19 -0
- package/src/fields/person/pdl-years-experience.field.ts +21 -0
- package/src/front-components/enrich-companies-component-effect.tsx +21 -0
- package/src/front-components/enrich-people-component-effect.tsx +21 -0
- package/src/front-components/utils/call-enrich-logic-function.utils.ts +21 -0
- package/src/logic-functions/__mocks__/company-node.mock.ts +11 -0
- package/src/logic-functions/__mocks__/create-core-api-client-mock.ts +35 -0
- package/src/logic-functions/__mocks__/pdl-company-data.mock.ts +27 -0
- package/src/logic-functions/__mocks__/pdl-person-data.mock.ts +23 -0
- package/src/logic-functions/__mocks__/person-node.mock.ts +12 -0
- package/src/logic-functions/enrich-companies.function.ts +76 -0
- package/src/logic-functions/enrich-company.function.ts +73 -0
- package/src/logic-functions/enrich-people.function.ts +76 -0
- package/src/logic-functions/enrich-person.function.ts +73 -0
- package/src/logic-functions/errors/__tests__/pdl-config-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-invalid-input-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-operation-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-record-not-found-error.spec.ts +21 -0
- package/src/logic-functions/errors/pdl-config-error.ts +8 -0
- package/src/logic-functions/errors/pdl-error-code.ts +8 -0
- package/src/logic-functions/errors/pdl-error.ts +12 -0
- package/src/logic-functions/errors/pdl-invalid-input-error.ts +8 -0
- package/src/logic-functions/errors/pdl-operation-error.ts +8 -0
- package/src/logic-functions/errors/pdl-record-not-found-error.ts +22 -0
- package/src/logic-functions/handlers/__tests__/enrich-companies.spec.ts +159 -0
- package/src/logic-functions/handlers/__tests__/enrich-company.spec.ts +147 -0
- package/src/logic-functions/handlers/__tests__/enrich-people.spec.ts +313 -0
- package/src/logic-functions/handlers/__tests__/enrich-person.spec.ts +198 -0
- package/src/logic-functions/handlers/__tests__/post-install.spec.ts +153 -0
- package/src/logic-functions/handlers/company-enrichment-adapter.ts +42 -0
- package/src/logic-functions/handlers/company-single-enrichment-adapter.ts +15 -0
- package/src/logic-functions/handlers/enrich-companies.ts +15 -0
- package/src/logic-functions/handlers/enrich-company.ts +19 -0
- package/src/logic-functions/handlers/enrich-people.ts +15 -0
- package/src/logic-functions/handlers/enrich-person.ts +19 -0
- package/src/logic-functions/handlers/person-enrichment-adapter.ts +29 -0
- package/src/logic-functions/handlers/person-single-enrichment-adapter.ts +15 -0
- package/src/logic-functions/handlers/post-install.ts +69 -0
- package/src/logic-functions/post-install.function.ts +17 -0
- package/src/logic-functions/utils/__tests__/aggregate-bulk-enrich-result.spec.ts +52 -0
- package/src/logic-functions/utils/__tests__/build-address.spec.ts +30 -0
- package/src/logic-functions/utils/__tests__/build-allowed-values.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/build-bulk-records-trigger.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/build-company-create-data.spec.ts +37 -0
- package/src/logic-functions/utils/__tests__/build-company-match-keys.spec.ts +35 -0
- package/src/logic-functions/utils/__tests__/build-company-matched-data.spec.ts +56 -0
- package/src/logic-functions/utils/__tests__/build-currency-from-usd.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/build-emails.spec.ts +23 -0
- package/src/logic-functions/utils/__tests__/build-error-result.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/build-full-name.spec.ts +64 -0
- package/src/logic-functions/utils/__tests__/build-links.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/build-logic-function-step.spec.ts +33 -0
- package/src/logic-functions/utils/__tests__/build-matched-result.spec.ts +33 -0
- package/src/logic-functions/utils/__tests__/build-not-found-result.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/build-person-matched-data.spec.ts +117 -0
- package/src/logic-functions/utils/__tests__/build-person-name-param.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/build-phones.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/build-skipped-result.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/capitalize-name.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/capitalize-name.test.ts +17 -0
- package/src/logic-functions/utils/__tests__/charge-matched-enrichments.spec.ts +56 -0
- package/src/logic-functions/utils/__tests__/chunk.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/enrich-companies.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/enrich-company.spec.ts +54 -0
- package/src/logic-functions/utils/__tests__/enrich-people.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/enrich-person.spec.ts +62 -0
- package/src/logic-functions/utils/__tests__/extract-company-match-params.spec.ts +86 -0
- package/src/logic-functions/utils/__tests__/extract-pdl-error-message.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/extract-person-match-params.spec.ts +75 -0
- package/src/logic-functions/utils/__tests__/extract-record-ids.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/find-company-id-by-filter.spec.ts +42 -0
- package/src/logic-functions/utils/__tests__/find-company-id.spec.ts +118 -0
- package/src/logic-functions/utils/__tests__/find-existing-workflow-id.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/find-or-create-current-company.spec.ts +203 -0
- package/src/logic-functions/utils/__tests__/get-pdl-api-key.spec.ts +38 -0
- package/src/logic-functions/utils/__tests__/is-empty-address.spec.ts +20 -0
- package/src/logic-functions/utils/__tests__/is-empty-emails.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-full-name.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-links.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-phones.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-text.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/map-company.spec.ts +48 -0
- package/src/logic-functions/utils/__tests__/map-person.spec.ts +81 -0
- package/src/logic-functions/utils/__tests__/normalize-domain.spec.ts +19 -0
- package/src/logic-functions/utils/__tests__/normalize-linkedin-url.spec.ts +22 -0
- package/src/logic-functions/utils/__tests__/now-iso.spec.ts +9 -0
- package/src/logic-functions/utils/__tests__/parse-geo.spec.ts +21 -0
- package/src/logic-functions/utils/__tests__/parse-partial-date.spec.ts +29 -0
- package/src/logic-functions/utils/__tests__/parse-pdl-item.spec.ts +88 -0
- package/src/logic-functions/utils/__tests__/pick-multi-select.spec.ts +28 -0
- package/src/logic-functions/utils/__tests__/pick-select.spec.ts +38 -0
- package/src/logic-functions/utils/__tests__/pick-writable-standard.spec.ts +37 -0
- package/src/logic-functions/utils/__tests__/post-pdl-enrich.spec.ts +192 -0
- package/src/logic-functions/utils/__tests__/post-pdl-single-enrich.spec.ts +172 -0
- package/src/logic-functions/utils/__tests__/read-companies.spec.ts +39 -0
- package/src/logic-functions/utils/__tests__/read-people.spec.ts +40 -0
- package/src/logic-functions/utils/__tests__/resolve-logic-function-id.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/resolve-update-fields-mode.spec.ts +34 -0
- package/src/logic-functions/utils/__tests__/run-batch-enrichment.spec.ts +524 -0
- package/src/logic-functions/utils/__tests__/salary-transform.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/seed-enrichment-workflow.spec.ts +136 -0
- package/src/logic-functions/utils/__tests__/size-transform.spec.ts +18 -0
- package/src/logic-functions/utils/__tests__/to-json-array.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/to-json-object.spec.ts +18 -0
- package/src/logic-functions/utils/__tests__/to-number.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/to-string-array.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/to-text.spec.ts +20 -0
- package/src/logic-functions/utils/__tests__/update-companies-status.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/update-company-record.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/update-people-status.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/update-person-record.spec.ts +25 -0
- package/src/logic-functions/utils/aggregate-bulk-enrich-result.ts +21 -0
- package/src/logic-functions/utils/build-address.ts +40 -0
- package/src/logic-functions/utils/build-allowed-values.ts +5 -0
- package/src/logic-functions/utils/build-bulk-records-trigger.ts +25 -0
- package/src/logic-functions/utils/build-company-create-data.ts +35 -0
- package/src/logic-functions/utils/build-company-match-keys.ts +16 -0
- package/src/logic-functions/utils/build-company-matched-data.ts +56 -0
- package/src/logic-functions/utils/build-currency-from-usd.ts +16 -0
- package/src/logic-functions/utils/build-emails.ts +34 -0
- package/src/logic-functions/utils/build-error-result.ts +18 -0
- package/src/logic-functions/utils/build-full-name.ts +38 -0
- package/src/logic-functions/utils/build-links.ts +23 -0
- package/src/logic-functions/utils/build-logic-function-step.ts +30 -0
- package/src/logic-functions/utils/build-matched-result.ts +21 -0
- package/src/logic-functions/utils/build-not-found-result.ts +9 -0
- package/src/logic-functions/utils/build-person-matched-data.ts +78 -0
- package/src/logic-functions/utils/build-person-name-param.ts +19 -0
- package/src/logic-functions/utils/build-phones.ts +40 -0
- package/src/logic-functions/utils/build-skipped-result.ts +15 -0
- package/src/logic-functions/utils/capitalize-name.ts +8 -0
- package/src/logic-functions/utils/charge-matched-enrichments.ts +29 -0
- package/src/logic-functions/utils/chunk.ts +18 -0
- package/src/logic-functions/utils/enrich-chunk.ts +361 -0
- package/src/logic-functions/utils/enrich-companies.ts +21 -0
- package/src/logic-functions/utils/enrich-company.ts +23 -0
- package/src/logic-functions/utils/enrich-people.ts +22 -0
- package/src/logic-functions/utils/enrich-person.ts +24 -0
- package/src/logic-functions/utils/extract-company-match-params.ts +52 -0
- package/src/logic-functions/utils/extract-pdl-error-message.ts +47 -0
- package/src/logic-functions/utils/extract-person-match-params.ts +59 -0
- package/src/logic-functions/utils/extract-record-ids.ts +18 -0
- package/src/logic-functions/utils/find-company-id-by-filter.ts +28 -0
- package/src/logic-functions/utils/find-company-id.ts +59 -0
- package/src/logic-functions/utils/find-existing-workflow-id.ts +18 -0
- package/src/logic-functions/utils/find-or-create-current-company.ts +108 -0
- package/src/logic-functions/utils/get-pdl-api-key.ts +15 -0
- package/src/logic-functions/utils/internal-field-names.ts +6 -0
- package/src/logic-functions/utils/is-empty-address.ts +20 -0
- package/src/logic-functions/utils/is-empty-emails.ts +13 -0
- package/src/logic-functions/utils/is-empty-full-name.ts +13 -0
- package/src/logic-functions/utils/is-empty-links.ts +13 -0
- package/src/logic-functions/utils/is-empty-phones.ts +13 -0
- package/src/logic-functions/utils/is-empty-text.ts +4 -0
- package/src/logic-functions/utils/map-company.ts +115 -0
- package/src/logic-functions/utils/map-person.ts +136 -0
- package/src/logic-functions/utils/normalize-domain.ts +22 -0
- package/src/logic-functions/utils/normalize-linkedin-url.ts +23 -0
- package/src/logic-functions/utils/now-iso.ts +1 -0
- package/src/logic-functions/utils/parse-geo.ts +33 -0
- package/src/logic-functions/utils/parse-partial-date.ts +33 -0
- package/src/logic-functions/utils/parse-pdl-item.ts +82 -0
- package/src/logic-functions/utils/pick-multi-select.ts +32 -0
- package/src/logic-functions/utils/pick-select.ts +30 -0
- package/src/logic-functions/utils/pick-writable-standard.ts +27 -0
- package/src/logic-functions/utils/post-pdl-enrich.ts +89 -0
- package/src/logic-functions/utils/post-pdl-single-enrich.ts +59 -0
- package/src/logic-functions/utils/read-companies.ts +53 -0
- package/src/logic-functions/utils/read-people.ts +48 -0
- package/src/logic-functions/utils/resolve-logic-function-id.ts +11 -0
- package/src/logic-functions/utils/resolve-min-likelihood.ts +12 -0
- package/src/logic-functions/utils/resolve-update-fields-mode.ts +16 -0
- package/src/logic-functions/utils/run-batch-enrichment.ts +50 -0
- package/src/logic-functions/utils/run-single-enrichment.ts +44 -0
- package/src/logic-functions/utils/salary-transform.ts +18 -0
- package/src/logic-functions/utils/seed-enrichment-workflow.ts +131 -0
- package/src/logic-functions/utils/size-transform.ts +15 -0
- package/src/logic-functions/utils/to-bulk-enrich-input.ts +14 -0
- package/src/logic-functions/utils/to-json-array.ts +4 -0
- package/src/logic-functions/utils/to-json-object.ts +22 -0
- package/src/logic-functions/utils/to-number.ts +4 -0
- package/src/logic-functions/utils/to-string-array.ts +28 -0
- package/src/logic-functions/utils/to-text.ts +11 -0
- package/src/logic-functions/utils/update-companies-status.ts +18 -0
- package/src/logic-functions/utils/update-company-record.ts +15 -0
- package/src/logic-functions/utils/update-people-status.ts +18 -0
- package/src/logic-functions/utils/update-person-record.ts +15 -0
- package/src/roles/default-function.role.ts +41 -0
- package/src/types/address-parts.ts +9 -0
- package/src/types/address-value.ts +10 -0
- package/src/types/batch-enrichment-adapter.ts +43 -0
- package/src/types/bulk-enrich-input.ts +9 -0
- package/src/types/bulk-enrich-result.ts +11 -0
- package/src/types/company-id-by-match-key-cache.ts +1 -0
- package/src/types/company-match-keys.ts +6 -0
- package/src/types/company-node.ts +16 -0
- package/src/types/currency-value.ts +4 -0
- package/src/types/emails-value.ts +4 -0
- package/src/types/enrich-result.ts +11 -0
- package/src/types/enrich-status.ts +1 -0
- package/src/types/enrichment-workflow-seed.ts +9 -0
- package/src/types/full-name-value.ts +4 -0
- package/src/types/links-value.ts +5 -0
- package/src/types/mapped-record.ts +4 -0
- package/src/types/pdl-company-data.ts +50 -0
- package/src/types/pdl-company-enrich-params.ts +7 -0
- package/src/types/pdl-enrich-result.ts +4 -0
- package/src/types/pdl-person-data.ts +65 -0
- package/src/types/pdl-person-enrich-params.ts +8 -0
- package/src/types/person-node.ts +11 -0
- package/src/types/phones-value.ts +12 -0
- package/src/types/post-install-result.ts +5 -0
- package/src/types/seed-enrichment-workflow-result.ts +7 -0
- package/src/types/select-option-meta.ts +9 -0
- package/src/types/single-enrich-input.ts +7 -0
- package/src/types/tag-color.ts +26 -0
- package/src/types/update-fields-option.ts +4 -0
- package/src/types/workflow-bulk-records-trigger.ts +15 -0
- package/src/types/workflow-logic-function-step.ts +18 -0
- package/src/utils/__tests__/build-select-options.spec.ts +20 -0
- package/src/utils/__tests__/is-defined.spec.ts +16 -0
- package/src/utils/__tests__/is-unique-violation-error.spec.ts +71 -0
- package/src/utils/__tests__/normalize-enum-value.spec.ts +28 -0
- package/src/utils/__tests__/prune-undefined.spec.ts +22 -0
- package/src/utils/__tests__/strip-separators.spec.ts +13 -0
- package/src/utils/__tests__/to-error-message.spec.ts +13 -0
- package/src/utils/build-select-options.ts +16 -0
- package/src/utils/is-defined.ts +5 -0
- package/src/utils/is-unique-violation-error.ts +74 -0
- package/src/utils/normalize-enum-value.ts +15 -0
- package/src/utils/prune-undefined.ts +15 -0
- package/src/utils/strip-separators.ts +4 -0
- package/src/utils/to-error-message.ts +2 -0
- package/src/views/enriched-companies.view.ts +69 -0
- package/src/views/enriched-people.view.ts +74 -0
- package/tsconfig.json +42 -0
- package/tsconfig.spec.json +9 -0
- package/vitest.config.ts +31 -0
- package/vitest.unit.config.ts +14 -0
|
@@ -0,0 +1,1033 @@
|
|
|
1
|
+
import { type SelectOptionMeta } from 'src/types/select-option-meta';
|
|
2
|
+
|
|
3
|
+
export const INDUSTRY_OPTIONS: readonly SelectOptionMeta[] = [
|
|
4
|
+
{
|
|
5
|
+
key: 'accounting',
|
|
6
|
+
value: 'ACCOUNTING',
|
|
7
|
+
label: 'Accounting',
|
|
8
|
+
color: 'blue',
|
|
9
|
+
position: 0,
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
key: 'airlinesAviation',
|
|
13
|
+
value: 'AIRLINES_AVIATION',
|
|
14
|
+
label: 'Airlines/Aviation',
|
|
15
|
+
color: 'red',
|
|
16
|
+
position: 1,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
key: 'alternativeDisputeResolution',
|
|
20
|
+
value: 'ALTERNATIVE_DISPUTE_RESOLUTION',
|
|
21
|
+
label: 'Alternative Dispute Resolution',
|
|
22
|
+
color: 'green',
|
|
23
|
+
position: 2,
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
key: 'alternativeMedicine',
|
|
27
|
+
value: 'ALTERNATIVE_MEDICINE',
|
|
28
|
+
label: 'Alternative Medicine',
|
|
29
|
+
color: 'orange',
|
|
30
|
+
position: 3,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: 'animation',
|
|
34
|
+
value: 'ANIMATION',
|
|
35
|
+
label: 'Animation',
|
|
36
|
+
color: 'purple',
|
|
37
|
+
position: 4,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
key: 'apparelFashion',
|
|
41
|
+
value: 'APPAREL_FASHION',
|
|
42
|
+
label: 'Apparel & Fashion',
|
|
43
|
+
color: 'yellow',
|
|
44
|
+
position: 5,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
key: 'architecturePlanning',
|
|
48
|
+
value: 'ARCHITECTURE_PLANNING',
|
|
49
|
+
label: 'Architecture & Planning',
|
|
50
|
+
color: 'pink',
|
|
51
|
+
position: 6,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
key: 'artsAndCrafts',
|
|
55
|
+
value: 'ARTS_AND_CRAFTS',
|
|
56
|
+
label: 'Arts and Crafts',
|
|
57
|
+
color: 'cyan',
|
|
58
|
+
position: 7,
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: 'automotive',
|
|
62
|
+
value: 'AUTOMOTIVE',
|
|
63
|
+
label: 'Automotive',
|
|
64
|
+
color: 'brown',
|
|
65
|
+
position: 8,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
key: 'aviationAerospace',
|
|
69
|
+
value: 'AVIATION_AEROSPACE',
|
|
70
|
+
label: 'Aviation & Aerospace',
|
|
71
|
+
color: 'lime',
|
|
72
|
+
position: 9,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: 'banking',
|
|
76
|
+
value: 'BANKING',
|
|
77
|
+
label: 'Banking',
|
|
78
|
+
color: 'violet',
|
|
79
|
+
position: 10,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
key: 'biotechnology',
|
|
83
|
+
value: 'BIOTECHNOLOGY',
|
|
84
|
+
label: 'Biotechnology',
|
|
85
|
+
color: 'gold',
|
|
86
|
+
position: 11,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
key: 'broadcastMedia',
|
|
90
|
+
value: 'BROADCAST_MEDIA',
|
|
91
|
+
label: 'Broadcast Media',
|
|
92
|
+
color: 'turquoise',
|
|
93
|
+
position: 12,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
key: 'buildingMaterials',
|
|
97
|
+
value: 'BUILDING_MATERIALS',
|
|
98
|
+
label: 'Building Materials',
|
|
99
|
+
color: 'crimson',
|
|
100
|
+
position: 13,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
key: 'businessSuppliesAndEquipment',
|
|
104
|
+
value: 'BUSINESS_SUPPLIES_AND_EQUIPMENT',
|
|
105
|
+
label: 'Business Supplies and Equipment',
|
|
106
|
+
color: 'sky',
|
|
107
|
+
position: 14,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
key: 'capitalMarkets',
|
|
111
|
+
value: 'CAPITAL_MARKETS',
|
|
112
|
+
label: 'Capital Markets',
|
|
113
|
+
color: 'amber',
|
|
114
|
+
position: 15,
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
key: 'chemicals',
|
|
118
|
+
value: 'CHEMICALS',
|
|
119
|
+
label: 'Chemicals',
|
|
120
|
+
color: 'plum',
|
|
121
|
+
position: 16,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
key: 'civicSocialOrganization',
|
|
125
|
+
value: 'CIVIC_SOCIAL_ORGANIZATION',
|
|
126
|
+
label: 'Civic & Social Organization',
|
|
127
|
+
color: 'grass',
|
|
128
|
+
position: 17,
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
key: 'civilEngineering',
|
|
132
|
+
value: 'CIVIL_ENGINEERING',
|
|
133
|
+
label: 'Civil Engineering',
|
|
134
|
+
color: 'tomato',
|
|
135
|
+
position: 18,
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: 'commercialRealEstate',
|
|
139
|
+
value: 'COMMERCIAL_REAL_ESTATE',
|
|
140
|
+
label: 'Commercial Real Estate',
|
|
141
|
+
color: 'iris',
|
|
142
|
+
position: 19,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
key: 'computerNetworkSecurity',
|
|
146
|
+
value: 'COMPUTER_NETWORK_SECURITY',
|
|
147
|
+
label: 'Computer & Network Security',
|
|
148
|
+
color: 'mint',
|
|
149
|
+
position: 20,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
key: 'computerGames',
|
|
153
|
+
value: 'COMPUTER_GAMES',
|
|
154
|
+
label: 'Computer Games',
|
|
155
|
+
color: 'ruby',
|
|
156
|
+
position: 21,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
key: 'computerHardware',
|
|
160
|
+
value: 'COMPUTER_HARDWARE',
|
|
161
|
+
label: 'Computer Hardware',
|
|
162
|
+
color: 'bronze',
|
|
163
|
+
position: 22,
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
key: 'computerNetworking',
|
|
167
|
+
value: 'COMPUTER_NETWORKING',
|
|
168
|
+
label: 'Computer Networking',
|
|
169
|
+
color: 'jade',
|
|
170
|
+
position: 23,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
key: 'computerSoftware',
|
|
174
|
+
value: 'COMPUTER_SOFTWARE',
|
|
175
|
+
label: 'Computer Software',
|
|
176
|
+
color: 'gray',
|
|
177
|
+
position: 24,
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
key: 'construction',
|
|
181
|
+
value: 'CONSTRUCTION',
|
|
182
|
+
label: 'Construction',
|
|
183
|
+
color: 'blue',
|
|
184
|
+
position: 25,
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
key: 'consumerElectronics',
|
|
188
|
+
value: 'CONSUMER_ELECTRONICS',
|
|
189
|
+
label: 'Consumer Electronics',
|
|
190
|
+
color: 'red',
|
|
191
|
+
position: 26,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
key: 'consumerGoods',
|
|
195
|
+
value: 'CONSUMER_GOODS',
|
|
196
|
+
label: 'Consumer Goods',
|
|
197
|
+
color: 'green',
|
|
198
|
+
position: 27,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
key: 'consumerServices',
|
|
202
|
+
value: 'CONSUMER_SERVICES',
|
|
203
|
+
label: 'Consumer Services',
|
|
204
|
+
color: 'orange',
|
|
205
|
+
position: 28,
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
key: 'cosmetics',
|
|
209
|
+
value: 'COSMETICS',
|
|
210
|
+
label: 'Cosmetics',
|
|
211
|
+
color: 'purple',
|
|
212
|
+
position: 29,
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
key: 'dairy',
|
|
216
|
+
value: 'DAIRY',
|
|
217
|
+
label: 'Dairy',
|
|
218
|
+
color: 'yellow',
|
|
219
|
+
position: 30,
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
key: 'defenseSpace',
|
|
223
|
+
value: 'DEFENSE_SPACE',
|
|
224
|
+
label: 'Defense & Space',
|
|
225
|
+
color: 'pink',
|
|
226
|
+
position: 31,
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
key: 'design',
|
|
230
|
+
value: 'DESIGN',
|
|
231
|
+
label: 'Design',
|
|
232
|
+
color: 'cyan',
|
|
233
|
+
position: 32,
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
key: 'eLearning',
|
|
237
|
+
value: 'E_LEARNING',
|
|
238
|
+
label: 'E-Learning',
|
|
239
|
+
color: 'brown',
|
|
240
|
+
position: 33,
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
key: 'educationManagement',
|
|
244
|
+
value: 'EDUCATION_MANAGEMENT',
|
|
245
|
+
label: 'Education Management',
|
|
246
|
+
color: 'lime',
|
|
247
|
+
position: 34,
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
key: 'electricalElectronicManufacturing',
|
|
251
|
+
value: 'ELECTRICAL_ELECTRONIC_MANUFACTURING',
|
|
252
|
+
label: 'Electrical/Electronic Manufacturing',
|
|
253
|
+
color: 'violet',
|
|
254
|
+
position: 35,
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
key: 'entertainment',
|
|
258
|
+
value: 'ENTERTAINMENT',
|
|
259
|
+
label: 'Entertainment',
|
|
260
|
+
color: 'gold',
|
|
261
|
+
position: 36,
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
key: 'environmentalServices',
|
|
265
|
+
value: 'ENVIRONMENTAL_SERVICES',
|
|
266
|
+
label: 'Environmental Services',
|
|
267
|
+
color: 'turquoise',
|
|
268
|
+
position: 37,
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
key: 'eventsServices',
|
|
272
|
+
value: 'EVENTS_SERVICES',
|
|
273
|
+
label: 'Events Services',
|
|
274
|
+
color: 'crimson',
|
|
275
|
+
position: 38,
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
key: 'executiveOffice',
|
|
279
|
+
value: 'EXECUTIVE_OFFICE',
|
|
280
|
+
label: 'Executive Office',
|
|
281
|
+
color: 'sky',
|
|
282
|
+
position: 39,
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
key: 'facilitiesServices',
|
|
286
|
+
value: 'FACILITIES_SERVICES',
|
|
287
|
+
label: 'Facilities Services',
|
|
288
|
+
color: 'amber',
|
|
289
|
+
position: 40,
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
key: 'farming',
|
|
293
|
+
value: 'FARMING',
|
|
294
|
+
label: 'Farming',
|
|
295
|
+
color: 'plum',
|
|
296
|
+
position: 41,
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
key: 'financialServices',
|
|
300
|
+
value: 'FINANCIAL_SERVICES',
|
|
301
|
+
label: 'Financial Services',
|
|
302
|
+
color: 'grass',
|
|
303
|
+
position: 42,
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
key: 'fineArt',
|
|
307
|
+
value: 'FINE_ART',
|
|
308
|
+
label: 'Fine Art',
|
|
309
|
+
color: 'tomato',
|
|
310
|
+
position: 43,
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
key: 'fishery',
|
|
314
|
+
value: 'FISHERY',
|
|
315
|
+
label: 'Fishery',
|
|
316
|
+
color: 'iris',
|
|
317
|
+
position: 44,
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
key: 'foodBeverages',
|
|
321
|
+
value: 'FOOD_BEVERAGES',
|
|
322
|
+
label: 'Food & Beverages',
|
|
323
|
+
color: 'mint',
|
|
324
|
+
position: 45,
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
key: 'foodProduction',
|
|
328
|
+
value: 'FOOD_PRODUCTION',
|
|
329
|
+
label: 'Food Production',
|
|
330
|
+
color: 'ruby',
|
|
331
|
+
position: 46,
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
key: 'fundRaising',
|
|
335
|
+
value: 'FUND_RAISING',
|
|
336
|
+
label: 'Fund-Raising',
|
|
337
|
+
color: 'bronze',
|
|
338
|
+
position: 47,
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
key: 'furniture',
|
|
342
|
+
value: 'FURNITURE',
|
|
343
|
+
label: 'Furniture',
|
|
344
|
+
color: 'jade',
|
|
345
|
+
position: 48,
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
key: 'gamblingCasinos',
|
|
349
|
+
value: 'GAMBLING_CASINOS',
|
|
350
|
+
label: 'Gambling & Casinos',
|
|
351
|
+
color: 'gray',
|
|
352
|
+
position: 49,
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
key: 'glassCeramicsConcrete',
|
|
356
|
+
value: 'GLASS_CERAMICS_CONCRETE',
|
|
357
|
+
label: 'Glass Ceramics & Concrete',
|
|
358
|
+
color: 'blue',
|
|
359
|
+
position: 50,
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
key: 'governmentAdministration',
|
|
363
|
+
value: 'GOVERNMENT_ADMINISTRATION',
|
|
364
|
+
label: 'Government Administration',
|
|
365
|
+
color: 'red',
|
|
366
|
+
position: 51,
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
key: 'governmentRelations',
|
|
370
|
+
value: 'GOVERNMENT_RELATIONS',
|
|
371
|
+
label: 'Government Relations',
|
|
372
|
+
color: 'green',
|
|
373
|
+
position: 52,
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
key: 'graphicDesign',
|
|
377
|
+
value: 'GRAPHIC_DESIGN',
|
|
378
|
+
label: 'Graphic Design',
|
|
379
|
+
color: 'orange',
|
|
380
|
+
position: 53,
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
key: 'healthWellnessAndFitness',
|
|
384
|
+
value: 'HEALTH_WELLNESS_AND_FITNESS',
|
|
385
|
+
label: 'Health Wellness and Fitness',
|
|
386
|
+
color: 'purple',
|
|
387
|
+
position: 54,
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
key: 'higherEducation',
|
|
391
|
+
value: 'HIGHER_EDUCATION',
|
|
392
|
+
label: 'Higher Education',
|
|
393
|
+
color: 'yellow',
|
|
394
|
+
position: 55,
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
key: 'hospitalHealthCare',
|
|
398
|
+
value: 'HOSPITAL_HEALTH_CARE',
|
|
399
|
+
label: 'Hospital & Health Care',
|
|
400
|
+
color: 'pink',
|
|
401
|
+
position: 56,
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
key: 'hospitality',
|
|
405
|
+
value: 'HOSPITALITY',
|
|
406
|
+
label: 'Hospitality',
|
|
407
|
+
color: 'cyan',
|
|
408
|
+
position: 57,
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
key: 'humanResources',
|
|
412
|
+
value: 'HUMAN_RESOURCES',
|
|
413
|
+
label: 'Human Resources',
|
|
414
|
+
color: 'brown',
|
|
415
|
+
position: 58,
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
key: 'importAndExport',
|
|
419
|
+
value: 'IMPORT_AND_EXPORT',
|
|
420
|
+
label: 'Import and Export',
|
|
421
|
+
color: 'lime',
|
|
422
|
+
position: 59,
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
key: 'individualFamilyServices',
|
|
426
|
+
value: 'INDIVIDUAL_FAMILY_SERVICES',
|
|
427
|
+
label: 'Individual & Family Services',
|
|
428
|
+
color: 'violet',
|
|
429
|
+
position: 60,
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
key: 'industrialAutomation',
|
|
433
|
+
value: 'INDUSTRIAL_AUTOMATION',
|
|
434
|
+
label: 'Industrial Automation',
|
|
435
|
+
color: 'gold',
|
|
436
|
+
position: 61,
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
key: 'informationServices',
|
|
440
|
+
value: 'INFORMATION_SERVICES',
|
|
441
|
+
label: 'Information Services',
|
|
442
|
+
color: 'turquoise',
|
|
443
|
+
position: 62,
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
key: 'informationTechnologyAndServices',
|
|
447
|
+
value: 'INFORMATION_TECHNOLOGY_AND_SERVICES',
|
|
448
|
+
label: 'Information Technology and Services',
|
|
449
|
+
color: 'crimson',
|
|
450
|
+
position: 63,
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
key: 'insurance',
|
|
454
|
+
value: 'INSURANCE',
|
|
455
|
+
label: 'Insurance',
|
|
456
|
+
color: 'sky',
|
|
457
|
+
position: 64,
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
key: 'internationalAffairs',
|
|
461
|
+
value: 'INTERNATIONAL_AFFAIRS',
|
|
462
|
+
label: 'International Affairs',
|
|
463
|
+
color: 'amber',
|
|
464
|
+
position: 65,
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
key: 'internationalTradeAndDevelopment',
|
|
468
|
+
value: 'INTERNATIONAL_TRADE_AND_DEVELOPMENT',
|
|
469
|
+
label: 'International Trade and Development',
|
|
470
|
+
color: 'plum',
|
|
471
|
+
position: 66,
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
key: 'internet',
|
|
475
|
+
value: 'INTERNET',
|
|
476
|
+
label: 'Internet',
|
|
477
|
+
color: 'grass',
|
|
478
|
+
position: 67,
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
key: 'investmentBanking',
|
|
482
|
+
value: 'INVESTMENT_BANKING',
|
|
483
|
+
label: 'Investment Banking',
|
|
484
|
+
color: 'tomato',
|
|
485
|
+
position: 68,
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
key: 'investmentManagement',
|
|
489
|
+
value: 'INVESTMENT_MANAGEMENT',
|
|
490
|
+
label: 'Investment Management',
|
|
491
|
+
color: 'iris',
|
|
492
|
+
position: 69,
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
key: 'judiciary',
|
|
496
|
+
value: 'JUDICIARY',
|
|
497
|
+
label: 'Judiciary',
|
|
498
|
+
color: 'mint',
|
|
499
|
+
position: 70,
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
key: 'lawEnforcement',
|
|
503
|
+
value: 'LAW_ENFORCEMENT',
|
|
504
|
+
label: 'Law Enforcement',
|
|
505
|
+
color: 'ruby',
|
|
506
|
+
position: 71,
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
key: 'lawPractice',
|
|
510
|
+
value: 'LAW_PRACTICE',
|
|
511
|
+
label: 'Law Practice',
|
|
512
|
+
color: 'bronze',
|
|
513
|
+
position: 72,
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
key: 'legalServices',
|
|
517
|
+
value: 'LEGAL_SERVICES',
|
|
518
|
+
label: 'Legal Services',
|
|
519
|
+
color: 'jade',
|
|
520
|
+
position: 73,
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
key: 'legislativeOffice',
|
|
524
|
+
value: 'LEGISLATIVE_OFFICE',
|
|
525
|
+
label: 'Legislative Office',
|
|
526
|
+
color: 'gray',
|
|
527
|
+
position: 74,
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
key: 'leisureTravelTourism',
|
|
531
|
+
value: 'LEISURE_TRAVEL_TOURISM',
|
|
532
|
+
label: 'Leisure Travel & Tourism',
|
|
533
|
+
color: 'blue',
|
|
534
|
+
position: 75,
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
key: 'libraries',
|
|
538
|
+
value: 'LIBRARIES',
|
|
539
|
+
label: 'Libraries',
|
|
540
|
+
color: 'red',
|
|
541
|
+
position: 76,
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
key: 'logisticsAndSupplyChain',
|
|
545
|
+
value: 'LOGISTICS_AND_SUPPLY_CHAIN',
|
|
546
|
+
label: 'Logistics and Supply Chain',
|
|
547
|
+
color: 'green',
|
|
548
|
+
position: 77,
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
key: 'luxuryGoodsJewelry',
|
|
552
|
+
value: 'LUXURY_GOODS_JEWELRY',
|
|
553
|
+
label: 'Luxury Goods & Jewelry',
|
|
554
|
+
color: 'orange',
|
|
555
|
+
position: 78,
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
key: 'machinery',
|
|
559
|
+
value: 'MACHINERY',
|
|
560
|
+
label: 'Machinery',
|
|
561
|
+
color: 'purple',
|
|
562
|
+
position: 79,
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
key: 'managementConsulting',
|
|
566
|
+
value: 'MANAGEMENT_CONSULTING',
|
|
567
|
+
label: 'Management Consulting',
|
|
568
|
+
color: 'yellow',
|
|
569
|
+
position: 80,
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
key: 'maritime',
|
|
573
|
+
value: 'MARITIME',
|
|
574
|
+
label: 'Maritime',
|
|
575
|
+
color: 'pink',
|
|
576
|
+
position: 81,
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
key: 'marketResearch',
|
|
580
|
+
value: 'MARKET_RESEARCH',
|
|
581
|
+
label: 'Market Research',
|
|
582
|
+
color: 'cyan',
|
|
583
|
+
position: 82,
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
key: 'marketingAndAdvertising',
|
|
587
|
+
value: 'MARKETING_AND_ADVERTISING',
|
|
588
|
+
label: 'Marketing and Advertising',
|
|
589
|
+
color: 'brown',
|
|
590
|
+
position: 83,
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
key: 'mechanicalOrIndustrialEngineering',
|
|
594
|
+
value: 'MECHANICAL_OR_INDUSTRIAL_ENGINEERING',
|
|
595
|
+
label: 'Mechanical or Industrial Engineering',
|
|
596
|
+
color: 'lime',
|
|
597
|
+
position: 84,
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
key: 'mediaProduction',
|
|
601
|
+
value: 'MEDIA_PRODUCTION',
|
|
602
|
+
label: 'Media Production',
|
|
603
|
+
color: 'violet',
|
|
604
|
+
position: 85,
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
key: 'medicalDevices',
|
|
608
|
+
value: 'MEDICAL_DEVICES',
|
|
609
|
+
label: 'Medical Devices',
|
|
610
|
+
color: 'gold',
|
|
611
|
+
position: 86,
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
key: 'medicalPractice',
|
|
615
|
+
value: 'MEDICAL_PRACTICE',
|
|
616
|
+
label: 'Medical Practice',
|
|
617
|
+
color: 'turquoise',
|
|
618
|
+
position: 87,
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
key: 'mentalHealthCare',
|
|
622
|
+
value: 'MENTAL_HEALTH_CARE',
|
|
623
|
+
label: 'Mental Health Care',
|
|
624
|
+
color: 'crimson',
|
|
625
|
+
position: 88,
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
key: 'military',
|
|
629
|
+
value: 'MILITARY',
|
|
630
|
+
label: 'Military',
|
|
631
|
+
color: 'sky',
|
|
632
|
+
position: 89,
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
key: 'miningMetals',
|
|
636
|
+
value: 'MINING_METALS',
|
|
637
|
+
label: 'Mining & Metals',
|
|
638
|
+
color: 'amber',
|
|
639
|
+
position: 90,
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
key: 'motionPicturesAndFilm',
|
|
643
|
+
value: 'MOTION_PICTURES_AND_FILM',
|
|
644
|
+
label: 'Motion Pictures and Film',
|
|
645
|
+
color: 'plum',
|
|
646
|
+
position: 91,
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
key: 'museumsAndInstitutions',
|
|
650
|
+
value: 'MUSEUMS_AND_INSTITUTIONS',
|
|
651
|
+
label: 'Museums and Institutions',
|
|
652
|
+
color: 'grass',
|
|
653
|
+
position: 92,
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
key: 'music',
|
|
657
|
+
value: 'MUSIC',
|
|
658
|
+
label: 'Music',
|
|
659
|
+
color: 'tomato',
|
|
660
|
+
position: 93,
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
key: 'nanotechnology',
|
|
664
|
+
value: 'NANOTECHNOLOGY',
|
|
665
|
+
label: 'Nanotechnology',
|
|
666
|
+
color: 'iris',
|
|
667
|
+
position: 94,
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
key: 'newspapers',
|
|
671
|
+
value: 'NEWSPAPERS',
|
|
672
|
+
label: 'Newspapers',
|
|
673
|
+
color: 'mint',
|
|
674
|
+
position: 95,
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
key: 'nonProfitOrganizationManagement',
|
|
678
|
+
value: 'NON_PROFIT_ORGANIZATION_MANAGEMENT',
|
|
679
|
+
label: 'Non-Profit Organization Management',
|
|
680
|
+
color: 'ruby',
|
|
681
|
+
position: 96,
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
key: 'oilEnergy',
|
|
685
|
+
value: 'OIL_ENERGY',
|
|
686
|
+
label: 'Oil & Energy',
|
|
687
|
+
color: 'bronze',
|
|
688
|
+
position: 97,
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
key: 'onlineMedia',
|
|
692
|
+
value: 'ONLINE_MEDIA',
|
|
693
|
+
label: 'Online Media',
|
|
694
|
+
color: 'jade',
|
|
695
|
+
position: 98,
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
key: 'outsourcingOffshoring',
|
|
699
|
+
value: 'OUTSOURCING_OFFSHORING',
|
|
700
|
+
label: 'Outsourcing/Offshoring',
|
|
701
|
+
color: 'gray',
|
|
702
|
+
position: 99,
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
key: 'packageFreightDelivery',
|
|
706
|
+
value: 'PACKAGE_FREIGHT_DELIVERY',
|
|
707
|
+
label: 'Package/Freight Delivery',
|
|
708
|
+
color: 'blue',
|
|
709
|
+
position: 100,
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
key: 'packagingAndContainers',
|
|
713
|
+
value: 'PACKAGING_AND_CONTAINERS',
|
|
714
|
+
label: 'Packaging and Containers',
|
|
715
|
+
color: 'red',
|
|
716
|
+
position: 101,
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
key: 'paperForestProducts',
|
|
720
|
+
value: 'PAPER_FOREST_PRODUCTS',
|
|
721
|
+
label: 'Paper & Forest Products',
|
|
722
|
+
color: 'green',
|
|
723
|
+
position: 102,
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
key: 'performingArts',
|
|
727
|
+
value: 'PERFORMING_ARTS',
|
|
728
|
+
label: 'Performing Arts',
|
|
729
|
+
color: 'orange',
|
|
730
|
+
position: 103,
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
key: 'pharmaceuticals',
|
|
734
|
+
value: 'PHARMACEUTICALS',
|
|
735
|
+
label: 'Pharmaceuticals',
|
|
736
|
+
color: 'purple',
|
|
737
|
+
position: 104,
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
key: 'philanthropy',
|
|
741
|
+
value: 'PHILANTHROPY',
|
|
742
|
+
label: 'Philanthropy',
|
|
743
|
+
color: 'yellow',
|
|
744
|
+
position: 105,
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
key: 'photography',
|
|
748
|
+
value: 'PHOTOGRAPHY',
|
|
749
|
+
label: 'Photography',
|
|
750
|
+
color: 'pink',
|
|
751
|
+
position: 106,
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
key: 'plastics',
|
|
755
|
+
value: 'PLASTICS',
|
|
756
|
+
label: 'Plastics',
|
|
757
|
+
color: 'cyan',
|
|
758
|
+
position: 107,
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
key: 'politicalOrganization',
|
|
762
|
+
value: 'POLITICAL_ORGANIZATION',
|
|
763
|
+
label: 'Political Organization',
|
|
764
|
+
color: 'brown',
|
|
765
|
+
position: 108,
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
key: 'primarySecondaryEducation',
|
|
769
|
+
value: 'PRIMARY_SECONDARY_EDUCATION',
|
|
770
|
+
label: 'Primary/Secondary Education',
|
|
771
|
+
color: 'lime',
|
|
772
|
+
position: 109,
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
key: 'printing',
|
|
776
|
+
value: 'PRINTING',
|
|
777
|
+
label: 'Printing',
|
|
778
|
+
color: 'violet',
|
|
779
|
+
position: 110,
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
key: 'professionalTrainingCoaching',
|
|
783
|
+
value: 'PROFESSIONAL_TRAINING_COACHING',
|
|
784
|
+
label: 'Professional Training & Coaching',
|
|
785
|
+
color: 'gold',
|
|
786
|
+
position: 111,
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
key: 'programDevelopment',
|
|
790
|
+
value: 'PROGRAM_DEVELOPMENT',
|
|
791
|
+
label: 'Program Development',
|
|
792
|
+
color: 'turquoise',
|
|
793
|
+
position: 112,
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
key: 'publicPolicy',
|
|
797
|
+
value: 'PUBLIC_POLICY',
|
|
798
|
+
label: 'Public Policy',
|
|
799
|
+
color: 'crimson',
|
|
800
|
+
position: 113,
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
key: 'publicRelationsAndCommunications',
|
|
804
|
+
value: 'PUBLIC_RELATIONS_AND_COMMUNICATIONS',
|
|
805
|
+
label: 'Public Relations and Communications',
|
|
806
|
+
color: 'sky',
|
|
807
|
+
position: 114,
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
key: 'publicSafety',
|
|
811
|
+
value: 'PUBLIC_SAFETY',
|
|
812
|
+
label: 'Public Safety',
|
|
813
|
+
color: 'amber',
|
|
814
|
+
position: 115,
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
key: 'publishing',
|
|
818
|
+
value: 'PUBLISHING',
|
|
819
|
+
label: 'Publishing',
|
|
820
|
+
color: 'plum',
|
|
821
|
+
position: 116,
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
key: 'railroadManufacture',
|
|
825
|
+
value: 'RAILROAD_MANUFACTURE',
|
|
826
|
+
label: 'Railroad Manufacture',
|
|
827
|
+
color: 'grass',
|
|
828
|
+
position: 117,
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
key: 'ranching',
|
|
832
|
+
value: 'RANCHING',
|
|
833
|
+
label: 'Ranching',
|
|
834
|
+
color: 'tomato',
|
|
835
|
+
position: 118,
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
key: 'realEstate',
|
|
839
|
+
value: 'REAL_ESTATE',
|
|
840
|
+
label: 'Real Estate',
|
|
841
|
+
color: 'iris',
|
|
842
|
+
position: 119,
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
key: 'recreationalFacilitiesAndServices',
|
|
846
|
+
value: 'RECREATIONAL_FACILITIES_AND_SERVICES',
|
|
847
|
+
label: 'Recreational Facilities and Services',
|
|
848
|
+
color: 'mint',
|
|
849
|
+
position: 120,
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
key: 'religiousInstitutions',
|
|
853
|
+
value: 'RELIGIOUS_INSTITUTIONS',
|
|
854
|
+
label: 'Religious Institutions',
|
|
855
|
+
color: 'ruby',
|
|
856
|
+
position: 121,
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
key: 'renewablesEnvironment',
|
|
860
|
+
value: 'RENEWABLES_ENVIRONMENT',
|
|
861
|
+
label: 'Renewables & Environment',
|
|
862
|
+
color: 'bronze',
|
|
863
|
+
position: 122,
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
key: 'research',
|
|
867
|
+
value: 'RESEARCH',
|
|
868
|
+
label: 'Research',
|
|
869
|
+
color: 'jade',
|
|
870
|
+
position: 123,
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
key: 'restaurants',
|
|
874
|
+
value: 'RESTAURANTS',
|
|
875
|
+
label: 'Restaurants',
|
|
876
|
+
color: 'gray',
|
|
877
|
+
position: 124,
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
key: 'retail',
|
|
881
|
+
value: 'RETAIL',
|
|
882
|
+
label: 'Retail',
|
|
883
|
+
color: 'blue',
|
|
884
|
+
position: 125,
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
key: 'securityAndInvestigations',
|
|
888
|
+
value: 'SECURITY_AND_INVESTIGATIONS',
|
|
889
|
+
label: 'Security and Investigations',
|
|
890
|
+
color: 'red',
|
|
891
|
+
position: 126,
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
key: 'semiconductors',
|
|
895
|
+
value: 'SEMICONDUCTORS',
|
|
896
|
+
label: 'Semiconductors',
|
|
897
|
+
color: 'green',
|
|
898
|
+
position: 127,
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
key: 'shipbuilding',
|
|
902
|
+
value: 'SHIPBUILDING',
|
|
903
|
+
label: 'Shipbuilding',
|
|
904
|
+
color: 'orange',
|
|
905
|
+
position: 128,
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
key: 'sportingGoods',
|
|
909
|
+
value: 'SPORTING_GOODS',
|
|
910
|
+
label: 'Sporting Goods',
|
|
911
|
+
color: 'purple',
|
|
912
|
+
position: 129,
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
key: 'sports',
|
|
916
|
+
value: 'SPORTS',
|
|
917
|
+
label: 'Sports',
|
|
918
|
+
color: 'yellow',
|
|
919
|
+
position: 130,
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
key: 'staffingAndRecruiting',
|
|
923
|
+
value: 'STAFFING_AND_RECRUITING',
|
|
924
|
+
label: 'Staffing and Recruiting',
|
|
925
|
+
color: 'pink',
|
|
926
|
+
position: 131,
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
key: 'supermarkets',
|
|
930
|
+
value: 'SUPERMARKETS',
|
|
931
|
+
label: 'Supermarkets',
|
|
932
|
+
color: 'cyan',
|
|
933
|
+
position: 132,
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
key: 'telecommunications',
|
|
937
|
+
value: 'TELECOMMUNICATIONS',
|
|
938
|
+
label: 'Telecommunications',
|
|
939
|
+
color: 'brown',
|
|
940
|
+
position: 133,
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
key: 'textiles',
|
|
944
|
+
value: 'TEXTILES',
|
|
945
|
+
label: 'Textiles',
|
|
946
|
+
color: 'lime',
|
|
947
|
+
position: 134,
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
key: 'thinkTanks',
|
|
951
|
+
value: 'THINK_TANKS',
|
|
952
|
+
label: 'Think Tanks',
|
|
953
|
+
color: 'violet',
|
|
954
|
+
position: 135,
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
key: 'tobacco',
|
|
958
|
+
value: 'TOBACCO',
|
|
959
|
+
label: 'Tobacco',
|
|
960
|
+
color: 'gold',
|
|
961
|
+
position: 136,
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
key: 'translationAndLocalization',
|
|
965
|
+
value: 'TRANSLATION_AND_LOCALIZATION',
|
|
966
|
+
label: 'Translation and Localization',
|
|
967
|
+
color: 'turquoise',
|
|
968
|
+
position: 137,
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
key: 'transportationTruckingRailroad',
|
|
972
|
+
value: 'TRANSPORTATION_TRUCKING_RAILROAD',
|
|
973
|
+
label: 'Transportation/Trucking/Railroad',
|
|
974
|
+
color: 'crimson',
|
|
975
|
+
position: 138,
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
key: 'utilities',
|
|
979
|
+
value: 'UTILITIES',
|
|
980
|
+
label: 'Utilities',
|
|
981
|
+
color: 'sky',
|
|
982
|
+
position: 139,
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
key: 'ventureCapitalPrivateEquity',
|
|
986
|
+
value: 'VENTURE_CAPITAL_PRIVATE_EQUITY',
|
|
987
|
+
label: 'Venture Capital & Private Equity',
|
|
988
|
+
color: 'amber',
|
|
989
|
+
position: 140,
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
key: 'veterinary',
|
|
993
|
+
value: 'VETERINARY',
|
|
994
|
+
label: 'Veterinary',
|
|
995
|
+
color: 'plum',
|
|
996
|
+
position: 141,
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
key: 'warehousing',
|
|
1000
|
+
value: 'WAREHOUSING',
|
|
1001
|
+
label: 'Warehousing',
|
|
1002
|
+
color: 'grass',
|
|
1003
|
+
position: 142,
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
key: 'wholesale',
|
|
1007
|
+
value: 'WHOLESALE',
|
|
1008
|
+
label: 'Wholesale',
|
|
1009
|
+
color: 'tomato',
|
|
1010
|
+
position: 143,
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
key: 'wineAndSpirits',
|
|
1014
|
+
value: 'WINE_AND_SPIRITS',
|
|
1015
|
+
label: 'Wine and Spirits',
|
|
1016
|
+
color: 'iris',
|
|
1017
|
+
position: 144,
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
key: 'wireless',
|
|
1021
|
+
value: 'WIRELESS',
|
|
1022
|
+
label: 'Wireless',
|
|
1023
|
+
color: 'mint',
|
|
1024
|
+
position: 145,
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
key: 'writingAndEditing',
|
|
1028
|
+
value: 'WRITING_AND_EDITING',
|
|
1029
|
+
label: 'Writing and Editing',
|
|
1030
|
+
color: 'ruby',
|
|
1031
|
+
position: 146,
|
|
1032
|
+
},
|
|
1033
|
+
];
|