Skip to content

Commit 3243ee6

Browse files
committed
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.
1 parent 36e12f1 commit 3243ee6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/docs/docs.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"group": "Integrations Guides",
3838
"pages": [
3939
"integrations/index",
40-
"integrations/deel",
4140
"integrations/aws",
4241
"integrations/azure",
4342
"integrations/gcp"

packages/integrations/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import Aws from './aws/config';
22
import Azure from './azure/config';
3-
import Deel from './deel/config';
43
import Gcp from './gcp/config';
54

6-
export const integrations = [Aws, Azure, Deel, Gcp];
5+
export const integrations = [Aws, Azure, Gcp];
76

87
// Export the integration factory
98
export { getIntegrationHandler, type IntegrationHandler } from './factory';

0 commit comments

Comments
 (0)