@credal/actions 0.2.185 → 0.2.187
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/actions/actionMapper.js +28 -1
- package/dist/actions/autogen/templates.d.ts +4 -0
- package/dist/actions/autogen/templates.js +405 -5
- package/dist/actions/autogen/types.d.ts +256 -54
- package/dist/actions/autogen/types.js +87 -0
- package/dist/actions/groups.js +1 -4
- package/dist/actions/parse.d.ts +3 -0
- package/dist/actions/parse.js +1 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- package/dist/actions/providers/google-oauth/deleteRowFromSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/deleteRowFromSpreadsheet.js +56 -0
- package/dist/actions/providers/google-oauth/updateRowsInSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updateRowsInSpreadsheet.js +63 -0
- package/dist/actions/providers/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/salesforce/executeReport.d.ts +3 -0
- package/dist/actions/providers/salesforce/executeReport.js +36 -0
- package/dist/actions/providers/salesforce/getReportMetadata.d.ts +3 -0
- package/dist/actions/providers/salesforce/getReportMetadata.js +54 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
- package/dist/actions/providers/slack/archiveChannel.js +2 -9
- package/dist/actions/providers/slack/index.d.ts +1 -0
- package/dist/actions/providers/slack/index.js +37 -0
- package/dist/actions/providers/slack/listConversations.d.ts +3 -0
- package/dist/actions/providers/slack/listConversations.js +41 -0
- package/package.json +1 -1
- package/dist/actions/providers/github/fetchFile.d.ts +0 -3
- package/dist/actions/providers/github/fetchFile.js +0 -131
- package/dist/actions/providers/github/getContents.d.ts +0 -3
- package/dist/actions/providers/github/getContents.js +0 -41
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const genericFillTemplateDefinition = {
|
|
2
|
+
displayName: "Fill a template",
|
|
2
3
|
description: "Simple utility that takes a template and returns it filled in",
|
|
3
4
|
scopes: [],
|
|
4
5
|
tags: [],
|
|
@@ -26,6 +27,7 @@ export const genericFillTemplateDefinition = {
|
|
|
26
27
|
provider: "generic",
|
|
27
28
|
};
|
|
28
29
|
export const perplexityPerplexityDeepResearchDefinition = {
|
|
30
|
+
displayName: "Perplexity Deep Research",
|
|
29
31
|
description: "Performs deep research using Perplexity AI",
|
|
30
32
|
scopes: [],
|
|
31
33
|
tags: [],
|
|
@@ -108,6 +110,7 @@ export const perplexityPerplexityDeepResearchDefinition = {
|
|
|
108
110
|
provider: "perplexity",
|
|
109
111
|
};
|
|
110
112
|
export const asanaCommentTaskDefinition = {
|
|
113
|
+
displayName: "Comment on a task",
|
|
111
114
|
description: "Comments on an Asana task with specified content",
|
|
112
115
|
scopes: [],
|
|
113
116
|
tags: [],
|
|
@@ -151,6 +154,7 @@ export const asanaCommentTaskDefinition = {
|
|
|
151
154
|
provider: "asana",
|
|
152
155
|
};
|
|
153
156
|
export const asanaListAsanaTasksByProjectDefinition = {
|
|
157
|
+
displayName: "List Asana Tasks by project",
|
|
154
158
|
description: "List all tasks associated with an Asana project and their data",
|
|
155
159
|
scopes: [],
|
|
156
160
|
tags: [],
|
|
@@ -319,6 +323,7 @@ export const asanaListAsanaTasksByProjectDefinition = {
|
|
|
319
323
|
provider: "asana",
|
|
320
324
|
};
|
|
321
325
|
export const asanaCreateTaskDefinition = {
|
|
326
|
+
displayName: "Create task",
|
|
322
327
|
description: "Create an Asana task with specified content using optional template",
|
|
323
328
|
scopes: [],
|
|
324
329
|
tags: [],
|
|
@@ -384,6 +389,7 @@ export const asanaCreateTaskDefinition = {
|
|
|
384
389
|
provider: "asana",
|
|
385
390
|
};
|
|
386
391
|
export const asanaUpdateTaskDefinition = {
|
|
392
|
+
displayName: "Update task",
|
|
387
393
|
description: "Updates a Asana task with specified content",
|
|
388
394
|
scopes: [],
|
|
389
395
|
tags: [],
|
|
@@ -448,6 +454,7 @@ export const asanaUpdateTaskDefinition = {
|
|
|
448
454
|
provider: "asana",
|
|
449
455
|
};
|
|
450
456
|
export const asanaSearchTasksDefinition = {
|
|
457
|
+
displayName: "Search tasks",
|
|
451
458
|
description: "List all tasks associated with search query",
|
|
452
459
|
scopes: [],
|
|
453
460
|
tags: [],
|
|
@@ -502,6 +509,7 @@ export const asanaSearchTasksDefinition = {
|
|
|
502
509
|
provider: "asana",
|
|
503
510
|
};
|
|
504
511
|
export const asanaGetTasksDetailsDefinition = {
|
|
512
|
+
displayName: "Get details of tasks",
|
|
505
513
|
description: "Retrieve detailed information (assignee, comments, description, title, etc.) for a list of task IDs",
|
|
506
514
|
scopes: [],
|
|
507
515
|
tags: [],
|
|
@@ -593,6 +601,7 @@ export const asanaGetTasksDetailsDefinition = {
|
|
|
593
601
|
provider: "asana",
|
|
594
602
|
};
|
|
595
603
|
export const slackSendDmFromBotDefinition = {
|
|
604
|
+
displayName: "Send DM from bot",
|
|
596
605
|
description: "Sends a direct message to a user on Slack using a bot",
|
|
597
606
|
scopes: ["users:read", "channels:manage", "chat:write"],
|
|
598
607
|
tags: [],
|
|
@@ -640,6 +649,7 @@ export const slackSendDmFromBotDefinition = {
|
|
|
640
649
|
provider: "slack",
|
|
641
650
|
};
|
|
642
651
|
export const slackCreateChannelDefinition = {
|
|
652
|
+
displayName: "Create a channel",
|
|
643
653
|
description: "Creates a new Slack channel using a bot token",
|
|
644
654
|
scopes: ["channels:manage"],
|
|
645
655
|
tags: [],
|
|
@@ -683,6 +693,7 @@ export const slackCreateChannelDefinition = {
|
|
|
683
693
|
provider: "slack",
|
|
684
694
|
};
|
|
685
695
|
export const slackSendMessageDefinition = {
|
|
696
|
+
displayName: "Send a message",
|
|
686
697
|
description: "Sends a message to a Slack channel",
|
|
687
698
|
scopes: ["chat:write"],
|
|
688
699
|
tags: [],
|
|
@@ -726,6 +737,7 @@ export const slackSendMessageDefinition = {
|
|
|
726
737
|
provider: "slack",
|
|
727
738
|
};
|
|
728
739
|
export const slackGetChannelMessagesDefinition = {
|
|
740
|
+
displayName: "Get messages in a channel",
|
|
729
741
|
description: "Gets messages from a Slack channel",
|
|
730
742
|
scopes: ["channels:history"],
|
|
731
743
|
tags: [],
|
|
@@ -804,6 +816,7 @@ export const slackGetChannelMessagesDefinition = {
|
|
|
804
816
|
provider: "slack",
|
|
805
817
|
};
|
|
806
818
|
export const slackGetChannelMembersDefinition = {
|
|
819
|
+
displayName: "Get members of a channel",
|
|
807
820
|
description: "Gets the members of a Slack channel",
|
|
808
821
|
scopes: ["channels:read"],
|
|
809
822
|
tags: [],
|
|
@@ -854,6 +867,7 @@ export const slackGetChannelMembersDefinition = {
|
|
|
854
867
|
provider: "slack",
|
|
855
868
|
};
|
|
856
869
|
export const slackUserSearchSlackDefinition = {
|
|
870
|
+
displayName: "Search Slack",
|
|
857
871
|
description: "Search Slack (DM/MPIM by emails or channel) with optional topic/time filter. Automatically hydrates each hit (full thread if threaded, otherwise a small surrounding context).",
|
|
858
872
|
scopes: [
|
|
859
873
|
"search:read",
|
|
@@ -1041,14 +1055,15 @@ export const slackUserSearchSlackDefinition = {
|
|
|
1041
1055
|
provider: "slackUser",
|
|
1042
1056
|
};
|
|
1043
1057
|
export const slackUserSearchSlackRTSDefinition = {
|
|
1058
|
+
displayName: "Search Slack with Real-Time Search",
|
|
1044
1059
|
description: "Search Slack messages across your organization using Slack's Real-Time Search API (assistant.search.context). Searches all conversations within the scope of permissions granted and returns relevant messages with content, author info, and permalinks.",
|
|
1045
1060
|
scopes: [
|
|
1046
|
-
"im:history",
|
|
1047
1061
|
"search:read.public",
|
|
1048
1062
|
"search:read.private",
|
|
1049
1063
|
"search:read.mpim",
|
|
1050
1064
|
"search:read.im",
|
|
1051
1065
|
"search:read.files",
|
|
1066
|
+
"search:read.users",
|
|
1052
1067
|
],
|
|
1053
1068
|
tags: [],
|
|
1054
1069
|
parameters: {
|
|
@@ -1182,6 +1197,7 @@ export const slackUserSearchSlackRTSDefinition = {
|
|
|
1182
1197
|
provider: "slackUser",
|
|
1183
1198
|
};
|
|
1184
1199
|
export const mathAddDefinition = {
|
|
1200
|
+
displayName: "Add numbers",
|
|
1185
1201
|
description: "Adds two numbers together",
|
|
1186
1202
|
scopes: [],
|
|
1187
1203
|
tags: [],
|
|
@@ -1213,6 +1229,7 @@ export const mathAddDefinition = {
|
|
|
1213
1229
|
provider: "math",
|
|
1214
1230
|
};
|
|
1215
1231
|
export const confluenceOverwritePageDefinition = {
|
|
1232
|
+
displayName: "Overwrite a page",
|
|
1216
1233
|
description: "Updates a Confluence page with the new content specified",
|
|
1217
1234
|
scopes: [],
|
|
1218
1235
|
tags: [],
|
|
@@ -1252,6 +1269,7 @@ export const confluenceOverwritePageDefinition = {
|
|
|
1252
1269
|
provider: "confluence",
|
|
1253
1270
|
};
|
|
1254
1271
|
export const confluenceFetchPageContentDefinition = {
|
|
1272
|
+
displayName: "Fetch page content",
|
|
1255
1273
|
description: "Fetches content from a Confluence page",
|
|
1256
1274
|
scopes: [],
|
|
1257
1275
|
tags: [],
|
|
@@ -1300,6 +1318,7 @@ export const confluenceFetchPageContentDefinition = {
|
|
|
1300
1318
|
provider: "confluence",
|
|
1301
1319
|
};
|
|
1302
1320
|
export const jiraAssignJiraTicketDefinition = {
|
|
1321
|
+
displayName: "Assign a Jira ticket",
|
|
1303
1322
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
1304
1323
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
1305
1324
|
tags: [],
|
|
@@ -1344,6 +1363,7 @@ export const jiraAssignJiraTicketDefinition = {
|
|
|
1344
1363
|
provider: "jira",
|
|
1345
1364
|
};
|
|
1346
1365
|
export const jiraPublicCommentOnServiceDeskRequestDefinition = {
|
|
1366
|
+
displayName: "Publicly comment on a service desk request",
|
|
1347
1367
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
1348
1368
|
scopes: ["write:comment:jira"],
|
|
1349
1369
|
tags: [],
|
|
@@ -1383,6 +1403,7 @@ export const jiraPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
1383
1403
|
provider: "jira",
|
|
1384
1404
|
};
|
|
1385
1405
|
export const jiraCommentJiraTicketDefinition = {
|
|
1406
|
+
displayName: "Comment on a Jira ticket",
|
|
1386
1407
|
description: "Comments on a Jira ticket with specified content",
|
|
1387
1408
|
scopes: ["write:comment:jira"],
|
|
1388
1409
|
tags: [],
|
|
@@ -1427,6 +1448,7 @@ export const jiraCommentJiraTicketDefinition = {
|
|
|
1427
1448
|
provider: "jira",
|
|
1428
1449
|
};
|
|
1429
1450
|
export const jiraCreateJiraTicketDefinition = {
|
|
1451
|
+
displayName: "Create a Jira ticket",
|
|
1430
1452
|
description: "Create a jira ticket with new content specified",
|
|
1431
1453
|
scopes: [],
|
|
1432
1454
|
tags: [],
|
|
@@ -1492,6 +1514,7 @@ export const jiraCreateJiraTicketDefinition = {
|
|
|
1492
1514
|
provider: "jira",
|
|
1493
1515
|
};
|
|
1494
1516
|
export const jiraCreateServiceDeskRequestDefinition = {
|
|
1517
|
+
displayName: "Create a service desk request",
|
|
1495
1518
|
description: "Create a jira service desk request with specified content",
|
|
1496
1519
|
scopes: [],
|
|
1497
1520
|
tags: [],
|
|
@@ -1551,6 +1574,7 @@ export const jiraCreateServiceDeskRequestDefinition = {
|
|
|
1551
1574
|
provider: "jira",
|
|
1552
1575
|
};
|
|
1553
1576
|
export const jiraGetJiraTicketDetailsDefinition = {
|
|
1577
|
+
displayName: "Get Jira ticket details",
|
|
1554
1578
|
description: "Get details of a ticket in Jira",
|
|
1555
1579
|
scopes: ["read:jira-work"],
|
|
1556
1580
|
tags: [],
|
|
@@ -1609,6 +1633,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
|
|
|
1609
1633
|
provider: "jira",
|
|
1610
1634
|
};
|
|
1611
1635
|
export const jiraGetJiraTicketHistoryDefinition = {
|
|
1636
|
+
displayName: "Get Jira ticket history",
|
|
1612
1637
|
description: "Get ticket history of a ticket in Jira",
|
|
1613
1638
|
scopes: ["read:jira-work"],
|
|
1614
1639
|
tags: [],
|
|
@@ -1649,6 +1674,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
|
|
|
1649
1674
|
provider: "jira",
|
|
1650
1675
|
};
|
|
1651
1676
|
export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
1677
|
+
displayName: "Update Jira ticket details",
|
|
1652
1678
|
description: "Update a Jira ticket with new content specified",
|
|
1653
1679
|
scopes: ["write:jira-work"],
|
|
1654
1680
|
tags: [],
|
|
@@ -1710,6 +1736,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
|
1710
1736
|
provider: "jira",
|
|
1711
1737
|
};
|
|
1712
1738
|
export const jiraUpdateJiraTicketStatusDefinition = {
|
|
1739
|
+
displayName: "Update Jira ticket status",
|
|
1713
1740
|
description: "Updates the status of Jira ticket with specified status",
|
|
1714
1741
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
1715
1742
|
tags: [],
|
|
@@ -1754,6 +1781,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
|
|
|
1754
1781
|
provider: "jira",
|
|
1755
1782
|
};
|
|
1756
1783
|
export const jiraGetJiraIssuesByQueryDefinition = {
|
|
1784
|
+
displayName: "Get Jira issues with a query",
|
|
1757
1785
|
description: "Retrieve Jira Issues by JQL query",
|
|
1758
1786
|
scopes: [],
|
|
1759
1787
|
tags: [],
|
|
@@ -1953,6 +1981,7 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
1953
1981
|
provider: "jira",
|
|
1954
1982
|
};
|
|
1955
1983
|
export const jiraOrgAssignJiraTicketDefinition = {
|
|
1984
|
+
displayName: "Assign a Jira ticket",
|
|
1956
1985
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
1957
1986
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
1958
1987
|
tags: [],
|
|
@@ -1997,6 +2026,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
|
|
|
1997
2026
|
provider: "jiraOrg",
|
|
1998
2027
|
};
|
|
1999
2028
|
export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
|
|
2029
|
+
displayName: "Publicly comment on a service desk request",
|
|
2000
2030
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
2001
2031
|
scopes: ["write:comment:jira"],
|
|
2002
2032
|
tags: [],
|
|
@@ -2036,6 +2066,7 @@ export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
2036
2066
|
provider: "jiraOrg",
|
|
2037
2067
|
};
|
|
2038
2068
|
export const jiraOrgCommentJiraTicketDefinition = {
|
|
2069
|
+
displayName: "Comment on a Jira ticket",
|
|
2039
2070
|
description: "Comments on a Jira ticket with specified content",
|
|
2040
2071
|
scopes: ["write:comment:jira"],
|
|
2041
2072
|
tags: [],
|
|
@@ -2080,6 +2111,7 @@ export const jiraOrgCommentJiraTicketDefinition = {
|
|
|
2080
2111
|
provider: "jiraOrg",
|
|
2081
2112
|
};
|
|
2082
2113
|
export const jiraOrgCreateJiraTicketDefinition = {
|
|
2114
|
+
displayName: "Create a Jira ticket",
|
|
2083
2115
|
description: "Create a jira ticket with new content specified",
|
|
2084
2116
|
scopes: [],
|
|
2085
2117
|
tags: [],
|
|
@@ -2145,6 +2177,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
|
|
|
2145
2177
|
provider: "jiraOrg",
|
|
2146
2178
|
};
|
|
2147
2179
|
export const jiraOrgCreateServiceDeskRequestDefinition = {
|
|
2180
|
+
displayName: "Create a service desk request",
|
|
2148
2181
|
description: "Create a jira service desk request with specified content",
|
|
2149
2182
|
scopes: [],
|
|
2150
2183
|
tags: [],
|
|
@@ -2204,6 +2237,7 @@ export const jiraOrgCreateServiceDeskRequestDefinition = {
|
|
|
2204
2237
|
provider: "jiraOrg",
|
|
2205
2238
|
};
|
|
2206
2239
|
export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
2240
|
+
displayName: "Get Jira ticket details",
|
|
2207
2241
|
description: "Get details of a ticket in Jira",
|
|
2208
2242
|
scopes: ["read:jira-work"],
|
|
2209
2243
|
tags: [],
|
|
@@ -2262,6 +2296,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
|
2262
2296
|
provider: "jiraOrg",
|
|
2263
2297
|
};
|
|
2264
2298
|
export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
2299
|
+
displayName: "Get Jira ticket history",
|
|
2265
2300
|
description: "Get ticket history of a ticket in Jira",
|
|
2266
2301
|
scopes: ["read:jira-work"],
|
|
2267
2302
|
tags: [],
|
|
@@ -2302,6 +2337,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
|
2302
2337
|
provider: "jiraOrg",
|
|
2303
2338
|
};
|
|
2304
2339
|
export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
2340
|
+
displayName: "Update Jira ticket details",
|
|
2305
2341
|
description: "Update a Jira ticket with new content specified",
|
|
2306
2342
|
scopes: ["write:jira-work"],
|
|
2307
2343
|
tags: [],
|
|
@@ -2363,6 +2399,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
|
2363
2399
|
provider: "jiraOrg",
|
|
2364
2400
|
};
|
|
2365
2401
|
export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
2402
|
+
displayName: "Update Jira ticket status",
|
|
2366
2403
|
description: "Updates the status of Jira ticket with specified status",
|
|
2367
2404
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
2368
2405
|
tags: [],
|
|
@@ -2407,6 +2444,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
|
2407
2444
|
provider: "jiraOrg",
|
|
2408
2445
|
};
|
|
2409
2446
|
export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
2447
|
+
displayName: "Get Jira issues with a query",
|
|
2410
2448
|
description: "Retrieve Jira Issues by JQL query",
|
|
2411
2449
|
scopes: [],
|
|
2412
2450
|
tags: [],
|
|
@@ -2606,6 +2644,7 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
2606
2644
|
provider: "jiraOrg",
|
|
2607
2645
|
};
|
|
2608
2646
|
export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
2647
|
+
displayName: "Assign a Jira ticket",
|
|
2609
2648
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
2610
2649
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
2611
2650
|
tags: [],
|
|
@@ -2650,6 +2689,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
|
2650
2689
|
provider: "jiraDataCenter",
|
|
2651
2690
|
};
|
|
2652
2691
|
export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
|
|
2692
|
+
displayName: "Publicly comment on a service desk request",
|
|
2653
2693
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
2654
2694
|
scopes: ["write:comment:jira"],
|
|
2655
2695
|
tags: [],
|
|
@@ -2689,6 +2729,7 @@ export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
2689
2729
|
provider: "jiraDataCenter",
|
|
2690
2730
|
};
|
|
2691
2731
|
export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
2732
|
+
displayName: "Comment on a Jira ticket",
|
|
2692
2733
|
description: "Comments on a Jira ticket with specified content",
|
|
2693
2734
|
scopes: ["write:comment:jira"],
|
|
2694
2735
|
tags: [],
|
|
@@ -2733,6 +2774,7 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
|
2733
2774
|
provider: "jiraDataCenter",
|
|
2734
2775
|
};
|
|
2735
2776
|
export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
2777
|
+
displayName: "Create a Jira ticket",
|
|
2736
2778
|
description: "Create a jira ticket with new content specified",
|
|
2737
2779
|
scopes: [],
|
|
2738
2780
|
tags: [],
|
|
@@ -2798,6 +2840,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
|
2798
2840
|
provider: "jiraDataCenter",
|
|
2799
2841
|
};
|
|
2800
2842
|
export const jiraDataCenterCreateServiceDeskRequestDefinition = {
|
|
2843
|
+
displayName: "Create a service desk request",
|
|
2801
2844
|
description: "Create a jira service desk request with specified content",
|
|
2802
2845
|
scopes: [],
|
|
2803
2846
|
tags: [],
|
|
@@ -2857,6 +2900,7 @@ export const jiraDataCenterCreateServiceDeskRequestDefinition = {
|
|
|
2857
2900
|
provider: "jiraDataCenter",
|
|
2858
2901
|
};
|
|
2859
2902
|
export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
2903
|
+
displayName: "Get Jira ticket details",
|
|
2860
2904
|
description: "Get details of a ticket in Jira",
|
|
2861
2905
|
scopes: ["read:jira-work"],
|
|
2862
2906
|
tags: [],
|
|
@@ -2915,6 +2959,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
|
2915
2959
|
provider: "jiraDataCenter",
|
|
2916
2960
|
};
|
|
2917
2961
|
export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
2962
|
+
displayName: "Get Jira ticket history",
|
|
2918
2963
|
description: "Get ticket history of a ticket in Jira",
|
|
2919
2964
|
scopes: ["read:jira-work"],
|
|
2920
2965
|
tags: [],
|
|
@@ -2955,6 +3000,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
|
2955
3000
|
provider: "jiraDataCenter",
|
|
2956
3001
|
};
|
|
2957
3002
|
export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
3003
|
+
displayName: "Update Jira ticket details",
|
|
2958
3004
|
description: "Update a Jira ticket with new content specified",
|
|
2959
3005
|
scopes: ["write:jira-work"],
|
|
2960
3006
|
tags: [],
|
|
@@ -3016,6 +3062,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
|
3016
3062
|
provider: "jiraDataCenter",
|
|
3017
3063
|
};
|
|
3018
3064
|
export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
3065
|
+
displayName: "Update Jira ticket status",
|
|
3019
3066
|
description: "Updates the status of Jira ticket with specified status",
|
|
3020
3067
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
3021
3068
|
tags: [],
|
|
@@ -3060,6 +3107,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
|
3060
3107
|
provider: "jiraDataCenter",
|
|
3061
3108
|
};
|
|
3062
3109
|
export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
3110
|
+
displayName: "Get Jira issues with a query",
|
|
3063
3111
|
description: "Retrieve Jira Issues by JQL query",
|
|
3064
3112
|
scopes: [],
|
|
3065
3113
|
tags: [],
|
|
@@ -3259,6 +3307,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3259
3307
|
provider: "jiraDataCenter",
|
|
3260
3308
|
};
|
|
3261
3309
|
export const googlemapsValidateAddressDefinition = {
|
|
3310
|
+
displayName: "Validate an address",
|
|
3262
3311
|
description: "Validate an address using the Google Maps API",
|
|
3263
3312
|
scopes: [],
|
|
3264
3313
|
tags: [],
|
|
@@ -3427,6 +3476,7 @@ export const googlemapsValidateAddressDefinition = {
|
|
|
3427
3476
|
provider: "googlemaps",
|
|
3428
3477
|
};
|
|
3429
3478
|
export const googlemapsNearbysearchRestaurantsDefinition = {
|
|
3479
|
+
displayName: "Search for nearby places",
|
|
3430
3480
|
description: "Search for nearby places using Google Maps",
|
|
3431
3481
|
scopes: [],
|
|
3432
3482
|
tags: [],
|
|
@@ -3495,7 +3545,8 @@ export const googlemapsNearbysearchRestaurantsDefinition = {
|
|
|
3495
3545
|
provider: "googlemaps",
|
|
3496
3546
|
};
|
|
3497
3547
|
export const bingGetTopNSearchResultUrlsDefinition = {
|
|
3498
|
-
|
|
3548
|
+
displayName: "Get top search result URLs",
|
|
3549
|
+
description: "Get the top search result URLs from Bing",
|
|
3499
3550
|
scopes: [],
|
|
3500
3551
|
tags: [],
|
|
3501
3552
|
parameters: {
|
|
@@ -3543,6 +3594,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
|
|
|
3543
3594
|
provider: "bing",
|
|
3544
3595
|
};
|
|
3545
3596
|
export const zendeskCreateZendeskTicketDefinition = {
|
|
3597
|
+
displayName: "Create a Zendesk ticket",
|
|
3546
3598
|
description: "Create a ticket in Zendesk",
|
|
3547
3599
|
scopes: [],
|
|
3548
3600
|
tags: [],
|
|
@@ -3587,6 +3639,7 @@ export const zendeskCreateZendeskTicketDefinition = {
|
|
|
3587
3639
|
provider: "zendesk",
|
|
3588
3640
|
};
|
|
3589
3641
|
export const zendeskListZendeskTicketsDefinition = {
|
|
3642
|
+
displayName: "List Zendesk tickets",
|
|
3590
3643
|
description: "List tickets in Zendesk from the past 3 months",
|
|
3591
3644
|
scopes: [],
|
|
3592
3645
|
tags: [],
|
|
@@ -3626,6 +3679,7 @@ export const zendeskListZendeskTicketsDefinition = {
|
|
|
3626
3679
|
provider: "zendesk",
|
|
3627
3680
|
};
|
|
3628
3681
|
export const zendeskGetTicketDetailsDefinition = {
|
|
3682
|
+
displayName: "Get ticket details",
|
|
3629
3683
|
description: "Get details of a ticket in Zendesk",
|
|
3630
3684
|
scopes: [],
|
|
3631
3685
|
tags: [],
|
|
@@ -3658,6 +3712,7 @@ export const zendeskGetTicketDetailsDefinition = {
|
|
|
3658
3712
|
provider: "zendesk",
|
|
3659
3713
|
};
|
|
3660
3714
|
export const zendeskUpdateTicketStatusDefinition = {
|
|
3715
|
+
displayName: "Update ticket status",
|
|
3661
3716
|
description: "Update the status of a ticket in Zendesk",
|
|
3662
3717
|
scopes: [],
|
|
3663
3718
|
tags: [],
|
|
@@ -3684,6 +3739,7 @@ export const zendeskUpdateTicketStatusDefinition = {
|
|
|
3684
3739
|
provider: "zendesk",
|
|
3685
3740
|
};
|
|
3686
3741
|
export const zendeskAddCommentToTicketDefinition = {
|
|
3742
|
+
displayName: "Add comment to ticket",
|
|
3687
3743
|
description: "Add a comment to a ticket in Zendesk",
|
|
3688
3744
|
scopes: [],
|
|
3689
3745
|
tags: [],
|
|
@@ -3728,6 +3784,7 @@ export const zendeskAddCommentToTicketDefinition = {
|
|
|
3728
3784
|
provider: "zendesk",
|
|
3729
3785
|
};
|
|
3730
3786
|
export const zendeskAssignTicketDefinition = {
|
|
3787
|
+
displayName: "Assign a ticket",
|
|
3731
3788
|
description: "Assign a ticket in Zendesk to a specific user",
|
|
3732
3789
|
scopes: [],
|
|
3733
3790
|
tags: [],
|
|
@@ -3754,6 +3811,7 @@ export const zendeskAssignTicketDefinition = {
|
|
|
3754
3811
|
provider: "zendesk",
|
|
3755
3812
|
};
|
|
3756
3813
|
export const zendeskSearchZendeskByQueryDefinition = {
|
|
3814
|
+
displayName: "Search Zendesk with a query",
|
|
3757
3815
|
description: "Search Zendesk objects by query with flexible filtering options",
|
|
3758
3816
|
scopes: [],
|
|
3759
3817
|
tags: [],
|
|
@@ -3802,7 +3860,8 @@ export const zendeskSearchZendeskByQueryDefinition = {
|
|
|
3802
3860
|
provider: "zendesk",
|
|
3803
3861
|
};
|
|
3804
3862
|
export const linkedinCreateShareLinkedinPostUrlDefinition = {
|
|
3805
|
-
|
|
3863
|
+
displayName: "Create a share LinkedIn post URL",
|
|
3864
|
+
description: "Create a share LinkedIn post link",
|
|
3806
3865
|
scopes: [],
|
|
3807
3866
|
tags: [],
|
|
3808
3867
|
parameters: {
|
|
@@ -3833,6 +3892,7 @@ export const linkedinCreateShareLinkedinPostUrlDefinition = {
|
|
|
3833
3892
|
provider: "linkedin",
|
|
3834
3893
|
};
|
|
3835
3894
|
export const xCreateShareXPostUrlDefinition = {
|
|
3895
|
+
displayName: "Create a share X post URL",
|
|
3836
3896
|
description: "Create a share X (formerly twitter) post link",
|
|
3837
3897
|
scopes: [],
|
|
3838
3898
|
tags: [],
|
|
@@ -3879,6 +3939,7 @@ export const xCreateShareXPostUrlDefinition = {
|
|
|
3879
3939
|
provider: "x",
|
|
3880
3940
|
};
|
|
3881
3941
|
export const mongoInsertMongoDocDefinition = {
|
|
3942
|
+
displayName: "Insert a Mongo document",
|
|
3882
3943
|
description: "Insert a document into a MongoDB collection",
|
|
3883
3944
|
scopes: [],
|
|
3884
3945
|
tags: [],
|
|
@@ -3914,6 +3975,7 @@ export const mongoInsertMongoDocDefinition = {
|
|
|
3914
3975
|
provider: "mongo",
|
|
3915
3976
|
};
|
|
3916
3977
|
export const snowflakeGetRowByFieldValueDefinition = {
|
|
3978
|
+
displayName: "Get a row by field value",
|
|
3917
3979
|
description: "Get a row from a Snowflake table by a field value",
|
|
3918
3980
|
scopes: [],
|
|
3919
3981
|
tags: [],
|
|
@@ -3971,6 +4033,7 @@ export const snowflakeGetRowByFieldValueDefinition = {
|
|
|
3971
4033
|
provider: "snowflake",
|
|
3972
4034
|
};
|
|
3973
4035
|
export const snowflakeRunSnowflakeQueryDefinition = {
|
|
4036
|
+
displayName: "Run a Snowflake query",
|
|
3974
4037
|
description: "Execute a Snowflake query and return output.",
|
|
3975
4038
|
scopes: [],
|
|
3976
4039
|
tags: [],
|
|
@@ -4048,6 +4111,7 @@ export const snowflakeRunSnowflakeQueryDefinition = {
|
|
|
4048
4111
|
provider: "snowflake",
|
|
4049
4112
|
};
|
|
4050
4113
|
export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
|
4114
|
+
displayName: "Get latitude and longitude from location",
|
|
4051
4115
|
description: "Get the latitude and longitude of a location",
|
|
4052
4116
|
scopes: [],
|
|
4053
4117
|
tags: [],
|
|
@@ -4093,6 +4157,7 @@ export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
|
|
4093
4157
|
provider: "openstreetmap",
|
|
4094
4158
|
};
|
|
4095
4159
|
export const nwsGetForecastForLocationDefinition = {
|
|
4160
|
+
displayName: "Get forecast for location",
|
|
4096
4161
|
description: "Get the weather forecast for a location using latitude and longitude",
|
|
4097
4162
|
scopes: [],
|
|
4098
4163
|
tags: [],
|
|
@@ -4142,6 +4207,7 @@ export const nwsGetForecastForLocationDefinition = {
|
|
|
4142
4207
|
provider: "nws",
|
|
4143
4208
|
};
|
|
4144
4209
|
export const firecrawlDeepResearchDefinition = {
|
|
4210
|
+
displayName: "Deep Research",
|
|
4145
4211
|
description: "Deep research on a topic using Firecrawl",
|
|
4146
4212
|
scopes: [],
|
|
4147
4213
|
tags: [],
|
|
@@ -4203,6 +4269,7 @@ export const firecrawlDeepResearchDefinition = {
|
|
|
4203
4269
|
provider: "firecrawl",
|
|
4204
4270
|
};
|
|
4205
4271
|
export const firecrawlScrapeUrlDefinition = {
|
|
4272
|
+
displayName: "Scrape URL",
|
|
4206
4273
|
description: "Scrape a URL and get website content using Firecrawl",
|
|
4207
4274
|
scopes: [],
|
|
4208
4275
|
tags: [],
|
|
@@ -4273,6 +4340,7 @@ export const firecrawlScrapeUrlDefinition = {
|
|
|
4273
4340
|
provider: "firecrawl",
|
|
4274
4341
|
};
|
|
4275
4342
|
export const firecrawlSearchAndScrapeDefinition = {
|
|
4343
|
+
displayName: "Search and scrape",
|
|
4276
4344
|
description: "Search and scrape the web using Firecrawl",
|
|
4277
4345
|
scopes: [],
|
|
4278
4346
|
tags: [],
|
|
@@ -4326,6 +4394,7 @@ export const firecrawlSearchAndScrapeDefinition = {
|
|
|
4326
4394
|
provider: "firecrawl",
|
|
4327
4395
|
};
|
|
4328
4396
|
export const firecrawlGetTopNSearchResultUrlsDefinition = {
|
|
4397
|
+
displayName: "Get top search result URLs",
|
|
4329
4398
|
description: "Get the top five search result URLs from Firecrawl",
|
|
4330
4399
|
scopes: [],
|
|
4331
4400
|
tags: [],
|
|
@@ -4374,7 +4443,8 @@ export const firecrawlGetTopNSearchResultUrlsDefinition = {
|
|
|
4374
4443
|
provider: "firecrawl",
|
|
4375
4444
|
};
|
|
4376
4445
|
export const firecrawlScrapeTweetDataWithNitterDefinition = {
|
|
4377
|
-
|
|
4446
|
+
displayName: "Scrape tweet data with nitter",
|
|
4447
|
+
description: "Given a tweet URL, scrape the tweet data with nitter+firecrawl",
|
|
4378
4448
|
scopes: [],
|
|
4379
4449
|
tags: [],
|
|
4380
4450
|
parameters: {
|
|
@@ -4401,6 +4471,7 @@ export const firecrawlScrapeTweetDataWithNitterDefinition = {
|
|
|
4401
4471
|
provider: "firecrawl",
|
|
4402
4472
|
};
|
|
4403
4473
|
export const resendSendEmailDefinition = {
|
|
4474
|
+
displayName: "Send an email",
|
|
4404
4475
|
description: "Send an email using Resend",
|
|
4405
4476
|
scopes: [],
|
|
4406
4477
|
tags: [],
|
|
@@ -4440,6 +4511,7 @@ export const resendSendEmailDefinition = {
|
|
|
4440
4511
|
provider: "resend",
|
|
4441
4512
|
};
|
|
4442
4513
|
export const resendSendEmailHtmlDefinition = {
|
|
4514
|
+
displayName: "Send an HTML email",
|
|
4443
4515
|
description: "Send an HTML email using Resend",
|
|
4444
4516
|
scopes: [],
|
|
4445
4517
|
tags: [],
|
|
@@ -4479,6 +4551,7 @@ export const resendSendEmailHtmlDefinition = {
|
|
|
4479
4551
|
provider: "resend",
|
|
4480
4552
|
};
|
|
4481
4553
|
export const googleOauthCreateNewGoogleDocDefinition = {
|
|
4554
|
+
displayName: "Create a new Google Doc",
|
|
4482
4555
|
description: "Create a new Google Docs document using OAuth authentication",
|
|
4483
4556
|
scopes: [],
|
|
4484
4557
|
tags: [],
|
|
@@ -4518,6 +4591,7 @@ export const googleOauthCreateNewGoogleDocDefinition = {
|
|
|
4518
4591
|
provider: "googleOauth",
|
|
4519
4592
|
};
|
|
4520
4593
|
export const googleOauthUpdateDocDefinition = {
|
|
4594
|
+
displayName: "Update a Google Doc",
|
|
4521
4595
|
description: "Update an existing Google Docs document using OAuth authentication with batch requests",
|
|
4522
4596
|
scopes: [],
|
|
4523
4597
|
tags: [],
|
|
@@ -5630,7 +5704,8 @@ export const googleOauthUpdateDocDefinition = {
|
|
|
5630
5704
|
provider: "googleOauth",
|
|
5631
5705
|
};
|
|
5632
5706
|
export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
5633
|
-
|
|
5707
|
+
displayName: "Schedule a Calendar meeting",
|
|
5708
|
+
description: "Schedule a meeting on Google Calendar using OAuth authentication",
|
|
5634
5709
|
scopes: [],
|
|
5635
5710
|
tags: [],
|
|
5636
5711
|
parameters: {
|
|
@@ -5748,6 +5823,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5748
5823
|
provider: "googleOauth",
|
|
5749
5824
|
};
|
|
5750
5825
|
export const googleOauthListCalendarsDefinition = {
|
|
5826
|
+
displayName: "List calendars",
|
|
5751
5827
|
description: "List all Google Calendars for the authenticated user",
|
|
5752
5828
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5753
5829
|
tags: [],
|
|
@@ -5797,6 +5873,7 @@ export const googleOauthListCalendarsDefinition = {
|
|
|
5797
5873
|
provider: "googleOauth",
|
|
5798
5874
|
};
|
|
5799
5875
|
export const googleOauthListCalendarEventsDefinition = {
|
|
5876
|
+
displayName: "List Calendar events",
|
|
5800
5877
|
description: "List events on a Google Calendar, optionally searching by query.",
|
|
5801
5878
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5802
5879
|
tags: [],
|
|
@@ -5979,6 +6056,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
|
5979
6056
|
provider: "googleOauth",
|
|
5980
6057
|
};
|
|
5981
6058
|
export const googleOauthUpdateCalendarEventDefinition = {
|
|
6059
|
+
displayName: "Update a Calendar event",
|
|
5982
6060
|
description: "Update an event on a Google Calendar using OAuth authentication",
|
|
5983
6061
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
5984
6062
|
tags: [],
|
|
@@ -6079,6 +6157,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
|
|
|
6079
6157
|
provider: "googleOauth",
|
|
6080
6158
|
};
|
|
6081
6159
|
export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
6160
|
+
displayName: "Edit a Google Calendar event",
|
|
6082
6161
|
description: "Edit an existing Google Calendar event using OAuth authentication",
|
|
6083
6162
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6084
6163
|
tags: [],
|
|
@@ -6177,6 +6256,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
|
6177
6256
|
provider: "googleOauth",
|
|
6178
6257
|
};
|
|
6179
6258
|
export const googleOauthDeleteCalendarEventDefinition = {
|
|
6259
|
+
displayName: "Delete a Calendar event",
|
|
6180
6260
|
description: "Delete an event from a Google Calendar using OAuth authentication",
|
|
6181
6261
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6182
6262
|
tags: [],
|
|
@@ -6213,6 +6293,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
|
|
|
6213
6293
|
provider: "googleOauth",
|
|
6214
6294
|
};
|
|
6215
6295
|
export const googleOauthCreateSpreadsheetDefinition = {
|
|
6296
|
+
displayName: "Create a spreadsheet",
|
|
6216
6297
|
description: "Create a new Google Spreadsheet using OAuth authentication",
|
|
6217
6298
|
scopes: [],
|
|
6218
6299
|
tags: [],
|
|
@@ -6326,6 +6407,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
|
6326
6407
|
provider: "googleOauth",
|
|
6327
6408
|
};
|
|
6328
6409
|
export const googleOauthUpdateSpreadsheetDefinition = {
|
|
6410
|
+
displayName: "Update a spreadsheet",
|
|
6329
6411
|
description: "Update a Google Spreadsheet with new content specified",
|
|
6330
6412
|
scopes: [],
|
|
6331
6413
|
tags: [],
|
|
@@ -6715,6 +6797,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6715
6797
|
provider: "googleOauth",
|
|
6716
6798
|
};
|
|
6717
6799
|
export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
6800
|
+
displayName: "Append rows to a spreadsheet",
|
|
6718
6801
|
description: "Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.",
|
|
6719
6802
|
scopes: [],
|
|
6720
6803
|
tags: [],
|
|
@@ -6772,7 +6855,139 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
|
6772
6855
|
name: "appendRowsToSpreadsheet",
|
|
6773
6856
|
provider: "googleOauth",
|
|
6774
6857
|
};
|
|
6858
|
+
export const googleOauthDeleteRowFromSpreadsheetDefinition = {
|
|
6859
|
+
displayName: "Delete a row from a spreadsheet",
|
|
6860
|
+
description: "Deletes a specific row from a Google Spreadsheet by row index. Row indices are 0-based (first row is 0).",
|
|
6861
|
+
scopes: [],
|
|
6862
|
+
tags: [],
|
|
6863
|
+
parameters: {
|
|
6864
|
+
type: "object",
|
|
6865
|
+
required: ["spreadsheetId", "sheetId", "rowIndex"],
|
|
6866
|
+
properties: {
|
|
6867
|
+
spreadsheetId: {
|
|
6868
|
+
type: "string",
|
|
6869
|
+
description: 'The ID of the Google Spreadsheet. This should be provided by the user. Can be found in the URL of the spreadsheet. For example, "1bWp1w2OVwH19mkXEiLIaP8As7N-9c_3EXF_Eo5d5Nm0".',
|
|
6870
|
+
tags: ["recommend-predefined"],
|
|
6871
|
+
},
|
|
6872
|
+
sheetId: {
|
|
6873
|
+
type: "integer",
|
|
6874
|
+
description: 'The ID of the specific sheet within the spreadsheet (not the sheet name). Sheet ID is 0 for the first sheet. Can be found in the URL after "gid=". For example, if the URL is "...#gid=123456789", the sheetId is 123456789.',
|
|
6875
|
+
},
|
|
6876
|
+
rowIndex: {
|
|
6877
|
+
type: "integer",
|
|
6878
|
+
description: "The 0-based index of the row to delete. For example, to delete the first row (excluding headers if row 0 is headers), use rowIndex 1. To delete the header row, use rowIndex 0.",
|
|
6879
|
+
},
|
|
6880
|
+
},
|
|
6881
|
+
},
|
|
6882
|
+
output: {
|
|
6883
|
+
type: "object",
|
|
6884
|
+
required: ["success"],
|
|
6885
|
+
properties: {
|
|
6886
|
+
success: {
|
|
6887
|
+
type: "boolean",
|
|
6888
|
+
description: "Whether the row was deleted successfully",
|
|
6889
|
+
},
|
|
6890
|
+
spreadsheetUrl: {
|
|
6891
|
+
type: "string",
|
|
6892
|
+
description: "The URL of the updated spreadsheet",
|
|
6893
|
+
},
|
|
6894
|
+
replies: {
|
|
6895
|
+
type: "array",
|
|
6896
|
+
description: "The replies from the batchUpdate request",
|
|
6897
|
+
items: {
|
|
6898
|
+
type: "object",
|
|
6899
|
+
},
|
|
6900
|
+
},
|
|
6901
|
+
error: {
|
|
6902
|
+
type: "string",
|
|
6903
|
+
description: "The error that occurred if the row was not deleted successfully",
|
|
6904
|
+
},
|
|
6905
|
+
},
|
|
6906
|
+
},
|
|
6907
|
+
name: "deleteRowFromSpreadsheet",
|
|
6908
|
+
provider: "googleOauth",
|
|
6909
|
+
};
|
|
6910
|
+
export const googleOauthUpdateRowsInSpreadsheetDefinition = {
|
|
6911
|
+
displayName: "Update rows in a spreadsheet",
|
|
6912
|
+
description: "Updates one or more rows in a Google Spreadsheet starting from a specific row number. This overwrites existing data in the specified rows.",
|
|
6913
|
+
scopes: [],
|
|
6914
|
+
tags: [],
|
|
6915
|
+
parameters: {
|
|
6916
|
+
type: "object",
|
|
6917
|
+
required: ["spreadsheetId", "startRow", "rows"],
|
|
6918
|
+
properties: {
|
|
6919
|
+
spreadsheetId: {
|
|
6920
|
+
type: "string",
|
|
6921
|
+
description: 'The ID of the Google Spreadsheet. This should be provided by the user. Can be found in the URL of the spreadsheet. For example, "1bWp1w2OVwH19mkXEiLIaP8As7N-9c_3EXF_Eo5d5Nm0".',
|
|
6922
|
+
tags: ["recommend-predefined"],
|
|
6923
|
+
},
|
|
6924
|
+
sheetName: {
|
|
6925
|
+
type: "string",
|
|
6926
|
+
description: 'The name of the SHEET to update. This should be provided by the user. For example, "Sheet1". Defaults to "Sheet1" if not provided.',
|
|
6927
|
+
},
|
|
6928
|
+
startRow: {
|
|
6929
|
+
type: "integer",
|
|
6930
|
+
description: "The row number to start updating from (1-based). For example, to update starting from the first row, use 1. To start from the second row, use 2.",
|
|
6931
|
+
},
|
|
6932
|
+
rows: {
|
|
6933
|
+
type: "array",
|
|
6934
|
+
description: "Rows of cells to update in the spreadsheet. Each row will be written sequentially starting from startRow.",
|
|
6935
|
+
items: {
|
|
6936
|
+
type: "array",
|
|
6937
|
+
description: "A list of cells for this row",
|
|
6938
|
+
items: {
|
|
6939
|
+
type: "object",
|
|
6940
|
+
required: ["stringValue"],
|
|
6941
|
+
properties: {
|
|
6942
|
+
stringValue: {
|
|
6943
|
+
type: "string",
|
|
6944
|
+
description: "The value of the cell",
|
|
6945
|
+
},
|
|
6946
|
+
},
|
|
6947
|
+
},
|
|
6948
|
+
},
|
|
6949
|
+
},
|
|
6950
|
+
},
|
|
6951
|
+
},
|
|
6952
|
+
output: {
|
|
6953
|
+
type: "object",
|
|
6954
|
+
required: ["success"],
|
|
6955
|
+
properties: {
|
|
6956
|
+
success: {
|
|
6957
|
+
type: "boolean",
|
|
6958
|
+
description: "Whether the rows were updated successfully",
|
|
6959
|
+
},
|
|
6960
|
+
spreadsheetUrl: {
|
|
6961
|
+
type: "string",
|
|
6962
|
+
description: "The URL of the updated spreadsheet",
|
|
6963
|
+
},
|
|
6964
|
+
updatedRange: {
|
|
6965
|
+
type: "string",
|
|
6966
|
+
description: "The range that was updated in A1 notation",
|
|
6967
|
+
},
|
|
6968
|
+
updatedRows: {
|
|
6969
|
+
type: "integer",
|
|
6970
|
+
description: "The number of rows that were updated",
|
|
6971
|
+
},
|
|
6972
|
+
updatedColumns: {
|
|
6973
|
+
type: "integer",
|
|
6974
|
+
description: "The number of columns that were updated",
|
|
6975
|
+
},
|
|
6976
|
+
updatedCells: {
|
|
6977
|
+
type: "integer",
|
|
6978
|
+
description: "The total number of cells that were updated",
|
|
6979
|
+
},
|
|
6980
|
+
error: {
|
|
6981
|
+
type: "string",
|
|
6982
|
+
description: "The error that occurred if the rows were not updated successfully",
|
|
6983
|
+
},
|
|
6984
|
+
},
|
|
6985
|
+
},
|
|
6986
|
+
name: "updateRowsInSpreadsheet",
|
|
6987
|
+
provider: "googleOauth",
|
|
6988
|
+
};
|
|
6775
6989
|
export const googleOauthCreatePresentationDefinition = {
|
|
6990
|
+
displayName: "Create a presentation",
|
|
6776
6991
|
description: "Create a Google Presentation",
|
|
6777
6992
|
scopes: [],
|
|
6778
6993
|
tags: [],
|
|
@@ -6847,6 +7062,7 @@ export const googleOauthCreatePresentationDefinition = {
|
|
|
6847
7062
|
provider: "googleOauth",
|
|
6848
7063
|
};
|
|
6849
7064
|
export const googleOauthUpdatePresentationDefinition = {
|
|
7065
|
+
displayName: "Update a presentation",
|
|
6850
7066
|
description: "Update a Google Presentation",
|
|
6851
7067
|
scopes: [],
|
|
6852
7068
|
tags: [],
|
|
@@ -8137,6 +8353,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
|
8137
8353
|
provider: "googleOauth",
|
|
8138
8354
|
};
|
|
8139
8355
|
export const googleOauthGetPresentationDefinition = {
|
|
8356
|
+
displayName: "Get a presentation",
|
|
8140
8357
|
description: "Get a presentation by ID",
|
|
8141
8358
|
scopes: ["slides.readonly"],
|
|
8142
8359
|
tags: [],
|
|
@@ -8194,6 +8411,7 @@ export const googleOauthGetPresentationDefinition = {
|
|
|
8194
8411
|
provider: "googleOauth",
|
|
8195
8412
|
};
|
|
8196
8413
|
export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
8414
|
+
displayName: "Search Drive by keyword (legacy)",
|
|
8197
8415
|
description: "Search Google Drive files that contain one or more keywords in their full text.",
|
|
8198
8416
|
scopes: ["drive.readonly"],
|
|
8199
8417
|
tags: [],
|
|
@@ -8262,6 +8480,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
|
8262
8480
|
provider: "googleOauth",
|
|
8263
8481
|
};
|
|
8264
8482
|
export const googleOauthSearchDriveByQueryDefinition = {
|
|
8483
|
+
displayName: "Search Drive with a query (legacy)",
|
|
8265
8484
|
description: "Search Google Drive files based on a google drive query provided.",
|
|
8266
8485
|
scopes: ["drive.readonly"],
|
|
8267
8486
|
tags: [],
|
|
@@ -8335,6 +8554,7 @@ export const googleOauthSearchDriveByQueryDefinition = {
|
|
|
8335
8554
|
provider: "googleOauth",
|
|
8336
8555
|
};
|
|
8337
8556
|
export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
8557
|
+
displayName: "Search Drive by keyword",
|
|
8338
8558
|
description: "Search Google Drive with keywords and get resulting content",
|
|
8339
8559
|
scopes: ["drive.readonly"],
|
|
8340
8560
|
tags: [],
|
|
@@ -8433,6 +8653,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
|
8433
8653
|
provider: "googleOauth",
|
|
8434
8654
|
};
|
|
8435
8655
|
export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
8656
|
+
displayName: "Search Drive with a query and get file contents (legacy)",
|
|
8436
8657
|
description: "Search Google Drive with Google Drive query syntax and get resulting content",
|
|
8437
8658
|
scopes: ["drive.readonly"],
|
|
8438
8659
|
tags: [],
|
|
@@ -8516,6 +8737,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
|
8516
8737
|
provider: "googleOauth",
|
|
8517
8738
|
};
|
|
8518
8739
|
export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
8740
|
+
displayName: "Fetch file contents",
|
|
8519
8741
|
description: "Get text content of a Google Drive file by its ID.",
|
|
8520
8742
|
scopes: ["drive.readonly"],
|
|
8521
8743
|
tags: [],
|
|
@@ -8595,6 +8817,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
|
8595
8817
|
provider: "googleOauth",
|
|
8596
8818
|
};
|
|
8597
8819
|
export const googleOauthListGroupsDefinition = {
|
|
8820
|
+
displayName: "List Groups",
|
|
8598
8821
|
description: "List all Google Groups for the customer.",
|
|
8599
8822
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8600
8823
|
tags: [],
|
|
@@ -8652,6 +8875,7 @@ export const googleOauthListGroupsDefinition = {
|
|
|
8652
8875
|
provider: "googleOauth",
|
|
8653
8876
|
};
|
|
8654
8877
|
export const googleOauthGetGroupDefinition = {
|
|
8878
|
+
displayName: "Get a Group",
|
|
8655
8879
|
description: "Get details for a specific Google Group by group email or ID.",
|
|
8656
8880
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8657
8881
|
tags: [],
|
|
@@ -8705,6 +8929,7 @@ export const googleOauthGetGroupDefinition = {
|
|
|
8705
8929
|
provider: "googleOauth",
|
|
8706
8930
|
};
|
|
8707
8931
|
export const googleOauthListGroupMembersDefinition = {
|
|
8932
|
+
displayName: "List Group members",
|
|
8708
8933
|
description: "List all members of a Google Group.",
|
|
8709
8934
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8710
8935
|
tags: [],
|
|
@@ -8766,6 +8991,7 @@ export const googleOauthListGroupMembersDefinition = {
|
|
|
8766
8991
|
provider: "googleOauth",
|
|
8767
8992
|
};
|
|
8768
8993
|
export const googleOauthHasGroupMemberDefinition = {
|
|
8994
|
+
displayName: "Check if a user is a Group member",
|
|
8769
8995
|
description: "Check if a user is a member of a Google Group.",
|
|
8770
8996
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8771
8997
|
tags: [],
|
|
@@ -8805,6 +9031,7 @@ export const googleOauthHasGroupMemberDefinition = {
|
|
|
8805
9031
|
provider: "googleOauth",
|
|
8806
9032
|
};
|
|
8807
9033
|
export const googleOauthAddGroupMemberDefinition = {
|
|
9034
|
+
displayName: "Add a Group member",
|
|
8808
9035
|
description: "Add a member to a Google Group.",
|
|
8809
9036
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8810
9037
|
tags: [],
|
|
@@ -8844,6 +9071,7 @@ export const googleOauthAddGroupMemberDefinition = {
|
|
|
8844
9071
|
provider: "googleOauth",
|
|
8845
9072
|
};
|
|
8846
9073
|
export const googleOauthDeleteGroupMemberDefinition = {
|
|
9074
|
+
displayName: "Delete a Group member",
|
|
8847
9075
|
description: "Remove a member from a Google Group.",
|
|
8848
9076
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8849
9077
|
tags: [],
|
|
@@ -8879,6 +9107,7 @@ export const googleOauthDeleteGroupMemberDefinition = {
|
|
|
8879
9107
|
provider: "googleOauth",
|
|
8880
9108
|
};
|
|
8881
9109
|
export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
9110
|
+
displayName: "Query Google BigQuery",
|
|
8882
9111
|
description: "Execute read only SQL queries on Google BigQuery datasets",
|
|
8883
9112
|
scopes: ["https://www.googleapis.com/auth/bigquery.readonly"],
|
|
8884
9113
|
tags: [],
|
|
@@ -8959,6 +9188,7 @@ export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
|
8959
9188
|
provider: "googleOauth",
|
|
8960
9189
|
};
|
|
8961
9190
|
export const googlemailSearchGmailMessagesDefinition = {
|
|
9191
|
+
displayName: "Search Gmail messages",
|
|
8962
9192
|
description: "Search Gmail messages in a user's inbox using a query string.",
|
|
8963
9193
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
8964
9194
|
tags: [],
|
|
@@ -9076,6 +9306,7 @@ export const googlemailSearchGmailMessagesDefinition = {
|
|
|
9076
9306
|
provider: "googlemail",
|
|
9077
9307
|
};
|
|
9078
9308
|
export const googlemailListGmailThreadsDefinition = {
|
|
9309
|
+
displayName: "List Gmail threads",
|
|
9079
9310
|
description: "List Gmail threads in a user's inbox using a query string.",
|
|
9080
9311
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
9081
9312
|
tags: [],
|
|
@@ -9159,6 +9390,7 @@ export const googlemailListGmailThreadsDefinition = {
|
|
|
9159
9390
|
provider: "googlemail",
|
|
9160
9391
|
};
|
|
9161
9392
|
export const googlemailSendGmailDefinition = {
|
|
9393
|
+
displayName: "Send email with Gmail",
|
|
9162
9394
|
description: "Send an email through Gmail with support for to, cc, bcc, subject, and content.",
|
|
9163
9395
|
scopes: ["https://www.googleapis.com/auth/gmail.send"],
|
|
9164
9396
|
tags: [],
|
|
@@ -9223,6 +9455,7 @@ export const googlemailSendGmailDefinition = {
|
|
|
9223
9455
|
provider: "googlemail",
|
|
9224
9456
|
};
|
|
9225
9457
|
export const googleSearchCustomSearchDefinition = {
|
|
9458
|
+
displayName: "Custom Search",
|
|
9226
9459
|
description: "Search for information using the Google Custom Search API",
|
|
9227
9460
|
scopes: [],
|
|
9228
9461
|
tags: [],
|
|
@@ -9330,6 +9563,7 @@ export const googleSearchCustomSearchDefinition = {
|
|
|
9330
9563
|
provider: "googleSearch",
|
|
9331
9564
|
};
|
|
9332
9565
|
export const oktaOrgGetOktaUserByNameDefinition = {
|
|
9566
|
+
displayName: "Get Okta User by name",
|
|
9333
9567
|
description: "Retrieve details of a specific Okta user by their name.",
|
|
9334
9568
|
scopes: ["okta.users.read"],
|
|
9335
9569
|
tags: [],
|
|
@@ -9387,6 +9621,7 @@ export const oktaOrgGetOktaUserByNameDefinition = {
|
|
|
9387
9621
|
provider: "oktaOrg",
|
|
9388
9622
|
};
|
|
9389
9623
|
export const finnhubSymbolLookupDefinition = {
|
|
9624
|
+
displayName: "Look up a stock symbol",
|
|
9390
9625
|
description: "Look up a stock symbol by name",
|
|
9391
9626
|
scopes: [],
|
|
9392
9627
|
tags: [],
|
|
@@ -9428,6 +9663,7 @@ export const finnhubSymbolLookupDefinition = {
|
|
|
9428
9663
|
provider: "finnhub",
|
|
9429
9664
|
};
|
|
9430
9665
|
export const finnhubGetBasicFinancialsDefinition = {
|
|
9666
|
+
displayName: "Get basic financials",
|
|
9431
9667
|
description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
|
|
9432
9668
|
scopes: [],
|
|
9433
9669
|
tags: [],
|
|
@@ -9521,6 +9757,7 @@ export const finnhubGetBasicFinancialsDefinition = {
|
|
|
9521
9757
|
provider: "finnhub",
|
|
9522
9758
|
};
|
|
9523
9759
|
export const lookerEnableUserByEmailDefinition = {
|
|
9760
|
+
displayName: "Enable user by email",
|
|
9524
9761
|
description: "Search for a Looker user by email and enable them if disabled",
|
|
9525
9762
|
scopes: [],
|
|
9526
9763
|
tags: [],
|
|
@@ -9583,6 +9820,7 @@ export const lookerEnableUserByEmailDefinition = {
|
|
|
9583
9820
|
provider: "looker",
|
|
9584
9821
|
};
|
|
9585
9822
|
export const salesforceUpdateRecordDefinition = {
|
|
9823
|
+
displayName: "Update a record",
|
|
9586
9824
|
description: "Update a record in Salesforce",
|
|
9587
9825
|
scopes: [],
|
|
9588
9826
|
tags: [],
|
|
@@ -9625,6 +9863,7 @@ export const salesforceUpdateRecordDefinition = {
|
|
|
9625
9863
|
provider: "salesforce",
|
|
9626
9864
|
};
|
|
9627
9865
|
export const salesforceCreateRecordDefinition = {
|
|
9866
|
+
displayName: "Create a record",
|
|
9628
9867
|
description: "Create a record in Salesforce",
|
|
9629
9868
|
scopes: [],
|
|
9630
9869
|
tags: [],
|
|
@@ -9667,6 +9906,7 @@ export const salesforceCreateRecordDefinition = {
|
|
|
9667
9906
|
provider: "salesforce",
|
|
9668
9907
|
};
|
|
9669
9908
|
export const salesforceCreateCaseDefinition = {
|
|
9909
|
+
displayName: "Create a case",
|
|
9670
9910
|
description: "Create a case or support ticket in Salesforce",
|
|
9671
9911
|
scopes: [],
|
|
9672
9912
|
tags: [],
|
|
@@ -9721,6 +9961,7 @@ export const salesforceCreateCaseDefinition = {
|
|
|
9721
9961
|
provider: "salesforce",
|
|
9722
9962
|
};
|
|
9723
9963
|
export const salesforceGenerateSalesReportDefinition = {
|
|
9964
|
+
displayName: "Generate a sales report",
|
|
9724
9965
|
description: "Generate a sales report from Salesforce",
|
|
9725
9966
|
scopes: [],
|
|
9726
9967
|
tags: [],
|
|
@@ -9774,6 +10015,7 @@ export const salesforceGenerateSalesReportDefinition = {
|
|
|
9774
10015
|
provider: "salesforce",
|
|
9775
10016
|
};
|
|
9776
10017
|
export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
10018
|
+
displayName: "Search all salesforce records",
|
|
9777
10019
|
description: "Search for all Salesforce records by keyword",
|
|
9778
10020
|
scopes: [],
|
|
9779
10021
|
tags: [],
|
|
@@ -9863,6 +10105,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
|
9863
10105
|
provider: "salesforce",
|
|
9864
10106
|
};
|
|
9865
10107
|
export const salesforceListReportsDefinition = {
|
|
10108
|
+
displayName: "List reports",
|
|
9866
10109
|
description: "List all available Salesforce reports",
|
|
9867
10110
|
scopes: [],
|
|
9868
10111
|
tags: [],
|
|
@@ -9896,7 +10139,44 @@ export const salesforceListReportsDefinition = {
|
|
|
9896
10139
|
name: "listReports",
|
|
9897
10140
|
provider: "salesforce",
|
|
9898
10141
|
};
|
|
10142
|
+
export const salesforceExecuteReportDefinition = {
|
|
10143
|
+
displayName: "Execute a Salesforce report",
|
|
10144
|
+
description: "Execute a Salesforce report and retrieve its results",
|
|
10145
|
+
scopes: [],
|
|
10146
|
+
tags: [],
|
|
10147
|
+
parameters: {
|
|
10148
|
+
type: "object",
|
|
10149
|
+
required: ["reportId"],
|
|
10150
|
+
properties: {
|
|
10151
|
+
reportId: {
|
|
10152
|
+
type: "string",
|
|
10153
|
+
description: "Id for the report to execute",
|
|
10154
|
+
},
|
|
10155
|
+
includeDetails: {
|
|
10156
|
+
type: "boolean",
|
|
10157
|
+
description: "Whether to include detailed report metadata in the response",
|
|
10158
|
+
},
|
|
10159
|
+
},
|
|
10160
|
+
},
|
|
10161
|
+
output: {
|
|
10162
|
+
type: "object",
|
|
10163
|
+
required: ["success"],
|
|
10164
|
+
properties: {
|
|
10165
|
+
success: {
|
|
10166
|
+
type: "boolean",
|
|
10167
|
+
description: "Whether the report was successfully executed",
|
|
10168
|
+
},
|
|
10169
|
+
error: {
|
|
10170
|
+
type: "string",
|
|
10171
|
+
description: "The error that occurred if the report was not successfully executed",
|
|
10172
|
+
},
|
|
10173
|
+
},
|
|
10174
|
+
},
|
|
10175
|
+
name: "executeReport",
|
|
10176
|
+
provider: "salesforce",
|
|
10177
|
+
};
|
|
9899
10178
|
export const salesforceSearchSalesforceRecordsDefinition = {
|
|
10179
|
+
displayName: "Search Salesforce records",
|
|
9900
10180
|
description: "Search for Salesforce records by keyword",
|
|
9901
10181
|
scopes: [],
|
|
9902
10182
|
tags: [],
|
|
@@ -9992,6 +10272,7 @@ export const salesforceSearchSalesforceRecordsDefinition = {
|
|
|
9992
10272
|
provider: "salesforce",
|
|
9993
10273
|
};
|
|
9994
10274
|
export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
10275
|
+
displayName: "Get Salesforce records with a query",
|
|
9995
10276
|
description: "Retrieve Salesforce records by SOQL query",
|
|
9996
10277
|
scopes: [],
|
|
9997
10278
|
tags: [],
|
|
@@ -10048,6 +10329,7 @@ export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
|
10048
10329
|
provider: "salesforce",
|
|
10049
10330
|
};
|
|
10050
10331
|
export const salesforceGetRecordDefinition = {
|
|
10332
|
+
displayName: "Get a record",
|
|
10051
10333
|
description: "Retrieve a record from Salesforce",
|
|
10052
10334
|
scopes: [],
|
|
10053
10335
|
tags: [],
|
|
@@ -10089,7 +10371,91 @@ export const salesforceGetRecordDefinition = {
|
|
|
10089
10371
|
name: "getRecord",
|
|
10090
10372
|
provider: "salesforce",
|
|
10091
10373
|
};
|
|
10374
|
+
export const salesforceGetReportMetadataDefinition = {
|
|
10375
|
+
displayName: "Get Salesforce report metadata",
|
|
10376
|
+
description: "Get metadata for a given Salesforce report",
|
|
10377
|
+
scopes: [],
|
|
10378
|
+
tags: [],
|
|
10379
|
+
parameters: {
|
|
10380
|
+
type: "object",
|
|
10381
|
+
required: ["reportId"],
|
|
10382
|
+
properties: {
|
|
10383
|
+
reportId: {
|
|
10384
|
+
type: "string",
|
|
10385
|
+
description: "Id for the report to retrieve metadata for",
|
|
10386
|
+
},
|
|
10387
|
+
},
|
|
10388
|
+
},
|
|
10389
|
+
output: {
|
|
10390
|
+
type: "object",
|
|
10391
|
+
required: ["success"],
|
|
10392
|
+
properties: {
|
|
10393
|
+
success: {
|
|
10394
|
+
type: "boolean",
|
|
10395
|
+
description: "Whether the report metadata was successfully retrieved",
|
|
10396
|
+
},
|
|
10397
|
+
metadata: {
|
|
10398
|
+
type: "object",
|
|
10399
|
+
description: "Filtered metadata from the report",
|
|
10400
|
+
properties: {
|
|
10401
|
+
reportType: {
|
|
10402
|
+
type: "object",
|
|
10403
|
+
description: "Report type information",
|
|
10404
|
+
properties: {
|
|
10405
|
+
type: {
|
|
10406
|
+
type: "string",
|
|
10407
|
+
description: "The type of the report",
|
|
10408
|
+
},
|
|
10409
|
+
label: {
|
|
10410
|
+
type: "string",
|
|
10411
|
+
description: "The label of the report type",
|
|
10412
|
+
},
|
|
10413
|
+
},
|
|
10414
|
+
},
|
|
10415
|
+
detailColumns: {
|
|
10416
|
+
type: "array",
|
|
10417
|
+
description: "Detail columns in the report",
|
|
10418
|
+
items: {
|
|
10419
|
+
type: "string",
|
|
10420
|
+
},
|
|
10421
|
+
},
|
|
10422
|
+
reportFilters: {
|
|
10423
|
+
type: "array",
|
|
10424
|
+
description: "Filters applied to the report",
|
|
10425
|
+
},
|
|
10426
|
+
reportBooleanFilter: {
|
|
10427
|
+
type: "string",
|
|
10428
|
+
description: "Boolean filter logic for the report",
|
|
10429
|
+
},
|
|
10430
|
+
standardDateFilter: {
|
|
10431
|
+
type: "object",
|
|
10432
|
+
description: "Standard date filter configuration",
|
|
10433
|
+
},
|
|
10434
|
+
groupingsDown: {
|
|
10435
|
+
type: "array",
|
|
10436
|
+
description: "Row groupings for the report",
|
|
10437
|
+
},
|
|
10438
|
+
groupingsAcross: {
|
|
10439
|
+
type: "array",
|
|
10440
|
+
description: "Column groupings for matrix reports",
|
|
10441
|
+
},
|
|
10442
|
+
scope: {
|
|
10443
|
+
type: "string",
|
|
10444
|
+
description: "The scope of the report",
|
|
10445
|
+
},
|
|
10446
|
+
},
|
|
10447
|
+
},
|
|
10448
|
+
error: {
|
|
10449
|
+
type: "string",
|
|
10450
|
+
description: "The error that occurred if the report metadata was not successfully retrieved",
|
|
10451
|
+
},
|
|
10452
|
+
},
|
|
10453
|
+
},
|
|
10454
|
+
name: "getReportMetadata",
|
|
10455
|
+
provider: "salesforce",
|
|
10456
|
+
};
|
|
10092
10457
|
export const microsoftCreateDocumentDefinition = {
|
|
10458
|
+
displayName: "Create a document",
|
|
10093
10459
|
description: "Creates a new Office365 document",
|
|
10094
10460
|
scopes: ["Files.ReadWrite", "Sites.Manage.All", "Sites.ReadWrite.All"],
|
|
10095
10461
|
tags: [],
|
|
@@ -10145,6 +10511,7 @@ export const microsoftCreateDocumentDefinition = {
|
|
|
10145
10511
|
provider: "microsoft",
|
|
10146
10512
|
};
|
|
10147
10513
|
export const microsoftUpdateDocumentDefinition = {
|
|
10514
|
+
displayName: "Update a document",
|
|
10148
10515
|
description: "Updates a Office365 document",
|
|
10149
10516
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10150
10517
|
tags: [],
|
|
@@ -10188,6 +10555,7 @@ export const microsoftUpdateDocumentDefinition = {
|
|
|
10188
10555
|
provider: "microsoft",
|
|
10189
10556
|
};
|
|
10190
10557
|
export const microsoftUpdateSpreadsheetDefinition = {
|
|
10558
|
+
displayName: "Update a spreadsheet",
|
|
10191
10559
|
description: "Updates a Microsoft Excel spreadsheet",
|
|
10192
10560
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10193
10561
|
tags: [],
|
|
@@ -10241,6 +10609,7 @@ export const microsoftUpdateSpreadsheetDefinition = {
|
|
|
10241
10609
|
provider: "microsoft",
|
|
10242
10610
|
};
|
|
10243
10611
|
export const microsoftMessageTeamsChatDefinition = {
|
|
10612
|
+
displayName: "Message a Teams chat",
|
|
10244
10613
|
description: "Sends a message to a Microsoft Teams chat",
|
|
10245
10614
|
scopes: ["ChatMessage.Send"],
|
|
10246
10615
|
tags: [],
|
|
@@ -10280,6 +10649,7 @@ export const microsoftMessageTeamsChatDefinition = {
|
|
|
10280
10649
|
provider: "microsoft",
|
|
10281
10650
|
};
|
|
10282
10651
|
export const microsoftMessageTeamsChannelDefinition = {
|
|
10652
|
+
displayName: "Message a Teams channel",
|
|
10283
10653
|
description: "Sends a message to a Microsoft Teams channel",
|
|
10284
10654
|
scopes: ["ChannelMessage.Send"],
|
|
10285
10655
|
tags: [],
|
|
@@ -10323,6 +10693,7 @@ export const microsoftMessageTeamsChannelDefinition = {
|
|
|
10323
10693
|
provider: "microsoft",
|
|
10324
10694
|
};
|
|
10325
10695
|
export const microsoftGetDocumentDefinition = {
|
|
10696
|
+
displayName: "Get a document",
|
|
10326
10697
|
description: "Retrieves the content of a Microsoft Office document",
|
|
10327
10698
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10328
10699
|
tags: [],
|
|
@@ -10362,6 +10733,7 @@ export const microsoftGetDocumentDefinition = {
|
|
|
10362
10733
|
provider: "microsoft",
|
|
10363
10734
|
};
|
|
10364
10735
|
export const githubCreateOrUpdateFileDefinition = {
|
|
10736
|
+
displayName: "Create or update a file",
|
|
10365
10737
|
description: "Create or update a file in a GitHub repository",
|
|
10366
10738
|
scopes: [],
|
|
10367
10739
|
tags: [],
|
|
@@ -10428,6 +10800,7 @@ export const githubCreateOrUpdateFileDefinition = {
|
|
|
10428
10800
|
provider: "github",
|
|
10429
10801
|
};
|
|
10430
10802
|
export const githubCreateBranchDefinition = {
|
|
10803
|
+
displayName: "Create a branch",
|
|
10431
10804
|
description: "Create a new branch in a GitHub repository",
|
|
10432
10805
|
scopes: [],
|
|
10433
10806
|
tags: [],
|
|
@@ -10473,6 +10846,7 @@ export const githubCreateBranchDefinition = {
|
|
|
10473
10846
|
provider: "github",
|
|
10474
10847
|
};
|
|
10475
10848
|
export const githubCreatePullRequestDefinition = {
|
|
10849
|
+
displayName: "Create a pull request",
|
|
10476
10850
|
description: "Create a pull request in a GitHub repository",
|
|
10477
10851
|
scopes: [],
|
|
10478
10852
|
tags: [],
|
|
@@ -10534,6 +10908,7 @@ export const githubCreatePullRequestDefinition = {
|
|
|
10534
10908
|
provider: "github",
|
|
10535
10909
|
};
|
|
10536
10910
|
export const githubListPullRequestsDefinition = {
|
|
10911
|
+
displayName: "List pull requests",
|
|
10537
10912
|
description: "List pull requests in a GitHub repository",
|
|
10538
10913
|
scopes: [],
|
|
10539
10914
|
tags: [],
|
|
@@ -10634,6 +11009,7 @@ export const githubListPullRequestsDefinition = {
|
|
|
10634
11009
|
provider: "github",
|
|
10635
11010
|
};
|
|
10636
11011
|
export const githubGetPullRequestDetailsDefinition = {
|
|
11012
|
+
displayName: "Fetch pull request",
|
|
10637
11013
|
description: "Get detailed information about a specific pull request including description, files, reviews, and status",
|
|
10638
11014
|
scopes: [],
|
|
10639
11015
|
tags: [],
|
|
@@ -10914,6 +11290,7 @@ export const githubGetPullRequestDetailsDefinition = {
|
|
|
10914
11290
|
provider: "github",
|
|
10915
11291
|
};
|
|
10916
11292
|
export const githubGetFileContentDefinition = {
|
|
11293
|
+
displayName: "Fetch file contents",
|
|
10917
11294
|
description: "Get specified file content from a GitHub repository",
|
|
10918
11295
|
scopes: [],
|
|
10919
11296
|
tags: [],
|
|
@@ -10993,6 +11370,7 @@ export const githubGetFileContentDefinition = {
|
|
|
10993
11370
|
provider: "github",
|
|
10994
11371
|
};
|
|
10995
11372
|
export const githubListDirectoryDefinition = {
|
|
11373
|
+
displayName: "List contents of a directory",
|
|
10996
11374
|
description: "List directory contents of a path in a GitHub repository",
|
|
10997
11375
|
scopes: [],
|
|
10998
11376
|
tags: [],
|
|
@@ -11071,6 +11449,7 @@ export const githubListDirectoryDefinition = {
|
|
|
11071
11449
|
provider: "github",
|
|
11072
11450
|
};
|
|
11073
11451
|
export const githubSearchOrganizationDefinition = {
|
|
11452
|
+
displayName: "Search an organization",
|
|
11074
11453
|
description: "Search for code, issues and pull requests within a GitHub organization",
|
|
11075
11454
|
scopes: [],
|
|
11076
11455
|
tags: [],
|
|
@@ -11363,6 +11742,7 @@ export const githubSearchOrganizationDefinition = {
|
|
|
11363
11742
|
provider: "github",
|
|
11364
11743
|
};
|
|
11365
11744
|
export const githubGetBranchDefinition = {
|
|
11745
|
+
displayName: "Get a branch",
|
|
11366
11746
|
description: "Get a branch in a GitHub repository",
|
|
11367
11747
|
scopes: [],
|
|
11368
11748
|
tags: [],
|
|
@@ -11622,6 +12002,7 @@ export const githubGetBranchDefinition = {
|
|
|
11622
12002
|
provider: "github",
|
|
11623
12003
|
};
|
|
11624
12004
|
export const githubListCommitsDefinition = {
|
|
12005
|
+
displayName: "List commits",
|
|
11625
12006
|
description: "List commits in a GitHub repository with optional date filtering and pagination",
|
|
11626
12007
|
scopes: [],
|
|
11627
12008
|
tags: [],
|
|
@@ -11809,6 +12190,7 @@ export const githubListCommitsDefinition = {
|
|
|
11809
12190
|
provider: "github",
|
|
11810
12191
|
};
|
|
11811
12192
|
export const notionSearchByTitleDefinition = {
|
|
12193
|
+
displayName: "Search by title",
|
|
11812
12194
|
description: "Search Notion pages and databases by title",
|
|
11813
12195
|
scopes: [],
|
|
11814
12196
|
tags: [],
|
|
@@ -11863,6 +12245,7 @@ export const notionSearchByTitleDefinition = {
|
|
|
11863
12245
|
provider: "notion",
|
|
11864
12246
|
};
|
|
11865
12247
|
export const gitlabSearchGroupDefinition = {
|
|
12248
|
+
displayName: "Search a group",
|
|
11866
12249
|
description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
|
|
11867
12250
|
scopes: [],
|
|
11868
12251
|
tags: [],
|
|
@@ -12151,6 +12534,7 @@ export const gitlabSearchGroupDefinition = {
|
|
|
12151
12534
|
provider: "gitlab",
|
|
12152
12535
|
};
|
|
12153
12536
|
export const gitlabGetFileContentDefinition = {
|
|
12537
|
+
displayName: "Get file content",
|
|
12154
12538
|
description: "Get specified file content from a GitLab repository",
|
|
12155
12539
|
scopes: [],
|
|
12156
12540
|
tags: [],
|
|
@@ -12231,6 +12615,7 @@ export const gitlabGetFileContentDefinition = {
|
|
|
12231
12615
|
provider: "gitlab",
|
|
12232
12616
|
};
|
|
12233
12617
|
export const gitlabGetMergeRequestDefinition = {
|
|
12618
|
+
displayName: "Get merge request",
|
|
12234
12619
|
description: "Get specified merge request from a GitLab repository",
|
|
12235
12620
|
scopes: [],
|
|
12236
12621
|
tags: [],
|
|
@@ -12454,6 +12839,7 @@ export const gitlabGetMergeRequestDefinition = {
|
|
|
12454
12839
|
provider: "gitlab",
|
|
12455
12840
|
};
|
|
12456
12841
|
export const gitlabListDirectoryDefinition = {
|
|
12842
|
+
displayName: "List contents of a directory",
|
|
12457
12843
|
description: "List directory contents of a path in a GitLab repository",
|
|
12458
12844
|
scopes: [],
|
|
12459
12845
|
tags: [],
|
|
@@ -12544,6 +12930,7 @@ export const gitlabListDirectoryDefinition = {
|
|
|
12544
12930
|
provider: "gitlab",
|
|
12545
12931
|
};
|
|
12546
12932
|
export const linearGetIssuesDefinition = {
|
|
12933
|
+
displayName: "List or search issues",
|
|
12547
12934
|
description: "Get Linear issues with optional query filter",
|
|
12548
12935
|
scopes: [],
|
|
12549
12936
|
tags: [],
|
|
@@ -12674,6 +13061,7 @@ export const linearGetIssuesDefinition = {
|
|
|
12674
13061
|
provider: "linear",
|
|
12675
13062
|
};
|
|
12676
13063
|
export const linearGetIssueDetailsDefinition = {
|
|
13064
|
+
displayName: "Fetch issue",
|
|
12677
13065
|
description: "Get detailed information about a Linear issue",
|
|
12678
13066
|
scopes: [],
|
|
12679
13067
|
tags: [],
|
|
@@ -12835,6 +13223,7 @@ export const linearGetIssueDetailsDefinition = {
|
|
|
12835
13223
|
provider: "linear",
|
|
12836
13224
|
};
|
|
12837
13225
|
export const linearGetProjectsDefinition = {
|
|
13226
|
+
displayName: "Fetch projects",
|
|
12838
13227
|
description: "Get all Linear projects",
|
|
12839
13228
|
scopes: [],
|
|
12840
13229
|
tags: [],
|
|
@@ -12933,6 +13322,7 @@ export const linearGetProjectsDefinition = {
|
|
|
12933
13322
|
provider: "linear",
|
|
12934
13323
|
};
|
|
12935
13324
|
export const linearGetProjectDetailsDefinition = {
|
|
13325
|
+
displayName: "Get project details",
|
|
12936
13326
|
description: "Get detailed information about a Linear project",
|
|
12937
13327
|
scopes: [],
|
|
12938
13328
|
tags: [],
|
|
@@ -13080,6 +13470,7 @@ export const linearGetProjectDetailsDefinition = {
|
|
|
13080
13470
|
provider: "linear",
|
|
13081
13471
|
};
|
|
13082
13472
|
export const linearGetTeamDetailsDefinition = {
|
|
13473
|
+
displayName: "Get team details",
|
|
13083
13474
|
description: "Get detailed information about a Linear team",
|
|
13084
13475
|
scopes: [],
|
|
13085
13476
|
tags: [],
|
|
@@ -13147,6 +13538,7 @@ export const linearGetTeamDetailsDefinition = {
|
|
|
13147
13538
|
provider: "linear",
|
|
13148
13539
|
};
|
|
13149
13540
|
export const linearGetTeamsDefinition = {
|
|
13541
|
+
displayName: "Get teams",
|
|
13150
13542
|
description: "Get all teams in Linear",
|
|
13151
13543
|
scopes: [],
|
|
13152
13544
|
tags: [],
|
|
@@ -13190,6 +13582,7 @@ export const linearGetTeamsDefinition = {
|
|
|
13190
13582
|
provider: "linear",
|
|
13191
13583
|
};
|
|
13192
13584
|
export const hubspotGetContactsDefinition = {
|
|
13585
|
+
displayName: "Get contacts",
|
|
13193
13586
|
description: "List or search HubSpot contacts by optional query",
|
|
13194
13587
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13195
13588
|
tags: [],
|
|
@@ -13254,6 +13647,7 @@ export const hubspotGetContactsDefinition = {
|
|
|
13254
13647
|
provider: "hubspot",
|
|
13255
13648
|
};
|
|
13256
13649
|
export const hubspotGetContactDetailsDefinition = {
|
|
13650
|
+
displayName: "Get details of a contact",
|
|
13257
13651
|
description: "Get detailed information about a specific HubSpot contact",
|
|
13258
13652
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13259
13653
|
tags: [],
|
|
@@ -13355,6 +13749,7 @@ export const hubspotGetContactDetailsDefinition = {
|
|
|
13355
13749
|
provider: "hubspot",
|
|
13356
13750
|
};
|
|
13357
13751
|
export const hubspotGetCompaniesDefinition = {
|
|
13752
|
+
displayName: "Get companies",
|
|
13358
13753
|
description: "List or search HubSpot companies by optional query",
|
|
13359
13754
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13360
13755
|
tags: [],
|
|
@@ -13415,6 +13810,7 @@ export const hubspotGetCompaniesDefinition = {
|
|
|
13415
13810
|
provider: "hubspot",
|
|
13416
13811
|
};
|
|
13417
13812
|
export const hubspotGetCompanyDetailsDefinition = {
|
|
13813
|
+
displayName: "Get details of a company",
|
|
13418
13814
|
description: "Get detailed information about a specific HubSpot company",
|
|
13419
13815
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13420
13816
|
tags: [],
|
|
@@ -13508,6 +13904,7 @@ export const hubspotGetCompanyDetailsDefinition = {
|
|
|
13508
13904
|
provider: "hubspot",
|
|
13509
13905
|
};
|
|
13510
13906
|
export const hubspotGetDealsDefinition = {
|
|
13907
|
+
displayName: "Get deals",
|
|
13511
13908
|
description: "List or search HubSpot deals by optional query",
|
|
13512
13909
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13513
13910
|
tags: [],
|
|
@@ -13572,6 +13969,7 @@ export const hubspotGetDealsDefinition = {
|
|
|
13572
13969
|
provider: "hubspot",
|
|
13573
13970
|
};
|
|
13574
13971
|
export const hubspotGetDealDetailsDefinition = {
|
|
13972
|
+
displayName: "Get details of a deal",
|
|
13575
13973
|
description: "Get detailed information about a specific HubSpot deal",
|
|
13576
13974
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13577
13975
|
tags: [],
|
|
@@ -13657,6 +14055,7 @@ export const hubspotGetDealDetailsDefinition = {
|
|
|
13657
14055
|
provider: "hubspot",
|
|
13658
14056
|
};
|
|
13659
14057
|
export const hubspotGetTicketsDefinition = {
|
|
14058
|
+
displayName: "Get tickets",
|
|
13660
14059
|
description: "List or search HubSpot tickets by optional query",
|
|
13661
14060
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13662
14061
|
tags: [],
|
|
@@ -13717,6 +14116,7 @@ export const hubspotGetTicketsDefinition = {
|
|
|
13717
14116
|
provider: "hubspot",
|
|
13718
14117
|
};
|
|
13719
14118
|
export const hubspotGetTicketDetailsDefinition = {
|
|
14119
|
+
displayName: "Get details of a ticket",
|
|
13720
14120
|
description: "Get detailed information about a specific HubSpot ticket",
|
|
13721
14121
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13722
14122
|
tags: [],
|