@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,48 +1,60 @@
|
|
|
1
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
2
|
+
var __esm = (fn, res) => function __init() {
|
|
3
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
4
|
+
};
|
|
5
|
+
|
|
1
6
|
// ../connectors/src/parameter-definition.ts
|
|
2
|
-
var ParameterDefinition
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
7
|
+
var ParameterDefinition;
|
|
8
|
+
var init_parameter_definition = __esm({
|
|
9
|
+
"../connectors/src/parameter-definition.ts"() {
|
|
10
|
+
"use strict";
|
|
11
|
+
ParameterDefinition = class {
|
|
12
|
+
slug;
|
|
13
|
+
name;
|
|
14
|
+
description;
|
|
15
|
+
envVarBaseKey;
|
|
16
|
+
type;
|
|
17
|
+
secret;
|
|
18
|
+
required;
|
|
19
|
+
constructor(config) {
|
|
20
|
+
this.slug = config.slug;
|
|
21
|
+
this.name = config.name;
|
|
22
|
+
this.description = config.description;
|
|
23
|
+
this.envVarBaseKey = config.envVarBaseKey;
|
|
24
|
+
this.type = config.type;
|
|
25
|
+
this.secret = config.secret;
|
|
26
|
+
this.required = config.required;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Get the parameter value from a ConnectorConnectionObject.
|
|
30
|
+
*/
|
|
31
|
+
getValue(connection2) {
|
|
32
|
+
const param = connection2.parameters.find(
|
|
33
|
+
(p) => p.parameterSlug === this.slug
|
|
34
|
+
);
|
|
35
|
+
if (!param || param.value == null) {
|
|
36
|
+
throw new Error(
|
|
37
|
+
`Parameter "${this.slug}" not found or has no value in connection "${connection2.id}"`
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
return param.value;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Try to get the parameter value. Returns undefined if not found (for optional params).
|
|
44
|
+
*/
|
|
45
|
+
tryGetValue(connection2) {
|
|
46
|
+
const param = connection2.parameters.find(
|
|
47
|
+
(p) => p.parameterSlug === this.slug
|
|
48
|
+
);
|
|
49
|
+
if (!param || param.value == null) return void 0;
|
|
50
|
+
return param.value;
|
|
51
|
+
}
|
|
52
|
+
};
|
|
42
53
|
}
|
|
43
|
-
};
|
|
54
|
+
});
|
|
44
55
|
|
|
45
56
|
// ../connectors/src/connectors/linear/parameters.ts
|
|
57
|
+
init_parameter_definition();
|
|
46
58
|
var parameters = {
|
|
47
59
|
apiKey: new ParameterDefinition({
|
|
48
60
|
slug: "api-key",
|
|
@@ -207,6 +219,28 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
207
219
|
tools;
|
|
208
220
|
query;
|
|
209
221
|
checkConnection;
|
|
222
|
+
/**
|
|
223
|
+
* SQPD-1212: Logic-based, rule-driven connection setup. Connectors that
|
|
224
|
+
* implement this expose a step-by-step exploration flow (database/schema/
|
|
225
|
+
* table/etc. discovery) that the dashboard backend drives via the
|
|
226
|
+
* `/connections/:connectionId/setup` endpoint. Implement by delegating to
|
|
227
|
+
* `runSetupFlow` from `setup-flow.ts`.
|
|
228
|
+
*/
|
|
229
|
+
setup;
|
|
230
|
+
/**
|
|
231
|
+
* Opt-out of the default "verify before save" behavior on connection
|
|
232
|
+
* creation. The backend invokes `checkConnection` synchronously while
|
|
233
|
+
* creating the connection and aborts (no row inserted) if it fails — this
|
|
234
|
+
* flag disables that for connectors where the check cannot succeed pre-save:
|
|
235
|
+
*
|
|
236
|
+
* - `squadbase-db` populates `connection-url` only after Neon provisioning
|
|
237
|
+
* - OAuth connectors require an OAuth-aware proxyFetch keyed by the
|
|
238
|
+
* connectionId, which doesn't exist until the row is saved
|
|
239
|
+
*
|
|
240
|
+
* Exceptions are the explicit position; new credential-input connectors get
|
|
241
|
+
* the default verify-on-create behavior without opt-in.
|
|
242
|
+
*/
|
|
243
|
+
skipConnectionCheckOnCreate;
|
|
210
244
|
constructor(config) {
|
|
211
245
|
this.slug = config.slug;
|
|
212
246
|
this.authType = config.authType;
|
|
@@ -223,6 +257,8 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
223
257
|
this.tools = config.tools;
|
|
224
258
|
this.query = config.query;
|
|
225
259
|
this.checkConnection = config.checkConnection;
|
|
260
|
+
this.setup = config.setup;
|
|
261
|
+
this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
|
|
226
262
|
}
|
|
227
263
|
get connectorKey() {
|
|
228
264
|
return _ConnectorPlugin.deriveKey(this.slug, this.authType);
|
|
@@ -287,6 +323,76 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
287
323
|
}
|
|
288
324
|
};
|
|
289
325
|
|
|
326
|
+
// ../connectors/src/setup-flow.ts
|
|
327
|
+
async function runSetupFlow(flow, params, ctx, config) {
|
|
328
|
+
const runtime = {
|
|
329
|
+
params,
|
|
330
|
+
language: ctx.language,
|
|
331
|
+
config
|
|
332
|
+
};
|
|
333
|
+
let state = flow.initialState();
|
|
334
|
+
let answerIdx = 0;
|
|
335
|
+
const pendingParameterUpdates = [];
|
|
336
|
+
for (const step of flow.steps) {
|
|
337
|
+
const ans = ctx.answers[answerIdx];
|
|
338
|
+
if (ans && ans.questionSlug === step.slug) {
|
|
339
|
+
state = step.applyAnswer(state, ans.answer);
|
|
340
|
+
if (step.toParameterUpdates) {
|
|
341
|
+
pendingParameterUpdates.push(...step.toParameterUpdates(state));
|
|
342
|
+
}
|
|
343
|
+
answerIdx += 1;
|
|
344
|
+
continue;
|
|
345
|
+
}
|
|
346
|
+
const resolvedAllowFreeText = step.allowFreeText !== void 0 ? step.allowFreeText : true;
|
|
347
|
+
if (step.type === "text") {
|
|
348
|
+
if (step.fetchOptions) {
|
|
349
|
+
const options2 = await step.fetchOptions(state, runtime);
|
|
350
|
+
if (options2.length === 0) {
|
|
351
|
+
continue;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
return {
|
|
355
|
+
type: "nextQuestion",
|
|
356
|
+
questionSlug: step.slug,
|
|
357
|
+
question: step.question[ctx.language],
|
|
358
|
+
questionType: "text",
|
|
359
|
+
allowFreeText: resolvedAllowFreeText,
|
|
360
|
+
...pendingParameterUpdates.length > 0 && {
|
|
361
|
+
parameterUpdates: pendingParameterUpdates
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
}
|
|
365
|
+
const options = step.fetchOptions ? await step.fetchOptions(state, runtime) : [];
|
|
366
|
+
if (options.length === 0) {
|
|
367
|
+
continue;
|
|
368
|
+
}
|
|
369
|
+
return {
|
|
370
|
+
type: "nextQuestion",
|
|
371
|
+
questionSlug: step.slug,
|
|
372
|
+
question: step.question[ctx.language],
|
|
373
|
+
questionType: step.type,
|
|
374
|
+
options,
|
|
375
|
+
allowFreeText: resolvedAllowFreeText,
|
|
376
|
+
...pendingParameterUpdates.length > 0 && {
|
|
377
|
+
parameterUpdates: pendingParameterUpdates
|
|
378
|
+
}
|
|
379
|
+
};
|
|
380
|
+
}
|
|
381
|
+
const dataInvestigationResult = await flow.finalize(state, runtime);
|
|
382
|
+
return {
|
|
383
|
+
type: "fulfilled",
|
|
384
|
+
dataInvestigationResult,
|
|
385
|
+
...pendingParameterUpdates.length > 0 && {
|
|
386
|
+
parameterUpdates: pendingParameterUpdates
|
|
387
|
+
}
|
|
388
|
+
};
|
|
389
|
+
}
|
|
390
|
+
async function resolveSetupSelection(params) {
|
|
391
|
+
const { selected, allSentinel, fetchAll, limit } = params;
|
|
392
|
+
const resolved = selected.includes(allSentinel) ? await fetchAll() : selected.filter((v) => v !== allSentinel);
|
|
393
|
+
return resolved.slice(0, limit);
|
|
394
|
+
}
|
|
395
|
+
|
|
290
396
|
// ../connectors/src/auth-types.ts
|
|
291
397
|
var AUTH_TYPES = {
|
|
292
398
|
OAUTH: "oauth",
|
|
@@ -313,9 +419,122 @@ var linearOnboarding = new ConnectorOnboarding({
|
|
|
313
419
|
}
|
|
314
420
|
});
|
|
315
421
|
|
|
422
|
+
// ../connectors/src/connectors/linear/utils.ts
|
|
423
|
+
var BASE_URL2 = "https://api.linear.app/graphql";
|
|
424
|
+
async function gqlFetch(params, query, variables) {
|
|
425
|
+
const apiKey = params[parameters.apiKey.slug];
|
|
426
|
+
if (!apiKey) {
|
|
427
|
+
throw new Error("linear: missing required parameter: api-key");
|
|
428
|
+
}
|
|
429
|
+
const body = { query };
|
|
430
|
+
if (variables) body.variables = variables;
|
|
431
|
+
const res = await fetch(BASE_URL2, {
|
|
432
|
+
method: "POST",
|
|
433
|
+
headers: {
|
|
434
|
+
Authorization: apiKey,
|
|
435
|
+
"Content-Type": "application/json"
|
|
436
|
+
},
|
|
437
|
+
body: JSON.stringify(body)
|
|
438
|
+
});
|
|
439
|
+
if (!res.ok) {
|
|
440
|
+
const text = await res.text().catch(() => res.statusText);
|
|
441
|
+
throw new Error(`linear: GraphQL request failed (${res.status}): ${text}`);
|
|
442
|
+
}
|
|
443
|
+
const json = await res.json();
|
|
444
|
+
if (json.errors && json.errors.length > 0) {
|
|
445
|
+
const messages = json.errors.map((e) => e.message).join("; ");
|
|
446
|
+
if (!json.data) {
|
|
447
|
+
throw new Error(`linear: GraphQL error: ${messages}`);
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
return json.data ?? {};
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
// ../connectors/src/connectors/linear/setup-flow.ts
|
|
454
|
+
var ALL_TEAMS = "__ALL_TEAMS__";
|
|
455
|
+
var LINEAR_SETUP_MAX_TEAMS = 20;
|
|
456
|
+
async function listTeams(params) {
|
|
457
|
+
const data = await gqlFetch(params, `query { teams { nodes { id key name } } }`);
|
|
458
|
+
return data.teams?.nodes ?? [];
|
|
459
|
+
}
|
|
460
|
+
async function getTeamDetail(params, teamId) {
|
|
461
|
+
const data = await gqlFetch(
|
|
462
|
+
params,
|
|
463
|
+
`query($id: String!) {
|
|
464
|
+
team(id: $id) {
|
|
465
|
+
id key name description
|
|
466
|
+
states { nodes { id name type } }
|
|
467
|
+
members { nodes { id } }
|
|
468
|
+
}
|
|
469
|
+
}`,
|
|
470
|
+
{ id: teamId }
|
|
471
|
+
);
|
|
472
|
+
return data.team ?? null;
|
|
473
|
+
}
|
|
474
|
+
var linearSetupFlow = {
|
|
475
|
+
initialState: () => ({}),
|
|
476
|
+
steps: [
|
|
477
|
+
{
|
|
478
|
+
slug: "teams",
|
|
479
|
+
type: "multiSelect",
|
|
480
|
+
question: {
|
|
481
|
+
ja: "\u5BFE\u8C61\u306E\u30C1\u30FC\u30E0\u3092\u9078\u3093\u3067\u304F\u3060\u3055\u3044\uFF08\u8907\u6570\u9078\u629E\u53EF\uFF09",
|
|
482
|
+
en: "Select target teams (multi-select allowed)"
|
|
483
|
+
},
|
|
484
|
+
async fetchOptions(_state, rt) {
|
|
485
|
+
const teams = await listTeams(rt.params);
|
|
486
|
+
const teamOptions = teams.filter((t) => t.id && t.name).map((t) => ({ value: t.id, label: `${t.name} (${t.key})` }));
|
|
487
|
+
return [
|
|
488
|
+
{
|
|
489
|
+
value: ALL_TEAMS,
|
|
490
|
+
label: rt.language === "ja" ? "\u3059\u3079\u3066\u306E\u30C1\u30FC\u30E0" : "All teams"
|
|
491
|
+
},
|
|
492
|
+
...teamOptions
|
|
493
|
+
];
|
|
494
|
+
},
|
|
495
|
+
applyAnswer: (state, answer) => ({ ...state, teams: answer })
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
async finalize(state, rt) {
|
|
499
|
+
if (!state.teams) {
|
|
500
|
+
throw new Error("Linear setup: incomplete state on finalize");
|
|
501
|
+
}
|
|
502
|
+
const targetIds = await resolveSetupSelection({
|
|
503
|
+
selected: state.teams,
|
|
504
|
+
allSentinel: ALL_TEAMS,
|
|
505
|
+
fetchAll: async () => {
|
|
506
|
+
const teams = await listTeams(rt.params);
|
|
507
|
+
return teams.map((t) => t.id).filter((id) => id);
|
|
508
|
+
},
|
|
509
|
+
limit: LINEAR_SETUP_MAX_TEAMS
|
|
510
|
+
});
|
|
511
|
+
const sections = ["## Linear", ""];
|
|
512
|
+
for (const teamId of targetIds) {
|
|
513
|
+
const detail = await getTeamDetail(rt.params, teamId);
|
|
514
|
+
if (!detail) {
|
|
515
|
+
sections.push(`### Team: ${teamId}`, "", "_Not found._", "");
|
|
516
|
+
continue;
|
|
517
|
+
}
|
|
518
|
+
sections.push(`### Team: ${detail.name} (${detail.key})`, "");
|
|
519
|
+
if (detail.description) {
|
|
520
|
+
sections.push(detail.description, "");
|
|
521
|
+
}
|
|
522
|
+
const states = detail.states?.nodes ?? [];
|
|
523
|
+
const memberCount = detail.members?.nodes?.length ?? 0;
|
|
524
|
+
sections.push(`- Member count: ${memberCount}`);
|
|
525
|
+
sections.push(`- Workflow states (${states.length}):`);
|
|
526
|
+
for (const s of states) {
|
|
527
|
+
sections.push(` - ${s.name} (${s.type})`);
|
|
528
|
+
}
|
|
529
|
+
sections.push("");
|
|
530
|
+
}
|
|
531
|
+
return sections.join("\n");
|
|
532
|
+
}
|
|
533
|
+
};
|
|
534
|
+
|
|
316
535
|
// ../connectors/src/connectors/linear/tools/request.ts
|
|
317
536
|
import { z } from "zod";
|
|
318
|
-
var
|
|
537
|
+
var BASE_URL3 = "https://api.linear.app/graphql";
|
|
319
538
|
var REQUEST_TIMEOUT_MS = 6e4;
|
|
320
539
|
var inputSchema = z.object({
|
|
321
540
|
toolUseIntent: z.string().optional().describe(
|
|
@@ -365,7 +584,7 @@ Archived resources are hidden by default; pass includeArchived: true in query ar
|
|
|
365
584
|
try {
|
|
366
585
|
const body = { query };
|
|
367
586
|
if (variables) body.variables = variables;
|
|
368
|
-
const response = await fetch(
|
|
587
|
+
const response = await fetch(BASE_URL3, {
|
|
369
588
|
method: "POST",
|
|
370
589
|
headers: {
|
|
371
590
|
Authorization: apiKey,
|
|
@@ -539,7 +758,49 @@ export default async function handler(c: Context) {
|
|
|
539
758
|
- \`mutation { issueUpdate(id: "...", input: { stateId: "..." }) { success issue { id title state { name } } } }\` \u2014 Issue\u66F4\u65B0
|
|
540
759
|
- \`mutation { commentCreate(input: { issueId: "...", body: "..." }) { success comment { id body } } }\` \u2014 \u30B3\u30E1\u30F3\u30C8\u8FFD\u52A0`
|
|
541
760
|
},
|
|
542
|
-
tools
|
|
761
|
+
tools,
|
|
762
|
+
setup: (params, ctx, config) => runSetupFlow(linearSetupFlow, params, ctx, config),
|
|
763
|
+
async checkConnection(params, _config) {
|
|
764
|
+
try {
|
|
765
|
+
const apiKey = params[parameters.apiKey.slug];
|
|
766
|
+
if (!apiKey) {
|
|
767
|
+
return {
|
|
768
|
+
success: false,
|
|
769
|
+
error: "Missing required parameter: api-key"
|
|
770
|
+
};
|
|
771
|
+
}
|
|
772
|
+
const res = await fetch("https://api.linear.app/graphql", {
|
|
773
|
+
method: "POST",
|
|
774
|
+
headers: {
|
|
775
|
+
Authorization: apiKey,
|
|
776
|
+
"Content-Type": "application/json",
|
|
777
|
+
Accept: "application/json"
|
|
778
|
+
},
|
|
779
|
+
body: JSON.stringify({ query: "query { viewer { id } }" })
|
|
780
|
+
});
|
|
781
|
+
if (!res.ok) {
|
|
782
|
+
const errorText = await res.text().catch(() => res.statusText);
|
|
783
|
+
return {
|
|
784
|
+
success: false,
|
|
785
|
+
error: `Linear API failed: HTTP ${res.status} ${errorText}`
|
|
786
|
+
};
|
|
787
|
+
}
|
|
788
|
+
const body = await res.json().catch(() => null);
|
|
789
|
+
if (body?.errors && body.errors.length > 0) {
|
|
790
|
+
const msg = body.errors.map((e) => e.message ?? "unknown error").join("; ");
|
|
791
|
+
return {
|
|
792
|
+
success: false,
|
|
793
|
+
error: `Linear GraphQL errors: ${msg}`
|
|
794
|
+
};
|
|
795
|
+
}
|
|
796
|
+
return { success: true };
|
|
797
|
+
} catch (error) {
|
|
798
|
+
return {
|
|
799
|
+
success: false,
|
|
800
|
+
error: error instanceof Error ? error.message : String(error)
|
|
801
|
+
};
|
|
802
|
+
}
|
|
803
|
+
}
|
|
543
804
|
});
|
|
544
805
|
|
|
545
806
|
// src/connectors/create-connector-sdk.ts
|
|
@@ -568,6 +829,7 @@ function resolveEnvVarOptional(entry, key) {
|
|
|
568
829
|
import { getContext } from "hono/context-storage";
|
|
569
830
|
import { getCookie } from "hono/cookie";
|
|
570
831
|
var APP_SESSION_COOKIE_NAME = "__Host-squadbase-session";
|
|
832
|
+
var TABLEAU_SESSION_SENTINEL_URL = "squadbase://tableau-session/";
|
|
571
833
|
function normalizeHeaders(input) {
|
|
572
834
|
const out = {};
|
|
573
835
|
if (!input) return out;
|
|
@@ -576,6 +838,11 @@ function normalizeHeaders(input) {
|
|
|
576
838
|
});
|
|
577
839
|
return out;
|
|
578
840
|
}
|
|
841
|
+
function extractInputUrl(input) {
|
|
842
|
+
if (typeof input === "string") return input;
|
|
843
|
+
if (input instanceof URL) return input.href;
|
|
844
|
+
return input.url;
|
|
845
|
+
}
|
|
579
846
|
function createSandboxProxyFetch(connectionId) {
|
|
580
847
|
return async (input, init) => {
|
|
581
848
|
const token = process.env.INTERNAL_SQUADBASE_OAUTH_MACHINE_CREDENTIAL;
|
|
@@ -585,10 +852,17 @@ function createSandboxProxyFetch(connectionId) {
|
|
|
585
852
|
"Connection proxy is not configured. Please check your deployment settings."
|
|
586
853
|
);
|
|
587
854
|
}
|
|
588
|
-
const originalUrl =
|
|
855
|
+
const originalUrl = extractInputUrl(input);
|
|
856
|
+
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
857
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
858
|
+
const sessionUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
859
|
+
return fetch(sessionUrl, {
|
|
860
|
+
method: "POST",
|
|
861
|
+
headers: { Authorization: `Bearer ${token}` }
|
|
862
|
+
});
|
|
863
|
+
}
|
|
589
864
|
const originalMethod = init?.method ?? "GET";
|
|
590
865
|
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
591
|
-
const baseDomain = process.env["SQUADBASE_PREVIEW_BASE_DOMAIN"] ?? "preview.app.squadbase.dev";
|
|
592
866
|
const proxyUrl = `https://${sandboxId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
593
867
|
return fetch(proxyUrl, {
|
|
594
868
|
method: "POST",
|
|
@@ -614,10 +888,9 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
614
888
|
}
|
|
615
889
|
const baseDomain = process.env["SQUADBASE_APP_BASE_DOMAIN"] ?? "squadbase.app";
|
|
616
890
|
const proxyUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/request`;
|
|
891
|
+
const sessionUrl = `https://${projectId}.${baseDomain}/_sqcore/connections/${connectionId}/tableau-session`;
|
|
617
892
|
return async (input, init) => {
|
|
618
|
-
const originalUrl =
|
|
619
|
-
const originalMethod = init?.method ?? "GET";
|
|
620
|
-
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
893
|
+
const originalUrl = extractInputUrl(input);
|
|
621
894
|
const c = getContext();
|
|
622
895
|
const appSession = getCookie(c, APP_SESSION_COOKIE_NAME);
|
|
623
896
|
if (!appSession) {
|
|
@@ -625,6 +898,14 @@ function createDeployedAppProxyFetch(connectionId) {
|
|
|
625
898
|
"No authentication method available for connection proxy."
|
|
626
899
|
);
|
|
627
900
|
}
|
|
901
|
+
if (originalUrl === TABLEAU_SESSION_SENTINEL_URL) {
|
|
902
|
+
return fetch(sessionUrl, {
|
|
903
|
+
method: "POST",
|
|
904
|
+
headers: { Authorization: `Bearer ${appSession}` }
|
|
905
|
+
});
|
|
906
|
+
}
|
|
907
|
+
const originalMethod = init?.method ?? "GET";
|
|
908
|
+
const originalBody = init?.body ? JSON.parse(init.body) : void 0;
|
|
628
909
|
return fetch(proxyUrl, {
|
|
629
910
|
method: "POST",
|
|
630
911
|
headers: {
|