@credal/actions 0.2.186 → 0.2.188
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/autogen/templates.js +172 -11
- package/dist/actions/autogen/types.d.ts +28 -28
- package/dist/actions/autogen/types.js +2 -2
- package/dist/actions/groups.js +14 -1
- package/dist/actions/parse.d.ts +3 -0
- package/dist/actions/parse.js +1 -0
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +47 -0
- package/dist/actions/providers/jamf/types.d.ts +8 -0
- package/dist/actions/providers/jamf/types.js +7 -0
- package/dist/actions/providers/slack/archiveChannel.js +9 -2
- package/package.json +1 -1
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
|
@@ -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,6 +1055,7 @@ 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
1061
|
"search:read.public",
|
|
@@ -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: [],
|
|
@@ -4409,8 +4480,11 @@ export const resendSendEmailDefinition = {
|
|
|
4409
4480
|
required: ["to", "subject", "content"],
|
|
4410
4481
|
properties: {
|
|
4411
4482
|
to: {
|
|
4412
|
-
type: "
|
|
4413
|
-
|
|
4483
|
+
type: "array",
|
|
4484
|
+
items: {
|
|
4485
|
+
type: "string",
|
|
4486
|
+
},
|
|
4487
|
+
description: "The email address(es) to send the email to",
|
|
4414
4488
|
},
|
|
4415
4489
|
subject: {
|
|
4416
4490
|
type: "string",
|
|
@@ -4440,6 +4514,7 @@ export const resendSendEmailDefinition = {
|
|
|
4440
4514
|
provider: "resend",
|
|
4441
4515
|
};
|
|
4442
4516
|
export const resendSendEmailHtmlDefinition = {
|
|
4517
|
+
displayName: "Send an HTML email",
|
|
4443
4518
|
description: "Send an HTML email using Resend",
|
|
4444
4519
|
scopes: [],
|
|
4445
4520
|
tags: [],
|
|
@@ -4448,8 +4523,11 @@ export const resendSendEmailHtmlDefinition = {
|
|
|
4448
4523
|
required: ["to", "subject", "content"],
|
|
4449
4524
|
properties: {
|
|
4450
4525
|
to: {
|
|
4451
|
-
type: "
|
|
4452
|
-
|
|
4526
|
+
type: "array",
|
|
4527
|
+
items: {
|
|
4528
|
+
type: "string",
|
|
4529
|
+
},
|
|
4530
|
+
description: "The email address(es) to send the email to",
|
|
4453
4531
|
},
|
|
4454
4532
|
subject: {
|
|
4455
4533
|
type: "string",
|
|
@@ -4479,6 +4557,7 @@ export const resendSendEmailHtmlDefinition = {
|
|
|
4479
4557
|
provider: "resend",
|
|
4480
4558
|
};
|
|
4481
4559
|
export const googleOauthCreateNewGoogleDocDefinition = {
|
|
4560
|
+
displayName: "Create a new Google Doc",
|
|
4482
4561
|
description: "Create a new Google Docs document using OAuth authentication",
|
|
4483
4562
|
scopes: [],
|
|
4484
4563
|
tags: [],
|
|
@@ -4518,6 +4597,7 @@ export const googleOauthCreateNewGoogleDocDefinition = {
|
|
|
4518
4597
|
provider: "googleOauth",
|
|
4519
4598
|
};
|
|
4520
4599
|
export const googleOauthUpdateDocDefinition = {
|
|
4600
|
+
displayName: "Update a Google Doc",
|
|
4521
4601
|
description: "Update an existing Google Docs document using OAuth authentication with batch requests",
|
|
4522
4602
|
scopes: [],
|
|
4523
4603
|
tags: [],
|
|
@@ -5630,7 +5710,8 @@ export const googleOauthUpdateDocDefinition = {
|
|
|
5630
5710
|
provider: "googleOauth",
|
|
5631
5711
|
};
|
|
5632
5712
|
export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
5633
|
-
|
|
5713
|
+
displayName: "Schedule a Calendar meeting",
|
|
5714
|
+
description: "Schedule a meeting on Google Calendar using OAuth authentication",
|
|
5634
5715
|
scopes: [],
|
|
5635
5716
|
tags: [],
|
|
5636
5717
|
parameters: {
|
|
@@ -5748,6 +5829,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5748
5829
|
provider: "googleOauth",
|
|
5749
5830
|
};
|
|
5750
5831
|
export const googleOauthListCalendarsDefinition = {
|
|
5832
|
+
displayName: "List calendars",
|
|
5751
5833
|
description: "List all Google Calendars for the authenticated user",
|
|
5752
5834
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5753
5835
|
tags: [],
|
|
@@ -5797,6 +5879,7 @@ export const googleOauthListCalendarsDefinition = {
|
|
|
5797
5879
|
provider: "googleOauth",
|
|
5798
5880
|
};
|
|
5799
5881
|
export const googleOauthListCalendarEventsDefinition = {
|
|
5882
|
+
displayName: "List Calendar events",
|
|
5800
5883
|
description: "List events on a Google Calendar, optionally searching by query.",
|
|
5801
5884
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5802
5885
|
tags: [],
|
|
@@ -5979,6 +6062,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
|
5979
6062
|
provider: "googleOauth",
|
|
5980
6063
|
};
|
|
5981
6064
|
export const googleOauthUpdateCalendarEventDefinition = {
|
|
6065
|
+
displayName: "Update a Calendar event",
|
|
5982
6066
|
description: "Update an event on a Google Calendar using OAuth authentication",
|
|
5983
6067
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
5984
6068
|
tags: [],
|
|
@@ -6079,6 +6163,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
|
|
|
6079
6163
|
provider: "googleOauth",
|
|
6080
6164
|
};
|
|
6081
6165
|
export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
6166
|
+
displayName: "Edit a Google Calendar event",
|
|
6082
6167
|
description: "Edit an existing Google Calendar event using OAuth authentication",
|
|
6083
6168
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6084
6169
|
tags: [],
|
|
@@ -6177,6 +6262,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
|
6177
6262
|
provider: "googleOauth",
|
|
6178
6263
|
};
|
|
6179
6264
|
export const googleOauthDeleteCalendarEventDefinition = {
|
|
6265
|
+
displayName: "Delete a Calendar event",
|
|
6180
6266
|
description: "Delete an event from a Google Calendar using OAuth authentication",
|
|
6181
6267
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6182
6268
|
tags: [],
|
|
@@ -6213,6 +6299,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
|
|
|
6213
6299
|
provider: "googleOauth",
|
|
6214
6300
|
};
|
|
6215
6301
|
export const googleOauthCreateSpreadsheetDefinition = {
|
|
6302
|
+
displayName: "Create a spreadsheet",
|
|
6216
6303
|
description: "Create a new Google Spreadsheet using OAuth authentication",
|
|
6217
6304
|
scopes: [],
|
|
6218
6305
|
tags: [],
|
|
@@ -6326,6 +6413,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
|
6326
6413
|
provider: "googleOauth",
|
|
6327
6414
|
};
|
|
6328
6415
|
export const googleOauthUpdateSpreadsheetDefinition = {
|
|
6416
|
+
displayName: "Update a spreadsheet",
|
|
6329
6417
|
description: "Update a Google Spreadsheet with new content specified",
|
|
6330
6418
|
scopes: [],
|
|
6331
6419
|
tags: [],
|
|
@@ -6715,6 +6803,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6715
6803
|
provider: "googleOauth",
|
|
6716
6804
|
};
|
|
6717
6805
|
export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
6806
|
+
displayName: "Add rows to a spreadsheet",
|
|
6718
6807
|
description: "Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.",
|
|
6719
6808
|
scopes: [],
|
|
6720
6809
|
tags: [],
|
|
@@ -6773,6 +6862,7 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
|
6773
6862
|
provider: "googleOauth",
|
|
6774
6863
|
};
|
|
6775
6864
|
export const googleOauthDeleteRowFromSpreadsheetDefinition = {
|
|
6865
|
+
displayName: "Delete a row from a spreadsheet",
|
|
6776
6866
|
description: "Deletes a specific row from a Google Spreadsheet by row index. Row indices are 0-based (first row is 0).",
|
|
6777
6867
|
scopes: [],
|
|
6778
6868
|
tags: [],
|
|
@@ -6824,6 +6914,7 @@ export const googleOauthDeleteRowFromSpreadsheetDefinition = {
|
|
|
6824
6914
|
provider: "googleOauth",
|
|
6825
6915
|
};
|
|
6826
6916
|
export const googleOauthUpdateRowsInSpreadsheetDefinition = {
|
|
6917
|
+
displayName: "Update rows in a spreadsheet",
|
|
6827
6918
|
description: "Updates one or more rows in a Google Spreadsheet starting from a specific row number. This overwrites existing data in the specified rows.",
|
|
6828
6919
|
scopes: [],
|
|
6829
6920
|
tags: [],
|
|
@@ -6902,6 +6993,7 @@ export const googleOauthUpdateRowsInSpreadsheetDefinition = {
|
|
|
6902
6993
|
provider: "googleOauth",
|
|
6903
6994
|
};
|
|
6904
6995
|
export const googleOauthCreatePresentationDefinition = {
|
|
6996
|
+
displayName: "Create a presentation",
|
|
6905
6997
|
description: "Create a Google Presentation",
|
|
6906
6998
|
scopes: [],
|
|
6907
6999
|
tags: [],
|
|
@@ -6976,6 +7068,7 @@ export const googleOauthCreatePresentationDefinition = {
|
|
|
6976
7068
|
provider: "googleOauth",
|
|
6977
7069
|
};
|
|
6978
7070
|
export const googleOauthUpdatePresentationDefinition = {
|
|
7071
|
+
displayName: "Update a presentation",
|
|
6979
7072
|
description: "Update a Google Presentation",
|
|
6980
7073
|
scopes: [],
|
|
6981
7074
|
tags: [],
|
|
@@ -8266,6 +8359,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
|
8266
8359
|
provider: "googleOauth",
|
|
8267
8360
|
};
|
|
8268
8361
|
export const googleOauthGetPresentationDefinition = {
|
|
8362
|
+
displayName: "Get a presentation",
|
|
8269
8363
|
description: "Get a presentation by ID",
|
|
8270
8364
|
scopes: ["slides.readonly"],
|
|
8271
8365
|
tags: [],
|
|
@@ -8323,6 +8417,7 @@ export const googleOauthGetPresentationDefinition = {
|
|
|
8323
8417
|
provider: "googleOauth",
|
|
8324
8418
|
};
|
|
8325
8419
|
export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
8420
|
+
displayName: "Search Drive by keyword (legacy)",
|
|
8326
8421
|
description: "Search Google Drive files that contain one or more keywords in their full text.",
|
|
8327
8422
|
scopes: ["drive.readonly"],
|
|
8328
8423
|
tags: [],
|
|
@@ -8391,6 +8486,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
|
8391
8486
|
provider: "googleOauth",
|
|
8392
8487
|
};
|
|
8393
8488
|
export const googleOauthSearchDriveByQueryDefinition = {
|
|
8489
|
+
displayName: "Search Drive with a query (legacy)",
|
|
8394
8490
|
description: "Search Google Drive files based on a google drive query provided.",
|
|
8395
8491
|
scopes: ["drive.readonly"],
|
|
8396
8492
|
tags: [],
|
|
@@ -8464,6 +8560,7 @@ export const googleOauthSearchDriveByQueryDefinition = {
|
|
|
8464
8560
|
provider: "googleOauth",
|
|
8465
8561
|
};
|
|
8466
8562
|
export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
8563
|
+
displayName: "Search Drive by keyword",
|
|
8467
8564
|
description: "Search Google Drive with keywords and get resulting content",
|
|
8468
8565
|
scopes: ["drive.readonly"],
|
|
8469
8566
|
tags: [],
|
|
@@ -8562,6 +8659,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
|
8562
8659
|
provider: "googleOauth",
|
|
8563
8660
|
};
|
|
8564
8661
|
export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
8662
|
+
displayName: "Search Drive with a query and get file contents (legacy)",
|
|
8565
8663
|
description: "Search Google Drive with Google Drive query syntax and get resulting content",
|
|
8566
8664
|
scopes: ["drive.readonly"],
|
|
8567
8665
|
tags: [],
|
|
@@ -8645,6 +8743,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
|
8645
8743
|
provider: "googleOauth",
|
|
8646
8744
|
};
|
|
8647
8745
|
export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
8746
|
+
displayName: "Fetch file contents",
|
|
8648
8747
|
description: "Get text content of a Google Drive file by its ID.",
|
|
8649
8748
|
scopes: ["drive.readonly"],
|
|
8650
8749
|
tags: [],
|
|
@@ -8724,6 +8823,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
|
8724
8823
|
provider: "googleOauth",
|
|
8725
8824
|
};
|
|
8726
8825
|
export const googleOauthListGroupsDefinition = {
|
|
8826
|
+
displayName: "List Groups",
|
|
8727
8827
|
description: "List all Google Groups for the customer.",
|
|
8728
8828
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8729
8829
|
tags: [],
|
|
@@ -8781,6 +8881,7 @@ export const googleOauthListGroupsDefinition = {
|
|
|
8781
8881
|
provider: "googleOauth",
|
|
8782
8882
|
};
|
|
8783
8883
|
export const googleOauthGetGroupDefinition = {
|
|
8884
|
+
displayName: "Get a Group",
|
|
8784
8885
|
description: "Get details for a specific Google Group by group email or ID.",
|
|
8785
8886
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8786
8887
|
tags: [],
|
|
@@ -8834,6 +8935,7 @@ export const googleOauthGetGroupDefinition = {
|
|
|
8834
8935
|
provider: "googleOauth",
|
|
8835
8936
|
};
|
|
8836
8937
|
export const googleOauthListGroupMembersDefinition = {
|
|
8938
|
+
displayName: "List Group members",
|
|
8837
8939
|
description: "List all members of a Google Group.",
|
|
8838
8940
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8839
8941
|
tags: [],
|
|
@@ -8895,6 +8997,7 @@ export const googleOauthListGroupMembersDefinition = {
|
|
|
8895
8997
|
provider: "googleOauth",
|
|
8896
8998
|
};
|
|
8897
8999
|
export const googleOauthHasGroupMemberDefinition = {
|
|
9000
|
+
displayName: "Check if a user is a Group member",
|
|
8898
9001
|
description: "Check if a user is a member of a Google Group.",
|
|
8899
9002
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8900
9003
|
tags: [],
|
|
@@ -8934,6 +9037,7 @@ export const googleOauthHasGroupMemberDefinition = {
|
|
|
8934
9037
|
provider: "googleOauth",
|
|
8935
9038
|
};
|
|
8936
9039
|
export const googleOauthAddGroupMemberDefinition = {
|
|
9040
|
+
displayName: "Add a Group member",
|
|
8937
9041
|
description: "Add a member to a Google Group.",
|
|
8938
9042
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8939
9043
|
tags: [],
|
|
@@ -8973,6 +9077,7 @@ export const googleOauthAddGroupMemberDefinition = {
|
|
|
8973
9077
|
provider: "googleOauth",
|
|
8974
9078
|
};
|
|
8975
9079
|
export const googleOauthDeleteGroupMemberDefinition = {
|
|
9080
|
+
displayName: "Delete a Group member",
|
|
8976
9081
|
description: "Remove a member from a Google Group.",
|
|
8977
9082
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8978
9083
|
tags: [],
|
|
@@ -9008,6 +9113,7 @@ export const googleOauthDeleteGroupMemberDefinition = {
|
|
|
9008
9113
|
provider: "googleOauth",
|
|
9009
9114
|
};
|
|
9010
9115
|
export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
9116
|
+
displayName: "Query Google BigQuery",
|
|
9011
9117
|
description: "Execute read only SQL queries on Google BigQuery datasets",
|
|
9012
9118
|
scopes: ["https://www.googleapis.com/auth/bigquery.readonly"],
|
|
9013
9119
|
tags: [],
|
|
@@ -9088,6 +9194,7 @@ export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
|
9088
9194
|
provider: "googleOauth",
|
|
9089
9195
|
};
|
|
9090
9196
|
export const googlemailSearchGmailMessagesDefinition = {
|
|
9197
|
+
displayName: "Search Gmail messages",
|
|
9091
9198
|
description: "Search Gmail messages in a user's inbox using a query string.",
|
|
9092
9199
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
9093
9200
|
tags: [],
|
|
@@ -9205,6 +9312,7 @@ export const googlemailSearchGmailMessagesDefinition = {
|
|
|
9205
9312
|
provider: "googlemail",
|
|
9206
9313
|
};
|
|
9207
9314
|
export const googlemailListGmailThreadsDefinition = {
|
|
9315
|
+
displayName: "List Gmail threads",
|
|
9208
9316
|
description: "List Gmail threads in a user's inbox using a query string.",
|
|
9209
9317
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
9210
9318
|
tags: [],
|
|
@@ -9288,6 +9396,7 @@ export const googlemailListGmailThreadsDefinition = {
|
|
|
9288
9396
|
provider: "googlemail",
|
|
9289
9397
|
};
|
|
9290
9398
|
export const googlemailSendGmailDefinition = {
|
|
9399
|
+
displayName: "Send email with Gmail",
|
|
9291
9400
|
description: "Send an email through Gmail with support for to, cc, bcc, subject, and content.",
|
|
9292
9401
|
scopes: ["https://www.googleapis.com/auth/gmail.send"],
|
|
9293
9402
|
tags: [],
|
|
@@ -9352,6 +9461,7 @@ export const googlemailSendGmailDefinition = {
|
|
|
9352
9461
|
provider: "googlemail",
|
|
9353
9462
|
};
|
|
9354
9463
|
export const googleSearchCustomSearchDefinition = {
|
|
9464
|
+
displayName: "Custom Search",
|
|
9355
9465
|
description: "Search for information using the Google Custom Search API",
|
|
9356
9466
|
scopes: [],
|
|
9357
9467
|
tags: [],
|
|
@@ -9459,6 +9569,7 @@ export const googleSearchCustomSearchDefinition = {
|
|
|
9459
9569
|
provider: "googleSearch",
|
|
9460
9570
|
};
|
|
9461
9571
|
export const oktaOrgGetOktaUserByNameDefinition = {
|
|
9572
|
+
displayName: "Get Okta User by name",
|
|
9462
9573
|
description: "Retrieve details of a specific Okta user by their name.",
|
|
9463
9574
|
scopes: ["okta.users.read"],
|
|
9464
9575
|
tags: [],
|
|
@@ -9516,6 +9627,7 @@ export const oktaOrgGetOktaUserByNameDefinition = {
|
|
|
9516
9627
|
provider: "oktaOrg",
|
|
9517
9628
|
};
|
|
9518
9629
|
export const finnhubSymbolLookupDefinition = {
|
|
9630
|
+
displayName: "Look up a stock symbol",
|
|
9519
9631
|
description: "Look up a stock symbol by name",
|
|
9520
9632
|
scopes: [],
|
|
9521
9633
|
tags: [],
|
|
@@ -9557,6 +9669,7 @@ export const finnhubSymbolLookupDefinition = {
|
|
|
9557
9669
|
provider: "finnhub",
|
|
9558
9670
|
};
|
|
9559
9671
|
export const finnhubGetBasicFinancialsDefinition = {
|
|
9672
|
+
displayName: "Get basic financials",
|
|
9560
9673
|
description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
|
|
9561
9674
|
scopes: [],
|
|
9562
9675
|
tags: [],
|
|
@@ -9650,6 +9763,7 @@ export const finnhubGetBasicFinancialsDefinition = {
|
|
|
9650
9763
|
provider: "finnhub",
|
|
9651
9764
|
};
|
|
9652
9765
|
export const lookerEnableUserByEmailDefinition = {
|
|
9766
|
+
displayName: "Enable user by email",
|
|
9653
9767
|
description: "Search for a Looker user by email and enable them if disabled",
|
|
9654
9768
|
scopes: [],
|
|
9655
9769
|
tags: [],
|
|
@@ -9712,6 +9826,7 @@ export const lookerEnableUserByEmailDefinition = {
|
|
|
9712
9826
|
provider: "looker",
|
|
9713
9827
|
};
|
|
9714
9828
|
export const salesforceUpdateRecordDefinition = {
|
|
9829
|
+
displayName: "Update a record",
|
|
9715
9830
|
description: "Update a record in Salesforce",
|
|
9716
9831
|
scopes: [],
|
|
9717
9832
|
tags: [],
|
|
@@ -9754,6 +9869,7 @@ export const salesforceUpdateRecordDefinition = {
|
|
|
9754
9869
|
provider: "salesforce",
|
|
9755
9870
|
};
|
|
9756
9871
|
export const salesforceCreateRecordDefinition = {
|
|
9872
|
+
displayName: "Create a record",
|
|
9757
9873
|
description: "Create a record in Salesforce",
|
|
9758
9874
|
scopes: [],
|
|
9759
9875
|
tags: [],
|
|
@@ -9796,6 +9912,7 @@ export const salesforceCreateRecordDefinition = {
|
|
|
9796
9912
|
provider: "salesforce",
|
|
9797
9913
|
};
|
|
9798
9914
|
export const salesforceCreateCaseDefinition = {
|
|
9915
|
+
displayName: "Create a case",
|
|
9799
9916
|
description: "Create a case or support ticket in Salesforce",
|
|
9800
9917
|
scopes: [],
|
|
9801
9918
|
tags: [],
|
|
@@ -9850,6 +9967,7 @@ export const salesforceCreateCaseDefinition = {
|
|
|
9850
9967
|
provider: "salesforce",
|
|
9851
9968
|
};
|
|
9852
9969
|
export const salesforceGenerateSalesReportDefinition = {
|
|
9970
|
+
displayName: "Generate a sales report",
|
|
9853
9971
|
description: "Generate a sales report from Salesforce",
|
|
9854
9972
|
scopes: [],
|
|
9855
9973
|
tags: [],
|
|
@@ -9903,7 +10021,8 @@ export const salesforceGenerateSalesReportDefinition = {
|
|
|
9903
10021
|
provider: "salesforce",
|
|
9904
10022
|
};
|
|
9905
10023
|
export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
9906
|
-
|
|
10024
|
+
displayName: "Search all salesforce records",
|
|
10025
|
+
description: "Search through all Salesforce records by keyword. This works best for searching the content of text fields across all records. For example, searching for any description fields that contain a specific keyword.",
|
|
9907
10026
|
scopes: [],
|
|
9908
10027
|
tags: [],
|
|
9909
10028
|
parameters: {
|
|
@@ -9992,6 +10111,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
|
9992
10111
|
provider: "salesforce",
|
|
9993
10112
|
};
|
|
9994
10113
|
export const salesforceListReportsDefinition = {
|
|
10114
|
+
displayName: "List reports",
|
|
9995
10115
|
description: "List all available Salesforce reports",
|
|
9996
10116
|
scopes: [],
|
|
9997
10117
|
tags: [],
|
|
@@ -10026,6 +10146,7 @@ export const salesforceListReportsDefinition = {
|
|
|
10026
10146
|
provider: "salesforce",
|
|
10027
10147
|
};
|
|
10028
10148
|
export const salesforceExecuteReportDefinition = {
|
|
10149
|
+
displayName: "Execute a Salesforce report",
|
|
10029
10150
|
description: "Execute a Salesforce report and retrieve its results",
|
|
10030
10151
|
scopes: [],
|
|
10031
10152
|
tags: [],
|
|
@@ -10061,7 +10182,8 @@ export const salesforceExecuteReportDefinition = {
|
|
|
10061
10182
|
provider: "salesforce",
|
|
10062
10183
|
};
|
|
10063
10184
|
export const salesforceSearchSalesforceRecordsDefinition = {
|
|
10064
|
-
|
|
10185
|
+
displayName: "Search Salesforce records",
|
|
10186
|
+
description: "Search for Salesforce records by keyword. This works best for searching the content of text fields on a specific object. For example, searching for Case descriptions that mention a specific keyword.",
|
|
10065
10187
|
scopes: [],
|
|
10066
10188
|
tags: [],
|
|
10067
10189
|
parameters: {
|
|
@@ -10075,6 +10197,7 @@ export const salesforceSearchSalesforceRecordsDefinition = {
|
|
|
10075
10197
|
recordType: {
|
|
10076
10198
|
type: "string",
|
|
10077
10199
|
description: "The type of record to search for",
|
|
10200
|
+
tags: ["recommend-predefined"],
|
|
10078
10201
|
},
|
|
10079
10202
|
fieldsToSearch: {
|
|
10080
10203
|
type: "array",
|
|
@@ -10156,7 +10279,8 @@ export const salesforceSearchSalesforceRecordsDefinition = {
|
|
|
10156
10279
|
provider: "salesforce",
|
|
10157
10280
|
};
|
|
10158
10281
|
export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
10159
|
-
|
|
10282
|
+
displayName: "Get Salesforce records with a query",
|
|
10283
|
+
description: 'Retrieve Salesforce records by SOQL query. This works best for structured queries that depend on specific fields, for example "Find all Opportunities associated with the Acme Account" or "Find all contacts with the last name \'Smith\'".',
|
|
10160
10284
|
scopes: [],
|
|
10161
10285
|
tags: [],
|
|
10162
10286
|
parameters: {
|
|
@@ -10212,6 +10336,7 @@ export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
|
10212
10336
|
provider: "salesforce",
|
|
10213
10337
|
};
|
|
10214
10338
|
export const salesforceGetRecordDefinition = {
|
|
10339
|
+
displayName: "Get a record",
|
|
10215
10340
|
description: "Retrieve a record from Salesforce",
|
|
10216
10341
|
scopes: [],
|
|
10217
10342
|
tags: [],
|
|
@@ -10254,6 +10379,7 @@ export const salesforceGetRecordDefinition = {
|
|
|
10254
10379
|
provider: "salesforce",
|
|
10255
10380
|
};
|
|
10256
10381
|
export const salesforceGetReportMetadataDefinition = {
|
|
10382
|
+
displayName: "Get Salesforce report metadata",
|
|
10257
10383
|
description: "Get metadata for a given Salesforce report",
|
|
10258
10384
|
scopes: [],
|
|
10259
10385
|
tags: [],
|
|
@@ -10336,6 +10462,7 @@ export const salesforceGetReportMetadataDefinition = {
|
|
|
10336
10462
|
provider: "salesforce",
|
|
10337
10463
|
};
|
|
10338
10464
|
export const microsoftCreateDocumentDefinition = {
|
|
10465
|
+
displayName: "Create a document",
|
|
10339
10466
|
description: "Creates a new Office365 document",
|
|
10340
10467
|
scopes: ["Files.ReadWrite", "Sites.Manage.All", "Sites.ReadWrite.All"],
|
|
10341
10468
|
tags: [],
|
|
@@ -10391,6 +10518,7 @@ export const microsoftCreateDocumentDefinition = {
|
|
|
10391
10518
|
provider: "microsoft",
|
|
10392
10519
|
};
|
|
10393
10520
|
export const microsoftUpdateDocumentDefinition = {
|
|
10521
|
+
displayName: "Update a document",
|
|
10394
10522
|
description: "Updates a Office365 document",
|
|
10395
10523
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10396
10524
|
tags: [],
|
|
@@ -10434,6 +10562,7 @@ export const microsoftUpdateDocumentDefinition = {
|
|
|
10434
10562
|
provider: "microsoft",
|
|
10435
10563
|
};
|
|
10436
10564
|
export const microsoftUpdateSpreadsheetDefinition = {
|
|
10565
|
+
displayName: "Update a spreadsheet",
|
|
10437
10566
|
description: "Updates a Microsoft Excel spreadsheet",
|
|
10438
10567
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10439
10568
|
tags: [],
|
|
@@ -10487,6 +10616,7 @@ export const microsoftUpdateSpreadsheetDefinition = {
|
|
|
10487
10616
|
provider: "microsoft",
|
|
10488
10617
|
};
|
|
10489
10618
|
export const microsoftMessageTeamsChatDefinition = {
|
|
10619
|
+
displayName: "Message a Teams chat",
|
|
10490
10620
|
description: "Sends a message to a Microsoft Teams chat",
|
|
10491
10621
|
scopes: ["ChatMessage.Send"],
|
|
10492
10622
|
tags: [],
|
|
@@ -10526,6 +10656,7 @@ export const microsoftMessageTeamsChatDefinition = {
|
|
|
10526
10656
|
provider: "microsoft",
|
|
10527
10657
|
};
|
|
10528
10658
|
export const microsoftMessageTeamsChannelDefinition = {
|
|
10659
|
+
displayName: "Message a Teams channel",
|
|
10529
10660
|
description: "Sends a message to a Microsoft Teams channel",
|
|
10530
10661
|
scopes: ["ChannelMessage.Send"],
|
|
10531
10662
|
tags: [],
|
|
@@ -10569,6 +10700,7 @@ export const microsoftMessageTeamsChannelDefinition = {
|
|
|
10569
10700
|
provider: "microsoft",
|
|
10570
10701
|
};
|
|
10571
10702
|
export const microsoftGetDocumentDefinition = {
|
|
10703
|
+
displayName: "Get a document",
|
|
10572
10704
|
description: "Retrieves the content of a Microsoft Office document",
|
|
10573
10705
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10574
10706
|
tags: [],
|
|
@@ -10608,6 +10740,7 @@ export const microsoftGetDocumentDefinition = {
|
|
|
10608
10740
|
provider: "microsoft",
|
|
10609
10741
|
};
|
|
10610
10742
|
export const githubCreateOrUpdateFileDefinition = {
|
|
10743
|
+
displayName: "Create or update a file",
|
|
10611
10744
|
description: "Create or update a file in a GitHub repository",
|
|
10612
10745
|
scopes: [],
|
|
10613
10746
|
tags: [],
|
|
@@ -10674,6 +10807,7 @@ export const githubCreateOrUpdateFileDefinition = {
|
|
|
10674
10807
|
provider: "github",
|
|
10675
10808
|
};
|
|
10676
10809
|
export const githubCreateBranchDefinition = {
|
|
10810
|
+
displayName: "Create a branch",
|
|
10677
10811
|
description: "Create a new branch in a GitHub repository",
|
|
10678
10812
|
scopes: [],
|
|
10679
10813
|
tags: [],
|
|
@@ -10719,6 +10853,7 @@ export const githubCreateBranchDefinition = {
|
|
|
10719
10853
|
provider: "github",
|
|
10720
10854
|
};
|
|
10721
10855
|
export const githubCreatePullRequestDefinition = {
|
|
10856
|
+
displayName: "Create a pull request",
|
|
10722
10857
|
description: "Create a pull request in a GitHub repository",
|
|
10723
10858
|
scopes: [],
|
|
10724
10859
|
tags: [],
|
|
@@ -10780,6 +10915,7 @@ export const githubCreatePullRequestDefinition = {
|
|
|
10780
10915
|
provider: "github",
|
|
10781
10916
|
};
|
|
10782
10917
|
export const githubListPullRequestsDefinition = {
|
|
10918
|
+
displayName: "List pull requests",
|
|
10783
10919
|
description: "List pull requests in a GitHub repository",
|
|
10784
10920
|
scopes: [],
|
|
10785
10921
|
tags: [],
|
|
@@ -10880,6 +11016,7 @@ export const githubListPullRequestsDefinition = {
|
|
|
10880
11016
|
provider: "github",
|
|
10881
11017
|
};
|
|
10882
11018
|
export const githubGetPullRequestDetailsDefinition = {
|
|
11019
|
+
displayName: "Fetch pull request",
|
|
10883
11020
|
description: "Get detailed information about a specific pull request including description, files, reviews, and status",
|
|
10884
11021
|
scopes: [],
|
|
10885
11022
|
tags: [],
|
|
@@ -11160,6 +11297,7 @@ export const githubGetPullRequestDetailsDefinition = {
|
|
|
11160
11297
|
provider: "github",
|
|
11161
11298
|
};
|
|
11162
11299
|
export const githubGetFileContentDefinition = {
|
|
11300
|
+
displayName: "Fetch file contents",
|
|
11163
11301
|
description: "Get specified file content from a GitHub repository",
|
|
11164
11302
|
scopes: [],
|
|
11165
11303
|
tags: [],
|
|
@@ -11239,6 +11377,7 @@ export const githubGetFileContentDefinition = {
|
|
|
11239
11377
|
provider: "github",
|
|
11240
11378
|
};
|
|
11241
11379
|
export const githubListDirectoryDefinition = {
|
|
11380
|
+
displayName: "List contents of a directory",
|
|
11242
11381
|
description: "List directory contents of a path in a GitHub repository",
|
|
11243
11382
|
scopes: [],
|
|
11244
11383
|
tags: [],
|
|
@@ -11317,6 +11456,7 @@ export const githubListDirectoryDefinition = {
|
|
|
11317
11456
|
provider: "github",
|
|
11318
11457
|
};
|
|
11319
11458
|
export const githubSearchOrganizationDefinition = {
|
|
11459
|
+
displayName: "Search an organization",
|
|
11320
11460
|
description: "Search for code, issues and pull requests within a GitHub organization",
|
|
11321
11461
|
scopes: [],
|
|
11322
11462
|
tags: [],
|
|
@@ -11609,6 +11749,7 @@ export const githubSearchOrganizationDefinition = {
|
|
|
11609
11749
|
provider: "github",
|
|
11610
11750
|
};
|
|
11611
11751
|
export const githubGetBranchDefinition = {
|
|
11752
|
+
displayName: "Get a branch",
|
|
11612
11753
|
description: "Get a branch in a GitHub repository",
|
|
11613
11754
|
scopes: [],
|
|
11614
11755
|
tags: [],
|
|
@@ -11868,6 +12009,7 @@ export const githubGetBranchDefinition = {
|
|
|
11868
12009
|
provider: "github",
|
|
11869
12010
|
};
|
|
11870
12011
|
export const githubListCommitsDefinition = {
|
|
12012
|
+
displayName: "List commits",
|
|
11871
12013
|
description: "List commits in a GitHub repository with optional date filtering and pagination",
|
|
11872
12014
|
scopes: [],
|
|
11873
12015
|
tags: [],
|
|
@@ -12055,6 +12197,7 @@ export const githubListCommitsDefinition = {
|
|
|
12055
12197
|
provider: "github",
|
|
12056
12198
|
};
|
|
12057
12199
|
export const notionSearchByTitleDefinition = {
|
|
12200
|
+
displayName: "Search by title",
|
|
12058
12201
|
description: "Search Notion pages and databases by title",
|
|
12059
12202
|
scopes: [],
|
|
12060
12203
|
tags: [],
|
|
@@ -12109,6 +12252,7 @@ export const notionSearchByTitleDefinition = {
|
|
|
12109
12252
|
provider: "notion",
|
|
12110
12253
|
};
|
|
12111
12254
|
export const gitlabSearchGroupDefinition = {
|
|
12255
|
+
displayName: "Search a group",
|
|
12112
12256
|
description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
|
|
12113
12257
|
scopes: [],
|
|
12114
12258
|
tags: [],
|
|
@@ -12397,6 +12541,7 @@ export const gitlabSearchGroupDefinition = {
|
|
|
12397
12541
|
provider: "gitlab",
|
|
12398
12542
|
};
|
|
12399
12543
|
export const gitlabGetFileContentDefinition = {
|
|
12544
|
+
displayName: "Get file content",
|
|
12400
12545
|
description: "Get specified file content from a GitLab repository",
|
|
12401
12546
|
scopes: [],
|
|
12402
12547
|
tags: [],
|
|
@@ -12477,6 +12622,7 @@ export const gitlabGetFileContentDefinition = {
|
|
|
12477
12622
|
provider: "gitlab",
|
|
12478
12623
|
};
|
|
12479
12624
|
export const gitlabGetMergeRequestDefinition = {
|
|
12625
|
+
displayName: "Get merge request",
|
|
12480
12626
|
description: "Get specified merge request from a GitLab repository",
|
|
12481
12627
|
scopes: [],
|
|
12482
12628
|
tags: [],
|
|
@@ -12700,6 +12846,7 @@ export const gitlabGetMergeRequestDefinition = {
|
|
|
12700
12846
|
provider: "gitlab",
|
|
12701
12847
|
};
|
|
12702
12848
|
export const gitlabListDirectoryDefinition = {
|
|
12849
|
+
displayName: "List contents of a directory",
|
|
12703
12850
|
description: "List directory contents of a path in a GitLab repository",
|
|
12704
12851
|
scopes: [],
|
|
12705
12852
|
tags: [],
|
|
@@ -12790,6 +12937,7 @@ export const gitlabListDirectoryDefinition = {
|
|
|
12790
12937
|
provider: "gitlab",
|
|
12791
12938
|
};
|
|
12792
12939
|
export const linearGetIssuesDefinition = {
|
|
12940
|
+
displayName: "List or search issues",
|
|
12793
12941
|
description: "Get Linear issues with optional query filter",
|
|
12794
12942
|
scopes: [],
|
|
12795
12943
|
tags: [],
|
|
@@ -12920,6 +13068,7 @@ export const linearGetIssuesDefinition = {
|
|
|
12920
13068
|
provider: "linear",
|
|
12921
13069
|
};
|
|
12922
13070
|
export const linearGetIssueDetailsDefinition = {
|
|
13071
|
+
displayName: "Fetch issue",
|
|
12923
13072
|
description: "Get detailed information about a Linear issue",
|
|
12924
13073
|
scopes: [],
|
|
12925
13074
|
tags: [],
|
|
@@ -13081,6 +13230,7 @@ export const linearGetIssueDetailsDefinition = {
|
|
|
13081
13230
|
provider: "linear",
|
|
13082
13231
|
};
|
|
13083
13232
|
export const linearGetProjectsDefinition = {
|
|
13233
|
+
displayName: "Fetch projects",
|
|
13084
13234
|
description: "Get all Linear projects",
|
|
13085
13235
|
scopes: [],
|
|
13086
13236
|
tags: [],
|
|
@@ -13179,6 +13329,7 @@ export const linearGetProjectsDefinition = {
|
|
|
13179
13329
|
provider: "linear",
|
|
13180
13330
|
};
|
|
13181
13331
|
export const linearGetProjectDetailsDefinition = {
|
|
13332
|
+
displayName: "Get project details",
|
|
13182
13333
|
description: "Get detailed information about a Linear project",
|
|
13183
13334
|
scopes: [],
|
|
13184
13335
|
tags: [],
|
|
@@ -13326,6 +13477,7 @@ export const linearGetProjectDetailsDefinition = {
|
|
|
13326
13477
|
provider: "linear",
|
|
13327
13478
|
};
|
|
13328
13479
|
export const linearGetTeamDetailsDefinition = {
|
|
13480
|
+
displayName: "Get team details",
|
|
13329
13481
|
description: "Get detailed information about a Linear team",
|
|
13330
13482
|
scopes: [],
|
|
13331
13483
|
tags: [],
|
|
@@ -13393,6 +13545,7 @@ export const linearGetTeamDetailsDefinition = {
|
|
|
13393
13545
|
provider: "linear",
|
|
13394
13546
|
};
|
|
13395
13547
|
export const linearGetTeamsDefinition = {
|
|
13548
|
+
displayName: "Get teams",
|
|
13396
13549
|
description: "Get all teams in Linear",
|
|
13397
13550
|
scopes: [],
|
|
13398
13551
|
tags: [],
|
|
@@ -13436,6 +13589,7 @@ export const linearGetTeamsDefinition = {
|
|
|
13436
13589
|
provider: "linear",
|
|
13437
13590
|
};
|
|
13438
13591
|
export const hubspotGetContactsDefinition = {
|
|
13592
|
+
displayName: "Get contacts",
|
|
13439
13593
|
description: "List or search HubSpot contacts by optional query",
|
|
13440
13594
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13441
13595
|
tags: [],
|
|
@@ -13500,6 +13654,7 @@ export const hubspotGetContactsDefinition = {
|
|
|
13500
13654
|
provider: "hubspot",
|
|
13501
13655
|
};
|
|
13502
13656
|
export const hubspotGetContactDetailsDefinition = {
|
|
13657
|
+
displayName: "Get details of a contact",
|
|
13503
13658
|
description: "Get detailed information about a specific HubSpot contact",
|
|
13504
13659
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13505
13660
|
tags: [],
|
|
@@ -13601,6 +13756,7 @@ export const hubspotGetContactDetailsDefinition = {
|
|
|
13601
13756
|
provider: "hubspot",
|
|
13602
13757
|
};
|
|
13603
13758
|
export const hubspotGetCompaniesDefinition = {
|
|
13759
|
+
displayName: "Get companies",
|
|
13604
13760
|
description: "List or search HubSpot companies by optional query",
|
|
13605
13761
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13606
13762
|
tags: [],
|
|
@@ -13661,6 +13817,7 @@ export const hubspotGetCompaniesDefinition = {
|
|
|
13661
13817
|
provider: "hubspot",
|
|
13662
13818
|
};
|
|
13663
13819
|
export const hubspotGetCompanyDetailsDefinition = {
|
|
13820
|
+
displayName: "Get details of a company",
|
|
13664
13821
|
description: "Get detailed information about a specific HubSpot company",
|
|
13665
13822
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13666
13823
|
tags: [],
|
|
@@ -13754,6 +13911,7 @@ export const hubspotGetCompanyDetailsDefinition = {
|
|
|
13754
13911
|
provider: "hubspot",
|
|
13755
13912
|
};
|
|
13756
13913
|
export const hubspotGetDealsDefinition = {
|
|
13914
|
+
displayName: "Get deals",
|
|
13757
13915
|
description: "List or search HubSpot deals by optional query",
|
|
13758
13916
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13759
13917
|
tags: [],
|
|
@@ -13818,6 +13976,7 @@ export const hubspotGetDealsDefinition = {
|
|
|
13818
13976
|
provider: "hubspot",
|
|
13819
13977
|
};
|
|
13820
13978
|
export const hubspotGetDealDetailsDefinition = {
|
|
13979
|
+
displayName: "Get details of a deal",
|
|
13821
13980
|
description: "Get detailed information about a specific HubSpot deal",
|
|
13822
13981
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13823
13982
|
tags: [],
|
|
@@ -13903,6 +14062,7 @@ export const hubspotGetDealDetailsDefinition = {
|
|
|
13903
14062
|
provider: "hubspot",
|
|
13904
14063
|
};
|
|
13905
14064
|
export const hubspotGetTicketsDefinition = {
|
|
14065
|
+
displayName: "Get tickets",
|
|
13906
14066
|
description: "List or search HubSpot tickets by optional query",
|
|
13907
14067
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13908
14068
|
tags: [],
|
|
@@ -13963,6 +14123,7 @@ export const hubspotGetTicketsDefinition = {
|
|
|
13963
14123
|
provider: "hubspot",
|
|
13964
14124
|
};
|
|
13965
14125
|
export const hubspotGetTicketDetailsDefinition = {
|
|
14126
|
+
displayName: "Get details of a ticket",
|
|
13966
14127
|
description: "Get detailed information about a specific HubSpot ticket",
|
|
13967
14128
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13968
14129
|
tags: [],
|