@squadbase/vite-server 0.1.12-dev.a9ac647 → 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.
Files changed (77) hide show
  1. package/dist/cli/index.js +12374 -883
  2. package/dist/connectors/airtable-oauth.js +257 -46
  3. package/dist/connectors/airtable.js +294 -51
  4. package/dist/connectors/amplitude.js +297 -47
  5. package/dist/connectors/anthropic.js +135 -47
  6. package/dist/connectors/asana.js +302 -49
  7. package/dist/connectors/attio.js +277 -49
  8. package/dist/connectors/aws-billing.js +262 -46
  9. package/dist/connectors/azure-sql.js +396 -102
  10. package/dist/connectors/backlog-api-key.js +292 -47
  11. package/dist/connectors/clickup.js +313 -49
  12. package/dist/connectors/cosmosdb.js +280 -50
  13. package/dist/connectors/customerio.js +294 -47
  14. package/dist/connectors/dbt.js +315 -47
  15. package/dist/connectors/freshdesk.js +317 -53
  16. package/dist/connectors/freshsales.js +308 -52
  17. package/dist/connectors/freshservice.js +336 -53
  18. package/dist/connectors/gamma.js +302 -52
  19. package/dist/connectors/gemini.js +134 -47
  20. package/dist/connectors/github.js +361 -49
  21. package/dist/connectors/gmail-oauth.js +179 -7
  22. package/dist/connectors/gmail.js +325 -47
  23. package/dist/connectors/google-ads.js +263 -46
  24. package/dist/connectors/google-analytics-oauth.js +285 -46
  25. package/dist/connectors/google-analytics.js +387 -49
  26. package/dist/connectors/google-audit-log.js +413 -47
  27. package/dist/connectors/google-calendar-oauth.js +234 -46
  28. package/dist/connectors/google-calendar.js +334 -47
  29. package/dist/connectors/google-docs.js +195 -6
  30. package/dist/connectors/google-drive.js +237 -5
  31. package/dist/connectors/google-search-console-oauth.js +231 -46
  32. package/dist/connectors/google-sheets.js +247 -47
  33. package/dist/connectors/google-slides.js +180 -6
  34. package/dist/connectors/grafana.js +307 -49
  35. package/dist/connectors/hubspot-oauth.js +183 -5
  36. package/dist/connectors/hubspot.js +281 -49
  37. package/dist/connectors/influxdb.js +391 -51
  38. package/dist/connectors/intercom-oauth.js +185 -5
  39. package/dist/connectors/intercom.js +277 -49
  40. package/dist/connectors/jdbc.js +737 -110
  41. package/dist/connectors/jira-api-key.js +301 -47
  42. package/dist/connectors/kintone-api-token.js +256 -47
  43. package/dist/connectors/kintone.js +303 -47
  44. package/dist/connectors/linear.js +305 -49
  45. package/dist/connectors/linkedin-ads.js +243 -50
  46. package/dist/connectors/mailchimp-oauth.js +243 -46
  47. package/dist/connectors/mailchimp.js +295 -49
  48. package/dist/connectors/meta-ads-oauth.js +248 -48
  49. package/dist/connectors/meta-ads.js +260 -50
  50. package/dist/connectors/mixpanel.js +313 -47
  51. package/dist/connectors/monday.js +335 -49
  52. package/dist/connectors/mongodb.js +294 -57
  53. package/dist/connectors/notion-oauth.js +206 -5
  54. package/dist/connectors/notion.js +298 -51
  55. package/dist/connectors/openai.js +134 -47
  56. package/dist/connectors/oracle.js +414 -103
  57. package/dist/connectors/outlook-oauth.js +179 -5
  58. package/dist/connectors/powerbi-oauth.js +226 -5
  59. package/dist/connectors/salesforce.js +359 -49
  60. package/dist/connectors/semrush.js +289 -49
  61. package/dist/connectors/sentry.js +264 -50
  62. package/dist/connectors/shopify-oauth.js +162 -5
  63. package/dist/connectors/shopify.js +332 -47
  64. package/dist/connectors/sqlserver.js +390 -102
  65. package/dist/connectors/stripe-api-key.js +244 -46
  66. package/dist/connectors/stripe-oauth.js +177 -5
  67. package/dist/connectors/supabase.js +278 -48
  68. package/dist/connectors/tableau.js +389 -184
  69. package/dist/connectors/tiktok-ads.js +254 -48
  70. package/dist/connectors/wix-store.js +295 -49
  71. package/dist/connectors/zendesk-oauth.js +214 -5
  72. package/dist/connectors/zendesk.js +333 -47
  73. package/dist/index.d.ts +149 -1
  74. package/dist/index.js +13677 -1969
  75. package/dist/main.js +13627 -1927
  76. package/dist/vite-plugin.js +12391 -890
  77. package/package.json +1 -1
@@ -1,101 +1,64 @@
1
- // ../connectors/src/parameter-definition.ts
2
- var ParameterDefinition = class {
3
- slug;
4
- name;
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
- // ../connectors/src/lib/ssh-tunnel.ts
46
- var sshTunnelParameters = {
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
- var NOOP_TUNNEL_HOSTPORT = (host, port) => ({
94
- host,
95
- port,
96
- close: async () => {
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,51 @@ 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
+ 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
+
488
616
  // ../connectors/src/auth-types.ts
489
617
  var AUTH_TYPES = {
490
618
  OAUTH: "oauth",
@@ -511,6 +639,142 @@ function unwrapSampleLimit(sql) {
511
639
  return { inner, limit };
512
640
  }
513
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
+
514
778
  // ../connectors/src/connectors/azure-sql/setup.ts
515
779
  var azureSqlOnboarding = new ConnectorOnboarding({
516
780
  dataOverviewInstructions: {
@@ -525,8 +789,17 @@ var azureSqlOnboarding = new ConnectorOnboarding({
525
789
  }
526
790
  });
527
791
 
792
+ // ../connectors/src/connectors/azure-sql/setup-flow.ts
793
+ var azureSqlSetupFlow = createSqlServerSetupFlow({
794
+ connectorName: "Azure SQL",
795
+ forceEncrypt: true
796
+ });
797
+
528
798
  // ../connectors/src/connectors/azure-sql/tools/execute-query.ts
529
799
  import { z } from "zod";
800
+ init_mssql_runner();
801
+ init_ssh_tunnel();
802
+ init_utils();
530
803
  var MAX_ROWS = 500;
531
804
  var inputSchema = z.object({
532
805
  toolUseIntent: z.string().optional().describe(
@@ -649,6 +922,7 @@ The business logic type for this connector is "sql".
649
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`
650
923
  },
651
924
  tools,
925
+ setup: (params, ctx, config) => runSetupFlow(azureSqlSetupFlow, params, ctx, config),
652
926
  async checkConnection(params, _config) {
653
927
  return checkMssqlConnection(
654
928
  params[parameters.jdbcUrl.slug],
@@ -705,6 +979,7 @@ function resolveEnvVarOptional(entry, key) {
705
979
  import { getContext } from "hono/context-storage";
706
980
  import { getCookie } from "hono/cookie";
707
981
  var APP_SESSION_COOKIE_NAME = "__Host-squadbase-session";
982
+ var TABLEAU_SESSION_SENTINEL_URL = "squadbase://tableau-session/";
708
983
  function normalizeHeaders(input) {
709
984
  const out = {};
710
985
  if (!input) return out;
@@ -713,6 +988,11 @@ function normalizeHeaders(input) {
713
988
  });
714
989
  return out;
715
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
+ }
716
996
  function createSandboxProxyFetch(connectionId) {
717
997
  return async (input, init) => {
718
998
  const token = process.env.INTERNAL_SQUADBASE_OAUTH_MACHINE_CREDENTIAL;
@@ -722,10 +1002,17 @@ function createSandboxProxyFetch(connectionId) {
722
1002
  "Connection proxy is not configured. Please check your deployment settings."
723
1003
  );
724
1004
  }
725
- const originalUrl = typeof input === "string" ? input : input instanceof URL ? input.href : input.url;
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
+ }
726
1014
  const originalMethod = init?.method ?? "GET";
727
1015
  const originalBody = init?.body ? JSON.parse(init.body) : void 0;
728
- const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
729
1016
  const proxyUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
730
1017
  return fetch(proxyUrl, {
731
1018
  method: "POST",
@@ -751,10 +1038,9 @@ function createDeployedAppProxyFetch(connectionId) {
751
1038
  }
752
1039
  const baseDomain = process.env["SQUADBASE_APP_BASE_DOMAIN"] ?? "squadbase.app";
753
1040
  const proxyUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
1041
+ const sessionUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
754
1042
  return async (input, init) => {
755
- const originalUrl = typeof input === "string" ? input : input instanceof URL ? input.href : input.url;
756
- const originalMethod = init?.method ?? "GET";
757
- const originalBody = init?.body ? JSON.parse(init.body) : void 0;
1043
+ const originalUrl = extractInputUrl(input);
758
1044
  const c = getContext();
759
1045
  const appSession = getCookie(c, APP_SESSION_COOKIE_NAME);
760
1046
  if (!appSession) {
@@ -762,6 +1048,14 @@ function createDeployedAppProxyFetch(connectionId) {
762
1048
  "No authentication method available for connection proxy."
763
1049
  );
764
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;
765
1059
  return fetch(proxyUrl, {
766
1060
  method: "POST",
767
1061
  headers: {