├── .dockerignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── actions │ └── sign_image_with_cosign │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── cla.yml │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .huskyrc.json ├── .lintstagedrc.json ├── .prettierrc.json ├── .tsconfig.json ├── AGENTS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GEMINI.md ├── LICENSE ├── README.md ├── destinations └── airbyte-faros-destination │ ├── README.md │ ├── bin │ └── main │ ├── img │ └── source_destination.png │ ├── package.json │ ├── resources │ ├── cicdArtifactQueryByCommitSha.gql │ ├── cicdArtifactVulnerabilityQuery.gql │ ├── cloud.json │ ├── community.json │ ├── source-specific-configs │ │ ├── agileaccelerator.json │ │ ├── asana.json │ │ ├── aws-cloudwatch-metrics.json │ │ ├── azureactivedirectory.json │ │ ├── azurepipeline.json │ │ ├── backlog.json │ │ ├── bamboohr.json │ │ ├── bigquery.json │ │ ├── bitbucket.json │ │ ├── circleci.json │ │ ├── clickup.json │ │ ├── cursor.json │ │ ├── datadog.json │ │ ├── docker.json │ │ ├── faros-org-import.json │ │ ├── firehydrant.json │ │ ├── github.json │ │ ├── googlecalendar.json │ │ ├── jenkins.json │ │ ├── jira.json │ │ ├── notion.json │ │ ├── octopus.json │ │ ├── okta.json │ │ ├── opsgenie.json │ │ ├── pagerduty.json │ │ ├── phabricator.json │ │ ├── servicenow.json │ │ ├── spec.json │ │ ├── squadcast.json │ │ ├── statuspage.json │ │ ├── surveys.json │ │ ├── trello.json │ │ ├── vanta.json │ │ ├── victorops.json │ │ ├── windsurf.json │ │ ├── wolken.json │ │ ├── workday.json │ │ ├── xray.json │ │ └── zendesk.json │ ├── spec.json │ ├── vcsRepositoryQuery.gql │ ├── vcsRepositorySingleQuery.gql │ └── vcsRepositoryVulnerabilityQuery.gql │ ├── src │ ├── common │ │ └── types.ts │ ├── community │ │ └── hasura-backend.ts │ ├── converters │ │ ├── abstract-surveys │ │ │ ├── models.ts │ │ │ └── surveys.ts │ │ ├── agileaccelerator │ │ │ ├── agileaccelerator_types.ts │ │ │ ├── common.ts │ │ │ └── works.ts │ │ ├── airtable │ │ │ └── surveys.ts │ │ ├── asana │ │ │ ├── common.ts │ │ │ ├── project_tasks.ts │ │ │ ├── projects.ts │ │ │ ├── tags.ts │ │ │ ├── tasks.ts │ │ │ ├── tasks_full.ts │ │ │ └── users.ts │ │ ├── aws-cloudwatch-metrics │ │ │ └── metrics.ts │ │ ├── azure-repos │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── pull_requests.ts │ │ │ ├── repositories.ts │ │ │ └── users.ts │ │ ├── azure-tfvc │ │ │ ├── changesets.ts │ │ │ ├── common.ts │ │ │ └── projects.ts │ │ ├── azure-workitems │ │ │ ├── common.ts │ │ │ ├── iterations.ts │ │ │ ├── models.ts │ │ │ ├── projects.ts │ │ │ ├── users.ts │ │ │ └── workitems.ts │ │ ├── azureactivedirectory │ │ │ ├── common.ts │ │ │ ├── groups.ts │ │ │ ├── models.ts │ │ │ └── users.ts │ │ ├── azurepipeline │ │ │ ├── common.ts │ │ │ ├── pipelines.ts │ │ │ ├── releases.ts │ │ │ └── runs.ts │ │ ├── backlog │ │ │ ├── common.ts │ │ │ ├── issues.ts │ │ │ ├── models.ts │ │ │ ├── projects.ts │ │ │ └── users.ts │ │ ├── bamboohr │ │ │ ├── common.ts │ │ │ ├── models.ts │ │ │ └── users.ts │ │ ├── bigquery │ │ │ ├── common.ts │ │ │ └── deployments.ts │ │ ├── bitbucket-server │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── project_users.ts │ │ │ ├── projects.ts │ │ │ ├── pull_request_activities.ts │ │ │ ├── pull_request_diffs.ts │ │ │ ├── pull_requests.ts │ │ │ ├── repositories.ts │ │ │ ├── tags.ts │ │ │ └── users.ts │ │ ├── bitbucket │ │ │ ├── branches.ts │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── deployments.ts │ │ │ ├── pipeline_steps.ts │ │ │ ├── pipelines.ts │ │ │ ├── pull_requests_with_activities.ts │ │ │ ├── repositories.ts │ │ │ ├── tags.ts │ │ │ ├── workspace_users.ts │ │ │ └── workspaces.ts │ │ ├── buildkite │ │ │ ├── builds.ts │ │ │ ├── common.ts │ │ │ ├── organizations.ts │ │ │ └── pipelines.ts │ │ ├── circleci │ │ │ ├── common.ts │ │ │ ├── models.ts │ │ │ ├── pipelines.ts │ │ │ ├── projects.ts │ │ │ ├── tests.ts │ │ │ └── usage.ts │ │ ├── claude │ │ │ ├── claude_code_usage_report.ts │ │ │ ├── common.ts │ │ │ └── users.ts │ │ ├── clickup │ │ │ ├── common.ts │ │ │ ├── folders.ts │ │ │ ├── goals.ts │ │ │ ├── lists.ts │ │ │ ├── spaces.ts │ │ │ ├── status_histories.ts │ │ │ ├── tasks.ts │ │ │ └── workspaces.ts │ │ ├── common │ │ │ ├── azure-devops.ts │ │ │ ├── cicd.ts │ │ │ ├── common.ts │ │ │ ├── geo.ts │ │ │ ├── ims.ts │ │ │ ├── sec.ts │ │ │ └── vcs.ts │ │ ├── converter-registry.ts │ │ ├── converter.ts │ │ ├── cursor │ │ │ ├── ai_commit_metrics.ts │ │ │ ├── common.ts │ │ │ ├── daily_usage.ts │ │ │ ├── members.ts │ │ │ └── usage_events.ts │ │ ├── datadog │ │ │ ├── common.ts │ │ │ ├── incidents.ts │ │ │ ├── metrics.ts │ │ │ ├── service_level_objectives.ts │ │ │ └── users.ts │ │ ├── docker │ │ │ ├── common.ts │ │ │ └── tags.ts │ │ ├── faros-event │ │ │ ├── README.md │ │ │ ├── cd_events.ts │ │ │ ├── ci_events.ts │ │ │ ├── common.ts │ │ │ ├── types │ │ │ │ ├── cd.ts │ │ │ │ ├── ci.ts │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── keys.ts │ │ │ │ └── params.ts │ │ │ └── utils.ts │ │ ├── faros-feed │ │ │ └── faros_feed.ts │ │ ├── faros-feeds │ │ │ ├── faros_feed.ts │ │ │ └── model_names.ts │ │ ├── faros-graphdoctor │ │ │ ├── data_quality_tests.ts │ │ │ └── models.ts │ │ ├── faros-graphql │ │ │ └── faros_graph.ts │ │ ├── faros-org-import │ │ │ ├── README.md │ │ │ ├── common.ts │ │ │ ├── employees.ts │ │ │ ├── teams.ts │ │ │ ├── tools.ts │ │ │ └── types.ts │ │ ├── firehydrant │ │ │ ├── common.ts │ │ │ ├── incidents.ts │ │ │ ├── models.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ ├── github │ │ │ ├── assignees.ts │ │ │ ├── branches.ts │ │ │ ├── collaborators.ts │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── faros_artifacts.ts │ │ │ ├── faros_code_scanning_alerts.ts │ │ │ ├── faros_commits.ts │ │ │ ├── faros_copilot_seats.ts │ │ │ ├── faros_copilot_usage.ts │ │ │ ├── faros_dependabot_alerts.ts │ │ │ ├── faros_deployments.ts │ │ │ ├── faros_enterprise_copilot_seats.ts │ │ │ ├── faros_enterprise_copilot_usage.ts │ │ │ ├── faros_enterprise_copilot_user_usage.ts │ │ │ ├── faros_enterprise_team_memberships.ts │ │ │ ├── faros_enterprise_teams.ts │ │ │ ├── faros_enterprises.ts │ │ │ ├── faros_issue_comments.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_labels.ts │ │ │ ├── faros_organizations.ts │ │ │ ├── faros_outside_collaborators.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_pull_request_comments.ts │ │ │ ├── faros_pull_requests.ts │ │ │ ├── faros_releases.ts │ │ │ ├── faros_repositories.ts │ │ │ ├── faros_saml_sso_users.ts │ │ │ ├── faros_secret_scanning_alerts.ts │ │ │ ├── faros_tags.ts │ │ │ ├── faros_team_memberships.ts │ │ │ ├── faros_teams.ts │ │ │ ├── faros_users.ts │ │ │ ├── faros_workflow_jobs.ts │ │ │ ├── faros_workflow_runs.ts │ │ │ ├── faros_workflows.ts │ │ │ ├── issue_labels.ts │ │ │ ├── issue_milestones.ts │ │ │ ├── issues.ts │ │ │ ├── organizations.ts │ │ │ ├── projects.ts │ │ │ ├── pull_request_commits.ts │ │ │ ├── pull_request_stats.ts │ │ │ ├── pull_requests.ts │ │ │ ├── releases.ts │ │ │ ├── repositories.ts │ │ │ ├── review_comments.ts │ │ │ ├── reviews.ts │ │ │ ├── tags.ts │ │ │ ├── team_memberships.ts │ │ │ ├── teams.ts │ │ │ ├── users.ts │ │ │ ├── workflow_runs.ts │ │ │ └── workflows.ts │ │ ├── gitlab │ │ │ ├── branches.ts │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── faros_commits.ts │ │ │ ├── faros_deployments.ts │ │ │ ├── faros_epics.ts │ │ │ ├── faros_groups.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_iterations.ts │ │ │ ├── faros_jobs.ts │ │ │ ├── faros_merge_request_reviews.ts │ │ │ ├── faros_merge_requests.ts │ │ │ ├── faros_pipelines.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_releases.ts │ │ │ ├── faros_tags.ts │ │ │ ├── faros_users.ts │ │ │ ├── group_labels.ts │ │ │ ├── group_milestones.ts │ │ │ ├── groups.ts │ │ │ ├── issues.ts │ │ │ ├── jobs.ts │ │ │ ├── merge_request_commits.ts │ │ │ ├── merge_requests.ts │ │ │ ├── pipelines.ts │ │ │ ├── project_labels.ts │ │ │ ├── project_milestones.ts │ │ │ ├── projects.ts │ │ │ ├── releases.ts │ │ │ ├── tags.ts │ │ │ └── users.ts │ │ ├── googlecalendar │ │ │ ├── calendar_models.ts │ │ │ ├── calendars.ts │ │ │ ├── common.ts │ │ │ └── events.ts │ │ ├── googledrive │ │ │ ├── activity.ts │ │ │ ├── common.ts │ │ │ ├── workspace.ts │ │ │ └── workspace_users.ts │ │ ├── harness │ │ │ ├── common.ts │ │ │ └── executions.ts │ │ ├── hygieia │ │ │ └── collector_items.ts │ │ ├── jenkins │ │ │ ├── builds.ts │ │ │ ├── common.ts │ │ │ └── jobs.ts │ │ ├── jira │ │ │ ├── board_issues.ts │ │ │ ├── boards.ts │ │ │ ├── common.ts │ │ │ ├── epics.ts │ │ │ ├── faros_audit_events.ts │ │ │ ├── faros_board_issues.ts │ │ │ ├── faros_boards.ts │ │ │ ├── faros_issue_additional_fields.ts │ │ │ ├── faros_issue_pull_requests.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_project_version_issues.ts │ │ │ ├── faros_project_versions.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_sprint_reports.ts │ │ │ ├── faros_sprints.ts │ │ │ ├── faros_team_memberships.ts │ │ │ ├── faros_teams.ts │ │ │ ├── faros_users.ts │ │ │ ├── issue_fields.ts │ │ │ ├── issues.ts │ │ │ ├── project_versions.ts │ │ │ ├── projects.ts │ │ │ ├── pull_requests.ts │ │ │ ├── sprint_issues.ts │ │ │ ├── sprints.ts │ │ │ ├── users.ts │ │ │ └── workflow_statuses.ts │ │ ├── jsonata.ts │ │ ├── mock-data │ │ │ └── mock_data.ts │ │ ├── notion │ │ │ ├── common.ts │ │ │ ├── pages.ts │ │ │ └── users.ts │ │ ├── octopus │ │ │ ├── common.ts │ │ │ ├── deployments.ts │ │ │ └── releases.ts │ │ ├── okta │ │ │ ├── common.ts │ │ │ ├── models.ts │ │ │ └── users.ts │ │ ├── opsgenie │ │ │ ├── common.ts │ │ │ ├── incidents.ts │ │ │ ├── models.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ ├── pagerduty │ │ │ ├── common.ts │ │ │ ├── incident_log_entries.ts │ │ │ ├── incidents.ts │ │ │ ├── priorities_resource.ts │ │ │ ├── services.ts │ │ │ └── users.ts │ │ ├── phabricator │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── projects.ts │ │ │ ├── repositories.ts │ │ │ ├── revision_diffs.ts │ │ │ ├── revisions.ts │ │ │ ├── transactions.ts │ │ │ └── users.ts │ │ ├── semaphoreci │ │ │ ├── common.ts │ │ │ ├── models.ts │ │ │ ├── pipelines.ts │ │ │ └── projects.ts │ │ ├── servicenow │ │ │ ├── common.ts │ │ │ ├── incidents.ts │ │ │ └── users.ts │ │ ├── sheets │ │ │ └── surveys.ts │ │ ├── shortcut │ │ │ ├── common.ts │ │ │ ├── epics.ts │ │ │ ├── iterations.ts │ │ │ ├── members.ts │ │ │ ├── models.ts │ │ │ ├── projects.ts │ │ │ └── stories.ts │ │ ├── squadcast │ │ │ ├── common.ts │ │ │ ├── events.ts │ │ │ ├── incidents.ts │ │ │ ├── services.ts │ │ │ └── users.ts │ │ ├── statuspage │ │ │ ├── common.ts │ │ │ ├── component_groups.ts │ │ │ ├── component_uptimes.ts │ │ │ ├── components.ts │ │ │ ├── incidents.ts │ │ │ ├── pages.ts │ │ │ └── users.ts │ │ ├── team-history │ │ │ └── team_membership_history.ts │ │ ├── testrails │ │ │ ├── cases.ts │ │ │ ├── common.ts │ │ │ ├── results.ts │ │ │ ├── runs.ts │ │ │ └── suites.ts │ │ ├── trello │ │ │ ├── actions.ts │ │ │ ├── boards.ts │ │ │ ├── cards.ts │ │ │ ├── common.ts │ │ │ ├── labels.ts │ │ │ ├── models.ts │ │ │ └── users.ts │ │ ├── tromzo │ │ │ └── findings.ts │ │ ├── vanta │ │ │ ├── README.md │ │ │ ├── common.ts │ │ │ ├── utils.ts │ │ │ ├── vulnerabilities.ts │ │ │ └── vulnerability_remediations.ts │ │ ├── victorops │ │ │ ├── common.ts │ │ │ ├── incidents.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ ├── windsurf │ │ │ ├── autocomplete_analytics.ts │ │ │ ├── cascade_lines_analytics.ts │ │ │ ├── cascade_runs_analytics.ts │ │ │ ├── chat_analytics.ts │ │ │ ├── common.ts │ │ │ ├── pcw_analytics.ts │ │ │ └── user_page_analytics.ts │ │ ├── wolken │ │ │ ├── common.ts │ │ │ ├── configuration_items.ts │ │ │ ├── incidents.ts │ │ │ └── users.ts │ │ ├── workday │ │ │ ├── README.md │ │ │ ├── customreports.ts │ │ │ └── models.ts │ │ ├── xray │ │ │ ├── common.ts │ │ │ ├── test_executions.ts │ │ │ ├── test_plan_tests.ts │ │ │ ├── test_plans.ts │ │ │ ├── test_runs.ts │ │ │ └── tests.ts │ │ ├── zendesk │ │ │ ├── common.ts │ │ │ ├── groups.ts │ │ │ ├── satisfaction_ratings.ts │ │ │ ├── tags.ts │ │ │ ├── ticket_fields.ts │ │ │ ├── ticket_metrics.ts │ │ │ ├── tickets.ts │ │ │ └── users.ts │ │ └── zephyr │ │ │ ├── common.ts │ │ │ ├── test_cycles.ts │ │ │ └── test_executions.ts │ ├── destination-logger.ts │ ├── destination-runner.ts │ ├── destination.ts │ ├── index.ts │ ├── record-redactor.ts │ ├── sync.ts │ └── tsconfig.json │ └── test │ ├── __snapshots__ │ └── index.test.ts.snap │ ├── converter-registry.test.ts │ ├── converters │ ├── CLAUDE.md │ ├── __snapshots__ │ │ ├── abstract-surveys.test.ts.snap │ │ ├── agileaccelerator.test.ts.snap │ │ ├── asana.test.ts.snap │ │ ├── aws-cloudwatch-metrics.test.ts.snap │ │ ├── azure-repos.test.ts.snap │ │ ├── azure-tfvc.test.ts.snap │ │ ├── azure-workitems.test.ts.snap │ │ ├── azureactivedirectory.test.ts.snap │ │ ├── azurepipeline.test.ts.snap │ │ ├── backlog.test.ts.snap │ │ ├── bamboohr.test.ts.snap │ │ ├── bigquery.test.ts.snap │ │ ├── bitbucket-server.test.ts.snap │ │ ├── bitbucket.test.ts.snap │ │ ├── buildkite.test.ts.snap │ │ ├── circleci.test.ts.snap │ │ ├── claude.test.ts.snap │ │ ├── clickup.test.ts.snap │ │ ├── cursor.test.ts.snap │ │ ├── datadog.test.ts.snap │ │ ├── docker.test.ts.snap │ │ ├── faros-event.test.ts.snap │ │ ├── faros-org-import.test.ts.snap │ │ ├── faros_feeds.test.ts.snap │ │ ├── faros_github.test.ts.snap │ │ ├── faros_gitlab.test.ts.snap │ │ ├── faros_graphdoctor.test.ts.snap │ │ ├── faros_jira.test.ts.snap │ │ ├── firehydrant.test.ts.snap │ │ ├── geo.test.ts.snap │ │ ├── github.test.ts.snap │ │ ├── gitlab.test.ts.snap │ │ ├── googlecalendar.test.ts.snap │ │ ├── googledrive.test.ts.snap │ │ ├── harness.test.ts.snap │ │ ├── hygieia.test.ts.snap │ │ ├── jenkins.test.ts.snap │ │ ├── jira.test.ts.snap │ │ ├── notion.test.ts.snap │ │ ├── octopus.test.ts.snap │ │ ├── okta.test.ts.snap │ │ ├── opsgenie.test.ts.snap │ │ ├── pagerduty.test.ts.snap │ │ ├── phabricator.test.ts.snap │ │ ├── semaphoreci.test.ts.snap │ │ ├── servicenow.test.ts.snap │ │ ├── sheets.test.ts.snap │ │ ├── shortcut.test.ts.snap │ │ ├── squadcast.test.ts.snap │ │ ├── statuspage.test.ts.snap │ │ ├── team-history.test.ts.snap │ │ ├── testrails.test.ts.snap │ │ ├── trello.test.ts.snap │ │ ├── tromzo.test.ts.snap │ │ ├── vanta.test.ts.snap │ │ ├── victorops.test.ts.snap │ │ ├── windsurf.test.ts.snap │ │ ├── wolken.test.ts.snap │ │ ├── workday.test.ts.snap │ │ ├── xray.test.ts.snap │ │ ├── zendesk.test.ts.snap │ │ └── zephyr.test.ts.snap │ ├── abstract-surveys.test.ts │ ├── agileaccelerator.test.ts │ ├── asana.test.ts │ ├── aws-cloudwatch-metrics.test.ts │ ├── azure-repos.test.ts │ ├── azure-tfvc.test.ts │ ├── azure-workitems.test.ts │ ├── azureactivedirectory.test.ts │ ├── azurepipeline.test.ts │ ├── backlog.test.ts │ ├── bamboohr.test.ts │ ├── bigquery.test.ts │ ├── bitbucket-server.test.ts │ ├── bitbucket.test.ts │ ├── buildkite.test.ts │ ├── circleci.test.ts │ ├── claude.test.ts │ ├── clickup.test.ts │ ├── common.test.ts │ ├── converter.test.ts │ ├── cursor.test.ts │ ├── data.ts │ ├── datadog.test.ts │ ├── docker.test.ts │ ├── faros-event.test.ts │ ├── faros-org-import.test.ts │ ├── faros_feeds.test.ts │ ├── faros_github.test.ts │ ├── faros_gitlab.test.ts │ ├── faros_graphdoctor.test.ts │ ├── faros_jira.test.ts │ ├── firehydrant.test.ts │ ├── geo.test.ts │ ├── github.test.ts │ ├── gitlab.test.ts │ ├── googlecalendar.test.ts │ ├── googledrive.test.ts │ ├── harness.test.ts │ ├── hygieia.test.ts │ ├── jenkins.test.ts │ ├── jira.test.ts │ ├── jsonata.test.ts │ ├── notion.test.ts │ ├── octopus.test.ts │ ├── okta.test.ts │ ├── opsgenie.test.ts │ ├── pagerduty.test.ts │ ├── phabricator.test.ts │ ├── semaphoreci.test.ts │ ├── servicenow.test.ts │ ├── sheets.test.ts │ ├── shortcut.test.ts │ ├── squadcast.test.ts │ ├── statuspage.test.ts │ ├── team-history.test.ts │ ├── testrails.test.ts │ ├── trello.test.ts │ ├── tromzo.test.ts │ ├── vanta.test.ts │ ├── victorops.test.ts │ ├── windsurf.test.ts │ ├── wolken.test.ts │ ├── workday.test.ts │ ├── xray.test.ts │ ├── zendesk.test.ts │ └── zephyr.test.ts │ ├── index.test.ts │ ├── record-redactor.test.ts │ ├── resources │ ├── abstract-surveys │ │ └── surveys │ │ │ ├── all-streams.log │ │ │ └── catalog.json │ ├── agileaccelerator │ │ ├── all-streams.log │ │ └── catalog.json │ ├── asana │ │ ├── all-streams.log │ │ └── catalog.json │ ├── aws-cloudwatch-metrics │ │ ├── all-streams.log │ │ ├── catalog.json │ │ ├── config.json │ │ └── input.json │ ├── azure-repos │ │ ├── all-streams.log │ │ └── catalog.json │ ├── azure-tfvc │ │ ├── all-streams.log │ │ └── catalog.json │ ├── azure-workitems │ │ ├── all-streams.log │ │ └── catalog.json │ ├── azureactivedirectory │ │ ├── all-streams.log │ │ └── catalog.json │ ├── azurepipeline │ │ ├── all-streams.log │ │ └── catalog.json │ ├── backlog │ │ ├── all-streams.log │ │ └── catalog.json │ ├── bamboohr │ │ ├── all-streams.log │ │ └── catalog.json │ ├── bigquery │ │ ├── all-streams.log │ │ └── catalog.json │ ├── bitbucket-server │ │ ├── all-streams.log │ │ └── catalog.json │ ├── bitbucket │ │ ├── all-streams.log │ │ ├── catalog.json │ │ ├── pull_requests_diff_stats.log │ │ └── pull_requests_with_activities.log │ ├── buildkite │ │ ├── all-streams.log │ │ └── catalog.json │ ├── circleci │ │ ├── all-streams.log │ │ ├── catalog.json │ │ └── usage-export.csv │ ├── claude │ │ ├── all-streams.json │ │ └── catalog.json │ ├── clickup │ │ ├── all-streams.log │ │ └── catalog.json │ ├── cursor │ │ ├── all-streams.log │ │ └── catalog.json │ ├── datadog │ │ ├── all-streams.log │ │ └── catalog.json │ ├── docker │ │ ├── all-streams.log │ │ └── catalog.json │ ├── faros-event │ │ ├── all-streams.log │ │ └── catalog.json │ ├── faros-org-import │ │ ├── all-streams.log │ │ └── catalog.json │ ├── faros_feeds │ │ ├── all-streams.log │ │ ├── catalog.json │ │ └── schema.json │ ├── faros_github │ │ ├── all-streams.log │ │ └── catalog.json │ ├── faros_gitlab │ │ ├── all-streams.json │ │ └── catalog.json │ ├── faros_graphdoctor │ │ ├── all-streams.log │ │ └── catalog.json │ ├── faros_jira │ │ ├── all-streams.log │ │ ├── catalog.json │ │ ├── faros_issues.log │ │ ├── with-source-qualifier.log │ │ ├── with-use-projects-as-boards.log │ │ └── with_update_additional_fields.log │ ├── firehydrant │ │ ├── all-streams.log │ │ └── catalog.json │ ├── github │ │ ├── all-streams.log │ │ ├── catalog-raw.json │ │ ├── catalog.json │ │ ├── pg-raw.log │ │ └── streams.log │ ├── gitlab │ │ ├── all-streams.log │ │ └── catalog.json │ ├── googlecalendar │ │ ├── all-streams.log │ │ └── catalog.json │ ├── googledrive │ │ ├── all-streams.log │ │ └── catalog.json │ ├── harness │ │ ├── all-streams.log │ │ └── catalog.json │ ├── hasura-ce-schema.json │ ├── hasura-schema.json │ ├── hygieia │ │ ├── all-streams.log │ │ └── catalog.json │ ├── jenkins │ │ ├── all-streams.log │ │ └── catalog.json │ ├── jira │ │ ├── all-streams.log │ │ └── catalog.json │ ├── notion │ │ ├── all-streams.log │ │ └── catalog.json │ ├── octopus │ │ ├── all-streams.log │ │ └── catalog.json │ ├── okta │ │ ├── all-streams.log │ │ └── catalog.json │ ├── opsgenie │ │ ├── all-streams.log │ │ └── catalog.json │ ├── pagerduty │ │ ├── all-streams.log │ │ └── catalog.json │ ├── phabricator │ │ ├── all-streams.log │ │ └── catalog.json │ ├── semaphoreci │ │ ├── all-streams.log │ │ └── catalog.json │ ├── servicenow │ │ ├── all-streams.log │ │ └── catalog.json │ ├── sheets │ │ └── surveys │ │ │ ├── all-streams.log │ │ │ └── catalog.json │ ├── shortcut │ │ ├── all-streams.log │ │ └── catalog.json │ ├── squadcast │ │ ├── all-streams.log │ │ └── catalog.json │ ├── statuspage │ │ ├── all-streams.log │ │ └── catalog.json │ ├── team-history │ │ ├── all-streams.log │ │ └── catalog.json │ ├── testrails │ │ ├── all-streams.log │ │ └── catalog.json │ ├── trello │ │ ├── all-streams.log │ │ └── catalog.json │ ├── tromzo │ │ ├── all-streams.log │ │ └── catalog.json │ ├── vanta │ │ ├── catalog.json │ │ ├── mockQueryNamesToObjects.json │ │ ├── vulnerability_records.log │ │ └── vulnerability_remediation_records.log │ ├── victorops │ │ ├── all-streams.log │ │ └── catalog.json │ ├── windsurf │ │ ├── all-streams.json │ │ └── catalog.json │ ├── wolken │ │ ├── catalog.json │ │ ├── configuration_items.log │ │ ├── incidents.log │ │ ├── incidents_configuration_items.log │ │ └── users.log │ ├── workday │ │ ├── catalog.json │ │ ├── geocode_lookup.json │ │ ├── records_output.json │ │ ├── records_v1.json │ │ ├── records_v3.json │ │ ├── stream_many_records_per_employee.log │ │ ├── stream_v1.log │ │ ├── stream_v3.log │ │ ├── stream_v4.log │ │ ├── stream_v5_cycles.log │ │ ├── stream_v6.log │ │ ├── stream_v7.log │ │ └── test_fields_inputs.json │ ├── xray │ │ ├── all-streams.log │ │ └── catalog.json │ ├── zendesk │ │ ├── all-streams.log │ │ └── catalog.json │ └── zephyr │ │ ├── all-streams.log │ │ └── catalog.json │ ├── sync.test.ts │ └── tsconfig.json ├── docker └── entrypoint.sh ├── docs └── specs │ └── bucketing_round_robin_spec.md ├── faros-airbyte-cdk ├── README.md ├── package.json ├── src │ ├── connector.ts │ ├── destinations │ │ ├── destination-runner.ts │ │ └── destination.ts │ ├── errors.ts │ ├── help.ts │ ├── index.ts │ ├── logger.ts │ ├── prompts.ts │ ├── protocol.ts │ ├── runner.ts │ ├── sources │ │ ├── source-base.ts │ │ ├── source-logger.ts │ │ ├── source-runner.ts │ │ ├── source.ts │ │ └── streams │ │ │ └── stream-base.ts │ ├── spec-loader.ts │ ├── sync-message-tables.ts │ ├── tsconfig.json │ └── utils.ts └── test │ ├── __snapshots__ │ ├── help.test.ts.snap │ ├── index.test.ts.snap │ ├── spec-loader.test.ts.snap │ └── utils.test.ts.snap │ ├── help.test.ts │ ├── index.test.ts │ ├── logger.test.ts │ ├── prompts.test.ts │ ├── protocol.test.ts │ ├── resources │ ├── help │ │ ├── array-of-objects.json │ │ ├── one-of-airbyte-hidden.json │ │ ├── one-of-deprecated.json │ │ ├── one-of.json │ │ ├── order.json │ │ └── simple-spec.json │ ├── inner-spec.json │ ├── spec-bad-ref.json │ └── spec.json │ ├── sources │ ├── source-base.test.ts │ ├── source-runner.test.ts │ └── streams │ │ └── stream-base.test.ts │ ├── spec-loader.test.ts │ ├── tsconfig.json │ └── utils.test.ts ├── faros-airbyte-common ├── README.md ├── package.json ├── resources │ ├── common │ │ └── queries │ │ │ ├── faros-tms-task-board-options.gql │ │ │ ├── faros-vcs-repository-options.gql │ │ │ └── vcs-user-tool.gql │ └── github │ │ ├── queries │ │ ├── assignee-fields-fragment.gql │ │ ├── commit-fields-fragment.gql │ │ ├── commits-query.gql │ │ ├── deployments-query.gql │ │ ├── enterprise-query.gql │ │ ├── files-fragment.gql │ │ ├── issues-query.gql │ │ ├── labels-fragment.gql │ │ ├── labels-query.gql │ │ ├── list-members-query.gql │ │ ├── list-saml-sso-users-query.gql │ │ ├── projects-query.gql │ │ ├── pull-request-review-requests-query.gql │ │ ├── pull-request-reviews-query.gql │ │ ├── pull-requests-cursor-query.gql │ │ ├── pull-requests-query.gql │ │ ├── repository-tags-query.gql │ │ ├── review-fields-fragment.gql │ │ ├── review-request-fields-fragment.gql │ │ ├── review-requests-fragment.gql │ │ └── reviews-fragment.gql │ │ └── schemas │ │ ├── schema.docs-enterprise.3.10.graphql │ │ ├── schema.docs-enterprise.3.11.graphql │ │ ├── schema.docs-enterprise.3.12.graphql │ │ ├── schema.docs-enterprise.3.13.graphql │ │ └── schema.docs.graphql ├── src │ ├── azure-devops │ │ ├── azure-devops.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── bitbucket-server │ │ └── index.ts │ ├── bitbucket │ │ ├── index.ts │ │ └── types.ts │ ├── circleci │ │ ├── index.ts │ │ └── types.ts │ ├── claude │ │ ├── index.ts │ │ └── types.ts │ ├── clickup │ │ ├── index.ts │ │ └── types.ts │ ├── common │ │ ├── bucket-set.ts │ │ ├── bucketing.ts │ │ ├── index.ts │ │ ├── vcs-filter.ts │ │ └── vcs-user-tool.ts │ ├── cursor │ │ ├── index.ts │ │ └── types.ts │ ├── github │ │ ├── codegen.ts │ │ ├── generated │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── queries.ts │ │ └── types.ts │ ├── gitlab │ │ ├── index.ts │ │ └── types.ts │ ├── googledrive │ │ ├── index.ts │ │ └── types.ts │ ├── jira │ │ ├── index.ts │ │ └── types.ts │ ├── tsconfig.json │ ├── vanta │ │ ├── index.ts │ │ └── types.ts │ ├── windsurf │ │ ├── index.ts │ │ └── types.ts │ ├── wolken │ │ ├── index.ts │ │ └── types.ts │ └── xray │ │ ├── index.ts │ │ └── types.ts └── test │ ├── azure-devops │ ├── __snapshots__ │ │ └── azure-devops.test.ts.snap │ └── azure-devops.test.ts │ ├── common │ ├── __snapshots__ │ │ └── index.test.ts.snap │ ├── bucket-set.test.ts │ ├── bucketing.test.ts │ └── index.test.ts │ ├── github │ └── queries.test.ts │ ├── index.test.ts │ ├── resources │ └── projects.json │ └── tsconfig.json ├── faros-airbyte-testing-tools ├── package.json └── src │ ├── cli.ts │ ├── destination-testing-tools.ts │ ├── destination-utils.ts │ ├── index.ts │ ├── testing-tools.ts │ └── tsconfig.json ├── local ├── Dockerfile └── README.md ├── package.json ├── scripts ├── publish-connector.sh ├── sign-image-with-cosign.sh └── source-acceptance-test.sh ├── source.json ├── sources ├── README.md ├── agileaccelerator-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── works.json │ │ └── spec.json │ ├── src │ │ ├── agileaccelerator │ │ │ ├── agileaccelerator.ts │ │ │ ├── query.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── works.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ └── works.json ├── asana-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── project_tasks.json │ │ │ ├── projects.json │ │ │ ├── stories.json │ │ │ ├── tags.json │ │ │ ├── tasks.json │ │ │ ├── team_memberships.json │ │ │ ├── teams.json │ │ │ ├── users.json │ │ │ └── workspaces.json │ │ └── spec.json │ ├── src │ │ ├── asana.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── project_tasks.ts │ │ │ ├── projects.ts │ │ │ ├── tags.ts │ │ │ ├── tasks.ts │ │ │ ├── tasks_full.ts │ │ │ ├── users.ts │ │ │ └── workspaces.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json ├── aws-cloudwatch-metrics-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── metrics.json │ │ └── spec.json │ ├── src │ │ ├── cloudwatch.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── metrics.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json ├── azure-repos-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── commits.json │ │ │ ├── pullrequests.json │ │ │ ├── repositories.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── azure-repos.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── pullrequests.ts │ │ │ ├── repositories.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── branches.json │ │ ├── commits.json │ │ ├── full_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── pullrequests.json │ │ ├── repositories.json │ │ └── users.json ├── azure-tfvc-source │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── changesets.json │ │ │ └── projects.json │ │ └── spec.json │ ├── src │ │ ├── azure-tfvc.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── changesets.ts │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ └── projects.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── branches.json │ │ ├── changesets.json │ │ ├── changesets_full.json │ │ └── projects.json ├── azure-workitems-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── board.json │ │ │ ├── iterations.json │ │ │ ├── project.json │ │ │ ├── users.json │ │ │ └── workitems.json │ │ └── spec.json │ ├── src │ │ ├── azure-workitems.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── iterations.ts │ │ │ ├── projects.ts │ │ │ ├── users.ts │ │ │ └── workitems.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── comments.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── iterations.json │ │ ├── iterations_node_3.json │ │ ├── iterations_root.json │ │ ├── projects.json │ │ ├── team_members.json │ │ ├── teams.json │ │ ├── users.json │ │ ├── workitem_ids.json │ │ ├── workitem_states.json │ │ ├── workitem_updates.json │ │ └── workitems.json ├── azureactivedirectory-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── groups.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── azureactivedirectory.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── groups.ts │ │ │ ├── index.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── full_configured_catalog.json │ │ ├── groups.json │ │ ├── invalid_config.json │ │ └── users.json ├── azurepipeline-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── builds.json │ │ │ ├── pipelines.json │ │ │ ├── releases.json │ │ │ └── runs.json │ │ └── spec.json │ ├── src │ │ ├── azurepipeline.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── pipelines.ts │ │ │ ├── releases.ts │ │ │ └── runs.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── builds.json │ │ ├── builds_coverage.json │ │ ├── builds_eligible_for_coverage.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── pipelines.json │ │ ├── releases.json │ │ └── runs.json ├── backlog-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── issues.json │ │ │ ├── projects.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── backlog.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ ├── issues.ts │ │ │ ├── projects.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── issues.json │ │ ├── projects.json │ │ └── users.json ├── bamboohr-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── bamboohr.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── fields_input.json │ │ ├── full_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── user_details_input.json │ │ ├── users.json │ │ └── users_input.json ├── bitbucket-server-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── more-routes.json │ │ ├── schemas │ │ │ ├── commits.json │ │ │ ├── project_users.json │ │ │ ├── projects.json │ │ │ ├── pull_request_activities.json │ │ │ ├── pull_request_diffs.json │ │ │ ├── pull_requests.json │ │ │ ├── repositories.json │ │ │ ├── tags.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── bitbucket-server │ │ │ ├── index.ts │ │ │ ├── more-endpoint-methods.ts │ │ │ └── project-repo-filter.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── project_users.ts │ │ │ ├── projects.ts │ │ │ ├── pull_request_activities.ts │ │ │ ├── pull_request_diffs.ts │ │ │ ├── pull_request_substream.ts │ │ │ ├── pull_requests.ts │ │ │ ├── repositories.ts │ │ │ ├── tags.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ ├── project-repo-filter.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── bitbucket-source │ ├── README.md │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── branches.json │ │ │ ├── commits.json │ │ │ ├── deployments.json │ │ │ ├── issues.json │ │ │ ├── pipeline_steps.json │ │ │ ├── pipelines.json │ │ │ ├── pull_requests_with_activities.json │ │ │ ├── repositories.json │ │ │ ├── tags.json │ │ │ ├── workspace_users.json │ │ │ └── workspaces.json │ │ └── spec.json │ ├── src │ │ ├── bitbucket.ts │ │ ├── commit-hash-matcher.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── branches.ts │ │ │ ├── commits.ts │ │ │ ├── common.ts │ │ │ ├── deployments.ts │ │ │ ├── index.ts │ │ │ ├── pipeline_steps.ts │ │ │ ├── pipelines.ts │ │ │ ├── pull_requests_with_activities.ts │ │ │ ├── repositories.ts │ │ │ ├── tags.ts │ │ │ ├── workspace_users.ts │ │ │ └── workspaces.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ └── workspace-repo-filter.ts │ ├── test │ │ ├── __snapshots__ │ │ │ ├── index.test.ts.snap │ │ │ └── workspace-repo-filter.test.ts.snap │ │ ├── commit-hash-matcher.test.ts │ │ ├── index.test.ts │ │ ├── resources │ │ │ ├── commits │ │ │ │ ├── catalog.json │ │ │ │ └── commits.json │ │ │ ├── config.json │ │ │ ├── pr_merge_commit_sha_resolution │ │ │ │ ├── catalog.json │ │ │ │ ├── commits.json │ │ │ │ ├── config_run_mode_minimum.json │ │ │ │ └── pull_requests.json │ │ │ ├── pull_requests_with_activities │ │ │ │ ├── activities.json │ │ │ │ ├── catalog.json │ │ │ │ ├── config_run_mode_full.json │ │ │ │ ├── config_run_mode_minimum.json │ │ │ │ ├── diff_stat.json │ │ │ │ └── pull_requests.json │ │ │ ├── repositories │ │ │ │ ├── catalog.json │ │ │ │ ├── config-bucketing.json │ │ │ │ ├── repositories.json │ │ │ │ └── repository.json │ │ │ ├── tags │ │ │ │ ├── catalog.json │ │ │ │ └── tags.json │ │ │ ├── workspace_users │ │ │ │ ├── catalog.json │ │ │ │ └── workspace_users.json │ │ │ └── workspaces │ │ │ │ ├── catalog.json │ │ │ │ ├── workspace.json │ │ │ │ └── workspaces.json │ │ ├── tsconfig.json │ │ ├── utils.ts │ │ └── workspace-repo-filter.test.ts │ └── test_files │ │ ├── abnormal_state.json │ │ ├── branches-response.json │ │ ├── branches.json │ │ ├── deployments-response.json │ │ ├── deployments.json │ │ ├── environments.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── pipelineSteps-response.json │ │ ├── pipelineSteps.json │ │ ├── pipelines-response.json │ │ ├── pipelines.json │ │ ├── repositories-response.json │ │ └── repositories.json ├── buildkite-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── gql │ │ │ ├── pipeline-builds-query.gql │ │ │ └── pipelines-query.gql │ │ ├── schemas │ │ │ ├── builds.json │ │ │ ├── jobs.json │ │ │ ├── organizations.json │ │ │ └── pipelines.json │ │ └── spec.json │ ├── src │ │ ├── buildkite │ │ │ └── buildkite.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── builds.ts │ │ │ ├── index.ts │ │ │ ├── organizations.ts │ │ │ └── pipelines.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── builds.json │ │ ├── builds_input.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── organizations.json │ │ ├── pipelines.json │ │ ├── pipelines_all.json │ │ └── pipelines_input.json ├── circleci-source │ ├── README.md │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── pipelines.json │ │ │ ├── projects.json │ │ │ ├── tests.json │ │ │ └── usage.json │ │ └── spec.json │ ├── src │ │ ├── circleci │ │ │ └── circleci.ts │ │ ├── faros │ │ │ └── faros.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── pipelines.ts │ │ │ ├── projects.ts │ │ │ ├── tests.ts │ │ │ └── usage.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ ├── streams │ │ │ └── usage.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── jobs_input.json │ │ ├── pipeline_input.json │ │ ├── pipelines.json │ │ ├── pipelines_input.json │ │ ├── pipelines_state.json │ │ ├── projects.json │ │ ├── tests.json │ │ ├── tests_input.json │ │ └── workflows_input.json ├── claude-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── claudeCodeUsageReport.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── claude.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── claude_code_usage_report.ts │ │ │ └── users.ts │ │ ├── tsconfig.json │ │ └── types.ts │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ ├── claude_code_usage_report │ │ │ ├── catalog.json │ │ │ └── claude_code_usage_report.json │ │ ├── config.json │ │ └── users │ │ │ ├── catalog.json │ │ │ └── users.json │ │ └── tsconfig.json ├── clickup-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── folders.json │ │ │ ├── goals.json │ │ │ ├── lists.json │ │ │ ├── spaces.json │ │ │ ├── status_histories.json │ │ │ ├── tasks.json │ │ │ └── workspaces.json │ │ └── spec.json │ ├── src │ │ ├── clickup.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── folders.ts │ │ │ ├── goals.ts │ │ │ ├── lists.ts │ │ │ ├── spaces.ts │ │ │ ├── status_histories.ts │ │ │ ├── tasks.ts │ │ │ └── workspaces.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── cursor-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── aiCommitMetrics.json │ │ │ ├── dailyUsage.json │ │ │ ├── members.json │ │ │ └── usageEvents.json │ │ └── spec.json │ ├── src │ │ ├── cursor.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── ai_commit_metrics.ts │ │ │ ├── common.ts │ │ │ ├── daily_usage.ts │ │ │ ├── members.ts │ │ │ └── usage_events.ts │ │ ├── tsconfig.json │ │ └── types.ts │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ ├── ai_commit_metrics │ │ │ ├── ai_commit_metrics.json │ │ │ └── catalog.json │ │ ├── config.json │ │ ├── daily_usage │ │ │ ├── catalog.json │ │ │ └── daily_usage.json │ │ ├── members │ │ │ ├── catalog.json │ │ │ └── members.json │ │ └── usage_events │ │ │ ├── catalog.json │ │ │ └── usage_events.json │ │ └── tsconfig.json ├── customer-io-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── campaign-actions.json │ │ │ ├── campaigns.json │ │ │ └── newsletters.json │ │ └── spec.json │ ├── src │ │ ├── customer-io │ │ │ ├── customer-io.ts │ │ │ └── typings.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── campaign-actions.ts │ │ │ ├── campaigns.ts │ │ │ ├── index.ts │ │ │ └── newsletters.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── datadog-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── incident.json │ │ │ ├── metric.json │ │ │ ├── slo.json │ │ │ └── user.json │ │ └── spec.json │ ├── src │ │ ├── datadog.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── metrics.ts │ │ │ ├── service_level_objectives.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── future_state.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── metrics.json │ │ ├── slos.json │ │ └── users.json ├── docker-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── tags.json │ │ └── spec.json │ ├── src │ │ ├── docker.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── tags.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ └── tags.json ├── example-source │ ├── acceptance-test-config.yml │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── builds.json │ │ └── spec.json │ ├── src │ │ ├── config.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── builds.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ └── spec.json ├── faros-graphdoctor-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── data-quality-tests.json │ │ └── spec.json │ ├── src │ │ ├── graphdoctor │ │ │ ├── constants.ts │ │ │ ├── dataSummary.ts │ │ │ ├── duplicateNames.ts │ │ │ ├── graphdoctor.ts │ │ │ ├── index.ts │ │ │ ├── models.ts │ │ │ ├── timeTests.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── streams │ │ │ └── data-quality-tests.ts │ │ └── tsconfig.json │ ├── test │ │ ├── helpers.ts │ │ ├── index.test.ts │ │ ├── resources │ │ │ ├── dataRecencyQueryResult.json │ │ │ ├── mockQueryToObject.json │ │ │ ├── queryTitleToResponse.json │ │ │ └── zScoreQueryResult.json │ │ └── tsconfig.json │ └── test_files │ │ ├── incremental_configured_catalog.json │ │ ├── sample_catalog.json │ │ └── sample_config.json ├── faros-graphql-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── faros_graph.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── nodes.ts │ │ ├── streams │ │ │ ├── faros-graph.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── helpers.ts │ │ ├── index.test.ts │ │ ├── nodes.test.ts │ │ ├── resources │ │ └── keys.avsc │ │ └── tsconfig.json ├── files-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── files.json │ │ └── spec.json │ ├── src │ │ ├── files-reader.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── files.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── tsconfig.json ├── firehydrant-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── incidents.json │ │ │ ├── teams.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── firehydrant │ │ │ ├── firehydrant.ts │ │ │ └── models.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── teams.json │ │ └── users.json ├── github-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── farosArtifacts.json │ │ │ ├── farosCodeScanningAlerts.json │ │ │ ├── farosCommits.json │ │ │ ├── farosCopilotSeats.json │ │ │ ├── farosCopilotUsage.json │ │ │ ├── farosDependabotAlerts.json │ │ │ ├── farosDeployments.json │ │ │ ├── farosEnterpriseCopilotSeats.json │ │ │ ├── farosEnterpriseCopilotUsage.json │ │ │ ├── farosEnterpriseCopilotUserUsage.json │ │ │ ├── farosEnterpriseTeamMemberships.json │ │ │ ├── farosEnterpriseTeams.json │ │ │ ├── farosEnterprises.json │ │ │ ├── farosIssueComments.json │ │ │ ├── farosIssues.json │ │ │ ├── farosLabels.json │ │ │ ├── farosOrganizations.json │ │ │ ├── farosOutsideCollaborators.json │ │ │ ├── farosProjects.json │ │ │ ├── farosPullRequestComments.json │ │ │ ├── farosPullRequests.json │ │ │ ├── farosReleases.json │ │ │ ├── farosRepositories.json │ │ │ ├── farosSamlSsoUsers.json │ │ │ ├── farosSecretScanningAlerts.json │ │ │ ├── farosTags.json │ │ │ ├── farosTeamMemberships.json │ │ │ ├── farosTeams.json │ │ │ ├── farosUsers.json │ │ │ ├── farosWorkflowJobs.json │ │ │ ├── farosWorkflowRuns.json │ │ │ └── farosWorkflows.json │ │ └── spec.json │ ├── src │ │ ├── github.ts │ │ ├── index.ts │ │ ├── octokit.ts │ │ ├── org-repo-filter.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── faros_artifacts.ts │ │ │ ├── faros_code_scanning_alerts.ts │ │ │ ├── faros_commits.ts │ │ │ ├── faros_copilot_seats.ts │ │ │ ├── faros_copilot_usage.ts │ │ │ ├── faros_dependabot_alerts.ts │ │ │ ├── faros_deployments.ts │ │ │ ├── faros_enterprise_copilot_seats.ts │ │ │ ├── faros_enterprise_copilot_usage.ts │ │ │ ├── faros_enterprise_copilot_user_usage.ts │ │ │ ├── faros_enterprise_team_memberships.ts │ │ │ ├── faros_enterprise_teams.ts │ │ │ ├── faros_enterprises.ts │ │ │ ├── faros_issue_comments.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_labels.ts │ │ │ ├── faros_organizations.ts │ │ │ ├── faros_outside_collaborators.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_pull_request_comments.ts │ │ │ ├── faros_pull_requests.ts │ │ │ ├── faros_releases.ts │ │ │ ├── faros_repositories.ts │ │ │ ├── faros_saml_sso_users.ts │ │ │ ├── faros_secret_scanning_alerts.ts │ │ │ ├── faros_tags.ts │ │ │ ├── faros_team_memberships.ts │ │ │ ├── faros_teams.ts │ │ │ ├── faros_users.ts │ │ │ ├── faros_workflow_jobs.ts │ │ │ ├── faros_workflow_runs.ts │ │ │ └── faros_workflows.ts │ │ ├── tsconfig.json │ │ └── types.ts │ └── test │ │ ├── __snapshots__ │ │ ├── index.test.ts.snap │ │ └── org-repo-filter.test.ts.snap │ │ ├── index.test.ts │ │ ├── org-repo-filter.test.ts │ │ ├── resources │ │ ├── artifacts │ │ │ ├── artifacts.json │ │ │ └── catalog.json │ │ ├── check_connection │ │ │ ├── app_invalid.json │ │ │ ├── app_valid.json │ │ │ ├── authentication_missing.json │ │ │ ├── bucket_negative.json │ │ │ ├── bucket_out_of_range.json │ │ │ ├── token_invalid.json │ │ │ └── token_valid.json │ │ ├── code_scanning_alerts │ │ │ ├── catalog.json │ │ │ └── code_scanning_alerts.json │ │ ├── commits │ │ │ ├── catalog.json │ │ │ └── commits.json │ │ ├── config.json │ │ ├── copilot_seats │ │ │ ├── catalog.json │ │ │ ├── copilot_seats.json │ │ │ └── copilot_seats_empty.json │ │ ├── copilot_usage │ │ │ ├── catalog.json │ │ │ ├── copilot_usage.json │ │ │ └── copilot_usage_ga.json │ │ ├── dependabot_alerts │ │ │ ├── catalog.json │ │ │ └── dependabot_alerts.json │ │ ├── enterprise_copilot_seats │ │ │ └── catalog.json │ │ ├── enterprise_copilot_usage │ │ │ └── catalog.json │ │ ├── enterprise_copilot_user_usage │ │ │ ├── catalog.json │ │ │ ├── copilot-usage-report.jsonl │ │ │ ├── daily_copilot-usage-report.jsonl │ │ │ ├── daily_response.json │ │ │ └── response.json │ │ ├── enterprise_team_memberships │ │ │ └── catalog.json │ │ ├── enterprise_teams │ │ │ ├── catalog.json │ │ │ └── enterprise_teams.json │ │ ├── enterprises │ │ │ ├── catalog.json │ │ │ └── enterprise.json │ │ ├── issue_comments │ │ │ ├── catalog.json │ │ │ └── issue_comments.json │ │ ├── issues │ │ │ ├── catalog.json │ │ │ └── issues.json │ │ ├── labels │ │ │ ├── catalog.json │ │ │ └── labels.json │ │ ├── organizations │ │ │ ├── catalog.json │ │ │ └── organization.json │ │ ├── outside_collaborators │ │ │ ├── catalog.json │ │ │ └── outside_collaborators.json │ │ ├── projects │ │ │ ├── catalog.json │ │ │ ├── projects-classic.json │ │ │ └── projects.json │ │ ├── pull_request_comments │ │ │ ├── catalog.json │ │ │ └── pull_request_comments.json │ │ ├── pull_requests │ │ │ ├── catalog.json │ │ │ ├── pull_requests.json │ │ │ └── pull_requests_diff_coverage │ │ │ │ ├── config.json │ │ │ │ └── listCommitStatuses.json │ │ ├── releases │ │ │ ├── catalog.json │ │ │ └── releases.json │ │ ├── repositories │ │ │ ├── catalog.json │ │ │ ├── config-bucketing.json │ │ │ ├── repositories-multiple.json │ │ │ ├── repositories.json │ │ │ └── repository_languages.json │ │ ├── saml_sso_users │ │ │ ├── catalog.json │ │ │ └── saml_sso_users.json │ │ ├── secret_scanning_alerts │ │ │ ├── catalog.json │ │ │ └── secret_scanning_alerts.json │ │ ├── tags │ │ │ ├── catalog.json │ │ │ └── tags.json │ │ ├── team_memberships │ │ │ ├── catalog.json │ │ │ └── team_memberships.json │ │ ├── teams │ │ │ ├── catalog.json │ │ │ └── teams.json │ │ ├── users │ │ │ ├── catalog.json │ │ │ └── users.json │ │ ├── workflow_jobs │ │ │ ├── catalog.json │ │ │ └── workflow_jobs.json │ │ ├── workflow_runs │ │ │ ├── catalog.json │ │ │ └── workflow_runs.json │ │ └── workflows │ │ │ ├── catalog.json │ │ │ └── workflows.json │ │ ├── tsconfig.json │ │ └── utils.ts ├── gitlab-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── queries │ │ │ └── merge-requests-query.gql │ │ ├── schemas │ │ │ ├── farosCommits.json │ │ │ ├── farosDeployments.json │ │ │ ├── farosEpics.json │ │ │ ├── farosGroups.json │ │ │ ├── farosIssues.json │ │ │ ├── farosIterations.json │ │ │ ├── farosJobs.json │ │ │ ├── farosMergeRequestReviews.json │ │ │ ├── farosMergeRequests.json │ │ │ ├── farosPipelines.json │ │ │ ├── farosProjects.json │ │ │ ├── farosReleases.json │ │ │ ├── farosTags.json │ │ │ └── farosUsers.json │ │ └── spec.json │ ├── src │ │ ├── gitlab.ts │ │ ├── group-filter.ts │ │ ├── index.ts │ │ ├── queries.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── faros_commits.ts │ │ │ ├── faros_deployments.ts │ │ │ ├── faros_epics.ts │ │ │ ├── faros_groups.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_iterations.ts │ │ │ ├── faros_jobs.ts │ │ │ ├── faros_merge_request_reviews.ts │ │ │ ├── faros_merge_requests.ts │ │ │ ├── faros_pipelines.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_releases.ts │ │ │ ├── faros_tags.ts │ │ │ └── faros_users.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ └── user-collector.ts │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── group-filter.test.ts │ │ ├── index.test.ts │ │ ├── resources │ │ ├── check_connection │ │ │ ├── authentication_missing.json │ │ │ ├── bucket_negative.json │ │ │ ├── bucket_out_of_range.json │ │ │ ├── token_invalid.json │ │ │ └── token_valid.json │ │ ├── config.json │ │ ├── faros_commits │ │ │ ├── catalog.json │ │ │ └── commits.json │ │ ├── faros_deployments │ │ │ ├── catalog.json │ │ │ └── deployments.json │ │ ├── faros_epics │ │ │ ├── catalog.json │ │ │ └── epics.json │ │ ├── faros_groups │ │ │ └── catalog.json │ │ ├── faros_issues │ │ │ ├── catalog.json │ │ │ └── issues.json │ │ ├── faros_iterations │ │ │ ├── catalog.json │ │ │ └── iterations.json │ │ ├── faros_jobs │ │ │ ├── catalog.json │ │ │ └── jobs.json │ │ ├── faros_merge_request_reviews │ │ │ └── catalog.json │ │ ├── faros_merge_requests │ │ │ └── catalog.json │ │ ├── faros_pipelines │ │ │ ├── catalog.json │ │ │ └── pipelines.json │ │ ├── faros_projects │ │ │ └── catalog.json │ │ ├── faros_releases │ │ │ └── catalog.json │ │ ├── faros_tags │ │ │ ├── catalog.json │ │ │ └── tags.json │ │ └── users │ │ │ └── catalog.json │ │ ├── streams │ │ └── faros_commits.test.ts │ │ ├── tsconfig.json │ │ └── user-collector.test.ts ├── googlecalendar-source │ ├── README.md │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── calendars.json │ │ │ └── events.json │ │ └── spec.json │ ├── src │ │ ├── googlecalendar.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── calendars.ts │ │ │ ├── events.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── calendars.json │ │ ├── config.json │ │ ├── events.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── googledrive-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── activity.json │ │ │ ├── workspace.json │ │ │ └── workspaceUsers.json │ │ └── spec.json │ ├── src │ │ ├── googledrive.ts │ │ ├── index.ts │ │ ├── streams │ │ │ ├── activity.ts │ │ │ ├── workspace.ts │ │ │ └── workspace_users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ │ ├── activity │ │ │ │ ├── activities.json │ │ │ │ └── catalog.json │ │ │ ├── config.json │ │ │ ├── workspace │ │ │ │ ├── catalog.json │ │ │ │ └── customer.json │ │ │ └── workspace_users │ │ │ │ ├── catalog.json │ │ │ │ └── users.json │ │ └── tsconfig.json │ └── test_files │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ └── incremental_configured_catalog.json ├── harness-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── executions.json │ │ └── spec.json │ ├── src │ │ ├── harness.ts │ │ ├── harness_models.ts │ │ ├── index.ts │ │ ├── resources │ │ │ └── index.ts │ │ ├── streams │ │ │ ├── executions.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── executions.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── jenkins-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── builds.json │ │ │ └── jobs.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── jenkins.ts │ │ ├── streams │ │ │ ├── builds.ts │ │ │ ├── index.ts │ │ │ └── jobs.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── jenkins │ │ ├── README.md │ │ ├── data │ │ │ ├── .owner │ │ │ ├── config.xml │ │ │ ├── copy_reference_file.log │ │ │ ├── hudson.model.UpdateCenter.xml │ │ │ ├── identity.key.enc │ │ │ ├── jenkins.install.InstallUtil.lastExecVersion │ │ │ ├── jenkins.install.UpgradeWizard.state │ │ │ ├── jenkins.telemetry.Correlator.xml │ │ │ ├── jobs │ │ │ │ └── Faros-test-job │ │ │ │ │ ├── builds │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── changelog.xml │ │ │ │ │ │ └── log │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── changelog.xml │ │ │ │ │ │ └── log │ │ │ │ │ ├── 3 │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── changelog.xml │ │ │ │ │ │ └── log │ │ │ │ │ ├── legacyIds │ │ │ │ │ └── permalinks │ │ │ │ │ ├── config.xml │ │ │ │ │ └── nextBuildNumber │ │ │ ├── nodeMonitors.xml │ │ │ ├── queue.xml │ │ │ ├── queue.xml.bak │ │ │ ├── secret.key │ │ │ ├── secret.key.not-so-secret │ │ │ ├── updates │ │ │ │ ├── default.json │ │ │ │ └── hudson.tasks.Maven.MavenInstaller │ │ │ ├── userContent │ │ │ │ └── readme.txt │ │ │ └── users │ │ │ │ ├── admin_14692387833535189143 │ │ │ │ ├── apiTokenStats.xml │ │ │ │ └── config.xml │ │ │ │ └── users.xml │ │ └── docker-compose.yml │ │ └── jobs.json ├── jira-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── queries │ │ │ ├── get-teams.gql │ │ │ ├── tms-project-boards.gql │ │ │ ├── tms-project.gql │ │ │ └── tms-sprint-board.gql │ │ ├── schemas │ │ │ ├── farosAuditEvents.json │ │ │ ├── farosBoardIssues.json │ │ │ ├── farosBoards.json │ │ │ ├── farosIssueAdditionalFields.json │ │ │ ├── farosIssuePullRequests.json │ │ │ ├── farosIssues.json │ │ │ ├── farosProjectVersionIssues.json │ │ │ ├── farosProjectVersions.json │ │ │ ├── farosProjects.json │ │ │ ├── farosSprintReports.json │ │ │ ├── farosSprints.json │ │ │ ├── farosTeamMemberships.json │ │ │ ├── farosTeams.json │ │ │ └── farosUsers.json │ │ └── spec.json │ ├── src │ │ ├── client.ts │ │ ├── index.ts │ │ ├── issue_transformer.ts │ │ ├── jira.ts │ │ ├── jql-builder.ts │ │ ├── project-board-filter.ts │ │ ├── project-filter.ts │ │ ├── retry.ts │ │ ├── streams │ │ │ ├── board_issue_tracker.ts │ │ │ ├── common.ts │ │ │ ├── faros_audit_events.ts │ │ │ ├── faros_board_issues.ts │ │ │ ├── faros_boards.ts │ │ │ ├── faros_issue_additional_fields.ts │ │ │ ├── faros_issue_pull_requests.ts │ │ │ ├── faros_issues.ts │ │ │ ├── faros_project_version_issues.ts │ │ │ ├── faros_project_versions.ts │ │ │ ├── faros_projects.ts │ │ │ ├── faros_sprint_reports.ts │ │ │ ├── faros_sprints.ts │ │ │ ├── faros_team_memberships.ts │ │ │ ├── faros_teams.ts │ │ │ └── faros_users.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ ├── index.test.ts.snap │ │ ├── issue_transformer.test.ts.snap │ │ ├── jql-builder.test.ts.snap │ │ ├── project-board-filter.test.ts.snap │ │ └── project-filter.test.ts.snap │ │ ├── board_issue_tracker.test.ts │ │ ├── client.test.ts │ │ ├── index.test.ts │ │ ├── issue_transformer.test.ts │ │ ├── jql-builder.test.ts │ │ ├── project-board-filter.test.ts │ │ ├── project-filter.test.ts │ │ ├── resources │ │ ├── audit_events │ │ │ ├── audit_records.json │ │ │ ├── catalog.json │ │ │ └── config.json │ │ ├── board_issues │ │ │ ├── board_configuration.json │ │ │ ├── board_filter.json │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── issues_from_board.json │ │ ├── boards │ │ │ ├── boards.json │ │ │ ├── catalog.json │ │ │ └── config.json │ │ ├── check_connection │ │ │ ├── bucket_negative.json │ │ │ ├── bucket_out_of_range.json │ │ │ ├── missing_credentials.json │ │ │ └── valid.json │ │ ├── common │ │ │ ├── board.json │ │ │ ├── boards_unique.json │ │ │ ├── catalog.json │ │ │ └── config.json │ │ ├── issue_additional_fields │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── issues_with_additional_fields.json │ │ ├── issue_pull_requests │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ ├── dev_status_detail.json │ │ │ ├── dev_status_summary.json │ │ │ └── issues_with_pull_requests.json │ │ ├── issues │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ ├── issues.json │ │ │ └── state.json │ │ ├── project_board_filter │ │ │ ├── boards.json │ │ │ ├── config.json │ │ │ └── projects.json │ │ ├── project_filter │ │ │ ├── config.json │ │ │ └── projects.json │ │ ├── project_version_issues │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── project_version_issues.json │ │ ├── project_versions │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── project_versions.json │ │ ├── projects │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ ├── permissions.json │ │ │ └── projects.json │ │ ├── sprint_reports │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ ├── sprint_report.json │ │ │ ├── tms_project.json │ │ │ ├── tms_sprint_board_relationship.json │ │ │ └── webhook_config.json │ │ ├── sprints │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── sprints.json │ │ ├── team_memberships │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── team_memberships.json │ │ ├── teams │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── teams.json │ │ └── users │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ └── users.json │ │ ├── tsconfig.json │ │ └── utils │ │ └── test-utils.ts ├── octopus-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── deployments.json │ │ │ └── releases.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── models.ts │ │ ├── octopus.ts │ │ ├── octopusClient.ts │ │ ├── octopusModels.ts │ │ ├── streams │ │ │ ├── deployments.ts │ │ │ ├── index.ts │ │ │ └── releases.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ ├── octopusClient.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── deployments.json │ │ ├── deployments_response.json │ │ ├── environment.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── project.json │ │ ├── project_deployment_process.json │ │ ├── releases.json │ │ ├── releases_response.json │ │ ├── spaces.json │ │ ├── tasks.json │ │ └── variable_set.json ├── okta-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── models.ts │ │ ├── okta.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── invalid_config.json │ │ └── users.json ├── opsgenie-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── alerts.json │ │ │ ├── incidents.json │ │ │ ├── teams.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── opsgenie │ │ │ ├── models.ts │ │ │ └── opsgenie.ts │ │ ├── streams │ │ │ ├── alerts.ts │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── alerts.json │ │ ├── full_configured_catalog.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── teams.json │ │ └── users.json ├── pagerduty-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── incidentLogEntries.json │ │ │ ├── incidents.json │ │ │ ├── prioritiesResource.json │ │ │ ├── services.json │ │ │ ├── teams.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── pagerduty.ts │ │ ├── streams │ │ │ ├── incidentLogEntries.ts │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── prioritiesResource.ts │ │ │ ├── services.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ ├── pagerduty.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incidentLogEntries.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── prioritiesResource.json │ │ ├── services.json │ │ ├── teams.json │ │ └── users.json ├── phabricator-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── commits.json │ │ │ ├── projects.json │ │ │ ├── repositories.json │ │ │ ├── revision_diffs.json │ │ │ ├── revisions.json │ │ │ ├── transactions.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── phabricator.ts │ │ ├── streams │ │ │ ├── commits.ts │ │ │ ├── index.ts │ │ │ ├── projects.ts │ │ │ ├── repositories.ts │ │ │ ├── revision_diffs.ts │ │ │ ├── revisions.ts │ │ │ ├── transactions.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── raw_diff.json │ │ ├── repositories.json │ │ ├── revision_diffs.json │ │ ├── revision_diffs_records.json │ │ └── revisions.json ├── semaphoreci-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── pipelines.json │ │ │ └── projects.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── semaphoreci │ │ │ ├── models.ts │ │ │ └── semaphoreci.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ ├── pipelines.ts │ │ │ └── projects.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── jobs-detailed.json │ │ ├── pipelines-converted.json │ │ ├── pipelines-detailed.json │ │ ├── pipelines.json │ │ ├── projects-filtered.json │ │ └── projects.json ├── servicenow-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── incident.json │ │ │ └── user.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── servicenow │ │ │ ├── models.ts │ │ │ └── servicenow.ts │ │ ├── streams │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── future_state.json │ │ ├── incidents.json │ │ ├── incidentsRest.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ └── users.json ├── sheets-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── sheets.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── sheets-reader.ts │ │ ├── streams │ │ │ ├── index.ts │ │ │ └── sheets.ts │ │ └── tsconfig.json │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── test_files │ │ └── test_spreadsheet.xlsx │ │ └── tsconfig.json ├── shortcut-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── epics.json │ │ │ ├── iterations.json │ │ │ ├── members.json │ │ │ ├── projects.json │ │ │ └── stories.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── shortcut.ts │ │ ├── streams │ │ │ ├── epics.ts │ │ │ ├── index.ts │ │ │ ├── iterations.ts │ │ │ ├── members.ts │ │ │ ├── projects.ts │ │ │ └── stories.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── epics.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── iterations.json │ │ ├── members.json │ │ ├── projects.json │ │ └── stories.json ├── squadcast-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── events.json │ │ │ ├── incidents.json │ │ │ ├── services.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── models.ts │ │ ├── squadcast.ts │ │ ├── streams │ │ │ ├── events.ts │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── services.ts │ │ │ └── users.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── events.json │ │ ├── full_configured_catalog.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── services.json │ │ └── users.json ├── statuspage-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── component_groups.json │ │ │ ├── component_uptime.json │ │ │ ├── components.json │ │ │ ├── incidents.json │ │ │ ├── pages.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── statuspage.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── component_groups.ts │ │ │ ├── component_uptimes.ts │ │ │ ├── components.ts │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── pages.ts │ │ │ └── users.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── component_groups.json │ │ ├── component_uptimes.json │ │ ├── components.json │ │ ├── full_configured_catalog.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── pages.json │ │ └── users.json ├── team-history-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── queries │ │ │ ├── current-team-memberships.gql │ │ │ └── previous-team-memberships.gql │ │ ├── schemas │ │ │ └── team-membership-history.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── history.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ │ ├── catalog.json │ │ │ ├── check_connection │ │ │ │ ├── missing_graph.json │ │ │ │ └── valid_config.json │ │ │ └── valid_config.json │ │ └── tsconfig.json │ └── test_files │ │ └── full_configured_catalog.json ├── testrails-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── case.json │ │ │ ├── result.json │ │ │ ├── run.json │ │ │ └── suite.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── case.ts │ │ │ ├── index.ts │ │ │ ├── result.ts │ │ │ ├── run.ts │ │ │ └── suite.ts │ │ ├── testrails │ │ │ ├── models.ts │ │ │ ├── testrails-client.ts │ │ │ ├── testrails-models.ts │ │ │ └── testrails.ts │ │ └── tsconfig.json │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── config.json │ │ ├── full_configured_catalog.json │ │ ├── incremental_configured_catalog.json │ │ └── invalid_config.json ├── trello-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── actions.json │ │ │ ├── boards.json │ │ │ ├── cards.json │ │ │ ├── labels.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── models.ts │ │ ├── streams │ │ │ ├── actions.ts │ │ │ ├── boards.ts │ │ │ ├── cards.ts │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── labels.ts │ │ │ └── users.ts │ │ ├── trello.ts │ │ └── tsconfig.json │ └── test │ │ ├── index.test.ts │ │ └── tsconfig.json ├── tromzo-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── queries │ │ │ ├── findings.gql │ │ │ └── tool-names.gql │ │ ├── schemas │ │ │ └── findings.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ └── findings.ts │ │ ├── tromzo.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── test │ │ ├── __snapshots__ │ │ │ ├── index.test.ts.snap │ │ │ └── streams.test.ts.snap │ │ ├── index.test.ts │ │ ├── streams.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── findings.json │ │ └── full_configured_catalog.json ├── vanta-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── Organization.gql │ │ ├── schemas │ │ │ ├── vulnerabilities.json │ │ │ └── vulnerabilityRemediations.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── vulnerabilities.ts │ │ │ └── vulnerability_remediations.ts │ │ ├── tsconfig.json │ │ ├── utils.ts │ │ └── vanta.ts │ └── test │ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ ├── sample_cfg.json │ │ ├── vulnerabilities_catalog.json │ │ ├── vulnerabilities_response.json │ │ ├── vulnerability_remediations_catalog.json │ │ ├── vulnerability_remediations_response.json │ │ └── vulnerable_assets_response.json │ │ └── tsconfig.json ├── victorops-source │ ├── bin │ │ └── main │ ├── bootstrap.md │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── incidents.json │ │ │ ├── teams.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── incidents.ts │ │ │ ├── index.ts │ │ │ ├── teams.ts │ │ │ └── users.ts │ │ ├── tsconfig.json │ │ └── victorops.ts │ ├── test │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── abnormal_state.json │ │ ├── full_configured_catalog.json │ │ ├── incidents.json │ │ ├── incremental_configured_catalog.json │ │ ├── invalid_config.json │ │ ├── teams.json │ │ └── users.json ├── windsurf-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── autocompleteAnalytics.json │ │ │ ├── cascadeLinesAnalytics.json │ │ │ ├── cascadeRunsAnalytics.json │ │ │ ├── chatAnalytics.json │ │ │ ├── pcwAnalytics.json │ │ │ └── userPageAnalytics.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── autocomplete_analytics.ts │ │ │ ├── cascade_lines_analytics.ts │ │ │ ├── cascade_runs_analytics.ts │ │ │ ├── chat_analytics.ts │ │ │ ├── common.ts │ │ │ ├── pcw_analytics.ts │ │ │ └── user_page_analytics.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ └── windsurf.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── resources │ │ │ ├── autocomplete_analytics │ │ │ │ ├── autocomplete_analytics.json │ │ │ │ └── catalog.json │ │ │ ├── cascade_lines_analytics │ │ │ │ ├── cascade_lines_analytics.json │ │ │ │ └── catalog.json │ │ │ ├── cascade_runs_analytics │ │ │ │ ├── cascade_runs_analytics.json │ │ │ │ └── catalog.json │ │ │ ├── chat_analytics │ │ │ │ ├── catalog.json │ │ │ │ └── chat_analytics.json │ │ │ ├── config.json │ │ │ ├── pcw_analytics │ │ │ │ ├── catalog.json │ │ │ │ └── pcw_analytics.json │ │ │ └── user_page_analytics │ │ │ │ ├── catalog.json │ │ │ │ └── user_page_analytics.json │ │ └── tsconfig.json │ └── test_files │ │ ├── catalog.json │ │ └── config.json ├── wolken-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ ├── configuration_items.json │ │ │ ├── incidents.json │ │ │ └── users.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── configuration_items.ts │ │ │ ├── incidents.ts │ │ │ └── users.ts │ │ ├── tsconfig.json │ │ └── wolken.ts │ └── test │ │ ├── index.test.ts │ │ └── tsconfig.json ├── workday-source │ ├── README.md │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── schemas │ │ │ └── customreports.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── customreports.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── workday.ts │ ├── test │ │ ├── index.test.ts │ │ ├── tsconfig.json │ │ └── workday.test.ts │ └── test_files │ │ ├── config_tokens.json │ │ ├── config_unpw.json │ │ ├── config_unpw_csv.json │ │ ├── customreports.json │ │ ├── customreports_csv.json │ │ └── full_configured_catalog.json ├── xray-source │ ├── bin │ │ └── main │ ├── package.json │ ├── resources │ │ ├── queries │ │ │ ├── get-test-executions.gql │ │ │ ├── get-test-plan-tests.gql │ │ │ ├── get-test-plans.gql │ │ │ ├── get-test-runs.gql │ │ │ └── get-tests.gql │ │ ├── schemas │ │ │ ├── testExecutions.json │ │ │ ├── testPlanTests.json │ │ │ ├── testPlans.json │ │ │ ├── testRuns.json │ │ │ └── tests.json │ │ └── spec.json │ ├── src │ │ ├── index.ts │ │ ├── streams │ │ │ ├── common.ts │ │ │ ├── testExecutions.ts │ │ │ ├── testPlanTests.ts │ │ │ ├── testPlans.ts │ │ │ ├── testRuns.ts │ │ │ └── tests.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ └── xray.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── streams.test.ts.snap │ │ ├── index.test.ts │ │ ├── streams.test.ts │ │ └── tsconfig.json │ └── test_files │ │ ├── getPlans.json │ │ ├── getTestExecutions.json │ │ ├── getTestPlanTests.json │ │ ├── getTestRuns.json │ │ └── getTests.json └── zephyr-source │ ├── bin │ └── main │ ├── package.json │ ├── resources │ ├── schemas │ │ ├── testCases.json │ │ ├── testCycles.json │ │ └── testExecutions.json │ └── spec.json │ ├── src │ ├── index.ts │ ├── streams │ │ ├── common.ts │ │ ├── test_cycles.ts │ │ └── test_executions.ts │ ├── tsconfig.json │ ├── types.ts │ └── zephyr.ts │ ├── test │ ├── index.test.ts │ └── tsconfig.json │ └── test_files │ └── full_configured_catalog.json └── turbo.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cjwooo @ypc-faros @willmarks 2 | -------------------------------------------------------------------------------- /.github/actions/sign_image_with_cosign/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/actions/sign_image_with_cosign/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/.tsconfig.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/Dockerfile -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/README.md -------------------------------------------------------------------------------- /destinations/airbyte-faros-destination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/destinations/airbyte-faros-destination/README.md -------------------------------------------------------------------------------- /destinations/airbyte-faros-destination/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/destinations/airbyte-faros-destination/bin/main -------------------------------------------------------------------------------- /destinations/airbyte-faros-destination/src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/destinations/airbyte-faros-destination/src/sync.ts -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/specs/bucketing_round_robin_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/docs/specs/bucketing_round_robin_spec.md -------------------------------------------------------------------------------- /faros-airbyte-cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/README.md -------------------------------------------------------------------------------- /faros-airbyte-cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/package.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/connector.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/destinations/destination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/destinations/destination.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/errors.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/help.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/index.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/logger.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/prompts.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/protocol.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/runner.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/sources/source-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/sources/source-base.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/sources/source-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/sources/source-logger.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/sources/source-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/sources/source-runner.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/sources/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/sources/source.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/spec-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/spec-loader.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/sync-message-tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/sync-message-tables.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/tsconfig.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/src/utils.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/help.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/help.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/index.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/logger.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/prompts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/prompts.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/protocol.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/protocol.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/resources/help/one-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/resources/help/one-of.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/resources/help/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/resources/help/order.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/resources/inner-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/resources/inner-spec.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/resources/spec-bad-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/resources/spec-bad-ref.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/resources/spec.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/sources/source-base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/sources/source-base.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/spec-loader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/spec-loader.test.ts -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/tsconfig.json -------------------------------------------------------------------------------- /faros-airbyte-cdk/test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-cdk/test/utils.test.ts -------------------------------------------------------------------------------- /faros-airbyte-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/README.md -------------------------------------------------------------------------------- /faros-airbyte-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/package.json -------------------------------------------------------------------------------- /faros-airbyte-common/src/azure-devops/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/azure-devops/index.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/azure-devops/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/azure-devops/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/azure-devops/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/azure-devops/utils.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/bitbucket-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/bitbucket-server/index.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/bitbucket/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/bitbucket/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/bitbucket/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/circleci/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/circleci/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/circleci/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/claude/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/claude/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/claude/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/clickup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/clickup/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/clickup/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/common/bucket-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/common/bucket-set.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/common/bucketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/common/bucketing.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/common/index.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/common/vcs-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/common/vcs-filter.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/common/vcs-user-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/common/vcs-user-tool.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/cursor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/cursor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/cursor/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/github/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/github/codegen.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/github/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/github/generated/index.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/github/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/github/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/github/queries.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/github/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/github/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/gitlab/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/gitlab/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/gitlab/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/googledrive/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/googledrive/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/googledrive/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/jira/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/jira/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/jira/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/tsconfig.json -------------------------------------------------------------------------------- /faros-airbyte-common/src/vanta/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/vanta/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/vanta/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/windsurf/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/windsurf/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/windsurf/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/wolken/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/wolken/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/wolken/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/src/xray/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /faros-airbyte-common/src/xray/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/src/xray/types.ts -------------------------------------------------------------------------------- /faros-airbyte-common/test/common/bucketing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/common/bucketing.test.ts -------------------------------------------------------------------------------- /faros-airbyte-common/test/common/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/common/index.test.ts -------------------------------------------------------------------------------- /faros-airbyte-common/test/github/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/github/queries.test.ts -------------------------------------------------------------------------------- /faros-airbyte-common/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/index.test.ts -------------------------------------------------------------------------------- /faros-airbyte-common/test/resources/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/resources/projects.json -------------------------------------------------------------------------------- /faros-airbyte-common/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-common/test/tsconfig.json -------------------------------------------------------------------------------- /faros-airbyte-testing-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-testing-tools/package.json -------------------------------------------------------------------------------- /faros-airbyte-testing-tools/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-testing-tools/src/cli.ts -------------------------------------------------------------------------------- /faros-airbyte-testing-tools/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-testing-tools/src/index.ts -------------------------------------------------------------------------------- /faros-airbyte-testing-tools/src/testing-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-testing-tools/src/testing-tools.ts -------------------------------------------------------------------------------- /faros-airbyte-testing-tools/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/faros-airbyte-testing-tools/src/tsconfig.json -------------------------------------------------------------------------------- /local/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/local/Dockerfile -------------------------------------------------------------------------------- /local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/local/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/package.json -------------------------------------------------------------------------------- /scripts/publish-connector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/scripts/publish-connector.sh -------------------------------------------------------------------------------- /scripts/sign-image-with-cosign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/scripts/sign-image-with-cosign.sh -------------------------------------------------------------------------------- /scripts/source-acceptance-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/scripts/source-acceptance-test.sh -------------------------------------------------------------------------------- /source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/source.json -------------------------------------------------------------------------------- /sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/README.md -------------------------------------------------------------------------------- /sources/agileaccelerator-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/bin/main -------------------------------------------------------------------------------- /sources/agileaccelerator-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/bootstrap.md -------------------------------------------------------------------------------- /sources/agileaccelerator-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/package.json -------------------------------------------------------------------------------- /sources/agileaccelerator-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/src/index.ts -------------------------------------------------------------------------------- /sources/agileaccelerator-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/agileaccelerator-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/agileaccelerator-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/agileaccelerator-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/asana-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/bin/main -------------------------------------------------------------------------------- /sources/asana-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/package.json -------------------------------------------------------------------------------- /sources/asana-source/resources/schemas/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/resources/schemas/tags.json -------------------------------------------------------------------------------- /sources/asana-source/resources/schemas/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/resources/schemas/tasks.json -------------------------------------------------------------------------------- /sources/asana-source/resources/schemas/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/resources/schemas/teams.json -------------------------------------------------------------------------------- /sources/asana-source/resources/schemas/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/resources/schemas/users.json -------------------------------------------------------------------------------- /sources/asana-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/resources/spec.json -------------------------------------------------------------------------------- /sources/asana-source/src/asana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/asana.ts -------------------------------------------------------------------------------- /sources/asana-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/index.ts -------------------------------------------------------------------------------- /sources/asana-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/models.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/project_tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/project_tasks.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/projects.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/tags.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/tasks.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/tasks_full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/tasks_full.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/asana-source/src/streams/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/streams/workspaces.ts -------------------------------------------------------------------------------- /sources/asana-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/asana-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/asana-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/asana-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/aws-cloudwatch-metrics-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/aws-cloudwatch-metrics-source/bin/main -------------------------------------------------------------------------------- /sources/aws-cloudwatch-metrics-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/aws-cloudwatch-metrics-source/package.json -------------------------------------------------------------------------------- /sources/aws-cloudwatch-metrics-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/aws-cloudwatch-metrics-source/src/index.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/README.md -------------------------------------------------------------------------------- /sources/azure-repos-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/bin/main -------------------------------------------------------------------------------- /sources/azure-repos-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/package.json -------------------------------------------------------------------------------- /sources/azure-repos-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/resources/spec.json -------------------------------------------------------------------------------- /sources/azure-repos-source/src/azure-repos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/azure-repos.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/index.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/models.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/streams/commits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/streams/commits.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/azure-repos-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/azure-repos-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/azure-repos-source/test_files/commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/test_files/commits.json -------------------------------------------------------------------------------- /sources/azure-repos-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-repos-source/test_files/users.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/package.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/resources/spec.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/azure-tfvc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/azure-tfvc.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/index.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/models.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/streams/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/streams/projects.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/azure-tfvc-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/test_files/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/test_files/branches.json -------------------------------------------------------------------------------- /sources/azure-tfvc-source/test_files/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-tfvc-source/test_files/projects.json -------------------------------------------------------------------------------- /sources/azure-workitems-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/README.md -------------------------------------------------------------------------------- /sources/azure-workitems-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/bin/main -------------------------------------------------------------------------------- /sources/azure-workitems-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/package.json -------------------------------------------------------------------------------- /sources/azure-workitems-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/resources/spec.json -------------------------------------------------------------------------------- /sources/azure-workitems-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/src/index.ts -------------------------------------------------------------------------------- /sources/azure-workitems-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/azure-workitems-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/src/types.ts -------------------------------------------------------------------------------- /sources/azure-workitems-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/azure-workitems-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azure-workitems-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/azureactivedirectory-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azureactivedirectory-source/bin/main -------------------------------------------------------------------------------- /sources/azureactivedirectory-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azureactivedirectory-source/package.json -------------------------------------------------------------------------------- /sources/azurepipeline-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/README.md -------------------------------------------------------------------------------- /sources/azurepipeline-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/bin/main -------------------------------------------------------------------------------- /sources/azurepipeline-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/package.json -------------------------------------------------------------------------------- /sources/azurepipeline-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/src/index.ts -------------------------------------------------------------------------------- /sources/azurepipeline-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/azurepipeline-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/src/types.ts -------------------------------------------------------------------------------- /sources/azurepipeline-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/azurepipeline-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/azurepipeline-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/backlog-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/bin/main -------------------------------------------------------------------------------- /sources/backlog-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/package.json -------------------------------------------------------------------------------- /sources/backlog-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/resources/spec.json -------------------------------------------------------------------------------- /sources/backlog-source/src/backlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/backlog.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/index.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/models.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/streams/issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/streams/issues.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/streams/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/streams/projects.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/backlog-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/backlog-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/backlog-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/backlog-source/test_files/issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/test_files/issues.json -------------------------------------------------------------------------------- /sources/backlog-source/test_files/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/test_files/projects.json -------------------------------------------------------------------------------- /sources/backlog-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/backlog-source/test_files/users.json -------------------------------------------------------------------------------- /sources/bamboohr-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/bin/main -------------------------------------------------------------------------------- /sources/bamboohr-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/package.json -------------------------------------------------------------------------------- /sources/bamboohr-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/resources/spec.json -------------------------------------------------------------------------------- /sources/bamboohr-source/src/bamboohr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/bamboohr.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/index.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/models.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/bamboohr-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/bamboohr-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bamboohr-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/bamboohr-source/test_files/users.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /sources/bitbucket-server-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-server-source/README.md -------------------------------------------------------------------------------- /sources/bitbucket-server-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-server-source/bin/main -------------------------------------------------------------------------------- /sources/bitbucket-server-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-server-source/package.json -------------------------------------------------------------------------------- /sources/bitbucket-server-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-server-source/src/index.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/README.md -------------------------------------------------------------------------------- /sources/bitbucket-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/bin/main -------------------------------------------------------------------------------- /sources/bitbucket-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/bootstrap.md -------------------------------------------------------------------------------- /sources/bitbucket-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/package.json -------------------------------------------------------------------------------- /sources/bitbucket-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/resources/spec.json -------------------------------------------------------------------------------- /sources/bitbucket-source/src/bitbucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/bitbucket.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/index.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/streams/commits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/streams/commits.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/streams/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/streams/tags.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/bitbucket-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/src/types.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/bitbucket-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/bitbucket-source/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/bitbucket-source/test/utils.ts -------------------------------------------------------------------------------- /sources/buildkite-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/bin/main -------------------------------------------------------------------------------- /sources/buildkite-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/package.json -------------------------------------------------------------------------------- /sources/buildkite-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/resources/spec.json -------------------------------------------------------------------------------- /sources/buildkite-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/src/index.ts -------------------------------------------------------------------------------- /sources/buildkite-source/src/streams/builds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/src/streams/builds.ts -------------------------------------------------------------------------------- /sources/buildkite-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/buildkite-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/buildkite-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/buildkite-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/buildkite-source/test_files/builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/buildkite-source/test_files/builds.json -------------------------------------------------------------------------------- /sources/circleci-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/README.md -------------------------------------------------------------------------------- /sources/circleci-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/bin/main -------------------------------------------------------------------------------- /sources/circleci-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/bootstrap.md -------------------------------------------------------------------------------- /sources/circleci-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/package.json -------------------------------------------------------------------------------- /sources/circleci-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/resources/spec.json -------------------------------------------------------------------------------- /sources/circleci-source/src/faros/faros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/faros/faros.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/index.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/streams/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/streams/projects.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/streams/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/streams/tests.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/streams/usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/streams/usage.ts -------------------------------------------------------------------------------- /sources/circleci-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/circleci-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/circleci-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/circleci-source/test_files/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/circleci-source/test_files/tests.json -------------------------------------------------------------------------------- /sources/claude-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/bin/main -------------------------------------------------------------------------------- /sources/claude-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/package.json -------------------------------------------------------------------------------- /sources/claude-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/resources/spec.json -------------------------------------------------------------------------------- /sources/claude-source/src/claude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/src/claude.ts -------------------------------------------------------------------------------- /sources/claude-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/src/index.ts -------------------------------------------------------------------------------- /sources/claude-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/claude-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/claude-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/src/types.ts -------------------------------------------------------------------------------- /sources/claude-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/claude-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/claude-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/clickup-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/bin/main -------------------------------------------------------------------------------- /sources/clickup-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/package.json -------------------------------------------------------------------------------- /sources/clickup-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/resources/spec.json -------------------------------------------------------------------------------- /sources/clickup-source/src/clickup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/clickup.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/index.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/folders.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/goals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/goals.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/lists.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/spaces.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/streams/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/streams/tasks.ts -------------------------------------------------------------------------------- /sources/clickup-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/clickup-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/clickup-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/clickup-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/cursor-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/README.md -------------------------------------------------------------------------------- /sources/cursor-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/bin/main -------------------------------------------------------------------------------- /sources/cursor-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/package.json -------------------------------------------------------------------------------- /sources/cursor-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/resources/spec.json -------------------------------------------------------------------------------- /sources/cursor-source/src/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/cursor.ts -------------------------------------------------------------------------------- /sources/cursor-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/index.ts -------------------------------------------------------------------------------- /sources/cursor-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/cursor-source/src/streams/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/streams/members.ts -------------------------------------------------------------------------------- /sources/cursor-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/cursor-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/src/types.ts -------------------------------------------------------------------------------- /sources/cursor-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/cursor-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/cursor-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/customer-io-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/bin/main -------------------------------------------------------------------------------- /sources/customer-io-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/bootstrap.md -------------------------------------------------------------------------------- /sources/customer-io-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/package.json -------------------------------------------------------------------------------- /sources/customer-io-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/resources/spec.json -------------------------------------------------------------------------------- /sources/customer-io-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/src/index.ts -------------------------------------------------------------------------------- /sources/customer-io-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/customer-io-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/customer-io-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/customer-io-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/customer-io-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/customer-io-source/test_files/invalid_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_api_key": "", 3 | "cutoff_days":90 4 | } 5 | -------------------------------------------------------------------------------- /sources/datadog-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/README.md -------------------------------------------------------------------------------- /sources/datadog-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/bin/main -------------------------------------------------------------------------------- /sources/datadog-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/package.json -------------------------------------------------------------------------------- /sources/datadog-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/resources/spec.json -------------------------------------------------------------------------------- /sources/datadog-source/src/datadog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/datadog.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/index.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/streams/incidents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/streams/incidents.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/streams/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/streams/metrics.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/datadog-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/datadog-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/datadog-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/datadog-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test_files/config.json -------------------------------------------------------------------------------- /sources/datadog-source/test_files/invalid_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bad": "" 3 | } 4 | -------------------------------------------------------------------------------- /sources/datadog-source/test_files/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test_files/metrics.json -------------------------------------------------------------------------------- /sources/datadog-source/test_files/slos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test_files/slos.json -------------------------------------------------------------------------------- /sources/datadog-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/datadog-source/test_files/users.json -------------------------------------------------------------------------------- /sources/docker-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/bin/main -------------------------------------------------------------------------------- /sources/docker-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/package.json -------------------------------------------------------------------------------- /sources/docker-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/resources/spec.json -------------------------------------------------------------------------------- /sources/docker-source/src/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/src/docker.ts -------------------------------------------------------------------------------- /sources/docker-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/src/index.ts -------------------------------------------------------------------------------- /sources/docker-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/docker-source/src/streams/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/src/streams/tags.ts -------------------------------------------------------------------------------- /sources/docker-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/docker-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/docker-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/docker-source/test_files/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/docker-source/test_files/tags.json -------------------------------------------------------------------------------- /sources/example-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/bin/main -------------------------------------------------------------------------------- /sources/example-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/package.json -------------------------------------------------------------------------------- /sources/example-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/resources/spec.json -------------------------------------------------------------------------------- /sources/example-source/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/src/config.ts -------------------------------------------------------------------------------- /sources/example-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/src/index.ts -------------------------------------------------------------------------------- /sources/example-source/src/streams/builds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/src/streams/builds.ts -------------------------------------------------------------------------------- /sources/example-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/example-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/example-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/example-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/example-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/test_files/config.json -------------------------------------------------------------------------------- /sources/example-source/test_files/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/example-source/test_files/spec.json -------------------------------------------------------------------------------- /sources/faros-graphdoctor-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphdoctor-source/README.md -------------------------------------------------------------------------------- /sources/faros-graphdoctor-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphdoctor-source/bin/main -------------------------------------------------------------------------------- /sources/faros-graphdoctor-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphdoctor-source/package.json -------------------------------------------------------------------------------- /sources/faros-graphdoctor-source/src/graphdoctor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './graphdoctor'; 2 | -------------------------------------------------------------------------------- /sources/faros-graphdoctor-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphdoctor-source/src/index.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/bin/main -------------------------------------------------------------------------------- /sources/faros-graphql-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/package.json -------------------------------------------------------------------------------- /sources/faros-graphql-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/src/index.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/src/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/src/nodes.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/faros-graphql-source/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/test/helpers.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/test/nodes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/test/nodes.test.ts -------------------------------------------------------------------------------- /sources/faros-graphql-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/faros-graphql-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/files-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/bin/main -------------------------------------------------------------------------------- /sources/files-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/package.json -------------------------------------------------------------------------------- /sources/files-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/resources/spec.json -------------------------------------------------------------------------------- /sources/files-source/src/files-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/src/files-reader.ts -------------------------------------------------------------------------------- /sources/files-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/src/index.ts -------------------------------------------------------------------------------- /sources/files-source/src/streams/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/src/streams/files.ts -------------------------------------------------------------------------------- /sources/files-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/files-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/files-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/files-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/files-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/firehydrant-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/bin/main -------------------------------------------------------------------------------- /sources/firehydrant-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/package.json -------------------------------------------------------------------------------- /sources/firehydrant-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/resources/spec.json -------------------------------------------------------------------------------- /sources/firehydrant-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/src/index.ts -------------------------------------------------------------------------------- /sources/firehydrant-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/firehydrant-source/src/streams/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/src/streams/teams.ts -------------------------------------------------------------------------------- /sources/firehydrant-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/firehydrant-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/firehydrant-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/firehydrant-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/firehydrant-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/github-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/README.md -------------------------------------------------------------------------------- /sources/github-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/bin/main -------------------------------------------------------------------------------- /sources/github-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/package.json -------------------------------------------------------------------------------- /sources/github-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/resources/spec.json -------------------------------------------------------------------------------- /sources/github-source/src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/github.ts -------------------------------------------------------------------------------- /sources/github-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/index.ts -------------------------------------------------------------------------------- /sources/github-source/src/octokit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/octokit.ts -------------------------------------------------------------------------------- /sources/github-source/src/org-repo-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/org-repo-filter.ts -------------------------------------------------------------------------------- /sources/github-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/github-source/src/streams/faros_tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/streams/faros_tags.ts -------------------------------------------------------------------------------- /sources/github-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/github-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/src/types.ts -------------------------------------------------------------------------------- /sources/github-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/github-source/test/resources/check_connection/authentication_missing.json: -------------------------------------------------------------------------------- 1 | { 2 | "authentication": { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /sources/github-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/github-source/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/github-source/test/utils.ts -------------------------------------------------------------------------------- /sources/gitlab-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/README.md -------------------------------------------------------------------------------- /sources/gitlab-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/bin/main -------------------------------------------------------------------------------- /sources/gitlab-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/package.json -------------------------------------------------------------------------------- /sources/gitlab-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/resources/spec.json -------------------------------------------------------------------------------- /sources/gitlab-source/src/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/gitlab.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/group-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/group-filter.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/index.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/queries.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/streams/faros_jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/streams/faros_jobs.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/streams/faros_tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/streams/faros_tags.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/gitlab-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/types.ts -------------------------------------------------------------------------------- /sources/gitlab-source/src/user-collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/src/user-collector.ts -------------------------------------------------------------------------------- /sources/gitlab-source/test/group-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/test/group-filter.test.ts -------------------------------------------------------------------------------- /sources/gitlab-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/gitlab-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/gitlab-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/googlecalendar-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/README.md -------------------------------------------------------------------------------- /sources/googlecalendar-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/bin/main -------------------------------------------------------------------------------- /sources/googlecalendar-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/bootstrap.md -------------------------------------------------------------------------------- /sources/googlecalendar-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/package.json -------------------------------------------------------------------------------- /sources/googlecalendar-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/src/index.ts -------------------------------------------------------------------------------- /sources/googlecalendar-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googlecalendar-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/googledrive-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/README.md -------------------------------------------------------------------------------- /sources/googledrive-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/bin/main -------------------------------------------------------------------------------- /sources/googledrive-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/package.json -------------------------------------------------------------------------------- /sources/googledrive-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/resources/spec.json -------------------------------------------------------------------------------- /sources/googledrive-source/src/googledrive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/src/googledrive.ts -------------------------------------------------------------------------------- /sources/googledrive-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/src/index.ts -------------------------------------------------------------------------------- /sources/googledrive-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/googledrive-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/googledrive-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/googledrive-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/harness-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/bin/main -------------------------------------------------------------------------------- /sources/harness-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/bootstrap.md -------------------------------------------------------------------------------- /sources/harness-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/package.json -------------------------------------------------------------------------------- /sources/harness-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/resources/spec.json -------------------------------------------------------------------------------- /sources/harness-source/src/harness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/harness.ts -------------------------------------------------------------------------------- /sources/harness-source/src/harness_models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/harness_models.ts -------------------------------------------------------------------------------- /sources/harness-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/index.ts -------------------------------------------------------------------------------- /sources/harness-source/src/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/resources/index.ts -------------------------------------------------------------------------------- /sources/harness-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/harness-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/harness-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/harness-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/harness-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/jenkins-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/bin/main -------------------------------------------------------------------------------- /sources/jenkins-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/bootstrap.md -------------------------------------------------------------------------------- /sources/jenkins-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/package.json -------------------------------------------------------------------------------- /sources/jenkins-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/resources/spec.json -------------------------------------------------------------------------------- /sources/jenkins-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/index.ts -------------------------------------------------------------------------------- /sources/jenkins-source/src/jenkins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/jenkins.ts -------------------------------------------------------------------------------- /sources/jenkins-source/src/streams/builds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/streams/builds.ts -------------------------------------------------------------------------------- /sources/jenkins-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/jenkins-source/src/streams/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/streams/jobs.ts -------------------------------------------------------------------------------- /sources/jenkins-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/jenkins-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/jenkins-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/test_files/config.json -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/.owner: -------------------------------------------------------------------------------- 1 | 324256173 contextPath="" at 7@ad42d17cdcad 2 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jenkins.install.InstallUtil.lastExecVersion: -------------------------------------------------------------------------------- 1 | 2.303.1 -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jenkins.install.UpgradeWizard.state: -------------------------------------------------------------------------------- 1 | 2.303.1 -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jobs/Faros-test-job/builds/1/changelog.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jobs/Faros-test-job/builds/2/changelog.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jobs/Faros-test-job/builds/3/changelog.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jobs/Faros-test-job/builds/legacyIds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/jobs/Faros-test-job/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jenkins/data/secret.key.not-so-secret: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/jenkins-source/test_files/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jenkins-source/test_files/jobs.json -------------------------------------------------------------------------------- /sources/jira-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/README.md -------------------------------------------------------------------------------- /sources/jira-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/bin/main -------------------------------------------------------------------------------- /sources/jira-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/package.json -------------------------------------------------------------------------------- /sources/jira-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/resources/spec.json -------------------------------------------------------------------------------- /sources/jira-source/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/client.ts -------------------------------------------------------------------------------- /sources/jira-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/index.ts -------------------------------------------------------------------------------- /sources/jira-source/src/issue_transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/issue_transformer.ts -------------------------------------------------------------------------------- /sources/jira-source/src/jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/jira.ts -------------------------------------------------------------------------------- /sources/jira-source/src/jql-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/jql-builder.ts -------------------------------------------------------------------------------- /sources/jira-source/src/project-board-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/project-board-filter.ts -------------------------------------------------------------------------------- /sources/jira-source/src/project-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/project-filter.ts -------------------------------------------------------------------------------- /sources/jira-source/src/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/retry.ts -------------------------------------------------------------------------------- /sources/jira-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/jira-source/src/streams/faros_boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/streams/faros_boards.ts -------------------------------------------------------------------------------- /sources/jira-source/src/streams/faros_issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/streams/faros_issues.ts -------------------------------------------------------------------------------- /sources/jira-source/src/streams/faros_teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/streams/faros_teams.ts -------------------------------------------------------------------------------- /sources/jira-source/src/streams/faros_users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/streams/faros_users.ts -------------------------------------------------------------------------------- /sources/jira-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/jira-source/test/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/client.test.ts -------------------------------------------------------------------------------- /sources/jira-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/jira-source/test/jql-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/jql-builder.test.ts -------------------------------------------------------------------------------- /sources/jira-source/test/project-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/project-filter.test.ts -------------------------------------------------------------------------------- /sources/jira-source/test/resources/check_connection/missing_credentials.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://jira.com" 3 | } -------------------------------------------------------------------------------- /sources/jira-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/jira-source/test/utils/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/jira-source/test/utils/test-utils.ts -------------------------------------------------------------------------------- /sources/octopus-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/bin/main -------------------------------------------------------------------------------- /sources/octopus-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/package.json -------------------------------------------------------------------------------- /sources/octopus-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/resources/spec.json -------------------------------------------------------------------------------- /sources/octopus-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/index.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/models.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/octopus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/octopus.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/octopusClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/octopusClient.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/octopusModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/octopusModels.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/streams/releases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/streams/releases.ts -------------------------------------------------------------------------------- /sources/octopus-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/octopus-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/octopus-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/octopus-source/test_files/abnormal_state.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/octopus-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test_files/config.json -------------------------------------------------------------------------------- /sources/octopus-source/test_files/incremental_configured_catalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "streams": [] 3 | } 4 | -------------------------------------------------------------------------------- /sources/octopus-source/test_files/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test_files/project.json -------------------------------------------------------------------------------- /sources/octopus-source/test_files/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test_files/releases.json -------------------------------------------------------------------------------- /sources/octopus-source/test_files/spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test_files/spaces.json -------------------------------------------------------------------------------- /sources/octopus-source/test_files/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/octopus-source/test_files/tasks.json -------------------------------------------------------------------------------- /sources/okta-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/bin/main -------------------------------------------------------------------------------- /sources/okta-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/package.json -------------------------------------------------------------------------------- /sources/okta-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/resources/spec.json -------------------------------------------------------------------------------- /sources/okta-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/index.ts -------------------------------------------------------------------------------- /sources/okta-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/models.ts -------------------------------------------------------------------------------- /sources/okta-source/src/okta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/okta.ts -------------------------------------------------------------------------------- /sources/okta-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/okta-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/okta-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/okta-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/okta-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/okta-source/test_files/abnormal_state.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/okta-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/okta-source/test_files/users.json -------------------------------------------------------------------------------- /sources/opsgenie-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/bin/main -------------------------------------------------------------------------------- /sources/opsgenie-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/package.json -------------------------------------------------------------------------------- /sources/opsgenie-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/resources/spec.json -------------------------------------------------------------------------------- /sources/opsgenie-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/index.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/opsgenie/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/opsgenie/models.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/streams/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/streams/alerts.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/streams/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/streams/teams.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/opsgenie-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/opsgenie-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/opsgenie-source/test_files/alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/test_files/alerts.json -------------------------------------------------------------------------------- /sources/opsgenie-source/test_files/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/test_files/teams.json -------------------------------------------------------------------------------- /sources/opsgenie-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/opsgenie-source/test_files/users.json -------------------------------------------------------------------------------- /sources/pagerduty-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/bin/main -------------------------------------------------------------------------------- /sources/pagerduty-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/bootstrap.md -------------------------------------------------------------------------------- /sources/pagerduty-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/package.json -------------------------------------------------------------------------------- /sources/pagerduty-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/resources/spec.json -------------------------------------------------------------------------------- /sources/pagerduty-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/index.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/src/pagerduty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/pagerduty.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/src/streams/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/streams/teams.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/pagerduty-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/test/pagerduty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test/pagerduty.test.ts -------------------------------------------------------------------------------- /sources/pagerduty-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/pagerduty-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test_files/config.json -------------------------------------------------------------------------------- /sources/pagerduty-source/test_files/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test_files/teams.json -------------------------------------------------------------------------------- /sources/pagerduty-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/pagerduty-source/test_files/users.json -------------------------------------------------------------------------------- /sources/phabricator-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/bin/main -------------------------------------------------------------------------------- /sources/phabricator-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/bootstrap.md -------------------------------------------------------------------------------- /sources/phabricator-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/package.json -------------------------------------------------------------------------------- /sources/phabricator-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/resources/spec.json -------------------------------------------------------------------------------- /sources/phabricator-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/src/index.ts -------------------------------------------------------------------------------- /sources/phabricator-source/src/phabricator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/src/phabricator.ts -------------------------------------------------------------------------------- /sources/phabricator-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/phabricator-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/phabricator-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/phabricator-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/phabricator-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/phabricator-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/semaphoreci-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/bin/main -------------------------------------------------------------------------------- /sources/semaphoreci-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/package.json -------------------------------------------------------------------------------- /sources/semaphoreci-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/resources/spec.json -------------------------------------------------------------------------------- /sources/semaphoreci-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/src/index.ts -------------------------------------------------------------------------------- /sources/semaphoreci-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/semaphoreci-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/semaphoreci-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/semaphoreci-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/semaphoreci-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/servicenow-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/README.md -------------------------------------------------------------------------------- /sources/servicenow-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/bin/main -------------------------------------------------------------------------------- /sources/servicenow-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/package.json -------------------------------------------------------------------------------- /sources/servicenow-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/resources/spec.json -------------------------------------------------------------------------------- /sources/servicenow-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/src/index.ts -------------------------------------------------------------------------------- /sources/servicenow-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/servicenow-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/servicenow-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/servicenow-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/servicenow-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/servicenow-source/test_files/invalid_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bad": "" 3 | } 4 | -------------------------------------------------------------------------------- /sources/servicenow-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/servicenow-source/test_files/users.json -------------------------------------------------------------------------------- /sources/sheets-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/bin/main -------------------------------------------------------------------------------- /sources/sheets-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/package.json -------------------------------------------------------------------------------- /sources/sheets-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/resources/spec.json -------------------------------------------------------------------------------- /sources/sheets-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/src/index.ts -------------------------------------------------------------------------------- /sources/sheets-source/src/sheets-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/src/sheets-reader.ts -------------------------------------------------------------------------------- /sources/sheets-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/sheets-source/src/streams/sheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/src/streams/sheets.ts -------------------------------------------------------------------------------- /sources/sheets-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/sheets-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/sheets-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/sheets-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/shortcut-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/bin/main -------------------------------------------------------------------------------- /sources/shortcut-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/package.json -------------------------------------------------------------------------------- /sources/shortcut-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/resources/spec.json -------------------------------------------------------------------------------- /sources/shortcut-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/index.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/shortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/shortcut.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/streams/epics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/streams/epics.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/streams/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/streams/members.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/streams/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/streams/projects.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/streams/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/streams/stories.ts -------------------------------------------------------------------------------- /sources/shortcut-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/shortcut-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/shortcut-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/shortcut-source/test_files/epics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/test_files/epics.json -------------------------------------------------------------------------------- /sources/shortcut-source/test_files/members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/test_files/members.json -------------------------------------------------------------------------------- /sources/shortcut-source/test_files/stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/shortcut-source/test_files/stories.json -------------------------------------------------------------------------------- /sources/squadcast-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/bin/main -------------------------------------------------------------------------------- /sources/squadcast-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/bootstrap.md -------------------------------------------------------------------------------- /sources/squadcast-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/package.json -------------------------------------------------------------------------------- /sources/squadcast-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/resources/spec.json -------------------------------------------------------------------------------- /sources/squadcast-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/index.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/models.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/squadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/squadcast.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/streams/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/streams/events.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/squadcast-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/squadcast-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/squadcast-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/squadcast-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/test_files/config.json -------------------------------------------------------------------------------- /sources/squadcast-source/test_files/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/test_files/events.json -------------------------------------------------------------------------------- /sources/squadcast-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/squadcast-source/test_files/users.json -------------------------------------------------------------------------------- /sources/statuspage-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/bin/main -------------------------------------------------------------------------------- /sources/statuspage-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/package.json -------------------------------------------------------------------------------- /sources/statuspage-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/resources/spec.json -------------------------------------------------------------------------------- /sources/statuspage-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/index.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/statuspage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/statuspage.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/streams/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/streams/pages.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/statuspage-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/statuspage-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/src/types.ts -------------------------------------------------------------------------------- /sources/statuspage-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/statuspage-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/statuspage-source/test_files/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/test_files/pages.json -------------------------------------------------------------------------------- /sources/statuspage-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/statuspage-source/test_files/users.json -------------------------------------------------------------------------------- /sources/team-history-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/bin/main -------------------------------------------------------------------------------- /sources/team-history-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/package.json -------------------------------------------------------------------------------- /sources/team-history-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/resources/spec.json -------------------------------------------------------------------------------- /sources/team-history-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/src/index.ts -------------------------------------------------------------------------------- /sources/team-history-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/team-history-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/team-history-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/team-history-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/testrails-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/bin/main -------------------------------------------------------------------------------- /sources/testrails-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/package.json -------------------------------------------------------------------------------- /sources/testrails-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/resources/spec.json -------------------------------------------------------------------------------- /sources/testrails-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/index.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/models.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/streams/case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/streams/case.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/streams/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/streams/result.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/streams/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/streams/run.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/streams/suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/streams/suite.ts -------------------------------------------------------------------------------- /sources/testrails-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/testrails-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/testrails-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/testrails-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/testrails-source/test_files/config.json -------------------------------------------------------------------------------- /sources/trello-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/bin/main -------------------------------------------------------------------------------- /sources/trello-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/package.json -------------------------------------------------------------------------------- /sources/trello-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/resources/spec.json -------------------------------------------------------------------------------- /sources/trello-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/index.ts -------------------------------------------------------------------------------- /sources/trello-source/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/models.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/actions.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/boards.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/cards.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/common.ts: -------------------------------------------------------------------------------- 1 | export type StreamSlice = { 2 | board: string; 3 | }; 4 | -------------------------------------------------------------------------------- /sources/trello-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/labels.ts -------------------------------------------------------------------------------- /sources/trello-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/trello-source/src/trello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/trello.ts -------------------------------------------------------------------------------- /sources/trello-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/trello-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/trello-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/trello-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/tromzo-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/bin/main -------------------------------------------------------------------------------- /sources/tromzo-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/package.json -------------------------------------------------------------------------------- /sources/tromzo-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/resources/spec.json -------------------------------------------------------------------------------- /sources/tromzo-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/src/index.ts -------------------------------------------------------------------------------- /sources/tromzo-source/src/streams/findings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/src/streams/findings.ts -------------------------------------------------------------------------------- /sources/tromzo-source/src/tromzo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/src/tromzo.ts -------------------------------------------------------------------------------- /sources/tromzo-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/tromzo-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/src/types.ts -------------------------------------------------------------------------------- /sources/tromzo-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/tromzo-source/test/streams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/test/streams.test.ts -------------------------------------------------------------------------------- /sources/tromzo-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/tromzo-source/test_files/findings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/tromzo-source/test_files/findings.json -------------------------------------------------------------------------------- /sources/vanta-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/README.md -------------------------------------------------------------------------------- /sources/vanta-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/bin/main -------------------------------------------------------------------------------- /sources/vanta-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/package.json -------------------------------------------------------------------------------- /sources/vanta-source/resources/Organization.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/resources/Organization.gql -------------------------------------------------------------------------------- /sources/vanta-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/resources/spec.json -------------------------------------------------------------------------------- /sources/vanta-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/index.ts -------------------------------------------------------------------------------- /sources/vanta-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/vanta-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/vanta-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/vanta-source/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/utils.ts -------------------------------------------------------------------------------- /sources/vanta-source/src/vanta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/src/vanta.ts -------------------------------------------------------------------------------- /sources/vanta-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/vanta-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/vanta-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/victorops-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/bin/main -------------------------------------------------------------------------------- /sources/victorops-source/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/bootstrap.md -------------------------------------------------------------------------------- /sources/victorops-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/package.json -------------------------------------------------------------------------------- /sources/victorops-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/resources/spec.json -------------------------------------------------------------------------------- /sources/victorops-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/index.ts -------------------------------------------------------------------------------- /sources/victorops-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/victorops-source/src/streams/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/streams/teams.ts -------------------------------------------------------------------------------- /sources/victorops-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/victorops-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/victorops-source/src/victorops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/src/victorops.ts -------------------------------------------------------------------------------- /sources/victorops-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/victorops-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/victorops-source/test_files/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/test_files/teams.json -------------------------------------------------------------------------------- /sources/victorops-source/test_files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/victorops-source/test_files/users.json -------------------------------------------------------------------------------- /sources/windsurf-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/README.md -------------------------------------------------------------------------------- /sources/windsurf-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/bin/main -------------------------------------------------------------------------------- /sources/windsurf-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/package.json -------------------------------------------------------------------------------- /sources/windsurf-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/resources/spec.json -------------------------------------------------------------------------------- /sources/windsurf-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/src/index.ts -------------------------------------------------------------------------------- /sources/windsurf-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/windsurf-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/windsurf-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/src/types.ts -------------------------------------------------------------------------------- /sources/windsurf-source/src/windsurf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/src/windsurf.ts -------------------------------------------------------------------------------- /sources/windsurf-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/windsurf-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/windsurf-source/test_files/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/test_files/catalog.json -------------------------------------------------------------------------------- /sources/windsurf-source/test_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/windsurf-source/test_files/config.json -------------------------------------------------------------------------------- /sources/wolken-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/bin/main -------------------------------------------------------------------------------- /sources/wolken-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/package.json -------------------------------------------------------------------------------- /sources/wolken-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/resources/spec.json -------------------------------------------------------------------------------- /sources/wolken-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/src/index.ts -------------------------------------------------------------------------------- /sources/wolken-source/src/streams/incidents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/src/streams/incidents.ts -------------------------------------------------------------------------------- /sources/wolken-source/src/streams/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/src/streams/users.ts -------------------------------------------------------------------------------- /sources/wolken-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/wolken-source/src/wolken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/src/wolken.ts -------------------------------------------------------------------------------- /sources/wolken-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/wolken-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/wolken-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/workday-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/README.md -------------------------------------------------------------------------------- /sources/workday-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/bin/main -------------------------------------------------------------------------------- /sources/workday-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/package.json -------------------------------------------------------------------------------- /sources/workday-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/resources/spec.json -------------------------------------------------------------------------------- /sources/workday-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/src/index.ts -------------------------------------------------------------------------------- /sources/workday-source/src/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/src/streams/index.ts -------------------------------------------------------------------------------- /sources/workday-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/workday-source/src/workday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/src/workday.ts -------------------------------------------------------------------------------- /sources/workday-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/workday-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/workday-source/test/workday.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/workday-source/test/workday.test.ts -------------------------------------------------------------------------------- /sources/workday-source/test_files/customreports_csv.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "A,foo,C\nB,bar,3\nD,baz,4\n" 3 | } -------------------------------------------------------------------------------- /sources/xray-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/bin/main -------------------------------------------------------------------------------- /sources/xray-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/package.json -------------------------------------------------------------------------------- /sources/xray-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/resources/spec.json -------------------------------------------------------------------------------- /sources/xray-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/index.ts -------------------------------------------------------------------------------- /sources/xray-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/xray-source/src/streams/testPlans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/streams/testPlans.ts -------------------------------------------------------------------------------- /sources/xray-source/src/streams/testRuns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/streams/testRuns.ts -------------------------------------------------------------------------------- /sources/xray-source/src/streams/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/streams/tests.ts -------------------------------------------------------------------------------- /sources/xray-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/xray-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/types.ts -------------------------------------------------------------------------------- /sources/xray-source/src/xray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/src/xray.ts -------------------------------------------------------------------------------- /sources/xray-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/xray-source/test/streams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test/streams.test.ts -------------------------------------------------------------------------------- /sources/xray-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test/tsconfig.json -------------------------------------------------------------------------------- /sources/xray-source/test_files/getPlans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test_files/getPlans.json -------------------------------------------------------------------------------- /sources/xray-source/test_files/getTestRuns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test_files/getTestRuns.json -------------------------------------------------------------------------------- /sources/xray-source/test_files/getTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/xray-source/test_files/getTests.json -------------------------------------------------------------------------------- /sources/zephyr-source/bin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/bin/main -------------------------------------------------------------------------------- /sources/zephyr-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/package.json -------------------------------------------------------------------------------- /sources/zephyr-source/resources/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/resources/spec.json -------------------------------------------------------------------------------- /sources/zephyr-source/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/src/index.ts -------------------------------------------------------------------------------- /sources/zephyr-source/src/streams/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/src/streams/common.ts -------------------------------------------------------------------------------- /sources/zephyr-source/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/src/tsconfig.json -------------------------------------------------------------------------------- /sources/zephyr-source/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/src/types.ts -------------------------------------------------------------------------------- /sources/zephyr-source/src/zephyr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/src/zephyr.ts -------------------------------------------------------------------------------- /sources/zephyr-source/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/test/index.test.ts -------------------------------------------------------------------------------- /sources/zephyr-source/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/sources/zephyr-source/test/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faros-ai/airbyte-connectors/HEAD/turbo.json --------------------------------------------------------------------------------