integrate-sdk 0.9.53-dev.0 → 0.9.53-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/server.js CHANGED
@@ -141,7 +141,7 @@ var init_library_metadata = __esm(() => {
141
141
  category: "Lifestyle"
142
142
  },
143
143
  google_home: {
144
- description: "Manage Google Home/Nest list devices, get device, execute device command, list structures, list rooms",
144
+ description: "Manage Google Home devices, structures, rooms, and device commands",
145
145
  category: "Lifestyle"
146
146
  },
147
147
  sonos: {
@@ -289,7 +289,7 @@ var init_library_metadata = __esm(() => {
289
289
  category: "Accounting"
290
290
  },
291
291
  sage: {
292
- description: "Manage Sage Accounting get business, list contacts, create contact, list products, list sales invoices",
292
+ description: "Manage Sage business details, contacts, products, and sales invoices",
293
293
  category: "Accounting"
294
294
  },
295
295
  freeagent: {
@@ -329,7 +329,7 @@ var init_library_metadata = __esm(() => {
329
329
  category: "Banking"
330
330
  },
331
331
  gocardless: {
332
- description: "Manage GoCardless Bank Account Data list institutions, create requisition, get requisition, get account, get balances",
332
+ description: "Manage GoCardless institutions, requisitions, accounts, balances, and transactions",
333
333
  category: "Banking"
334
334
  },
335
335
  google_ads: {
@@ -426,7 +426,7 @@ var init_library_metadata = __esm(() => {
426
426
  },
427
427
  calcom: {
428
428
  description: "Manage Cal.com bookings and schedules",
429
- category: "Business"
429
+ category: "Productivity"
430
430
  },
431
431
  canva: {
432
432
  description: "List and create Canva designs, manage folders, and export assets",
@@ -541,8 +541,8 @@ var init_library_metadata = __esm(() => {
541
541
  category: "Engineering"
542
542
  },
543
543
  ramp: {
544
- description: "Manage Ramp corporate cards, bills, and spend",
545
- category: "Business"
544
+ description: "Manage Ramp corporate cards, bills, reimbursements, and spend controls",
545
+ category: "Finance"
546
546
  },
547
547
  quickbooks: {
548
548
  description: "Manage QuickBooks Online accounting data, invoices, bills, payments, and reports",
@@ -638,7 +638,7 @@ var init_library_metadata = __esm(() => {
638
638
  },
639
639
  workos: {
640
640
  description: "Manage WorkOS organizations, users, directory sync, and AuthKit",
641
- category: "Infrastructure"
641
+ category: "Identity & Access"
642
642
  },
643
643
  whatsapp: {
644
644
  description: "Send WhatsApp messages and templates",
@@ -722,7 +722,7 @@ var init_library_metadata = __esm(() => {
722
722
  },
723
723
  clerk: {
724
724
  description: "Manage Clerk users, organizations, and authentication",
725
- category: "Infrastructure"
725
+ category: "Identity & Access"
726
726
  },
727
727
  clickup: {
728
728
  description: "Manage ClickUp tasks, lists, spaces, and workspaces",
@@ -802,7 +802,7 @@ var init_library_metadata = __esm(() => {
802
802
  },
803
803
  typeform: {
804
804
  description: "Create and manage Typeform surveys and responses",
805
- category: "Business"
805
+ category: "Productivity"
806
806
  },
807
807
  webflow: {
808
808
  description: "Manage Webflow sites, collections, and CMS content",
@@ -810,7 +810,7 @@ var init_library_metadata = __esm(() => {
810
810
  },
811
811
  workday: {
812
812
  description: "Read Workday HR data including workers, organizations, and pay",
813
- category: "Business"
813
+ category: "HR & Recruiting"
814
814
  },
815
815
  xero: {
816
816
  description: "Manage Xero invoices, contacts, and accounting data",
@@ -818,7 +818,7 @@ var init_library_metadata = __esm(() => {
818
818
  },
819
819
  zapier: {
820
820
  description: "Trigger and manage Zapier automation workflows",
821
- category: "Engineering"
821
+ category: "Productivity"
822
822
  }
823
823
  };
824
824
  });
@@ -8139,7 +8139,7 @@ function philipsHueIntegration(config = {}) {
8139
8139
  }
8140
8140
  // src/integrations/google_home.ts
8141
8141
  init_logger();
8142
- var logger56 = createLogger("Google Home/Nest");
8142
+ var logger56 = createLogger("Google Home");
8143
8143
  var GOOGLE_HOME_SCOPES = [
8144
8144
  "https://www.googleapis.com/auth/sdm.service"
8145
8145
  ];
@@ -8154,18 +8154,18 @@ function googleHomeIntegration(config = {}) {
8154
8154
  const oauth = { provider: "google_home", clientId: config.clientId ?? getEnv("GOOGLE_HOME_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("GOOGLE_HOME_CLIENT_SECRET"), scopes: config.scopes ?? [...GOOGLE_HOME_SCOPES], redirectUri: config.redirectUri, config };
8155
8155
  return {
8156
8156
  id: "google_home",
8157
- name: "Google Home/Nest",
8157
+ name: "Google Home",
8158
8158
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_home.png",
8159
- description: "Manage Google Home/Nest list devices, get device, execute device command, list structures, list rooms",
8159
+ description: "Manage Google Home devices, structures, rooms, and device commands",
8160
8160
  category: "Lifestyle",
8161
8161
  tools: [...GOOGLE_HOME_TOOLS],
8162
8162
  authType: "oauth",
8163
8163
  oauth,
8164
8164
  async onInit() {
8165
- logger56.debug("Google Home/Nest integration initialized");
8165
+ logger56.debug("Google Home integration initialized");
8166
8166
  },
8167
8167
  async onAfterConnect() {
8168
- logger56.debug("Google Home/Nest integration connected");
8168
+ logger56.debug("Google Home integration connected");
8169
8169
  }
8170
8170
  };
8171
8171
  }
@@ -9475,7 +9475,7 @@ function exactOnlineIntegration(config = {}) {
9475
9475
  }
9476
9476
  // src/integrations/sage.ts
9477
9477
  init_logger();
9478
- var logger93 = createLogger("Sage Accounting");
9478
+ var logger93 = createLogger("Sage");
9479
9479
  var SAGE_SCOPES = [
9480
9480
  "full_access"
9481
9481
  ];
@@ -9491,18 +9491,18 @@ function sageIntegration(config = {}) {
9491
9491
  const oauth = { provider: "sage", clientId: config.clientId ?? getEnv("SAGE_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("SAGE_CLIENT_SECRET"), scopes: config.scopes ?? [...SAGE_SCOPES], redirectUri: config.redirectUri, config };
9492
9492
  return {
9493
9493
  id: "sage",
9494
- name: "Sage Accounting",
9494
+ name: "Sage",
9495
9495
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/sage.png",
9496
- description: "Manage Sage Accounting get business, list contacts, create contact, list products, list sales invoices",
9496
+ description: "Manage Sage business details, contacts, products, and sales invoices",
9497
9497
  category: "Accounting",
9498
9498
  tools: [...SAGE_TOOLS],
9499
9499
  authType: "oauth",
9500
9500
  oauth,
9501
9501
  async onInit() {
9502
- logger93.debug("Sage Accounting integration initialized");
9502
+ logger93.debug("Sage integration initialized");
9503
9503
  },
9504
9504
  async onAfterConnect() {
9505
- logger93.debug("Sage Accounting integration connected");
9505
+ logger93.debug("Sage integration connected");
9506
9506
  }
9507
9507
  };
9508
9508
  }
@@ -9837,7 +9837,7 @@ function tinkIntegration(config = {}) {
9837
9837
  }
9838
9838
  // src/integrations/gocardless.ts
9839
9839
  init_logger();
9840
- var logger103 = createLogger("GoCardless Bank Account Data");
9840
+ var logger103 = createLogger("GoCardless");
9841
9841
  var GOCARDLESS_SCOPES = [
9842
9842
  "openid",
9843
9843
  "accounts",
@@ -9856,18 +9856,18 @@ function gocardlessIntegration(config = {}) {
9856
9856
  const oauth = { provider: "gocardless", clientId: config.clientId ?? getEnv("GOCARDLESS_CLIENT_ID"), clientSecret: config.clientSecret ?? getEnv("GOCARDLESS_CLIENT_SECRET"), scopes: config.scopes ?? [...GOCARDLESS_SCOPES], redirectUri: config.redirectUri, config };
9857
9857
  return {
9858
9858
  id: "gocardless",
9859
- name: "GoCardless Bank Account Data",
9859
+ name: "GoCardless",
9860
9860
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/gocardless.png",
9861
- description: "Manage GoCardless Bank Account Data list institutions, create requisition, get requisition, get account, get balances",
9861
+ description: "Manage GoCardless institutions, requisitions, accounts, balances, and transactions",
9862
9862
  category: "Banking",
9863
9863
  tools: [...GOCARDLESS_TOOLS],
9864
9864
  authType: "oauth",
9865
9865
  oauth,
9866
9866
  async onInit() {
9867
- logger103.debug("GoCardless Bank Account Data integration initialized");
9867
+ logger103.debug("GoCardless integration initialized");
9868
9868
  },
9869
9869
  async onAfterConnect() {
9870
- logger103.debug("GoCardless Bank Account Data integration connected");
9870
+ logger103.debug("GoCardless integration connected");
9871
9871
  }
9872
9872
  };
9873
9873
  }
@@ -10736,7 +10736,7 @@ function astronomerIntegration(options = {}) {
10736
10736
  name: "Astronomer",
10737
10737
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/astronomer.png",
10738
10738
  description: "Manage Astro organizations, workspaces, deployments, clusters, and deploy history via the Astro API v1",
10739
- category: "Infrastructure",
10739
+ category: "Engineering",
10740
10740
  tools: [...ASTRONOMER_TOOLS],
10741
10741
  authType: "apiKey",
10742
10742
  getHeaders() {
@@ -10778,7 +10778,7 @@ function betterstackIntegration(options = {}) {
10778
10778
  name: "Better Stack",
10779
10779
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/betterstack.png",
10780
10780
  description: "Ingest and manage log sources, collectors, and metrics with Better Stack Logs (Logtail) Telemetry API",
10781
- category: "Infrastructure",
10781
+ category: "Engineering",
10782
10782
  tools: [...BETTERSTACK_TOOLS],
10783
10783
  authType: "apiKey",
10784
10784
  getHeaders() {
@@ -11032,6 +11032,8 @@ function rampIntegration(config = {}) {
11032
11032
  id: "ramp",
11033
11033
  name: "Ramp",
11034
11034
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/ramp.jpeg",
11035
+ description: "Manage Ramp corporate cards, bills, reimbursements, and spend controls",
11036
+ category: "Finance",
11035
11037
  tools: [...RAMP_TOOLS],
11036
11038
  oauth,
11037
11039
  async onInit(_client) {
@@ -13242,7 +13244,7 @@ function convexIntegration(options = {}) {
13242
13244
  name: "Convex",
13243
13245
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/convex.png",
13244
13246
  description: "Manage Convex projects, deployments, regions, classes, and environment variables",
13245
- category: "Infrastructure",
13247
+ category: "Engineering",
13246
13248
  tools: [...CONVEX_TOOLS],
13247
13249
  authType: "apiKey",
13248
13250
  getHeaders() {
@@ -13802,8 +13804,8 @@ function clerkIntegration(options = {}) {
13802
13804
  id: "clerk",
13803
13805
  name: "Clerk",
13804
13806
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/clerk.png",
13805
- description: "Manage Clerk users, organizations, and sessions via the Backend API",
13806
- category: "Business",
13807
+ description: "Manage Clerk users, organizations, sessions, and authentication settings",
13808
+ category: "Identity & Access",
13807
13809
  tools: [...CLERK_TOOLS],
13808
13810
  authType: "apiKey",
13809
13811
  getHeaders() {
@@ -14155,7 +14157,7 @@ function workdayIntegration(config = {}) {
14155
14157
  name: "Workday",
14156
14158
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/workday.png",
14157
14159
  description: "Query Workday workers via the tenant REST API",
14158
- category: "Business",
14160
+ category: "HR & Recruiting",
14159
14161
  tools: [...WORKDAY_TOOLS],
14160
14162
  oauth,
14161
14163
  async onInit(_client) {
@@ -14192,7 +14194,7 @@ function workosIntegration(options = {}) {
14192
14194
  name: "WorkOS",
14193
14195
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/workos.png",
14194
14196
  description: "Manage WorkOS organizations, AuthKit users, memberships, and directory sync",
14195
- category: "Infrastructure",
14197
+ category: "Identity & Access",
14196
14198
  tools: [...WORKOS_TOOLS],
14197
14199
  authType: "apiKey",
14198
14200
  getHeaders() {
@@ -1 +1 @@
1
- {"version":3,"file":"ramp.d.ts","sourceRoot":"","sources":["../../../src/integrations/ramp.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,qBAAqB;IACpC,gEAAgE;IAChE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2FAA2F;IAC3F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,2DAA2D;IAC3D,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,UAAU,mNAUN,CAAC;AAGX,wBAAgB,eAAe,CAAC,MAAM,GAAE,qBAA0B,GAAG,cAAc,CAAC,MAAM,CAAC,CA6B1F;AAED;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAElD;;GAEG;AACH,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"ramp.d.ts","sourceRoot":"","sources":["../../../src/integrations/ramp.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,qBAAqB;IACpC,gEAAgE;IAChE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2FAA2F;IAC3F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,2DAA2D;IAC3D,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,UAAU,mNAUN,CAAC;AAGX,wBAAgB,eAAe,CAAC,MAAM,GAAE,qBAA0B,GAAG,cAAc,CAAC,MAAM,CAAC,CA+B1F;AAED;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAElD;;GAEG;AACH,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "integrate-sdk",
3
- "version": "0.9.53-dev.0",
3
+ "version": "0.9.53-dev.1",
4
4
  "description": "Type-safe 3rd party integration SDK for the Integrate MCP server",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",