integrate-sdk 0.9.51-dev.0 → 0.9.52-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/server.js CHANGED
@@ -2747,7 +2747,7 @@ async function deliverWebhook(webhook, payload, timeoutMs) {
2747
2747
  signal: controller.signal
2748
2748
  });
2749
2749
  if (!response.ok) {
2750
- logger104.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
2750
+ logger122.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
2751
2751
  }
2752
2752
  } finally {
2753
2753
  clearTimeout(timeout);
@@ -2760,14 +2760,14 @@ async function deliverWebhooks(webhooks, payload, timeoutMs) {
2760
2760
  for (let i = 0;i < results.length; i++) {
2761
2761
  const result = results[i];
2762
2762
  if (result.status === "rejected") {
2763
- logger104.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
2763
+ logger122.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
2764
2764
  }
2765
2765
  }
2766
2766
  }
2767
- var logger104;
2767
+ var logger122;
2768
2768
  var init_webhooks = __esm(() => {
2769
2769
  init_logger();
2770
- logger104 = createLogger("Webhooks", "server");
2770
+ logger122 = createLogger("Webhooks", "server");
2771
2771
  });
2772
2772
 
2773
2773
  // src/triggers/types.ts
@@ -2787,13 +2787,13 @@ async function executeTrigger(trigger, config, context) {
2787
2787
  while (stepIndex < MAX_TRIGGER_STEPS) {
2788
2788
  const stepValidation = validateStepLimit(stepIndex, MAX_TRIGGER_STEPS);
2789
2789
  if (!stepValidation.valid) {
2790
- logger105.error(`[Trigger ${trigger.id}] ${stepValidation.error}`);
2790
+ logger123.error(`[Trigger ${trigger.id}] ${stepValidation.error}`);
2791
2791
  break;
2792
2792
  }
2793
2793
  const providerToken = await config.getProviderToken(currentProvider, undefined, context);
2794
2794
  if (!providerToken) {
2795
2795
  const error = `No OAuth token available for provider '${currentProvider}'`;
2796
- logger105.error(`[Trigger ${trigger.id}] ${error}`);
2796
+ logger123.error(`[Trigger ${trigger.id}] ${error}`);
2797
2797
  steps.push({
2798
2798
  stepIndex,
2799
2799
  toolName: currentToolName,
@@ -2819,7 +2819,7 @@ async function executeTrigger(trigger, config, context) {
2819
2819
  } catch (err) {
2820
2820
  stepSuccess = false;
2821
2821
  stepError = err.message || "Tool execution failed";
2822
- logger105.error(`[Trigger ${trigger.id}] Step ${stepIndex} failed:`, err);
2822
+ logger123.error(`[Trigger ${trigger.id}] Step ${stepIndex} failed:`, err);
2823
2823
  }
2824
2824
  if (stepSuccess && toolResult) {
2825
2825
  if (toolResult.isError === true) {
@@ -2912,7 +2912,7 @@ async function executeTrigger(trigger, config, context) {
2912
2912
  return { success: steps.every((s) => s.success), steps, error: stepError };
2913
2913
  }
2914
2914
  const limitError = `Trigger execution exceeded maximum of ${MAX_TRIGGER_STEPS} steps`;
2915
- logger105.error(`[Trigger ${trigger.id}] ${limitError}`);
2915
+ logger123.error(`[Trigger ${trigger.id}] ${limitError}`);
2916
2916
  await config.triggers.update(trigger.id, {
2917
2917
  lastRunAt: new Date().toISOString(),
2918
2918
  runCount: (trigger.runCount || 0) + 1,
@@ -2921,12 +2921,12 @@ async function executeTrigger(trigger, config, context) {
2921
2921
  }, context);
2922
2922
  return { success: false, steps, error: limitError };
2923
2923
  }
2924
- var logger105;
2924
+ var logger123;
2925
2925
  var init_executor2 = __esm(() => {
2926
2926
  init_logger();
2927
2927
  init_utils();
2928
2928
  init_webhooks();
2929
- logger105 = createLogger("TriggerExecutor", "server");
2929
+ logger123 = createLogger("TriggerExecutor", "server");
2930
2930
  });
2931
2931
 
2932
2932
  // src/protocol/jsonrpc.ts
@@ -6686,9 +6686,782 @@ function smartthingsIntegration(config = {}) {
6686
6686
  }
6687
6687
  };
6688
6688
  }
6689
+ // src/integrations/google_ads.ts
6690
+ init_logger();
6691
+ var logger26 = createLogger("Google Ads");
6692
+ var GOOGLE_ADS_SCOPES = [
6693
+ "https://www.googleapis.com/auth/adwords"
6694
+ ];
6695
+ var GOOGLE_ADS_TOOLS = [
6696
+ "google_ads_list_accessible_customers",
6697
+ "google_ads_search",
6698
+ "google_ads_list_campaigns",
6699
+ "google_ads_list_ad_groups",
6700
+ "google_ads_list_ads",
6701
+ "google_ads_list_keywords",
6702
+ "google_ads_list_conversions"
6703
+ ];
6704
+ function googleAdsIntegration(config = {}) {
6705
+ const oauth = { provider: "google_ads", clientId: config.clientId ?? getEnv("GOOGLE_ADS_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("GOOGLE_ADS_CLIENT_SECRET"), scopes: config.scopes ?? [...GOOGLE_ADS_SCOPES], redirectUri: config.redirectUri, config };
6706
+ return {
6707
+ id: "google_ads",
6708
+ name: "Google Ads",
6709
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_ads.png",
6710
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
6711
+ category: "Marketing",
6712
+ tools: [...GOOGLE_ADS_TOOLS],
6713
+ authType: "oauth",
6714
+ oauth,
6715
+ getHeaders() {
6716
+ const developerToken = config.developerToken ?? getEnv("GOOGLE_ADS_DEVELOPER_TOKEN");
6717
+ const headers = {};
6718
+ if (developerToken)
6719
+ headers["X-Google-Ads-Developer-Token"] = developerToken;
6720
+ if (config.loginCustomerId)
6721
+ headers["X-Google-Ads-Login-Customer-Id"] = config.loginCustomerId;
6722
+ return headers;
6723
+ },
6724
+ async onInit() {
6725
+ logger26.debug("Google Ads integration initialized");
6726
+ },
6727
+ async onAfterConnect() {
6728
+ logger26.debug("Google Ads integration connected");
6729
+ }
6730
+ };
6731
+ }
6732
+ // src/integrations/pinterest.ts
6733
+ init_logger();
6734
+ var logger27 = createLogger("Pinterest");
6735
+ var PINTEREST_SCOPES = [
6736
+ "boards:read",
6737
+ "boards:write",
6738
+ "pins:read",
6739
+ "pins:write",
6740
+ "user_accounts:read",
6741
+ "ads:read",
6742
+ "ads:write"
6743
+ ];
6744
+ var PINTEREST_TOOLS = [
6745
+ "pinterest_get_user",
6746
+ "pinterest_list_boards",
6747
+ "pinterest_get_board",
6748
+ "pinterest_create_pin",
6749
+ "pinterest_get_pin",
6750
+ "pinterest_search_pins",
6751
+ "pinterest_list_ad_accounts",
6752
+ "pinterest_list_campaigns"
6753
+ ];
6754
+ function pinterestIntegration(config = {}) {
6755
+ const oauth = { provider: "pinterest", clientId: config.clientId ?? getEnv("PINTEREST_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("PINTEREST_CLIENT_SECRET"), scopes: config.scopes ?? [...PINTEREST_SCOPES], redirectUri: config.redirectUri, config };
6756
+ return {
6757
+ id: "pinterest",
6758
+ name: "Pinterest",
6759
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/pinterest.png",
6760
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
6761
+ category: "Social Media",
6762
+ tools: [...PINTEREST_TOOLS],
6763
+ authType: "oauth",
6764
+ oauth,
6765
+ async onInit() {
6766
+ logger27.debug("Pinterest integration initialized");
6767
+ },
6768
+ async onAfterConnect() {
6769
+ logger27.debug("Pinterest integration connected");
6770
+ }
6771
+ };
6772
+ }
6773
+ // src/integrations/twitch.ts
6774
+ init_logger();
6775
+ var logger28 = createLogger("Twitch");
6776
+ var TWITCH_SCOPES = [
6777
+ "user:read:email",
6778
+ "channel:read:subscriptions",
6779
+ "clips:edit",
6780
+ "channel:manage:broadcast",
6781
+ "user:read:follows"
6782
+ ];
6783
+ var TWITCH_TOOLS = [
6784
+ "twitch_get_users",
6785
+ "twitch_get_streams",
6786
+ "twitch_get_channels",
6787
+ "twitch_modify_channel",
6788
+ "twitch_create_clip",
6789
+ "twitch_get_videos",
6790
+ "twitch_get_games",
6791
+ "twitch_get_channel_followers",
6792
+ "twitch_get_broadcaster_subscriptions"
6793
+ ];
6794
+ function twitchIntegration(config = {}) {
6795
+ const oauth = { provider: "twitch", clientId: config.clientId ?? getEnv("TWITCH_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("TWITCH_CLIENT_SECRET"), scopes: config.scopes ?? [...TWITCH_SCOPES], redirectUri: config.redirectUri, config };
6796
+ return {
6797
+ id: "twitch",
6798
+ name: "Twitch",
6799
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/twitch.png",
6800
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
6801
+ category: "Entertainment",
6802
+ tools: [...TWITCH_TOOLS],
6803
+ authType: "oauth",
6804
+ oauth,
6805
+ getHeaders() {
6806
+ const clientId = config.clientId ?? getEnv("TWITCH_CLIENT_ID");
6807
+ const headers = {};
6808
+ if (clientId)
6809
+ headers["X-Twitch-Client-Id"] = clientId;
6810
+ return headers;
6811
+ },
6812
+ async onInit() {
6813
+ logger28.debug("Twitch integration initialized");
6814
+ },
6815
+ async onAfterConnect() {
6816
+ logger28.debug("Twitch integration connected");
6817
+ }
6818
+ };
6819
+ }
6820
+ // src/integrations/x.ts
6821
+ init_logger();
6822
+ var logger29 = createLogger("X");
6823
+ var X_SCOPES = [
6824
+ "tweet.read",
6825
+ "tweet.write",
6826
+ "users.read",
6827
+ "follows.read",
6828
+ "follows.write",
6829
+ "like.read",
6830
+ "like.write",
6831
+ "bookmark.read",
6832
+ "bookmark.write",
6833
+ "offline.access"
6834
+ ];
6835
+ var X_TOOLS = [
6836
+ "x_get_me",
6837
+ "x_get_user",
6838
+ "x_search_posts",
6839
+ "x_get_user_timeline",
6840
+ "x_create_post",
6841
+ "x_delete_post",
6842
+ "x_like_post",
6843
+ "x_get_bookmarks",
6844
+ "x_follow_user"
6845
+ ];
6846
+ function xIntegration(config = {}) {
6847
+ const oauth = { provider: "x", clientId: config.clientId ?? getEnv("X_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("X_CLIENT_SECRET"), scopes: config.scopes ?? [...X_SCOPES], redirectUri: config.redirectUri, config };
6848
+ return {
6849
+ id: "x",
6850
+ name: "X",
6851
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/x.png",
6852
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
6853
+ category: "Social Media",
6854
+ tools: [...X_TOOLS],
6855
+ authType: "oauth",
6856
+ oauth,
6857
+ async onInit() {
6858
+ logger29.debug("X integration initialized");
6859
+ },
6860
+ async onAfterConnect() {
6861
+ logger29.debug("X integration connected");
6862
+ }
6863
+ };
6864
+ }
6865
+ // src/integrations/ebay.ts
6866
+ init_logger();
6867
+ var logger30 = createLogger("eBay");
6868
+ var EBAY_SCOPES = [
6869
+ "https://api.ebay.com/oauth/api_scope",
6870
+ "https://api.ebay.com/oauth/api_scope/sell.inventory",
6871
+ "https://api.ebay.com/oauth/api_scope/sell.fulfillment",
6872
+ "https://api.ebay.com/oauth/api_scope/sell.account"
6873
+ ];
6874
+ var EBAY_TOOLS = [
6875
+ "ebay_search_items",
6876
+ "ebay_get_item",
6877
+ "ebay_get_privileges",
6878
+ "ebay_list_inventory_items",
6879
+ "ebay_create_or_replace_inventory_item",
6880
+ "ebay_list_offers",
6881
+ "ebay_create_offer",
6882
+ "ebay_list_orders",
6883
+ "ebay_get_order"
6884
+ ];
6885
+ function ebayIntegration(config = {}) {
6886
+ const oauth = { provider: "ebay", clientId: config.clientId ?? getEnv("EBAY_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("EBAY_CLIENT_SECRET"), scopes: config.scopes ?? [...EBAY_SCOPES], redirectUri: config.redirectUri, config };
6887
+ return {
6888
+ id: "ebay",
6889
+ name: "eBay",
6890
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/ebay.png",
6891
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
6892
+ category: "Business",
6893
+ tools: [...EBAY_TOOLS],
6894
+ authType: "oauth",
6895
+ oauth,
6896
+ getHeaders() {
6897
+ const headers = {};
6898
+ if (config.environment)
6899
+ headers["X-Ebay-Environment"] = config.environment;
6900
+ return headers;
6901
+ },
6902
+ async onInit() {
6903
+ logger30.debug("eBay integration initialized");
6904
+ },
6905
+ async onAfterConnect() {
6906
+ logger30.debug("eBay integration connected");
6907
+ }
6908
+ };
6909
+ }
6910
+ // src/integrations/miro.ts
6911
+ init_logger();
6912
+ var logger31 = createLogger("Miro");
6913
+ var MIRO_SCOPES = [
6914
+ "boards:read",
6915
+ "boards:write",
6916
+ "identity:read",
6917
+ "team:read"
6918
+ ];
6919
+ var MIRO_TOOLS = [
6920
+ "miro_get_current_user",
6921
+ "miro_list_boards",
6922
+ "miro_get_board",
6923
+ "miro_create_board",
6924
+ "miro_list_board_items",
6925
+ "miro_create_board_item",
6926
+ "miro_list_comments",
6927
+ "miro_list_board_members"
6928
+ ];
6929
+ function miroIntegration(config = {}) {
6930
+ const oauth = { provider: "miro", clientId: config.clientId ?? getEnv("MIRO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("MIRO_CLIENT_SECRET"), scopes: config.scopes ?? [...MIRO_SCOPES], redirectUri: config.redirectUri, config };
6931
+ return {
6932
+ id: "miro",
6933
+ name: "Miro",
6934
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/miro.png",
6935
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
6936
+ category: "Productivity",
6937
+ tools: [...MIRO_TOOLS],
6938
+ authType: "oauth",
6939
+ oauth,
6940
+ async onInit() {
6941
+ logger31.debug("Miro integration initialized");
6942
+ },
6943
+ async onAfterConnect() {
6944
+ logger31.debug("Miro integration connected");
6945
+ }
6946
+ };
6947
+ }
6948
+ // src/integrations/smartsheet.ts
6949
+ init_logger();
6950
+ var logger32 = createLogger("Smartsheet");
6951
+ var SMARTSHEET_SCOPES = [
6952
+ "READ_SHEETS",
6953
+ "WRITE_SHEETS",
6954
+ "ADMIN_SHEETS",
6955
+ "READ_USERS",
6956
+ "READ_WORKSPACES",
6957
+ "ADMIN_WORKSPACES"
6958
+ ];
6959
+ var SMARTSHEET_TOOLS = [
6960
+ "smartsheet_list_sheets",
6961
+ "smartsheet_get_sheet",
6962
+ "smartsheet_create_sheet",
6963
+ "smartsheet_add_rows",
6964
+ "smartsheet_update_rows",
6965
+ "smartsheet_list_workspaces",
6966
+ "smartsheet_list_reports",
6967
+ "smartsheet_list_attachments"
6968
+ ];
6969
+ function smartsheetIntegration(config = {}) {
6970
+ const oauth = { provider: "smartsheet", clientId: config.clientId ?? getEnv("SMARTSHEET_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("SMARTSHEET_CLIENT_SECRET"), scopes: config.scopes ?? [...SMARTSHEET_SCOPES], redirectUri: config.redirectUri, config };
6971
+ return {
6972
+ id: "smartsheet",
6973
+ name: "Smartsheet",
6974
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/smartsheet.png",
6975
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
6976
+ category: "Productivity",
6977
+ tools: [...SMARTSHEET_TOOLS],
6978
+ authType: "oauth",
6979
+ oauth,
6980
+ async onInit() {
6981
+ logger32.debug("Smartsheet integration initialized");
6982
+ },
6983
+ async onAfterConnect() {
6984
+ logger32.debug("Smartsheet integration connected");
6985
+ }
6986
+ };
6987
+ }
6988
+ // src/integrations/docusign.ts
6989
+ init_logger();
6990
+ var logger33 = createLogger("DocuSign");
6991
+ var DOCUSIGN_SCOPES = [
6992
+ "signature",
6993
+ "impersonation"
6994
+ ];
6995
+ var DOCUSIGN_TOOLS = [
6996
+ "docusign_get_user_info",
6997
+ "docusign_list_envelopes",
6998
+ "docusign_get_envelope",
6999
+ "docusign_create_envelope",
7000
+ "docusign_list_recipients",
7001
+ "docusign_get_document",
7002
+ "docusign_list_templates"
7003
+ ];
7004
+ function docusignIntegration(config = {}) {
7005
+ const oauth = { provider: "docusign", clientId: config.clientId ?? getEnv("DOCUSIGN_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("DOCUSIGN_CLIENT_SECRET"), scopes: config.scopes ?? [...DOCUSIGN_SCOPES], redirectUri: config.redirectUri, config };
7006
+ return {
7007
+ id: "docusign",
7008
+ name: "DocuSign",
7009
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/docusign.png",
7010
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
7011
+ category: "Business",
7012
+ tools: [...DOCUSIGN_TOOLS],
7013
+ authType: "oauth",
7014
+ oauth,
7015
+ getHeaders() {
7016
+ const headers = {};
7017
+ if (config.baseUri)
7018
+ headers["X-DocuSign-Base-Uri"] = config.baseUri;
7019
+ return headers;
7020
+ },
7021
+ async onInit() {
7022
+ logger33.debug("DocuSign integration initialized");
7023
+ },
7024
+ async onAfterConnect() {
7025
+ logger33.debug("DocuSign integration connected");
7026
+ }
7027
+ };
7028
+ }
7029
+ // src/integrations/pipedrive.ts
7030
+ init_logger();
7031
+ var logger34 = createLogger("Pipedrive");
7032
+ var PIPEDRIVE_SCOPES = [
7033
+ "deals:read",
7034
+ "deals:full",
7035
+ "contacts:read",
7036
+ "contacts:full",
7037
+ "activities:read",
7038
+ "activities:full",
7039
+ "products:read",
7040
+ "products:full"
7041
+ ];
7042
+ var PIPEDRIVE_TOOLS = [
7043
+ "pipedrive_list_deals",
7044
+ "pipedrive_list_leads",
7045
+ "pipedrive_list_persons",
7046
+ "pipedrive_list_organizations",
7047
+ "pipedrive_list_activities",
7048
+ "pipedrive_list_notes",
7049
+ "pipedrive_list_pipelines",
7050
+ "pipedrive_list_products",
7051
+ "pipedrive_create_deal"
7052
+ ];
7053
+ function pipedriveIntegration(config = {}) {
7054
+ const oauth = { provider: "pipedrive", clientId: config.clientId ?? getEnv("PIPEDRIVE_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("PIPEDRIVE_CLIENT_SECRET"), scopes: config.scopes ?? [...PIPEDRIVE_SCOPES], redirectUri: config.redirectUri, config };
7055
+ return {
7056
+ id: "pipedrive",
7057
+ name: "Pipedrive",
7058
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/pipedrive.png",
7059
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
7060
+ category: "Business",
7061
+ tools: [...PIPEDRIVE_TOOLS],
7062
+ authType: "oauth",
7063
+ oauth,
7064
+ async onInit() {
7065
+ logger34.debug("Pipedrive integration initialized");
7066
+ },
7067
+ async onAfterConnect() {
7068
+ logger34.debug("Pipedrive integration connected");
7069
+ }
7070
+ };
7071
+ }
7072
+ // src/integrations/freshservice.ts
7073
+ init_logger();
7074
+ var logger35 = createLogger("Freshservice");
7075
+ var FRESHSERVICE_SCOPES = [
7076
+ "freshservice.tickets.read",
7077
+ "freshservice.tickets.write",
7078
+ "freshservice.assets.read",
7079
+ "freshservice.solutions.read"
7080
+ ];
7081
+ var FRESHSERVICE_TOOLS = [
7082
+ "freshservice_list_tickets",
7083
+ "freshservice_list_requesters",
7084
+ "freshservice_list_agents",
7085
+ "freshservice_list_assets",
7086
+ "freshservice_list_changes",
7087
+ "freshservice_list_problems",
7088
+ "freshservice_list_releases",
7089
+ "freshservice_create_ticket",
7090
+ "freshservice_list_solutions"
7091
+ ];
7092
+ function freshserviceIntegration(config = {}) {
7093
+ const oauth = { provider: "freshservice", clientId: config.clientId ?? getEnv("FRESHSERVICE_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("FRESHSERVICE_CLIENT_SECRET"), scopes: config.scopes ?? [...FRESHSERVICE_SCOPES], redirectUri: config.redirectUri, config };
7094
+ return {
7095
+ id: "freshservice",
7096
+ name: "Freshservice",
7097
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/freshservice.png",
7098
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
7099
+ category: "Business",
7100
+ tools: [...FRESHSERVICE_TOOLS],
7101
+ authType: "oauth",
7102
+ oauth,
7103
+ getHeaders() {
7104
+ const domain = config.domain ?? getEnv("FRESHSERVICE_DOMAIN");
7105
+ const headers = {};
7106
+ if (domain)
7107
+ headers["X-Freshservice-Domain"] = domain;
7108
+ return headers;
7109
+ },
7110
+ async onInit() {
7111
+ logger35.debug("Freshservice integration initialized");
7112
+ },
7113
+ async onAfterConnect() {
7114
+ logger35.debug("Freshservice integration connected");
7115
+ }
7116
+ };
7117
+ }
7118
+ // src/integrations/zoho_crm.ts
7119
+ init_logger();
7120
+ var logger36 = createLogger("Zoho CRM");
7121
+ var ZOHO_CRM_SCOPES = [
7122
+ "ZohoCRM.modules.ALL",
7123
+ "ZohoCRM.settings.ALL",
7124
+ "ZohoCRM.users.ALL"
7125
+ ];
7126
+ var ZOHO_CRM_TOOLS = [
7127
+ "zoho_crm_list_modules",
7128
+ "zoho_crm_list_records",
7129
+ "zoho_crm_get_record",
7130
+ "zoho_crm_create_records",
7131
+ "zoho_crm_update_record",
7132
+ "zoho_crm_search_records",
7133
+ "zoho_crm_coql_query",
7134
+ "zoho_crm_list_users",
7135
+ "zoho_crm_get_org"
7136
+ ];
7137
+ function zohoCrmIntegration(config = {}) {
7138
+ const oauth = { provider: "zoho_crm", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_CRM_SCOPES], redirectUri: config.redirectUri, config };
7139
+ return {
7140
+ id: "zoho_crm",
7141
+ name: "Zoho CRM",
7142
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_crm.png",
7143
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
7144
+ category: "Business",
7145
+ tools: [...ZOHO_CRM_TOOLS],
7146
+ authType: "oauth",
7147
+ oauth,
7148
+ getHeaders() {
7149
+ const region = config.region ?? getEnv("ZOHO_REGION");
7150
+ const headers = {};
7151
+ if (region)
7152
+ headers["X-Zoho-Region"] = region;
7153
+ return headers;
7154
+ },
7155
+ async onInit() {
7156
+ logger36.debug("Zoho CRM integration initialized");
7157
+ },
7158
+ async onAfterConnect() {
7159
+ logger36.debug("Zoho CRM integration connected");
7160
+ }
7161
+ };
7162
+ }
7163
+ // src/integrations/zoho_mail.ts
7164
+ init_logger();
7165
+ var logger37 = createLogger("Zoho Mail");
7166
+ var ZOHO_MAIL_SCOPES = [
7167
+ "ZohoMail.accounts.READ",
7168
+ "ZohoMail.messages.ALL",
7169
+ "ZohoMail.folders.ALL"
7170
+ ];
7171
+ var ZOHO_MAIL_TOOLS = [
7172
+ "zoho_mail_list_accounts",
7173
+ "zoho_mail_list_folders",
7174
+ "zoho_mail_list_messages",
7175
+ "zoho_mail_get_message",
7176
+ "zoho_mail_send_message",
7177
+ "zoho_mail_search_messages",
7178
+ "zoho_mail_list_labels"
7179
+ ];
7180
+ function zohoMailIntegration(config = {}) {
7181
+ const oauth = { provider: "zoho_mail", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_MAIL_SCOPES], redirectUri: config.redirectUri, config };
7182
+ return {
7183
+ id: "zoho_mail",
7184
+ name: "Zoho Mail",
7185
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_mail.png",
7186
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
7187
+ category: "Business",
7188
+ tools: [...ZOHO_MAIL_TOOLS],
7189
+ authType: "oauth",
7190
+ oauth,
7191
+ getHeaders() {
7192
+ const region = config.region ?? getEnv("ZOHO_REGION");
7193
+ const headers = {};
7194
+ if (region)
7195
+ headers["X-Zoho-Region"] = region;
7196
+ return headers;
7197
+ },
7198
+ async onInit() {
7199
+ logger37.debug("Zoho Mail integration initialized");
7200
+ },
7201
+ async onAfterConnect() {
7202
+ logger37.debug("Zoho Mail integration connected");
7203
+ }
7204
+ };
7205
+ }
7206
+ // src/integrations/zoho_desk.ts
7207
+ init_logger();
7208
+ var logger38 = createLogger("Zoho Desk");
7209
+ var ZOHO_DESK_SCOPES = [
7210
+ "Desk.tickets.ALL",
7211
+ "Desk.contacts.ALL",
7212
+ "Desk.settings.READ"
7213
+ ];
7214
+ var ZOHO_DESK_TOOLS = [
7215
+ "zoho_desk_list_tickets",
7216
+ "zoho_desk_get_ticket",
7217
+ "zoho_desk_create_ticket",
7218
+ "zoho_desk_list_contacts",
7219
+ "zoho_desk_list_accounts",
7220
+ "zoho_desk_list_agents",
7221
+ "zoho_desk_list_departments",
7222
+ "zoho_desk_search_articles"
7223
+ ];
7224
+ function zohoDeskIntegration(config = {}) {
7225
+ const oauth = { provider: "zoho_desk", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_DESK_SCOPES], redirectUri: config.redirectUri, config };
7226
+ return {
7227
+ id: "zoho_desk",
7228
+ name: "Zoho Desk",
7229
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_desk.png",
7230
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
7231
+ category: "Business",
7232
+ tools: [...ZOHO_DESK_TOOLS],
7233
+ authType: "oauth",
7234
+ oauth,
7235
+ getHeaders() {
7236
+ const region = config.region ?? getEnv("ZOHO_REGION");
7237
+ const headers = {};
7238
+ if (region)
7239
+ headers["X-Zoho-Region"] = region;
7240
+ return headers;
7241
+ },
7242
+ async onInit() {
7243
+ logger38.debug("Zoho Desk integration initialized");
7244
+ },
7245
+ async onAfterConnect() {
7246
+ logger38.debug("Zoho Desk integration connected");
7247
+ }
7248
+ };
7249
+ }
7250
+ // src/integrations/zoho_books.ts
7251
+ init_logger();
7252
+ var logger39 = createLogger("Zoho Books");
7253
+ var ZOHO_BOOKS_SCOPES = [
7254
+ "ZohoBooks.fullaccess.all"
7255
+ ];
7256
+ var ZOHO_BOOKS_TOOLS = [
7257
+ "zoho_books_list_organizations",
7258
+ "zoho_books_list_contacts",
7259
+ "zoho_books_list_items",
7260
+ "zoho_books_list_invoices",
7261
+ "zoho_books_list_bills",
7262
+ "zoho_books_list_customerpayments",
7263
+ "zoho_books_create_invoice",
7264
+ "zoho_books_profit_and_loss"
7265
+ ];
7266
+ function zohoBooksIntegration(config = {}) {
7267
+ const oauth = { provider: "zoho_books", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_BOOKS_SCOPES], redirectUri: config.redirectUri, config };
7268
+ return {
7269
+ id: "zoho_books",
7270
+ name: "Zoho Books",
7271
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_books.png",
7272
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
7273
+ category: "Business",
7274
+ tools: [...ZOHO_BOOKS_TOOLS],
7275
+ authType: "oauth",
7276
+ oauth,
7277
+ getHeaders() {
7278
+ const region = config.region ?? getEnv("ZOHO_REGION");
7279
+ const headers = {};
7280
+ if (region)
7281
+ headers["X-Zoho-Region"] = region;
7282
+ return headers;
7283
+ },
7284
+ async onInit() {
7285
+ logger39.debug("Zoho Books integration initialized");
7286
+ },
7287
+ async onAfterConnect() {
7288
+ logger39.debug("Zoho Books integration connected");
7289
+ }
7290
+ };
7291
+ }
7292
+ // src/integrations/zoho_projects.ts
7293
+ init_logger();
7294
+ var logger40 = createLogger("Zoho Projects");
7295
+ var ZOHO_PROJECTS_SCOPES = [
7296
+ "ZohoProjects.portals.ALL",
7297
+ "ZohoProjects.projects.ALL",
7298
+ "ZohoProjects.tasks.ALL",
7299
+ "ZohoProjects.issues.ALL"
7300
+ ];
7301
+ var ZOHO_PROJECTS_TOOLS = [
7302
+ "zoho_projects_list_portals",
7303
+ "zoho_projects_list_projects",
7304
+ "zoho_projects_get_project",
7305
+ "zoho_projects_list_milestones",
7306
+ "zoho_projects_list_tasklists",
7307
+ "zoho_projects_list_tasks",
7308
+ "zoho_projects_create_task",
7309
+ "zoho_projects_list_issues",
7310
+ "zoho_projects_list_timesheets"
7311
+ ];
7312
+ function zohoProjectsIntegration(config = {}) {
7313
+ const oauth = { provider: "zoho_projects", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_PROJECTS_SCOPES], redirectUri: config.redirectUri, config };
7314
+ return {
7315
+ id: "zoho_projects",
7316
+ name: "Zoho Projects",
7317
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_projects.png",
7318
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
7319
+ category: "Business",
7320
+ tools: [...ZOHO_PROJECTS_TOOLS],
7321
+ authType: "oauth",
7322
+ oauth,
7323
+ getHeaders() {
7324
+ const region = config.region ?? getEnv("ZOHO_REGION");
7325
+ const headers = {};
7326
+ if (region)
7327
+ headers["X-Zoho-Region"] = region;
7328
+ return headers;
7329
+ },
7330
+ async onInit() {
7331
+ logger40.debug("Zoho Projects integration initialized");
7332
+ },
7333
+ async onAfterConnect() {
7334
+ logger40.debug("Zoho Projects integration connected");
7335
+ }
7336
+ };
7337
+ }
7338
+ // src/integrations/zoho_campaigns.ts
7339
+ init_logger();
7340
+ var logger41 = createLogger("Zoho Campaigns");
7341
+ var ZOHO_CAMPAIGNS_SCOPES = [
7342
+ "ZohoCampaigns.campaign.ALL",
7343
+ "ZohoCampaigns.contact.ALL",
7344
+ "ZohoCampaigns.report.READ"
7345
+ ];
7346
+ var ZOHO_CAMPAIGNS_TOOLS = [
7347
+ "zoho_campaigns_list_mailing_lists",
7348
+ "zoho_campaigns_list_contacts",
7349
+ "zoho_campaigns_add_contact",
7350
+ "zoho_campaigns_list_campaigns",
7351
+ "zoho_campaigns_get_campaign_report",
7352
+ "zoho_campaigns_send_campaign"
7353
+ ];
7354
+ function zohoCampaignsIntegration(config = {}) {
7355
+ const oauth = { provider: "zoho_campaigns", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_CAMPAIGNS_SCOPES], redirectUri: config.redirectUri, config };
7356
+ return {
7357
+ id: "zoho_campaigns",
7358
+ name: "Zoho Campaigns",
7359
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_campaigns.png",
7360
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
7361
+ category: "Business",
7362
+ tools: [...ZOHO_CAMPAIGNS_TOOLS],
7363
+ authType: "oauth",
7364
+ oauth,
7365
+ getHeaders() {
7366
+ const region = config.region ?? getEnv("ZOHO_REGION");
7367
+ const headers = {};
7368
+ if (region)
7369
+ headers["X-Zoho-Region"] = region;
7370
+ return headers;
7371
+ },
7372
+ async onInit() {
7373
+ logger41.debug("Zoho Campaigns integration initialized");
7374
+ },
7375
+ async onAfterConnect() {
7376
+ logger41.debug("Zoho Campaigns integration connected");
7377
+ }
7378
+ };
7379
+ }
7380
+ // src/integrations/zoho_analytics.ts
7381
+ init_logger();
7382
+ var logger42 = createLogger("Zoho Analytics");
7383
+ var ZOHO_ANALYTICS_SCOPES = [
7384
+ "ZohoAnalytics.fullaccess.all"
7385
+ ];
7386
+ var ZOHO_ANALYTICS_TOOLS = [
7387
+ "zoho_analytics_list_workspaces",
7388
+ "zoho_analytics_get_workspace",
7389
+ "zoho_analytics_list_views",
7390
+ "zoho_analytics_export_view",
7391
+ "zoho_analytics_import_data",
7392
+ "zoho_analytics_query"
7393
+ ];
7394
+ function zohoAnalyticsIntegration(config = {}) {
7395
+ const oauth = { provider: "zoho_analytics", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_ANALYTICS_SCOPES], redirectUri: config.redirectUri, config };
7396
+ return {
7397
+ id: "zoho_analytics",
7398
+ name: "Zoho Analytics",
7399
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_analytics.png",
7400
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
7401
+ category: "Business",
7402
+ tools: [...ZOHO_ANALYTICS_TOOLS],
7403
+ authType: "oauth",
7404
+ oauth,
7405
+ getHeaders() {
7406
+ const region = config.region ?? getEnv("ZOHO_REGION");
7407
+ const headers = {};
7408
+ if (region)
7409
+ headers["X-Zoho-Region"] = region;
7410
+ return headers;
7411
+ },
7412
+ async onInit() {
7413
+ logger42.debug("Zoho Analytics integration initialized");
7414
+ },
7415
+ async onAfterConnect() {
7416
+ logger42.debug("Zoho Analytics integration connected");
7417
+ }
7418
+ };
7419
+ }
7420
+ // src/integrations/zoho_invoice.ts
7421
+ init_logger();
7422
+ var logger43 = createLogger("Zoho Invoice");
7423
+ var ZOHO_INVOICE_SCOPES = [
7424
+ "ZohoInvoice.fullaccess.all"
7425
+ ];
7426
+ var ZOHO_INVOICE_TOOLS = [
7427
+ "zoho_invoice_list_organizations",
7428
+ "zoho_invoice_list_contacts",
7429
+ "zoho_invoice_list_items",
7430
+ "zoho_invoice_list_estimates",
7431
+ "zoho_invoice_list_invoices",
7432
+ "zoho_invoice_list_customerpayments",
7433
+ "zoho_invoice_create_invoice",
7434
+ "zoho_invoice_get_aging_summary"
7435
+ ];
7436
+ function zohoInvoiceIntegration(config = {}) {
7437
+ const oauth = { provider: "zoho_invoice", clientId: config.clientId ?? getEnv("ZOHO_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("ZOHO_CLIENT_SECRET"), scopes: config.scopes ?? [...ZOHO_INVOICE_SCOPES], redirectUri: config.redirectUri, config };
7438
+ return {
7439
+ id: "zoho_invoice",
7440
+ name: "Zoho Invoice",
7441
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_invoice.png",
7442
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
7443
+ category: "Business",
7444
+ tools: [...ZOHO_INVOICE_TOOLS],
7445
+ authType: "oauth",
7446
+ oauth,
7447
+ getHeaders() {
7448
+ const region = config.region ?? getEnv("ZOHO_REGION");
7449
+ const headers = {};
7450
+ if (region)
7451
+ headers["X-Zoho-Region"] = region;
7452
+ return headers;
7453
+ },
7454
+ async onInit() {
7455
+ logger43.debug("Zoho Invoice integration initialized");
7456
+ },
7457
+ async onAfterConnect() {
7458
+ logger43.debug("Zoho Invoice integration connected");
7459
+ }
7460
+ };
7461
+ }
6689
7462
  // src/integrations/linear.ts
6690
7463
  init_logger();
6691
- var logger26 = createLogger("Linear");
7464
+ var logger44 = createLogger("Linear");
6692
7465
  var LINEAR_TOOLS = [
6693
7466
  "linear_create_issue",
6694
7467
  "linear_list_issues",
@@ -6743,16 +7516,16 @@ function linearIntegration(config = {}) {
6743
7516
  tools: [...LINEAR_TOOLS],
6744
7517
  oauth,
6745
7518
  async onInit(_client) {
6746
- logger26.debug("Linear integration initialized");
7519
+ logger44.debug("Linear integration initialized");
6747
7520
  },
6748
7521
  async onAfterConnect(_client) {
6749
- logger26.debug("Linear integration connected");
7522
+ logger44.debug("Linear integration connected");
6750
7523
  }
6751
7524
  };
6752
7525
  }
6753
7526
  // src/integrations/railway.ts
6754
7527
  init_logger();
6755
- var logger27 = createLogger("Railway");
7528
+ var logger45 = createLogger("Railway");
6756
7529
  var RAILWAY_SCOPES = [
6757
7530
  "openid",
6758
7531
  "profile",
@@ -6857,16 +7630,16 @@ function railwayIntegration(config = {}) {
6857
7630
  tools: [...RAILWAY_TOOLS],
6858
7631
  oauth,
6859
7632
  async onInit(_client) {
6860
- logger27.debug("Railway integration initialized");
7633
+ logger45.debug("Railway integration initialized");
6861
7634
  },
6862
7635
  async onAfterConnect(_client) {
6863
- logger27.debug("Railway integration connected");
7636
+ logger45.debug("Railway integration connected");
6864
7637
  }
6865
7638
  };
6866
7639
  }
6867
7640
  // src/integrations/vercel.ts
6868
7641
  init_logger();
6869
- var logger28 = createLogger("Vercel");
7642
+ var logger46 = createLogger("Vercel");
6870
7643
  var VERCEL_TOOLS = [
6871
7644
  "vercel_list_projects",
6872
7645
  "vercel_get_project",
@@ -6909,16 +7682,16 @@ function vercelIntegration(config = {}) {
6909
7682
  tools: [...VERCEL_TOOLS],
6910
7683
  oauth,
6911
7684
  async onInit(_client) {
6912
- logger28.debug("Vercel integration initialized");
7685
+ logger46.debug("Vercel integration initialized");
6913
7686
  },
6914
7687
  async onAfterConnect(_client) {
6915
- logger28.debug("Vercel integration connected");
7688
+ logger46.debug("Vercel integration connected");
6916
7689
  }
6917
7690
  };
6918
7691
  }
6919
7692
  // src/integrations/zendesk.ts
6920
7693
  init_logger();
6921
- var logger29 = createLogger("Zendesk");
7694
+ var logger47 = createLogger("Zendesk");
6922
7695
  var ZENDESK_TOOLS = [
6923
7696
  "zendesk_list_tickets",
6924
7697
  "zendesk_get_ticket",
@@ -6967,16 +7740,16 @@ function zendeskIntegration(config = {}) {
6967
7740
  tools: [...ZENDESK_TOOLS],
6968
7741
  oauth,
6969
7742
  async onInit(_client) {
6970
- logger29.debug("Zendesk integration initialized");
7743
+ logger47.debug("Zendesk integration initialized");
6971
7744
  },
6972
7745
  async onAfterConnect(_client) {
6973
- logger29.debug("Zendesk integration connected");
7746
+ logger47.debug("Zendesk integration connected");
6974
7747
  }
6975
7748
  };
6976
7749
  }
6977
7750
  // src/integrations/stripe.ts
6978
7751
  init_logger();
6979
- var logger30 = createLogger("Stripe");
7752
+ var logger48 = createLogger("Stripe");
6980
7753
  var STRIPE_TOOLS = [
6981
7754
  "stripe_list_customers",
6982
7755
  "stripe_get_customer",
@@ -7033,16 +7806,16 @@ function stripeIntegration(config = {}) {
7033
7806
  tools: [...STRIPE_TOOLS],
7034
7807
  oauth,
7035
7808
  async onInit(_client) {
7036
- logger30.debug("Stripe integration initialized");
7809
+ logger48.debug("Stripe integration initialized");
7037
7810
  },
7038
7811
  async onAfterConnect(_client) {
7039
- logger30.debug("Stripe integration connected");
7812
+ logger48.debug("Stripe integration connected");
7040
7813
  }
7041
7814
  };
7042
7815
  }
7043
7816
  // src/integrations/gcal.ts
7044
7817
  init_logger();
7045
- var logger31 = createLogger("Google Calendar");
7818
+ var logger49 = createLogger("Google Calendar");
7046
7819
  var GCAL_TOOLS = [
7047
7820
  "gcal_create_calendar",
7048
7821
  "gcal_create_event",
@@ -7076,16 +7849,16 @@ function gcalIntegration(config = {}) {
7076
7849
  tools: [...GCAL_TOOLS],
7077
7850
  oauth,
7078
7851
  async onInit(_client) {
7079
- logger31.debug("Google Calendar integration initialized");
7852
+ logger49.debug("Google Calendar integration initialized");
7080
7853
  },
7081
7854
  async onAfterConnect(_client) {
7082
- logger31.debug("Google Calendar integration connected");
7855
+ logger49.debug("Google Calendar integration connected");
7083
7856
  }
7084
7857
  };
7085
7858
  }
7086
7859
  // src/integrations/gcontacts.ts
7087
7860
  init_logger();
7088
- var logger32 = createLogger("Google Contacts");
7861
+ var logger50 = createLogger("Google Contacts");
7089
7862
  var GCONTACTS_TOOLS = [
7090
7863
  "gcontacts_batch_get_contacts",
7091
7864
  "gcontacts_copy_other_contact",
@@ -7119,16 +7892,16 @@ function gcontactsIntegration(config = {}) {
7119
7892
  tools: [...GCONTACTS_TOOLS],
7120
7893
  oauth,
7121
7894
  async onInit(_client) {
7122
- logger32.debug("Google Contacts integration initialized");
7895
+ logger50.debug("Google Contacts integration initialized");
7123
7896
  },
7124
7897
  async onAfterConnect(_client) {
7125
- logger32.debug("Google Contacts integration connected");
7898
+ logger50.debug("Google Contacts integration connected");
7126
7899
  }
7127
7900
  };
7128
7901
  }
7129
7902
  // src/integrations/gmeet.ts
7130
7903
  init_logger();
7131
- var logger33 = createLogger("Google Meet");
7904
+ var logger51 = createLogger("Google Meet");
7132
7905
  var GMEET_TOOLS = [
7133
7906
  "gmeet_add_meet_to_event",
7134
7907
  "gmeet_create_meeting",
@@ -7156,16 +7929,16 @@ function gmeetIntegration(config = {}) {
7156
7929
  tools: [...GMEET_TOOLS],
7157
7930
  oauth,
7158
7931
  async onInit(_client) {
7159
- logger33.debug("Google Meet integration initialized");
7932
+ logger51.debug("Google Meet integration initialized");
7160
7933
  },
7161
7934
  async onAfterConnect(_client) {
7162
- logger33.debug("Google Meet integration connected");
7935
+ logger51.debug("Google Meet integration connected");
7163
7936
  }
7164
7937
  };
7165
7938
  }
7166
7939
  // src/integrations/gtasks.ts
7167
7940
  init_logger();
7168
- var logger34 = createLogger("Google Tasks");
7941
+ var logger52 = createLogger("Google Tasks");
7169
7942
  var GTASKS_TOOLS = [
7170
7943
  "gtasks_clear_completed",
7171
7944
  "gtasks_create_task",
@@ -7201,16 +7974,16 @@ function gtasksIntegration(config = {}) {
7201
7974
  tools: [...GTASKS_TOOLS],
7202
7975
  oauth,
7203
7976
  async onInit(_client) {
7204
- logger34.debug("Google Tasks integration initialized");
7977
+ logger52.debug("Google Tasks integration initialized");
7205
7978
  },
7206
7979
  async onAfterConnect(_client) {
7207
- logger34.debug("Google Tasks integration connected");
7980
+ logger52.debug("Google Tasks integration connected");
7208
7981
  }
7209
7982
  };
7210
7983
  }
7211
7984
  // src/integrations/gkeep.ts
7212
7985
  init_logger();
7213
- var logger35 = createLogger("Google Keep");
7986
+ var logger53 = createLogger("Google Keep");
7214
7987
  var GKEEP_TOOLS = [
7215
7988
  "gkeep_list_notes",
7216
7989
  "gkeep_get_note",
@@ -7242,16 +8015,16 @@ function gkeepIntegration(config = {}) {
7242
8015
  tools: [...GKEEP_TOOLS],
7243
8016
  oauth,
7244
8017
  async onInit(_client) {
7245
- logger35.debug("Google Keep integration initialized");
8018
+ logger53.debug("Google Keep integration initialized");
7246
8019
  },
7247
8020
  async onAfterConnect(_client) {
7248
- logger35.debug("Google Keep integration connected");
8021
+ logger53.debug("Google Keep integration connected");
7249
8022
  }
7250
8023
  };
7251
8024
  }
7252
8025
  // src/integrations/outlook.ts
7253
8026
  init_logger();
7254
- var logger36 = createLogger("Outlook");
8027
+ var logger54 = createLogger("Outlook");
7255
8028
  var OUTLOOK_TOOLS = [
7256
8029
  "outlook_accept_event",
7257
8030
  "outlook_create_draft",
@@ -7298,16 +8071,16 @@ function outlookIntegration(config = {}) {
7298
8071
  tools: [...OUTLOOK_TOOLS],
7299
8072
  oauth,
7300
8073
  async onInit(_client) {
7301
- logger36.debug("Outlook integration initialized");
8074
+ logger54.debug("Outlook integration initialized");
7302
8075
  },
7303
8076
  async onAfterConnect(_client) {
7304
- logger36.debug("Outlook integration connected");
8077
+ logger54.debug("Outlook integration connected");
7305
8078
  }
7306
8079
  };
7307
8080
  }
7308
8081
  // src/integrations/teams.ts
7309
8082
  init_logger();
7310
- var logger37 = createLogger("Teams");
8083
+ var logger55 = createLogger("Teams");
7311
8084
  var TEAMS_SCOPES = [
7312
8085
  "offline_access",
7313
8086
  "User.Read",
@@ -7357,16 +8130,16 @@ function teamsIntegration(config = {}) {
7357
8130
  tools: [...TEAMS_TOOLS],
7358
8131
  oauth,
7359
8132
  async onInit(_client) {
7360
- logger37.debug("Teams integration initialized");
8133
+ logger55.debug("Teams integration initialized");
7361
8134
  },
7362
8135
  async onAfterConnect(_client) {
7363
- logger37.debug("Teams integration connected");
8136
+ logger55.debug("Teams integration connected");
7364
8137
  }
7365
8138
  };
7366
8139
  }
7367
8140
  // src/integrations/airtable.ts
7368
8141
  init_logger();
7369
- var logger38 = createLogger("Airtable");
8142
+ var logger56 = createLogger("Airtable");
7370
8143
  var AIRTABLE_TOOLS = [
7371
8144
  "airtable_list_bases",
7372
8145
  "airtable_get_base",
@@ -7412,16 +8185,16 @@ function airtableIntegration(config = {}) {
7412
8185
  tools: [...AIRTABLE_TOOLS],
7413
8186
  oauth,
7414
8187
  async onInit(_client) {
7415
- logger38.debug("Airtable integration initialized");
8188
+ logger56.debug("Airtable integration initialized");
7416
8189
  },
7417
8190
  async onAfterConnect(_client) {
7418
- logger38.debug("Airtable integration connected");
8191
+ logger56.debug("Airtable integration connected");
7419
8192
  }
7420
8193
  };
7421
8194
  }
7422
8195
  // src/integrations/auth0.ts
7423
8196
  init_logger();
7424
- var logger39 = createLogger("Auth0");
8197
+ var logger57 = createLogger("Auth0");
7425
8198
  var AUTH0_TOOLS = [
7426
8199
  "auth0_list_users",
7427
8200
  "auth0_get_user",
@@ -7510,7 +8283,7 @@ function auth0Integration(options) {
7510
8283
  };
7511
8284
  },
7512
8285
  async onInit() {
7513
- logger39.debug("Auth0 integration initialized");
8286
+ logger57.debug("Auth0 integration initialized");
7514
8287
  },
7515
8288
  async onBeforeConnect() {
7516
8289
  await ensureFreshToken();
@@ -7519,13 +8292,13 @@ function auth0Integration(options) {
7519
8292
  }
7520
8293
  },
7521
8294
  async onAfterConnect() {
7522
- logger39.debug("Auth0 integration connected");
8295
+ logger57.debug("Auth0 integration connected");
7523
8296
  }
7524
8297
  };
7525
8298
  }
7526
8299
  // src/integrations/astronomer.ts
7527
8300
  init_logger();
7528
- var logger40 = createLogger("Astronomer");
8301
+ var logger58 = createLogger("Astronomer");
7529
8302
  var ASTRONOMER_TOOLS = [
7530
8303
  "astronomer_get_self",
7531
8304
  "astronomer_list_organizations",
@@ -7560,16 +8333,16 @@ function astronomerIntegration(options = {}) {
7560
8333
  };
7561
8334
  },
7562
8335
  async onInit(_client) {
7563
- logger40.debug("Astronomer integration initialized");
8336
+ logger58.debug("Astronomer integration initialized");
7564
8337
  },
7565
8338
  async onAfterConnect(_client) {
7566
- logger40.debug("Astronomer integration connected");
8339
+ logger58.debug("Astronomer integration connected");
7567
8340
  }
7568
8341
  };
7569
8342
  }
7570
8343
  // src/integrations/betterstack.ts
7571
8344
  init_logger();
7572
- var logger41 = createLogger("BetterStack");
8345
+ var logger59 = createLogger("BetterStack");
7573
8346
  var BETTERSTACK_TOOLS = [
7574
8347
  "betterstack_list_sources",
7575
8348
  "betterstack_get_source",
@@ -7602,16 +8375,16 @@ function betterstackIntegration(options = {}) {
7602
8375
  };
7603
8376
  },
7604
8377
  async onInit(_client) {
7605
- logger41.debug("Better Stack integration initialized");
8378
+ logger59.debug("Better Stack integration initialized");
7606
8379
  },
7607
8380
  async onAfterConnect(_client) {
7608
- logger41.debug("Better Stack integration connected");
8381
+ logger59.debug("Better Stack integration connected");
7609
8382
  }
7610
8383
  };
7611
8384
  }
7612
8385
  // src/integrations/todoist.ts
7613
8386
  init_logger();
7614
- var logger42 = createLogger("Todoist");
8387
+ var logger60 = createLogger("Todoist");
7615
8388
  var TODOIST_TOOLS = [
7616
8389
  "todoist_list_projects",
7617
8390
  "todoist_get_project",
@@ -7666,16 +8439,16 @@ function todoistIntegration(config = {}) {
7666
8439
  tools: [...TODOIST_TOOLS],
7667
8440
  oauth,
7668
8441
  async onInit(_client) {
7669
- logger42.debug("Todoist integration initialized");
8442
+ logger60.debug("Todoist integration initialized");
7670
8443
  },
7671
8444
  async onAfterConnect(_client) {
7672
- logger42.debug("Todoist integration connected");
8445
+ logger60.debug("Todoist integration connected");
7673
8446
  }
7674
8447
  };
7675
8448
  }
7676
8449
  // src/integrations/whatsapp.ts
7677
8450
  init_logger();
7678
- var logger43 = createLogger("WhatsApp");
8451
+ var logger61 = createLogger("WhatsApp");
7679
8452
  var WHATSAPP_TOOLS = [
7680
8453
  "whatsapp_send_message",
7681
8454
  "whatsapp_reply_message",
@@ -7724,16 +8497,16 @@ function whatsappIntegration(config = {}) {
7724
8497
  tools: [...WHATSAPP_TOOLS],
7725
8498
  oauth,
7726
8499
  async onInit(_client) {
7727
- logger43.debug("WhatsApp Business integration initialized");
8500
+ logger61.debug("WhatsApp Business integration initialized");
7728
8501
  },
7729
8502
  async onAfterConnect(_client) {
7730
- logger43.debug("WhatsApp Business integration connected");
8503
+ logger61.debug("WhatsApp Business integration connected");
7731
8504
  }
7732
8505
  };
7733
8506
  }
7734
8507
  // src/integrations/calcom.ts
7735
8508
  init_logger();
7736
- var logger44 = createLogger("Cal.com");
8509
+ var logger62 = createLogger("Cal.com");
7737
8510
  var CALCOM_TOOLS = [
7738
8511
  "calcom_list_bookings",
7739
8512
  "calcom_get_booking",
@@ -7809,16 +8582,16 @@ function calcomIntegration(config = {}) {
7809
8582
  tools: [...CALCOM_TOOLS],
7810
8583
  oauth,
7811
8584
  async onInit(_client) {
7812
- logger44.debug("Cal.com integration initialized");
8585
+ logger62.debug("Cal.com integration initialized");
7813
8586
  },
7814
8587
  async onAfterConnect(_client) {
7815
- logger44.debug("Cal.com integration connected");
8588
+ logger62.debug("Cal.com integration connected");
7816
8589
  }
7817
8590
  };
7818
8591
  }
7819
8592
  // src/integrations/ramp.ts
7820
8593
  init_logger();
7821
- var logger45 = createLogger("Ramp");
8594
+ var logger63 = createLogger("Ramp");
7822
8595
  var RAMP_TOOLS = [
7823
8596
  "ramp_list_transactions",
7824
8597
  "ramp_get_transaction",
@@ -7850,16 +8623,16 @@ function rampIntegration(config = {}) {
7850
8623
  tools: [...RAMP_TOOLS],
7851
8624
  oauth,
7852
8625
  async onInit(_client) {
7853
- logger45.debug("Ramp integration initialized");
8626
+ logger63.debug("Ramp integration initialized");
7854
8627
  },
7855
8628
  async onAfterConnect(_client) {
7856
- logger45.debug("Ramp integration connected");
8629
+ logger63.debug("Ramp integration connected");
7857
8630
  }
7858
8631
  };
7859
8632
  }
7860
8633
  // src/integrations/onedrive.ts
7861
8634
  init_logger();
7862
- var logger46 = createLogger("OneDrive");
8635
+ var logger64 = createLogger("OneDrive");
7863
8636
  var ONEDRIVE_TOOLS = [
7864
8637
  "onedrive_create_folder",
7865
8638
  "onedrive_delete_file",
@@ -7891,10 +8664,10 @@ function onedriveIntegration(config = {}) {
7891
8664
  tools: [...ONEDRIVE_TOOLS],
7892
8665
  oauth,
7893
8666
  async onInit(_client) {
7894
- logger46.debug("OneDrive integration initialized");
8667
+ logger64.debug("OneDrive integration initialized");
7895
8668
  },
7896
8669
  async onAfterConnect(_client) {
7897
- logger46.debug("OneDrive integration connected");
8670
+ logger64.debug("OneDrive integration connected");
7898
8671
  }
7899
8672
  };
7900
8673
  }
@@ -7933,7 +8706,7 @@ function plannerIntegration(config = {}) {
7933
8706
  }
7934
8707
  // src/integrations/sharepoint.ts
7935
8708
  init_logger();
7936
- var logger47 = createLogger("SharePoint");
8709
+ var logger65 = createLogger("SharePoint");
7937
8710
  var SHAREPOINT_SCOPES = ["Sites.ReadWrite.All", "Files.ReadWrite.All", "offline_access"];
7938
8711
  var SHAREPOINT_TOOLS = [
7939
8712
  "sharepoint_create_folder",
@@ -7972,16 +8745,16 @@ function sharepointIntegration(config = {}) {
7972
8745
  tools: [...SHAREPOINT_TOOLS],
7973
8746
  oauth,
7974
8747
  async onInit(_client) {
7975
- logger47.debug("SharePoint integration initialized");
8748
+ logger65.debug("SharePoint integration initialized");
7976
8749
  },
7977
8750
  async onAfterConnect(_client) {
7978
- logger47.debug("SharePoint integration connected");
8751
+ logger65.debug("SharePoint integration connected");
7979
8752
  }
7980
8753
  };
7981
8754
  }
7982
8755
  // src/integrations/dropbox.ts
7983
8756
  init_logger();
7984
- var logger48 = createLogger("Dropbox");
8757
+ var logger66 = createLogger("Dropbox");
7985
8758
  var DROPBOX_TOOLS = [
7986
8759
  "dropbox_get_current_account",
7987
8760
  "dropbox_get_space_usage",
@@ -8023,16 +8796,16 @@ function dropboxIntegration(options = {}) {
8023
8796
  authType: "oauth",
8024
8797
  oauth,
8025
8798
  async onInit(_client) {
8026
- logger48.debug("Dropbox integration initialized");
8799
+ logger66.debug("Dropbox integration initialized");
8027
8800
  },
8028
8801
  async onAfterConnect(_client) {
8029
- logger48.debug("Dropbox integration connected");
8802
+ logger66.debug("Dropbox integration connected");
8030
8803
  }
8031
8804
  };
8032
8805
  }
8033
8806
  // src/integrations/paper.ts
8034
8807
  init_logger();
8035
- var logger49 = createLogger("Paper");
8808
+ var logger67 = createLogger("Paper");
8036
8809
  var PAPER_SCOPES = [
8037
8810
  "account_info.read",
8038
8811
  "files.metadata.read",
@@ -8078,16 +8851,16 @@ function paperIntegration(config = {}) {
8078
8851
  authType: "oauth",
8079
8852
  oauth,
8080
8853
  async onInit(_client) {
8081
- logger49.debug("Paper integration initialized");
8854
+ logger67.debug("Paper integration initialized");
8082
8855
  },
8083
8856
  async onAfterConnect(_client) {
8084
- logger49.debug("Paper integration connected");
8857
+ logger67.debug("Paper integration connected");
8085
8858
  }
8086
8859
  };
8087
8860
  }
8088
8861
  // src/integrations/word.ts
8089
8862
  init_logger();
8090
- var logger50 = createLogger("Word");
8863
+ var logger68 = createLogger("Word");
8091
8864
  var WORD_TOOLS = [
8092
8865
  "word_copy",
8093
8866
  "word_create",
@@ -8114,16 +8887,16 @@ function wordIntegration(config = {}) {
8114
8887
  tools: [...WORD_TOOLS],
8115
8888
  oauth,
8116
8889
  async onInit(_client) {
8117
- logger50.debug("Word integration initialized");
8890
+ logger68.debug("Word integration initialized");
8118
8891
  },
8119
8892
  async onAfterConnect(_client) {
8120
- logger50.debug("Word integration connected");
8893
+ logger68.debug("Word integration connected");
8121
8894
  }
8122
8895
  };
8123
8896
  }
8124
8897
  // src/integrations/excel.ts
8125
8898
  init_logger();
8126
- var logger51 = createLogger("Excel");
8899
+ var logger69 = createLogger("Excel");
8127
8900
  var EXCEL_TOOLS = [
8128
8901
  "excel_add_table_rows",
8129
8902
  "excel_add_worksheet",
@@ -8159,16 +8932,16 @@ function excelIntegration(config = {}) {
8159
8932
  tools: [...EXCEL_TOOLS],
8160
8933
  oauth,
8161
8934
  async onInit(_client) {
8162
- logger51.debug("Excel integration initialized");
8935
+ logger69.debug("Excel integration initialized");
8163
8936
  },
8164
8937
  async onAfterConnect(_client) {
8165
- logger51.debug("Excel integration connected");
8938
+ logger69.debug("Excel integration connected");
8166
8939
  }
8167
8940
  };
8168
8941
  }
8169
8942
  // src/integrations/powerpoint.ts
8170
8943
  init_logger();
8171
- var logger52 = createLogger("PowerPoint");
8944
+ var logger70 = createLogger("PowerPoint");
8172
8945
  var POWERPOINT_TOOLS = [
8173
8946
  "powerpoint_copy",
8174
8947
  "powerpoint_create",
@@ -8195,16 +8968,16 @@ function powerpointIntegration(config = {}) {
8195
8968
  tools: [...POWERPOINT_TOOLS],
8196
8969
  oauth,
8197
8970
  async onInit(_client) {
8198
- logger52.debug("PowerPoint integration initialized");
8971
+ logger70.debug("PowerPoint integration initialized");
8199
8972
  },
8200
8973
  async onAfterConnect(_client) {
8201
- logger52.debug("PowerPoint integration connected");
8974
+ logger70.debug("PowerPoint integration connected");
8202
8975
  }
8203
8976
  };
8204
8977
  }
8205
8978
  // src/integrations/gdocs.ts
8206
8979
  init_logger();
8207
- var logger53 = createLogger("Google Docs");
8980
+ var logger71 = createLogger("Google Docs");
8208
8981
  var GDOCS_TOOLS = [
8209
8982
  "gdocs_append_text",
8210
8983
  "gdocs_batch_update",
@@ -8234,16 +9007,16 @@ function gdocsIntegration(config = {}) {
8234
9007
  tools: [...GDOCS_TOOLS],
8235
9008
  oauth,
8236
9009
  async onInit(_client) {
8237
- logger53.debug("Google Docs integration initialized");
9010
+ logger71.debug("Google Docs integration initialized");
8238
9011
  },
8239
9012
  async onAfterConnect(_client) {
8240
- logger53.debug("Google Docs integration connected");
9013
+ logger71.debug("Google Docs integration connected");
8241
9014
  }
8242
9015
  };
8243
9016
  }
8244
9017
  // src/integrations/gdrive.ts
8245
9018
  init_logger();
8246
- var logger54 = createLogger("Google Drive");
9019
+ var logger72 = createLogger("Google Drive");
8247
9020
  var GDRIVE_TOOLS = [
8248
9021
  "gdrive_copy_file",
8249
9022
  "gdrive_create_folder",
@@ -8277,16 +9050,16 @@ function gdriveIntegration(config = {}) {
8277
9050
  tools: [...GDRIVE_TOOLS],
8278
9051
  oauth,
8279
9052
  async onInit(_client) {
8280
- logger54.debug("Google Drive integration initialized");
9053
+ logger72.debug("Google Drive integration initialized");
8281
9054
  },
8282
9055
  async onAfterConnect(_client) {
8283
- logger54.debug("Google Drive integration connected");
9056
+ logger72.debug("Google Drive integration connected");
8284
9057
  }
8285
9058
  };
8286
9059
  }
8287
9060
  // src/integrations/gsheets.ts
8288
9061
  init_logger();
8289
- var logger55 = createLogger("Google Sheets");
9062
+ var logger73 = createLogger("Google Sheets");
8290
9063
  var GSHEETS_TOOLS = [
8291
9064
  "gsheets_append_values",
8292
9065
  "gsheets_batch_update",
@@ -8316,16 +9089,16 @@ function gsheetsIntegration(config = {}) {
8316
9089
  tools: [...GSHEETS_TOOLS],
8317
9090
  oauth,
8318
9091
  async onInit(_client) {
8319
- logger55.debug("Google Sheets integration initialized");
9092
+ logger73.debug("Google Sheets integration initialized");
8320
9093
  },
8321
9094
  async onAfterConnect(_client) {
8322
- logger55.debug("Google Sheets integration connected");
9095
+ logger73.debug("Google Sheets integration connected");
8323
9096
  }
8324
9097
  };
8325
9098
  }
8326
9099
  // src/integrations/gslides.ts
8327
9100
  init_logger();
8328
- var logger56 = createLogger("Google Slides");
9101
+ var logger74 = createLogger("Google Slides");
8329
9102
  var GSLIDES_TOOLS = [
8330
9103
  "gslides_add_slide",
8331
9104
  "gslides_batch_update",
@@ -8354,16 +9127,16 @@ function gslidesIntegration(config = {}) {
8354
9127
  tools: [...GSLIDES_TOOLS],
8355
9128
  oauth,
8356
9129
  async onInit(_client) {
8357
- logger56.debug("Google Slides integration initialized");
9130
+ logger74.debug("Google Slides integration initialized");
8358
9131
  },
8359
9132
  async onAfterConnect(_client) {
8360
- logger56.debug("Google Slides integration connected");
9133
+ logger74.debug("Google Slides integration connected");
8361
9134
  }
8362
9135
  };
8363
9136
  }
8364
9137
  // src/integrations/polar.ts
8365
9138
  init_logger();
8366
- var logger57 = createLogger("Polar");
9139
+ var logger75 = createLogger("Polar");
8367
9140
  var POLAR_TOOLS = [
8368
9141
  "polar_list_products",
8369
9142
  "polar_get_product",
@@ -8420,16 +9193,16 @@ function polarIntegration(config = {}) {
8420
9193
  tools: [...POLAR_TOOLS],
8421
9194
  oauth,
8422
9195
  async onInit(_client) {
8423
- logger57.debug("Polar integration initialized");
9196
+ logger75.debug("Polar integration initialized");
8424
9197
  },
8425
9198
  async onAfterConnect(_client) {
8426
- logger57.debug("Polar integration connected");
9199
+ logger75.debug("Polar integration connected");
8427
9200
  }
8428
9201
  };
8429
9202
  }
8430
9203
  // src/integrations/phantom.ts
8431
9204
  init_logger();
8432
- var logger58 = createLogger("Phantom");
9205
+ var logger76 = createLogger("Phantom");
8433
9206
  var PHANTOM_TOOLS = [
8434
9207
  "phantom_build_browse_deeplink",
8435
9208
  "phantom_deeplink_provider_reference"
@@ -8451,16 +9224,16 @@ function phantomIntegration(_options = {}) {
8451
9224
  category: "Other",
8452
9225
  tools: [...PHANTOM_TOOLS],
8453
9226
  async onInit(_client) {
8454
- logger58.debug("Phantom integration initialized");
9227
+ logger76.debug("Phantom integration initialized");
8455
9228
  },
8456
9229
  async onAfterConnect(_client) {
8457
- logger58.debug("Phantom integration connected");
9230
+ logger76.debug("Phantom integration connected");
8458
9231
  }
8459
9232
  };
8460
9233
  }
8461
9234
  // src/integrations/figma.ts
8462
9235
  init_logger();
8463
- var logger59 = createLogger("Figma");
9236
+ var logger77 = createLogger("Figma");
8464
9237
  var FIGMA_TOOLS = [
8465
9238
  "figma_get_file",
8466
9239
  "figma_get_file_nodes",
@@ -8526,16 +9299,16 @@ function figmaIntegration(config = {}) {
8526
9299
  tools: [...FIGMA_TOOLS],
8527
9300
  oauth,
8528
9301
  async onInit(_client) {
8529
- logger59.debug("Figma integration initialized");
9302
+ logger77.debug("Figma integration initialized");
8530
9303
  },
8531
9304
  async onAfterConnect(_client) {
8532
- logger59.debug("Figma integration connected");
9305
+ logger77.debug("Figma integration connected");
8533
9306
  }
8534
9307
  };
8535
9308
  }
8536
9309
  // src/integrations/intercom.ts
8537
9310
  init_logger();
8538
- var logger60 = createLogger("Intercom");
9311
+ var logger78 = createLogger("Intercom");
8539
9312
  var INTERCOM_TOOLS = [
8540
9313
  "intercom_list_contacts",
8541
9314
  "intercom_get_contact",
@@ -8566,16 +9339,16 @@ function intercomIntegration(config = {}) {
8566
9339
  tools: [...INTERCOM_TOOLS],
8567
9340
  oauth,
8568
9341
  async onInit(_client) {
8569
- logger60.debug("Intercom integration initialized");
9342
+ logger78.debug("Intercom integration initialized");
8570
9343
  },
8571
9344
  async onAfterConnect(_client) {
8572
- logger60.debug("Intercom integration connected");
9345
+ logger78.debug("Intercom integration connected");
8573
9346
  }
8574
9347
  };
8575
9348
  }
8576
9349
  // src/integrations/hubspot.ts
8577
9350
  init_logger();
8578
- var logger61 = createLogger("HubSpot");
9351
+ var logger79 = createLogger("HubSpot");
8579
9352
  var HUBSPOT_TOOLS = [
8580
9353
  "hubspot_list_contacts",
8581
9354
  "hubspot_get_contact",
@@ -8625,16 +9398,16 @@ function hubspotIntegration(config = {}) {
8625
9398
  tools: [...HUBSPOT_TOOLS],
8626
9399
  oauth,
8627
9400
  async onInit(_client) {
8628
- logger61.debug("HubSpot integration initialized");
9401
+ logger79.debug("HubSpot integration initialized");
8629
9402
  },
8630
9403
  async onAfterConnect(_client) {
8631
- logger61.debug("HubSpot integration connected");
9404
+ logger79.debug("HubSpot integration connected");
8632
9405
  }
8633
9406
  };
8634
9407
  }
8635
9408
  // src/integrations/youtube.ts
8636
9409
  init_logger();
8637
- var logger62 = createLogger("YouTube");
9410
+ var logger80 = createLogger("YouTube");
8638
9411
  var YOUTUBE_TOOLS = [
8639
9412
  "youtube_add_comment",
8640
9413
  "youtube_add_to_playlist",
@@ -8680,16 +9453,16 @@ function youtubeIntegration(config = {}) {
8680
9453
  tools: [...YOUTUBE_TOOLS],
8681
9454
  oauth,
8682
9455
  async onInit(_client) {
8683
- logger62.debug("YouTube integration initialized");
9456
+ logger80.debug("YouTube integration initialized");
8684
9457
  },
8685
9458
  async onAfterConnect(_client) {
8686
- logger62.debug("YouTube integration connected");
9459
+ logger80.debug("YouTube integration connected");
8687
9460
  }
8688
9461
  };
8689
9462
  }
8690
9463
  // src/integrations/zoom.ts
8691
9464
  init_logger();
8692
- var logger63 = createLogger("Zoom");
9465
+ var logger81 = createLogger("Zoom");
8693
9466
  var ZOOM_TOOLS = [
8694
9467
  "zoom_get_user",
8695
9468
  "zoom_list_meetings",
@@ -8715,10 +9488,10 @@ function zoomIntegration(config = {}) {
8715
9488
  tools: [...ZOOM_TOOLS],
8716
9489
  oauth,
8717
9490
  async onInit(_client) {
8718
- logger63.debug("Zoom integration initialized");
9491
+ logger81.debug("Zoom integration initialized");
8719
9492
  },
8720
9493
  async onAfterConnect(_client) {
8721
- logger63.debug("Zoom integration connected");
9494
+ logger81.debug("Zoom integration connected");
8722
9495
  }
8723
9496
  };
8724
9497
  }
@@ -8754,7 +9527,7 @@ function redditIntegration(config = {}) {
8754
9527
  }
8755
9528
  // src/integrations/cursor.ts
8756
9529
  init_logger();
8757
- var logger64 = createLogger("Cursor");
9530
+ var logger82 = createLogger("Cursor");
8758
9531
  var CURSOR_TOOLS = [
8759
9532
  "cursor_list_agents",
8760
9533
  "cursor_get_agent",
@@ -8774,16 +9547,16 @@ function cursorIntegration(_config = {}) {
8774
9547
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/cursor.jpeg",
8775
9548
  tools: [...CURSOR_TOOLS],
8776
9549
  async onInit(_client) {
8777
- logger64.debug("Cursor integration initialized");
9550
+ logger82.debug("Cursor integration initialized");
8778
9551
  },
8779
9552
  async onAfterConnect(_client) {
8780
- logger64.debug("Cursor integration connected");
9553
+ logger82.debug("Cursor integration connected");
8781
9554
  }
8782
9555
  };
8783
9556
  }
8784
9557
  // src/integrations/databricks.ts
8785
9558
  init_logger();
8786
- var logger65 = createLogger("Databricks");
9559
+ var logger83 = createLogger("Databricks");
8787
9560
  var DATABRICKS_SCOPES = ["all-apis", "offline_access"];
8788
9561
  var DATABRICKS_TOOLS = [
8789
9562
  "databricks_current_user",
@@ -8830,16 +9603,16 @@ function databricksIntegration(config = {}) {
8830
9603
  tools: [...DATABRICKS_TOOLS],
8831
9604
  oauth,
8832
9605
  async onInit(_client) {
8833
- logger65.debug("Databricks integration initialized");
9606
+ logger83.debug("Databricks integration initialized");
8834
9607
  },
8835
9608
  async onAfterConnect(_client) {
8836
- logger65.debug("Databricks integration connected");
9609
+ logger83.debug("Databricks integration connected");
8837
9610
  }
8838
9611
  };
8839
9612
  }
8840
9613
  // src/integrations/posthog.ts
8841
9614
  init_logger();
8842
- var logger66 = createLogger("PostHog");
9615
+ var logger84 = createLogger("PostHog");
8843
9616
  var DEFAULT_POSTHOG_BASE_URL = "https://us.posthog.com";
8844
9617
  var POSTHOG_SCOPES = [
8845
9618
  "openid",
@@ -8925,16 +9698,16 @@ function posthogIntegration(config = {}) {
8925
9698
  tools: [...POSTHOG_TOOLS],
8926
9699
  oauth,
8927
9700
  async onInit(_client) {
8928
- logger66.debug("PostHog integration initialized");
9701
+ logger84.debug("PostHog integration initialized");
8929
9702
  },
8930
9703
  async onAfterConnect(_client) {
8931
- logger66.debug("PostHog integration connected");
9704
+ logger84.debug("PostHog integration connected");
8932
9705
  }
8933
9706
  };
8934
9707
  }
8935
9708
  // src/integrations/postman.ts
8936
9709
  init_logger();
8937
- var logger67 = createLogger("Postman");
9710
+ var logger85 = createLogger("Postman");
8938
9711
  var POSTMAN_TOOLS = [
8939
9712
  "postman_get_me",
8940
9713
  "postman_list_workspaces",
@@ -8965,16 +9738,16 @@ function postmanIntegration(options = {}) {
8965
9738
  };
8966
9739
  },
8967
9740
  async onInit(_client) {
8968
- logger67.debug("Postman integration initialized");
9741
+ logger85.debug("Postman integration initialized");
8969
9742
  },
8970
9743
  async onAfterConnect(_client) {
8971
- logger67.debug("Postman integration connected");
9744
+ logger85.debug("Postman integration connected");
8972
9745
  }
8973
9746
  };
8974
9747
  }
8975
9748
  // src/integrations/sentry.ts
8976
9749
  init_logger();
8977
- var logger68 = createLogger("Sentry");
9750
+ var logger86 = createLogger("Sentry");
8978
9751
  var SENTRY_SCOPES = [
8979
9752
  "org:read",
8980
9753
  "project:read",
@@ -9023,16 +9796,16 @@ function sentryIntegration(config = {}) {
9023
9796
  tools: [...SENTRY_TOOLS],
9024
9797
  oauth,
9025
9798
  async onInit(_client) {
9026
- logger68.debug("Sentry integration initialized");
9799
+ logger86.debug("Sentry integration initialized");
9027
9800
  },
9028
9801
  async onAfterConnect(_client) {
9029
- logger68.debug("Sentry integration connected");
9802
+ logger86.debug("Sentry integration connected");
9030
9803
  }
9031
9804
  };
9032
9805
  }
9033
9806
  // src/integrations/supabase.ts
9034
9807
  init_logger();
9035
- var logger69 = createLogger("Supabase");
9808
+ var logger87 = createLogger("Supabase");
9036
9809
  var SUPABASE_API_BASE = "https://api.supabase.com";
9037
9810
  var SUPABASE_TOOLS = [
9038
9811
  "supabase_get_profile",
@@ -9070,10 +9843,10 @@ function supabaseIntegration(config = {}) {
9070
9843
  };
9071
9844
  },
9072
9845
  async onInit(_client) {
9073
- logger69.debug("Supabase integration initialized (personal access token)");
9846
+ logger87.debug("Supabase integration initialized (personal access token)");
9074
9847
  },
9075
9848
  async onAfterConnect(_client) {
9076
- logger69.debug("Supabase integration connected");
9849
+ logger87.debug("Supabase integration connected");
9077
9850
  }
9078
9851
  };
9079
9852
  }
@@ -9103,16 +9876,16 @@ function supabaseIntegration(config = {}) {
9103
9876
  tools: [...SUPABASE_TOOLS],
9104
9877
  oauth,
9105
9878
  async onInit(_client) {
9106
- logger69.debug("Supabase integration initialized");
9879
+ logger87.debug("Supabase integration initialized");
9107
9880
  },
9108
9881
  async onAfterConnect(_client) {
9109
- logger69.debug("Supabase integration connected");
9882
+ logger87.debug("Supabase integration connected");
9110
9883
  }
9111
9884
  };
9112
9885
  }
9113
9886
  // src/integrations/netlify.ts
9114
9887
  init_logger();
9115
- var logger70 = createLogger("Netlify");
9888
+ var logger88 = createLogger("Netlify");
9116
9889
  var NETLIFY_TOOLS = [
9117
9890
  "netlify_get_current_user",
9118
9891
  "netlify_list_accounts",
@@ -9175,16 +9948,16 @@ function netlifyIntegration(config = {}) {
9175
9948
  tools: [...NETLIFY_TOOLS],
9176
9949
  oauth,
9177
9950
  async onInit(_client) {
9178
- logger70.debug("Netlify integration initialized");
9951
+ logger88.debug("Netlify integration initialized");
9179
9952
  },
9180
9953
  async onAfterConnect(_client) {
9181
- logger70.debug("Netlify integration connected");
9954
+ logger88.debug("Netlify integration connected");
9182
9955
  }
9183
9956
  };
9184
9957
  }
9185
9958
  // src/integrations/datadog.ts
9186
9959
  init_logger();
9187
- var logger71 = createLogger("Datadog");
9960
+ var logger89 = createLogger("Datadog");
9188
9961
  var DATADOG_SCOPES = [
9189
9962
  "monitors_read",
9190
9963
  "dashboards_read",
@@ -9214,10 +9987,10 @@ function datadogIntegration(config = {}) {
9214
9987
  category: "Engineering",
9215
9988
  tools: [...DATADOG_TOOLS],
9216
9989
  async onInit(_client) {
9217
- logger71.debug("Datadog integration initialized");
9990
+ logger89.debug("Datadog integration initialized");
9218
9991
  },
9219
9992
  async onAfterConnect(_client) {
9220
- logger71.debug("Datadog integration connected");
9993
+ logger89.debug("Datadog integration connected");
9221
9994
  }
9222
9995
  };
9223
9996
  if (apiKey || applicationKey) {
@@ -9259,7 +10032,7 @@ function datadogIntegration(config = {}) {
9259
10032
  }
9260
10033
  // src/integrations/redis.ts
9261
10034
  init_logger();
9262
- var logger72 = createLogger("Redis Cloud");
10035
+ var logger90 = createLogger("Redis Cloud");
9263
10036
  var REDIS_TOOLS = [
9264
10037
  "redis_list_subscriptions",
9265
10038
  "redis_get_subscription",
@@ -9314,16 +10087,16 @@ function redisIntegration(options = {}) {
9314
10087
  };
9315
10088
  },
9316
10089
  async onInit(_client) {
9317
- logger72.debug("Redis Cloud integration initialized");
10090
+ logger90.debug("Redis Cloud integration initialized");
9318
10091
  },
9319
10092
  async onAfterConnect(_client) {
9320
- logger72.debug("Redis Cloud integration connected");
10093
+ logger90.debug("Redis Cloud integration connected");
9321
10094
  }
9322
10095
  };
9323
10096
  }
9324
10097
  // src/integrations/upstash.ts
9325
10098
  init_logger();
9326
- var logger73 = createLogger("Upstash");
10099
+ var logger91 = createLogger("Upstash");
9327
10100
  var UPSTASH_TOOLS = [
9328
10101
  "upstash_redis_run",
9329
10102
  "upstash_redis_get",
@@ -9363,16 +10136,16 @@ function upstashIntegration(options = {}) {
9363
10136
  return headers;
9364
10137
  },
9365
10138
  async onInit(_client) {
9366
- logger73.debug("Upstash integration initialized");
10139
+ logger91.debug("Upstash integration initialized");
9367
10140
  },
9368
10141
  async onAfterConnect(_client) {
9369
- logger73.debug("Upstash integration connected");
10142
+ logger91.debug("Upstash integration connected");
9370
10143
  }
9371
10144
  };
9372
10145
  }
9373
10146
  // src/integrations/webflow.ts
9374
10147
  init_logger();
9375
- var logger74 = createLogger("Webflow");
10148
+ var logger92 = createLogger("Webflow");
9376
10149
  var WEBFLOW_TOOLS = [
9377
10150
  "webflow_token_introspect",
9378
10151
  "webflow_get_authorized_user",
@@ -9431,16 +10204,16 @@ function webflowIntegration(config = {}) {
9431
10204
  tools: [...WEBFLOW_TOOLS],
9432
10205
  oauth,
9433
10206
  async onInit(_client) {
9434
- logger74.debug("Webflow integration initialized");
10207
+ logger92.debug("Webflow integration initialized");
9435
10208
  },
9436
10209
  async onAfterConnect(_client) {
9437
- logger74.debug("Webflow integration connected");
10210
+ logger92.debug("Webflow integration connected");
9438
10211
  }
9439
10212
  };
9440
10213
  }
9441
10214
  // src/integrations/jira.ts
9442
10215
  init_logger();
9443
- var logger75 = createLogger("Jira");
10216
+ var logger93 = createLogger("Jira");
9444
10217
  var JIRA_SCOPES = [
9445
10218
  "read:jira-work",
9446
10219
  "write:jira-work",
@@ -9485,16 +10258,16 @@ function jiraIntegration(config = {}) {
9485
10258
  tools: [...JIRA_TOOLS],
9486
10259
  oauth,
9487
10260
  async onInit(_client) {
9488
- logger75.debug("Jira integration initialized");
10261
+ logger93.debug("Jira integration initialized");
9489
10262
  },
9490
10263
  async onAfterConnect(_client) {
9491
- logger75.debug("Jira integration connected");
10264
+ logger93.debug("Jira integration connected");
9492
10265
  }
9493
10266
  };
9494
10267
  }
9495
10268
  // src/integrations/salesforce.ts
9496
10269
  init_logger();
9497
- var logger76 = createLogger("Salesforce");
10270
+ var logger94 = createLogger("Salesforce");
9498
10271
  var SALESFORCE_TOOLS = [
9499
10272
  "salesforce_query",
9500
10273
  "salesforce_get_limits",
@@ -9525,16 +10298,16 @@ function salesforceIntegration(config = {}) {
9525
10298
  tools: [...SALESFORCE_TOOLS],
9526
10299
  oauth,
9527
10300
  async onInit(_client) {
9528
- logger76.debug("Salesforce integration initialized");
10301
+ logger94.debug("Salesforce integration initialized");
9529
10302
  },
9530
10303
  async onAfterConnect(_client) {
9531
- logger76.debug("Salesforce integration connected");
10304
+ logger94.debug("Salesforce integration connected");
9532
10305
  }
9533
10306
  };
9534
10307
  }
9535
10308
  // src/integrations/zapier.ts
9536
10309
  init_logger();
9537
- var logger77 = createLogger("Zapier");
10310
+ var logger95 = createLogger("Zapier");
9538
10311
  var ZAPIER_TOOLS = [
9539
10312
  "zapier_get_profile",
9540
10313
  "zapier_list_zaps",
@@ -9566,16 +10339,16 @@ function zapierIntegration(config = {}) {
9566
10339
  tools: [...ZAPIER_TOOLS],
9567
10340
  oauth,
9568
10341
  async onInit(_client) {
9569
- logger77.debug("Zapier integration initialized");
10342
+ logger95.debug("Zapier integration initialized");
9570
10343
  },
9571
10344
  async onAfterConnect(_client) {
9572
- logger77.debug("Zapier integration connected");
10345
+ logger95.debug("Zapier integration connected");
9573
10346
  }
9574
10347
  };
9575
10348
  }
9576
10349
  // src/integrations/linkedin.ts
9577
10350
  init_logger();
9578
- var logger78 = createLogger("LinkedIn");
10351
+ var logger96 = createLogger("LinkedIn");
9579
10352
  var LINKEDIN_SCOPES = ["openid", "profile", "email", "w_member_social"];
9580
10353
  var LINKEDIN_TOOLS = ["linkedin_get_userinfo", "linkedin_create_post"];
9581
10354
  function linkedinIntegration(config = {}) {
@@ -9602,16 +10375,16 @@ function linkedinIntegration(config = {}) {
9602
10375
  tools: [...LINKEDIN_TOOLS],
9603
10376
  oauth,
9604
10377
  async onInit(_client) {
9605
- logger78.debug("LinkedIn integration initialized");
10378
+ logger96.debug("LinkedIn integration initialized");
9606
10379
  },
9607
10380
  async onAfterConnect(_client) {
9608
- logger78.debug("LinkedIn integration connected");
10381
+ logger96.debug("LinkedIn integration connected");
9609
10382
  }
9610
10383
  };
9611
10384
  }
9612
10385
  // src/integrations/threads.ts
9613
10386
  init_logger();
9614
- var logger79 = createLogger("Threads");
10387
+ var logger97 = createLogger("Threads");
9615
10388
  var THREADS_SCOPES = [
9616
10389
  "threads_basic",
9617
10390
  "threads_content_publish",
@@ -9662,16 +10435,16 @@ function threadsIntegration(config = {}) {
9662
10435
  tools: [...THREADS_TOOLS],
9663
10436
  oauth,
9664
10437
  async onInit(_client) {
9665
- logger79.debug("Threads integration initialized");
10438
+ logger97.debug("Threads integration initialized");
9666
10439
  },
9667
10440
  async onAfterConnect(_client) {
9668
- logger79.debug("Threads integration connected");
10441
+ logger97.debug("Threads integration connected");
9669
10442
  }
9670
10443
  };
9671
10444
  }
9672
10445
  // src/integrations/tiktok.ts
9673
10446
  init_logger();
9674
- var logger80 = createLogger("TikTok");
10447
+ var logger98 = createLogger("TikTok");
9675
10448
  var TIKTOK_SCOPES = ["user.info.basic", "video.list"];
9676
10449
  var TIKTOK_TOOLS = [
9677
10450
  "tiktok_get_user_info",
@@ -9702,16 +10475,16 @@ function tiktokIntegration(config = {}) {
9702
10475
  tools: [...TIKTOK_TOOLS],
9703
10476
  oauth,
9704
10477
  async onInit(_client) {
9705
- logger80.debug("TikTok integration initialized");
10478
+ logger98.debug("TikTok integration initialized");
9706
10479
  },
9707
10480
  async onAfterConnect(_client) {
9708
- logger80.debug("TikTok integration connected");
10481
+ logger98.debug("TikTok integration connected");
9709
10482
  }
9710
10483
  };
9711
10484
  }
9712
10485
  // src/integrations/trello.ts
9713
10486
  init_logger();
9714
- var logger81 = createLogger("Trello");
10487
+ var logger99 = createLogger("Trello");
9715
10488
  var TRELLO_TOOLS = [
9716
10489
  "trello_get_member",
9717
10490
  "trello_list_boards",
@@ -9748,16 +10521,16 @@ function trelloIntegration(options = {}) {
9748
10521
  return { Authorization: `Bearer ${encodeCredential(apiKey, memberToken)}` };
9749
10522
  },
9750
10523
  async onInit(_client) {
9751
- logger81.debug("Trello integration initialized");
10524
+ logger99.debug("Trello integration initialized");
9752
10525
  },
9753
10526
  async onAfterConnect(_client) {
9754
- logger81.debug("Trello integration connected");
10527
+ logger99.debug("Trello integration connected");
9755
10528
  }
9756
10529
  };
9757
10530
  }
9758
10531
  // src/integrations/typeform.ts
9759
10532
  init_logger();
9760
- var logger82 = createLogger("Typeform");
10533
+ var logger100 = createLogger("Typeform");
9761
10534
  var TYPEFORM_SCOPES = [
9762
10535
  "offline",
9763
10536
  "accounts:read",
@@ -9801,16 +10574,16 @@ function typeformIntegration(config = {}) {
9801
10574
  tools: [...TYPEFORM_TOOLS],
9802
10575
  oauth,
9803
10576
  async onInit(_client) {
9804
- logger82.debug("Typeform integration initialized");
10577
+ logger100.debug("Typeform integration initialized");
9805
10578
  },
9806
10579
  async onAfterConnect(_client) {
9807
- logger82.debug("Typeform integration connected");
10580
+ logger100.debug("Typeform integration connected");
9808
10581
  }
9809
10582
  };
9810
10583
  }
9811
10584
  // src/integrations/xero.ts
9812
10585
  init_logger();
9813
- var logger83 = createLogger("Xero");
10586
+ var logger101 = createLogger("Xero");
9814
10587
  var XERO_SCOPES = [
9815
10588
  "openid",
9816
10589
  "profile",
@@ -9857,16 +10630,16 @@ function xeroIntegration(config = {}) {
9857
10630
  tools: [...XERO_TOOLS],
9858
10631
  oauth,
9859
10632
  async onInit(_client) {
9860
- logger83.debug("Xero integration initialized");
10633
+ logger101.debug("Xero integration initialized");
9861
10634
  },
9862
10635
  async onAfterConnect(_client) {
9863
- logger83.debug("Xero integration connected");
10636
+ logger101.debug("Xero integration connected");
9864
10637
  }
9865
10638
  };
9866
10639
  }
9867
10640
  // src/integrations/attio.ts
9868
10641
  init_logger();
9869
- var logger84 = createLogger("Attio");
10642
+ var logger102 = createLogger("Attio");
9870
10643
  var ATTIO_SCOPES = [
9871
10644
  "record_permission:read-write",
9872
10645
  "object_configuration:read",
@@ -9912,16 +10685,16 @@ function attioIntegration(config = {}) {
9912
10685
  tools: [...ATTIO_TOOLS],
9913
10686
  oauth,
9914
10687
  async onInit(_client) {
9915
- logger84.debug("Attio integration initialized");
10688
+ logger102.debug("Attio integration initialized");
9916
10689
  },
9917
10690
  async onAfterConnect(_client) {
9918
- logger84.debug("Attio integration connected");
10691
+ logger102.debug("Attio integration connected");
9919
10692
  }
9920
10693
  };
9921
10694
  }
9922
10695
  // src/integrations/gchat.ts
9923
10696
  init_logger();
9924
- var logger85 = createLogger("Google Chat");
10697
+ var logger103 = createLogger("Google Chat");
9925
10698
  var GCHAT_SCOPES = [
9926
10699
  "https://www.googleapis.com/auth/chat.messages",
9927
10700
  "https://www.googleapis.com/auth/chat.spaces.readonly"
@@ -9960,16 +10733,16 @@ function gchatIntegration(config = {}) {
9960
10733
  tools: [...GCHAT_TOOLS],
9961
10734
  oauth,
9962
10735
  async onInit(_client) {
9963
- logger85.debug("Google Chat integration initialized");
10736
+ logger103.debug("Google Chat integration initialized");
9964
10737
  },
9965
10738
  async onAfterConnect(_client) {
9966
- logger85.debug("Google Chat integration connected");
10739
+ logger103.debug("Google Chat integration connected");
9967
10740
  }
9968
10741
  };
9969
10742
  }
9970
10743
  // src/integrations/shopify.ts
9971
10744
  init_logger();
9972
- var logger86 = createLogger("Shopify");
10745
+ var logger104 = createLogger("Shopify");
9973
10746
  var SHOPIFY_SCOPES = [
9974
10747
  "read_products",
9975
10748
  "write_products",
@@ -10018,16 +10791,16 @@ function shopifyIntegration(config = {}) {
10018
10791
  tools: [...SHOPIFY_TOOLS],
10019
10792
  oauth,
10020
10793
  async onInit(_client) {
10021
- logger86.debug("Shopify integration initialized");
10794
+ logger104.debug("Shopify integration initialized");
10022
10795
  },
10023
10796
  async onAfterConnect(_client) {
10024
- logger86.debug("Shopify integration connected");
10797
+ logger104.debug("Shopify integration connected");
10025
10798
  }
10026
10799
  };
10027
10800
  }
10028
10801
  // src/integrations/convex.ts
10029
10802
  init_logger();
10030
- var logger87 = createLogger("Convex");
10803
+ var logger105 = createLogger("Convex");
10031
10804
  var CONVEX_TOOLS = [
10032
10805
  "convex_management_token_details",
10033
10806
  "convex_management_list_projects",
@@ -10064,16 +10837,16 @@ function convexIntegration(options = {}) {
10064
10837
  return { Authorization: `Bearer ${accessToken}` };
10065
10838
  },
10066
10839
  async onInit(_client) {
10067
- logger87.debug("Convex integration initialized");
10840
+ logger105.debug("Convex integration initialized");
10068
10841
  },
10069
10842
  async onAfterConnect(_client) {
10070
- logger87.debug("Convex integration connected");
10843
+ logger105.debug("Convex integration connected");
10071
10844
  }
10072
10845
  };
10073
10846
  }
10074
10847
  // src/integrations/etoro.ts
10075
10848
  init_logger();
10076
- var logger88 = createLogger("eToro");
10849
+ var logger106 = createLogger("eToro");
10077
10850
  var ETORO_TOOLS = [
10078
10851
  "etoro_get_identity",
10079
10852
  "etoro_get_portfolio",
@@ -10103,16 +10876,16 @@ function etoroIntegration(options = {}) {
10103
10876
  };
10104
10877
  },
10105
10878
  async onInit(_client) {
10106
- logger88.debug("eToro integration initialized");
10879
+ logger106.debug("eToro integration initialized");
10107
10880
  },
10108
10881
  async onAfterConnect(_client) {
10109
- logger88.debug("eToro integration connected");
10882
+ logger106.debug("eToro integration connected");
10110
10883
  }
10111
10884
  };
10112
10885
  }
10113
10886
  // src/integrations/alpaca.ts
10114
10887
  init_logger();
10115
- var logger89 = createLogger("Alpaca");
10888
+ var logger107 = createLogger("Alpaca");
10116
10889
  var ALPACA_TOOLS = [
10117
10890
  "alpaca_get_account",
10118
10891
  "alpaca_list_positions",
@@ -10154,16 +10927,16 @@ function alpacaIntegration(options = {}) {
10154
10927
  return headers;
10155
10928
  },
10156
10929
  async onInit(_client) {
10157
- logger89.debug("Alpaca integration initialized");
10930
+ logger107.debug("Alpaca integration initialized");
10158
10931
  },
10159
10932
  async onAfterConnect(_client) {
10160
- logger89.debug("Alpaca integration connected");
10933
+ logger107.debug("Alpaca integration connected");
10161
10934
  }
10162
10935
  };
10163
10936
  }
10164
10937
  // src/integrations/neon.ts
10165
10938
  init_logger();
10166
- var logger90 = createLogger("Neon");
10939
+ var logger108 = createLogger("Neon");
10167
10940
  var NEON_TOOLS = [
10168
10941
  "neon_list_api_keys",
10169
10942
  "neon_create_api_key",
@@ -10203,10 +10976,10 @@ function neonIntegration(options = {}) {
10203
10976
  };
10204
10977
  },
10205
10978
  async onInit(_client) {
10206
- logger90.debug("Neon integration initialized");
10979
+ logger108.debug("Neon integration initialized");
10207
10980
  },
10208
10981
  async onAfterConnect(_client) {
10209
- logger90.debug("Neon integration connected");
10982
+ logger108.debug("Neon integration connected");
10210
10983
  }
10211
10984
  };
10212
10985
  }
@@ -10316,7 +11089,7 @@ function mercuryIntegration(options) {
10316
11089
  }
10317
11090
  // src/integrations/aws.ts
10318
11091
  init_logger();
10319
- var logger91 = createLogger("AWS");
11092
+ var logger109 = createLogger("AWS");
10320
11093
  var AWS_TOOLS = [
10321
11094
  "aws_sts_get_caller_identity",
10322
11095
  "aws_ec2_describe_regions",
@@ -10369,16 +11142,16 @@ function awsIntegration(options = {}) {
10369
11142
  };
10370
11143
  },
10371
11144
  async onInit(_client) {
10372
- logger91.debug("AWS integration initialized");
11145
+ logger109.debug("AWS integration initialized");
10373
11146
  },
10374
11147
  async onAfterConnect(_client) {
10375
- logger91.debug("AWS integration connected");
11148
+ logger109.debug("AWS integration connected");
10376
11149
  }
10377
11150
  };
10378
11151
  }
10379
11152
  // src/integrations/wix.ts
10380
11153
  init_logger();
10381
- var logger92 = createLogger("Wix");
11154
+ var logger110 = createLogger("Wix");
10382
11155
  var WIX_TOOLS = [
10383
11156
  "wix_query_products",
10384
11157
  "wix_get_product",
@@ -10411,10 +11184,10 @@ function wixIntegration(options = {}) {
10411
11184
  };
10412
11185
  },
10413
11186
  async onInit(_client) {
10414
- logger92.debug("Wix integration initialized");
11187
+ logger110.debug("Wix integration initialized");
10415
11188
  },
10416
11189
  async onAfterConnect(_client) {
10417
- logger92.debug("Wix integration connected");
11190
+ logger110.debug("Wix integration connected");
10418
11191
  }
10419
11192
  };
10420
11193
  }
@@ -10448,7 +11221,7 @@ function mailchimpIntegration(config = {}) {
10448
11221
  }
10449
11222
  // src/integrations/monday.ts
10450
11223
  init_logger();
10451
- var logger93 = createLogger("Monday");
11224
+ var logger111 = createLogger("Monday");
10452
11225
  var MONDAY_TOOLS = [
10453
11226
  "monday_me",
10454
11227
  "monday_list_workspaces",
@@ -10485,16 +11258,16 @@ function mondayIntegration(config = {}) {
10485
11258
  tools: [...MONDAY_TOOLS],
10486
11259
  oauth,
10487
11260
  async onInit(_client) {
10488
- logger93.debug("Monday.com integration initialized");
11261
+ logger111.debug("Monday.com integration initialized");
10489
11262
  },
10490
11263
  async onAfterConnect(_client) {
10491
- logger93.debug("Monday.com integration connected");
11264
+ logger111.debug("Monday.com integration connected");
10492
11265
  }
10493
11266
  };
10494
11267
  }
10495
11268
  // src/integrations/binance.ts
10496
11269
  init_logger();
10497
- var logger94 = createLogger("Binance");
11270
+ var logger112 = createLogger("Binance");
10498
11271
  var BINANCE_TOOLS = [
10499
11272
  "binance_ping",
10500
11273
  "binance_get_server_time",
@@ -10537,16 +11310,16 @@ function binanceIntegration(options = {}) {
10537
11310
  };
10538
11311
  },
10539
11312
  async onInit(_client) {
10540
- logger94.debug("Binance integration initialized");
11313
+ logger112.debug("Binance integration initialized");
10541
11314
  },
10542
11315
  async onAfterConnect(_client) {
10543
- logger94.debug("Binance integration connected");
11316
+ logger112.debug("Binance integration connected");
10544
11317
  }
10545
11318
  };
10546
11319
  }
10547
11320
  // src/integrations/canva.ts
10548
11321
  init_logger();
10549
- var logger95 = createLogger("Canva");
11322
+ var logger113 = createLogger("Canva");
10550
11323
  var CANVA_TOOLS = [
10551
11324
  "canva_get_me",
10552
11325
  "canva_get_profile",
@@ -10583,16 +11356,16 @@ function canvaIntegration(config = {}) {
10583
11356
  tools: [...CANVA_TOOLS],
10584
11357
  oauth,
10585
11358
  async onInit(_client) {
10586
- logger95.debug("Canva integration initialized");
11359
+ logger113.debug("Canva integration initialized");
10587
11360
  },
10588
11361
  async onAfterConnect(_client) {
10589
- logger95.debug("Canva integration connected");
11362
+ logger113.debug("Canva integration connected");
10590
11363
  }
10591
11364
  };
10592
11365
  }
10593
11366
  // src/integrations/clerk.ts
10594
11367
  init_logger();
10595
- var logger96 = createLogger("Clerk");
11368
+ var logger114 = createLogger("Clerk");
10596
11369
  var CLERK_TOOLS = [
10597
11370
  "clerk_list_users",
10598
11371
  "clerk_get_user",
@@ -10627,16 +11400,16 @@ function clerkIntegration(options = {}) {
10627
11400
  };
10628
11401
  },
10629
11402
  async onInit(_client) {
10630
- logger96.debug("Clerk integration initialized");
11403
+ logger114.debug("Clerk integration initialized");
10631
11404
  },
10632
11405
  async onAfterConnect(_client) {
10633
- logger96.debug("Clerk integration connected");
11406
+ logger114.debug("Clerk integration connected");
10634
11407
  }
10635
11408
  };
10636
11409
  }
10637
11410
  // src/integrations/clickup.ts
10638
11411
  init_logger();
10639
- var logger97 = createLogger("ClickUp");
11412
+ var logger115 = createLogger("ClickUp");
10640
11413
  var CLICKUP_TOOLS = [
10641
11414
  "clickup_get_authorized_user",
10642
11415
  "clickup_list_teams",
@@ -10672,16 +11445,16 @@ function clickupIntegration(config = {}) {
10672
11445
  tools: [...CLICKUP_TOOLS],
10673
11446
  oauth,
10674
11447
  async onInit(_client) {
10675
- logger97.debug("ClickUp integration initialized");
11448
+ logger115.debug("ClickUp integration initialized");
10676
11449
  },
10677
11450
  async onAfterConnect(_client) {
10678
- logger97.debug("ClickUp integration connected");
11451
+ logger115.debug("ClickUp integration connected");
10679
11452
  }
10680
11453
  };
10681
11454
  }
10682
11455
  // src/integrations/cloudflare.ts
10683
11456
  init_logger();
10684
- var logger98 = createLogger("Cloudflare");
11457
+ var logger116 = createLogger("Cloudflare");
10685
11458
  var CLOUDFLARE_TOOLS = [
10686
11459
  "cloudflare_verify_token",
10687
11460
  "cloudflare_get_user",
@@ -10720,10 +11493,10 @@ function cloudflareIntegration(config = {}) {
10720
11493
  return { Authorization: `Bearer ${apiToken.trim()}` };
10721
11494
  },
10722
11495
  async onInit(_client) {
10723
- logger98.debug("Cloudflare integration initialized (API token)");
11496
+ logger116.debug("Cloudflare integration initialized (API token)");
10724
11497
  },
10725
11498
  async onAfterConnect(_client) {
10726
- logger98.debug("Cloudflare integration connected");
11499
+ logger116.debug("Cloudflare integration connected");
10727
11500
  }
10728
11501
  };
10729
11502
  }
@@ -10749,16 +11522,16 @@ function cloudflareIntegration(config = {}) {
10749
11522
  tools: [...CLOUDFLARE_TOOLS],
10750
11523
  oauth,
10751
11524
  async onInit(_client) {
10752
- logger98.debug("Cloudflare integration initialized (OAuth)");
11525
+ logger116.debug("Cloudflare integration initialized (OAuth)");
10753
11526
  },
10754
11527
  async onAfterConnect(_client) {
10755
- logger98.debug("Cloudflare integration connected");
11528
+ logger116.debug("Cloudflare integration connected");
10756
11529
  }
10757
11530
  };
10758
11531
  }
10759
11532
  // src/integrations/instagram.ts
10760
11533
  init_logger();
10761
- var logger99 = createLogger("Instagram");
11534
+ var logger117 = createLogger("Instagram");
10762
11535
  var INSTAGRAM_SCOPES = [
10763
11536
  "pages_show_list",
10764
11537
  "pages_read_engagement",
@@ -10808,16 +11581,16 @@ function instagramIntegration(config = {}) {
10808
11581
  tools: [...INSTAGRAM_TOOLS],
10809
11582
  oauth,
10810
11583
  async onInit(_client) {
10811
- logger99.debug("Instagram integration initialized");
11584
+ logger117.debug("Instagram integration initialized");
10812
11585
  },
10813
11586
  async onAfterConnect(_client) {
10814
- logger99.debug("Instagram integration connected");
11587
+ logger117.debug("Instagram integration connected");
10815
11588
  }
10816
11589
  };
10817
11590
  }
10818
11591
  // src/integrations/facebook.ts
10819
11592
  init_logger();
10820
- var logger100 = createLogger("Facebook");
11593
+ var logger118 = createLogger("Facebook");
10821
11594
  var FACEBOOK_SCOPES = [
10822
11595
  "public_profile",
10823
11596
  "email",
@@ -10863,10 +11636,10 @@ function facebookIntegration(config = {}) {
10863
11636
  tools: [...FACEBOOK_TOOLS],
10864
11637
  oauth,
10865
11638
  async onInit(_client) {
10866
- logger100.debug("Facebook integration initialized");
11639
+ logger118.debug("Facebook integration initialized");
10867
11640
  },
10868
11641
  async onAfterConnect(_client) {
10869
- logger100.debug("Facebook integration connected");
11642
+ logger118.debug("Facebook integration connected");
10870
11643
  }
10871
11644
  };
10872
11645
  }
@@ -10897,7 +11670,7 @@ function ga4Integration(config = {}) {
10897
11670
  }
10898
11671
  // src/integrations/resend.ts
10899
11672
  init_logger();
10900
- var logger101 = createLogger("Resend");
11673
+ var logger119 = createLogger("Resend");
10901
11674
  var RESEND_TOOLS = [
10902
11675
  "resend_list_domains",
10903
11676
  "resend_get_domain",
@@ -10922,10 +11695,10 @@ function resendIntegration(options = {}) {
10922
11695
  return { Authorization: `Bearer ${apiKey}` };
10923
11696
  },
10924
11697
  async onInit(_client) {
10925
- logger101.debug("Resend integration initialized");
11698
+ logger119.debug("Resend integration initialized");
10926
11699
  },
10927
11700
  async onAfterConnect(_client) {
10928
- logger101.debug("Resend integration connected");
11701
+ logger119.debug("Resend integration connected");
10929
11702
  }
10930
11703
  };
10931
11704
  }
@@ -10949,7 +11722,7 @@ function tldrawIntegration(options = {}) {
10949
11722
  }
10950
11723
  // src/integrations/workday.ts
10951
11724
  init_logger();
10952
- var logger102 = createLogger("Workday");
11725
+ var logger120 = createLogger("Workday");
10953
11726
  var WORKDAY_TOOLS = [
10954
11727
  "workday_list_workers",
10955
11728
  "workday_get_worker"
@@ -10974,16 +11747,16 @@ function workdayIntegration(config = {}) {
10974
11747
  tools: [...WORKDAY_TOOLS],
10975
11748
  oauth,
10976
11749
  async onInit(_client) {
10977
- logger102.debug("Workday integration initialized");
11750
+ logger120.debug("Workday integration initialized");
10978
11751
  },
10979
11752
  async onAfterConnect(_client) {
10980
- logger102.debug("Workday integration connected");
11753
+ logger120.debug("Workday integration connected");
10981
11754
  }
10982
11755
  };
10983
11756
  }
10984
11757
  // src/integrations/workos.ts
10985
11758
  init_logger();
10986
- var logger103 = createLogger("WorkOS");
11759
+ var logger121 = createLogger("WorkOS");
10987
11760
  var WORKOS_TOOLS = [
10988
11761
  "workos_list_organizations",
10989
11762
  "workos_get_organization",
@@ -11016,10 +11789,10 @@ function workosIntegration(options = {}) {
11016
11789
  };
11017
11790
  },
11018
11791
  async onInit(_client) {
11019
- logger103.debug("WorkOS integration initialized");
11792
+ logger121.debug("WorkOS integration initialized");
11020
11793
  },
11021
11794
  async onAfterConnect(_client) {
11022
- logger103.debug("WorkOS integration connected");
11795
+ logger121.debug("WorkOS integration connected");
11023
11796
  }
11024
11797
  };
11025
11798
  }
@@ -17226,7 +17999,7 @@ function convertJsonSchemaToGoogleSchema(jsonSchema, TypeEnum) {
17226
17999
  }
17227
18000
  // src/server.ts
17228
18001
  var SERVER_LOG_CONTEXT3 = "server";
17229
- var logger106 = createLogger("MCPServer", SERVER_LOG_CONTEXT3);
18002
+ var logger124 = createLogger("MCPServer", SERVER_LOG_CONTEXT3);
17230
18003
  async function refreshTokenIfNeeded(provider, tokenData, providers, config, context) {
17231
18004
  const credentials = providers[provider];
17232
18005
  if (!credentials || !config.serverUrl) {
@@ -17248,9 +18021,9 @@ async function refreshTokenIfNeeded(provider, tokenData, providers, config, cont
17248
18021
  });
17249
18022
  } catch (err) {
17250
18023
  if (err instanceof RefreshRejectedError) {
17251
- logger106.warn(`[Token Refresh] Refresh token rejected for ${provider}; integration marked disconnected.`);
18024
+ logger124.warn(`[Token Refresh] Refresh token rejected for ${provider}; integration marked disconnected.`);
17252
18025
  } else {
17253
- logger106.warn(`[Token Refresh] Failed to refresh ${provider} token: ${err.message}`);
18026
+ logger124.warn(`[Token Refresh] Failed to refresh ${provider} token: ${err.message}`);
17254
18027
  }
17255
18028
  return tokenData.accessToken;
17256
18029
  }
@@ -17360,7 +18133,7 @@ function createMCPServer(config) {
17360
18133
  if (integration.oauth) {
17361
18134
  const { clientId, clientSecret, redirectUri: integrationRedirectUri, config: oauthConfig } = integration.oauth;
17362
18135
  if (!clientId || !clientSecret) {
17363
- logger106.warn(`Warning: Integration "${integration.id}" is missing OAuth credentials. ` + `Provide clientId and clientSecret in the integration configuration.`);
18136
+ logger124.warn(`Warning: Integration "${integration.id}" is missing OAuth credentials. ` + `Provide clientId and clientSecret in the integration configuration.`);
17364
18137
  return integration;
17365
18138
  }
17366
18139
  const redirectUri = integrationRedirectUri || config.redirectUri || getDefaultRedirectUri();
@@ -17540,7 +18313,7 @@ function createMCPServer(config) {
17540
18313
  }
17541
18314
  return response2;
17542
18315
  } catch (error) {
17543
- logger106.error("[MCP Tool Call] Error:", error);
18316
+ logger124.error("[MCP Tool Call] Error:", error);
17544
18317
  return Response.json({ error: error.message || "Failed to execute tool call" }, { status: error.statusCode || 500 });
17545
18318
  }
17546
18319
  }
@@ -17589,7 +18362,7 @@ function createMCPServer(config) {
17589
18362
  });
17590
18363
  return Response.json(result, { status: result.success ? 200 : 500 });
17591
18364
  } catch (error) {
17592
- logger106.error("[Code Mode] Error:", error);
18365
+ logger124.error("[Code Mode] Error:", error);
17593
18366
  return Response.json({ error: error?.message || "Failed to execute code" }, { status: 500 });
17594
18367
  }
17595
18368
  }
@@ -17647,7 +18420,7 @@ function createMCPServer(config) {
17647
18420
  error: executionResult.error
17648
18421
  });
17649
18422
  } catch (error) {
17650
- logger106.error("[Trigger Notify] Error:", error);
18423
+ logger124.error("[Trigger Notify] Error:", error);
17651
18424
  return Response.json({ error: error.message || "Failed to execute trigger" }, { status: 500 });
17652
18425
  }
17653
18426
  }
@@ -17711,7 +18484,7 @@ function createMCPServer(config) {
17711
18484
  })
17712
18485
  });
17713
18486
  } catch (scheduleError) {
17714
- logger106.error("[Trigger] Failed to register with scheduler:", scheduleError);
18487
+ logger124.error("[Trigger] Failed to register with scheduler:", scheduleError);
17715
18488
  }
17716
18489
  return Response.json(created, { status: 201 });
17717
18490
  }
@@ -17746,7 +18519,7 @@ function createMCPServer(config) {
17746
18519
  body: JSON.stringify({ triggerId })
17747
18520
  });
17748
18521
  } catch (error) {
17749
- logger106.error("[Trigger] Failed to pause in scheduler:", error);
18522
+ logger124.error("[Trigger] Failed to pause in scheduler:", error);
17750
18523
  }
17751
18524
  return Response.json(updated);
17752
18525
  } else if (subAction === "resume" && method === "POST") {
@@ -17774,7 +18547,7 @@ function createMCPServer(config) {
17774
18547
  body: JSON.stringify({ triggerId })
17775
18548
  });
17776
18549
  } catch (error) {
17777
- logger106.error("[Trigger] Failed to resume in scheduler:", error);
18550
+ logger124.error("[Trigger] Failed to resume in scheduler:", error);
17778
18551
  }
17779
18552
  return Response.json(updated);
17780
18553
  } else if (subAction === "run" && method === "POST") {
@@ -17845,7 +18618,7 @@ function createMCPServer(config) {
17845
18618
  })
17846
18619
  });
17847
18620
  } catch (error) {
17848
- logger106.error("[Trigger] Failed to update scheduler:", error);
18621
+ logger124.error("[Trigger] Failed to update scheduler:", error);
17849
18622
  }
17850
18623
  }
17851
18624
  return Response.json(updated);
@@ -17862,14 +18635,14 @@ function createMCPServer(config) {
17862
18635
  body: JSON.stringify({ triggerId })
17863
18636
  });
17864
18637
  } catch (error) {
17865
- logger106.error("[Trigger] Failed to unregister from scheduler:", error);
18638
+ logger124.error("[Trigger] Failed to unregister from scheduler:", error);
17866
18639
  }
17867
18640
  return new Response(null, { status: 204 });
17868
18641
  }
17869
18642
  }
17870
18643
  return Response.json({ error: "Invalid trigger route or method" }, { status: 404 });
17871
18644
  } catch (error) {
17872
- logger106.error("[Trigger] Error:", error);
18645
+ logger124.error("[Trigger] Error:", error);
17873
18646
  return Response.json({ error: error.message || "Failed to process trigger request" }, { status: error.statusCode || 500 });
17874
18647
  }
17875
18648
  }
@@ -17895,11 +18668,11 @@ function createMCPServer(config) {
17895
18668
  const errorRedirectUrl = "/auth-error";
17896
18669
  if (error) {
17897
18670
  const errorMsg = errorDescription || error;
17898
- logger106.error("[OAuth Redirect] Error:", errorMsg);
18671
+ logger124.error("[OAuth Redirect] Error:", errorMsg);
17899
18672
  return Response.redirect(new URL(`${errorRedirectUrl}?error=${encodeURIComponent(errorMsg)}`, webRequest.url));
17900
18673
  }
17901
18674
  if (!code || !state) {
17902
- logger106.error("[OAuth Redirect] Missing code or state parameter");
18675
+ logger124.error("[OAuth Redirect] Missing code or state parameter");
17903
18676
  return Response.redirect(new URL(`${errorRedirectUrl}?error=${encodeURIComponent("Invalid OAuth callback")}`, webRequest.url));
17904
18677
  }
17905
18678
  let returnUrl = defaultRedirectUrl;
@@ -17976,7 +18749,7 @@ function createMCPServer(config) {
17976
18749
  frontendUrl.hash = `oauth_callback=${encodeURIComponent(JSON.stringify({ code, state, tokenData }))}`;
17977
18750
  return Response.redirect(frontendUrl);
17978
18751
  } catch (error2) {
17979
- logger106.error("[OAuth Backend Callback] Error:", error2);
18752
+ logger124.error("[OAuth Backend Callback] Error:", error2);
17980
18753
  return Response.redirect(new URL(`${errorRedirectUrl}?error=${encodeURIComponent(error2.message || "Failed to exchange token")}`, webRequest.url));
17981
18754
  }
17982
18755
  } else {
@@ -18256,10 +19029,19 @@ init_executor();
18256
19029
  init_tool_builder();
18257
19030
  export {
18258
19031
  zoomIntegration,
19032
+ zohoProjectsIntegration,
19033
+ zohoMailIntegration,
19034
+ zohoInvoiceIntegration,
19035
+ zohoDeskIntegration,
19036
+ zohoCrmIntegration,
19037
+ zohoCampaignsIntegration,
19038
+ zohoBooksIntegration,
19039
+ zohoAnalyticsIntegration,
18259
19040
  zendeskIntegration,
18260
19041
  zapierIntegration,
18261
19042
  youtubeIntegration,
18262
19043
  xeroIntegration,
19044
+ xIntegration,
18263
19045
  workosIntegration,
18264
19046
  workdayIntegration,
18265
19047
  wordIntegration,
@@ -18269,6 +19051,7 @@ export {
18269
19051
  vercelIntegration,
18270
19052
  upstashIntegration,
18271
19053
  typeformIntegration,
19054
+ twitchIntegration,
18272
19055
  trelloIntegration,
18273
19056
  todoistIntegration,
18274
19057
  toWebRequest,
@@ -18289,6 +19072,7 @@ export {
18289
19072
  squareIntegration,
18290
19073
  spotifyIntegration,
18291
19074
  smartthingsIntegration,
19075
+ smartsheetIntegration,
18292
19076
  slackIntegration,
18293
19077
  shopifyIntegration,
18294
19078
  sharepointIntegration,
@@ -18307,6 +19091,8 @@ export {
18307
19091
  polarIntegration,
18308
19092
  plannerIntegration,
18309
19093
  planetscaleIntegration,
19094
+ pipedriveIntegration,
19095
+ pinterestIntegration,
18310
19096
  phantomIntegration,
18311
19097
  paypalIntegration,
18312
19098
  paperIntegration,
@@ -18317,6 +19103,7 @@ export {
18317
19103
  netlifyIntegration,
18318
19104
  neonIntegration,
18319
19105
  mondayIntegration,
19106
+ miroIntegration,
18320
19107
  mercuryIntegration,
18321
19108
  mailchimpIntegration,
18322
19109
  linkedinIntegration,
@@ -18331,6 +19118,7 @@ export {
18331
19118
  gslidesIntegration,
18332
19119
  gsheetsIntegration,
18333
19120
  granolaIntegration,
19121
+ googleAdsIntegration,
18334
19122
  gmeetIntegration,
18335
19123
  gmailIntegration,
18336
19124
  gkeepIntegration,
@@ -18350,6 +19138,7 @@ export {
18350
19138
  gcalIntegration,
18351
19139
  ga4Integration,
18352
19140
  fromNodeHeaders,
19141
+ freshserviceIntegration,
18353
19142
  figmaIntegration,
18354
19143
  facebookIntegration,
18355
19144
  executeSandboxCode,
@@ -18357,7 +19146,9 @@ export {
18357
19146
  excelIntegration,
18358
19147
  etoroIntegration,
18359
19148
  encodeRedisCloudBearerToken,
19149
+ ebayIntegration,
18360
19150
  dropboxIntegration,
19151
+ docusignIntegration,
18361
19152
  discordIntegration,
18362
19153
  datadogIntegration,
18363
19154
  databricksIntegration,