@squadbase/vite-server 0.1.12-dev.93b8799 → 0.1.17-dev.24af54e
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 +12128 -934
- package/dist/connectors/airtable-oauth.js +248 -46
- package/dist/connectors/airtable.js +285 -51
- package/dist/connectors/amplitude.js +288 -47
- package/dist/connectors/anthropic.js +126 -47
- package/dist/connectors/asana.js +293 -49
- package/dist/connectors/attio.js +268 -49
- package/dist/connectors/aws-billing.js +253 -46
- package/dist/connectors/azure-sql.js +387 -102
- package/dist/connectors/backlog-api-key.js +283 -47
- package/dist/connectors/clickup.js +304 -49
- package/dist/connectors/cosmosdb.js +271 -50
- package/dist/connectors/customerio.js +285 -47
- package/dist/connectors/dbt.js +306 -47
- package/dist/connectors/freshdesk.js +308 -53
- package/dist/connectors/freshsales.js +299 -52
- package/dist/connectors/freshservice.js +327 -53
- package/dist/connectors/gamma.js +293 -52
- package/dist/connectors/gemini.js +125 -47
- package/dist/connectors/github.js +352 -49
- package/dist/connectors/gmail-oauth.js +170 -7
- package/dist/connectors/gmail.js +316 -47
- package/dist/connectors/google-ads.js +254 -46
- package/dist/connectors/google-analytics-oauth.js +276 -46
- package/dist/connectors/google-analytics.js +378 -49
- package/dist/connectors/google-audit-log.js +404 -47
- package/dist/connectors/google-calendar-oauth.js +225 -46
- package/dist/connectors/google-calendar.js +325 -47
- package/dist/connectors/google-docs.js +186 -6
- package/dist/connectors/google-drive.js +228 -5
- package/dist/connectors/google-search-console-oauth.js +222 -46
- package/dist/connectors/google-sheets.js +238 -47
- package/dist/connectors/google-slides.js +171 -6
- package/dist/connectors/grafana.js +298 -49
- package/dist/connectors/hubspot-oauth.js +174 -5
- package/dist/connectors/hubspot.js +272 -49
- package/dist/connectors/influxdb.js +382 -51
- package/dist/connectors/intercom-oauth.js +176 -5
- package/dist/connectors/intercom.js +268 -49
- package/dist/connectors/jdbc.js +728 -110
- package/dist/connectors/jira-api-key.js +292 -47
- package/dist/connectors/kintone-api-token.js +247 -47
- package/dist/connectors/kintone.js +294 -47
- package/dist/connectors/linear.js +296 -49
- package/dist/connectors/linkedin-ads.js +234 -50
- package/dist/connectors/mailchimp-oauth.js +234 -46
- package/dist/connectors/mailchimp.js +286 -49
- package/dist/connectors/meta-ads-oauth.js +239 -48
- package/dist/connectors/meta-ads.js +251 -50
- package/dist/connectors/mixpanel.js +304 -47
- package/dist/connectors/monday.js +326 -49
- package/dist/connectors/mongodb.js +285 -57
- package/dist/connectors/notion-oauth.js +197 -5
- package/dist/connectors/notion.js +289 -51
- package/dist/connectors/openai.js +125 -47
- package/dist/connectors/oracle.js +405 -103
- package/dist/connectors/outlook-oauth.js +170 -5
- package/dist/connectors/powerbi-oauth.js +217 -5
- package/dist/connectors/salesforce.js +350 -49
- package/dist/connectors/semrush.js +280 -49
- package/dist/connectors/sentry.js +255 -50
- package/dist/connectors/shopify-oauth.js +153 -5
- package/dist/connectors/shopify.js +323 -47
- package/dist/connectors/sqlserver.js +381 -102
- package/dist/connectors/stripe-api-key.js +235 -46
- package/dist/connectors/stripe-oauth.js +168 -5
- package/dist/connectors/supabase.js +269 -48
- package/dist/connectors/tableau.js +337 -206
- package/dist/connectors/tiktok-ads.js +245 -48
- package/dist/connectors/wix-store.js +286 -49
- package/dist/connectors/zendesk-oauth.js +205 -5
- package/dist/connectors/zendesk.js +324 -47
- package/dist/index.d.ts +149 -1
- package/dist/index.js +18297 -6886
- package/dist/main.js +12785 -1382
- package/dist/vite-plugin.js +12140 -936
- 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",
|
|
@@ -413,6 +472,20 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
413
472
|
* `runSetupFlow` from `setup-flow.ts`.
|
|
414
473
|
*/
|
|
415
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;
|
|
416
489
|
constructor(config) {
|
|
417
490
|
this.slug = config.slug;
|
|
418
491
|
this.authType = config.authType;
|
|
@@ -430,6 +503,7 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
430
503
|
this.query = config.query;
|
|
431
504
|
this.checkConnection = config.checkConnection;
|
|
432
505
|
this.setup = config.setup;
|
|
506
|
+
this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
|
|
433
507
|
}
|
|
434
508
|
get connectorKey() {
|
|
435
509
|
return _ConnectorPlugin.deriveKey(this.slug, this.authType);
|
|
@@ -494,6 +568,51 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
494
568
|
}
|
|
495
569
|
};
|
|
496
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
|
+
for (const step of flow.steps) {
|
|
581
|
+
const ans = ctx.answers[answerIdx];
|
|
582
|
+
if (ans && ans.questionSlug === step.slug) {
|
|
583
|
+
state = step.applyAnswer(state, ans.answer);
|
|
584
|
+
answerIdx += 1;
|
|
585
|
+
continue;
|
|
586
|
+
}
|
|
587
|
+
if (step.type === "text") {
|
|
588
|
+
return {
|
|
589
|
+
type: "nextQuestion",
|
|
590
|
+
questionSlug: step.slug,
|
|
591
|
+
question: step.question[ctx.language],
|
|
592
|
+
questionType: "text"
|
|
593
|
+
};
|
|
594
|
+
}
|
|
595
|
+
const options = step.fetchOptions ? await step.fetchOptions(state, runtime) : [];
|
|
596
|
+
if (options.length === 0) {
|
|
597
|
+
continue;
|
|
598
|
+
}
|
|
599
|
+
return {
|
|
600
|
+
type: "nextQuestion",
|
|
601
|
+
questionSlug: step.slug,
|
|
602
|
+
question: step.question[ctx.language],
|
|
603
|
+
questionType: step.type,
|
|
604
|
+
options
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
const dataInvestigationResult = await flow.finalize(state, runtime);
|
|
608
|
+
return { type: "fulfilled", dataInvestigationResult };
|
|
609
|
+
}
|
|
610
|
+
async function resolveSetupSelection(params) {
|
|
611
|
+
const { selected, allSentinel, fetchAll, limit } = params;
|
|
612
|
+
const resolved = selected.includes(allSentinel) ? await fetchAll() : selected.filter((v) => v !== allSentinel);
|
|
613
|
+
return resolved.slice(0, limit);
|
|
614
|
+
}
|
|
615
|
+
|
|
497
616
|
// ../connectors/src/auth-types.ts
|
|
498
617
|
var AUTH_TYPES = {
|
|
499
618
|
OAUTH: "oauth",
|
|
@@ -520,6 +639,142 @@ function unwrapSampleLimit(sql) {
|
|
|
520
639
|
return { inner, limit };
|
|
521
640
|
}
|
|
522
641
|
|
|
642
|
+
// ../connectors/src/connectors/sqlserver/setup-flow.ts
|
|
643
|
+
init_utils();
|
|
644
|
+
var ALL_TABLES = "__ALL_TABLES__";
|
|
645
|
+
var SQLSERVER_SETUP_MAX_TABLES = 20;
|
|
646
|
+
var INTERNAL_SCHEMAS = /* @__PURE__ */ new Set([
|
|
647
|
+
"sys",
|
|
648
|
+
"information_schema",
|
|
649
|
+
"guest",
|
|
650
|
+
"db_owner",
|
|
651
|
+
"db_accessadmin",
|
|
652
|
+
"db_securityadmin",
|
|
653
|
+
"db_ddladmin",
|
|
654
|
+
"db_backupoperator",
|
|
655
|
+
"db_datareader",
|
|
656
|
+
"db_datawriter",
|
|
657
|
+
"db_denydatareader",
|
|
658
|
+
"db_denydatawriter"
|
|
659
|
+
]);
|
|
660
|
+
function isInternalSchema(name) {
|
|
661
|
+
return INTERNAL_SCHEMAS.has(name.toLowerCase());
|
|
662
|
+
}
|
|
663
|
+
function quoteLiteral(value) {
|
|
664
|
+
return "'" + value.replace(/'/g, "''") + "'";
|
|
665
|
+
}
|
|
666
|
+
function buildFlow(options) {
|
|
667
|
+
const { connectorName, forceEncrypt } = options;
|
|
668
|
+
async function fetchTableNames(params, schema) {
|
|
669
|
+
const rows = await runSqlServerSetupQuery(
|
|
670
|
+
params,
|
|
671
|
+
`SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
|
|
672
|
+
WHERE TABLE_TYPE IN ('BASE TABLE', 'VIEW')
|
|
673
|
+
AND TABLE_SCHEMA = ${quoteLiteral(schema)}
|
|
674
|
+
ORDER BY TABLE_NAME`,
|
|
675
|
+
forceEncrypt
|
|
676
|
+
);
|
|
677
|
+
return rows.map((r) => String(r["TABLE_NAME"] ?? "")).filter((name) => name);
|
|
678
|
+
}
|
|
679
|
+
return {
|
|
680
|
+
initialState: () => ({}),
|
|
681
|
+
steps: [
|
|
682
|
+
{
|
|
683
|
+
slug: "schema",
|
|
684
|
+
type: "select",
|
|
685
|
+
question: {
|
|
686
|
+
ja: "\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u306B\u4F7F\u3046\u30B9\u30AD\u30FC\u30DE\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044",
|
|
687
|
+
en: "Select the schema to use for setup"
|
|
688
|
+
},
|
|
689
|
+
async fetchOptions(_state, rt) {
|
|
690
|
+
const rows = await runSqlServerSetupQuery(
|
|
691
|
+
rt.params,
|
|
692
|
+
`SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA ORDER BY SCHEMA_NAME`,
|
|
693
|
+
forceEncrypt
|
|
694
|
+
);
|
|
695
|
+
return rows.map((r) => String(r["SCHEMA_NAME"] ?? "")).filter((name) => name && !isInternalSchema(name)).map((value) => ({ value }));
|
|
696
|
+
},
|
|
697
|
+
applyAnswer: (state, answer) => ({ ...state, schema: answer[0] })
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
slug: "tables",
|
|
701
|
+
type: "multiSelect",
|
|
702
|
+
question: {
|
|
703
|
+
ja: "\u5BFE\u8C61\u30C6\u30FC\u30D6\u30EB\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044\uFF08\u8907\u6570\u9078\u629E\u53EF\uFF09",
|
|
704
|
+
en: "Select target tables (multi-select allowed)"
|
|
705
|
+
},
|
|
706
|
+
async fetchOptions(state, rt) {
|
|
707
|
+
if (!state.schema) return [];
|
|
708
|
+
const names = await fetchTableNames(rt.params, state.schema);
|
|
709
|
+
const tableOptions = names.map((value) => ({ value }));
|
|
710
|
+
return [
|
|
711
|
+
{
|
|
712
|
+
value: ALL_TABLES,
|
|
713
|
+
label: rt.language === "ja" ? "\u3059\u3079\u3066\u306E\u30C6\u30FC\u30D6\u30EB" : "All tables"
|
|
714
|
+
},
|
|
715
|
+
...tableOptions
|
|
716
|
+
];
|
|
717
|
+
},
|
|
718
|
+
applyAnswer: (state, answer) => ({ ...state, tables: answer })
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
async finalize(state, rt) {
|
|
722
|
+
if (!state.schema || !state.tables) {
|
|
723
|
+
throw new Error(`${connectorName} setup: incomplete state on finalize`);
|
|
724
|
+
}
|
|
725
|
+
const schema = state.schema;
|
|
726
|
+
const targetTables = await resolveSetupSelection({
|
|
727
|
+
selected: state.tables,
|
|
728
|
+
allSentinel: ALL_TABLES,
|
|
729
|
+
fetchAll: () => fetchTableNames(rt.params, schema),
|
|
730
|
+
limit: SQLSERVER_SETUP_MAX_TABLES
|
|
731
|
+
});
|
|
732
|
+
const sections = [
|
|
733
|
+
`## ${connectorName}`,
|
|
734
|
+
"",
|
|
735
|
+
`### Schema: ${schema}`,
|
|
736
|
+
""
|
|
737
|
+
];
|
|
738
|
+
for (const table of targetTables) {
|
|
739
|
+
const cols = await runSqlServerSetupQuery(
|
|
740
|
+
rt.params,
|
|
741
|
+
`SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
|
|
742
|
+
FROM INFORMATION_SCHEMA.COLUMNS
|
|
743
|
+
WHERE TABLE_SCHEMA = ${quoteLiteral(schema)}
|
|
744
|
+
AND TABLE_NAME = ${quoteLiteral(table)}
|
|
745
|
+
ORDER BY ORDINAL_POSITION`,
|
|
746
|
+
forceEncrypt
|
|
747
|
+
);
|
|
748
|
+
sections.push(`#### Table: ${table}`, "");
|
|
749
|
+
sections.push("| Column | Type | Nullable | Default |");
|
|
750
|
+
sections.push("|--------|------|----------|---------|");
|
|
751
|
+
for (const c of cols) {
|
|
752
|
+
const name = String(c["COLUMN_NAME"] ?? "");
|
|
753
|
+
const type = String(c["DATA_TYPE"] ?? "");
|
|
754
|
+
const nullable = String(c["IS_NULLABLE"] ?? "");
|
|
755
|
+
const defaultValue = c["COLUMN_DEFAULT"] == null ? "-" : String(c["COLUMN_DEFAULT"]);
|
|
756
|
+
sections.push(
|
|
757
|
+
`| ${name} | ${type} | ${nullable} | ${defaultValue} |`
|
|
758
|
+
);
|
|
759
|
+
}
|
|
760
|
+
sections.push("");
|
|
761
|
+
}
|
|
762
|
+
return sections.join("\n");
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
}
|
|
766
|
+
function createSqlServerSetupFlow(options) {
|
|
767
|
+
return buildFlow(options);
|
|
768
|
+
}
|
|
769
|
+
var sqlserverSetupFlow = createSqlServerSetupFlow({
|
|
770
|
+
connectorName: "SQL Server",
|
|
771
|
+
forceEncrypt: false
|
|
772
|
+
});
|
|
773
|
+
|
|
774
|
+
// ../connectors/src/connectors/azure-sql/index.ts
|
|
775
|
+
init_mssql_runner();
|
|
776
|
+
init_utils();
|
|
777
|
+
|
|
523
778
|
// ../connectors/src/connectors/azure-sql/setup.ts
|
|
524
779
|
var azureSqlOnboarding = new ConnectorOnboarding({
|
|
525
780
|
dataOverviewInstructions: {
|
|
@@ -534,8 +789,17 @@ var azureSqlOnboarding = new ConnectorOnboarding({
|
|
|
534
789
|
}
|
|
535
790
|
});
|
|
536
791
|
|
|
792
|
+
// ../connectors/src/connectors/azure-sql/setup-flow.ts
|
|
793
|
+
var azureSqlSetupFlow = createSqlServerSetupFlow({
|
|
794
|
+
connectorName: "Azure SQL",
|
|
795
|
+
forceEncrypt: true
|
|
796
|
+
});
|
|
797
|
+
|
|
537
798
|
// ../connectors/src/connectors/azure-sql/tools/execute-query.ts
|
|
538
799
|
import { z } from "zod";
|
|
800
|
+
init_mssql_runner();
|
|
801
|
+
init_ssh_tunnel();
|
|
802
|
+
init_utils();
|
|
539
803
|
var MAX_ROWS = 500;
|
|
540
804
|
var inputSchema = z.object({
|
|
541
805
|
toolUseIntent: z.string().optional().describe(
|
|
@@ -658,6 +922,7 @@ The business logic type for this connector is "sql".
|
|
|
658
922
|
- \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`
|
|
659
923
|
},
|
|
660
924
|
tools,
|
|
925
|
+
setup: (params, ctx, config) => runSetupFlow(azureSqlSetupFlow, params, ctx, config),
|
|
661
926
|
async checkConnection(params, _config) {
|
|
662
927
|
return checkMssqlConnection(
|
|
663
928
|
params[parameters.jdbcUrl.slug],
|
|
@@ -714,6 +979,7 @@ function resolveEnvVarOptional(entry, key) {
|
|
|
714
979
|
import { getContext } from "hono/context-storage";
|
|
715
980
|
import { getCookie } from "hono/cookie";
|
|
716
981
|
var APP_SESSION_COOKIE_NAME = "__Host-squadbase-session";
|
|
982
|
+
var TABLEAU_SESSION_SENTINEL_URL = "squadbase://tableau-session/";
|
|
717
983
|
function normalizeHeaders(input) {
|
|
718
984
|
const out = {};
|
|
719
985
|
if (!input) return out;
|
|
@@ -722,6 +988,11 @@ function normalizeHeaders(input) {
|
|
|
722
988
|
});
|
|
723
989
|
return out;
|
|
724
990
|
}
|
|
991
|
+
function extractInputUrl(input) {
|
|
992
|
+
if (typeof input === "string") return input;
|
|
993
|
+
if (input instanceof URL) return input.href;
|
|
994
|
+
return input.url;
|
|
995
|
+
}
|
|
725
996
|
function createSandboxProxyFetch(connectionId) {
|
|
726
997
|
return async (input, init) => {
|
|
727
998
|
const token = process.env.INTERNAL_SQUADBASE_OAUTH_MACHINE_CREDENTIAL;
|
|
@@ -731,10 +1002,17 @@ function createSandboxProxyFetch(connectionId) {
|
|
|
731
1002
|
"Connection proxy is not configured. Please check your deployment settings."
|
|
732
1003
|
);
|
|
733
1004
|
}
|
|
734
|
-
const originalUrl =
|
|
1005
|
+
const originalUrl = extractInputUrl(input);
|
|
1006
|
+
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
1007
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
1008
|
+
const sessionUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
1009
|
+
return fetch(sessionUrl, {
|
|
1010
|
+
method: "POST",
|
|
1011
|
+
headers: { Authorization: `Bearer ${token}` }
|
|
1012
|
+
});
|
|
1013
|
+
}
|
|
735
1014
|
const originalMethod = init?.method ?? "GET";
|
|
736
1015
|
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
737
|
-
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
738
1016
|
const proxyUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
739
1017
|
return fetch(proxyUrl, {
|
|
740
1018
|
method: "POST",
|
|
@@ -760,10 +1038,9 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
760
1038
|
}
|
|
761
1039
|
const baseDomain = process.env["SQUADBASE_APP_BASE_DOMAIN"] ?? "squadbase.app";
|
|
762
1040
|
const proxyUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
1041
|
+
const sessionUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
763
1042
|
return async (input, init) => {
|
|
764
|
-
const originalUrl =
|
|
765
|
-
const originalMethod = init?.method ?? "GET";
|
|
766
|
-
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
1043
|
+
const originalUrl = extractInputUrl(input);
|
|
767
1044
|
const c = getContext();
|
|
768
1045
|
const appSession = getCookie(c, APP_SESSION_COOKIE_NAME);
|
|
769
1046
|
if (!appSession) {
|
|
@@ -771,6 +1048,14 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
771
1048
|
"No authentication method available for connection proxy."
|
|
772
1049
|
);
|
|
773
1050
|
}
|
|
1051
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
1052
|
+
return fetch(sessionUrl, {
|
|
1053
|
+
method: "POST",
|
|
1054
|
+
headers: { Authorization: `Bearer ${appSession}` }
|
|
1055
|
+
});
|
|
1056
|
+
}
|
|
1057
|
+
const originalMethod = init?.method ?? "GET";
|
|
1058
|
+
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
774
1059
|
return fetch(proxyUrl, {
|
|
775
1060
|
method: "POST",
|
|
776
1061
|
headers: {
|