@squadbase/vite-server 0.1.17 → 0.1.19-dev.a00d9c3
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 +5961 -2986
- package/dist/connectors/airtable-oauth.js +39 -15
- package/dist/connectors/airtable.js +86 -15
- package/dist/connectors/amplitude.js +39 -15
- package/dist/connectors/anthropic.js +39 -15
- package/dist/connectors/asana.js +39 -15
- package/dist/connectors/attio.js +39 -15
- package/dist/connectors/aws-billing.js +39 -15
- package/dist/connectors/azure-sql.js +291 -18
- package/dist/connectors/backlog-api-key.js +39 -15
- package/dist/connectors/clickup.js +39 -15
- package/dist/connectors/cosmosdb.js +39 -15
- package/dist/connectors/customerio.js +39 -15
- package/dist/connectors/dbt.js +39 -15
- package/dist/connectors/freshdesk.js +39 -15
- package/dist/connectors/freshsales.js +39 -15
- package/dist/connectors/freshservice.js +39 -15
- package/dist/connectors/gamma.js +39 -15
- package/dist/connectors/gemini.js +39 -15
- package/dist/connectors/github.js +39 -15
- package/dist/connectors/gmail-oauth.js +32 -13
- package/dist/connectors/gmail.js +39 -15
- package/dist/connectors/google-ads.js +39 -15
- package/dist/connectors/google-analytics-oauth.js +40 -16
- package/dist/connectors/google-analytics.js +39 -15
- package/dist/connectors/google-audit-log.js +39 -15
- package/dist/connectors/google-calendar-oauth.js +40 -16
- package/dist/connectors/google-calendar.js +39 -15
- package/dist/connectors/google-docs.js +32 -13
- package/dist/connectors/google-drive.js +32 -13
- package/dist/connectors/google-search-console-oauth.js +39 -15
- package/dist/connectors/google-sheets.js +138 -195
- package/dist/connectors/google-slides.js +32 -13
- package/dist/connectors/grafana.js +39 -15
- package/dist/connectors/hackernews.d.ts +5 -0
- package/dist/connectors/hackernews.js +909 -0
- package/dist/connectors/hubspot-oauth.js +32 -13
- package/dist/connectors/hubspot.js +39 -15
- package/dist/connectors/influxdb.js +39 -15
- package/dist/connectors/intercom-oauth.js +32 -13
- package/dist/connectors/intercom.js +39 -15
- package/dist/connectors/jdbc.js +70 -19
- package/dist/connectors/jira-api-key.js +39 -15
- package/dist/connectors/kintone-api-token.js +39 -15
- package/dist/connectors/kintone.js +128 -15
- package/dist/connectors/linear.js +39 -15
- package/dist/connectors/linkedin-ads.js +39 -15
- package/dist/connectors/mailchimp-oauth.js +39 -15
- package/dist/connectors/mailchimp.js +39 -15
- package/dist/connectors/meta-ads-oauth.js +39 -15
- package/dist/connectors/meta-ads.js +39 -15
- package/dist/connectors/mixpanel.js +39 -15
- package/dist/connectors/monday.js +39 -15
- package/dist/connectors/mongodb.js +39 -15
- package/dist/connectors/notion-oauth.js +32 -13
- package/dist/connectors/notion.js +84 -15
- package/dist/connectors/openai.js +39 -15
- package/dist/connectors/oracle.js +293 -19
- package/dist/connectors/outlook-oauth.js +33 -14
- package/dist/connectors/powerbi-oauth.js +33 -14
- package/dist/connectors/salesforce.js +108 -15
- package/dist/connectors/semrush.js +39 -15
- package/dist/connectors/sentry.js +39 -15
- package/dist/connectors/shopify-oauth.js +32 -13
- package/dist/connectors/shopify.js +39 -15
- package/dist/connectors/slack.d.ts +5 -0
- package/dist/connectors/slack.js +656 -0
- package/dist/connectors/sqlserver.js +291 -18
- package/dist/connectors/stripe-api-key.js +39 -15
- package/dist/connectors/stripe-oauth.js +32 -13
- package/dist/connectors/supabase.js +293 -16
- package/dist/connectors/tableau.js +40 -16
- package/dist/connectors/tiktok-ads.js +39 -15
- package/dist/connectors/wix-store.js +39 -15
- package/dist/connectors/x.d.ts +5 -0
- package/dist/connectors/x.js +951 -0
- package/dist/connectors/zendesk-oauth.js +32 -13
- package/dist/connectors/zendesk.js +39 -15
- package/dist/index.js +6425 -3397
- package/dist/main.js +6425 -3397
- package/dist/vite-plugin.js +5965 -2987
- package/package.json +13 -4
|
@@ -73,6 +73,15 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
73
73
|
* `runSetupFlow` from `setup-flow.ts`.
|
|
74
74
|
*/
|
|
75
75
|
setup;
|
|
76
|
+
/**
|
|
77
|
+
* 統一 introspection。SQL DB の `information_schema` / `SHOW` / `DESCRIBE` や SaaS の
|
|
78
|
+
* メタデータ API といった取得経路の差を吸収し、tables / columns / PK / FK を共通型
|
|
79
|
+
* {@link IntrospectedSchema} へ正規化して返す。取得経路は {@link IntrospectContext} で
|
|
80
|
+
* 抽象化され、SQL DB は `ctx.query`、SaaS は `ctx.proxyFetch` + `ctx.params` を使う。
|
|
81
|
+
* `ctx.profile === true` のときは L2 プロファイル(行数・NULL 率等)も best-effort で埋める。
|
|
82
|
+
* coding-agent の `DataContextIndex` がデータ地図を構築する際に使う。
|
|
83
|
+
*/
|
|
84
|
+
introspect;
|
|
76
85
|
/**
|
|
77
86
|
* Opt-out of the default "verify before save" behavior on connection
|
|
78
87
|
* creation. The backend invokes `checkConnection` synchronously while
|
|
@@ -87,6 +96,14 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
87
96
|
* the default verify-on-create behavior without opt-in.
|
|
88
97
|
*/
|
|
89
98
|
skipConnectionCheckOnCreate;
|
|
99
|
+
/**
|
|
100
|
+
* 決定論的な「立ち上げ survey」レシピ(ルールベース prewarm 基盤)。実装した connector は、LLM を使わずに
|
|
101
|
+
* read-only で自分を survey する probe 列(テーブル/列メタデータ → 小サンプル)を宣言する。coding-agent の
|
|
102
|
+
* recon driver がこれを読み、connector ツールの `execute` を直接呼んで結果を seed にする。未実装の connector は
|
|
103
|
+
* driver 側で safely skip される(その connection は listConnections のみ seed)。標準 `information_schema` を
|
|
104
|
+
* 持つ SQL connector は `makeStandardSqlSurveyProbes` を使える。**probe は必ず read-only**。
|
|
105
|
+
*/
|
|
106
|
+
surveyProbes;
|
|
90
107
|
constructor(config) {
|
|
91
108
|
this.slug = config.slug;
|
|
92
109
|
this.authType = config.authType;
|
|
@@ -104,7 +121,9 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
104
121
|
this.query = config.query;
|
|
105
122
|
this.checkConnection = config.checkConnection;
|
|
106
123
|
this.setup = config.setup;
|
|
124
|
+
this.introspect = config.introspect;
|
|
107
125
|
this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
|
|
126
|
+
this.surveyProbes = config.surveyProbes;
|
|
108
127
|
}
|
|
109
128
|
get connectorKey() {
|
|
110
129
|
return _ConnectorPlugin.deriveKey(this.slug, this.authType);
|
|
@@ -142,25 +161,25 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
142
161
|
if (authType) return `${slug}-${authType}`;
|
|
143
162
|
const LEGACY_NULL_AUTH_TYPE_MAP = {
|
|
144
163
|
// user-password
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
164
|
+
postgresql: "user-password",
|
|
165
|
+
mysql: "user-password",
|
|
166
|
+
clickhouse: "user-password",
|
|
167
|
+
kintone: "user-password",
|
|
149
168
|
"squadbase-db": "user-password",
|
|
150
169
|
// service-account
|
|
151
|
-
|
|
152
|
-
|
|
170
|
+
snowflake: "service-account",
|
|
171
|
+
bigquery: "service-account",
|
|
153
172
|
"google-analytics": "service-account",
|
|
154
173
|
"google-calendar": "service-account",
|
|
155
174
|
"aws-athena": "service-account",
|
|
156
|
-
|
|
175
|
+
redshift: "service-account",
|
|
157
176
|
// api-key
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
177
|
+
databricks: "api-key",
|
|
178
|
+
dbt: "api-key",
|
|
179
|
+
airtable: "api-key",
|
|
180
|
+
openai: "api-key",
|
|
181
|
+
gemini: "api-key",
|
|
182
|
+
anthropic: "api-key",
|
|
164
183
|
"wix-store": "api-key"
|
|
165
184
|
};
|
|
166
185
|
const fallbackAuthType = LEGACY_NULL_AUTH_TYPE_MAP[slug];
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
2
|
-
var __esm = (fn, res) => function __init() {
|
|
3
|
-
|
|
2
|
+
var __esm = (fn, res, err) => function __init() {
|
|
3
|
+
if (err) throw err[0];
|
|
4
|
+
try {
|
|
5
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
6
|
+
} catch (e) {
|
|
7
|
+
throw err = [e], e;
|
|
8
|
+
}
|
|
4
9
|
};
|
|
5
10
|
|
|
6
11
|
// ../connectors/src/parameter-definition.ts
|
|
@@ -262,6 +267,15 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
262
267
|
* `runSetupFlow` from `setup-flow.ts`.
|
|
263
268
|
*/
|
|
264
269
|
setup;
|
|
270
|
+
/**
|
|
271
|
+
* 統一 introspection。SQL DB の `information_schema` / `SHOW` / `DESCRIBE` や SaaS の
|
|
272
|
+
* メタデータ API といった取得経路の差を吸収し、tables / columns / PK / FK を共通型
|
|
273
|
+
* {@link IntrospectedSchema} へ正規化して返す。取得経路は {@link IntrospectContext} で
|
|
274
|
+
* 抽象化され、SQL DB は `ctx.query`、SaaS は `ctx.proxyFetch` + `ctx.params` を使う。
|
|
275
|
+
* `ctx.profile === true` のときは L2 プロファイル(行数・NULL 率等)も best-effort で埋める。
|
|
276
|
+
* coding-agent の `DataContextIndex` がデータ地図を構築する際に使う。
|
|
277
|
+
*/
|
|
278
|
+
introspect;
|
|
265
279
|
/**
|
|
266
280
|
* Opt-out of the default "verify before save" behavior on connection
|
|
267
281
|
* creation. The backend invokes `checkConnection` synchronously while
|
|
@@ -276,6 +290,14 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
276
290
|
* the default verify-on-create behavior without opt-in.
|
|
277
291
|
*/
|
|
278
292
|
skipConnectionCheckOnCreate;
|
|
293
|
+
/**
|
|
294
|
+
* 決定論的な「立ち上げ survey」レシピ(ルールベース prewarm 基盤)。実装した connector は、LLM を使わずに
|
|
295
|
+
* read-only で自分を survey する probe 列(テーブル/列メタデータ → 小サンプル)を宣言する。coding-agent の
|
|
296
|
+
* recon driver がこれを読み、connector ツールの `execute` を直接呼んで結果を seed にする。未実装の connector は
|
|
297
|
+
* driver 側で safely skip される(その connection は listConnections のみ seed)。標準 `information_schema` を
|
|
298
|
+
* 持つ SQL connector は `makeStandardSqlSurveyProbes` を使える。**probe は必ず read-only**。
|
|
299
|
+
*/
|
|
300
|
+
surveyProbes;
|
|
279
301
|
constructor(config) {
|
|
280
302
|
this.slug = config.slug;
|
|
281
303
|
this.authType = config.authType;
|
|
@@ -293,7 +315,9 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
293
315
|
this.query = config.query;
|
|
294
316
|
this.checkConnection = config.checkConnection;
|
|
295
317
|
this.setup = config.setup;
|
|
318
|
+
this.introspect = config.introspect;
|
|
296
319
|
this.skipConnectionCheckOnCreate = config.skipConnectionCheckOnCreate;
|
|
320
|
+
this.surveyProbes = config.surveyProbes;
|
|
297
321
|
}
|
|
298
322
|
get connectorKey() {
|
|
299
323
|
return _ConnectorPlugin.deriveKey(this.slug, this.authType);
|
|
@@ -331,25 +355,25 @@ var ConnectorPlugin = class _ConnectorPlugin {
|
|
|
331
355
|
if (authType) return `${slug}-${authType}`;
|
|
332
356
|
const LEGACY_NULL_AUTH_TYPE_MAP = {
|
|
333
357
|
// user-password
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
358
|
+
postgresql: "user-password",
|
|
359
|
+
mysql: "user-password",
|
|
360
|
+
clickhouse: "user-password",
|
|
361
|
+
kintone: "user-password",
|
|
338
362
|
"squadbase-db": "user-password",
|
|
339
363
|
// service-account
|
|
340
|
-
|
|
341
|
-
|
|
364
|
+
snowflake: "service-account",
|
|
365
|
+
bigquery: "service-account",
|
|
342
366
|
"google-analytics": "service-account",
|
|
343
367
|
"google-calendar": "service-account",
|
|
344
368
|
"aws-athena": "service-account",
|
|
345
|
-
|
|
369
|
+
redshift: "service-account",
|
|
346
370
|
// api-key
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
371
|
+
databricks: "api-key",
|
|
372
|
+
dbt: "api-key",
|
|
373
|
+
airtable: "api-key",
|
|
374
|
+
openai: "api-key",
|
|
375
|
+
gemini: "api-key",
|
|
376
|
+
anthropic: "api-key",
|
|
353
377
|
"wix-store": "api-key"
|
|
354
378
|
};
|
|
355
379
|
const fallbackAuthType = LEGACY_NULL_AUTH_TYPE_MAP[slug];
|