@rawdash/connector-vanta 0.26.0

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/index.js ADDED
@@ -0,0 +1,605 @@
1
+ // ../../connector-shared/dist/index.js
2
+ var HTTP_CLIENT_VERSION = "0.0.0";
3
+ var DEFAULT_USER_AGENT = `rawdash-connector/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;
4
+ function connectorUserAgent(connectorId) {
5
+ return `rawdash-connector-${connectorId}/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;
6
+ }
7
+ function parseEpoch(value, unit) {
8
+ if (value === null || value === void 0) {
9
+ return null;
10
+ }
11
+ if (unit === "iso") {
12
+ if (typeof value !== "string") {
13
+ return null;
14
+ }
15
+ const ms = new Date(value).getTime();
16
+ return Number.isFinite(ms) ? ms : null;
17
+ }
18
+ if (typeof value === "string" && value.trim() === "") {
19
+ return null;
20
+ }
21
+ const n = typeof value === "number" ? value : Number(value);
22
+ if (!Number.isFinite(n)) {
23
+ return null;
24
+ }
25
+ const result = unit === "s" ? n * 1e3 : n;
26
+ return Number.isFinite(result) ? result : null;
27
+ }
28
+
29
+ // src/vanta.ts
30
+ import {
31
+ BaseConnector,
32
+ defineConfigFields,
33
+ defineConnectorDoc,
34
+ defineResources,
35
+ makeChunkedCursorGuard,
36
+ paginateChunked,
37
+ schemasFromResources,
38
+ selectActivePhases
39
+ } from "@rawdash/core";
40
+ import { z } from "zod";
41
+ var configFields = defineConfigFields(
42
+ z.object({
43
+ clientId: z.string().min(1).meta({
44
+ label: "OAuth client ID",
45
+ description: "Client ID of the Vanta OAuth application authorized for the Public API. Created under Settings -> Connect -> Public API in Vanta.",
46
+ placeholder: "vci_AbCdEf..."
47
+ }),
48
+ clientSecret: z.object({ $secret: z.string().min(1) }).meta({
49
+ label: "OAuth client secret",
50
+ description: "Client secret of the Vanta OAuth application. Stored as a secret.",
51
+ placeholder: "VANTA_CLIENT_SECRET",
52
+ secret: true
53
+ }),
54
+ scope: z.string().trim().min(1).optional().meta({
55
+ label: "OAuth scopes",
56
+ description: 'Space-delimited OAuth scopes requested when minting a token. Defaults to "vanta-api.all:read", which covers every read endpoint this connector calls.',
57
+ placeholder: "vanta-api.all:read"
58
+ }),
59
+ resources: z.array(z.enum(["controls", "tests", "findings"])).nonempty().optional().meta({
60
+ label: "Resources",
61
+ description: "Which Vanta resources to sync. Omit to sync all of them. The OAuth client only needs the read scope for the resources listed here."
62
+ }),
63
+ findingsLookbackDays: z.number().int().positive().optional().meta({
64
+ label: "Findings lookback (days)",
65
+ description: "How many days of test findings to refresh on each full sync. Defaults to 90. Incremental syncs use the run watermark and ignore this field.",
66
+ placeholder: "90"
67
+ })
68
+ })
69
+ );
70
+ var doc = defineConnectorDoc({
71
+ displayName: "Vanta",
72
+ category: "security",
73
+ brandColor: "#45D5BB",
74
+ tagline: "Sync controls, tests, and test findings from a Vanta workspace for audit-ready %, failing-test count, and open-finding compliance dashboards.",
75
+ vendor: {
76
+ name: "Vanta",
77
+ domain: "vanta.com",
78
+ apiDocs: "https://developer.vanta.com/",
79
+ website: "https://www.vanta.com"
80
+ },
81
+ auth: {
82
+ summary: "OAuth 2.0 client-credentials flow against a Vanta Public API application. Read-only scopes are sufficient.",
83
+ setup: [
84
+ "Sign in to Vanta as an admin and open Settings -> Connect -> Public API.",
85
+ "Create a new application; grant it read access to the resources you intend to sync (controls, tests, findings).",
86
+ "Copy the generated Client ID and Client Secret. Vanta only shows the secret once.",
87
+ 'Store the client secret as a rawdash secret and reference it from the connector config as `clientSecret: secret("VANTA_CLIENT_SECRET")`.'
88
+ ]
89
+ },
90
+ rateLimit: "Vanta enforces a per-application quota (50 requests per minute on the default tier) and responds with 429 + Retry-After when exceeded; the shared HTTP client honors Retry-After when scheduling the next request.",
91
+ limitations: [
92
+ "Only controls, tests, and test findings are synced. Frameworks, risks, vendors, audits, people, and document-evidence resources are out of scope.",
93
+ "Controls and tests are full-snapshot resources: every sync re-reads the whole list and rewrites the entity scope on the first page. Tenants with very large catalogs (10k+ controls/tests) should run the connector less often.",
94
+ "Test findings before the configured lookback window (default 90 days) are not refreshed; they remain whatever the most recent sync that did see them wrote."
95
+ ]
96
+ });
97
+ var vantaCredentials = {
98
+ clientId: {
99
+ description: "Vanta Public API OAuth client ID",
100
+ auth: "required"
101
+ },
102
+ clientSecret: {
103
+ description: "Vanta Public API OAuth client secret",
104
+ auth: "required"
105
+ }
106
+ };
107
+ var PHASE_ORDER = ["controls", "tests", "findings"];
108
+ var isVantaSyncCursor = makeChunkedCursorGuard(PHASE_ORDER);
109
+ var CONTROL_ENTITY = "vanta_control";
110
+ var TEST_ENTITY = "vanta_test";
111
+ var FINDING_EVENT = "vanta_test_finding";
112
+ var API_HOST = "https://api.vanta.com";
113
+ var TOKEN_URL = `${API_HOST}/oauth/token`;
114
+ var DEFAULT_SCOPE = "vanta-api.all:read";
115
+ var PAGE_SIZE = 100;
116
+ var DEFAULT_FINDINGS_LOOKBACK_DAYS = 90;
117
+ var CONTROL_STATUSES = ["PASSING", "FAILING", "NEEDS_ATTENTION"];
118
+ var TEST_STATUSES = [
119
+ "OK",
120
+ "NEEDS_ATTENTION",
121
+ "DEACTIVATED",
122
+ "IN_PROGRESS"
123
+ ];
124
+ var FINDING_SEVERITIES = ["LOW", "MEDIUM", "HIGH", "CRITICAL"];
125
+ var idString = z.string().min(1);
126
+ var oauthTokenSchema = z.object({
127
+ access_token: z.string().min(1),
128
+ token_type: z.string().optional(),
129
+ expires_in: z.number().optional(),
130
+ scope: z.string().optional()
131
+ });
132
+ var pageInfoSchema = z.object({
133
+ endCursor: z.string().nullish(),
134
+ hasNextPage: z.boolean().nullish()
135
+ }).nullish();
136
+ var frameworkRefSchema = z.object({
137
+ name: z.string().nullish(),
138
+ matchingId: z.string().nullish()
139
+ });
140
+ var controlSchema = z.object({
141
+ id: idString,
142
+ name: z.string().nullish(),
143
+ description: z.string().nullish(),
144
+ status: z.string().nullish(),
145
+ frameworks: z.array(frameworkRefSchema).nullish(),
146
+ lastEvaluatedAt: z.string().nullish(),
147
+ updatedAt: z.string().nullish(),
148
+ createdAt: z.string().nullish()
149
+ });
150
+ var controlsResponseSchema = z.object({
151
+ results: z.object({
152
+ data: z.array(controlSchema),
153
+ pageInfo: pageInfoSchema
154
+ })
155
+ });
156
+ var testSchema = z.object({
157
+ id: idString,
158
+ name: z.string().nullish(),
159
+ description: z.string().nullish(),
160
+ status: z.string().nullish(),
161
+ controlIds: z.array(z.string()).nullish(),
162
+ controls: z.array(z.object({ id: z.string() })).nullish(),
163
+ evidenceCount: z.number().nullish(),
164
+ lastTestedAt: z.string().nullish(),
165
+ updatedAt: z.string().nullish(),
166
+ createdAt: z.string().nullish()
167
+ });
168
+ var testsResponseSchema = z.object({
169
+ results: z.object({
170
+ data: z.array(testSchema),
171
+ pageInfo: pageInfoSchema
172
+ })
173
+ });
174
+ var findingSchema = z.object({
175
+ id: idString,
176
+ testId: z.string().nullish(),
177
+ controlId: z.string().nullish(),
178
+ severity: z.string().nullish(),
179
+ status: z.string().nullish(),
180
+ createdAt: z.string(),
181
+ resolvedAt: z.string().nullish(),
182
+ description: z.string().nullish(),
183
+ resourceId: z.string().nullish()
184
+ });
185
+ var findingsResponseSchema = z.object({
186
+ results: z.object({
187
+ data: z.array(findingSchema),
188
+ pageInfo: pageInfoSchema
189
+ })
190
+ });
191
+ var vantaResources = defineResources({
192
+ [CONTROL_ENTITY]: {
193
+ shape: "entity",
194
+ filterable: [
195
+ {
196
+ field: "status",
197
+ ops: ["eq"],
198
+ values: ["PASSING", "FAILING", "NEEDS_ATTENTION"]
199
+ },
200
+ { field: "framework", ops: ["eq"] }
201
+ ],
202
+ description: "Vanta controls keyed by id. Each control belongs to one or more frameworks (SOC 2, HIPAA, ISO 27001, etc.) and has a roll-up status of PASSING, FAILING, or NEEDS_ATTENTION.",
203
+ endpoint: "GET /v1/controls",
204
+ notes: "Cursor pagination via pageCursor / pageSize. Controls are a full-snapshot resource: a full sync rewrites the scope on first page.",
205
+ fields: [
206
+ { name: "name", description: "Human-readable control name." },
207
+ {
208
+ name: "status",
209
+ description: "Roll-up status (PASSING, FAILING, or NEEDS_ATTENTION)."
210
+ },
211
+ {
212
+ name: "framework",
213
+ description: 'Name of the first framework the control is mapped to (e.g. "SOC 2"). Use the framework dimension for distributions when a control maps to several frameworks.'
214
+ },
215
+ {
216
+ name: "frameworks",
217
+ description: "Comma-separated list of every framework the control is mapped to."
218
+ },
219
+ {
220
+ name: "lastEvaluated",
221
+ description: "When Vanta last evaluated the control (Unix ms)."
222
+ }
223
+ ],
224
+ responses: {
225
+ oauth_token: oauthTokenSchema,
226
+ controls: controlsResponseSchema
227
+ }
228
+ },
229
+ [TEST_ENTITY]: {
230
+ shape: "entity",
231
+ filterable: [
232
+ {
233
+ field: "status",
234
+ ops: ["eq"],
235
+ values: ["OK", "NEEDS_ATTENTION", "DEACTIVATED", "IN_PROGRESS"]
236
+ }
237
+ ],
238
+ description: "Vanta tests keyed by id. A test is the smallest unit of evaluation in Vanta and may be mapped to multiple controls.",
239
+ endpoint: "GET /v1/tests",
240
+ notes: "Cursor pagination via pageCursor / pageSize. Tests are a full-snapshot resource.",
241
+ fields: [
242
+ { name: "name", description: "Human-readable test name." },
243
+ {
244
+ name: "status",
245
+ description: "Test status (OK, NEEDS_ATTENTION, DEACTIVATED, or IN_PROGRESS)."
246
+ },
247
+ {
248
+ name: "controlId",
249
+ description: "First control id the test is mapped to (a test may be mapped to several controls)."
250
+ },
251
+ {
252
+ name: "controlCount",
253
+ description: "Number of controls the test is mapped to."
254
+ },
255
+ {
256
+ name: "evidenceCount",
257
+ description: "Number of distinct evidence rows backing the test (counter maintained by Vanta)."
258
+ },
259
+ {
260
+ name: "lastTested",
261
+ description: "When Vanta last ran the test (Unix ms)."
262
+ }
263
+ ],
264
+ responses: { tests: testsResponseSchema }
265
+ },
266
+ [FINDING_EVENT]: {
267
+ shape: "event",
268
+ filterable: [
269
+ {
270
+ field: "severity",
271
+ ops: ["eq"],
272
+ values: ["LOW", "MEDIUM", "HIGH", "CRITICAL"]
273
+ },
274
+ {
275
+ field: "status",
276
+ ops: ["eq"],
277
+ values: ["OPEN", "RESOLVED", "DEFERRED", "WONT_FIX"]
278
+ }
279
+ ],
280
+ description: "Test findings (one event per finding row), with severity, the test it came from, and resolved-at when applicable. Useful for open-finding counts and MTTR-to-resolution timeseries.",
281
+ endpoint: "GET /v1/test-findings",
282
+ notes: "Cursor pagination via pageCursor / pageSize. Full syncs walk back findingsLookbackDays days; incremental syncs use the sync `since` watermark.",
283
+ fields: [
284
+ { name: "findingId", description: "Vanta finding id." },
285
+ {
286
+ name: "severity",
287
+ description: "Finding severity (LOW, MEDIUM, HIGH, CRITICAL)."
288
+ },
289
+ {
290
+ name: "status",
291
+ description: "Finding status (OPEN, RESOLVED, DEFERRED, WONT_FIX)."
292
+ },
293
+ {
294
+ name: "testId",
295
+ description: "Id of the test that produced the finding."
296
+ },
297
+ {
298
+ name: "controlId",
299
+ description: "First control id the finding is mapped to (via its test)."
300
+ },
301
+ {
302
+ name: "resolvedAt",
303
+ description: "Resolution timestamp (Unix ms) when resolved."
304
+ }
305
+ ],
306
+ responses: { findings: findingsResponseSchema }
307
+ }
308
+ });
309
+ var id = "vanta";
310
+ function isControlStatus(value) {
311
+ return CONTROL_STATUSES.includes(value);
312
+ }
313
+ function isTestStatus(value) {
314
+ return TEST_STATUSES.includes(value);
315
+ }
316
+ function isFindingSeverity(value) {
317
+ return FINDING_SEVERITIES.includes(value);
318
+ }
319
+ function normalizeFrameworks(control) {
320
+ const frameworks = control.frameworks ?? [];
321
+ const names = [];
322
+ for (const f of frameworks) {
323
+ if (typeof f.name === "string" && f.name.length > 0) {
324
+ names.push(f.name);
325
+ }
326
+ }
327
+ if (names.length === 0) {
328
+ return { primary: null, list: "" };
329
+ }
330
+ return { primary: names[0], list: names.join(",") };
331
+ }
332
+ function controlIdsForTest(test) {
333
+ if (Array.isArray(test.controlIds) && test.controlIds.length > 0) {
334
+ return test.controlIds.filter((s) => typeof s === "string" && s.length > 0);
335
+ }
336
+ if (Array.isArray(test.controls) && test.controls.length > 0) {
337
+ return test.controls.map((c) => c.id).filter((s) => typeof s === "string" && s.length > 0);
338
+ }
339
+ return [];
340
+ }
341
+ var VantaConnector = class _VantaConnector extends BaseConnector {
342
+ static id = id;
343
+ static resources = vantaResources;
344
+ static schemas = schemasFromResources(vantaResources);
345
+ static create(input, ctx) {
346
+ const parsed = configFields.parse(input);
347
+ return new _VantaConnector(
348
+ {
349
+ resources: parsed.resources,
350
+ scope: parsed.scope,
351
+ findingsLookbackDays: parsed.findingsLookbackDays
352
+ },
353
+ {
354
+ clientId: parsed.clientId,
355
+ clientSecret: parsed.clientSecret
356
+ },
357
+ ctx
358
+ );
359
+ }
360
+ id = id;
361
+ credentials = vantaCredentials;
362
+ accessToken = null;
363
+ accessTokenExpiry = 0;
364
+ scope() {
365
+ return this.settings.scope ?? DEFAULT_SCOPE;
366
+ }
367
+ async refreshAccessToken(signal) {
368
+ const res = await this.post(TOKEN_URL, {
369
+ resource: "oauth_token",
370
+ headers: {
371
+ "Content-Type": "application/json",
372
+ Accept: "application/json",
373
+ "User-Agent": connectorUserAgent("vanta")
374
+ },
375
+ body: JSON.stringify({
376
+ grant_type: "client_credentials",
377
+ client_id: this.creds.clientId,
378
+ client_secret: this.creds.clientSecret,
379
+ scope: this.scope()
380
+ }),
381
+ signal
382
+ });
383
+ const token = res.body.access_token;
384
+ const expiresIn = res.body.expires_in ?? 3600;
385
+ this.accessToken = token;
386
+ this.accessTokenExpiry = Date.now() + (expiresIn - 60) * 1e3;
387
+ return token;
388
+ }
389
+ async getAccessToken(signal) {
390
+ if (!this.accessToken || Date.now() >= this.accessTokenExpiry) {
391
+ return this.refreshAccessToken(signal);
392
+ }
393
+ return this.accessToken;
394
+ }
395
+ async apiGet(url, resource, signal) {
396
+ const token = await this.getAccessToken(signal);
397
+ return this.get(url, {
398
+ resource,
399
+ headers: {
400
+ Authorization: `Bearer ${token}`,
401
+ Accept: "application/json",
402
+ "User-Agent": connectorUserAgent("vanta")
403
+ },
404
+ signal
405
+ });
406
+ }
407
+ buildListUrl(path, cursor, extra) {
408
+ const u = new URL(`${API_HOST}${path}`);
409
+ u.searchParams.set("pageSize", String(PAGE_SIZE));
410
+ if (cursor) {
411
+ u.searchParams.set("pageCursor", cursor);
412
+ }
413
+ if (extra) {
414
+ for (const [k, v] of Object.entries(extra)) {
415
+ u.searchParams.set(k, v);
416
+ }
417
+ }
418
+ return u.toString();
419
+ }
420
+ nextCursor(pageInfo) {
421
+ if (!pageInfo) {
422
+ return null;
423
+ }
424
+ if (pageInfo.hasNextPage === false) {
425
+ return null;
426
+ }
427
+ return pageInfo.endCursor ?? null;
428
+ }
429
+ async fetchControlsPage(cursor, signal) {
430
+ const url = this.buildListUrl("/v1/controls", cursor);
431
+ const res = await this.apiGet(url, "controls", signal);
432
+ return {
433
+ items: res.body.results.data,
434
+ next: this.nextCursor(res.body.results.pageInfo)
435
+ };
436
+ }
437
+ async fetchTestsPage(cursor, signal) {
438
+ const url = this.buildListUrl("/v1/tests", cursor);
439
+ const res = await this.apiGet(url, "tests", signal);
440
+ return {
441
+ items: res.body.results.data,
442
+ next: this.nextCursor(res.body.results.pageInfo)
443
+ };
444
+ }
445
+ findingsSinceIso(options) {
446
+ if (options.since) {
447
+ return options.since;
448
+ }
449
+ const lookback = this.settings.findingsLookbackDays ?? DEFAULT_FINDINGS_LOOKBACK_DAYS;
450
+ const since = new Date(Date.now() - lookback * 24 * 60 * 60 * 1e3);
451
+ return since.toISOString();
452
+ }
453
+ async fetchFindingsPage(cursor, options, signal) {
454
+ const url = this.buildListUrl("/v1/test-findings", cursor, {
455
+ createdAfter: this.findingsSinceIso(options)
456
+ });
457
+ const res = await this.apiGet(url, "findings", signal);
458
+ return {
459
+ items: res.body.results.data,
460
+ next: this.nextCursor(res.body.results.pageInfo)
461
+ };
462
+ }
463
+ async writeControls(storage, items) {
464
+ for (const c of items) {
465
+ const { primary, list } = normalizeFrameworks(c);
466
+ const status = typeof c.status === "string" && isControlStatus(c.status) ? c.status : c.status ?? null;
467
+ const updatedMs = parseEpoch(c.updatedAt ?? null, "iso") ?? parseEpoch(c.lastEvaluatedAt ?? null, "iso") ?? parseEpoch(c.createdAt ?? null, "iso") ?? 0;
468
+ await storage.entity({
469
+ type: CONTROL_ENTITY,
470
+ id: c.id,
471
+ attributes: {
472
+ name: c.name ?? null,
473
+ status,
474
+ framework: primary,
475
+ frameworks: list,
476
+ lastEvaluated: parseEpoch(c.lastEvaluatedAt ?? null, "iso")
477
+ },
478
+ updated_at: updatedMs
479
+ });
480
+ }
481
+ }
482
+ async writeTests(storage, items) {
483
+ for (const t of items) {
484
+ const controlIds = controlIdsForTest(t);
485
+ const status = typeof t.status === "string" && isTestStatus(t.status) ? t.status : t.status ?? null;
486
+ const updatedMs = parseEpoch(t.updatedAt ?? null, "iso") ?? parseEpoch(t.lastTestedAt ?? null, "iso") ?? parseEpoch(t.createdAt ?? null, "iso") ?? 0;
487
+ await storage.entity({
488
+ type: TEST_ENTITY,
489
+ id: t.id,
490
+ attributes: {
491
+ name: t.name ?? null,
492
+ status,
493
+ controlId: controlIds[0] ?? null,
494
+ controlCount: controlIds.length,
495
+ evidenceCount: t.evidenceCount ?? null,
496
+ lastTested: parseEpoch(t.lastTestedAt ?? null, "iso")
497
+ },
498
+ updated_at: updatedMs
499
+ });
500
+ }
501
+ }
502
+ async writeFindings(storage, items, sinceMs) {
503
+ for (const f of items) {
504
+ const ts = parseEpoch(f.createdAt, "iso");
505
+ if (ts === null) {
506
+ continue;
507
+ }
508
+ if (sinceMs !== null && ts < sinceMs) {
509
+ continue;
510
+ }
511
+ const severity = typeof f.severity === "string" && isFindingSeverity(f.severity) ? f.severity : f.severity ?? null;
512
+ const resolvedMs = parseEpoch(f.resolvedAt ?? null, "iso");
513
+ await storage.event({
514
+ name: FINDING_EVENT,
515
+ start_ts: ts,
516
+ end_ts: resolvedMs,
517
+ attributes: {
518
+ findingId: f.id,
519
+ severity,
520
+ status: f.status ?? null,
521
+ testId: f.testId ?? null,
522
+ controlId: f.controlId ?? null,
523
+ resolvedAt: resolvedMs
524
+ }
525
+ });
526
+ }
527
+ }
528
+ async writePhase(storage, phase, items, sinceMs) {
529
+ switch (phase) {
530
+ case "controls":
531
+ return this.writeControls(storage, items);
532
+ case "tests":
533
+ return this.writeTests(storage, items);
534
+ case "findings":
535
+ return this.writeFindings(storage, items, sinceMs);
536
+ }
537
+ }
538
+ async clearScopeOnFirstPage(storage, phase, isFull) {
539
+ switch (phase) {
540
+ case "controls":
541
+ await storage.entities([], { types: [CONTROL_ENTITY] });
542
+ return;
543
+ case "tests":
544
+ await storage.entities([], { types: [TEST_ENTITY] });
545
+ return;
546
+ case "findings":
547
+ if (isFull) {
548
+ await storage.events([], { names: [FINDING_EVENT] });
549
+ }
550
+ return;
551
+ }
552
+ }
553
+ resolveCursor(cursor) {
554
+ return isVantaSyncCursor(cursor) ? cursor : void 0;
555
+ }
556
+ async sync(options, storage, signal) {
557
+ const cursor = this.resolveCursor(options.cursor);
558
+ const isFull = options.mode === "full";
559
+ const phases = selectActivePhases(
560
+ (r) => r,
561
+ PHASE_ORDER,
562
+ this.settings.resources
563
+ );
564
+ const sinceMs = options.since ? Date.parse(options.since) : null;
565
+ return paginateChunked({
566
+ phases,
567
+ cursor,
568
+ signal,
569
+ logger: this.logger,
570
+ fetchPage: async (phase, page, sig) => {
571
+ switch (phase) {
572
+ case "controls":
573
+ return this.fetchControlsPage(page, sig);
574
+ case "tests":
575
+ return this.fetchTestsPage(page, sig);
576
+ case "findings":
577
+ return this.fetchFindingsPage(page, options, sig);
578
+ }
579
+ },
580
+ writeBatch: async (phase, items, page) => {
581
+ if (page === null) {
582
+ await this.clearScopeOnFirstPage(storage, phase, isFull);
583
+ }
584
+ await this.writePhase(
585
+ storage,
586
+ phase,
587
+ items,
588
+ phase === "findings" ? sinceMs : null
589
+ );
590
+ }
591
+ });
592
+ }
593
+ };
594
+
595
+ // src/index.ts
596
+ var index_default = VantaConnector;
597
+ export {
598
+ VantaConnector,
599
+ configFields,
600
+ index_default as default,
601
+ doc,
602
+ id,
603
+ vantaResources as resources
604
+ };
605
+ //# sourceMappingURL=index.js.map