@squidcloud/client 1.0.50 → 1.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -79,7 +79,8 @@ export interface SnowflakeConnectionOptions {
|
|
|
79
79
|
export declare enum IntegrationCategory {
|
|
80
80
|
'database' = "database",
|
|
81
81
|
'api' = "api",
|
|
82
|
-
'observability' = "observability"
|
|
82
|
+
'observability' = "observability",
|
|
83
|
+
'crm' = "crm"
|
|
83
84
|
}
|
|
84
85
|
export declare enum IntegrationType {
|
|
85
86
|
'built_in_db' = "built_in_db",
|
|
@@ -92,7 +93,26 @@ export declare enum IntegrationType {
|
|
|
92
93
|
'graphql' = "graphql",
|
|
93
94
|
'snowflake' = "snowflake",
|
|
94
95
|
'datadog' = "datadog",
|
|
95
|
-
'newrelic' = "newrelic"
|
|
96
|
+
'newrelic' = "newrelic",
|
|
97
|
+
'algolia' = "algolia",
|
|
98
|
+
'elastic_observability' = "elastic_observability",
|
|
99
|
+
'elastic_search' = "elastic_search",
|
|
100
|
+
'elastic_enterprise_search' = "elastic_enterprise_search",
|
|
101
|
+
'sentry' = "sentry",
|
|
102
|
+
'sap_hana' = "sap_hana",
|
|
103
|
+
'salesforce_crm' = "salesforce_crm",
|
|
104
|
+
'documentdb' = "documentdb",
|
|
105
|
+
'dynamodb' = "dynamodb",
|
|
106
|
+
'cassandra' = "cassandra",
|
|
107
|
+
'clickhouse' = "clickhouse",
|
|
108
|
+
'alloydb' = "alloydb",
|
|
109
|
+
'spanner' = "spanner",
|
|
110
|
+
'db2' = "db2",
|
|
111
|
+
'mariadb' = "mariadb",
|
|
112
|
+
'oracledb' = "oracledb",
|
|
113
|
+
'redis' = "redis",
|
|
114
|
+
'xata' = "xata",
|
|
115
|
+
'azure_sql' = "azure_sql"
|
|
96
116
|
}
|
|
97
117
|
export type DatabaseIntegrationType = IntegrationType.built_in_db | IntegrationType.mongo | IntegrationType.mysql | IntegrationType.mssql | IntegrationType.postgres | IntegrationType.cockroach | IntegrationType.snowflake;
|
|
98
118
|
export type DatabaseIntegrationConfig = MySqlIntegrationConfig | MssqlIntegrationConfig | MongoIntegrationConfig | InternalIntegrationConfig | PostgresIntegrationConfig | CockroachIntegrationConfig | SnowflakeIntegrationConfig;
|