@duckcodeailabs/dql-notebook 1.6.12 → 1.6.13
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector-forms.d.ts","sourceRoot":"","sources":["../src/connector-forms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAEvE,MAAM,WAAW,oBAAoB;IACnC,GAAG,EAAE,MAAM,gBAAgB,GAAG,MAAM,CAAC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,GAAG,UAAU,CAAC;IAC1E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,OAAO,GAAG,WAAW,GAAG,WAAW,CAAC;IAC9C,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,oBAAoB,EAAE,CAAC;CAChC;
|
|
1
|
+
{"version":3,"file":"connector-forms.d.ts","sourceRoot":"","sources":["../src/connector-forms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAEvE,MAAM,WAAW,oBAAoB;IACnC,GAAG,EAAE,MAAM,gBAAgB,GAAG,MAAM,CAAC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,GAAG,UAAU,CAAC;IAC1E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,OAAO,GAAG,WAAW,GAAG,WAAW,CAAC;IAC9C,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,oBAAoB,EAAE,CAAC;CAChC;AAsGD,wBAAgB,uBAAuB,IAAI,mBAAmB,EAAE,CAE/D"}
|
package/dist/connector-forms.js
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
const schemas = [
|
|
2
|
-
{
|
|
3
|
-
driver: 'file',
|
|
4
|
-
label: 'Files / DuckDB memory',
|
|
5
|
-
category: 'local',
|
|
6
|
-
description: 'Query CSV, Parquet, and JSON files with DuckDB locally.',
|
|
7
|
-
fields: [
|
|
8
|
-
{ key: 'filepath', label: 'DuckDB file path', type: 'text', placeholder: ':memory:' },
|
|
9
|
-
],
|
|
10
|
-
},
|
|
11
2
|
{
|
|
12
3
|
driver: 'duckdb',
|
|
13
4
|
label: 'DuckDB',
|
|
@@ -17,50 +8,6 @@ const schemas = [
|
|
|
17
8
|
{ key: 'filepath', label: 'DuckDB file path', type: 'text', placeholder: './local/dev.duckdb', required: true },
|
|
18
9
|
],
|
|
19
10
|
},
|
|
20
|
-
{
|
|
21
|
-
driver: 'sqlite',
|
|
22
|
-
label: 'SQLite',
|
|
23
|
-
category: 'local',
|
|
24
|
-
description: 'Connect to a local SQLite database file.',
|
|
25
|
-
fields: [
|
|
26
|
-
{ key: 'filepath', label: 'SQLite file path', type: 'text', placeholder: './local/dev.sqlite', required: true },
|
|
27
|
-
],
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
driver: 'postgresql',
|
|
31
|
-
label: 'PostgreSQL',
|
|
32
|
-
category: 'warehouse',
|
|
33
|
-
description: 'Standard PostgreSQL analytics databases and services.',
|
|
34
|
-
fields: warehouseFields(5432),
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
driver: 'mysql',
|
|
38
|
-
label: 'MySQL',
|
|
39
|
-
category: 'warehouse',
|
|
40
|
-
description: 'MySQL-compatible databases and managed services.',
|
|
41
|
-
fields: warehouseFields(3306),
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
driver: 'mssql',
|
|
45
|
-
label: 'SQL Server',
|
|
46
|
-
category: 'warehouse',
|
|
47
|
-
description: 'Microsoft SQL Server over the TDS protocol.',
|
|
48
|
-
fields: warehouseFields(1433),
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
driver: 'fabric',
|
|
52
|
-
label: 'Microsoft Fabric',
|
|
53
|
-
category: 'lakehouse',
|
|
54
|
-
description: 'Fabric warehouse and lakehouse SQL endpoints.',
|
|
55
|
-
fields: warehouseFields(1433),
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
driver: 'redshift',
|
|
59
|
-
label: 'Amazon Redshift',
|
|
60
|
-
category: 'warehouse',
|
|
61
|
-
description: 'Redshift clusters and serverless endpoints.',
|
|
62
|
-
fields: warehouseFields(5439),
|
|
63
|
-
},
|
|
64
11
|
{
|
|
65
12
|
driver: 'snowflake',
|
|
66
13
|
label: 'Snowflake',
|
|
@@ -78,53 +25,50 @@ const schemas = [
|
|
|
78
25
|
type: 'select',
|
|
79
26
|
options: [
|
|
80
27
|
{ value: 'password', label: 'Password' },
|
|
28
|
+
{ value: 'mfa', label: 'Password + MFA' },
|
|
81
29
|
{ value: 'key_pair', label: 'Key pair / private key' },
|
|
82
30
|
{ value: 'external_browser', label: 'SSO / external browser' },
|
|
83
31
|
{ value: 'oauth', label: 'OAuth token' },
|
|
32
|
+
{ value: 'oauth_authorization_code', label: 'OAuth authorization code' },
|
|
33
|
+
{ value: 'oauth_client_credentials', label: 'OAuth client credentials' },
|
|
34
|
+
{ value: 'programmatic_access_token', label: 'Programmatic access token' },
|
|
35
|
+
{ value: 'workload_identity', label: 'Workload identity' },
|
|
84
36
|
],
|
|
85
37
|
},
|
|
86
|
-
{ key: 'password', label: 'Password
|
|
38
|
+
{ key: 'password', label: 'Password', type: 'password' },
|
|
39
|
+
{ key: 'token', label: 'Token', type: 'password', helpText: 'OAuth, programmatic access token, or OIDC workload identity token.' },
|
|
87
40
|
{ key: 'privateKeyPath', label: 'Private key file path', type: 'text', placeholder: '~/.ssh/snowflake_key.p8' },
|
|
88
41
|
{ key: 'privateKey', label: 'Private key PEM', type: 'textarea', helpText: 'Paste PEM only when a key file cannot be referenced.' },
|
|
89
42
|
{ key: 'privateKeyPassphrase', label: 'Private key passphrase', type: 'password' },
|
|
90
|
-
{ key: 'authenticator', label: 'Authenticator override', type: 'text', placeholder: 'EXTERNALBROWSER or
|
|
43
|
+
{ key: 'authenticator', label: 'Authenticator override', type: 'text', placeholder: 'EXTERNALBROWSER, OAUTH, WORKLOAD_IDENTITY, or Okta URL' },
|
|
91
44
|
{ key: 'role', label: 'Role', type: 'text' },
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
{ key: '
|
|
101
|
-
{ key: '
|
|
102
|
-
{
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
},
|
|
112
|
-
{ key: '
|
|
113
|
-
{ key: '
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
category: 'warehouse',
|
|
120
|
-
description: 'ClickHouse HTTP or cloud service endpoints.',
|
|
121
|
-
fields: [
|
|
122
|
-
{ key: 'host', label: 'Host', type: 'text', required: true },
|
|
123
|
-
{ key: 'port', label: 'Port', type: 'number', placeholder: '8443' },
|
|
124
|
-
{ key: 'database', label: 'Database', type: 'text' },
|
|
125
|
-
{ key: 'username', label: 'Username', type: 'text' },
|
|
126
|
-
{ key: 'password', label: 'Password', type: 'password' },
|
|
127
|
-
{ key: 'ssl', label: 'Use TLS', type: 'checkbox' },
|
|
45
|
+
{ key: 'accessUrl', label: 'Access URL', type: 'text' },
|
|
46
|
+
{ key: 'application', label: 'Application name', type: 'text', placeholder: 'DQL' },
|
|
47
|
+
{ key: 'queryTag', label: 'Query tag', type: 'text', placeholder: 'team=analytics;app=dql' },
|
|
48
|
+
{ key: 'passcode', label: 'MFA passcode', type: 'password' },
|
|
49
|
+
{ key: 'passcodeInPassword', label: 'MFA passcode is appended to password', type: 'checkbox' },
|
|
50
|
+
{ key: 'clientRequestMFAToken', label: 'Reuse cached MFA token', type: 'checkbox' },
|
|
51
|
+
{ key: 'clientStoreTemporaryCredential', label: 'Cache SSO token locally', type: 'checkbox' },
|
|
52
|
+
{ key: 'clientSessionKeepAlive', label: 'Keep session alive', type: 'checkbox' },
|
|
53
|
+
{ key: 'clientSessionKeepAliveHeartbeatFrequency', label: 'Keep-alive heartbeat seconds', type: 'number', placeholder: '3600' },
|
|
54
|
+
{ key: 'credentialCacheDir', label: 'Credential cache directory', type: 'text' },
|
|
55
|
+
{ key: 'browserActionTimeout', label: 'Browser SSO timeout ms', type: 'number', placeholder: '120000' },
|
|
56
|
+
{ key: 'keepAlive', label: 'Socket keep-alive', type: 'checkbox' },
|
|
57
|
+
{ key: 'timeout', label: 'Connection timeout ms', type: 'number', placeholder: '60000' },
|
|
58
|
+
{ key: 'proxyHost', label: 'Proxy host', type: 'text' },
|
|
59
|
+
{ key: 'proxyPort', label: 'Proxy port', type: 'number' },
|
|
60
|
+
{ key: 'proxyProtocol', label: 'Proxy protocol', type: 'text', placeholder: 'https' },
|
|
61
|
+
{ key: 'proxyUser', label: 'Proxy user', type: 'text' },
|
|
62
|
+
{ key: 'proxyPassword', label: 'Proxy password', type: 'password' },
|
|
63
|
+
{ key: 'noProxy', label: 'No proxy hosts', type: 'text', placeholder: '*.amazonaws.com|*.internal' },
|
|
64
|
+
{ key: 'oauthClientId', label: 'OAuth client ID', type: 'text' },
|
|
65
|
+
{ key: 'oauthClientSecret', label: 'OAuth client secret', type: 'password' },
|
|
66
|
+
{ key: 'oauthAuthorizationUrl', label: 'OAuth authorization URL', type: 'text' },
|
|
67
|
+
{ key: 'oauthTokenRequestUrl', label: 'OAuth token request URL', type: 'text' },
|
|
68
|
+
{ key: 'oauthScope', label: 'OAuth scope', type: 'text' },
|
|
69
|
+
{ key: 'oauthRedirectUri', label: 'OAuth redirect URI', type: 'text' },
|
|
70
|
+
{ key: 'workloadIdentityProvider', label: 'Workload identity provider', type: 'text', placeholder: 'AWS, AZURE, GCP, or OIDC' },
|
|
71
|
+
{ key: 'workloadIdentityAzureClientId', label: 'Azure client ID', type: 'text' },
|
|
128
72
|
],
|
|
129
73
|
},
|
|
130
74
|
{
|
|
@@ -136,65 +80,24 @@ const schemas = [
|
|
|
136
80
|
{ key: 'host', label: 'Server hostname', type: 'text', required: true },
|
|
137
81
|
{ key: 'database', label: 'Catalog / database', type: 'text' },
|
|
138
82
|
{ key: 'schema', label: 'Schema', type: 'text' },
|
|
139
|
-
{ key: 'warehouse', label: '
|
|
140
|
-
{ key: '
|
|
141
|
-
{ key: 'token', label: 'Access token', type: 'password', required: true },
|
|
142
|
-
],
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
driver: 'athena',
|
|
146
|
-
label: 'Amazon Athena',
|
|
147
|
-
category: 'lakehouse',
|
|
148
|
-
description: 'Athena workgroup-backed query execution via AWS credentials.',
|
|
149
|
-
fields: [
|
|
150
|
-
{ key: 'host', label: 'Region', type: 'text', placeholder: 'us-east-1', required: true },
|
|
151
|
-
{ key: 'database', label: 'Database', type: 'text', required: true },
|
|
152
|
-
{ key: 'outputLocation', label: 'S3 output location', type: 'text', placeholder: 's3://bucket/query-results/', required: true },
|
|
153
|
-
{ key: 'workgroup', label: 'Workgroup', type: 'text' },
|
|
83
|
+
{ key: 'warehouse', label: 'Warehouse ID', type: 'text', helpText: 'Use the SQL warehouse ID when you have it.' },
|
|
84
|
+
{ key: 'httpPath', label: 'HTTP path', type: 'text', placeholder: '/sql/1.0/warehouses/abc123', helpText: 'Paste the dbt/JDBC HTTP path and DQL will extract the warehouse ID.' },
|
|
154
85
|
{
|
|
155
86
|
key: 'authMethod',
|
|
156
87
|
label: 'Authentication',
|
|
157
88
|
type: 'select',
|
|
158
89
|
options: [
|
|
159
|
-
{ value: '
|
|
160
|
-
{ value: '
|
|
161
|
-
{ value: 'aws_access_key', label: 'Access key / session token' },
|
|
90
|
+
{ value: 'token', label: 'Access token' },
|
|
91
|
+
{ value: 'oauth', label: 'OAuth bearer token' },
|
|
162
92
|
],
|
|
163
93
|
},
|
|
164
|
-
{ key: '
|
|
165
|
-
{ key: '
|
|
166
|
-
{ key: '
|
|
167
|
-
{ key: 'sessionToken', label: 'Session token', type: 'password' },
|
|
168
|
-
],
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
driver: 'trino',
|
|
172
|
-
label: 'Trino',
|
|
173
|
-
category: 'lakehouse',
|
|
174
|
-
description: 'Trino / Starburst clusters exposed over HTTP.',
|
|
175
|
-
fields: [
|
|
176
|
-
{ key: 'host', label: 'Host', type: 'text', required: true },
|
|
177
|
-
{ key: 'port', label: 'Port', type: 'number', placeholder: '8080' },
|
|
178
|
-
{ key: 'database', label: 'Catalog', type: 'text', required: true },
|
|
179
|
-
{ key: 'schema', label: 'Schema', type: 'text', required: true },
|
|
180
|
-
{ key: 'username', label: 'Username', type: 'text' },
|
|
181
|
-
{ key: 'password', label: 'Password', type: 'password' },
|
|
182
|
-
{ key: 'ssl', label: 'Use TLS', type: 'checkbox' },
|
|
94
|
+
{ key: 'token', label: 'Bearer token', type: 'password', required: true, helpText: 'Use an OAuth token for automation when possible, or a service-principal PAT.' },
|
|
95
|
+
{ key: 'waitTimeout', label: 'Statement wait timeout', type: 'text', placeholder: '50s' },
|
|
96
|
+
{ key: 'byteLimit', label: 'Inline byte limit', type: 'number', placeholder: '25000000' },
|
|
183
97
|
],
|
|
184
98
|
},
|
|
185
99
|
];
|
|
186
100
|
export function getConnectorFormSchemas() {
|
|
187
101
|
return schemas;
|
|
188
102
|
}
|
|
189
|
-
function warehouseFields(defaultPort) {
|
|
190
|
-
return [
|
|
191
|
-
{ key: 'host', label: 'Host', type: 'text', required: true },
|
|
192
|
-
{ key: 'port', label: 'Port', type: 'number', placeholder: String(defaultPort) },
|
|
193
|
-
{ key: 'database', label: 'Database', type: 'text', required: true },
|
|
194
|
-
{ key: 'username', label: 'Username', type: 'text' },
|
|
195
|
-
{ key: 'password', label: 'Password', type: 'password' },
|
|
196
|
-
{ key: 'ssl', label: 'Use TLS', type: 'checkbox' },
|
|
197
|
-
{ key: 'connectionString', label: 'Connection string', type: 'text' },
|
|
198
|
-
];
|
|
199
|
-
}
|
|
200
103
|
//# sourceMappingURL=connector-forms.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector-forms.js","sourceRoot":"","sources":["../src/connector-forms.ts"],"names":[],"mappings":"AAoBA,MAAM,OAAO,GAA0B;IACrC;QACE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"connector-forms.js","sourceRoot":"","sources":["../src/connector-forms.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duckcodeailabs/dql-notebook",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13",
|
|
4
4
|
"description": "Notebook document model and execution helpers for DQL",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@duckcodeailabs/dql-core": "^1.6.
|
|
28
|
-
"@duckcodeailabs/dql-connectors": "^1.6.
|
|
27
|
+
"@duckcodeailabs/dql-core": "^1.6.13",
|
|
28
|
+
"@duckcodeailabs/dql-connectors": "^1.6.13"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|