integrate-sdk 0.9.50-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.
- package/dist/adapters/auto-routes.js +72 -0
- package/dist/adapters/base-handler.js +72 -0
- package/dist/adapters/index.js +72 -0
- package/dist/adapters/nextjs.js +72 -0
- package/dist/adapters/solid-start.js +72 -0
- package/dist/adapters/svelte-kit.js +72 -0
- package/dist/index.js +1090 -244
- package/dist/oauth.js +72 -0
- package/dist/server.js +72 -0
- package/dist/src/client.d.ts +136 -1
- package/dist/src/client.d.ts.map +1 -1
- package/dist/src/index.d.ts +36 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/integrations/docusign-client.d.ts +41 -0
- package/dist/src/integrations/docusign-client.d.ts.map +1 -0
- package/dist/src/integrations/docusign.d.ts +16 -0
- package/dist/src/integrations/docusign.d.ts.map +1 -0
- package/dist/src/integrations/ebay-client.d.ts +39 -0
- package/dist/src/integrations/ebay-client.d.ts.map +1 -0
- package/dist/src/integrations/ebay.d.ts +15 -0
- package/dist/src/integrations/ebay.d.ts.map +1 -0
- package/dist/src/integrations/freshservice-client.d.ts +48 -0
- package/dist/src/integrations/freshservice-client.d.ts.map +1 -0
- package/dist/src/integrations/freshservice.d.ts +15 -0
- package/dist/src/integrations/freshservice.d.ts.map +1 -0
- package/dist/src/integrations/google_ads-client.d.ts +35 -0
- package/dist/src/integrations/google_ads-client.d.ts.map +1 -0
- package/dist/src/integrations/google_ads.d.ts +16 -0
- package/dist/src/integrations/google_ads.d.ts.map +1 -0
- package/dist/src/integrations/library-metadata.d.ts +1 -1
- package/dist/src/integrations/library-metadata.d.ts.map +1 -1
- package/dist/src/integrations/miro-client.d.ts +33 -0
- package/dist/src/integrations/miro-client.d.ts.map +1 -0
- package/dist/src/integrations/miro.d.ts +14 -0
- package/dist/src/integrations/miro.d.ts.map +1 -0
- package/dist/src/integrations/pinterest-client.d.ts +33 -0
- package/dist/src/integrations/pinterest-client.d.ts.map +1 -0
- package/dist/src/integrations/pinterest.d.ts +14 -0
- package/dist/src/integrations/pinterest.d.ts.map +1 -0
- package/dist/src/integrations/pipedrive-client.d.ts +48 -0
- package/dist/src/integrations/pipedrive-client.d.ts.map +1 -0
- package/dist/src/integrations/pipedrive.d.ts +14 -0
- package/dist/src/integrations/pipedrive.d.ts.map +1 -0
- package/dist/src/integrations/smartsheet-client.d.ts +37 -0
- package/dist/src/integrations/smartsheet-client.d.ts.map +1 -0
- package/dist/src/integrations/smartsheet.d.ts +14 -0
- package/dist/src/integrations/smartsheet.d.ts.map +1 -0
- package/dist/src/integrations/twitch-client.d.ts +49 -0
- package/dist/src/integrations/twitch-client.d.ts.map +1 -0
- package/dist/src/integrations/twitch.d.ts +14 -0
- package/dist/src/integrations/twitch.d.ts.map +1 -0
- package/dist/src/integrations/x-client.d.ts +43 -0
- package/dist/src/integrations/x-client.d.ts.map +1 -0
- package/dist/src/integrations/x.d.ts +14 -0
- package/dist/src/integrations/x.d.ts.map +1 -0
- package/dist/src/integrations/zoho_analytics-client.d.ts +25 -0
- package/dist/src/integrations/zoho_analytics-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_analytics.d.ts +15 -0
- package/dist/src/integrations/zoho_analytics.d.ts.map +1 -0
- package/dist/src/integrations/zoho_books-client.d.ts +43 -0
- package/dist/src/integrations/zoho_books-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_books.d.ts +15 -0
- package/dist/src/integrations/zoho_books.d.ts.map +1 -0
- package/dist/src/integrations/zoho_campaigns-client.d.ts +24 -0
- package/dist/src/integrations/zoho_campaigns-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_campaigns.d.ts +15 -0
- package/dist/src/integrations/zoho_campaigns.d.ts.map +1 -0
- package/dist/src/integrations/zoho_crm-client.d.ts +39 -0
- package/dist/src/integrations/zoho_crm-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_crm.d.ts +15 -0
- package/dist/src/integrations/zoho_crm.d.ts.map +1 -0
- package/dist/src/integrations/zoho_desk-client.d.ts +31 -0
- package/dist/src/integrations/zoho_desk-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_desk.d.ts +15 -0
- package/dist/src/integrations/zoho_desk.d.ts.map +1 -0
- package/dist/src/integrations/zoho_invoice-client.d.ts +41 -0
- package/dist/src/integrations/zoho_invoice-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_invoice.d.ts +15 -0
- package/dist/src/integrations/zoho_invoice.d.ts.map +1 -0
- package/dist/src/integrations/zoho_mail-client.d.ts +31 -0
- package/dist/src/integrations/zoho_mail-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_mail.d.ts +15 -0
- package/dist/src/integrations/zoho_mail.d.ts.map +1 -0
- package/dist/src/integrations/zoho_projects-client.d.ts +37 -0
- package/dist/src/integrations/zoho_projects-client.d.ts.map +1 -0
- package/dist/src/integrations/zoho_projects.d.ts +15 -0
- package/dist/src/integrations/zoho_projects.d.ts.map +1 -0
- 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"
|
|
@@ -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"
|
package/dist/adapters/index.js
CHANGED
|
@@ -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"
|
package/dist/adapters/nextjs.js
CHANGED
|
@@ -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"
|
|
@@ -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"
|
|
@@ -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"
|