@squadbase/vite-server 0.1.12-dev.a9ac647 → 0.1.17-dev.3b633bb
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.
- package/dist/cli/index.js +14375 -1652
- package/dist/connectors/airtable-oauth.js +282 -46
- package/dist/connectors/airtable.js +319 -51
- package/dist/connectors/amplitude.js +322 -47
- package/dist/connectors/anthropic.js +135 -47
- package/dist/connectors/asana.js +327 -49
- package/dist/connectors/attio.js +302 -49
- package/dist/connectors/aws-billing.js +287 -46
- package/dist/connectors/azure-sql.js +421 -102
- package/dist/connectors/backlog-api-key.js +317 -47
- package/dist/connectors/clickup.js +338 -49
- package/dist/connectors/cosmosdb.js +305 -50
- package/dist/connectors/customerio.js +319 -47
- package/dist/connectors/dbt.js +340 -47
- package/dist/connectors/freshdesk.js +342 -53
- package/dist/connectors/freshsales.js +333 -52
- package/dist/connectors/freshservice.js +361 -53
- package/dist/connectors/gamma.js +327 -52
- package/dist/connectors/gemini.js +134 -47
- package/dist/connectors/github.js +386 -49
- package/dist/connectors/gmail-oauth.js +204 -7
- package/dist/connectors/gmail.js +350 -47
- package/dist/connectors/google-ads.js +288 -46
- package/dist/connectors/google-analytics-oauth.js +310 -46
- package/dist/connectors/google-analytics.js +547 -87
- package/dist/connectors/google-audit-log.js +438 -47
- package/dist/connectors/google-calendar-oauth.js +259 -46
- package/dist/connectors/google-calendar.js +359 -47
- package/dist/connectors/google-docs.js +220 -6
- package/dist/connectors/google-drive.js +262 -5
- package/dist/connectors/google-search-console-oauth.js +256 -46
- package/dist/connectors/google-sheets.js +272 -47
- package/dist/connectors/google-slides.js +205 -6
- package/dist/connectors/grafana.js +332 -49
- package/dist/connectors/hubspot-oauth.js +208 -5
- package/dist/connectors/hubspot.js +306 -49
- package/dist/connectors/influxdb.js +416 -51
- package/dist/connectors/intercom-oauth.js +210 -5
- package/dist/connectors/intercom.js +302 -49
- package/dist/connectors/jdbc.js +762 -110
- package/dist/connectors/jira-api-key.js +326 -47
- package/dist/connectors/kintone-api-token.js +281 -47
- package/dist/connectors/kintone.js +328 -47
- package/dist/connectors/linear.js +330 -49
- package/dist/connectors/linkedin-ads.js +268 -50
- package/dist/connectors/mailchimp-oauth.js +268 -46
- package/dist/connectors/mailchimp.js +320 -49
- package/dist/connectors/meta-ads-oauth.js +273 -48
- package/dist/connectors/meta-ads.js +285 -50
- package/dist/connectors/mixpanel.js +338 -47
- package/dist/connectors/monday.js +360 -49
- package/dist/connectors/mongodb.js +319 -57
- package/dist/connectors/notion-oauth.js +231 -5
- package/dist/connectors/notion.js +323 -51
- package/dist/connectors/openai.js +134 -47
- package/dist/connectors/oracle.js +454 -103
- package/dist/connectors/outlook-oauth.js +204 -5
- package/dist/connectors/powerbi-oauth.js +498 -5
- package/dist/connectors/salesforce.js +384 -49
- package/dist/connectors/semrush.js +609 -49
- package/dist/connectors/sentry.js +289 -50
- package/dist/connectors/shopify-oauth.js +187 -5
- package/dist/connectors/shopify.js +357 -47
- package/dist/connectors/sqlserver.js +415 -102
- package/dist/connectors/stripe-api-key.js +269 -46
- package/dist/connectors/stripe-oauth.js +202 -5
- package/dist/connectors/supabase.js +303 -48
- package/dist/connectors/tableau.js +536 -163
- package/dist/connectors/tiktok-ads.js +279 -48
- package/dist/connectors/wix-store.js +320 -49
- package/dist/connectors/zendesk-oauth.js +239 -5
- package/dist/connectors/zendesk.js +358 -47
- package/dist/index.d.ts +149 -1
- package/dist/index.js +15057 -2117
- package/dist/main.js +15005 -2073
- package/dist/vite-plugin.js +14752 -2019
- package/package.json +1 -1
|
@@ -1,101 +1,64 @@
|
|
|
1
|
-
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
description;
|
|
6
|
-
envVarBaseKey;
|
|
7
|
-
type;
|
|
8
|
-
secret;
|
|
9
|
-
required;
|
|
10
|
-
constructor(config) {
|
|
11
|
-
this.slug = config.slug;
|
|
12
|
-
this.name = config.name;
|
|
13
|
-
this.description = config.description;
|
|
14
|
-
this.envVarBaseKey = config.envVarBaseKey;
|
|
15
|
-
this.type = config.type;
|
|
16
|
-
this.secret = config.secret;
|
|
17
|
-
this.required = config.required;
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Get the parameter value from a ConnectorConnectionObject.
|
|
21
|
-
*/
|
|
22
|
-
getValue(connection2) {
|
|
23
|
-
const param = connection2.parameters.find(
|
|
24
|
-
(p) => p.parameterSlug === this.slug
|
|
25
|
-
);
|
|
26
|
-
if (!param || param.value == null) {
|
|
27
|
-
throw new Error(
|
|
28
|
-
`Parameter "${this.slug}" not found or has no value in connection "${connection2.id}"`
|
|
29
|
-
);
|
|
30
|
-
}
|
|
31
|
-
return param.value;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Try to get the parameter value. Returns undefined if not found (for optional params).
|
|
35
|
-
*/
|
|
36
|
-
tryGetValue(connection2) {
|
|
37
|
-
const param = connection2.parameters.find(
|
|
38
|
-
(p) => p.parameterSlug === this.slug
|
|
39
|
-
);
|
|
40
|
-
if (!param || param.value == null) return void 0;
|
|
41
|
-
return param.value;
|
|
42
|
-
}
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
3
|
+
var __esm = (fn, res) => function __init() {
|
|
4
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
43
5
|
};
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
sshHost: new ParameterDefinition({
|
|
48
|
-
slug: "ssh-host",
|
|
49
|
-
name: "SSH Tunnel Host",
|
|
50
|
-
description: "Optional. Hostname of the SSH bastion to tunnel through. Leave empty to connect directly.",
|
|
51
|
-
envVarBaseKey: "SSH_TUNNEL_HOST",
|
|
52
|
-
type: "text",
|
|
53
|
-
secret: false,
|
|
54
|
-
required: false
|
|
55
|
-
}),
|
|
56
|
-
sshPort: new ParameterDefinition({
|
|
57
|
-
slug: "ssh-port",
|
|
58
|
-
name: "SSH Tunnel Port",
|
|
59
|
-
description: "Optional. SSH port of the bastion host (default: 22).",
|
|
60
|
-
envVarBaseKey: "SSH_TUNNEL_PORT",
|
|
61
|
-
type: "text",
|
|
62
|
-
secret: false,
|
|
63
|
-
required: false
|
|
64
|
-
}),
|
|
65
|
-
sshUsername: new ParameterDefinition({
|
|
66
|
-
slug: "ssh-username",
|
|
67
|
-
name: "SSH Tunnel Username",
|
|
68
|
-
description: "Optional. Username for SSH authentication. Required when SSH Tunnel Host is set.",
|
|
69
|
-
envVarBaseKey: "SSH_TUNNEL_USERNAME",
|
|
70
|
-
type: "text",
|
|
71
|
-
secret: false,
|
|
72
|
-
required: false
|
|
73
|
-
}),
|
|
74
|
-
sshPrivateKeyBase64: new ParameterDefinition({
|
|
75
|
-
slug: "ssh-private-key-base64",
|
|
76
|
-
name: "SSH Private Key",
|
|
77
|
-
description: "Optional. Private key (PEM, base64-encoded) used for SSH authentication. Required when SSH Tunnel Host is set.",
|
|
78
|
-
envVarBaseKey: "SSH_TUNNEL_PRIVATE_KEY_BASE64",
|
|
79
|
-
type: "base64EncodedText",
|
|
80
|
-
secret: true,
|
|
81
|
-
required: false
|
|
82
|
-
}),
|
|
83
|
-
sshPassphrase: new ParameterDefinition({
|
|
84
|
-
slug: "ssh-passphrase",
|
|
85
|
-
name: "SSH Private Key Passphrase",
|
|
86
|
-
description: "Optional. Passphrase for the SSH private key, if it is encrypted.",
|
|
87
|
-
envVarBaseKey: "SSH_TUNNEL_PASSPHRASE",
|
|
88
|
-
type: "text",
|
|
89
|
-
secret: true,
|
|
90
|
-
required: false
|
|
91
|
-
})
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
92
9
|
};
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
10
|
+
|
|
11
|
+
// ../connectors/src/parameter-definition.ts
|
|
12
|
+
var ParameterDefinition;
|
|
13
|
+
var init_parameter_definition = __esm({
|
|
14
|
+
"../connectors/src/parameter-definition.ts"() {
|
|
15
|
+
"use strict";
|
|
16
|
+
ParameterDefinition = class {
|
|
17
|
+
slug;
|
|
18
|
+
name;
|
|
19
|
+
description;
|
|
20
|
+
envVarBaseKey;
|
|
21
|
+
type;
|
|
22
|
+
secret;
|
|
23
|
+
required;
|
|
24
|
+
constructor(config) {
|
|
25
|
+
this.slug = config.slug;
|
|
26
|
+
this.name = config.name;
|
|
27
|
+
this.description = config.description;
|
|
28
|
+
this.envVarBaseKey = config.envVarBaseKey;
|
|
29
|
+
this.type = config.type;
|
|
30
|
+
this.secret = config.secret;
|
|
31
|
+
this.required = config.required;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Get the parameter value from a ConnectorConnectionObject.
|
|
35
|
+
*/
|
|
36
|
+
getValue(connection2) {
|
|
37
|
+
const param = connection2.parameters.find(
|
|
38
|
+
(p) => p.parameterSlug === this.slug
|
|
39
|
+
);
|
|
40
|
+
if (!param || param.value == null) {
|
|
41
|
+
throw new Error(
|
|
42
|
+
`Parameter "${this.slug}" not found or has no value in connection "${connection2.id}"`
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
return param.value;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Try to get the parameter value. Returns undefined if not found (for optional params).
|
|
49
|
+
*/
|
|
50
|
+
tryGetValue(connection2) {
|
|
51
|
+
const param = connection2.parameters.find(
|
|
52
|
+
(p) => p.parameterSlug === this.slug
|
|
53
|
+
);
|
|
54
|
+
if (!param || param.value == null) return void 0;
|
|
55
|
+
return param.value;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
97
58
|
}
|
|
98
59
|
});
|
|
60
|
+
|
|
61
|
+
// ../connectors/src/lib/ssh-tunnel.ts
|
|
99
62
|
function connectionParamsToRecord(connection2) {
|
|
100
63
|
const out = {};
|
|
101
64
|
for (const p of connection2.parameters) {
|
|
@@ -166,11 +129,68 @@ async function maybeOpenSshTunnelHostPort(params, dbHost, dbPort) {
|
|
|
166
129
|
}
|
|
167
130
|
};
|
|
168
131
|
}
|
|
132
|
+
var sshTunnelParameters, NOOP_TUNNEL_HOSTPORT;
|
|
133
|
+
var init_ssh_tunnel = __esm({
|
|
134
|
+
"../connectors/src/lib/ssh-tunnel.ts"() {
|
|
135
|
+
"use strict";
|
|
136
|
+
init_parameter_definition();
|
|
137
|
+
sshTunnelParameters = {
|
|
138
|
+
sshHost: new ParameterDefinition({
|
|
139
|
+
slug: "ssh-host",
|
|
140
|
+
name: "SSH Tunnel Host",
|
|
141
|
+
description: "Optional. Hostname of the SSH bastion to tunnel through. Leave empty to connect directly.",
|
|
142
|
+
envVarBaseKey: "SSH_TUNNEL_HOST",
|
|
143
|
+
type: "text",
|
|
144
|
+
secret: false,
|
|
145
|
+
required: false
|
|
146
|
+
}),
|
|
147
|
+
sshPort: new ParameterDefinition({
|
|
148
|
+
slug: "ssh-port",
|
|
149
|
+
name: "SSH Tunnel Port",
|
|
150
|
+
description: "Optional. SSH port of the bastion host (default: 22).",
|
|
151
|
+
envVarBaseKey: "SSH_TUNNEL_PORT",
|
|
152
|
+
type: "text",
|
|
153
|
+
secret: false,
|
|
154
|
+
required: false
|
|
155
|
+
}),
|
|
156
|
+
sshUsername: new ParameterDefinition({
|
|
157
|
+
slug: "ssh-username",
|
|
158
|
+
name: "SSH Tunnel Username",
|
|
159
|
+
description: "Optional. Username for SSH authentication. Required when SSH Tunnel Host is set.",
|
|
160
|
+
envVarBaseKey: "SSH_TUNNEL_USERNAME",
|
|
161
|
+
type: "text",
|
|
162
|
+
secret: false,
|
|
163
|
+
required: false
|
|
164
|
+
}),
|
|
165
|
+
sshPrivateKeyBase64: new ParameterDefinition({
|
|
166
|
+
slug: "ssh-private-key-base64",
|
|
167
|
+
name: "SSH Private Key",
|
|
168
|
+
description: "Optional. Private key (PEM, base64-encoded) used for SSH authentication. Required when SSH Tunnel Host is set.",
|
|
169
|
+
envVarBaseKey: "SSH_TUNNEL_PRIVATE_KEY_BASE64",
|
|
170
|
+
type: "base64EncodedText",
|
|
171
|
+
secret: true,
|
|
172
|
+
required: false
|
|
173
|
+
}),
|
|
174
|
+
sshPassphrase: new ParameterDefinition({
|
|
175
|
+
slug: "ssh-passphrase",
|
|
176
|
+
name: "SSH Private Key Passphrase",
|
|
177
|
+
description: "Optional. Passphrase for the SSH private key, if it is encrypted.",
|
|
178
|
+
envVarBaseKey: "SSH_TUNNEL_PASSPHRASE",
|
|
179
|
+
type: "text",
|
|
180
|
+
secret: true,
|
|
181
|
+
required: false
|
|
182
|
+
})
|
|
183
|
+
};
|
|
184
|
+
NOOP_TUNNEL_HOSTPORT = (host, port) => ({
|
|
185
|
+
host,
|
|
186
|
+
port,
|
|
187
|
+
close: async () => {
|
|
188
|
+
}
|
|
189
|
+
});
|
|
190
|
+
}
|
|
191
|
+
});
|
|
169
192
|
|
|
170
193
|
// ../connectors/src/connectors/sqlserver/utils.ts
|
|
171
|
-
var SQLSERVER_PREFIX_RE = /^(?:jdbc:)?sqlserver:\/\//i;
|
|
172
|
-
var TRUE_VALUES = /* @__PURE__ */ new Set(["true", "1", "yes"]);
|
|
173
|
-
var FALSE_VALUES = /* @__PURE__ */ new Set(["false", "0", "no"]);
|
|
174
194
|
function parseBoolean(value) {
|
|
175
195
|
if (value == null) return void 0;
|
|
176
196
|
const lower = value.toLowerCase();
|
|
@@ -237,8 +257,34 @@ function toMssqlConfig(parsed, defaults = {}) {
|
|
|
237
257
|
function redactSqlServerUrl(jdbcUrl) {
|
|
238
258
|
return jdbcUrl.replace(/(:\/\/)([^@/;]+)@/, "$1***@").replace(/(password\s*=\s*)([^;]+)/gi, "$1***");
|
|
239
259
|
}
|
|
260
|
+
async function runSqlServerSetupQuery(params, sql, forceEncrypt) {
|
|
261
|
+
const { runMssqlQuery: runMssqlQuery2 } = await Promise.resolve().then(() => (init_mssql_runner(), mssql_runner_exports));
|
|
262
|
+
const parsed = parseSqlServerJdbcUrl(params["jdbc-url"] ?? "", {
|
|
263
|
+
username: params["username"],
|
|
264
|
+
password: params["password"]
|
|
265
|
+
});
|
|
266
|
+
const result = await runMssqlQuery2(parsed, sql, {
|
|
267
|
+
forceEncrypt,
|
|
268
|
+
tunnelParams: params
|
|
269
|
+
});
|
|
270
|
+
return result.rows;
|
|
271
|
+
}
|
|
272
|
+
var SQLSERVER_PREFIX_RE, TRUE_VALUES, FALSE_VALUES;
|
|
273
|
+
var init_utils = __esm({
|
|
274
|
+
"../connectors/src/connectors/sqlserver/utils.ts"() {
|
|
275
|
+
"use strict";
|
|
276
|
+
SQLSERVER_PREFIX_RE = /^(?:jdbc:)?sqlserver:\/\//i;
|
|
277
|
+
TRUE_VALUES = /* @__PURE__ */ new Set(["true", "1", "yes"]);
|
|
278
|
+
FALSE_VALUES = /* @__PURE__ */ new Set(["false", "0", "no"]);
|
|
279
|
+
}
|
|
280
|
+
});
|
|
240
281
|
|
|
241
282
|
// ../connectors/src/lib/mssql-runner.ts
|
|
283
|
+
var mssql_runner_exports = {};
|
|
284
|
+
__export(mssql_runner_exports, {
|
|
285
|
+
checkMssqlConnection: () => checkMssqlConnection,
|
|
286
|
+
runMssqlQuery: () => runMssqlQuery
|
|
287
|
+
});
|
|
242
288
|
async function importMssql() {
|
|
243
289
|
const mod = await import("mssql");
|
|
244
290
|
return mod.default ?? mod;
|
|
@@ -287,8 +333,21 @@ async function checkMssqlConnection(url, credentials, options = {}) {
|
|
|
287
333
|
return { success: false, error: msg };
|
|
288
334
|
}
|
|
289
335
|
}
|
|
336
|
+
var init_mssql_runner = __esm({
|
|
337
|
+
"../connectors/src/lib/mssql-runner.ts"() {
|
|
338
|
+
"use strict";
|
|
339
|
+
init_ssh_tunnel();
|
|
340
|
+
init_utils();
|
|
341
|
+
}
|
|
342
|
+
});
|
|
343
|
+
|
|
344
|
+
// ../connectors/src/connectors/azure-sql/sdk/index.ts
|
|
345
|
+
init_mssql_runner();
|
|
346
|
+
init_utils();
|
|
290
347
|
|
|
291
348
|
// ../connectors/src/connectors/azure-sql/parameters.ts
|
|
349
|
+
init_parameter_definition();
|
|
350
|
+
init_ssh_tunnel();
|
|
292
351
|
var parameters = {
|
|
293
352
|
jdbcUrl: new ParameterDefinition({
|
|
294
353
|
slug: "jdbc-url",
|
|
@@ -405,6 +464,28 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
405
464
|
tools;
|
|
406
465
|
query;
|
|
407
466
|
checkConnection;
|
|
467
|
+
/**
|
|
468
|
+
* SQPD-1212: Logic-based, rule-driven connection setup. Connectors that
|
|
469
|
+
* implement this expose a step-by-step exploration flow (database/schema/
|
|
470
|
+
* table/etc. discovery) that the dashboard backend drives via the
|
|
471
|
+
* `/connections/:connectionId/setup` endpoint. Implement by delegating to
|
|
472
|
+
* `runSetupFlow` from `setup-flow.ts`.
|
|
473
|
+
*/
|
|
474
|
+
setup;
|
|
475
|
+
/**
|
|
476
|
+
* Opt-out of the default "verify before save" behavior on connection
|
|
477
|
+
* creation. The backend invokes `checkConnection` synchronously while
|
|
478
|
+
* creating the connection and aborts (no row inserted) if it fails — this
|
|
479
|
+
* flag disables that for connectors where the check cannot succeed pre-save:
|
|
480
|
+
*
|
|
481
|
+
* - `squadbase-db` populates `connection-url` only after Neon provisioning
|
|
482
|
+
* - OAuth connectors require an OAuth-aware proxyFetch keyed by the
|
|
483
|
+
* connectionId, which doesn't exist until the row is saved
|
|
484
|
+
*
|
|
485
|
+
* Exceptions are the explicit position; new credential-input connectors get
|
|
486
|
+
* the default verify-on-create behavior without opt-in.
|
|
487
|
+
*/
|
|
488
|
+
skipConnectionCheckOnCreate;
|
|
408
489
|
constructor(config) {
|
|
409
490
|
this.slug = config.slug;
|
|
410
491
|
this.authType = config.authType;
|
|
@@ -421,6 +502,8 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
421
502
|
this.tools = config.tools;
|
|
422
503
|
this.query = config.query;
|
|
423
504
|
this.checkConnection = config.checkConnection;
|
|
505
|
+
this.setup = config.setup;
|
|
506
|
+
this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
|
|
424
507
|
}
|
|
425
508
|
get connectorKey() {
|
|
426
509
|
return _ConnectorPlugin.deriveKey(this.slug, this.authType);
|
|
@@ -485,6 +568,76 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
485
568
|
}
|
|
486
569
|
};
|
|
487
570
|
|
|
571
|
+
// ../connectors/src/setup-flow.ts
|
|
572
|
+
async function runSetupFlow(flow, params, ctx, config) {
|
|
573
|
+
const runtime = {
|
|
574
|
+
params,
|
|
575
|
+
language: ctx.language,
|
|
576
|
+
config
|
|
577
|
+
};
|
|
578
|
+
let state = flow.initialState();
|
|
579
|
+
let answerIdx = 0;
|
|
580
|
+
const pendingParameterUpdates = [];
|
|
581
|
+
for (const step of flow.steps) {
|
|
582
|
+
const ans = ctx.answers[answerIdx];
|
|
583
|
+
if (ans && ans.questionSlug === step.slug) {
|
|
584
|
+
state = step.applyAnswer(state, ans.answer);
|
|
585
|
+
if (step.toParameterUpdates) {
|
|
586
|
+
pendingParameterUpdates.push(...step.toParameterUpdates(state));
|
|
587
|
+
}
|
|
588
|
+
answerIdx += 1;
|
|
589
|
+
continue;
|
|
590
|
+
}
|
|
591
|
+
const resolvedAllowFreeText = step.allowFreeText !== void 0 ? step.allowFreeText : true;
|
|
592
|
+
if (step.type === "text") {
|
|
593
|
+
if (step.fetchOptions) {
|
|
594
|
+
const options2 = await step.fetchOptions(state, runtime);
|
|
595
|
+
if (options2.length === 0) {
|
|
596
|
+
continue;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
return {
|
|
600
|
+
type: "nextQuestion",
|
|
601
|
+
questionSlug: step.slug,
|
|
602
|
+
question: step.question[ctx.language],
|
|
603
|
+
questionType: "text",
|
|
604
|
+
allowFreeText: resolvedAllowFreeText,
|
|
605
|
+
...pendingParameterUpdates.length > 0 && {
|
|
606
|
+
parameterUpdates: pendingParameterUpdates
|
|
607
|
+
}
|
|
608
|
+
};
|
|
609
|
+
}
|
|
610
|
+
const options = step.fetchOptions ? await step.fetchOptions(state, runtime) : [];
|
|
611
|
+
if (options.length === 0) {
|
|
612
|
+
continue;
|
|
613
|
+
}
|
|
614
|
+
return {
|
|
615
|
+
type: "nextQuestion",
|
|
616
|
+
questionSlug: step.slug,
|
|
617
|
+
question: step.question[ctx.language],
|
|
618
|
+
questionType: step.type,
|
|
619
|
+
options,
|
|
620
|
+
allowFreeText: resolvedAllowFreeText,
|
|
621
|
+
...pendingParameterUpdates.length > 0 && {
|
|
622
|
+
parameterUpdates: pendingParameterUpdates
|
|
623
|
+
}
|
|
624
|
+
};
|
|
625
|
+
}
|
|
626
|
+
const dataInvestigationResult = await flow.finalize(state, runtime);
|
|
627
|
+
return {
|
|
628
|
+
type: "fulfilled",
|
|
629
|
+
dataInvestigationResult,
|
|
630
|
+
...pendingParameterUpdates.length > 0 && {
|
|
631
|
+
parameterUpdates: pendingParameterUpdates
|
|
632
|
+
}
|
|
633
|
+
};
|
|
634
|
+
}
|
|
635
|
+
async function resolveSetupSelection(params) {
|
|
636
|
+
const { selected, allSentinel, fetchAll, limit } = params;
|
|
637
|
+
const resolved = selected.includes(allSentinel) ? await fetchAll() : selected.filter((v) => v !== allSentinel);
|
|
638
|
+
return resolved.slice(0, limit);
|
|
639
|
+
}
|
|
640
|
+
|
|
488
641
|
// ../connectors/src/auth-types.ts
|
|
489
642
|
var AUTH_TYPES = {
|
|
490
643
|
OAUTH: "oauth",
|
|
@@ -511,6 +664,142 @@ function unwrapSampleLimit(sql) {
|
|
|
511
664
|
return { inner, limit };
|
|
512
665
|
}
|
|
513
666
|
|
|
667
|
+
// ../connectors/src/connectors/sqlserver/setup-flow.ts
|
|
668
|
+
init_utils();
|
|
669
|
+
var ALL_TABLES = "__ALL_TABLES__";
|
|
670
|
+
var SQLSERVER_SETUP_MAX_TABLES = 20;
|
|
671
|
+
var INTERNAL_SCHEMAS = /* @__PURE__ */ new Set([
|
|
672
|
+
"sys",
|
|
673
|
+
"information_schema",
|
|
674
|
+
"guest",
|
|
675
|
+
"db_owner",
|
|
676
|
+
"db_accessadmin",
|
|
677
|
+
"db_securityadmin",
|
|
678
|
+
"db_ddladmin",
|
|
679
|
+
"db_backupoperator",
|
|
680
|
+
"db_datareader",
|
|
681
|
+
"db_datawriter",
|
|
682
|
+
"db_denydatareader",
|
|
683
|
+
"db_denydatawriter"
|
|
684
|
+
]);
|
|
685
|
+
function isInternalSchema(name) {
|
|
686
|
+
return INTERNAL_SCHEMAS.has(name.toLowerCase());
|
|
687
|
+
}
|
|
688
|
+
function quoteLiteral(value) {
|
|
689
|
+
return "'" + value.replace(/'/g, "''") + "'";
|
|
690
|
+
}
|
|
691
|
+
function buildFlow(options) {
|
|
692
|
+
const { connectorName, forceEncrypt } = options;
|
|
693
|
+
async function fetchTableNames(params, schema) {
|
|
694
|
+
const rows = await runSqlServerSetupQuery(
|
|
695
|
+
params,
|
|
696
|
+
`SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
|
|
697
|
+
WHERE TABLE_TYPE IN ('BASE TABLE', 'VIEW')
|
|
698
|
+
AND TABLE_SCHEMA = ${quoteLiteral(schema)}
|
|
699
|
+
ORDER BY TABLE_NAME`,
|
|
700
|
+
forceEncrypt
|
|
701
|
+
);
|
|
702
|
+
return rows.map((r) => String(r["TABLE_NAME"] ?? "")).filter((name) => name);
|
|
703
|
+
}
|
|
704
|
+
return {
|
|
705
|
+
initialState: () => ({}),
|
|
706
|
+
steps: [
|
|
707
|
+
{
|
|
708
|
+
slug: "schema",
|
|
709
|
+
type: "select",
|
|
710
|
+
question: {
|
|
711
|
+
ja: "\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u306B\u4F7F\u3046\u30B9\u30AD\u30FC\u30DE\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044",
|
|
712
|
+
en: "Select the schema to use for setup"
|
|
713
|
+
},
|
|
714
|
+
async fetchOptions(_state, rt) {
|
|
715
|
+
const rows = await runSqlServerSetupQuery(
|
|
716
|
+
rt.params,
|
|
717
|
+
`SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA ORDER BY SCHEMA_NAME`,
|
|
718
|
+
forceEncrypt
|
|
719
|
+
);
|
|
720
|
+
return rows.map((r) => String(r["SCHEMA_NAME"] ?? "")).filter((name) => name && !isInternalSchema(name)).map((value) => ({ value }));
|
|
721
|
+
},
|
|
722
|
+
applyAnswer: (state, answer) => ({ ...state, schema: answer[0] })
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
slug: "tables",
|
|
726
|
+
type: "multiSelect",
|
|
727
|
+
question: {
|
|
728
|
+
ja: "\u5BFE\u8C61\u30C6\u30FC\u30D6\u30EB\u30FB\u30D3\u30E5\u30FC\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044\uFF08\u8907\u6570\u9078\u629E\u53EF\uFF09",
|
|
729
|
+
en: "Select target tables and views (multi-select allowed)"
|
|
730
|
+
},
|
|
731
|
+
async fetchOptions(state, rt) {
|
|
732
|
+
if (!state.schema) return [];
|
|
733
|
+
const names = await fetchTableNames(rt.params, state.schema);
|
|
734
|
+
const tableOptions = names.map((value) => ({ value }));
|
|
735
|
+
return [
|
|
736
|
+
{
|
|
737
|
+
value: ALL_TABLES,
|
|
738
|
+
label: rt.language === "ja" ? "\u3059\u3079\u3066\u306E\u30C6\u30FC\u30D6\u30EB\u30FB\u30D3\u30E5\u30FC" : "All tables and views"
|
|
739
|
+
},
|
|
740
|
+
...tableOptions
|
|
741
|
+
];
|
|
742
|
+
},
|
|
743
|
+
applyAnswer: (state, answer) => ({ ...state, tables: answer })
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
async finalize(state, rt) {
|
|
747
|
+
if (!state.schema || !state.tables) {
|
|
748
|
+
throw new Error(`${connectorName} setup: incomplete state on finalize`);
|
|
749
|
+
}
|
|
750
|
+
const schema = state.schema;
|
|
751
|
+
const targetTables = await resolveSetupSelection({
|
|
752
|
+
selected: state.tables,
|
|
753
|
+
allSentinel: ALL_TABLES,
|
|
754
|
+
fetchAll: () => fetchTableNames(rt.params, schema),
|
|
755
|
+
limit: SQLSERVER_SETUP_MAX_TABLES
|
|
756
|
+
});
|
|
757
|
+
const sections = [
|
|
758
|
+
`## ${connectorName}`,
|
|
759
|
+
"",
|
|
760
|
+
`### Schema: ${schema}`,
|
|
761
|
+
""
|
|
762
|
+
];
|
|
763
|
+
for (const table of targetTables) {
|
|
764
|
+
const cols = await runSqlServerSetupQuery(
|
|
765
|
+
rt.params,
|
|
766
|
+
`SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
|
|
767
|
+
FROM INFORMATION_SCHEMA.COLUMNS
|
|
768
|
+
WHERE TABLE_SCHEMA = ${quoteLiteral(schema)}
|
|
769
|
+
AND TABLE_NAME = ${quoteLiteral(table)}
|
|
770
|
+
ORDER BY ORDINAL_POSITION`,
|
|
771
|
+
forceEncrypt
|
|
772
|
+
);
|
|
773
|
+
sections.push(`#### Table: ${table}`, "");
|
|
774
|
+
sections.push("| Column | Type | Nullable | Default |");
|
|
775
|
+
sections.push("|--------|------|----------|---------|");
|
|
776
|
+
for (const c of cols) {
|
|
777
|
+
const name = String(c["COLUMN_NAME"] ?? "");
|
|
778
|
+
const type = String(c["DATA_TYPE"] ?? "");
|
|
779
|
+
const nullable = String(c["IS_NULLABLE"] ?? "");
|
|
780
|
+
const defaultValue = c["COLUMN_DEFAULT"] == null ? "-" : String(c["COLUMN_DEFAULT"]);
|
|
781
|
+
sections.push(
|
|
782
|
+
`| ${name} | ${type} | ${nullable} | ${defaultValue} |`
|
|
783
|
+
);
|
|
784
|
+
}
|
|
785
|
+
sections.push("");
|
|
786
|
+
}
|
|
787
|
+
return sections.join("\n");
|
|
788
|
+
}
|
|
789
|
+
};
|
|
790
|
+
}
|
|
791
|
+
function createSqlServerSetupFlow(options) {
|
|
792
|
+
return buildFlow(options);
|
|
793
|
+
}
|
|
794
|
+
var sqlserverSetupFlow = createSqlServerSetupFlow({
|
|
795
|
+
connectorName: "SQL Server",
|
|
796
|
+
forceEncrypt: false
|
|
797
|
+
});
|
|
798
|
+
|
|
799
|
+
// ../connectors/src/connectors/azure-sql/index.ts
|
|
800
|
+
init_mssql_runner();
|
|
801
|
+
init_utils();
|
|
802
|
+
|
|
514
803
|
// ../connectors/src/connectors/azure-sql/setup.ts
|
|
515
804
|
var azureSqlOnboarding = new ConnectorOnboarding({
|
|
516
805
|
dataOverviewInstructions: {
|
|
@@ -525,8 +814,17 @@ var azureSqlOnboarding = new ConnectorOnboarding({
|
|
|
525
814
|
}
|
|
526
815
|
});
|
|
527
816
|
|
|
817
|
+
// ../connectors/src/connectors/azure-sql/setup-flow.ts
|
|
818
|
+
var azureSqlSetupFlow = createSqlServerSetupFlow({
|
|
819
|
+
connectorName: "Azure SQL",
|
|
820
|
+
forceEncrypt: true
|
|
821
|
+
});
|
|
822
|
+
|
|
528
823
|
// ../connectors/src/connectors/azure-sql/tools/execute-query.ts
|
|
529
824
|
import { z } from "zod";
|
|
825
|
+
init_mssql_runner();
|
|
826
|
+
init_ssh_tunnel();
|
|
827
|
+
init_utils();
|
|
530
828
|
var MAX_ROWS = 500;
|
|
531
829
|
var inputSchema = z.object({
|
|
532
830
|
toolUseIntent: z.string().optional().describe(
|
|
@@ -649,6 +947,7 @@ The business logic type for this connector is "sql".
|
|
|
649
947
|
- \u884C\u6570\u5236\u9650\u306E\u4E92\u63DB\u6027: \u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u306E server-logic \u30B9\u30AD\u30FC\u30DE\u63A8\u8AD6\u306F\u3001\u30AF\u30A8\u30EA\u3092 \`SELECT * FROM (<inner>) AS _sq LIMIT N\` \u306E\u5F62\u3067\u30E9\u30C3\u30D7\u3057\u3066\u304F\u308B\u3053\u3068\u304C\u3042\u308A\u307E\u3059\u3002T-SQL \u306B\u306F \`LIMIT\` \u304C\u7121\u3044\u305F\u3081\u3001\u30B3\u30CD\u30AF\u30BF\u306F \`query()\` \u5185\u3067\u3053\u306E\u30E9\u30C3\u30D1\u3092\u691C\u51FA\u3057\u3001\`<inner>\` \u3092\u305D\u306E\u307E\u307E\u5B9F\u884C\u3057\u3066 JS \u5074\u3067\u5148\u982D N \u884C\u306B\u5207\u308A\u8A70\u3081\u307E\u3059\u3002\u5229\u7528\u8005\u5074\u3067\u5BFE\u51E6\u3059\u308B\u5FC5\u8981\u306F\u3042\u308A\u307E\u305B\u3093\u304C\u3001\u81EA\u5206\u3067\u66F8\u304F SQL \u3067\u306F \`LIMIT\` \u3092\u4F7F\u308F\u305A \`TOP\` / \`OFFSET ... FETCH NEXT\` \u3092\u4F7F\u3063\u3066\u304F\u3060\u3055\u3044\u3002`
|
|
650
948
|
},
|
|
651
949
|
tools,
|
|
950
|
+
setup: (params, ctx, config) => runSetupFlow(azureSqlSetupFlow, params, ctx, config),
|
|
652
951
|
async checkConnection(params, _config) {
|
|
653
952
|
return checkMssqlConnection(
|
|
654
953
|
params[parameters.jdbcUrl.slug],
|
|
@@ -705,6 +1004,7 @@ function resolveEnvVarOptional(entry, key) {
|
|
|
705
1004
|
import { getContext } from "hono/context-storage";
|
|
706
1005
|
import { getCookie } from "hono/cookie";
|
|
707
1006
|
var APP_SESSION_COOKIE_NAME = "__Host-squadbase-session";
|
|
1007
|
+
var TABLEAU_SESSION_SENTINEL_URL = "squadbase://tableau-session/";
|
|
708
1008
|
function normalizeHeaders(input) {
|
|
709
1009
|
const out = {};
|
|
710
1010
|
if (!input) return out;
|
|
@@ -713,6 +1013,11 @@ function normalizeHeaders(input) {
|
|
|
713
1013
|
});
|
|
714
1014
|
return out;
|
|
715
1015
|
}
|
|
1016
|
+
function extractInputUrl(input) {
|
|
1017
|
+
if (typeof input === "string") return input;
|
|
1018
|
+
if (input instanceof URL) return input.href;
|
|
1019
|
+
return input.url;
|
|
1020
|
+
}
|
|
716
1021
|
function createSandboxProxyFetch(connectionId) {
|
|
717
1022
|
return async (input, init) => {
|
|
718
1023
|
const token = process.env.INTERNAL_SQUADBASE_OAUTH_MACHINE_CREDENTIAL;
|
|
@@ -722,10 +1027,17 @@ function createSandboxProxyFetch(connectionId) {
|
|
|
722
1027
|
"Connection proxy is not configured. Please check your deployment settings."
|
|
723
1028
|
);
|
|
724
1029
|
}
|
|
725
|
-
const originalUrl =
|
|
1030
|
+
const originalUrl = extractInputUrl(input);
|
|
1031
|
+
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
1032
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
1033
|
+
const sessionUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
1034
|
+
return fetch(sessionUrl, {
|
|
1035
|
+
method: "POST",
|
|
1036
|
+
headers: { Authorization: `Bearer ${token}` }
|
|
1037
|
+
});
|
|
1038
|
+
}
|
|
726
1039
|
const originalMethod = init?.method ?? "GET";
|
|
727
1040
|
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
728
|
-
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
729
1041
|
const proxyUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
730
1042
|
return fetch(proxyUrl, {
|
|
731
1043
|
method: "POST",
|
|
@@ -751,10 +1063,9 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
751
1063
|
}
|
|
752
1064
|
const baseDomain = process.env["SQUADBASE_APP_BASE_DOMAIN"] ?? "squadbase.app";
|
|
753
1065
|
const proxyUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
1066
|
+
const sessionUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
754
1067
|
return async (input, init) => {
|
|
755
|
-
const originalUrl =
|
|
756
|
-
const originalMethod = init?.method ?? "GET";
|
|
757
|
-
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
1068
|
+
const originalUrl = extractInputUrl(input);
|
|
758
1069
|
const c = getContext();
|
|
759
1070
|
const appSession = getCookie(c, APP_SESSION_COOKIE_NAME);
|
|
760
1071
|
if (!appSession) {
|
|
@@ -762,6 +1073,14 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
762
1073
|
"No authentication method available for connection proxy."
|
|
763
1074
|
);
|
|
764
1075
|
}
|
|
1076
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
1077
|
+
return fetch(sessionUrl, {
|
|
1078
|
+
method: "POST",
|
|
1079
|
+
headers: { Authorization: `Bearer ${appSession}` }
|
|
1080
|
+
});
|
|
1081
|
+
}
|
|
1082
|
+
const originalMethod = init?.method ?? "GET";
|
|
1083
|
+
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
765
1084
|
return fetch(proxyUrl, {
|
|
766
1085
|
method: "POST",
|
|
767
1086
|
headers: {
|