@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,20 @@ 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/sqlserver/sdk/index.ts
345
+ init_mssql_runner();
290
346
 
291
347
  // ../connectors/src/connectors/sqlserver/parameters.ts
348
+ init_parameter_definition();
349
+ init_ssh_tunnel();
292
350
  var parameters = {
293
351
  jdbcUrl: new ParameterDefinition({
294
352
  slug: "jdbc-url",
@@ -321,6 +379,7 @@ var parameters = {
321
379
  };
322
380
 
323
381
  // ../connectors/src/connectors/sqlserver/sdk/index.ts
382
+ init_utils();
324
383
  function createClient(params) {
325
384
  const jdbcUrl = params[parameters.jdbcUrl.slug];
326
385
  if (!jdbcUrl) {
@@ -404,6 +463,28 @@ var ConnectorPlugin = class _ConnectorPlugin {
404
463
  tools;
405
464
  query;
406
465
  checkConnection;
466
+ /**
467
+ * SQPD-1212: Logic-based, rule-driven connection setup. Connectors that
468
+ * implement this expose a step-by-step exploration flow (database/schema/
469
+ * table/etc. discovery) that the dashboard backend drives via the
470
+ * `/connections/:connectionId/setup` endpoint. Implement by delegating to
471
+ * `runSetupFlow` from `setup-flow.ts`.
472
+ */
473
+ setup;
474
+ /**
475
+ * Opt-out of the default "verify before save" behavior on connection
476
+ * creation. The backend invokes `checkConnection` synchronously while
477
+ * creating the connection and aborts (no row inserted) if it fails — this
478
+ * flag disables that for connectors where the check cannot succeed pre-save:
479
+ *
480
+ * - `squadbase-db` populates `connection-url` only after Neon provisioning
481
+ * - OAuth connectors require an OAuth-aware proxyFetch keyed by the
482
+ * connectionId, which doesn't exist until the row is saved
483
+ *
484
+ * Exceptions are the explicit position; new credential-input connectors get
485
+ * the default verify-on-create behavior without opt-in.
486
+ */
487
+ skipConnectionCheckOnCreate;
407
488
  constructor(config) {
408
489
  this.slug = config.slug;
409
490
  this.authType = config.authType;
@@ -420,6 +501,8 @@ var ConnectorPlugin = class _ConnectorPlugin {
420
501
  this.tools = config.tools;
421
502
  this.query = config.query;
422
503
  this.checkConnection = config.checkConnection;
504
+ this.setup = config.setup;
505
+ this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
423
506
  }
424
507
  get connectorKey() {
425
508
  return _ConnectorPlugin.deriveKey(this.slug, this.authType);
@@ -484,6 +567,51 @@ var ConnectorPlugin = class _ConnectorPlugin {
484
567
  }
485
568
  };
486
569
 
570
+ // ../connectors/src/setup-flow.ts
571
+ async function runSetupFlow(flow, params, ctx, config) {
572
+ const runtime = {
573
+ params,
574
+ language: ctx.language,
575
+ config
576
+ };
577
+ let state = flow.initialState();
578
+ let answerIdx = 0;
579
+ for (const step of flow.steps) {
580
+ const ans = ctx.answers[answerIdx];
581
+ if (ans && ans.questionSlug === step.slug) {
582
+ state = step.applyAnswer(state, ans.answer);
583
+ answerIdx += 1;
584
+ continue;
585
+ }
586
+ if (step.type === "text") {
587
+ return {
588
+ type: "nextQuestion",
589
+ questionSlug: step.slug,
590
+ question: step.question[ctx.language],
591
+ questionType: "text"
592
+ };
593
+ }
594
+ const options = step.fetchOptions ? await step.fetchOptions(state, runtime) : [];
595
+ if (options.length === 0) {
596
+ continue;
597
+ }
598
+ return {
599
+ type: "nextQuestion",
600
+ questionSlug: step.slug,
601
+ question: step.question[ctx.language],
602
+ questionType: step.type,
603
+ options
604
+ };
605
+ }
606
+ const dataInvestigationResult = await flow.finalize(state, runtime);
607
+ return { type: "fulfilled", dataInvestigationResult };
608
+ }
609
+ async function resolveSetupSelection(params) {
610
+ const { selected, allSentinel, fetchAll, limit } = params;
611
+ const resolved = selected.includes(allSentinel) ? await fetchAll() : selected.filter((v) => v !== allSentinel);
612
+ return resolved.slice(0, limit);
613
+ }
614
+
487
615
  // ../connectors/src/auth-types.ts
488
616
  var AUTH_TYPES = {
489
617
  OAUTH: "oauth",
@@ -510,6 +638,9 @@ function unwrapSampleLimit(sql) {
510
638
  return { inner, limit };
511
639
  }
512
640
 
641
+ // ../connectors/src/connectors/sqlserver/index.ts
642
+ init_mssql_runner();
643
+
513
644
  // ../connectors/src/connectors/sqlserver/setup.ts
514
645
  var sqlserverOnboarding = new ConnectorOnboarding({
515
646
  dataOverviewInstructions: {
@@ -524,8 +655,143 @@ var sqlserverOnboarding = new ConnectorOnboarding({
524
655
  }
525
656
  });
526
657
 
658
+ // ../connectors/src/connectors/sqlserver/setup-flow.ts
659
+ init_utils();
660
+ var ALL_TABLES = "__ALL_TABLES__";
661
+ var SQLSERVER_SETUP_MAX_TABLES = 20;
662
+ var INTERNAL_SCHEMAS = /* @__PURE__ */ new Set([
663
+ "sys",
664
+ "information_schema",
665
+ "guest",
666
+ "db_owner",
667
+ "db_accessadmin",
668
+ "db_securityadmin",
669
+ "db_ddladmin",
670
+ "db_backupoperator",
671
+ "db_datareader",
672
+ "db_datawriter",
673
+ "db_denydatareader",
674
+ "db_denydatawriter"
675
+ ]);
676
+ function isInternalSchema(name) {
677
+ return INTERNAL_SCHEMAS.has(name.toLowerCase());
678
+ }
679
+ function quoteLiteral(value) {
680
+ return "'" + value.replace(/'/g, "''") + "'";
681
+ }
682
+ function buildFlow(options) {
683
+ const { connectorName, forceEncrypt } = options;
684
+ async function fetchTableNames(params, schema) {
685
+ const rows = await runSqlServerSetupQuery(
686
+ params,
687
+ `SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
688
+ WHERE TABLE_TYPE IN ('BASE TABLE', 'VIEW')
689
+ AND TABLE_SCHEMA = ${quoteLiteral(schema)}
690
+ ORDER BY TABLE_NAME`,
691
+ forceEncrypt
692
+ );
693
+ return rows.map((r) => String(r["TABLE_NAME"] ?? "")).filter((name) => name);
694
+ }
695
+ return {
696
+ initialState: () => ({}),
697
+ steps: [
698
+ {
699
+ slug: "schema",
700
+ type: "select",
701
+ question: {
702
+ ja: "\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u306B\u4F7F\u3046\u30B9\u30AD\u30FC\u30DE\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044",
703
+ en: "Select the schema to use for setup"
704
+ },
705
+ async fetchOptions(_state, rt) {
706
+ const rows = await runSqlServerSetupQuery(
707
+ rt.params,
708
+ `SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA ORDER BY SCHEMA_NAME`,
709
+ forceEncrypt
710
+ );
711
+ return rows.map((r) => String(r["SCHEMA_NAME"] ?? "")).filter((name) => name && !isInternalSchema(name)).map((value) => ({ value }));
712
+ },
713
+ applyAnswer: (state, answer) => ({ ...state, schema: answer[0] })
714
+ },
715
+ {
716
+ slug: "tables",
717
+ type: "multiSelect",
718
+ question: {
719
+ ja: "\u5BFE\u8C61\u30C6\u30FC\u30D6\u30EB\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044\uFF08\u8907\u6570\u9078\u629E\u53EF\uFF09",
720
+ en: "Select target tables (multi-select allowed)"
721
+ },
722
+ async fetchOptions(state, rt) {
723
+ if (!state.schema) return [];
724
+ const names = await fetchTableNames(rt.params, state.schema);
725
+ const tableOptions = names.map((value) => ({ value }));
726
+ return [
727
+ {
728
+ value: ALL_TABLES,
729
+ label: rt.language === "ja" ? "\u3059\u3079\u3066\u306E\u30C6\u30FC\u30D6\u30EB" : "All tables"
730
+ },
731
+ ...tableOptions
732
+ ];
733
+ },
734
+ applyAnswer: (state, answer) => ({ ...state, tables: answer })
735
+ }
736
+ ],
737
+ async finalize(state, rt) {
738
+ if (!state.schema || !state.tables) {
739
+ throw new Error(`${connectorName} setup: incomplete state on finalize`);
740
+ }
741
+ const schema = state.schema;
742
+ const targetTables = await resolveSetupSelection({
743
+ selected: state.tables,
744
+ allSentinel: ALL_TABLES,
745
+ fetchAll: () => fetchTableNames(rt.params, schema),
746
+ limit: SQLSERVER_SETUP_MAX_TABLES
747
+ });
748
+ const sections = [
749
+ `## ${connectorName}`,
750
+ "",
751
+ `### Schema: ${schema}`,
752
+ ""
753
+ ];
754
+ for (const table of targetTables) {
755
+ const cols = await runSqlServerSetupQuery(
756
+ rt.params,
757
+ `SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
758
+ FROM INFORMATION_SCHEMA.COLUMNS
759
+ WHERE TABLE_SCHEMA = ${quoteLiteral(schema)}
760
+ AND TABLE_NAME = ${quoteLiteral(table)}
761
+ ORDER BY ORDINAL_POSITION`,
762
+ forceEncrypt
763
+ );
764
+ sections.push(`#### Table: ${table}`, "");
765
+ sections.push("| Column | Type | Nullable | Default |");
766
+ sections.push("|--------|------|----------|---------|");
767
+ for (const c of cols) {
768
+ const name = String(c["COLUMN_NAME"] ?? "");
769
+ const type = String(c["DATA_TYPE"] ?? "");
770
+ const nullable = String(c["IS_NULLABLE"] ?? "");
771
+ const defaultValue = c["COLUMN_DEFAULT"] == null ? "-" : String(c["COLUMN_DEFAULT"]);
772
+ sections.push(
773
+ `| ${name} | ${type} | ${nullable} | ${defaultValue} |`
774
+ );
775
+ }
776
+ sections.push("");
777
+ }
778
+ return sections.join("\n");
779
+ }
780
+ };
781
+ }
782
+ function createSqlServerSetupFlow(options) {
783
+ return buildFlow(options);
784
+ }
785
+ var sqlserverSetupFlow = createSqlServerSetupFlow({
786
+ connectorName: "SQL Server",
787
+ forceEncrypt: false
788
+ });
789
+
527
790
  // ../connectors/src/connectors/sqlserver/tools/execute-query.ts
528
791
  import { z } from "zod";
792
+ init_mssql_runner();
793
+ init_ssh_tunnel();
794
+ init_utils();
529
795
  var MAX_ROWS = 500;
530
796
  var inputSchema = z.object({
531
797
  toolUseIntent: z.string().optional().describe(
@@ -599,6 +865,7 @@ Avoid loading large amounts of data; always include \`TOP\` in queries.`,
599
865
  });
600
866
 
601
867
  // ../connectors/src/connectors/sqlserver/index.ts
868
+ init_utils();
602
869
  var tools = { executeQuery: executeQueryTool };
603
870
  var sqlserverConnector = new ConnectorPlugin({
604
871
  slug: "sqlserver",
@@ -647,6 +914,7 @@ The business logic type for this connector is "sql".
647
914
  - \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`
648
915
  },
649
916
  tools,
917
+ setup: (params, ctx, config) => runSetupFlow(sqlserverSetupFlow, params, ctx, config),
650
918
  async checkConnection(params, _config) {
651
919
  return checkMssqlConnection(
652
920
  params[parameters.jdbcUrl.slug],
@@ -699,6 +967,7 @@ function resolveEnvVarOptional(entry, key) {
699
967
  import { getContext } from "hono/context-storage";
700
968
  import { getCookie } from "hono/cookie";
701
969
  var APP_SESSION_COOKIE_NAME = "__Host-squadbase-session";
970
+ var TABLEAU_SESSION_SENTINEL_URL = "squadbase://tableau-session/";
702
971
  function normalizeHeaders(input) {
703
972
  const out = {};
704
973
  if (!input) return out;
@@ -707,6 +976,11 @@ function normalizeHeaders(input) {
707
976
  });
708
977
  return out;
709
978
  }
979
+ function extractInputUrl(input) {
980
+ if (typeof input === "string") return input;
981
+ if (input instanceof URL) return input.href;
982
+ return input.url;
983
+ }
710
984
  function createSandboxProxyFetch(connectionId) {
711
985
  return async (input, init) => {
712
986
  const token = process.env.INTERNAL_SQUADBASE_OAUTH_MACHINE_CREDENTIAL;
@@ -716,10 +990,17 @@ function createSandboxProxyFetch(connectionId) {
716
990
  "Connection proxy is not configured. Please check your deployment settings."
717
991
  );
718
992
  }
719
- const originalUrl = typeof input === "string" ? input : input instanceof URL ? input.href : input.url;
993
+ const originalUrl = extractInputUrl(input);
994
+ const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
995
+ if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
996
+ const sessionUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
997
+ return fetch(sessionUrl, {
998
+ method: "POST",
999
+ headers: { Authorization: `Bearer ${token}` }
1000
+ });
1001
+ }
720
1002
  const originalMethod = init?.method ?? "GET";
721
1003
  const originalBody = init?.body ? JSON.parse(init.body) : void 0;
722
- const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
723
1004
  const proxyUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
724
1005
  return fetch(proxyUrl, {
725
1006
  method: "POST",
@@ -745,10 +1026,9 @@ function createDeployedAppProxyFetch(connectionId) {
745
1026
  }
746
1027
  const baseDomain = process.env["SQUADBASE_APP_BASE_DOMAIN"] ?? "squadbase.app";
747
1028
  const proxyUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
1029
+ const sessionUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
748
1030
  return async (input, init) => {
749
- const originalUrl = typeof input === "string" ? input : input instanceof URL ? input.href : input.url;
750
- const originalMethod = init?.method ?? "GET";
751
- const originalBody = init?.body ? JSON.parse(init.body) : void 0;
1031
+ const originalUrl = extractInputUrl(input);
752
1032
  const c = getContext();
753
1033
  const appSession = getCookie(c, APP_SESSION_COOKIE_NAME);
754
1034
  if (!appSession) {
@@ -756,6 +1036,14 @@ function createDeployedAppProxyFetch(connectionId) {
756
1036
  "No authentication method available for connection proxy."
757
1037
  );
758
1038
  }
1039
+ if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
1040
+ return fetch(sessionUrl, {
1041
+ method: "POST",
1042
+ headers: { Authorization: `Bearer ${appSession}` }
1043
+ });
1044
+ }
1045
+ const originalMethod = init?.method ?? "GET";
1046
+ const originalBody = init?.body ? JSON.parse(init.body) : void 0;
759
1047
  return fetch(proxyUrl, {
760
1048
  method: "POST",
761
1049
  headers: {