Skip to content

Commit

Permalink
removed ATS and HRIS from shared lib
Browse files Browse the repository at this point in the history
  • Loading branch information
rflihxyz committed Nov 16, 2024
1 parent 8c293db commit 6319cb8
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 1,662 deletions.
4 changes: 0 additions & 4 deletions apps/magic-link/src/lib/ProviderModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,6 @@ const ProviderModal = () => {
return "File Storage";
case "crm":
return "CRM";
case "ats":
return "ATS";
case "hris":
return "HRIS";
default:
return vertical.substring(0,1).toUpperCase() + vertical.substring(1)
}
Expand Down
16 changes: 8 additions & 8 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,14 @@ services:
# condition: service_healthy
# network_mode: "host"

docs:
build:
dockerfile: ./Dockerfile.dev
context: ./docs/
ports:
- 911:3000
volumes:
- ./docs/:/app
# docs:
# build:
# dockerfile: ./Dockerfile.dev
# context: ./docs/
# ports:
# - 911:3000
# volumes:
# - ./docs/:/app

minio:
image: minio/minio
Expand Down
4 changes: 0 additions & 4 deletions packages/api/src/@core/utils/decorators/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {
CRM_PROVIDERS,
HRIS_PROVIDERS,
ATS_PROVIDERS,
ACCOUNTING_PROVIDERS,
TICKETING_PROVIDERS,
MARKETINGAUTOMATION_PROVIDERS,
Expand All @@ -27,8 +25,6 @@ interface ProviderMetadata {
export async function generatePanoraParamsSpec(spec: any) {
const verticals = {
crm: [CRM_PROVIDERS, CrmObject],
hris: [HRIS_PROVIDERS, HrisObject],
ats: [ATS_PROVIDERS, AtsObject],
accounting: [ACCOUNTING_PROVIDERS, AccountingObject],
ticketing: [TICKETING_PROVIDERS, TicketingObject],
marketingautomation: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { IBaseSync, SyncLinkedUserType } from '@@core/utils/types/interface';
import { OriginalFulfillmentOrdersOutput } from '@@core/utils/types/original/original.ecommerce';
import { Injectable, OnModuleInit } from '@nestjs/common';
import { Cron } from '@nestjs/schedule';
import { ATS_PROVIDERS, ECOMMERCE_PROVIDERS } from '@panora/shared';
// The following line are commented because they use code from the ATS Module, which was removed from the project
// import { ATS_PROVIDERS, ECOMMERCE_PROVIDERS } from '@panora/shared';
import { v4 as uuidv4 } from 'uuid';
import { ServiceRegistry } from '../services/registry.service';
import { IFulfillmentOrdersService } from '../types';
Expand Down
2 changes: 0 additions & 2 deletions packages/shared/src/categories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export enum ConnectorCategory {
Crm = 'crm',
Hris = 'hris',
Ats = 'ats',
Accounting = 'accounting',
Ticketing = 'ticketing',
MarketingAutomation = 'marketingautomation',
Expand Down
2 changes: 0 additions & 2 deletions packages/shared/src/connectors/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export const CRM_PROVIDERS = ['zoho', 'zendesk', 'hubspot', 'pipedrive', 'attio', 'close', 'microsoftdynamicssales'];
export const HRIS_PROVIDERS = [];
export const ATS_PROVIDERS = ['ashby'];
export const ACCOUNTING_PROVIDERS = [];
export const TICKETING_PROVIDERS = ['zendesk', 'front', 'jira', 'gorgias', 'gitlab', 'github', 'linear'];
export const MARKETINGAUTOMATION_PROVIDERS = [];
Expand Down
Loading

0 comments on commit 6319cb8

Please sign in to comment.