- 
                Notifications
    You must be signed in to change notification settings 
- Fork 4.3k
chore(glue-alpha): add 30 missing connection types including SNOWFLAKE #35330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 5 commits
266d536
              5ff4b84
              3057362
              780afe6
              5831745
              1ddaadf
              d78e338
              dddb5b9
              13f10b5
              7b37014
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|  | @@ -56,26 +56,86 @@ export class ConnectionType { | |||||
| */ | ||||||
| public static readonly CUSTOM = new ConnectionType('CUSTOM'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Adobe Analytics. | ||||||
| */ | ||||||
| public static readonly ADOBEANALYTICS = new ConnectionType('ADOBEANALYTICS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Asana. | ||||||
| */ | ||||||
| public static readonly ASANA = new ConnectionType('ASANA'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Blackbaud Raiser's Edge NXT. | ||||||
| */ | ||||||
| public static readonly BLACKBAUDRAISEREDGENXT = new ConnectionType('BLACKBAUDRAISEREDGENXT'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to CircleCI. | ||||||
| */ | ||||||
| public static readonly CIRCLECI = new ConnectionType('CIRCLECI'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Datadog. | ||||||
| */ | ||||||
| public static readonly DATADOG = new ConnectionType('DATADOG'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to DocuSign Monitor. | ||||||
| */ | ||||||
| public static readonly DOCUSIGNMONITOR = new ConnectionType('DOCUSIGNMONITOR'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Dynatrace. | ||||||
| */ | ||||||
| public static readonly DYNATRACE = new ConnectionType('DYNATRACE'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Facebook Ads. | ||||||
| */ | ||||||
| public static readonly FACEBOOKADS = new ConnectionType('FACEBOOKADS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Ads. | ||||||
| * Designates a connection to Facebook Page Insights. | ||||||
| */ | ||||||
| public static readonly GOOGLEADS = new ConnectionType('GOOGLEADS'); | ||||||
| public static readonly FACEBOOKPAGEINSIGHTS = new ConnectionType('FACEBOOKPAGEINSIGHTS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Sheets. | ||||||
| * Designates a connection to Freshdesk. | ||||||
| */ | ||||||
| public static readonly GOOGLESHEETS = new ConnectionType('GOOGLESHEETS'); | ||||||
| public static readonly FRESHDESK = new ConnectionType('FRESHDESK'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Freshsales. | ||||||
| */ | ||||||
| public static readonly FRESHSALES = new ConnectionType('FRESHSALES'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to GitLab. | ||||||
| */ | ||||||
| public static readonly GITLAB = new ConnectionType('GITLAB'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Ads. | ||||||
| */ | ||||||
| public static readonly GOOGLEADS = new ConnectionType('GOOGLEADS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Analytics 4. | ||||||
| */ | ||||||
| public static readonly GOOGLEANALYTICS4 = new ConnectionType('GOOGLEANALYTICS4'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Search Console. | ||||||
| */ | ||||||
| public static readonly GOOGLESEARCHCONSOLE = new ConnectionType('GOOGLESEARCHCONSOLE'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Google Sheets. | ||||||
| */ | ||||||
| public static readonly GOOGLESHEETS = new ConnectionType('GOOGLESHEETS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to HubSpot. | ||||||
| */ | ||||||
|  | @@ -96,21 +156,76 @@ export class ConnectionType { | |||||
| */ | ||||||
| public static readonly JIRACLOUD = new ConnectionType('JIRACLOUD'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to LinkedIn. | ||||||
| */ | ||||||
| public static readonly LINKEDIN = new ConnectionType('LINKEDIN'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Mailchimp. | ||||||
| */ | ||||||
| public static readonly MAILCHIMP = new ConnectionType('MAILCHIMP'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Adobe Marketo Engage. | ||||||
| */ | ||||||
| public static readonly MARKETO = new ConnectionType('MARKETO'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Microsoft Dynamics 365 Finance and Operations. | ||||||
| */ | ||||||
| public static readonly MICROSOFTDYNAMIC365FINANCEANDOPS = new ConnectionType('MICROSOFTDYNAMIC365FINANCEANDOPS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Microsoft Teams. | ||||||
| */ | ||||||
| public static readonly MICROSOFTTEAMS = new ConnectionType('MICROSOFTTEAMS'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Mixpanel. | ||||||
| */ | ||||||
| public static readonly MIXPANEL = new ConnectionType('MIXPANEL'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Oracle NetSuite. | ||||||
| */ | ||||||
| public static readonly NETSUITEERP = new ConnectionType('NETSUITEERP'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to PayPal. | ||||||
| */ | ||||||
| public static readonly PAYPAL = new ConnectionType('PAYPAL'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Pendo. | ||||||
| */ | ||||||
| public static readonly PENDO = new ConnectionType('PENDO'); | ||||||
|  | ||||||
| /** | ||||||
| * Designates a connection to Pipedrive. | ||||||
| */ | ||||||
| public static readonly PIPEDIVE = new ConnectionType('PIPEDIVE'); | ||||||
|          | ||||||
| public static readonly PIPEDIVE = new ConnectionType('PIPEDIVE'); | |
| public static readonly PIPEDRIVE = new ConnectionType('PIPEDIVE'); | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a confusion on this part, where existing enum seems like to be deleted, but it is only moved to a different place. Could you keep the order on this part?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR sorts all of them alphabetically.