integrate-sdk 0.9.49-dev.0 → 0.9.51-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.
Files changed (88) hide show
  1. package/dist/adapters/auto-routes.js +77 -5
  2. package/dist/adapters/base-handler.js +77 -5
  3. package/dist/adapters/index.js +77 -5
  4. package/dist/adapters/nextjs.js +77 -5
  5. package/dist/adapters/solid-start.js +77 -5
  6. package/dist/adapters/svelte-kit.js +77 -5
  7. package/dist/index.js +1101 -253
  8. package/dist/oauth.js +77 -5
  9. package/dist/server.js +81 -9
  10. package/dist/src/client.d.ts +136 -1
  11. package/dist/src/client.d.ts.map +1 -1
  12. package/dist/src/index.d.ts +36 -0
  13. package/dist/src/index.d.ts.map +1 -1
  14. package/dist/src/integrations/docusign-client.d.ts +41 -0
  15. package/dist/src/integrations/docusign-client.d.ts.map +1 -0
  16. package/dist/src/integrations/docusign.d.ts +16 -0
  17. package/dist/src/integrations/docusign.d.ts.map +1 -0
  18. package/dist/src/integrations/ebay-client.d.ts +39 -0
  19. package/dist/src/integrations/ebay-client.d.ts.map +1 -0
  20. package/dist/src/integrations/ebay.d.ts +15 -0
  21. package/dist/src/integrations/ebay.d.ts.map +1 -0
  22. package/dist/src/integrations/freshservice-client.d.ts +48 -0
  23. package/dist/src/integrations/freshservice-client.d.ts.map +1 -0
  24. package/dist/src/integrations/freshservice.d.ts +15 -0
  25. package/dist/src/integrations/freshservice.d.ts.map +1 -0
  26. package/dist/src/integrations/google_ads-client.d.ts +35 -0
  27. package/dist/src/integrations/google_ads-client.d.ts.map +1 -0
  28. package/dist/src/integrations/google_ads.d.ts +16 -0
  29. package/dist/src/integrations/google_ads.d.ts.map +1 -0
  30. package/dist/src/integrations/library-metadata.d.ts +1 -1
  31. package/dist/src/integrations/library-metadata.d.ts.map +1 -1
  32. package/dist/src/integrations/miro-client.d.ts +33 -0
  33. package/dist/src/integrations/miro-client.d.ts.map +1 -0
  34. package/dist/src/integrations/miro.d.ts +14 -0
  35. package/dist/src/integrations/miro.d.ts.map +1 -0
  36. package/dist/src/integrations/pinterest-client.d.ts +33 -0
  37. package/dist/src/integrations/pinterest-client.d.ts.map +1 -0
  38. package/dist/src/integrations/pinterest.d.ts +14 -0
  39. package/dist/src/integrations/pinterest.d.ts.map +1 -0
  40. package/dist/src/integrations/pipedrive-client.d.ts +48 -0
  41. package/dist/src/integrations/pipedrive-client.d.ts.map +1 -0
  42. package/dist/src/integrations/pipedrive.d.ts +14 -0
  43. package/dist/src/integrations/pipedrive.d.ts.map +1 -0
  44. package/dist/src/integrations/smartsheet-client.d.ts +37 -0
  45. package/dist/src/integrations/smartsheet-client.d.ts.map +1 -0
  46. package/dist/src/integrations/smartsheet.d.ts +14 -0
  47. package/dist/src/integrations/smartsheet.d.ts.map +1 -0
  48. package/dist/src/integrations/twitch-client.d.ts +49 -0
  49. package/dist/src/integrations/twitch-client.d.ts.map +1 -0
  50. package/dist/src/integrations/twitch.d.ts +14 -0
  51. package/dist/src/integrations/twitch.d.ts.map +1 -0
  52. package/dist/src/integrations/x-client.d.ts +43 -0
  53. package/dist/src/integrations/x-client.d.ts.map +1 -0
  54. package/dist/src/integrations/x.d.ts +14 -0
  55. package/dist/src/integrations/x.d.ts.map +1 -0
  56. package/dist/src/integrations/zoho_analytics-client.d.ts +25 -0
  57. package/dist/src/integrations/zoho_analytics-client.d.ts.map +1 -0
  58. package/dist/src/integrations/zoho_analytics.d.ts +15 -0
  59. package/dist/src/integrations/zoho_analytics.d.ts.map +1 -0
  60. package/dist/src/integrations/zoho_books-client.d.ts +43 -0
  61. package/dist/src/integrations/zoho_books-client.d.ts.map +1 -0
  62. package/dist/src/integrations/zoho_books.d.ts +15 -0
  63. package/dist/src/integrations/zoho_books.d.ts.map +1 -0
  64. package/dist/src/integrations/zoho_campaigns-client.d.ts +24 -0
  65. package/dist/src/integrations/zoho_campaigns-client.d.ts.map +1 -0
  66. package/dist/src/integrations/zoho_campaigns.d.ts +15 -0
  67. package/dist/src/integrations/zoho_campaigns.d.ts.map +1 -0
  68. package/dist/src/integrations/zoho_crm-client.d.ts +39 -0
  69. package/dist/src/integrations/zoho_crm-client.d.ts.map +1 -0
  70. package/dist/src/integrations/zoho_crm.d.ts +15 -0
  71. package/dist/src/integrations/zoho_crm.d.ts.map +1 -0
  72. package/dist/src/integrations/zoho_desk-client.d.ts +31 -0
  73. package/dist/src/integrations/zoho_desk-client.d.ts.map +1 -0
  74. package/dist/src/integrations/zoho_desk.d.ts +15 -0
  75. package/dist/src/integrations/zoho_desk.d.ts.map +1 -0
  76. package/dist/src/integrations/zoho_invoice-client.d.ts +41 -0
  77. package/dist/src/integrations/zoho_invoice-client.d.ts.map +1 -0
  78. package/dist/src/integrations/zoho_invoice.d.ts +15 -0
  79. package/dist/src/integrations/zoho_invoice.d.ts.map +1 -0
  80. package/dist/src/integrations/zoho_mail-client.d.ts +31 -0
  81. package/dist/src/integrations/zoho_mail-client.d.ts.map +1 -0
  82. package/dist/src/integrations/zoho_mail.d.ts +15 -0
  83. package/dist/src/integrations/zoho_mail.d.ts.map +1 -0
  84. package/dist/src/integrations/zoho_projects-client.d.ts +37 -0
  85. package/dist/src/integrations/zoho_projects-client.d.ts.map +1 -0
  86. package/dist/src/integrations/zoho_projects.d.ts +15 -0
  87. package/dist/src/integrations/zoho_projects.d.ts.map +1 -0
  88. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -804,8 +804,11 @@ var MCPMethod;
804
804
  var INTEGRATION_CATEGORY_ORDER = [
805
805
  "Analytics",
806
806
  "Productivity",
807
+ "Lifestyle",
807
808
  "Business",
808
809
  "Finance",
810
+ "Marketing",
811
+ "Entertainment",
809
812
  "Communication",
810
813
  "Engineering",
811
814
  "Infrastructure",
@@ -814,6 +817,78 @@ var INTEGRATION_CATEGORY_ORDER = [
814
817
  "Other"
815
818
  ];
816
819
  var INTEGRATION_LIBRARY_METADATA = {
820
+ google_ads: {
821
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
822
+ category: "Marketing"
823
+ },
824
+ pinterest: {
825
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
826
+ category: "Social Media"
827
+ },
828
+ twitch: {
829
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
830
+ category: "Entertainment"
831
+ },
832
+ x: {
833
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
834
+ category: "Social Media"
835
+ },
836
+ ebay: {
837
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
838
+ category: "Business"
839
+ },
840
+ miro: {
841
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
842
+ category: "Productivity"
843
+ },
844
+ smartsheet: {
845
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
846
+ category: "Productivity"
847
+ },
848
+ docusign: {
849
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
850
+ category: "Business"
851
+ },
852
+ pipedrive: {
853
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
854
+ category: "Business"
855
+ },
856
+ freshservice: {
857
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
858
+ category: "Business"
859
+ },
860
+ zoho_crm: {
861
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
862
+ category: "Business"
863
+ },
864
+ zoho_mail: {
865
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
866
+ category: "Communication"
867
+ },
868
+ zoho_desk: {
869
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
870
+ category: "Business"
871
+ },
872
+ zoho_books: {
873
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
874
+ category: "Finance"
875
+ },
876
+ zoho_projects: {
877
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
878
+ category: "Productivity"
879
+ },
880
+ zoho_campaigns: {
881
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
882
+ category: "Marketing"
883
+ },
884
+ zoho_analytics: {
885
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
886
+ category: "Analytics"
887
+ },
888
+ zoho_invoice: {
889
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
890
+ category: "Finance"
891
+ },
817
892
  airtable: {
818
893
  description: "Manage Airtable bases, tables, and records",
819
894
  category: "Business"
@@ -1000,15 +1075,15 @@ var INTEGRATION_LIBRARY_METADATA = {
1000
1075
  },
1001
1076
  smartthings: {
1002
1077
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
1003
- category: "Other"
1078
+ category: "Lifestyle"
1004
1079
  },
1005
1080
  spotify: {
1006
1081
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
1007
- category: "Other"
1082
+ category: "Entertainment"
1008
1083
  },
1009
1084
  strava: {
1010
1085
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
1011
- category: "Other"
1086
+ category: "Lifestyle"
1012
1087
  },
1013
1088
  square: {
1014
1089
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -1056,7 +1131,7 @@ var INTEGRATION_LIBRARY_METADATA = {
1056
1131
  },
1057
1132
  youtube: {
1058
1133
  description: "Search and access YouTube videos and channels",
1059
- category: "Social Media"
1134
+ category: "Entertainment"
1060
1135
  },
1061
1136
  zoom: {
1062
1137
  description: "Manage Zoom user profile and meetings",
@@ -1200,7 +1275,7 @@ var INTEGRATION_LIBRARY_METADATA = {
1200
1275
  },
1201
1276
  tiktok: {
1202
1277
  description: "Manage TikTok videos, account info, and creator analytics",
1203
- category: "Social Media"
1278
+ category: "Entertainment"
1204
1279
  },
1205
1280
  tldraw: {
1206
1281
  description: "Create and manage tldraw collaborative whiteboards",
@@ -5273,7 +5348,7 @@ function spotifyIntegration(config = {}) {
5273
5348
  name: "Spotify",
5274
5349
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/spotify.png",
5275
5350
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
5276
- category: "Other",
5351
+ category: "Entertainment",
5277
5352
  tools: [...SPOTIFY_TOOLS],
5278
5353
  authType: "oauth",
5279
5354
  oauth,
@@ -5335,7 +5410,7 @@ function stravaIntegration(config = {}) {
5335
5410
  name: "Strava",
5336
5411
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/strava.png",
5337
5412
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
5338
- category: "Other",
5413
+ category: "Lifestyle",
5339
5414
  tools: [...STRAVA_TOOLS],
5340
5415
  authType: "oauth",
5341
5416
  oauth,
@@ -5655,7 +5730,7 @@ function smartthingsIntegration(config = {}) {
5655
5730
  name: "Samsung SmartThings",
5656
5731
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/smartthings.png",
5657
5732
  description: "Manage SmartThings locations, rooms, devices, commands, scenes, and rules",
5658
- category: "Other",
5733
+ category: "Lifestyle",
5659
5734
  tools: [...SMARTTHINGS_TOOLS],
5660
5735
  authType: accessToken ? "apiKey" : "oauth",
5661
5736
  oauth,
@@ -5673,8 +5748,763 @@ function smartthingsIntegration(config = {}) {
5673
5748
  }
5674
5749
  };
5675
5750
  }
5751
+ // src/integrations/google_ads.ts
5752
+ var logger26 = createLogger("Google Ads");
5753
+ var GOOGLE_ADS_SCOPES = [
5754
+ "https://www.googleapis.com/auth/adwords"
5755
+ ];
5756
+ var GOOGLE_ADS_TOOLS = [
5757
+ "google_ads_list_accessible_customers",
5758
+ "google_ads_search",
5759
+ "google_ads_list_campaigns",
5760
+ "google_ads_list_ad_groups",
5761
+ "google_ads_list_ads",
5762
+ "google_ads_list_keywords",
5763
+ "google_ads_list_conversions"
5764
+ ];
5765
+ function googleAdsIntegration(config = {}) {
5766
+ 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 };
5767
+ return {
5768
+ id: "google_ads",
5769
+ name: "Google Ads",
5770
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_ads.png",
5771
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
5772
+ category: "Marketing",
5773
+ tools: [...GOOGLE_ADS_TOOLS],
5774
+ authType: "oauth",
5775
+ oauth,
5776
+ getHeaders() {
5777
+ const developerToken = config.developerToken ?? getEnv("GOOGLE_ADS_DEVELOPER_TOKEN");
5778
+ const headers = {};
5779
+ if (developerToken)
5780
+ headers["X-Google-Ads-Developer-Token"] = developerToken;
5781
+ if (config.loginCustomerId)
5782
+ headers["X-Google-Ads-Login-Customer-Id"] = config.loginCustomerId;
5783
+ return headers;
5784
+ },
5785
+ async onInit() {
5786
+ logger26.debug("Google Ads integration initialized");
5787
+ },
5788
+ async onAfterConnect() {
5789
+ logger26.debug("Google Ads integration connected");
5790
+ }
5791
+ };
5792
+ }
5793
+ // src/integrations/pinterest.ts
5794
+ var logger27 = createLogger("Pinterest");
5795
+ var PINTEREST_SCOPES = [
5796
+ "boards:read",
5797
+ "boards:write",
5798
+ "pins:read",
5799
+ "pins:write",
5800
+ "user_accounts:read",
5801
+ "ads:read",
5802
+ "ads:write"
5803
+ ];
5804
+ var PINTEREST_TOOLS = [
5805
+ "pinterest_get_user",
5806
+ "pinterest_list_boards",
5807
+ "pinterest_get_board",
5808
+ "pinterest_create_pin",
5809
+ "pinterest_get_pin",
5810
+ "pinterest_search_pins",
5811
+ "pinterest_list_ad_accounts",
5812
+ "pinterest_list_campaigns"
5813
+ ];
5814
+ function pinterestIntegration(config = {}) {
5815
+ 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 };
5816
+ return {
5817
+ id: "pinterest",
5818
+ name: "Pinterest",
5819
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/pinterest.png",
5820
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
5821
+ category: "Social Media",
5822
+ tools: [...PINTEREST_TOOLS],
5823
+ authType: "oauth",
5824
+ oauth,
5825
+ async onInit() {
5826
+ logger27.debug("Pinterest integration initialized");
5827
+ },
5828
+ async onAfterConnect() {
5829
+ logger27.debug("Pinterest integration connected");
5830
+ }
5831
+ };
5832
+ }
5833
+ // src/integrations/twitch.ts
5834
+ var logger28 = createLogger("Twitch");
5835
+ var TWITCH_SCOPES = [
5836
+ "user:read:email",
5837
+ "channel:read:subscriptions",
5838
+ "clips:edit",
5839
+ "channel:manage:broadcast",
5840
+ "user:read:follows"
5841
+ ];
5842
+ var TWITCH_TOOLS = [
5843
+ "twitch_get_users",
5844
+ "twitch_get_streams",
5845
+ "twitch_get_channels",
5846
+ "twitch_modify_channel",
5847
+ "twitch_create_clip",
5848
+ "twitch_get_videos",
5849
+ "twitch_get_games",
5850
+ "twitch_get_channel_followers",
5851
+ "twitch_get_broadcaster_subscriptions"
5852
+ ];
5853
+ function twitchIntegration(config = {}) {
5854
+ 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 };
5855
+ return {
5856
+ id: "twitch",
5857
+ name: "Twitch",
5858
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/twitch.png",
5859
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
5860
+ category: "Entertainment",
5861
+ tools: [...TWITCH_TOOLS],
5862
+ authType: "oauth",
5863
+ oauth,
5864
+ getHeaders() {
5865
+ const clientId = config.clientId ?? getEnv("TWITCH_CLIENT_ID");
5866
+ const headers = {};
5867
+ if (clientId)
5868
+ headers["X-Twitch-Client-Id"] = clientId;
5869
+ return headers;
5870
+ },
5871
+ async onInit() {
5872
+ logger28.debug("Twitch integration initialized");
5873
+ },
5874
+ async onAfterConnect() {
5875
+ logger28.debug("Twitch integration connected");
5876
+ }
5877
+ };
5878
+ }
5879
+ // src/integrations/x.ts
5880
+ var logger29 = createLogger("X");
5881
+ var X_SCOPES = [
5882
+ "tweet.read",
5883
+ "tweet.write",
5884
+ "users.read",
5885
+ "follows.read",
5886
+ "follows.write",
5887
+ "like.read",
5888
+ "like.write",
5889
+ "bookmark.read",
5890
+ "bookmark.write",
5891
+ "offline.access"
5892
+ ];
5893
+ var X_TOOLS = [
5894
+ "x_get_me",
5895
+ "x_get_user",
5896
+ "x_search_posts",
5897
+ "x_get_user_timeline",
5898
+ "x_create_post",
5899
+ "x_delete_post",
5900
+ "x_like_post",
5901
+ "x_get_bookmarks",
5902
+ "x_follow_user"
5903
+ ];
5904
+ function xIntegration(config = {}) {
5905
+ 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 };
5906
+ return {
5907
+ id: "x",
5908
+ name: "X",
5909
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/x.png",
5910
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
5911
+ category: "Social Media",
5912
+ tools: [...X_TOOLS],
5913
+ authType: "oauth",
5914
+ oauth,
5915
+ async onInit() {
5916
+ logger29.debug("X integration initialized");
5917
+ },
5918
+ async onAfterConnect() {
5919
+ logger29.debug("X integration connected");
5920
+ }
5921
+ };
5922
+ }
5923
+ // src/integrations/ebay.ts
5924
+ var logger30 = createLogger("eBay");
5925
+ var EBAY_SCOPES = [
5926
+ "https://api.ebay.com/oauth/api_scope",
5927
+ "https://api.ebay.com/oauth/api_scope/sell.inventory",
5928
+ "https://api.ebay.com/oauth/api_scope/sell.fulfillment",
5929
+ "https://api.ebay.com/oauth/api_scope/sell.account"
5930
+ ];
5931
+ var EBAY_TOOLS = [
5932
+ "ebay_search_items",
5933
+ "ebay_get_item",
5934
+ "ebay_get_privileges",
5935
+ "ebay_list_inventory_items",
5936
+ "ebay_create_or_replace_inventory_item",
5937
+ "ebay_list_offers",
5938
+ "ebay_create_offer",
5939
+ "ebay_list_orders",
5940
+ "ebay_get_order"
5941
+ ];
5942
+ function ebayIntegration(config = {}) {
5943
+ 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 };
5944
+ return {
5945
+ id: "ebay",
5946
+ name: "eBay",
5947
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/ebay.png",
5948
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
5949
+ category: "Business",
5950
+ tools: [...EBAY_TOOLS],
5951
+ authType: "oauth",
5952
+ oauth,
5953
+ getHeaders() {
5954
+ const headers = {};
5955
+ if (config.environment)
5956
+ headers["X-Ebay-Environment"] = config.environment;
5957
+ return headers;
5958
+ },
5959
+ async onInit() {
5960
+ logger30.debug("eBay integration initialized");
5961
+ },
5962
+ async onAfterConnect() {
5963
+ logger30.debug("eBay integration connected");
5964
+ }
5965
+ };
5966
+ }
5967
+ // src/integrations/miro.ts
5968
+ var logger31 = createLogger("Miro");
5969
+ var MIRO_SCOPES = [
5970
+ "boards:read",
5971
+ "boards:write",
5972
+ "identity:read",
5973
+ "team:read"
5974
+ ];
5975
+ var MIRO_TOOLS = [
5976
+ "miro_get_current_user",
5977
+ "miro_list_boards",
5978
+ "miro_get_board",
5979
+ "miro_create_board",
5980
+ "miro_list_board_items",
5981
+ "miro_create_board_item",
5982
+ "miro_list_comments",
5983
+ "miro_list_board_members"
5984
+ ];
5985
+ function miroIntegration(config = {}) {
5986
+ 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 };
5987
+ return {
5988
+ id: "miro",
5989
+ name: "Miro",
5990
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/miro.png",
5991
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
5992
+ category: "Productivity",
5993
+ tools: [...MIRO_TOOLS],
5994
+ authType: "oauth",
5995
+ oauth,
5996
+ async onInit() {
5997
+ logger31.debug("Miro integration initialized");
5998
+ },
5999
+ async onAfterConnect() {
6000
+ logger31.debug("Miro integration connected");
6001
+ }
6002
+ };
6003
+ }
6004
+ // src/integrations/smartsheet.ts
6005
+ var logger32 = createLogger("Smartsheet");
6006
+ var SMARTSHEET_SCOPES = [
6007
+ "READ_SHEETS",
6008
+ "WRITE_SHEETS",
6009
+ "ADMIN_SHEETS",
6010
+ "READ_USERS",
6011
+ "READ_WORKSPACES",
6012
+ "ADMIN_WORKSPACES"
6013
+ ];
6014
+ var SMARTSHEET_TOOLS = [
6015
+ "smartsheet_list_sheets",
6016
+ "smartsheet_get_sheet",
6017
+ "smartsheet_create_sheet",
6018
+ "smartsheet_add_rows",
6019
+ "smartsheet_update_rows",
6020
+ "smartsheet_list_workspaces",
6021
+ "smartsheet_list_reports",
6022
+ "smartsheet_list_attachments"
6023
+ ];
6024
+ function smartsheetIntegration(config = {}) {
6025
+ 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 };
6026
+ return {
6027
+ id: "smartsheet",
6028
+ name: "Smartsheet",
6029
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/smartsheet.png",
6030
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
6031
+ category: "Productivity",
6032
+ tools: [...SMARTSHEET_TOOLS],
6033
+ authType: "oauth",
6034
+ oauth,
6035
+ async onInit() {
6036
+ logger32.debug("Smartsheet integration initialized");
6037
+ },
6038
+ async onAfterConnect() {
6039
+ logger32.debug("Smartsheet integration connected");
6040
+ }
6041
+ };
6042
+ }
6043
+ // src/integrations/docusign.ts
6044
+ var logger33 = createLogger("DocuSign");
6045
+ var DOCUSIGN_SCOPES = [
6046
+ "signature",
6047
+ "impersonation"
6048
+ ];
6049
+ var DOCUSIGN_TOOLS = [
6050
+ "docusign_get_user_info",
6051
+ "docusign_list_envelopes",
6052
+ "docusign_get_envelope",
6053
+ "docusign_create_envelope",
6054
+ "docusign_list_recipients",
6055
+ "docusign_get_document",
6056
+ "docusign_list_templates"
6057
+ ];
6058
+ function docusignIntegration(config = {}) {
6059
+ 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 };
6060
+ return {
6061
+ id: "docusign",
6062
+ name: "DocuSign",
6063
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/docusign.png",
6064
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
6065
+ category: "Business",
6066
+ tools: [...DOCUSIGN_TOOLS],
6067
+ authType: "oauth",
6068
+ oauth,
6069
+ getHeaders() {
6070
+ const headers = {};
6071
+ if (config.baseUri)
6072
+ headers["X-DocuSign-Base-Uri"] = config.baseUri;
6073
+ return headers;
6074
+ },
6075
+ async onInit() {
6076
+ logger33.debug("DocuSign integration initialized");
6077
+ },
6078
+ async onAfterConnect() {
6079
+ logger33.debug("DocuSign integration connected");
6080
+ }
6081
+ };
6082
+ }
6083
+ // src/integrations/pipedrive.ts
6084
+ var logger34 = createLogger("Pipedrive");
6085
+ var PIPEDRIVE_SCOPES = [
6086
+ "deals:read",
6087
+ "deals:full",
6088
+ "contacts:read",
6089
+ "contacts:full",
6090
+ "activities:read",
6091
+ "activities:full",
6092
+ "products:read",
6093
+ "products:full"
6094
+ ];
6095
+ var PIPEDRIVE_TOOLS = [
6096
+ "pipedrive_list_deals",
6097
+ "pipedrive_list_leads",
6098
+ "pipedrive_list_persons",
6099
+ "pipedrive_list_organizations",
6100
+ "pipedrive_list_activities",
6101
+ "pipedrive_list_notes",
6102
+ "pipedrive_list_pipelines",
6103
+ "pipedrive_list_products",
6104
+ "pipedrive_create_deal"
6105
+ ];
6106
+ function pipedriveIntegration(config = {}) {
6107
+ 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 };
6108
+ return {
6109
+ id: "pipedrive",
6110
+ name: "Pipedrive",
6111
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/pipedrive.png",
6112
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
6113
+ category: "Business",
6114
+ tools: [...PIPEDRIVE_TOOLS],
6115
+ authType: "oauth",
6116
+ oauth,
6117
+ async onInit() {
6118
+ logger34.debug("Pipedrive integration initialized");
6119
+ },
6120
+ async onAfterConnect() {
6121
+ logger34.debug("Pipedrive integration connected");
6122
+ }
6123
+ };
6124
+ }
6125
+ // src/integrations/freshservice.ts
6126
+ var logger35 = createLogger("Freshservice");
6127
+ var FRESHSERVICE_SCOPES = [
6128
+ "freshservice.tickets.read",
6129
+ "freshservice.tickets.write",
6130
+ "freshservice.assets.read",
6131
+ "freshservice.solutions.read"
6132
+ ];
6133
+ var FRESHSERVICE_TOOLS = [
6134
+ "freshservice_list_tickets",
6135
+ "freshservice_list_requesters",
6136
+ "freshservice_list_agents",
6137
+ "freshservice_list_assets",
6138
+ "freshservice_list_changes",
6139
+ "freshservice_list_problems",
6140
+ "freshservice_list_releases",
6141
+ "freshservice_create_ticket",
6142
+ "freshservice_list_solutions"
6143
+ ];
6144
+ function freshserviceIntegration(config = {}) {
6145
+ 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 };
6146
+ return {
6147
+ id: "freshservice",
6148
+ name: "Freshservice",
6149
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/freshservice.png",
6150
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
6151
+ category: "Business",
6152
+ tools: [...FRESHSERVICE_TOOLS],
6153
+ authType: "oauth",
6154
+ oauth,
6155
+ getHeaders() {
6156
+ const domain = config.domain ?? getEnv("FRESHSERVICE_DOMAIN");
6157
+ const headers = {};
6158
+ if (domain)
6159
+ headers["X-Freshservice-Domain"] = domain;
6160
+ return headers;
6161
+ },
6162
+ async onInit() {
6163
+ logger35.debug("Freshservice integration initialized");
6164
+ },
6165
+ async onAfterConnect() {
6166
+ logger35.debug("Freshservice integration connected");
6167
+ }
6168
+ };
6169
+ }
6170
+ // src/integrations/zoho_crm.ts
6171
+ var logger36 = createLogger("Zoho CRM");
6172
+ var ZOHO_CRM_SCOPES = [
6173
+ "ZohoCRM.modules.ALL",
6174
+ "ZohoCRM.settings.ALL",
6175
+ "ZohoCRM.users.ALL"
6176
+ ];
6177
+ var ZOHO_CRM_TOOLS = [
6178
+ "zoho_crm_list_modules",
6179
+ "zoho_crm_list_records",
6180
+ "zoho_crm_get_record",
6181
+ "zoho_crm_create_records",
6182
+ "zoho_crm_update_record",
6183
+ "zoho_crm_search_records",
6184
+ "zoho_crm_coql_query",
6185
+ "zoho_crm_list_users",
6186
+ "zoho_crm_get_org"
6187
+ ];
6188
+ function zohoCrmIntegration(config = {}) {
6189
+ 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 };
6190
+ return {
6191
+ id: "zoho_crm",
6192
+ name: "Zoho CRM",
6193
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_crm.png",
6194
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
6195
+ category: "Business",
6196
+ tools: [...ZOHO_CRM_TOOLS],
6197
+ authType: "oauth",
6198
+ oauth,
6199
+ getHeaders() {
6200
+ const region = config.region ?? getEnv("ZOHO_REGION");
6201
+ const headers = {};
6202
+ if (region)
6203
+ headers["X-Zoho-Region"] = region;
6204
+ return headers;
6205
+ },
6206
+ async onInit() {
6207
+ logger36.debug("Zoho CRM integration initialized");
6208
+ },
6209
+ async onAfterConnect() {
6210
+ logger36.debug("Zoho CRM integration connected");
6211
+ }
6212
+ };
6213
+ }
6214
+ // src/integrations/zoho_mail.ts
6215
+ var logger37 = createLogger("Zoho Mail");
6216
+ var ZOHO_MAIL_SCOPES = [
6217
+ "ZohoMail.accounts.READ",
6218
+ "ZohoMail.messages.ALL",
6219
+ "ZohoMail.folders.ALL"
6220
+ ];
6221
+ var ZOHO_MAIL_TOOLS = [
6222
+ "zoho_mail_list_accounts",
6223
+ "zoho_mail_list_folders",
6224
+ "zoho_mail_list_messages",
6225
+ "zoho_mail_get_message",
6226
+ "zoho_mail_send_message",
6227
+ "zoho_mail_search_messages",
6228
+ "zoho_mail_list_labels"
6229
+ ];
6230
+ function zohoMailIntegration(config = {}) {
6231
+ 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 };
6232
+ return {
6233
+ id: "zoho_mail",
6234
+ name: "Zoho Mail",
6235
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_mail.png",
6236
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
6237
+ category: "Business",
6238
+ tools: [...ZOHO_MAIL_TOOLS],
6239
+ authType: "oauth",
6240
+ oauth,
6241
+ getHeaders() {
6242
+ const region = config.region ?? getEnv("ZOHO_REGION");
6243
+ const headers = {};
6244
+ if (region)
6245
+ headers["X-Zoho-Region"] = region;
6246
+ return headers;
6247
+ },
6248
+ async onInit() {
6249
+ logger37.debug("Zoho Mail integration initialized");
6250
+ },
6251
+ async onAfterConnect() {
6252
+ logger37.debug("Zoho Mail integration connected");
6253
+ }
6254
+ };
6255
+ }
6256
+ // src/integrations/zoho_desk.ts
6257
+ var logger38 = createLogger("Zoho Desk");
6258
+ var ZOHO_DESK_SCOPES = [
6259
+ "Desk.tickets.ALL",
6260
+ "Desk.contacts.ALL",
6261
+ "Desk.settings.READ"
6262
+ ];
6263
+ var ZOHO_DESK_TOOLS = [
6264
+ "zoho_desk_list_tickets",
6265
+ "zoho_desk_get_ticket",
6266
+ "zoho_desk_create_ticket",
6267
+ "zoho_desk_list_contacts",
6268
+ "zoho_desk_list_accounts",
6269
+ "zoho_desk_list_agents",
6270
+ "zoho_desk_list_departments",
6271
+ "zoho_desk_search_articles"
6272
+ ];
6273
+ function zohoDeskIntegration(config = {}) {
6274
+ 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 };
6275
+ return {
6276
+ id: "zoho_desk",
6277
+ name: "Zoho Desk",
6278
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_desk.png",
6279
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
6280
+ category: "Business",
6281
+ tools: [...ZOHO_DESK_TOOLS],
6282
+ authType: "oauth",
6283
+ oauth,
6284
+ getHeaders() {
6285
+ const region = config.region ?? getEnv("ZOHO_REGION");
6286
+ const headers = {};
6287
+ if (region)
6288
+ headers["X-Zoho-Region"] = region;
6289
+ return headers;
6290
+ },
6291
+ async onInit() {
6292
+ logger38.debug("Zoho Desk integration initialized");
6293
+ },
6294
+ async onAfterConnect() {
6295
+ logger38.debug("Zoho Desk integration connected");
6296
+ }
6297
+ };
6298
+ }
6299
+ // src/integrations/zoho_books.ts
6300
+ var logger39 = createLogger("Zoho Books");
6301
+ var ZOHO_BOOKS_SCOPES = [
6302
+ "ZohoBooks.fullaccess.all"
6303
+ ];
6304
+ var ZOHO_BOOKS_TOOLS = [
6305
+ "zoho_books_list_organizations",
6306
+ "zoho_books_list_contacts",
6307
+ "zoho_books_list_items",
6308
+ "zoho_books_list_invoices",
6309
+ "zoho_books_list_bills",
6310
+ "zoho_books_list_customerpayments",
6311
+ "zoho_books_create_invoice",
6312
+ "zoho_books_profit_and_loss"
6313
+ ];
6314
+ function zohoBooksIntegration(config = {}) {
6315
+ 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 };
6316
+ return {
6317
+ id: "zoho_books",
6318
+ name: "Zoho Books",
6319
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_books.png",
6320
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
6321
+ category: "Business",
6322
+ tools: [...ZOHO_BOOKS_TOOLS],
6323
+ authType: "oauth",
6324
+ oauth,
6325
+ getHeaders() {
6326
+ const region = config.region ?? getEnv("ZOHO_REGION");
6327
+ const headers = {};
6328
+ if (region)
6329
+ headers["X-Zoho-Region"] = region;
6330
+ return headers;
6331
+ },
6332
+ async onInit() {
6333
+ logger39.debug("Zoho Books integration initialized");
6334
+ },
6335
+ async onAfterConnect() {
6336
+ logger39.debug("Zoho Books integration connected");
6337
+ }
6338
+ };
6339
+ }
6340
+ // src/integrations/zoho_projects.ts
6341
+ var logger40 = createLogger("Zoho Projects");
6342
+ var ZOHO_PROJECTS_SCOPES = [
6343
+ "ZohoProjects.portals.ALL",
6344
+ "ZohoProjects.projects.ALL",
6345
+ "ZohoProjects.tasks.ALL",
6346
+ "ZohoProjects.issues.ALL"
6347
+ ];
6348
+ var ZOHO_PROJECTS_TOOLS = [
6349
+ "zoho_projects_list_portals",
6350
+ "zoho_projects_list_projects",
6351
+ "zoho_projects_get_project",
6352
+ "zoho_projects_list_milestones",
6353
+ "zoho_projects_list_tasklists",
6354
+ "zoho_projects_list_tasks",
6355
+ "zoho_projects_create_task",
6356
+ "zoho_projects_list_issues",
6357
+ "zoho_projects_list_timesheets"
6358
+ ];
6359
+ function zohoProjectsIntegration(config = {}) {
6360
+ 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 };
6361
+ return {
6362
+ id: "zoho_projects",
6363
+ name: "Zoho Projects",
6364
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_projects.png",
6365
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
6366
+ category: "Business",
6367
+ tools: [...ZOHO_PROJECTS_TOOLS],
6368
+ authType: "oauth",
6369
+ oauth,
6370
+ getHeaders() {
6371
+ const region = config.region ?? getEnv("ZOHO_REGION");
6372
+ const headers = {};
6373
+ if (region)
6374
+ headers["X-Zoho-Region"] = region;
6375
+ return headers;
6376
+ },
6377
+ async onInit() {
6378
+ logger40.debug("Zoho Projects integration initialized");
6379
+ },
6380
+ async onAfterConnect() {
6381
+ logger40.debug("Zoho Projects integration connected");
6382
+ }
6383
+ };
6384
+ }
6385
+ // src/integrations/zoho_campaigns.ts
6386
+ var logger41 = createLogger("Zoho Campaigns");
6387
+ var ZOHO_CAMPAIGNS_SCOPES = [
6388
+ "ZohoCampaigns.campaign.ALL",
6389
+ "ZohoCampaigns.contact.ALL",
6390
+ "ZohoCampaigns.report.READ"
6391
+ ];
6392
+ var ZOHO_CAMPAIGNS_TOOLS = [
6393
+ "zoho_campaigns_list_mailing_lists",
6394
+ "zoho_campaigns_list_contacts",
6395
+ "zoho_campaigns_add_contact",
6396
+ "zoho_campaigns_list_campaigns",
6397
+ "zoho_campaigns_get_campaign_report",
6398
+ "zoho_campaigns_send_campaign"
6399
+ ];
6400
+ function zohoCampaignsIntegration(config = {}) {
6401
+ 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 };
6402
+ return {
6403
+ id: "zoho_campaigns",
6404
+ name: "Zoho Campaigns",
6405
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_campaigns.png",
6406
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
6407
+ category: "Business",
6408
+ tools: [...ZOHO_CAMPAIGNS_TOOLS],
6409
+ authType: "oauth",
6410
+ oauth,
6411
+ getHeaders() {
6412
+ const region = config.region ?? getEnv("ZOHO_REGION");
6413
+ const headers = {};
6414
+ if (region)
6415
+ headers["X-Zoho-Region"] = region;
6416
+ return headers;
6417
+ },
6418
+ async onInit() {
6419
+ logger41.debug("Zoho Campaigns integration initialized");
6420
+ },
6421
+ async onAfterConnect() {
6422
+ logger41.debug("Zoho Campaigns integration connected");
6423
+ }
6424
+ };
6425
+ }
6426
+ // src/integrations/zoho_analytics.ts
6427
+ var logger42 = createLogger("Zoho Analytics");
6428
+ var ZOHO_ANALYTICS_SCOPES = [
6429
+ "ZohoAnalytics.fullaccess.all"
6430
+ ];
6431
+ var ZOHO_ANALYTICS_TOOLS = [
6432
+ "zoho_analytics_list_workspaces",
6433
+ "zoho_analytics_get_workspace",
6434
+ "zoho_analytics_list_views",
6435
+ "zoho_analytics_export_view",
6436
+ "zoho_analytics_import_data",
6437
+ "zoho_analytics_query"
6438
+ ];
6439
+ function zohoAnalyticsIntegration(config = {}) {
6440
+ 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 };
6441
+ return {
6442
+ id: "zoho_analytics",
6443
+ name: "Zoho Analytics",
6444
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_analytics.png",
6445
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
6446
+ category: "Business",
6447
+ tools: [...ZOHO_ANALYTICS_TOOLS],
6448
+ authType: "oauth",
6449
+ oauth,
6450
+ getHeaders() {
6451
+ const region = config.region ?? getEnv("ZOHO_REGION");
6452
+ const headers = {};
6453
+ if (region)
6454
+ headers["X-Zoho-Region"] = region;
6455
+ return headers;
6456
+ },
6457
+ async onInit() {
6458
+ logger42.debug("Zoho Analytics integration initialized");
6459
+ },
6460
+ async onAfterConnect() {
6461
+ logger42.debug("Zoho Analytics integration connected");
6462
+ }
6463
+ };
6464
+ }
6465
+ // src/integrations/zoho_invoice.ts
6466
+ var logger43 = createLogger("Zoho Invoice");
6467
+ var ZOHO_INVOICE_SCOPES = [
6468
+ "ZohoInvoice.fullaccess.all"
6469
+ ];
6470
+ var ZOHO_INVOICE_TOOLS = [
6471
+ "zoho_invoice_list_organizations",
6472
+ "zoho_invoice_list_contacts",
6473
+ "zoho_invoice_list_items",
6474
+ "zoho_invoice_list_estimates",
6475
+ "zoho_invoice_list_invoices",
6476
+ "zoho_invoice_list_customerpayments",
6477
+ "zoho_invoice_create_invoice",
6478
+ "zoho_invoice_get_aging_summary"
6479
+ ];
6480
+ function zohoInvoiceIntegration(config = {}) {
6481
+ 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 };
6482
+ return {
6483
+ id: "zoho_invoice",
6484
+ name: "Zoho Invoice",
6485
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zoho_invoice.png",
6486
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
6487
+ category: "Business",
6488
+ tools: [...ZOHO_INVOICE_TOOLS],
6489
+ authType: "oauth",
6490
+ oauth,
6491
+ getHeaders() {
6492
+ const region = config.region ?? getEnv("ZOHO_REGION");
6493
+ const headers = {};
6494
+ if (region)
6495
+ headers["X-Zoho-Region"] = region;
6496
+ return headers;
6497
+ },
6498
+ async onInit() {
6499
+ logger43.debug("Zoho Invoice integration initialized");
6500
+ },
6501
+ async onAfterConnect() {
6502
+ logger43.debug("Zoho Invoice integration connected");
6503
+ }
6504
+ };
6505
+ }
5676
6506
  // src/integrations/linear.ts
5677
- var logger26 = createLogger("Linear");
6507
+ var logger44 = createLogger("Linear");
5678
6508
  var LINEAR_TOOLS = [
5679
6509
  "linear_create_issue",
5680
6510
  "linear_list_issues",
@@ -5729,15 +6559,15 @@ function linearIntegration(config = {}) {
5729
6559
  tools: [...LINEAR_TOOLS],
5730
6560
  oauth,
5731
6561
  async onInit(_client) {
5732
- logger26.debug("Linear integration initialized");
6562
+ logger44.debug("Linear integration initialized");
5733
6563
  },
5734
6564
  async onAfterConnect(_client) {
5735
- logger26.debug("Linear integration connected");
6565
+ logger44.debug("Linear integration connected");
5736
6566
  }
5737
6567
  };
5738
6568
  }
5739
6569
  // src/integrations/railway.ts
5740
- var logger27 = createLogger("Railway");
6570
+ var logger45 = createLogger("Railway");
5741
6571
  var RAILWAY_SCOPES = [
5742
6572
  "openid",
5743
6573
  "profile",
@@ -5842,15 +6672,15 @@ function railwayIntegration(config = {}) {
5842
6672
  tools: [...RAILWAY_TOOLS],
5843
6673
  oauth,
5844
6674
  async onInit(_client) {
5845
- logger27.debug("Railway integration initialized");
6675
+ logger45.debug("Railway integration initialized");
5846
6676
  },
5847
6677
  async onAfterConnect(_client) {
5848
- logger27.debug("Railway integration connected");
6678
+ logger45.debug("Railway integration connected");
5849
6679
  }
5850
6680
  };
5851
6681
  }
5852
6682
  // src/integrations/vercel.ts
5853
- var logger28 = createLogger("Vercel");
6683
+ var logger46 = createLogger("Vercel");
5854
6684
  var VERCEL_TOOLS = [
5855
6685
  "vercel_list_projects",
5856
6686
  "vercel_get_project",
@@ -5893,15 +6723,15 @@ function vercelIntegration(config = {}) {
5893
6723
  tools: [...VERCEL_TOOLS],
5894
6724
  oauth,
5895
6725
  async onInit(_client) {
5896
- logger28.debug("Vercel integration initialized");
6726
+ logger46.debug("Vercel integration initialized");
5897
6727
  },
5898
6728
  async onAfterConnect(_client) {
5899
- logger28.debug("Vercel integration connected");
6729
+ logger46.debug("Vercel integration connected");
5900
6730
  }
5901
6731
  };
5902
6732
  }
5903
6733
  // src/integrations/zendesk.ts
5904
- var logger29 = createLogger("Zendesk");
6734
+ var logger47 = createLogger("Zendesk");
5905
6735
  var ZENDESK_TOOLS = [
5906
6736
  "zendesk_list_tickets",
5907
6737
  "zendesk_get_ticket",
@@ -5950,15 +6780,15 @@ function zendeskIntegration(config = {}) {
5950
6780
  tools: [...ZENDESK_TOOLS],
5951
6781
  oauth,
5952
6782
  async onInit(_client) {
5953
- logger29.debug("Zendesk integration initialized");
6783
+ logger47.debug("Zendesk integration initialized");
5954
6784
  },
5955
6785
  async onAfterConnect(_client) {
5956
- logger29.debug("Zendesk integration connected");
6786
+ logger47.debug("Zendesk integration connected");
5957
6787
  }
5958
6788
  };
5959
6789
  }
5960
6790
  // src/integrations/stripe.ts
5961
- var logger30 = createLogger("Stripe");
6791
+ var logger48 = createLogger("Stripe");
5962
6792
  var STRIPE_TOOLS = [
5963
6793
  "stripe_list_customers",
5964
6794
  "stripe_get_customer",
@@ -6015,15 +6845,15 @@ function stripeIntegration(config = {}) {
6015
6845
  tools: [...STRIPE_TOOLS],
6016
6846
  oauth,
6017
6847
  async onInit(_client) {
6018
- logger30.debug("Stripe integration initialized");
6848
+ logger48.debug("Stripe integration initialized");
6019
6849
  },
6020
6850
  async onAfterConnect(_client) {
6021
- logger30.debug("Stripe integration connected");
6851
+ logger48.debug("Stripe integration connected");
6022
6852
  }
6023
6853
  };
6024
6854
  }
6025
6855
  // src/integrations/gcal.ts
6026
- var logger31 = createLogger("Google Calendar");
6856
+ var logger49 = createLogger("Google Calendar");
6027
6857
  var GCAL_TOOLS = [
6028
6858
  "gcal_create_calendar",
6029
6859
  "gcal_create_event",
@@ -6057,15 +6887,15 @@ function gcalIntegration(config = {}) {
6057
6887
  tools: [...GCAL_TOOLS],
6058
6888
  oauth,
6059
6889
  async onInit(_client) {
6060
- logger31.debug("Google Calendar integration initialized");
6890
+ logger49.debug("Google Calendar integration initialized");
6061
6891
  },
6062
6892
  async onAfterConnect(_client) {
6063
- logger31.debug("Google Calendar integration connected");
6893
+ logger49.debug("Google Calendar integration connected");
6064
6894
  }
6065
6895
  };
6066
6896
  }
6067
6897
  // src/integrations/gtasks.ts
6068
- var logger32 = createLogger("Google Tasks");
6898
+ var logger50 = createLogger("Google Tasks");
6069
6899
  var GTASKS_TOOLS = [
6070
6900
  "gtasks_clear_completed",
6071
6901
  "gtasks_create_task",
@@ -6101,15 +6931,15 @@ function gtasksIntegration(config = {}) {
6101
6931
  tools: [...GTASKS_TOOLS],
6102
6932
  oauth,
6103
6933
  async onInit(_client) {
6104
- logger32.debug("Google Tasks integration initialized");
6934
+ logger50.debug("Google Tasks integration initialized");
6105
6935
  },
6106
6936
  async onAfterConnect(_client) {
6107
- logger32.debug("Google Tasks integration connected");
6937
+ logger50.debug("Google Tasks integration connected");
6108
6938
  }
6109
6939
  };
6110
6940
  }
6111
6941
  // src/integrations/gkeep.ts
6112
- var logger33 = createLogger("Google Keep");
6942
+ var logger51 = createLogger("Google Keep");
6113
6943
  var GKEEP_TOOLS = [
6114
6944
  "gkeep_list_notes",
6115
6945
  "gkeep_get_note",
@@ -6141,15 +6971,15 @@ function gkeepIntegration(config = {}) {
6141
6971
  tools: [...GKEEP_TOOLS],
6142
6972
  oauth,
6143
6973
  async onInit(_client) {
6144
- logger33.debug("Google Keep integration initialized");
6974
+ logger51.debug("Google Keep integration initialized");
6145
6975
  },
6146
6976
  async onAfterConnect(_client) {
6147
- logger33.debug("Google Keep integration connected");
6977
+ logger51.debug("Google Keep integration connected");
6148
6978
  }
6149
6979
  };
6150
6980
  }
6151
6981
  // src/integrations/gcontacts.ts
6152
- var logger34 = createLogger("Google Contacts");
6982
+ var logger52 = createLogger("Google Contacts");
6153
6983
  var GCONTACTS_TOOLS = [
6154
6984
  "gcontacts_batch_get_contacts",
6155
6985
  "gcontacts_copy_other_contact",
@@ -6183,15 +7013,15 @@ function gcontactsIntegration(config = {}) {
6183
7013
  tools: [...GCONTACTS_TOOLS],
6184
7014
  oauth,
6185
7015
  async onInit(_client) {
6186
- logger34.debug("Google Contacts integration initialized");
7016
+ logger52.debug("Google Contacts integration initialized");
6187
7017
  },
6188
7018
  async onAfterConnect(_client) {
6189
- logger34.debug("Google Contacts integration connected");
7019
+ logger52.debug("Google Contacts integration connected");
6190
7020
  }
6191
7021
  };
6192
7022
  }
6193
7023
  // src/integrations/outlook.ts
6194
- var logger35 = createLogger("Outlook");
7024
+ var logger53 = createLogger("Outlook");
6195
7025
  var OUTLOOK_TOOLS = [
6196
7026
  "outlook_accept_event",
6197
7027
  "outlook_create_draft",
@@ -6238,15 +7068,15 @@ function outlookIntegration(config = {}) {
6238
7068
  tools: [...OUTLOOK_TOOLS],
6239
7069
  oauth,
6240
7070
  async onInit(_client) {
6241
- logger35.debug("Outlook integration initialized");
7071
+ logger53.debug("Outlook integration initialized");
6242
7072
  },
6243
7073
  async onAfterConnect(_client) {
6244
- logger35.debug("Outlook integration connected");
7074
+ logger53.debug("Outlook integration connected");
6245
7075
  }
6246
7076
  };
6247
7077
  }
6248
7078
  // src/integrations/teams.ts
6249
- var logger36 = createLogger("Teams");
7079
+ var logger54 = createLogger("Teams");
6250
7080
  var TEAMS_SCOPES = [
6251
7081
  "offline_access",
6252
7082
  "User.Read",
@@ -6296,15 +7126,15 @@ function teamsIntegration(config = {}) {
6296
7126
  tools: [...TEAMS_TOOLS],
6297
7127
  oauth,
6298
7128
  async onInit(_client) {
6299
- logger36.debug("Teams integration initialized");
7129
+ logger54.debug("Teams integration initialized");
6300
7130
  },
6301
7131
  async onAfterConnect(_client) {
6302
- logger36.debug("Teams integration connected");
7132
+ logger54.debug("Teams integration connected");
6303
7133
  }
6304
7134
  };
6305
7135
  }
6306
7136
  // src/integrations/airtable.ts
6307
- var logger37 = createLogger("Airtable");
7137
+ var logger55 = createLogger("Airtable");
6308
7138
  var AIRTABLE_TOOLS = [
6309
7139
  "airtable_list_bases",
6310
7140
  "airtable_get_base",
@@ -6350,15 +7180,15 @@ function airtableIntegration(config = {}) {
6350
7180
  tools: [...AIRTABLE_TOOLS],
6351
7181
  oauth,
6352
7182
  async onInit(_client) {
6353
- logger37.debug("Airtable integration initialized");
7183
+ logger55.debug("Airtable integration initialized");
6354
7184
  },
6355
7185
  async onAfterConnect(_client) {
6356
- logger37.debug("Airtable integration connected");
7186
+ logger55.debug("Airtable integration connected");
6357
7187
  }
6358
7188
  };
6359
7189
  }
6360
7190
  // src/integrations/astronomer.ts
6361
- var logger38 = createLogger("Astronomer");
7191
+ var logger56 = createLogger("Astronomer");
6362
7192
  var ASTRONOMER_TOOLS = [
6363
7193
  "astronomer_get_self",
6364
7194
  "astronomer_list_organizations",
@@ -6393,15 +7223,15 @@ function astronomerIntegration(options = {}) {
6393
7223
  };
6394
7224
  },
6395
7225
  async onInit(_client) {
6396
- logger38.debug("Astronomer integration initialized");
7226
+ logger56.debug("Astronomer integration initialized");
6397
7227
  },
6398
7228
  async onAfterConnect(_client) {
6399
- logger38.debug("Astronomer integration connected");
7229
+ logger56.debug("Astronomer integration connected");
6400
7230
  }
6401
7231
  };
6402
7232
  }
6403
7233
  // src/integrations/betterstack.ts
6404
- var logger39 = createLogger("BetterStack");
7234
+ var logger57 = createLogger("BetterStack");
6405
7235
  var BETTERSTACK_TOOLS = [
6406
7236
  "betterstack_list_sources",
6407
7237
  "betterstack_get_source",
@@ -6434,15 +7264,15 @@ function betterstackIntegration(options = {}) {
6434
7264
  };
6435
7265
  },
6436
7266
  async onInit(_client) {
6437
- logger39.debug("Better Stack integration initialized");
7267
+ logger57.debug("Better Stack integration initialized");
6438
7268
  },
6439
7269
  async onAfterConnect(_client) {
6440
- logger39.debug("Better Stack integration connected");
7270
+ logger57.debug("Better Stack integration connected");
6441
7271
  }
6442
7272
  };
6443
7273
  }
6444
7274
  // src/integrations/todoist.ts
6445
- var logger40 = createLogger("Todoist");
7275
+ var logger58 = createLogger("Todoist");
6446
7276
  var TODOIST_TOOLS = [
6447
7277
  "todoist_list_projects",
6448
7278
  "todoist_get_project",
@@ -6497,15 +7327,15 @@ function todoistIntegration(config = {}) {
6497
7327
  tools: [...TODOIST_TOOLS],
6498
7328
  oauth,
6499
7329
  async onInit(_client) {
6500
- logger40.debug("Todoist integration initialized");
7330
+ logger58.debug("Todoist integration initialized");
6501
7331
  },
6502
7332
  async onAfterConnect(_client) {
6503
- logger40.debug("Todoist integration connected");
7333
+ logger58.debug("Todoist integration connected");
6504
7334
  }
6505
7335
  };
6506
7336
  }
6507
7337
  // src/integrations/whatsapp.ts
6508
- var logger41 = createLogger("WhatsApp");
7338
+ var logger59 = createLogger("WhatsApp");
6509
7339
  var WHATSAPP_TOOLS = [
6510
7340
  "whatsapp_send_message",
6511
7341
  "whatsapp_reply_message",
@@ -6554,15 +7384,15 @@ function whatsappIntegration(config = {}) {
6554
7384
  tools: [...WHATSAPP_TOOLS],
6555
7385
  oauth,
6556
7386
  async onInit(_client) {
6557
- logger41.debug("WhatsApp Business integration initialized");
7387
+ logger59.debug("WhatsApp Business integration initialized");
6558
7388
  },
6559
7389
  async onAfterConnect(_client) {
6560
- logger41.debug("WhatsApp Business integration connected");
7390
+ logger59.debug("WhatsApp Business integration connected");
6561
7391
  }
6562
7392
  };
6563
7393
  }
6564
7394
  // src/integrations/calcom.ts
6565
- var logger42 = createLogger("Cal.com");
7395
+ var logger60 = createLogger("Cal.com");
6566
7396
  var CALCOM_TOOLS = [
6567
7397
  "calcom_list_bookings",
6568
7398
  "calcom_get_booking",
@@ -6638,15 +7468,15 @@ function calcomIntegration(config = {}) {
6638
7468
  tools: [...CALCOM_TOOLS],
6639
7469
  oauth,
6640
7470
  async onInit(_client) {
6641
- logger42.debug("Cal.com integration initialized");
7471
+ logger60.debug("Cal.com integration initialized");
6642
7472
  },
6643
7473
  async onAfterConnect(_client) {
6644
- logger42.debug("Cal.com integration connected");
7474
+ logger60.debug("Cal.com integration connected");
6645
7475
  }
6646
7476
  };
6647
7477
  }
6648
7478
  // src/integrations/ramp.ts
6649
- var logger43 = createLogger("Ramp");
7479
+ var logger61 = createLogger("Ramp");
6650
7480
  var RAMP_TOOLS = [
6651
7481
  "ramp_list_transactions",
6652
7482
  "ramp_get_transaction",
@@ -6678,15 +7508,15 @@ function rampIntegration(config = {}) {
6678
7508
  tools: [...RAMP_TOOLS],
6679
7509
  oauth,
6680
7510
  async onInit(_client) {
6681
- logger43.debug("Ramp integration initialized");
7511
+ logger61.debug("Ramp integration initialized");
6682
7512
  },
6683
7513
  async onAfterConnect(_client) {
6684
- logger43.debug("Ramp integration connected");
7514
+ logger61.debug("Ramp integration connected");
6685
7515
  }
6686
7516
  };
6687
7517
  }
6688
7518
  // src/integrations/onedrive.ts
6689
- var logger44 = createLogger("OneDrive");
7519
+ var logger62 = createLogger("OneDrive");
6690
7520
  var ONEDRIVE_TOOLS = [
6691
7521
  "onedrive_create_folder",
6692
7522
  "onedrive_delete_file",
@@ -6718,10 +7548,10 @@ function onedriveIntegration(config = {}) {
6718
7548
  tools: [...ONEDRIVE_TOOLS],
6719
7549
  oauth,
6720
7550
  async onInit(_client) {
6721
- logger44.debug("OneDrive integration initialized");
7551
+ logger62.debug("OneDrive integration initialized");
6722
7552
  },
6723
7553
  async onAfterConnect(_client) {
6724
- logger44.debug("OneDrive integration connected");
7554
+ logger62.debug("OneDrive integration connected");
6725
7555
  }
6726
7556
  };
6727
7557
  }
@@ -6759,7 +7589,7 @@ function plannerIntegration(config = {}) {
6759
7589
  };
6760
7590
  }
6761
7591
  // src/integrations/dropbox.ts
6762
- var logger45 = createLogger("Dropbox");
7592
+ var logger63 = createLogger("Dropbox");
6763
7593
  var DROPBOX_TOOLS = [
6764
7594
  "dropbox_get_current_account",
6765
7595
  "dropbox_get_space_usage",
@@ -6801,15 +7631,15 @@ function dropboxIntegration(options = {}) {
6801
7631
  authType: "oauth",
6802
7632
  oauth,
6803
7633
  async onInit(_client) {
6804
- logger45.debug("Dropbox integration initialized");
7634
+ logger63.debug("Dropbox integration initialized");
6805
7635
  },
6806
7636
  async onAfterConnect(_client) {
6807
- logger45.debug("Dropbox integration connected");
7637
+ logger63.debug("Dropbox integration connected");
6808
7638
  }
6809
7639
  };
6810
7640
  }
6811
7641
  // src/integrations/paper.ts
6812
- var logger46 = createLogger("Paper");
7642
+ var logger64 = createLogger("Paper");
6813
7643
  var PAPER_SCOPES = [
6814
7644
  "account_info.read",
6815
7645
  "files.metadata.read",
@@ -6855,15 +7685,15 @@ function paperIntegration(config = {}) {
6855
7685
  authType: "oauth",
6856
7686
  oauth,
6857
7687
  async onInit(_client) {
6858
- logger46.debug("Paper integration initialized");
7688
+ logger64.debug("Paper integration initialized");
6859
7689
  },
6860
7690
  async onAfterConnect(_client) {
6861
- logger46.debug("Paper integration connected");
7691
+ logger64.debug("Paper integration connected");
6862
7692
  }
6863
7693
  };
6864
7694
  }
6865
7695
  // src/integrations/gdocs.ts
6866
- var logger47 = createLogger("Google Docs");
7696
+ var logger65 = createLogger("Google Docs");
6867
7697
  var GDOCS_TOOLS = [
6868
7698
  "gdocs_append_text",
6869
7699
  "gdocs_batch_update",
@@ -6893,15 +7723,15 @@ function gdocsIntegration(config = {}) {
6893
7723
  tools: [...GDOCS_TOOLS],
6894
7724
  oauth,
6895
7725
  async onInit(_client) {
6896
- logger47.debug("Google Docs integration initialized");
7726
+ logger65.debug("Google Docs integration initialized");
6897
7727
  },
6898
7728
  async onAfterConnect(_client) {
6899
- logger47.debug("Google Docs integration connected");
7729
+ logger65.debug("Google Docs integration connected");
6900
7730
  }
6901
7731
  };
6902
7732
  }
6903
7733
  // src/integrations/gsheets.ts
6904
- var logger48 = createLogger("Google Sheets");
7734
+ var logger66 = createLogger("Google Sheets");
6905
7735
  var GSHEETS_TOOLS = [
6906
7736
  "gsheets_append_values",
6907
7737
  "gsheets_batch_update",
@@ -6931,15 +7761,15 @@ function gsheetsIntegration(config = {}) {
6931
7761
  tools: [...GSHEETS_TOOLS],
6932
7762
  oauth,
6933
7763
  async onInit(_client) {
6934
- logger48.debug("Google Sheets integration initialized");
7764
+ logger66.debug("Google Sheets integration initialized");
6935
7765
  },
6936
7766
  async onAfterConnect(_client) {
6937
- logger48.debug("Google Sheets integration connected");
7767
+ logger66.debug("Google Sheets integration connected");
6938
7768
  }
6939
7769
  };
6940
7770
  }
6941
7771
  // src/integrations/gslides.ts
6942
- var logger49 = createLogger("Google Slides");
7772
+ var logger67 = createLogger("Google Slides");
6943
7773
  var GSLIDES_TOOLS = [
6944
7774
  "gslides_add_slide",
6945
7775
  "gslides_batch_update",
@@ -6968,15 +7798,15 @@ function gslidesIntegration(config = {}) {
6968
7798
  tools: [...GSLIDES_TOOLS],
6969
7799
  oauth,
6970
7800
  async onInit(_client) {
6971
- logger49.debug("Google Slides integration initialized");
7801
+ logger67.debug("Google Slides integration initialized");
6972
7802
  },
6973
7803
  async onAfterConnect(_client) {
6974
- logger49.debug("Google Slides integration connected");
7804
+ logger67.debug("Google Slides integration connected");
6975
7805
  }
6976
7806
  };
6977
7807
  }
6978
7808
  // src/integrations/polar.ts
6979
- var logger50 = createLogger("Polar");
7809
+ var logger68 = createLogger("Polar");
6980
7810
  var POLAR_TOOLS = [
6981
7811
  "polar_list_products",
6982
7812
  "polar_get_product",
@@ -7033,15 +7863,15 @@ function polarIntegration(config = {}) {
7033
7863
  tools: [...POLAR_TOOLS],
7034
7864
  oauth,
7035
7865
  async onInit(_client) {
7036
- logger50.debug("Polar integration initialized");
7866
+ logger68.debug("Polar integration initialized");
7037
7867
  },
7038
7868
  async onAfterConnect(_client) {
7039
- logger50.debug("Polar integration connected");
7869
+ logger68.debug("Polar integration connected");
7040
7870
  }
7041
7871
  };
7042
7872
  }
7043
7873
  // src/integrations/supabase.ts
7044
- var logger51 = createLogger("Supabase");
7874
+ var logger69 = createLogger("Supabase");
7045
7875
  var SUPABASE_API_BASE = "https://api.supabase.com";
7046
7876
  var SUPABASE_TOOLS = [
7047
7877
  "supabase_get_profile",
@@ -7079,10 +7909,10 @@ function supabaseIntegration(config = {}) {
7079
7909
  };
7080
7910
  },
7081
7911
  async onInit(_client) {
7082
- logger51.debug("Supabase integration initialized (personal access token)");
7912
+ logger69.debug("Supabase integration initialized (personal access token)");
7083
7913
  },
7084
7914
  async onAfterConnect(_client) {
7085
- logger51.debug("Supabase integration connected");
7915
+ logger69.debug("Supabase integration connected");
7086
7916
  }
7087
7917
  };
7088
7918
  }
@@ -7112,15 +7942,15 @@ function supabaseIntegration(config = {}) {
7112
7942
  tools: [...SUPABASE_TOOLS],
7113
7943
  oauth,
7114
7944
  async onInit(_client) {
7115
- logger51.debug("Supabase integration initialized");
7945
+ logger69.debug("Supabase integration initialized");
7116
7946
  },
7117
7947
  async onAfterConnect(_client) {
7118
- logger51.debug("Supabase integration connected");
7948
+ logger69.debug("Supabase integration connected");
7119
7949
  }
7120
7950
  };
7121
7951
  }
7122
7952
  // src/integrations/phantom.ts
7123
- var logger52 = createLogger("Phantom");
7953
+ var logger70 = createLogger("Phantom");
7124
7954
  var PHANTOM_TOOLS = [
7125
7955
  "phantom_build_browse_deeplink",
7126
7956
  "phantom_deeplink_provider_reference"
@@ -7142,15 +7972,15 @@ function phantomIntegration(_options = {}) {
7142
7972
  category: "Other",
7143
7973
  tools: [...PHANTOM_TOOLS],
7144
7974
  async onInit(_client) {
7145
- logger52.debug("Phantom integration initialized");
7975
+ logger70.debug("Phantom integration initialized");
7146
7976
  },
7147
7977
  async onAfterConnect(_client) {
7148
- logger52.debug("Phantom integration connected");
7978
+ logger70.debug("Phantom integration connected");
7149
7979
  }
7150
7980
  };
7151
7981
  }
7152
7982
  // src/integrations/facebook.ts
7153
- var logger53 = createLogger("Facebook");
7983
+ var logger71 = createLogger("Facebook");
7154
7984
  var FACEBOOK_SCOPES = [
7155
7985
  "public_profile",
7156
7986
  "email",
@@ -7196,15 +8026,15 @@ function facebookIntegration(config = {}) {
7196
8026
  tools: [...FACEBOOK_TOOLS],
7197
8027
  oauth,
7198
8028
  async onInit(_client) {
7199
- logger53.debug("Facebook integration initialized");
8029
+ logger71.debug("Facebook integration initialized");
7200
8030
  },
7201
8031
  async onAfterConnect(_client) {
7202
- logger53.debug("Facebook integration connected");
8032
+ logger71.debug("Facebook integration connected");
7203
8033
  }
7204
8034
  };
7205
8035
  }
7206
8036
  // src/integrations/figma.ts
7207
- var logger54 = createLogger("Figma");
8037
+ var logger72 = createLogger("Figma");
7208
8038
  var FIGMA_TOOLS = [
7209
8039
  "figma_get_file",
7210
8040
  "figma_get_file_nodes",
@@ -7270,15 +8100,15 @@ function figmaIntegration(config = {}) {
7270
8100
  tools: [...FIGMA_TOOLS],
7271
8101
  oauth,
7272
8102
  async onInit(_client) {
7273
- logger54.debug("Figma integration initialized");
8103
+ logger72.debug("Figma integration initialized");
7274
8104
  },
7275
8105
  async onAfterConnect(_client) {
7276
- logger54.debug("Figma integration connected");
8106
+ logger72.debug("Figma integration connected");
7277
8107
  }
7278
8108
  };
7279
8109
  }
7280
8110
  // src/integrations/intercom.ts
7281
- var logger55 = createLogger("Intercom");
8111
+ var logger73 = createLogger("Intercom");
7282
8112
  var INTERCOM_TOOLS = [
7283
8113
  "intercom_list_contacts",
7284
8114
  "intercom_get_contact",
@@ -7309,15 +8139,15 @@ function intercomIntegration(config = {}) {
7309
8139
  tools: [...INTERCOM_TOOLS],
7310
8140
  oauth,
7311
8141
  async onInit(_client) {
7312
- logger55.debug("Intercom integration initialized");
8142
+ logger73.debug("Intercom integration initialized");
7313
8143
  },
7314
8144
  async onAfterConnect(_client) {
7315
- logger55.debug("Intercom integration connected");
8145
+ logger73.debug("Intercom integration connected");
7316
8146
  }
7317
8147
  };
7318
8148
  }
7319
8149
  // src/integrations/hubspot.ts
7320
- var logger56 = createLogger("HubSpot");
8150
+ var logger74 = createLogger("HubSpot");
7321
8151
  var HUBSPOT_TOOLS = [
7322
8152
  "hubspot_list_contacts",
7323
8153
  "hubspot_get_contact",
@@ -7367,15 +8197,15 @@ function hubspotIntegration(config = {}) {
7367
8197
  tools: [...HUBSPOT_TOOLS],
7368
8198
  oauth,
7369
8199
  async onInit(_client) {
7370
- logger56.debug("HubSpot integration initialized");
8200
+ logger74.debug("HubSpot integration initialized");
7371
8201
  },
7372
8202
  async onAfterConnect(_client) {
7373
- logger56.debug("HubSpot integration connected");
8203
+ logger74.debug("HubSpot integration connected");
7374
8204
  }
7375
8205
  };
7376
8206
  }
7377
8207
  // src/integrations/instagram.ts
7378
- var logger57 = createLogger("Instagram");
8208
+ var logger75 = createLogger("Instagram");
7379
8209
  var INSTAGRAM_SCOPES = [
7380
8210
  "pages_show_list",
7381
8211
  "pages_read_engagement",
@@ -7425,15 +8255,15 @@ function instagramIntegration(config = {}) {
7425
8255
  tools: [...INSTAGRAM_TOOLS],
7426
8256
  oauth,
7427
8257
  async onInit(_client) {
7428
- logger57.debug("Instagram integration initialized");
8258
+ logger75.debug("Instagram integration initialized");
7429
8259
  },
7430
8260
  async onAfterConnect(_client) {
7431
- logger57.debug("Instagram integration connected");
8261
+ logger75.debug("Instagram integration connected");
7432
8262
  }
7433
8263
  };
7434
8264
  }
7435
8265
  // src/integrations/youtube.ts
7436
- var logger58 = createLogger("YouTube");
8266
+ var logger76 = createLogger("YouTube");
7437
8267
  var YOUTUBE_TOOLS = [
7438
8268
  "youtube_add_comment",
7439
8269
  "youtube_add_to_playlist",
@@ -7479,15 +8309,15 @@ function youtubeIntegration(config = {}) {
7479
8309
  tools: [...YOUTUBE_TOOLS],
7480
8310
  oauth,
7481
8311
  async onInit(_client) {
7482
- logger58.debug("YouTube integration initialized");
8312
+ logger76.debug("YouTube integration initialized");
7483
8313
  },
7484
8314
  async onAfterConnect(_client) {
7485
- logger58.debug("YouTube integration connected");
8315
+ logger76.debug("YouTube integration connected");
7486
8316
  }
7487
8317
  };
7488
8318
  }
7489
8319
  // src/integrations/cursor.ts
7490
- var logger59 = createLogger("Cursor");
8320
+ var logger77 = createLogger("Cursor");
7491
8321
  var CURSOR_TOOLS = [
7492
8322
  "cursor_list_agents",
7493
8323
  "cursor_get_agent",
@@ -7507,15 +8337,15 @@ function cursorIntegration(_config = {}) {
7507
8337
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/cursor.jpeg",
7508
8338
  tools: [...CURSOR_TOOLS],
7509
8339
  async onInit(_client) {
7510
- logger59.debug("Cursor integration initialized");
8340
+ logger77.debug("Cursor integration initialized");
7511
8341
  },
7512
8342
  async onAfterConnect(_client) {
7513
- logger59.debug("Cursor integration connected");
8343
+ logger77.debug("Cursor integration connected");
7514
8344
  }
7515
8345
  };
7516
8346
  }
7517
8347
  // src/integrations/databricks.ts
7518
- var logger60 = createLogger("Databricks");
8348
+ var logger78 = createLogger("Databricks");
7519
8349
  var DATABRICKS_SCOPES = ["all-apis", "offline_access"];
7520
8350
  var DATABRICKS_TOOLS = [
7521
8351
  "databricks_current_user",
@@ -7562,15 +8392,15 @@ function databricksIntegration(config = {}) {
7562
8392
  tools: [...DATABRICKS_TOOLS],
7563
8393
  oauth,
7564
8394
  async onInit(_client) {
7565
- logger60.debug("Databricks integration initialized");
8395
+ logger78.debug("Databricks integration initialized");
7566
8396
  },
7567
8397
  async onAfterConnect(_client) {
7568
- logger60.debug("Databricks integration connected");
8398
+ logger78.debug("Databricks integration connected");
7569
8399
  }
7570
8400
  };
7571
8401
  }
7572
8402
  // src/integrations/posthog.ts
7573
- var logger61 = createLogger("PostHog");
8403
+ var logger79 = createLogger("PostHog");
7574
8404
  var DEFAULT_POSTHOG_BASE_URL = "https://us.posthog.com";
7575
8405
  var POSTHOG_SCOPES = [
7576
8406
  "openid",
@@ -7656,15 +8486,15 @@ function posthogIntegration(config = {}) {
7656
8486
  tools: [...POSTHOG_TOOLS],
7657
8487
  oauth,
7658
8488
  async onInit(_client) {
7659
- logger61.debug("PostHog integration initialized");
8489
+ logger79.debug("PostHog integration initialized");
7660
8490
  },
7661
8491
  async onAfterConnect(_client) {
7662
- logger61.debug("PostHog integration connected");
8492
+ logger79.debug("PostHog integration connected");
7663
8493
  }
7664
8494
  };
7665
8495
  }
7666
8496
  // src/integrations/postman.ts
7667
- var logger62 = createLogger("Postman");
8497
+ var logger80 = createLogger("Postman");
7668
8498
  var POSTMAN_TOOLS = [
7669
8499
  "postman_get_me",
7670
8500
  "postman_list_workspaces",
@@ -7695,15 +8525,15 @@ function postmanIntegration(options = {}) {
7695
8525
  };
7696
8526
  },
7697
8527
  async onInit(_client) {
7698
- logger62.debug("Postman integration initialized");
8528
+ logger80.debug("Postman integration initialized");
7699
8529
  },
7700
8530
  async onAfterConnect(_client) {
7701
- logger62.debug("Postman integration connected");
8531
+ logger80.debug("Postman integration connected");
7702
8532
  }
7703
8533
  };
7704
8534
  }
7705
8535
  // src/integrations/sentry.ts
7706
- var logger63 = createLogger("Sentry");
8536
+ var logger81 = createLogger("Sentry");
7707
8537
  var SENTRY_SCOPES = [
7708
8538
  "org:read",
7709
8539
  "project:read",
@@ -7752,15 +8582,15 @@ function sentryIntegration(config = {}) {
7752
8582
  tools: [...SENTRY_TOOLS],
7753
8583
  oauth,
7754
8584
  async onInit(_client) {
7755
- logger63.debug("Sentry integration initialized");
8585
+ logger81.debug("Sentry integration initialized");
7756
8586
  },
7757
8587
  async onAfterConnect(_client) {
7758
- logger63.debug("Sentry integration connected");
8588
+ logger81.debug("Sentry integration connected");
7759
8589
  }
7760
8590
  };
7761
8591
  }
7762
8592
  // src/integrations/datadog.ts
7763
- var logger64 = createLogger("Datadog");
8593
+ var logger82 = createLogger("Datadog");
7764
8594
  var DATADOG_SCOPES = [
7765
8595
  "monitors_read",
7766
8596
  "dashboards_read",
@@ -7790,10 +8620,10 @@ function datadogIntegration(config = {}) {
7790
8620
  category: "Engineering",
7791
8621
  tools: [...DATADOG_TOOLS],
7792
8622
  async onInit(_client) {
7793
- logger64.debug("Datadog integration initialized");
8623
+ logger82.debug("Datadog integration initialized");
7794
8624
  },
7795
8625
  async onAfterConnect(_client) {
7796
- logger64.debug("Datadog integration connected");
8626
+ logger82.debug("Datadog integration connected");
7797
8627
  }
7798
8628
  };
7799
8629
  if (apiKey || applicationKey) {
@@ -7834,7 +8664,7 @@ function datadogIntegration(config = {}) {
7834
8664
  };
7835
8665
  }
7836
8666
  // src/integrations/netlify.ts
7837
- var logger65 = createLogger("Netlify");
8667
+ var logger83 = createLogger("Netlify");
7838
8668
  var NETLIFY_TOOLS = [
7839
8669
  "netlify_get_current_user",
7840
8670
  "netlify_list_accounts",
@@ -7897,15 +8727,15 @@ function netlifyIntegration(config = {}) {
7897
8727
  tools: [...NETLIFY_TOOLS],
7898
8728
  oauth,
7899
8729
  async onInit(_client) {
7900
- logger65.debug("Netlify integration initialized");
8730
+ logger83.debug("Netlify integration initialized");
7901
8731
  },
7902
8732
  async onAfterConnect(_client) {
7903
- logger65.debug("Netlify integration connected");
8733
+ logger83.debug("Netlify integration connected");
7904
8734
  }
7905
8735
  };
7906
8736
  }
7907
8737
  // src/integrations/redis.ts
7908
- var logger66 = createLogger("Redis Cloud");
8738
+ var logger84 = createLogger("Redis Cloud");
7909
8739
  var REDIS_TOOLS = [
7910
8740
  "redis_list_subscriptions",
7911
8741
  "redis_get_subscription",
@@ -7960,15 +8790,15 @@ function redisIntegration(options = {}) {
7960
8790
  };
7961
8791
  },
7962
8792
  async onInit(_client) {
7963
- logger66.debug("Redis Cloud integration initialized");
8793
+ logger84.debug("Redis Cloud integration initialized");
7964
8794
  },
7965
8795
  async onAfterConnect(_client) {
7966
- logger66.debug("Redis Cloud integration connected");
8796
+ logger84.debug("Redis Cloud integration connected");
7967
8797
  }
7968
8798
  };
7969
8799
  }
7970
8800
  // src/integrations/webflow.ts
7971
- var logger67 = createLogger("Webflow");
8801
+ var logger85 = createLogger("Webflow");
7972
8802
  var WEBFLOW_TOOLS = [
7973
8803
  "webflow_token_introspect",
7974
8804
  "webflow_get_authorized_user",
@@ -8027,15 +8857,15 @@ function webflowIntegration(config = {}) {
8027
8857
  tools: [...WEBFLOW_TOOLS],
8028
8858
  oauth,
8029
8859
  async onInit(_client) {
8030
- logger67.debug("Webflow integration initialized");
8860
+ logger85.debug("Webflow integration initialized");
8031
8861
  },
8032
8862
  async onAfterConnect(_client) {
8033
- logger67.debug("Webflow integration connected");
8863
+ logger85.debug("Webflow integration connected");
8034
8864
  }
8035
8865
  };
8036
8866
  }
8037
8867
  // src/integrations/jira.ts
8038
- var logger68 = createLogger("Jira");
8868
+ var logger86 = createLogger("Jira");
8039
8869
  var JIRA_SCOPES = [
8040
8870
  "read:jira-work",
8041
8871
  "write:jira-work",
@@ -8080,15 +8910,15 @@ function jiraIntegration(config = {}) {
8080
8910
  tools: [...JIRA_TOOLS],
8081
8911
  oauth,
8082
8912
  async onInit(_client) {
8083
- logger68.debug("Jira integration initialized");
8913
+ logger86.debug("Jira integration initialized");
8084
8914
  },
8085
8915
  async onAfterConnect(_client) {
8086
- logger68.debug("Jira integration connected");
8916
+ logger86.debug("Jira integration connected");
8087
8917
  }
8088
8918
  };
8089
8919
  }
8090
8920
  // src/integrations/linkedin.ts
8091
- var logger69 = createLogger("LinkedIn");
8921
+ var logger87 = createLogger("LinkedIn");
8092
8922
  var LINKEDIN_SCOPES = ["openid", "profile", "email", "w_member_social"];
8093
8923
  var LINKEDIN_TOOLS = ["linkedin_get_userinfo", "linkedin_create_post"];
8094
8924
  function linkedinIntegration(config = {}) {
@@ -8115,15 +8945,15 @@ function linkedinIntegration(config = {}) {
8115
8945
  tools: [...LINKEDIN_TOOLS],
8116
8946
  oauth,
8117
8947
  async onInit(_client) {
8118
- logger69.debug("LinkedIn integration initialized");
8948
+ logger87.debug("LinkedIn integration initialized");
8119
8949
  },
8120
8950
  async onAfterConnect(_client) {
8121
- logger69.debug("LinkedIn integration connected");
8951
+ logger87.debug("LinkedIn integration connected");
8122
8952
  }
8123
8953
  };
8124
8954
  }
8125
8955
  // src/integrations/threads.ts
8126
- var logger70 = createLogger("Threads");
8956
+ var logger88 = createLogger("Threads");
8127
8957
  var THREADS_SCOPES = [
8128
8958
  "threads_basic",
8129
8959
  "threads_content_publish",
@@ -8174,15 +9004,15 @@ function threadsIntegration(config = {}) {
8174
9004
  tools: [...THREADS_TOOLS],
8175
9005
  oauth,
8176
9006
  async onInit(_client) {
8177
- logger70.debug("Threads integration initialized");
9007
+ logger88.debug("Threads integration initialized");
8178
9008
  },
8179
9009
  async onAfterConnect(_client) {
8180
- logger70.debug("Threads integration connected");
9010
+ logger88.debug("Threads integration connected");
8181
9011
  }
8182
9012
  };
8183
9013
  }
8184
9014
  // src/integrations/tiktok.ts
8185
- var logger71 = createLogger("TikTok");
9015
+ var logger89 = createLogger("TikTok");
8186
9016
  var TIKTOK_SCOPES = ["user.info.basic", "video.list"];
8187
9017
  var TIKTOK_TOOLS = [
8188
9018
  "tiktok_get_user_info",
@@ -8209,19 +9039,19 @@ function tiktokIntegration(config = {}) {
8209
9039
  name: "TikTok",
8210
9040
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/tiktok.png",
8211
9041
  description: "Read TikTok user profile data and user-authorized video metadata",
8212
- category: "Social Media",
9042
+ category: "Entertainment",
8213
9043
  tools: [...TIKTOK_TOOLS],
8214
9044
  oauth,
8215
9045
  async onInit(_client) {
8216
- logger71.debug("TikTok integration initialized");
9046
+ logger89.debug("TikTok integration initialized");
8217
9047
  },
8218
9048
  async onAfterConnect(_client) {
8219
- logger71.debug("TikTok integration connected");
9049
+ logger89.debug("TikTok integration connected");
8220
9050
  }
8221
9051
  };
8222
9052
  }
8223
9053
  // src/integrations/trello.ts
8224
- var logger72 = createLogger("Trello");
9054
+ var logger90 = createLogger("Trello");
8225
9055
  var TRELLO_TOOLS = [
8226
9056
  "trello_get_member",
8227
9057
  "trello_list_boards",
@@ -8258,15 +9088,15 @@ function trelloIntegration(options = {}) {
8258
9088
  return { Authorization: `Bearer ${encodeCredential(apiKey, memberToken)}` };
8259
9089
  },
8260
9090
  async onInit(_client) {
8261
- logger72.debug("Trello integration initialized");
9091
+ logger90.debug("Trello integration initialized");
8262
9092
  },
8263
9093
  async onAfterConnect(_client) {
8264
- logger72.debug("Trello integration connected");
9094
+ logger90.debug("Trello integration connected");
8265
9095
  }
8266
9096
  };
8267
9097
  }
8268
9098
  // src/integrations/typeform.ts
8269
- var logger73 = createLogger("Typeform");
9099
+ var logger91 = createLogger("Typeform");
8270
9100
  var TYPEFORM_SCOPES = [
8271
9101
  "offline",
8272
9102
  "accounts:read",
@@ -8310,15 +9140,15 @@ function typeformIntegration(config = {}) {
8310
9140
  tools: [...TYPEFORM_TOOLS],
8311
9141
  oauth,
8312
9142
  async onInit(_client) {
8313
- logger73.debug("Typeform integration initialized");
9143
+ logger91.debug("Typeform integration initialized");
8314
9144
  },
8315
9145
  async onAfterConnect(_client) {
8316
- logger73.debug("Typeform integration connected");
9146
+ logger91.debug("Typeform integration connected");
8317
9147
  }
8318
9148
  };
8319
9149
  }
8320
9150
  // src/integrations/sharepoint.ts
8321
- var logger74 = createLogger("SharePoint");
9151
+ var logger92 = createLogger("SharePoint");
8322
9152
  var SHAREPOINT_SCOPES = ["Sites.ReadWrite.All", "Files.ReadWrite.All", "offline_access"];
8323
9153
  var SHAREPOINT_TOOLS = [
8324
9154
  "sharepoint_create_folder",
@@ -8357,15 +9187,15 @@ function sharepointIntegration(config = {}) {
8357
9187
  tools: [...SHAREPOINT_TOOLS],
8358
9188
  oauth,
8359
9189
  async onInit(_client) {
8360
- logger74.debug("SharePoint integration initialized");
9190
+ logger92.debug("SharePoint integration initialized");
8361
9191
  },
8362
9192
  async onAfterConnect(_client) {
8363
- logger74.debug("SharePoint integration connected");
9193
+ logger92.debug("SharePoint integration connected");
8364
9194
  }
8365
9195
  };
8366
9196
  }
8367
9197
  // src/integrations/xero.ts
8368
- var logger75 = createLogger("Xero");
9198
+ var logger93 = createLogger("Xero");
8369
9199
  var XERO_SCOPES = [
8370
9200
  "openid",
8371
9201
  "profile",
@@ -8412,15 +9242,15 @@ function xeroIntegration(config = {}) {
8412
9242
  tools: [...XERO_TOOLS],
8413
9243
  oauth,
8414
9244
  async onInit(_client) {
8415
- logger75.debug("Xero integration initialized");
9245
+ logger93.debug("Xero integration initialized");
8416
9246
  },
8417
9247
  async onAfterConnect(_client) {
8418
- logger75.debug("Xero integration connected");
9248
+ logger93.debug("Xero integration connected");
8419
9249
  }
8420
9250
  };
8421
9251
  }
8422
9252
  // src/integrations/salesforce.ts
8423
- var logger76 = createLogger("Salesforce");
9253
+ var logger94 = createLogger("Salesforce");
8424
9254
  var SALESFORCE_TOOLS = [
8425
9255
  "salesforce_query",
8426
9256
  "salesforce_get_limits",
@@ -8451,15 +9281,15 @@ function salesforceIntegration(config = {}) {
8451
9281
  tools: [...SALESFORCE_TOOLS],
8452
9282
  oauth,
8453
9283
  async onInit(_client) {
8454
- logger76.debug("Salesforce integration initialized");
9284
+ logger94.debug("Salesforce integration initialized");
8455
9285
  },
8456
9286
  async onAfterConnect(_client) {
8457
- logger76.debug("Salesforce integration connected");
9287
+ logger94.debug("Salesforce integration connected");
8458
9288
  }
8459
9289
  };
8460
9290
  }
8461
9291
  // src/integrations/attio.ts
8462
- var logger77 = createLogger("Attio");
9292
+ var logger95 = createLogger("Attio");
8463
9293
  var ATTIO_SCOPES = [
8464
9294
  "record_permission:read-write",
8465
9295
  "object_configuration:read",
@@ -8505,15 +9335,15 @@ function attioIntegration(config = {}) {
8505
9335
  tools: [...ATTIO_TOOLS],
8506
9336
  oauth,
8507
9337
  async onInit(_client) {
8508
- logger77.debug("Attio integration initialized");
9338
+ logger95.debug("Attio integration initialized");
8509
9339
  },
8510
9340
  async onAfterConnect(_client) {
8511
- logger77.debug("Attio integration connected");
9341
+ logger95.debug("Attio integration connected");
8512
9342
  }
8513
9343
  };
8514
9344
  }
8515
9345
  // src/integrations/gchat.ts
8516
- var logger78 = createLogger("Google Chat");
9346
+ var logger96 = createLogger("Google Chat");
8517
9347
  var GCHAT_SCOPES = [
8518
9348
  "https://www.googleapis.com/auth/chat.messages",
8519
9349
  "https://www.googleapis.com/auth/chat.spaces.readonly"
@@ -8552,15 +9382,15 @@ function gchatIntegration(config = {}) {
8552
9382
  tools: [...GCHAT_TOOLS],
8553
9383
  oauth,
8554
9384
  async onInit(_client) {
8555
- logger78.debug("Google Chat integration initialized");
9385
+ logger96.debug("Google Chat integration initialized");
8556
9386
  },
8557
9387
  async onAfterConnect(_client) {
8558
- logger78.debug("Google Chat integration connected");
9388
+ logger96.debug("Google Chat integration connected");
8559
9389
  }
8560
9390
  };
8561
9391
  }
8562
9392
  // src/integrations/shopify.ts
8563
- var logger79 = createLogger("Shopify");
9393
+ var logger97 = createLogger("Shopify");
8564
9394
  var SHOPIFY_SCOPES = [
8565
9395
  "read_products",
8566
9396
  "write_products",
@@ -8609,15 +9439,15 @@ function shopifyIntegration(config = {}) {
8609
9439
  tools: [...SHOPIFY_TOOLS],
8610
9440
  oauth,
8611
9441
  async onInit(_client) {
8612
- logger79.debug("Shopify integration initialized");
9442
+ logger97.debug("Shopify integration initialized");
8613
9443
  },
8614
9444
  async onAfterConnect(_client) {
8615
- logger79.debug("Shopify integration connected");
9445
+ logger97.debug("Shopify integration connected");
8616
9446
  }
8617
9447
  };
8618
9448
  }
8619
9449
  // src/integrations/convex.ts
8620
- var logger80 = createLogger("Convex");
9450
+ var logger98 = createLogger("Convex");
8621
9451
  var CONVEX_TOOLS = [
8622
9452
  "convex_management_token_details",
8623
9453
  "convex_management_list_projects",
@@ -8654,15 +9484,15 @@ function convexIntegration(options = {}) {
8654
9484
  return { Authorization: `Bearer ${accessToken}` };
8655
9485
  },
8656
9486
  async onInit(_client) {
8657
- logger80.debug("Convex integration initialized");
9487
+ logger98.debug("Convex integration initialized");
8658
9488
  },
8659
9489
  async onAfterConnect(_client) {
8660
- logger80.debug("Convex integration connected");
9490
+ logger98.debug("Convex integration connected");
8661
9491
  }
8662
9492
  };
8663
9493
  }
8664
9494
  // src/integrations/etoro.ts
8665
- var logger81 = createLogger("eToro");
9495
+ var logger99 = createLogger("eToro");
8666
9496
  var ETORO_TOOLS = [
8667
9497
  "etoro_get_identity",
8668
9498
  "etoro_get_portfolio",
@@ -8692,15 +9522,15 @@ function etoroIntegration(options = {}) {
8692
9522
  };
8693
9523
  },
8694
9524
  async onInit(_client) {
8695
- logger81.debug("eToro integration initialized");
9525
+ logger99.debug("eToro integration initialized");
8696
9526
  },
8697
9527
  async onAfterConnect(_client) {
8698
- logger81.debug("eToro integration connected");
9528
+ logger99.debug("eToro integration connected");
8699
9529
  }
8700
9530
  };
8701
9531
  }
8702
9532
  // src/integrations/alpaca.ts
8703
- var logger82 = createLogger("Alpaca");
9533
+ var logger100 = createLogger("Alpaca");
8704
9534
  var ALPACA_TOOLS = [
8705
9535
  "alpaca_get_account",
8706
9536
  "alpaca_list_positions",
@@ -8742,15 +9572,15 @@ function alpacaIntegration(options = {}) {
8742
9572
  return headers;
8743
9573
  },
8744
9574
  async onInit(_client) {
8745
- logger82.debug("Alpaca integration initialized");
9575
+ logger100.debug("Alpaca integration initialized");
8746
9576
  },
8747
9577
  async onAfterConnect(_client) {
8748
- logger82.debug("Alpaca integration connected");
9578
+ logger100.debug("Alpaca integration connected");
8749
9579
  }
8750
9580
  };
8751
9581
  }
8752
9582
  // src/integrations/neon.ts
8753
- var logger83 = createLogger("Neon");
9583
+ var logger101 = createLogger("Neon");
8754
9584
  var NEON_TOOLS = [
8755
9585
  "neon_list_api_keys",
8756
9586
  "neon_create_api_key",
@@ -8790,15 +9620,15 @@ function neonIntegration(options = {}) {
8790
9620
  };
8791
9621
  },
8792
9622
  async onInit(_client) {
8793
- logger83.debug("Neon integration initialized");
9623
+ logger101.debug("Neon integration initialized");
8794
9624
  },
8795
9625
  async onAfterConnect(_client) {
8796
- logger83.debug("Neon integration connected");
9626
+ logger101.debug("Neon integration connected");
8797
9627
  }
8798
9628
  };
8799
9629
  }
8800
9630
  // src/integrations/workos.ts
8801
- var logger84 = createLogger("WorkOS");
9631
+ var logger102 = createLogger("WorkOS");
8802
9632
  var WORKOS_TOOLS = [
8803
9633
  "workos_list_organizations",
8804
9634
  "workos_get_organization",
@@ -8831,15 +9661,15 @@ function workosIntegration(options = {}) {
8831
9661
  };
8832
9662
  },
8833
9663
  async onInit(_client) {
8834
- logger84.debug("WorkOS integration initialized");
9664
+ logger102.debug("WorkOS integration initialized");
8835
9665
  },
8836
9666
  async onAfterConnect(_client) {
8837
- logger84.debug("WorkOS integration connected");
9667
+ logger102.debug("WorkOS integration connected");
8838
9668
  }
8839
9669
  };
8840
9670
  }
8841
9671
  // src/integrations/workday.ts
8842
- var logger85 = createLogger("Workday");
9672
+ var logger103 = createLogger("Workday");
8843
9673
  var WORKDAY_TOOLS = [
8844
9674
  "workday_list_workers",
8845
9675
  "workday_get_worker"
@@ -8864,10 +9694,10 @@ function workdayIntegration(config = {}) {
8864
9694
  tools: [...WORKDAY_TOOLS],
8865
9695
  oauth,
8866
9696
  async onInit(_client) {
8867
- logger85.debug("Workday integration initialized");
9697
+ logger103.debug("Workday integration initialized");
8868
9698
  },
8869
9699
  async onAfterConnect(_client) {
8870
- logger85.debug("Workday integration connected");
9700
+ logger103.debug("Workday integration connected");
8871
9701
  }
8872
9702
  };
8873
9703
  }
@@ -8890,7 +9720,7 @@ function tldrawIntegration(options = {}) {
8890
9720
  };
8891
9721
  }
8892
9722
  // src/integrations/upstash.ts
8893
- var logger86 = createLogger("Upstash");
9723
+ var logger104 = createLogger("Upstash");
8894
9724
  var UPSTASH_TOOLS = [
8895
9725
  "upstash_redis_run",
8896
9726
  "upstash_redis_get",
@@ -8930,10 +9760,10 @@ function upstashIntegration(options = {}) {
8930
9760
  return headers;
8931
9761
  },
8932
9762
  async onInit(_client) {
8933
- logger86.debug("Upstash integration initialized");
9763
+ logger104.debug("Upstash integration initialized");
8934
9764
  },
8935
9765
  async onAfterConnect(_client) {
8936
- logger86.debug("Upstash integration connected");
9766
+ logger104.debug("Upstash integration connected");
8937
9767
  }
8938
9768
  };
8939
9769
  }
@@ -9070,7 +9900,7 @@ function mailchimpIntegration(config = {}) {
9070
9900
  };
9071
9901
  }
9072
9902
  // src/integrations/aws.ts
9073
- var logger87 = createLogger("AWS");
9903
+ var logger105 = createLogger("AWS");
9074
9904
  var AWS_TOOLS = [
9075
9905
  "aws_sts_get_caller_identity",
9076
9906
  "aws_ec2_describe_regions",
@@ -9123,15 +9953,15 @@ function awsIntegration(options = {}) {
9123
9953
  };
9124
9954
  },
9125
9955
  async onInit(_client) {
9126
- logger87.debug("AWS integration initialized");
9956
+ logger105.debug("AWS integration initialized");
9127
9957
  },
9128
9958
  async onAfterConnect(_client) {
9129
- logger87.debug("AWS integration connected");
9959
+ logger105.debug("AWS integration connected");
9130
9960
  }
9131
9961
  };
9132
9962
  }
9133
9963
  // src/integrations/wix.ts
9134
- var logger88 = createLogger("Wix");
9964
+ var logger106 = createLogger("Wix");
9135
9965
  var WIX_TOOLS = [
9136
9966
  "wix_query_products",
9137
9967
  "wix_get_product",
@@ -9164,15 +9994,15 @@ function wixIntegration(options = {}) {
9164
9994
  };
9165
9995
  },
9166
9996
  async onInit(_client) {
9167
- logger88.debug("Wix integration initialized");
9997
+ logger106.debug("Wix integration initialized");
9168
9998
  },
9169
9999
  async onAfterConnect(_client) {
9170
- logger88.debug("Wix integration connected");
10000
+ logger106.debug("Wix integration connected");
9171
10001
  }
9172
10002
  };
9173
10003
  }
9174
10004
  // src/integrations/auth0.ts
9175
- var logger89 = createLogger("Auth0");
10005
+ var logger107 = createLogger("Auth0");
9176
10006
  var AUTH0_TOOLS = [
9177
10007
  "auth0_list_users",
9178
10008
  "auth0_get_user",
@@ -9261,7 +10091,7 @@ function auth0Integration(options) {
9261
10091
  };
9262
10092
  },
9263
10093
  async onInit() {
9264
- logger89.debug("Auth0 integration initialized");
10094
+ logger107.debug("Auth0 integration initialized");
9265
10095
  },
9266
10096
  async onBeforeConnect() {
9267
10097
  await ensureFreshToken();
@@ -9270,12 +10100,12 @@ function auth0Integration(options) {
9270
10100
  }
9271
10101
  },
9272
10102
  async onAfterConnect() {
9273
- logger89.debug("Auth0 integration connected");
10103
+ logger107.debug("Auth0 integration connected");
9274
10104
  }
9275
10105
  };
9276
10106
  }
9277
10107
  // src/integrations/binance.ts
9278
- var logger90 = createLogger("Binance");
10108
+ var logger108 = createLogger("Binance");
9279
10109
  var BINANCE_TOOLS = [
9280
10110
  "binance_ping",
9281
10111
  "binance_get_server_time",
@@ -9318,15 +10148,15 @@ function binanceIntegration(options = {}) {
9318
10148
  };
9319
10149
  },
9320
10150
  async onInit(_client) {
9321
- logger90.debug("Binance integration initialized");
10151
+ logger108.debug("Binance integration initialized");
9322
10152
  },
9323
10153
  async onAfterConnect(_client) {
9324
- logger90.debug("Binance integration connected");
10154
+ logger108.debug("Binance integration connected");
9325
10155
  }
9326
10156
  };
9327
10157
  }
9328
10158
  // src/integrations/canva.ts
9329
- var logger91 = createLogger("Canva");
10159
+ var logger109 = createLogger("Canva");
9330
10160
  var CANVA_TOOLS = [
9331
10161
  "canva_get_me",
9332
10162
  "canva_get_profile",
@@ -9363,15 +10193,15 @@ function canvaIntegration(config = {}) {
9363
10193
  tools: [...CANVA_TOOLS],
9364
10194
  oauth,
9365
10195
  async onInit(_client) {
9366
- logger91.debug("Canva integration initialized");
10196
+ logger109.debug("Canva integration initialized");
9367
10197
  },
9368
10198
  async onAfterConnect(_client) {
9369
- logger91.debug("Canva integration connected");
10199
+ logger109.debug("Canva integration connected");
9370
10200
  }
9371
10201
  };
9372
10202
  }
9373
10203
  // src/integrations/clerk.ts
9374
- var logger92 = createLogger("Clerk");
10204
+ var logger110 = createLogger("Clerk");
9375
10205
  var CLERK_TOOLS = [
9376
10206
  "clerk_list_users",
9377
10207
  "clerk_get_user",
@@ -9406,15 +10236,15 @@ function clerkIntegration(options = {}) {
9406
10236
  };
9407
10237
  },
9408
10238
  async onInit(_client) {
9409
- logger92.debug("Clerk integration initialized");
10239
+ logger110.debug("Clerk integration initialized");
9410
10240
  },
9411
10241
  async onAfterConnect(_client) {
9412
- logger92.debug("Clerk integration connected");
10242
+ logger110.debug("Clerk integration connected");
9413
10243
  }
9414
10244
  };
9415
10245
  }
9416
10246
  // src/integrations/cloudflare.ts
9417
- var logger93 = createLogger("Cloudflare");
10247
+ var logger111 = createLogger("Cloudflare");
9418
10248
  var CLOUDFLARE_TOOLS = [
9419
10249
  "cloudflare_verify_token",
9420
10250
  "cloudflare_get_user",
@@ -9453,10 +10283,10 @@ function cloudflareIntegration(config = {}) {
9453
10283
  return { Authorization: `Bearer ${apiToken.trim()}` };
9454
10284
  },
9455
10285
  async onInit(_client) {
9456
- logger93.debug("Cloudflare integration initialized (API token)");
10286
+ logger111.debug("Cloudflare integration initialized (API token)");
9457
10287
  },
9458
10288
  async onAfterConnect(_client) {
9459
- logger93.debug("Cloudflare integration connected");
10289
+ logger111.debug("Cloudflare integration connected");
9460
10290
  }
9461
10291
  };
9462
10292
  }
@@ -9482,15 +10312,15 @@ function cloudflareIntegration(config = {}) {
9482
10312
  tools: [...CLOUDFLARE_TOOLS],
9483
10313
  oauth,
9484
10314
  async onInit(_client) {
9485
- logger93.debug("Cloudflare integration initialized (OAuth)");
10315
+ logger111.debug("Cloudflare integration initialized (OAuth)");
9486
10316
  },
9487
10317
  async onAfterConnect(_client) {
9488
- logger93.debug("Cloudflare integration connected");
10318
+ logger111.debug("Cloudflare integration connected");
9489
10319
  }
9490
10320
  };
9491
10321
  }
9492
10322
  // src/integrations/clickup.ts
9493
- var logger94 = createLogger("ClickUp");
10323
+ var logger112 = createLogger("ClickUp");
9494
10324
  var CLICKUP_TOOLS = [
9495
10325
  "clickup_get_authorized_user",
9496
10326
  "clickup_list_teams",
@@ -9526,15 +10356,15 @@ function clickupIntegration(config = {}) {
9526
10356
  tools: [...CLICKUP_TOOLS],
9527
10357
  oauth,
9528
10358
  async onInit(_client) {
9529
- logger94.debug("ClickUp integration initialized");
10359
+ logger112.debug("ClickUp integration initialized");
9530
10360
  },
9531
10361
  async onAfterConnect(_client) {
9532
- logger94.debug("ClickUp integration connected");
10362
+ logger112.debug("ClickUp integration connected");
9533
10363
  }
9534
10364
  };
9535
10365
  }
9536
10366
  // src/integrations/excel.ts
9537
- var logger95 = createLogger("Excel");
10367
+ var logger113 = createLogger("Excel");
9538
10368
  var EXCEL_TOOLS = [
9539
10369
  "excel_add_table_rows",
9540
10370
  "excel_add_worksheet",
@@ -9570,10 +10400,10 @@ function excelIntegration(config = {}) {
9570
10400
  tools: [...EXCEL_TOOLS],
9571
10401
  oauth,
9572
10402
  async onInit(_client) {
9573
- logger95.debug("Excel integration initialized");
10403
+ logger113.debug("Excel integration initialized");
9574
10404
  },
9575
10405
  async onAfterConnect(_client) {
9576
- logger95.debug("Excel integration connected");
10406
+ logger113.debug("Excel integration connected");
9577
10407
  }
9578
10408
  };
9579
10409
  }
@@ -9603,7 +10433,7 @@ function ga4Integration(config = {}) {
9603
10433
  };
9604
10434
  }
9605
10435
  // src/integrations/gdrive.ts
9606
- var logger96 = createLogger("Google Drive");
10436
+ var logger114 = createLogger("Google Drive");
9607
10437
  var GDRIVE_TOOLS = [
9608
10438
  "gdrive_copy_file",
9609
10439
  "gdrive_create_folder",
@@ -9637,15 +10467,15 @@ function gdriveIntegration(config = {}) {
9637
10467
  tools: [...GDRIVE_TOOLS],
9638
10468
  oauth,
9639
10469
  async onInit(_client) {
9640
- logger96.debug("Google Drive integration initialized");
10470
+ logger114.debug("Google Drive integration initialized");
9641
10471
  },
9642
10472
  async onAfterConnect(_client) {
9643
- logger96.debug("Google Drive integration connected");
10473
+ logger114.debug("Google Drive integration connected");
9644
10474
  }
9645
10475
  };
9646
10476
  }
9647
10477
  // src/integrations/gitlab.ts
9648
- var logger97 = createLogger("GitLab");
10478
+ var logger115 = createLogger("GitLab");
9649
10479
  var GITLAB_TOOLS = [
9650
10480
  "gitlab_list_projects",
9651
10481
  "gitlab_list_own_projects",
@@ -9692,15 +10522,15 @@ function gitlabIntegration(config = {}) {
9692
10522
  tools: [...GITLAB_TOOLS],
9693
10523
  oauth,
9694
10524
  async onInit(_client) {
9695
- logger97.debug("GitLab integration initialized");
10525
+ logger115.debug("GitLab integration initialized");
9696
10526
  },
9697
10527
  async onAfterConnect(_client) {
9698
- logger97.debug("GitLab integration connected");
10528
+ logger115.debug("GitLab integration connected");
9699
10529
  }
9700
10530
  };
9701
10531
  }
9702
10532
  // src/integrations/gmeet.ts
9703
- var logger98 = createLogger("Google Meet");
10533
+ var logger116 = createLogger("Google Meet");
9704
10534
  var GMEET_TOOLS = [
9705
10535
  "gmeet_add_meet_to_event",
9706
10536
  "gmeet_create_meeting",
@@ -9728,15 +10558,15 @@ function gmeetIntegration(config = {}) {
9728
10558
  tools: [...GMEET_TOOLS],
9729
10559
  oauth,
9730
10560
  async onInit(_client) {
9731
- logger98.debug("Google Meet integration initialized");
10561
+ logger116.debug("Google Meet integration initialized");
9732
10562
  },
9733
10563
  async onAfterConnect(_client) {
9734
- logger98.debug("Google Meet integration connected");
10564
+ logger116.debug("Google Meet integration connected");
9735
10565
  }
9736
10566
  };
9737
10567
  }
9738
10568
  // src/integrations/monday.ts
9739
- var logger99 = createLogger("Monday");
10569
+ var logger117 = createLogger("Monday");
9740
10570
  var MONDAY_TOOLS = [
9741
10571
  "monday_me",
9742
10572
  "monday_list_workspaces",
@@ -9773,10 +10603,10 @@ function mondayIntegration(config = {}) {
9773
10603
  tools: [...MONDAY_TOOLS],
9774
10604
  oauth,
9775
10605
  async onInit(_client) {
9776
- logger99.debug("Monday.com integration initialized");
10606
+ logger117.debug("Monday.com integration initialized");
9777
10607
  },
9778
10608
  async onAfterConnect(_client) {
9779
- logger99.debug("Monday.com integration connected");
10609
+ logger117.debug("Monday.com integration connected");
9780
10610
  }
9781
10611
  };
9782
10612
  }
@@ -9816,7 +10646,7 @@ function planetscaleIntegration(config = {}) {
9816
10646
  };
9817
10647
  }
9818
10648
  // src/integrations/powerpoint.ts
9819
- var logger100 = createLogger("PowerPoint");
10649
+ var logger118 = createLogger("PowerPoint");
9820
10650
  var POWERPOINT_TOOLS = [
9821
10651
  "powerpoint_copy",
9822
10652
  "powerpoint_create",
@@ -9843,10 +10673,10 @@ function powerpointIntegration(config = {}) {
9843
10673
  tools: [...POWERPOINT_TOOLS],
9844
10674
  oauth,
9845
10675
  async onInit(_client) {
9846
- logger100.debug("PowerPoint integration initialized");
10676
+ logger118.debug("PowerPoint integration initialized");
9847
10677
  },
9848
10678
  async onAfterConnect(_client) {
9849
- logger100.debug("PowerPoint integration connected");
10679
+ logger118.debug("PowerPoint integration connected");
9850
10680
  }
9851
10681
  };
9852
10682
  }
@@ -9881,7 +10711,7 @@ function redditIntegration(config = {}) {
9881
10711
  };
9882
10712
  }
9883
10713
  // src/integrations/resend.ts
9884
- var logger101 = createLogger("Resend");
10714
+ var logger119 = createLogger("Resend");
9885
10715
  var RESEND_TOOLS = [
9886
10716
  "resend_list_domains",
9887
10717
  "resend_get_domain",
@@ -9906,15 +10736,15 @@ function resendIntegration(options = {}) {
9906
10736
  return { Authorization: `Bearer ${apiKey}` };
9907
10737
  },
9908
10738
  async onInit(_client) {
9909
- logger101.debug("Resend integration initialized");
10739
+ logger119.debug("Resend integration initialized");
9910
10740
  },
9911
10741
  async onAfterConnect(_client) {
9912
- logger101.debug("Resend integration connected");
10742
+ logger119.debug("Resend integration connected");
9913
10743
  }
9914
10744
  };
9915
10745
  }
9916
10746
  // src/integrations/word.ts
9917
- var logger102 = createLogger("Word");
10747
+ var logger120 = createLogger("Word");
9918
10748
  var WORD_TOOLS = [
9919
10749
  "word_copy",
9920
10750
  "word_create",
@@ -9941,15 +10771,15 @@ function wordIntegration(config = {}) {
9941
10771
  tools: [...WORD_TOOLS],
9942
10772
  oauth,
9943
10773
  async onInit(_client) {
9944
- logger102.debug("Word integration initialized");
10774
+ logger120.debug("Word integration initialized");
9945
10775
  },
9946
10776
  async onAfterConnect(_client) {
9947
- logger102.debug("Word integration connected");
10777
+ logger120.debug("Word integration connected");
9948
10778
  }
9949
10779
  };
9950
10780
  }
9951
10781
  // src/integrations/zapier.ts
9952
- var logger103 = createLogger("Zapier");
10782
+ var logger121 = createLogger("Zapier");
9953
10783
  var ZAPIER_TOOLS = [
9954
10784
  "zapier_get_profile",
9955
10785
  "zapier_list_zaps",
@@ -9981,15 +10811,15 @@ function zapierIntegration(config = {}) {
9981
10811
  tools: [...ZAPIER_TOOLS],
9982
10812
  oauth,
9983
10813
  async onInit(_client) {
9984
- logger103.debug("Zapier integration initialized");
10814
+ logger121.debug("Zapier integration initialized");
9985
10815
  },
9986
10816
  async onAfterConnect(_client) {
9987
- logger103.debug("Zapier integration connected");
10817
+ logger121.debug("Zapier integration connected");
9988
10818
  }
9989
10819
  };
9990
10820
  }
9991
10821
  // src/integrations/zoom.ts
9992
- var logger104 = createLogger("Zoom");
10822
+ var logger122 = createLogger("Zoom");
9993
10823
  var ZOOM_TOOLS = [
9994
10824
  "zoom_get_user",
9995
10825
  "zoom_list_meetings",
@@ -10015,10 +10845,10 @@ function zoomIntegration(config = {}) {
10015
10845
  tools: [...ZOOM_TOOLS],
10016
10846
  oauth,
10017
10847
  async onInit(_client) {
10018
- logger104.debug("Zoom integration initialized");
10848
+ logger122.debug("Zoom integration initialized");
10019
10849
  },
10020
10850
  async onAfterConnect(_client) {
10021
- logger104.debug("Zoom integration connected");
10851
+ logger122.debug("Zoom integration connected");
10022
10852
  }
10023
10853
  };
10024
10854
  }
@@ -10036,7 +10866,7 @@ function validateStepLimit(stepIndex, maxSteps) {
10036
10866
  return { valid: true };
10037
10867
  }
10038
10868
  // src/triggers/webhooks.ts
10039
- var logger105 = createLogger("Webhooks", "server");
10869
+ var logger123 = createLogger("Webhooks", "server");
10040
10870
  async function signPayload(payload, secret) {
10041
10871
  const encoder = new TextEncoder;
10042
10872
  const data = encoder.encode(JSON.stringify(payload));
@@ -10062,7 +10892,7 @@ async function deliverWebhook(webhook, payload, timeoutMs) {
10062
10892
  signal: controller.signal
10063
10893
  });
10064
10894
  if (!response.ok) {
10065
- logger105.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
10895
+ logger123.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
10066
10896
  }
10067
10897
  } finally {
10068
10898
  clearTimeout(timeout);
@@ -10075,7 +10905,7 @@ async function deliverWebhooks(webhooks, payload, timeoutMs) {
10075
10905
  for (let i = 0;i < results.length; i++) {
10076
10906
  const result = results[i];
10077
10907
  if (result.status === "rejected") {
10078
- logger105.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
10908
+ logger123.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
10079
10909
  }
10080
10910
  }
10081
10911
  }
@@ -10190,10 +11020,19 @@ var client = createMCPClient({
10190
11020
  });
10191
11021
  export {
10192
11022
  zoomIntegration,
11023
+ zohoProjectsIntegration,
11024
+ zohoMailIntegration,
11025
+ zohoInvoiceIntegration,
11026
+ zohoDeskIntegration,
11027
+ zohoCrmIntegration,
11028
+ zohoCampaignsIntegration,
11029
+ zohoBooksIntegration,
11030
+ zohoAnalyticsIntegration,
10193
11031
  zendeskIntegration,
10194
11032
  zapierIntegration,
10195
11033
  youtubeIntegration,
10196
11034
  xeroIntegration,
11035
+ xIntegration,
10197
11036
  workosIntegration,
10198
11037
  workdayIntegration,
10199
11038
  wordIntegration,
@@ -10204,6 +11043,7 @@ export {
10204
11043
  validateStepLimit,
10205
11044
  upstashIntegration,
10206
11045
  typeformIntegration,
11046
+ twitchIntegration,
10207
11047
  trelloIntegration,
10208
11048
  todoistIntegration,
10209
11049
  toWebRequest,
@@ -10219,6 +11059,7 @@ export {
10219
11059
  squareIntegration,
10220
11060
  spotifyIntegration,
10221
11061
  smartthingsIntegration,
11062
+ smartsheetIntegration,
10222
11063
  slackIntegration,
10223
11064
  shouldRefreshToken,
10224
11065
  shopifyIntegration,
@@ -10240,6 +11081,8 @@ export {
10240
11081
  polarIntegration,
10241
11082
  plannerIntegration,
10242
11083
  planetscaleIntegration,
11084
+ pipedriveIntegration,
11085
+ pinterestIntegration,
10243
11086
  phantomIntegration,
10244
11087
  paypalIntegration,
10245
11088
  parseState,
@@ -10252,6 +11095,7 @@ export {
10252
11095
  netlifyIntegration,
10253
11096
  neonIntegration,
10254
11097
  mondayIntegration,
11098
+ miroIntegration,
10255
11099
  mercuryIntegration,
10256
11100
  mailchimpIntegration,
10257
11101
  linkedinIntegration,
@@ -10267,6 +11111,7 @@ export {
10267
11111
  gslidesIntegration,
10268
11112
  gsheetsIntegration,
10269
11113
  granolaIntegration,
11114
+ googleAdsIntegration,
10270
11115
  gmeetIntegration,
10271
11116
  gmailIntegration,
10272
11117
  gkeepIntegration,
@@ -10284,12 +11129,15 @@ export {
10284
11129
  gcalIntegration,
10285
11130
  ga4Integration,
10286
11131
  fromNodeHeaders,
11132
+ freshserviceIntegration,
10287
11133
  figmaIntegration,
10288
11134
  facebookIntegration,
10289
11135
  excelIntegration,
10290
11136
  etoroIntegration,
10291
11137
  encodeRedisCloudBearerToken,
11138
+ ebayIntegration,
10292
11139
  dropboxIntegration,
11140
+ docusignIntegration,
10293
11141
  discordIntegration,
10294
11142
  deliverWebhooks,
10295
11143
  datadogIntegration,