Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration requests form #440

Merged
merged 2 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 19 additions & 5 deletions .github/ISSUE_TEMPLATE/new-integration-request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: New Integration Request
description: Need an Integration that isn't in our catalog yet? Ask here!
title: "feat: Add integration with: #SOFTWARE_NAME"
labels: ["backend", "embedded-catalog", "good first issue"]
body:
- type: markdown
Expand All @@ -15,16 +16,29 @@ body:
validations:
required: true
- type: dropdown
id: vertical
id: software_category
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tip

Codebase Verification

Ensure that any scripts or automation that previously used id: vertical are updated to accommodate the new id: software_category. The search results indicate multiple occurrences of the term "vertical" across various files, including scripts, services, and documentation. These references need to be reviewed and updated accordingly.

  • packages/api/swagger/swagger-spec.json
  • packages/shared/src/providers.ts
  • packages/shared/src/utils.ts
  • packages/shared/src/envConfig.ts
  • packages/shared/src/authUrl.ts
  • packages/api/src/ticketing/user/sync/sync.service.ts
  • packages/api/scripts/oauthConnector.js
  • packages/api/scripts/commonObject.sh
  • packages/api/scripts/connectorUpdate.js
  • packages/api/src/crm/task/sync/sync.service.ts
  • packages/api/src/@core/field-mapping/field-mapping.service.ts
  • packages/api/src/@core/sync/sync.service.ts
  • packages/api/src/@core/passthrough/passthrough.service.ts
  • packages/api/src/@core/connections-strategies/connections-strategies.service.ts
  • docs/quick-start.mdx
  • docs/open-source/contributors.mdx
  • docs/glossary/connection-object.mdx
  • docs/core-concepts/embedded-catalog.mdx
  • docs/core-concepts/auth.mdx
  • INTEGRATIONS.md
  • apps/embedded-catalog/react/src/index.tsx
  • apps/client-ts/src/state/verticalStore.ts
  • apps/client-ts/src/hooks/useProviderProperties.tsx
  • apps/client-ts/src/components/Connection/ConnectionTable.tsx
  • apps/client-ts/src/components/Configuration/Connector/VerticalSelector.tsx
  • apps/client-ts/src/components/Configuration/Connector/ConnectorList.tsx
  • apps/client-ts/src/components/Configuration/Connector/ConnectorDisplay.tsx
  • apps/client-ts/src/components/Configuration/AddAuthCredentialsForm.tsx
  • apps/magic-link/src/hooks/useOAuth.ts
Analysis chain

Ensure that any scripts or automation that previously used id: vertical are updated to accommodate the new id: software_category.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Search for occurrences of the old ID 'vertical' to ensure they are updated.

# Test: Search for the old ID usage. Expect: No occurrences of 'vertical'.
rg --type yaml $'id: vertical'

Length of output: 31



Script:

#!/bin/bash
# Description: Search for occurrences of the old ID 'vertical' in all file types to ensure they are updated.

# Test: Search for the old ID usage in all files. Expect: No occurrences of 'vertical'.
rg 'id: vertical'

Length of output: 19



Script:

#!/bin/bash
# Description: Search for occurrences of the old ID 'vertical' in scripts and documentation to ensure they are updated.

# Test: Search for the old ID usage in scripts and documentation. Expect: No occurrences of 'vertical'.
rg 'vertical'

Length of output: 50239

attributes:
label: Verticals
label: Category
multiple: true
description: "What type of software do you want to build integrations with?"
options:
- CRM
- Ticketing
- HRIS
- Accounting
- Calendar
- Cybersecurity
- CRM
- Data Warehouse
- Document Signature
- Ecommerce
- Email
- File Storage
- HRIS
- Logging
- Marketing Automation
- Payments
- Point of Sale
- Source Code Management
- Telematics and IOT
- Ticketing
- Other
validations:
required: true
Expand Down