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
@@ -302,6 +302,78 @@ function integrationLibraryPresentationFields(integration) {
302
302
  var INTEGRATION_LIBRARY_METADATA;
303
303
  var init_library_metadata = __esm(() => {
304
304
  INTEGRATION_LIBRARY_METADATA = {
305
+ google_ads: {
306
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
307
+ category: "Marketing"
308
+ },
309
+ pinterest: {
310
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
311
+ category: "Social Media"
312
+ },
313
+ twitch: {
314
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
315
+ category: "Entertainment"
316
+ },
317
+ x: {
318
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
319
+ category: "Social Media"
320
+ },
321
+ ebay: {
322
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
323
+ category: "Business"
324
+ },
325
+ miro: {
326
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
327
+ category: "Productivity"
328
+ },
329
+ smartsheet: {
330
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
331
+ category: "Productivity"
332
+ },
333
+ docusign: {
334
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
335
+ category: "Business"
336
+ },
337
+ pipedrive: {
338
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
339
+ category: "Business"
340
+ },
341
+ freshservice: {
342
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
343
+ category: "Business"
344
+ },
345
+ zoho_crm: {
346
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
347
+ category: "Business"
348
+ },
349
+ zoho_mail: {
350
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
351
+ category: "Communication"
352
+ },
353
+ zoho_desk: {
354
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
355
+ category: "Business"
356
+ },
357
+ zoho_books: {
358
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
359
+ category: "Finance"
360
+ },
361
+ zoho_projects: {
362
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
363
+ category: "Productivity"
364
+ },
365
+ zoho_campaigns: {
366
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
367
+ category: "Marketing"
368
+ },
369
+ zoho_analytics: {
370
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
371
+ category: "Analytics"
372
+ },
373
+ zoho_invoice: {
374
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
375
+ category: "Finance"
376
+ },
305
377
  airtable: {
306
378
  description: "Manage Airtable bases, tables, and records",
307
379
  category: "Business"
@@ -488,15 +560,15 @@ var init_library_metadata = __esm(() => {
488
560
  },
489
561
  smartthings: {
490
562
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
491
- category: "Other"
563
+ category: "Lifestyle"
492
564
  },
493
565
  spotify: {
494
566
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
495
- category: "Other"
567
+ category: "Entertainment"
496
568
  },
497
569
  strava: {
498
570
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
499
- category: "Other"
571
+ category: "Lifestyle"
500
572
  },
501
573
  square: {
502
574
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -544,7 +616,7 @@ var init_library_metadata = __esm(() => {
544
616
  },
545
617
  youtube: {
546
618
  description: "Search and access YouTube videos and channels",
547
- category: "Social Media"
619
+ category: "Entertainment"
548
620
  },
549
621
  zoom: {
550
622
  description: "Manage Zoom user profile and meetings",
@@ -688,7 +760,7 @@ var init_library_metadata = __esm(() => {
688
760
  },
689
761
  tiktok: {
690
762
  description: "Manage TikTok videos, account info, and creator analytics",
691
- category: "Social Media"
763
+ category: "Entertainment"
692
764
  },
693
765
  tldraw: {
694
766
  description: "Create and manage tldraw collaborative whiteboards",
@@ -302,6 +302,78 @@ function integrationLibraryPresentationFields(integration) {
302
302
  var INTEGRATION_LIBRARY_METADATA;
303
303
  var init_library_metadata = __esm(() => {
304
304
  INTEGRATION_LIBRARY_METADATA = {
305
+ google_ads: {
306
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
307
+ category: "Marketing"
308
+ },
309
+ pinterest: {
310
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
311
+ category: "Social Media"
312
+ },
313
+ twitch: {
314
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
315
+ category: "Entertainment"
316
+ },
317
+ x: {
318
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
319
+ category: "Social Media"
320
+ },
321
+ ebay: {
322
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
323
+ category: "Business"
324
+ },
325
+ miro: {
326
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
327
+ category: "Productivity"
328
+ },
329
+ smartsheet: {
330
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
331
+ category: "Productivity"
332
+ },
333
+ docusign: {
334
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
335
+ category: "Business"
336
+ },
337
+ pipedrive: {
338
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
339
+ category: "Business"
340
+ },
341
+ freshservice: {
342
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
343
+ category: "Business"
344
+ },
345
+ zoho_crm: {
346
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
347
+ category: "Business"
348
+ },
349
+ zoho_mail: {
350
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
351
+ category: "Communication"
352
+ },
353
+ zoho_desk: {
354
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
355
+ category: "Business"
356
+ },
357
+ zoho_books: {
358
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
359
+ category: "Finance"
360
+ },
361
+ zoho_projects: {
362
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
363
+ category: "Productivity"
364
+ },
365
+ zoho_campaigns: {
366
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
367
+ category: "Marketing"
368
+ },
369
+ zoho_analytics: {
370
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
371
+ category: "Analytics"
372
+ },
373
+ zoho_invoice: {
374
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
375
+ category: "Finance"
376
+ },
305
377
  airtable: {
306
378
  description: "Manage Airtable bases, tables, and records",
307
379
  category: "Business"
@@ -488,15 +560,15 @@ var init_library_metadata = __esm(() => {
488
560
  },
489
561
  smartthings: {
490
562
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
491
- category: "Other"
563
+ category: "Lifestyle"
492
564
  },
493
565
  spotify: {
494
566
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
495
- category: "Other"
567
+ category: "Entertainment"
496
568
  },
497
569
  strava: {
498
570
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
499
- category: "Other"
571
+ category: "Lifestyle"
500
572
  },
501
573
  square: {
502
574
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -544,7 +616,7 @@ var init_library_metadata = __esm(() => {
544
616
  },
545
617
  youtube: {
546
618
  description: "Search and access YouTube videos and channels",
547
- category: "Social Media"
619
+ category: "Entertainment"
548
620
  },
549
621
  zoom: {
550
622
  description: "Manage Zoom user profile and meetings",
@@ -688,7 +760,7 @@ var init_library_metadata = __esm(() => {
688
760
  },
689
761
  tiktok: {
690
762
  description: "Manage TikTok videos, account info, and creator analytics",
691
- category: "Social Media"
763
+ category: "Entertainment"
692
764
  },
693
765
  tldraw: {
694
766
  description: "Create and manage tldraw collaborative whiteboards",
@@ -302,6 +302,78 @@ function integrationLibraryPresentationFields(integration) {
302
302
  var INTEGRATION_LIBRARY_METADATA;
303
303
  var init_library_metadata = __esm(() => {
304
304
  INTEGRATION_LIBRARY_METADATA = {
305
+ google_ads: {
306
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
307
+ category: "Marketing"
308
+ },
309
+ pinterest: {
310
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
311
+ category: "Social Media"
312
+ },
313
+ twitch: {
314
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
315
+ category: "Entertainment"
316
+ },
317
+ x: {
318
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
319
+ category: "Social Media"
320
+ },
321
+ ebay: {
322
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
323
+ category: "Business"
324
+ },
325
+ miro: {
326
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
327
+ category: "Productivity"
328
+ },
329
+ smartsheet: {
330
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
331
+ category: "Productivity"
332
+ },
333
+ docusign: {
334
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
335
+ category: "Business"
336
+ },
337
+ pipedrive: {
338
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
339
+ category: "Business"
340
+ },
341
+ freshservice: {
342
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
343
+ category: "Business"
344
+ },
345
+ zoho_crm: {
346
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
347
+ category: "Business"
348
+ },
349
+ zoho_mail: {
350
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
351
+ category: "Communication"
352
+ },
353
+ zoho_desk: {
354
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
355
+ category: "Business"
356
+ },
357
+ zoho_books: {
358
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
359
+ category: "Finance"
360
+ },
361
+ zoho_projects: {
362
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
363
+ category: "Productivity"
364
+ },
365
+ zoho_campaigns: {
366
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
367
+ category: "Marketing"
368
+ },
369
+ zoho_analytics: {
370
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
371
+ category: "Analytics"
372
+ },
373
+ zoho_invoice: {
374
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
375
+ category: "Finance"
376
+ },
305
377
  airtable: {
306
378
  description: "Manage Airtable bases, tables, and records",
307
379
  category: "Business"
@@ -488,15 +560,15 @@ var init_library_metadata = __esm(() => {
488
560
  },
489
561
  smartthings: {
490
562
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
491
- category: "Other"
563
+ category: "Lifestyle"
492
564
  },
493
565
  spotify: {
494
566
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
495
- category: "Other"
567
+ category: "Entertainment"
496
568
  },
497
569
  strava: {
498
570
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
499
- category: "Other"
571
+ category: "Lifestyle"
500
572
  },
501
573
  square: {
502
574
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -544,7 +616,7 @@ var init_library_metadata = __esm(() => {
544
616
  },
545
617
  youtube: {
546
618
  description: "Search and access YouTube videos and channels",
547
- category: "Social Media"
619
+ category: "Entertainment"
548
620
  },
549
621
  zoom: {
550
622
  description: "Manage Zoom user profile and meetings",
@@ -688,7 +760,7 @@ var init_library_metadata = __esm(() => {
688
760
  },
689
761
  tiktok: {
690
762
  description: "Manage TikTok videos, account info, and creator analytics",
691
- category: "Social Media"
763
+ category: "Entertainment"
692
764
  },
693
765
  tldraw: {
694
766
  description: "Create and manage tldraw collaborative whiteboards",
@@ -302,6 +302,78 @@ function integrationLibraryPresentationFields(integration) {
302
302
  var INTEGRATION_LIBRARY_METADATA;
303
303
  var init_library_metadata = __esm(() => {
304
304
  INTEGRATION_LIBRARY_METADATA = {
305
+ google_ads: {
306
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
307
+ category: "Marketing"
308
+ },
309
+ pinterest: {
310
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
311
+ category: "Social Media"
312
+ },
313
+ twitch: {
314
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
315
+ category: "Entertainment"
316
+ },
317
+ x: {
318
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
319
+ category: "Social Media"
320
+ },
321
+ ebay: {
322
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
323
+ category: "Business"
324
+ },
325
+ miro: {
326
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
327
+ category: "Productivity"
328
+ },
329
+ smartsheet: {
330
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
331
+ category: "Productivity"
332
+ },
333
+ docusign: {
334
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
335
+ category: "Business"
336
+ },
337
+ pipedrive: {
338
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
339
+ category: "Business"
340
+ },
341
+ freshservice: {
342
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
343
+ category: "Business"
344
+ },
345
+ zoho_crm: {
346
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
347
+ category: "Business"
348
+ },
349
+ zoho_mail: {
350
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
351
+ category: "Communication"
352
+ },
353
+ zoho_desk: {
354
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
355
+ category: "Business"
356
+ },
357
+ zoho_books: {
358
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
359
+ category: "Finance"
360
+ },
361
+ zoho_projects: {
362
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
363
+ category: "Productivity"
364
+ },
365
+ zoho_campaigns: {
366
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
367
+ category: "Marketing"
368
+ },
369
+ zoho_analytics: {
370
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
371
+ category: "Analytics"
372
+ },
373
+ zoho_invoice: {
374
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
375
+ category: "Finance"
376
+ },
305
377
  airtable: {
306
378
  description: "Manage Airtable bases, tables, and records",
307
379
  category: "Business"
@@ -488,15 +560,15 @@ var init_library_metadata = __esm(() => {
488
560
  },
489
561
  smartthings: {
490
562
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
491
- category: "Other"
563
+ category: "Lifestyle"
492
564
  },
493
565
  spotify: {
494
566
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
495
- category: "Other"
567
+ category: "Entertainment"
496
568
  },
497
569
  strava: {
498
570
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
499
- category: "Other"
571
+ category: "Lifestyle"
500
572
  },
501
573
  square: {
502
574
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -544,7 +616,7 @@ var init_library_metadata = __esm(() => {
544
616
  },
545
617
  youtube: {
546
618
  description: "Search and access YouTube videos and channels",
547
- category: "Social Media"
619
+ category: "Entertainment"
548
620
  },
549
621
  zoom: {
550
622
  description: "Manage Zoom user profile and meetings",
@@ -688,7 +760,7 @@ var init_library_metadata = __esm(() => {
688
760
  },
689
761
  tiktok: {
690
762
  description: "Manage TikTok videos, account info, and creator analytics",
691
- category: "Social Media"
763
+ category: "Entertainment"
692
764
  },
693
765
  tldraw: {
694
766
  description: "Create and manage tldraw collaborative whiteboards",
@@ -302,6 +302,78 @@ function integrationLibraryPresentationFields(integration) {
302
302
  var INTEGRATION_LIBRARY_METADATA;
303
303
  var init_library_metadata = __esm(() => {
304
304
  INTEGRATION_LIBRARY_METADATA = {
305
+ google_ads: {
306
+ description: "Manage Google Ads customers, campaigns, ad groups, ads, keywords, and conversions",
307
+ category: "Marketing"
308
+ },
309
+ pinterest: {
310
+ description: "Manage Pinterest boards, pins, search, ad accounts, and campaigns",
311
+ category: "Social Media"
312
+ },
313
+ twitch: {
314
+ description: "Manage Twitch users, streams, channels, clips, videos, games, follows, and subscriptions",
315
+ category: "Entertainment"
316
+ },
317
+ x: {
318
+ description: "Manage X users, posts, timelines, likes, bookmarks, follows, and posting",
319
+ category: "Social Media"
320
+ },
321
+ ebay: {
322
+ description: "Manage eBay browse, inventory, offers, orders, and fulfillment APIs",
323
+ category: "Business"
324
+ },
325
+ miro: {
326
+ description: "Manage Miro boards, board items, comments, members, and collaborators",
327
+ category: "Productivity"
328
+ },
329
+ smartsheet: {
330
+ description: "Manage Smartsheet sheets, rows, columns, workspaces, reports, and attachments",
331
+ category: "Productivity"
332
+ },
333
+ docusign: {
334
+ description: "Manage DocuSign eSignature accounts, envelopes, recipients, documents, and templates",
335
+ category: "Business"
336
+ },
337
+ pipedrive: {
338
+ description: "Manage Pipedrive deals, leads, people, organizations, activities, notes, pipelines, and products",
339
+ category: "Business"
340
+ },
341
+ freshservice: {
342
+ description: "Manage Freshservice tickets, requesters, agents, assets, changes, problems, releases, and solutions",
343
+ category: "Business"
344
+ },
345
+ zoho_crm: {
346
+ description: "Manage Zoho CRM modules, records, users, org settings, search, and COQL",
347
+ category: "Business"
348
+ },
349
+ zoho_mail: {
350
+ description: "Manage Zoho Mail accounts, folders, messages, labels, search, and sending",
351
+ category: "Communication"
352
+ },
353
+ zoho_desk: {
354
+ description: "Manage Zoho Desk tickets, contacts, accounts, agents, departments, and articles",
355
+ category: "Business"
356
+ },
357
+ zoho_books: {
358
+ description: "Manage Zoho Books organizations, contacts, items, invoices, bills, payments, and reports",
359
+ category: "Finance"
360
+ },
361
+ zoho_projects: {
362
+ description: "Manage Zoho Projects portals, projects, milestones, tasks, issues, and timesheets",
363
+ category: "Productivity"
364
+ },
365
+ zoho_campaigns: {
366
+ description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends",
367
+ category: "Marketing"
368
+ },
369
+ zoho_analytics: {
370
+ description: "Manage Zoho Analytics workspaces, views, imports, exports, and query APIs",
371
+ category: "Analytics"
372
+ },
373
+ zoho_invoice: {
374
+ description: "Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports",
375
+ category: "Finance"
376
+ },
305
377
  airtable: {
306
378
  description: "Manage Airtable bases, tables, and records",
307
379
  category: "Business"
@@ -488,15 +560,15 @@ var init_library_metadata = __esm(() => {
488
560
  },
489
561
  smartthings: {
490
562
  description: "Manage SmartThings locations, rooms, devices, scenes, and rules",
491
- category: "Other"
563
+ category: "Lifestyle"
492
564
  },
493
565
  spotify: {
494
566
  description: "Search Spotify, manage playlists and saved tracks, and control playback",
495
- category: "Other"
567
+ category: "Entertainment"
496
568
  },
497
569
  strava: {
498
570
  description: "Manage Strava athletes, activities, routes, clubs, segments, streams, gear, and uploads",
499
- category: "Other"
571
+ category: "Lifestyle"
500
572
  },
501
573
  square: {
502
574
  description: "Manage Square merchants, locations, customers, catalog, orders, payments, refunds, and invoices",
@@ -544,7 +616,7 @@ var init_library_metadata = __esm(() => {
544
616
  },
545
617
  youtube: {
546
618
  description: "Search and access YouTube videos and channels",
547
- category: "Social Media"
619
+ category: "Entertainment"
548
620
  },
549
621
  zoom: {
550
622
  description: "Manage Zoom user profile and meetings",
@@ -688,7 +760,7 @@ var init_library_metadata = __esm(() => {
688
760
  },
689
761
  tiktok: {
690
762
  description: "Manage TikTok videos, account info, and creator analytics",
691
- category: "Social Media"
763
+ category: "Entertainment"
692
764
  },
693
765
  tldraw: {
694
766
  description: "Create and manage tldraw collaborative whiteboards",