From 7c8f509a594183c1bd41a187271f4aeba7065573 Mon Sep 17 00:00:00 2001 From: Dhanus Date: Sun, 17 Aug 2025 23:16:55 +0530 Subject: [PATCH 1/2] fix(docs): Broken contributing guide link in PR template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0b3d51e42..84366fed1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -38,7 +38,7 @@ A visual demonstration is strongly recommended, for both the original and new ch -- I haven't read the [contributing guide](https://github.com/trycomp/comp/blob/main/CONTRIBUTING.md) +- I haven't read the [contributing guide](https://github.com/trycompai/comp/blob/main/CONTRIBUTING.md) - My code doesn't follow the style guidelines of this project - I haven't commented my code, particularly in hard-to-understand areas - I haven't checked if my changes generate no new warnings From 3243ee63f8fff867d41664adeb4d7e53072390a9 Mon Sep 17 00:00:00 2001 From: Claudio Fuentes Date: Mon, 18 Aug 2025 15:04:04 -0400 Subject: [PATCH 2/2] refactor: remove Deel integration from documentation and code - Removed references to the Deel integration from the documentation and the integrations array in the code, streamlining the integration options available. --- packages/docs/docs.json | 1 - packages/integrations/src/index.ts | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/docs/docs.json b/packages/docs/docs.json index 3340d78ef..952e06c76 100644 --- a/packages/docs/docs.json +++ b/packages/docs/docs.json @@ -37,7 +37,6 @@ "group": "Integrations Guides", "pages": [ "integrations/index", - "integrations/deel", "integrations/aws", "integrations/azure", "integrations/gcp" diff --git a/packages/integrations/src/index.ts b/packages/integrations/src/index.ts index 4cdd18b0d..902b1be86 100644 --- a/packages/integrations/src/index.ts +++ b/packages/integrations/src/index.ts @@ -1,9 +1,8 @@ import Aws from './aws/config'; import Azure from './azure/config'; -import Deel from './deel/config'; import Gcp from './gcp/config'; -export const integrations = [Aws, Azure, Deel, Gcp]; +export const integrations = [Aws, Azure, Gcp]; // Export the integration factory export { getIntegrationHandler, type IntegrationHandler } from './factory';