@squadbase/vite-server 0.1.4 → 0.1.5-dev.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/cli/index.js +488 -102
- package/dist/connectors/amplitude.js +1 -1
- package/dist/connectors/asana.js +1 -1
- package/dist/connectors/attio.js +1 -1
- package/dist/connectors/backlog-api-key.js +1 -1
- package/dist/connectors/customerio.js +1 -1
- package/dist/connectors/gamma.js +1 -1
- package/dist/connectors/gmail.js +1 -1
- package/dist/connectors/google-docs.js +3 -1
- package/dist/connectors/hubspot.js +1 -1
- package/dist/connectors/intercom.js +1 -1
- package/dist/connectors/jira-api-key.js +1 -1
- package/dist/connectors/kintone-api-token.js +1 -1
- package/dist/connectors/mailchimp.js +1 -1
- package/dist/connectors/mixpanel.js +1 -1
- package/dist/connectors/notion-oauth.js +1 -1
- package/dist/connectors/notion.js +1 -1
- package/dist/connectors/salesforce.d.ts +5 -0
- package/dist/connectors/salesforce.js +862 -0
- package/dist/connectors/sentry.js +1 -1
- package/dist/connectors/stripe-api-key.js +1 -1
- package/dist/connectors/zendesk.js +1 -1
- package/dist/index.js +488 -102
- package/dist/main.js +488 -102
- package/dist/vite-plugin.js +488 -102
- package/package.json +5 -1
|
@@ -418,7 +418,7 @@ var sentryConnector = new ConnectorPlugin({
|
|
|
418
418
|
description: "Connect to Sentry for error tracking and performance monitoring data.",
|
|
419
419
|
iconUrl: "https://images.ctfassets.net/9ncizv60xc5y/4B8ZEGFGjTeMWNnXQb1dAL/ac10f813f02353f5b0cbe64fb5c06d8f/sentry.svg",
|
|
420
420
|
parameters,
|
|
421
|
-
releaseFlag: { dev1: true, dev2:
|
|
421
|
+
releaseFlag: { dev1: true, dev2: true, prod: true },
|
|
422
422
|
onboarding: sentryOnboarding,
|
|
423
423
|
systemPrompt: {
|
|
424
424
|
en: `### Tools
|
|
@@ -363,7 +363,7 @@ var stripeApiKeyConnector = new ConnectorPlugin({
|
|
|
363
363
|
description: "Connect to Stripe for payment, customer, and subscription data using a Secret API Key or Restricted API Key.",
|
|
364
364
|
iconUrl: "https://images.ctfassets.net/9ncizv60xc5y/2QNK0u2doqp41uL0POS4Ks/7a92367e2388ec77c7f4ada143606f9a/stripe.jpeg",
|
|
365
365
|
parameters,
|
|
366
|
-
releaseFlag: { dev1: true, dev2:
|
|
366
|
+
releaseFlag: { dev1: true, dev2: true, prod: true },
|
|
367
367
|
onboarding: stripeApiKeyOnboarding,
|
|
368
368
|
systemPrompt: {
|
|
369
369
|
en: `### Tools
|
|
@@ -433,7 +433,7 @@ var zendeskConnector = new ConnectorPlugin({
|
|
|
433
433
|
description: "Connect to Zendesk Support for tickets, users, organizations, and customer service data using an API token.",
|
|
434
434
|
iconUrl: "https://images.ctfassets.net/9ncizv60xc5y/7e9Q7PwV6MJRJMj543m2gl/55385fae903ccfa1599e35be9d3516aa/zendesk-icon.svg",
|
|
435
435
|
parameters,
|
|
436
|
-
releaseFlag: { dev1: true, dev2:
|
|
436
|
+
releaseFlag: { dev1: true, dev2: true, prod: true },
|
|
437
437
|
onboarding: zendeskOnboarding,
|
|
438
438
|
systemPrompt: {
|
|
439
439
|
en: `### Tools
|