@credal/actions 0.2.172 → 0.2.174
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 +176 -0
- package/dist/actions/autogen/types.d.ts +6 -0
- package/dist/actions/autogen/types.js +14 -23
- package/dist/actions/groups.js +4 -1
- package/dist/actions/parse.d.ts +3 -0
- package/dist/actions/parse.js +94 -1
- package/dist/actions/providers/github/fetchFile.d.ts +3 -0
- package/dist/actions/providers/github/fetchFile.js +131 -0
- package/dist/actions/providers/github/getContents.d.ts +3 -0
- package/dist/actions/providers/github/getContents.js +41 -0
- package/dist/actions/providers/slack/archiveChannel.js +9 -2
- package/package.json +2 -2
- package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
- package/dist/actions/providers/credal/callCopilot.js +0 -36
- package/dist/actions/providers/math/index.d.ts +0 -1
- package/dist/actions/providers/math/index.js +0 -37
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
- package/dist/actions/providers/slack/index.d.ts +0 -1
- package/dist/actions/providers/slack/index.js +0 -37
- package/dist/actions/providers/slack/listConversations.d.ts +0 -3
- package/dist/actions/providers/slack/listConversations.js +0 -41
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export const genericFillTemplateDefinition = {
|
|
2
2
|
description: "Simple utility that takes a template and returns it filled in",
|
|
3
3
|
scopes: [],
|
|
4
|
+
tags: [],
|
|
4
5
|
parameters: {
|
|
5
6
|
type: "object",
|
|
6
7
|
required: ["template"],
|
|
@@ -27,6 +28,7 @@ export const genericFillTemplateDefinition = {
|
|
|
27
28
|
export const perplexityPerplexityDeepResearchDefinition = {
|
|
28
29
|
description: "Performs deep research using Perplexity AI",
|
|
29
30
|
scopes: [],
|
|
31
|
+
tags: [],
|
|
30
32
|
parameters: {
|
|
31
33
|
type: "object",
|
|
32
34
|
required: ["query"],
|
|
@@ -108,6 +110,7 @@ export const perplexityPerplexityDeepResearchDefinition = {
|
|
|
108
110
|
export const asanaCommentTaskDefinition = {
|
|
109
111
|
description: "Comments on an Asana task with specified content",
|
|
110
112
|
scopes: [],
|
|
113
|
+
tags: [],
|
|
111
114
|
parameters: {
|
|
112
115
|
type: "object",
|
|
113
116
|
required: ["taskId", "commentText"],
|
|
@@ -150,6 +153,7 @@ export const asanaCommentTaskDefinition = {
|
|
|
150
153
|
export const asanaListAsanaTasksByProjectDefinition = {
|
|
151
154
|
description: "List all tasks associated with an Asana project and their data",
|
|
152
155
|
scopes: [],
|
|
156
|
+
tags: [],
|
|
153
157
|
parameters: {
|
|
154
158
|
type: "object",
|
|
155
159
|
required: ["projectId"],
|
|
@@ -317,6 +321,7 @@ export const asanaListAsanaTasksByProjectDefinition = {
|
|
|
317
321
|
export const asanaCreateTaskDefinition = {
|
|
318
322
|
description: "Create an Asana task with specified content using optional template",
|
|
319
323
|
scopes: [],
|
|
324
|
+
tags: [],
|
|
320
325
|
parameters: {
|
|
321
326
|
type: "object",
|
|
322
327
|
required: ["name", "projectId"],
|
|
@@ -380,6 +385,7 @@ export const asanaCreateTaskDefinition = {
|
|
|
380
385
|
export const asanaUpdateTaskDefinition = {
|
|
381
386
|
description: "Updates a Asana task with specified content",
|
|
382
387
|
scopes: [],
|
|
388
|
+
tags: [],
|
|
383
389
|
parameters: {
|
|
384
390
|
type: "object",
|
|
385
391
|
required: ["taskId"],
|
|
@@ -443,6 +449,7 @@ export const asanaUpdateTaskDefinition = {
|
|
|
443
449
|
export const asanaSearchTasksDefinition = {
|
|
444
450
|
description: "List all tasks associated with search query",
|
|
445
451
|
scopes: [],
|
|
452
|
+
tags: [],
|
|
446
453
|
parameters: {
|
|
447
454
|
type: "object",
|
|
448
455
|
required: ["query"],
|
|
@@ -496,6 +503,7 @@ export const asanaSearchTasksDefinition = {
|
|
|
496
503
|
export const asanaGetTasksDetailsDefinition = {
|
|
497
504
|
description: "Retrieve detailed information (assignee, comments, description, title, etc.) for a list of task IDs",
|
|
498
505
|
scopes: [],
|
|
506
|
+
tags: [],
|
|
499
507
|
parameters: {
|
|
500
508
|
type: "object",
|
|
501
509
|
required: ["taskIds"],
|
|
@@ -586,6 +594,7 @@ export const asanaGetTasksDetailsDefinition = {
|
|
|
586
594
|
export const slackSendDmFromBotDefinition = {
|
|
587
595
|
description: "Sends a direct message to a user on Slack using a bot",
|
|
588
596
|
scopes: ["users:read", "channels:manage", "chat:write"],
|
|
597
|
+
tags: [],
|
|
589
598
|
parameters: {
|
|
590
599
|
type: "object",
|
|
591
600
|
required: ["email", "message"],
|
|
@@ -632,6 +641,7 @@ export const slackSendDmFromBotDefinition = {
|
|
|
632
641
|
export const slackCreateChannelDefinition = {
|
|
633
642
|
description: "Creates a new Slack channel using a bot token",
|
|
634
643
|
scopes: ["channels:manage"],
|
|
644
|
+
tags: [],
|
|
635
645
|
parameters: {
|
|
636
646
|
type: "object",
|
|
637
647
|
required: ["channelName"],
|
|
@@ -674,6 +684,7 @@ export const slackCreateChannelDefinition = {
|
|
|
674
684
|
export const slackSendMessageDefinition = {
|
|
675
685
|
description: "Sends a message to a Slack channel",
|
|
676
686
|
scopes: ["chat:write"],
|
|
687
|
+
tags: [],
|
|
677
688
|
parameters: {
|
|
678
689
|
type: "object",
|
|
679
690
|
required: ["message"],
|
|
@@ -716,6 +727,7 @@ export const slackSendMessageDefinition = {
|
|
|
716
727
|
export const slackGetChannelMessagesDefinition = {
|
|
717
728
|
description: "Gets messages from a Slack channel",
|
|
718
729
|
scopes: ["channels:history"],
|
|
730
|
+
tags: [],
|
|
719
731
|
parameters: {
|
|
720
732
|
type: "object",
|
|
721
733
|
required: ["oldest"],
|
|
@@ -804,6 +816,7 @@ export const slackUserSearchSlackDefinition = {
|
|
|
804
816
|
"mpim:history",
|
|
805
817
|
"users:read.email",
|
|
806
818
|
],
|
|
819
|
+
tags: [],
|
|
807
820
|
parameters: {
|
|
808
821
|
type: "object",
|
|
809
822
|
required: [],
|
|
@@ -979,6 +992,7 @@ export const slackUserSearchSlackDefinition = {
|
|
|
979
992
|
export const mathAddDefinition = {
|
|
980
993
|
description: "Adds two numbers together",
|
|
981
994
|
scopes: [],
|
|
995
|
+
tags: [],
|
|
982
996
|
parameters: {
|
|
983
997
|
type: "object",
|
|
984
998
|
required: ["a", "b"],
|
|
@@ -1009,6 +1023,7 @@ export const mathAddDefinition = {
|
|
|
1009
1023
|
export const confluenceOverwritePageDefinition = {
|
|
1010
1024
|
description: "Updates a Confluence page with the new content specified",
|
|
1011
1025
|
scopes: [],
|
|
1026
|
+
tags: [],
|
|
1012
1027
|
parameters: {
|
|
1013
1028
|
type: "object",
|
|
1014
1029
|
required: ["pageId", "title", "content"],
|
|
@@ -1047,6 +1062,7 @@ export const confluenceOverwritePageDefinition = {
|
|
|
1047
1062
|
export const confluenceFetchPageContentDefinition = {
|
|
1048
1063
|
description: "Fetches content from a Confluence page",
|
|
1049
1064
|
scopes: [],
|
|
1065
|
+
tags: [],
|
|
1050
1066
|
parameters: {
|
|
1051
1067
|
type: "object",
|
|
1052
1068
|
required: ["pageId"],
|
|
@@ -1094,6 +1110,7 @@ export const confluenceFetchPageContentDefinition = {
|
|
|
1094
1110
|
export const jiraAssignJiraTicketDefinition = {
|
|
1095
1111
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
1096
1112
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
1113
|
+
tags: [],
|
|
1097
1114
|
parameters: {
|
|
1098
1115
|
type: "object",
|
|
1099
1116
|
required: ["projectKey", "issueId", "assignee"],
|
|
@@ -1136,6 +1153,7 @@ export const jiraAssignJiraTicketDefinition = {
|
|
|
1136
1153
|
export const jiraPublicCommentOnServiceDeskRequestDefinition = {
|
|
1137
1154
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
1138
1155
|
scopes: ["write:comment:jira"],
|
|
1156
|
+
tags: [],
|
|
1139
1157
|
parameters: {
|
|
1140
1158
|
type: "object",
|
|
1141
1159
|
required: ["issueId", "comment"],
|
|
@@ -1174,6 +1192,7 @@ export const jiraPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
1174
1192
|
export const jiraCommentJiraTicketDefinition = {
|
|
1175
1193
|
description: "Comments on a Jira ticket with specified content",
|
|
1176
1194
|
scopes: ["write:comment:jira"],
|
|
1195
|
+
tags: [],
|
|
1177
1196
|
parameters: {
|
|
1178
1197
|
type: "object",
|
|
1179
1198
|
required: ["projectKey", "issueId", "comment"],
|
|
@@ -1216,6 +1235,7 @@ export const jiraCommentJiraTicketDefinition = {
|
|
|
1216
1235
|
export const jiraCreateJiraTicketDefinition = {
|
|
1217
1236
|
description: "Create a jira ticket with new content specified",
|
|
1218
1237
|
scopes: [],
|
|
1238
|
+
tags: [],
|
|
1219
1239
|
parameters: {
|
|
1220
1240
|
type: "object",
|
|
1221
1241
|
required: ["projectKey", "summary", "description", "issueType"],
|
|
@@ -1279,6 +1299,7 @@ export const jiraCreateJiraTicketDefinition = {
|
|
|
1279
1299
|
export const jiraGetServiceDesksDefinition = {
|
|
1280
1300
|
description: "Get the service desks for a Jira instance",
|
|
1281
1301
|
scopes: [],
|
|
1302
|
+
tags: [],
|
|
1282
1303
|
parameters: {
|
|
1283
1304
|
type: "object",
|
|
1284
1305
|
required: [],
|
|
@@ -1372,6 +1393,7 @@ export const jiraGetServiceDesksDefinition = {
|
|
|
1372
1393
|
export const jiraCreateServiceDeskRequestDefinition = {
|
|
1373
1394
|
description: "Create a jira service desk request with specified content",
|
|
1374
1395
|
scopes: [],
|
|
1396
|
+
tags: [],
|
|
1375
1397
|
parameters: {
|
|
1376
1398
|
type: "object",
|
|
1377
1399
|
required: ["serviceDeskId", "requestTypeId", "summary", "description"],
|
|
@@ -1430,6 +1452,7 @@ export const jiraCreateServiceDeskRequestDefinition = {
|
|
|
1430
1452
|
export const jiraGetJiraTicketDetailsDefinition = {
|
|
1431
1453
|
description: "Get details of a ticket in Jira",
|
|
1432
1454
|
scopes: ["read:jira-work"],
|
|
1455
|
+
tags: [],
|
|
1433
1456
|
parameters: {
|
|
1434
1457
|
type: "object",
|
|
1435
1458
|
required: ["projectKey", "issueId"],
|
|
@@ -1486,6 +1509,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
|
|
|
1486
1509
|
export const jiraGetJiraTicketHistoryDefinition = {
|
|
1487
1510
|
description: "Get ticket history of a ticket in Jira",
|
|
1488
1511
|
scopes: ["read:jira-work"],
|
|
1512
|
+
tags: [],
|
|
1489
1513
|
parameters: {
|
|
1490
1514
|
type: "object",
|
|
1491
1515
|
required: ["projectKey", "issueId"],
|
|
@@ -1524,6 +1548,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
|
|
|
1524
1548
|
export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
1525
1549
|
description: "Update a Jira ticket with new content specified",
|
|
1526
1550
|
scopes: ["write:jira-work"],
|
|
1551
|
+
tags: [],
|
|
1527
1552
|
parameters: {
|
|
1528
1553
|
type: "object",
|
|
1529
1554
|
required: ["projectKey", "issueId"],
|
|
@@ -1583,6 +1608,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
|
1583
1608
|
export const jiraUpdateJiraTicketStatusDefinition = {
|
|
1584
1609
|
description: "Updates the status of Jira ticket with specified status",
|
|
1585
1610
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
1611
|
+
tags: [],
|
|
1586
1612
|
parameters: {
|
|
1587
1613
|
type: "object",
|
|
1588
1614
|
required: ["projectKey", "issueId", "status"],
|
|
@@ -1625,6 +1651,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
|
|
|
1625
1651
|
export const jiraGetJiraIssuesByQueryDefinition = {
|
|
1626
1652
|
description: "Retrieve Jira Issues by JQL query",
|
|
1627
1653
|
scopes: [],
|
|
1654
|
+
tags: [],
|
|
1628
1655
|
parameters: {
|
|
1629
1656
|
type: "object",
|
|
1630
1657
|
required: ["query"],
|
|
@@ -1823,6 +1850,7 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
1823
1850
|
export const jiraOrgAssignJiraTicketDefinition = {
|
|
1824
1851
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
1825
1852
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
1853
|
+
tags: [],
|
|
1826
1854
|
parameters: {
|
|
1827
1855
|
type: "object",
|
|
1828
1856
|
required: ["projectKey", "issueId", "assignee"],
|
|
@@ -1865,6 +1893,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
|
|
|
1865
1893
|
export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
|
|
1866
1894
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
1867
1895
|
scopes: ["write:comment:jira"],
|
|
1896
|
+
tags: [],
|
|
1868
1897
|
parameters: {
|
|
1869
1898
|
type: "object",
|
|
1870
1899
|
required: ["issueId", "comment"],
|
|
@@ -1903,6 +1932,7 @@ export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
1903
1932
|
export const jiraOrgCommentJiraTicketDefinition = {
|
|
1904
1933
|
description: "Comments on a Jira ticket with specified content",
|
|
1905
1934
|
scopes: ["write:comment:jira"],
|
|
1935
|
+
tags: [],
|
|
1906
1936
|
parameters: {
|
|
1907
1937
|
type: "object",
|
|
1908
1938
|
required: ["projectKey", "issueId", "comment"],
|
|
@@ -1945,6 +1975,7 @@ export const jiraOrgCommentJiraTicketDefinition = {
|
|
|
1945
1975
|
export const jiraOrgCreateJiraTicketDefinition = {
|
|
1946
1976
|
description: "Create a jira ticket with new content specified",
|
|
1947
1977
|
scopes: [],
|
|
1978
|
+
tags: [],
|
|
1948
1979
|
parameters: {
|
|
1949
1980
|
type: "object",
|
|
1950
1981
|
required: ["projectKey", "summary", "description", "issueType"],
|
|
@@ -2008,6 +2039,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
|
|
|
2008
2039
|
export const jiraOrgGetServiceDesksDefinition = {
|
|
2009
2040
|
description: "Get the service desks for a Jira instance",
|
|
2010
2041
|
scopes: [],
|
|
2042
|
+
tags: [],
|
|
2011
2043
|
parameters: {
|
|
2012
2044
|
type: "object",
|
|
2013
2045
|
required: [],
|
|
@@ -2101,6 +2133,7 @@ export const jiraOrgGetServiceDesksDefinition = {
|
|
|
2101
2133
|
export const jiraOrgCreateServiceDeskRequestDefinition = {
|
|
2102
2134
|
description: "Create a jira service desk request with specified content",
|
|
2103
2135
|
scopes: [],
|
|
2136
|
+
tags: [],
|
|
2104
2137
|
parameters: {
|
|
2105
2138
|
type: "object",
|
|
2106
2139
|
required: ["serviceDeskId", "requestTypeId", "summary", "description"],
|
|
@@ -2159,6 +2192,7 @@ export const jiraOrgCreateServiceDeskRequestDefinition = {
|
|
|
2159
2192
|
export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
2160
2193
|
description: "Get details of a ticket in Jira",
|
|
2161
2194
|
scopes: ["read:jira-work"],
|
|
2195
|
+
tags: [],
|
|
2162
2196
|
parameters: {
|
|
2163
2197
|
type: "object",
|
|
2164
2198
|
required: ["projectKey", "issueId"],
|
|
@@ -2215,6 +2249,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
|
2215
2249
|
export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
2216
2250
|
description: "Get ticket history of a ticket in Jira",
|
|
2217
2251
|
scopes: ["read:jira-work"],
|
|
2252
|
+
tags: [],
|
|
2218
2253
|
parameters: {
|
|
2219
2254
|
type: "object",
|
|
2220
2255
|
required: ["projectKey", "issueId"],
|
|
@@ -2253,6 +2288,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
|
2253
2288
|
export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
2254
2289
|
description: "Update a Jira ticket with new content specified",
|
|
2255
2290
|
scopes: ["write:jira-work"],
|
|
2291
|
+
tags: [],
|
|
2256
2292
|
parameters: {
|
|
2257
2293
|
type: "object",
|
|
2258
2294
|
required: ["projectKey", "issueId"],
|
|
@@ -2312,6 +2348,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
|
2312
2348
|
export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
2313
2349
|
description: "Updates the status of Jira ticket with specified status",
|
|
2314
2350
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
2351
|
+
tags: [],
|
|
2315
2352
|
parameters: {
|
|
2316
2353
|
type: "object",
|
|
2317
2354
|
required: ["projectKey", "issueId", "status"],
|
|
@@ -2354,6 +2391,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
|
2354
2391
|
export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
2355
2392
|
description: "Retrieve Jira Issues by JQL query",
|
|
2356
2393
|
scopes: [],
|
|
2394
|
+
tags: [],
|
|
2357
2395
|
parameters: {
|
|
2358
2396
|
type: "object",
|
|
2359
2397
|
required: ["query"],
|
|
@@ -2552,6 +2590,7 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
2552
2590
|
export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
2553
2591
|
description: "Assigns/Reassigns a Jira ticket to a specified user",
|
|
2554
2592
|
scopes: ["write:jira-work", "read:jira-user"],
|
|
2593
|
+
tags: [],
|
|
2555
2594
|
parameters: {
|
|
2556
2595
|
type: "object",
|
|
2557
2596
|
required: ["projectKey", "issueId", "assignee"],
|
|
@@ -2594,6 +2633,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
|
2594
2633
|
export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
|
|
2595
2634
|
description: "Comments publicly on a Jira service desk request with specified content",
|
|
2596
2635
|
scopes: ["write:comment:jira"],
|
|
2636
|
+
tags: [],
|
|
2597
2637
|
parameters: {
|
|
2598
2638
|
type: "object",
|
|
2599
2639
|
required: ["issueId", "comment"],
|
|
@@ -2632,6 +2672,7 @@ export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
|
|
|
2632
2672
|
export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
2633
2673
|
description: "Comments on a Jira ticket with specified content",
|
|
2634
2674
|
scopes: ["write:comment:jira"],
|
|
2675
|
+
tags: [],
|
|
2635
2676
|
parameters: {
|
|
2636
2677
|
type: "object",
|
|
2637
2678
|
required: ["projectKey", "issueId", "comment"],
|
|
@@ -2674,6 +2715,7 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
|
2674
2715
|
export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
2675
2716
|
description: "Create a jira ticket with new content specified",
|
|
2676
2717
|
scopes: [],
|
|
2718
|
+
tags: [],
|
|
2677
2719
|
parameters: {
|
|
2678
2720
|
type: "object",
|
|
2679
2721
|
required: ["projectKey", "summary", "description", "issueType"],
|
|
@@ -2737,6 +2779,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
|
2737
2779
|
export const jiraDataCenterGetServiceDesksDefinition = {
|
|
2738
2780
|
description: "Get the service desks for a Jira instance",
|
|
2739
2781
|
scopes: [],
|
|
2782
|
+
tags: [],
|
|
2740
2783
|
parameters: {
|
|
2741
2784
|
type: "object",
|
|
2742
2785
|
required: [],
|
|
@@ -2830,6 +2873,7 @@ export const jiraDataCenterGetServiceDesksDefinition = {
|
|
|
2830
2873
|
export const jiraDataCenterCreateServiceDeskRequestDefinition = {
|
|
2831
2874
|
description: "Create a jira service desk request with specified content",
|
|
2832
2875
|
scopes: [],
|
|
2876
|
+
tags: [],
|
|
2833
2877
|
parameters: {
|
|
2834
2878
|
type: "object",
|
|
2835
2879
|
required: ["serviceDeskId", "requestTypeId", "summary", "description"],
|
|
@@ -2888,6 +2932,7 @@ export const jiraDataCenterCreateServiceDeskRequestDefinition = {
|
|
|
2888
2932
|
export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
2889
2933
|
description: "Get details of a ticket in Jira",
|
|
2890
2934
|
scopes: ["read:jira-work"],
|
|
2935
|
+
tags: [],
|
|
2891
2936
|
parameters: {
|
|
2892
2937
|
type: "object",
|
|
2893
2938
|
required: ["projectKey", "issueId"],
|
|
@@ -2944,6 +2989,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
|
2944
2989
|
export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
2945
2990
|
description: "Get ticket history of a ticket in Jira",
|
|
2946
2991
|
scopes: ["read:jira-work"],
|
|
2992
|
+
tags: [],
|
|
2947
2993
|
parameters: {
|
|
2948
2994
|
type: "object",
|
|
2949
2995
|
required: ["projectKey", "issueId"],
|
|
@@ -2982,6 +3028,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
|
2982
3028
|
export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
2983
3029
|
description: "Update a Jira ticket with new content specified",
|
|
2984
3030
|
scopes: ["write:jira-work"],
|
|
3031
|
+
tags: [],
|
|
2985
3032
|
parameters: {
|
|
2986
3033
|
type: "object",
|
|
2987
3034
|
required: ["projectKey", "issueId"],
|
|
@@ -3041,6 +3088,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
|
3041
3088
|
export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
3042
3089
|
description: "Updates the status of Jira ticket with specified status",
|
|
3043
3090
|
scopes: ["read:jira-work", "write:jira-work"],
|
|
3091
|
+
tags: [],
|
|
3044
3092
|
parameters: {
|
|
3045
3093
|
type: "object",
|
|
3046
3094
|
required: ["projectKey", "issueId", "status"],
|
|
@@ -3083,6 +3131,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
|
3083
3131
|
export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
3084
3132
|
description: "Retrieve Jira Issues by JQL query",
|
|
3085
3133
|
scopes: [],
|
|
3134
|
+
tags: [],
|
|
3086
3135
|
parameters: {
|
|
3087
3136
|
type: "object",
|
|
3088
3137
|
required: ["query"],
|
|
@@ -3281,6 +3330,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3281
3330
|
export const googlemapsValidateAddressDefinition = {
|
|
3282
3331
|
description: "Validate a Google Maps address",
|
|
3283
3332
|
scopes: [],
|
|
3333
|
+
tags: [],
|
|
3284
3334
|
parameters: {
|
|
3285
3335
|
type: "object",
|
|
3286
3336
|
required: ["regionCode", "locality", "addressLines", "postalCode"],
|
|
@@ -3448,6 +3498,7 @@ export const googlemapsValidateAddressDefinition = {
|
|
|
3448
3498
|
export const googlemapsNearbysearchRestaurantsDefinition = {
|
|
3449
3499
|
description: "Search for nearby places using Google Maps",
|
|
3450
3500
|
scopes: [],
|
|
3501
|
+
tags: [],
|
|
3451
3502
|
parameters: {
|
|
3452
3503
|
type: "object",
|
|
3453
3504
|
required: ["latitude", "longitude"],
|
|
@@ -3515,6 +3566,7 @@ export const googlemapsNearbysearchRestaurantsDefinition = {
|
|
|
3515
3566
|
export const bingGetTopNSearchResultUrlsDefinition = {
|
|
3516
3567
|
description: "Get the top five search result URLs from Bing",
|
|
3517
3568
|
scopes: [],
|
|
3569
|
+
tags: [],
|
|
3518
3570
|
parameters: {
|
|
3519
3571
|
type: "object",
|
|
3520
3572
|
required: ["query"],
|
|
@@ -3562,6 +3614,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
|
|
|
3562
3614
|
export const zendeskCreateZendeskTicketDefinition = {
|
|
3563
3615
|
description: "Create a ticket in Zendesk",
|
|
3564
3616
|
scopes: [],
|
|
3617
|
+
tags: [],
|
|
3565
3618
|
parameters: {
|
|
3566
3619
|
type: "object",
|
|
3567
3620
|
required: ["subject", "subdomain"],
|
|
@@ -3604,6 +3657,7 @@ export const zendeskCreateZendeskTicketDefinition = {
|
|
|
3604
3657
|
export const zendeskListZendeskTicketsDefinition = {
|
|
3605
3658
|
description: "List tickets in Zendesk from the past 3 months",
|
|
3606
3659
|
scopes: [],
|
|
3660
|
+
tags: [],
|
|
3607
3661
|
parameters: {
|
|
3608
3662
|
type: "object",
|
|
3609
3663
|
required: ["subdomain"],
|
|
@@ -3641,6 +3695,7 @@ export const zendeskListZendeskTicketsDefinition = {
|
|
|
3641
3695
|
export const zendeskGetTicketDetailsDefinition = {
|
|
3642
3696
|
description: "Get details of a ticket in Zendesk",
|
|
3643
3697
|
scopes: [],
|
|
3698
|
+
tags: [],
|
|
3644
3699
|
parameters: {
|
|
3645
3700
|
type: "object",
|
|
3646
3701
|
required: ["ticketId", "subdomain"],
|
|
@@ -3671,6 +3726,7 @@ export const zendeskGetTicketDetailsDefinition = {
|
|
|
3671
3726
|
export const zendeskUpdateTicketStatusDefinition = {
|
|
3672
3727
|
description: "Update the status of a ticket in Zendesk",
|
|
3673
3728
|
scopes: [],
|
|
3729
|
+
tags: [],
|
|
3674
3730
|
parameters: {
|
|
3675
3731
|
type: "object",
|
|
3676
3732
|
required: ["ticketId", "subdomain", "status"],
|
|
@@ -3695,6 +3751,7 @@ export const zendeskUpdateTicketStatusDefinition = {
|
|
|
3695
3751
|
export const zendeskAddCommentToTicketDefinition = {
|
|
3696
3752
|
description: "Add a comment to a ticket in Zendesk",
|
|
3697
3753
|
scopes: [],
|
|
3754
|
+
tags: [],
|
|
3698
3755
|
parameters: {
|
|
3699
3756
|
type: "object",
|
|
3700
3757
|
required: ["ticketId", "subdomain", "body"],
|
|
@@ -3737,6 +3794,7 @@ export const zendeskAddCommentToTicketDefinition = {
|
|
|
3737
3794
|
export const zendeskAssignTicketDefinition = {
|
|
3738
3795
|
description: "Assign a ticket in Zendesk to a specific user",
|
|
3739
3796
|
scopes: [],
|
|
3797
|
+
tags: [],
|
|
3740
3798
|
parameters: {
|
|
3741
3799
|
type: "object",
|
|
3742
3800
|
required: ["ticketId", "subdomain", "assigneeEmail"],
|
|
@@ -3761,6 +3819,7 @@ export const zendeskAssignTicketDefinition = {
|
|
|
3761
3819
|
export const zendeskSearchZendeskByQueryDefinition = {
|
|
3762
3820
|
description: "Search Zendesk objects by query with flexible filtering options",
|
|
3763
3821
|
scopes: [],
|
|
3822
|
+
tags: [],
|
|
3764
3823
|
parameters: {
|
|
3765
3824
|
type: "object",
|
|
3766
3825
|
required: ["subdomain", "query"],
|
|
@@ -3807,6 +3866,7 @@ export const zendeskSearchZendeskByQueryDefinition = {
|
|
|
3807
3866
|
export const linkedinCreateShareLinkedinPostUrlDefinition = {
|
|
3808
3867
|
description: "Create a share linkedin post link",
|
|
3809
3868
|
scopes: [],
|
|
3869
|
+
tags: [],
|
|
3810
3870
|
parameters: {
|
|
3811
3871
|
type: "object",
|
|
3812
3872
|
required: [],
|
|
@@ -3837,6 +3897,7 @@ export const linkedinCreateShareLinkedinPostUrlDefinition = {
|
|
|
3837
3897
|
export const xCreateShareXPostUrlDefinition = {
|
|
3838
3898
|
description: "Create a share X (formerly twitter) post link",
|
|
3839
3899
|
scopes: [],
|
|
3900
|
+
tags: [],
|
|
3840
3901
|
parameters: {
|
|
3841
3902
|
type: "object",
|
|
3842
3903
|
required: ["text"],
|
|
@@ -3882,6 +3943,7 @@ export const xCreateShareXPostUrlDefinition = {
|
|
|
3882
3943
|
export const mongoInsertMongoDocDefinition = {
|
|
3883
3944
|
description: "Insert a document into a MongoDB collection",
|
|
3884
3945
|
scopes: [],
|
|
3946
|
+
tags: [],
|
|
3885
3947
|
parameters: {
|
|
3886
3948
|
type: "object",
|
|
3887
3949
|
required: ["databaseName", "collectionName", "document"],
|
|
@@ -3916,6 +3978,7 @@ export const mongoInsertMongoDocDefinition = {
|
|
|
3916
3978
|
export const snowflakeGetRowByFieldValueDefinition = {
|
|
3917
3979
|
description: "Get a row from a Snowflake table by a field value",
|
|
3918
3980
|
scopes: [],
|
|
3981
|
+
tags: [],
|
|
3919
3982
|
parameters: {
|
|
3920
3983
|
type: "object",
|
|
3921
3984
|
required: ["tableName", "fieldName", "fieldValue"],
|
|
@@ -3972,6 +4035,7 @@ export const snowflakeGetRowByFieldValueDefinition = {
|
|
|
3972
4035
|
export const snowflakeRunSnowflakeQueryDefinition = {
|
|
3973
4036
|
description: "Execute a Snowflake query and return output.",
|
|
3974
4037
|
scopes: [],
|
|
4038
|
+
tags: [],
|
|
3975
4039
|
parameters: {
|
|
3976
4040
|
type: "object",
|
|
3977
4041
|
required: ["databaseName", "warehouse", "query", "accountName"],
|
|
@@ -4048,6 +4112,7 @@ export const snowflakeRunSnowflakeQueryDefinition = {
|
|
|
4048
4112
|
export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
|
4049
4113
|
description: "Get the latitude and longitude of a location",
|
|
4050
4114
|
scopes: [],
|
|
4115
|
+
tags: [],
|
|
4051
4116
|
parameters: {
|
|
4052
4117
|
type: "object",
|
|
4053
4118
|
required: ["location"],
|
|
@@ -4092,6 +4157,7 @@ export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
|
|
4092
4157
|
export const nwsGetForecastForLocationDefinition = {
|
|
4093
4158
|
description: "Get the weather forecast for a location using latitude and longitude",
|
|
4094
4159
|
scopes: [],
|
|
4160
|
+
tags: [],
|
|
4095
4161
|
parameters: {
|
|
4096
4162
|
type: "object",
|
|
4097
4163
|
required: ["latitude", "longitude", "isoDate"],
|
|
@@ -4140,6 +4206,7 @@ export const nwsGetForecastForLocationDefinition = {
|
|
|
4140
4206
|
export const firecrawlDeepResearchDefinition = {
|
|
4141
4207
|
description: "Deep research on a topic using Firecrawl",
|
|
4142
4208
|
scopes: [],
|
|
4209
|
+
tags: [],
|
|
4143
4210
|
parameters: {
|
|
4144
4211
|
type: "object",
|
|
4145
4212
|
required: ["query"],
|
|
@@ -4200,6 +4267,7 @@ export const firecrawlDeepResearchDefinition = {
|
|
|
4200
4267
|
export const firecrawlScrapeUrlDefinition = {
|
|
4201
4268
|
description: "Scrape a URL and get website content using Firecrawl",
|
|
4202
4269
|
scopes: [],
|
|
4270
|
+
tags: [],
|
|
4203
4271
|
parameters: {
|
|
4204
4272
|
type: "object",
|
|
4205
4273
|
required: ["url"],
|
|
@@ -4269,6 +4337,7 @@ export const firecrawlScrapeUrlDefinition = {
|
|
|
4269
4337
|
export const firecrawlSearchAndScrapeDefinition = {
|
|
4270
4338
|
description: "Search and scrape the web using Firecrawl",
|
|
4271
4339
|
scopes: [],
|
|
4340
|
+
tags: [],
|
|
4272
4341
|
parameters: {
|
|
4273
4342
|
type: "object",
|
|
4274
4343
|
required: ["query"],
|
|
@@ -4321,6 +4390,7 @@ export const firecrawlSearchAndScrapeDefinition = {
|
|
|
4321
4390
|
export const firecrawlGetTopNSearchResultUrlsDefinition = {
|
|
4322
4391
|
description: "Get the top five search result URLs from Firecrawl",
|
|
4323
4392
|
scopes: [],
|
|
4393
|
+
tags: [],
|
|
4324
4394
|
parameters: {
|
|
4325
4395
|
type: "object",
|
|
4326
4396
|
required: ["query"],
|
|
@@ -4368,6 +4438,7 @@ export const firecrawlGetTopNSearchResultUrlsDefinition = {
|
|
|
4368
4438
|
export const firecrawlScrapeTweetDataWithNitterDefinition = {
|
|
4369
4439
|
description: "Given A tweet URL scrape the tweet data with nitter+firecrawl",
|
|
4370
4440
|
scopes: [],
|
|
4441
|
+
tags: [],
|
|
4371
4442
|
parameters: {
|
|
4372
4443
|
type: "object",
|
|
4373
4444
|
required: ["tweetUrl"],
|
|
@@ -4394,6 +4465,7 @@ export const firecrawlScrapeTweetDataWithNitterDefinition = {
|
|
|
4394
4465
|
export const resendSendEmailDefinition = {
|
|
4395
4466
|
description: "Send an email using Resend",
|
|
4396
4467
|
scopes: [],
|
|
4468
|
+
tags: [],
|
|
4397
4469
|
parameters: {
|
|
4398
4470
|
type: "object",
|
|
4399
4471
|
required: ["to", "subject", "content"],
|
|
@@ -4432,6 +4504,7 @@ export const resendSendEmailDefinition = {
|
|
|
4432
4504
|
export const resendSendEmailHtmlDefinition = {
|
|
4433
4505
|
description: "Send an HTML email using Resend",
|
|
4434
4506
|
scopes: [],
|
|
4507
|
+
tags: [],
|
|
4435
4508
|
parameters: {
|
|
4436
4509
|
type: "object",
|
|
4437
4510
|
required: ["to", "subject", "content"],
|
|
@@ -4470,6 +4543,7 @@ export const resendSendEmailHtmlDefinition = {
|
|
|
4470
4543
|
export const googleOauthCreateNewGoogleDocDefinition = {
|
|
4471
4544
|
description: "Create a new Google Docs document using OAuth authentication",
|
|
4472
4545
|
scopes: [],
|
|
4546
|
+
tags: [],
|
|
4473
4547
|
parameters: {
|
|
4474
4548
|
type: "object",
|
|
4475
4549
|
required: ["title"],
|
|
@@ -4508,6 +4582,7 @@ export const googleOauthCreateNewGoogleDocDefinition = {
|
|
|
4508
4582
|
export const googleOauthUpdateDocDefinition = {
|
|
4509
4583
|
description: "Update an existing Google Docs document using OAuth authentication with batch requests",
|
|
4510
4584
|
scopes: [],
|
|
4585
|
+
tags: [],
|
|
4511
4586
|
parameters: {
|
|
4512
4587
|
type: "object",
|
|
4513
4588
|
required: ["documentId"],
|
|
@@ -5619,6 +5694,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
|
5619
5694
|
export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
5620
5695
|
description: "Schedule a meeting on google calendar using OAuth authentication",
|
|
5621
5696
|
scopes: [],
|
|
5697
|
+
tags: [],
|
|
5622
5698
|
parameters: {
|
|
5623
5699
|
type: "object",
|
|
5624
5700
|
required: ["calendarId", "name", "start", "end"],
|
|
@@ -5735,6 +5811,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5735
5811
|
export const googleOauthListCalendarsDefinition = {
|
|
5736
5812
|
description: "List all Google Calendars for the authenticated user",
|
|
5737
5813
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5814
|
+
tags: [],
|
|
5738
5815
|
parameters: {
|
|
5739
5816
|
type: "object",
|
|
5740
5817
|
required: [],
|
|
@@ -5783,6 +5860,7 @@ export const googleOauthListCalendarsDefinition = {
|
|
|
5783
5860
|
export const googleOauthListCalendarEventsDefinition = {
|
|
5784
5861
|
description: "List events on a Google Calendar, optionally searching by query.",
|
|
5785
5862
|
scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
5863
|
+
tags: [],
|
|
5786
5864
|
parameters: {
|
|
5787
5865
|
type: "object",
|
|
5788
5866
|
required: ["calendarId"],
|
|
@@ -5930,6 +6008,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
|
5930
6008
|
export const googleOauthUpdateCalendarEventDefinition = {
|
|
5931
6009
|
description: "Update an event on a Google Calendar using OAuth authentication",
|
|
5932
6010
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6011
|
+
tags: [],
|
|
5933
6012
|
parameters: {
|
|
5934
6013
|
type: "object",
|
|
5935
6014
|
required: ["calendarId", "eventId"],
|
|
@@ -6028,6 +6107,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
|
|
|
6028
6107
|
export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
6029
6108
|
description: "Edit an existing Google Calendar event using OAuth authentication",
|
|
6030
6109
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6110
|
+
tags: [],
|
|
6031
6111
|
parameters: {
|
|
6032
6112
|
type: "object",
|
|
6033
6113
|
required: ["calendarId", "eventId"],
|
|
@@ -6124,6 +6204,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
|
6124
6204
|
export const googleOauthDeleteCalendarEventDefinition = {
|
|
6125
6205
|
description: "Delete an event from a Google Calendar using OAuth authentication",
|
|
6126
6206
|
scopes: ["https://www.googleapis.com/auth/calendar"],
|
|
6207
|
+
tags: [],
|
|
6127
6208
|
parameters: {
|
|
6128
6209
|
type: "object",
|
|
6129
6210
|
required: ["calendarId", "eventId"],
|
|
@@ -6158,6 +6239,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
|
|
|
6158
6239
|
export const googleOauthCreateSpreadsheetDefinition = {
|
|
6159
6240
|
description: "Create a new Google Spreadsheet using OAuth authentication",
|
|
6160
6241
|
scopes: [],
|
|
6242
|
+
tags: [],
|
|
6161
6243
|
parameters: {
|
|
6162
6244
|
type: "object",
|
|
6163
6245
|
required: ["title"],
|
|
@@ -6270,6 +6352,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
|
6270
6352
|
export const googleOauthUpdateSpreadsheetDefinition = {
|
|
6271
6353
|
description: "Update a Google Spreadsheet with new content specified",
|
|
6272
6354
|
scopes: [],
|
|
6355
|
+
tags: [],
|
|
6273
6356
|
parameters: {
|
|
6274
6357
|
type: "object",
|
|
6275
6358
|
required: ["spreadsheetId", "requests"],
|
|
@@ -6287,6 +6370,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6287
6370
|
{
|
|
6288
6371
|
type: "object",
|
|
6289
6372
|
description: "Add or update a sheet",
|
|
6373
|
+
required: ["addSheet"],
|
|
6290
6374
|
properties: {
|
|
6291
6375
|
addSheet: {
|
|
6292
6376
|
type: "object",
|
|
@@ -6320,6 +6404,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6320
6404
|
{
|
|
6321
6405
|
type: "object",
|
|
6322
6406
|
description: "Delete a sheet",
|
|
6407
|
+
required: ["deleteSheet"],
|
|
6323
6408
|
properties: {
|
|
6324
6409
|
deleteSheet: {
|
|
6325
6410
|
type: "object",
|
|
@@ -6335,6 +6420,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6335
6420
|
{
|
|
6336
6421
|
type: "object",
|
|
6337
6422
|
description: "Update cells in a range",
|
|
6423
|
+
required: ["updateCells"],
|
|
6338
6424
|
properties: {
|
|
6339
6425
|
updateCells: {
|
|
6340
6426
|
type: "object",
|
|
@@ -6404,6 +6490,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6404
6490
|
{
|
|
6405
6491
|
type: "object",
|
|
6406
6492
|
description: "Update sheet properties",
|
|
6493
|
+
required: ["updateSheetProperties"],
|
|
6407
6494
|
properties: {
|
|
6408
6495
|
updateSheetProperties: {
|
|
6409
6496
|
type: "object",
|
|
@@ -6453,6 +6540,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6453
6540
|
{
|
|
6454
6541
|
type: "object",
|
|
6455
6542
|
description: "Update spreadsheet properties",
|
|
6543
|
+
required: ["updateSpreadsheetProperties"],
|
|
6456
6544
|
properties: {
|
|
6457
6545
|
updateSpreadsheetProperties: {
|
|
6458
6546
|
type: "object",
|
|
@@ -6653,6 +6741,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6653
6741
|
export const googleOauthCreatePresentationDefinition = {
|
|
6654
6742
|
description: "Create a Google Presentation",
|
|
6655
6743
|
scopes: [],
|
|
6744
|
+
tags: [],
|
|
6656
6745
|
parameters: {
|
|
6657
6746
|
type: "object",
|
|
6658
6747
|
required: ["title"],
|
|
@@ -6726,6 +6815,7 @@ export const googleOauthCreatePresentationDefinition = {
|
|
|
6726
6815
|
export const googleOauthUpdatePresentationDefinition = {
|
|
6727
6816
|
description: "Update a Google Presentation",
|
|
6728
6817
|
scopes: [],
|
|
6818
|
+
tags: [],
|
|
6729
6819
|
parameters: {
|
|
6730
6820
|
type: "object",
|
|
6731
6821
|
required: ["presentationId", "requests"],
|
|
@@ -8015,6 +8105,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
|
8015
8105
|
export const googleOauthGetPresentationDefinition = {
|
|
8016
8106
|
description: "Get a presentation by ID",
|
|
8017
8107
|
scopes: ["slides.readonly"],
|
|
8108
|
+
tags: [],
|
|
8018
8109
|
parameters: {
|
|
8019
8110
|
type: "object",
|
|
8020
8111
|
required: ["presentationId"],
|
|
@@ -8071,6 +8162,7 @@ export const googleOauthGetPresentationDefinition = {
|
|
|
8071
8162
|
export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
8072
8163
|
description: "Search Google Drive files that contain one or more keywords in their full text.",
|
|
8073
8164
|
scopes: ["drive.readonly"],
|
|
8165
|
+
tags: [],
|
|
8074
8166
|
parameters: {
|
|
8075
8167
|
type: "object",
|
|
8076
8168
|
required: ["keywords"],
|
|
@@ -8138,6 +8230,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
|
8138
8230
|
export const googleOauthSearchDriveByQueryDefinition = {
|
|
8139
8231
|
description: "Search Google Drive files based on a google drive query provided.",
|
|
8140
8232
|
scopes: ["drive.readonly"],
|
|
8233
|
+
tags: [],
|
|
8141
8234
|
parameters: {
|
|
8142
8235
|
type: "object",
|
|
8143
8236
|
required: ["query", "searchDriveByDrive"],
|
|
@@ -8210,6 +8303,7 @@ export const googleOauthSearchDriveByQueryDefinition = {
|
|
|
8210
8303
|
export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
8211
8304
|
description: "Search Google Drive with keywords and get resulting content",
|
|
8212
8305
|
scopes: ["drive.readonly"],
|
|
8306
|
+
tags: [],
|
|
8213
8307
|
parameters: {
|
|
8214
8308
|
type: "object",
|
|
8215
8309
|
required: ["searchQuery", "searchDriveByDrive"],
|
|
@@ -8305,6 +8399,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
|
8305
8399
|
export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
8306
8400
|
description: "Search Google Drive with Google Drive query syntax and get resulting content",
|
|
8307
8401
|
scopes: ["drive.readonly"],
|
|
8402
|
+
tags: [],
|
|
8308
8403
|
parameters: {
|
|
8309
8404
|
type: "object",
|
|
8310
8405
|
required: ["query", "searchDriveByDrive"],
|
|
@@ -8385,6 +8480,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
|
8385
8480
|
export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
8386
8481
|
description: "Get text content of a Google Drive file by its ID.",
|
|
8387
8482
|
scopes: ["drive.readonly"],
|
|
8483
|
+
tags: [],
|
|
8388
8484
|
parameters: {
|
|
8389
8485
|
type: "object",
|
|
8390
8486
|
required: ["fileId"],
|
|
@@ -8463,6 +8559,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
|
8463
8559
|
export const googleOauthListGroupsDefinition = {
|
|
8464
8560
|
description: "List all Google Groups for the customer.",
|
|
8465
8561
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8562
|
+
tags: [],
|
|
8466
8563
|
parameters: {
|
|
8467
8564
|
type: "object",
|
|
8468
8565
|
required: [],
|
|
@@ -8519,6 +8616,7 @@ export const googleOauthListGroupsDefinition = {
|
|
|
8519
8616
|
export const googleOauthGetGroupDefinition = {
|
|
8520
8617
|
description: "Get details for a specific Google Group by group email or ID.",
|
|
8521
8618
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
|
|
8619
|
+
tags: [],
|
|
8522
8620
|
parameters: {
|
|
8523
8621
|
type: "object",
|
|
8524
8622
|
required: ["groupKey"],
|
|
@@ -8571,6 +8669,7 @@ export const googleOauthGetGroupDefinition = {
|
|
|
8571
8669
|
export const googleOauthListGroupMembersDefinition = {
|
|
8572
8670
|
description: "List all members of a Google Group.",
|
|
8573
8671
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8672
|
+
tags: [],
|
|
8574
8673
|
parameters: {
|
|
8575
8674
|
type: "object",
|
|
8576
8675
|
required: ["groupKey"],
|
|
@@ -8631,6 +8730,7 @@ export const googleOauthListGroupMembersDefinition = {
|
|
|
8631
8730
|
export const googleOauthHasGroupMemberDefinition = {
|
|
8632
8731
|
description: "Check if a user is a member of a Google Group.",
|
|
8633
8732
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
|
|
8733
|
+
tags: [],
|
|
8634
8734
|
parameters: {
|
|
8635
8735
|
type: "object",
|
|
8636
8736
|
required: ["groupKey", "memberKey"],
|
|
@@ -8669,6 +8769,7 @@ export const googleOauthHasGroupMemberDefinition = {
|
|
|
8669
8769
|
export const googleOauthAddGroupMemberDefinition = {
|
|
8670
8770
|
description: "Add a member to a Google Group.",
|
|
8671
8771
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8772
|
+
tags: [],
|
|
8672
8773
|
parameters: {
|
|
8673
8774
|
type: "object",
|
|
8674
8775
|
required: ["groupKey", "email"],
|
|
@@ -8707,6 +8808,7 @@ export const googleOauthAddGroupMemberDefinition = {
|
|
|
8707
8808
|
export const googleOauthDeleteGroupMemberDefinition = {
|
|
8708
8809
|
description: "Remove a member from a Google Group.",
|
|
8709
8810
|
scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
|
|
8811
|
+
tags: [],
|
|
8710
8812
|
parameters: {
|
|
8711
8813
|
type: "object",
|
|
8712
8814
|
required: ["groupKey", "memberKey"],
|
|
@@ -8741,6 +8843,7 @@ export const googleOauthDeleteGroupMemberDefinition = {
|
|
|
8741
8843
|
export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
8742
8844
|
description: "Execute read only SQL queries on Google BigQuery datasets",
|
|
8743
8845
|
scopes: ["https://www.googleapis.com/auth/bigquery.readonly"],
|
|
8846
|
+
tags: [],
|
|
8744
8847
|
parameters: {
|
|
8745
8848
|
type: "object",
|
|
8746
8849
|
required: ["query", "projectId"],
|
|
@@ -8820,6 +8923,7 @@ export const googleOauthQueryGoogleBigQueryDefinition = {
|
|
|
8820
8923
|
export const googlemailSearchGmailMessagesDefinition = {
|
|
8821
8924
|
description: "Search Gmail messages in a user's inbox using a query string.",
|
|
8822
8925
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
8926
|
+
tags: [],
|
|
8823
8927
|
parameters: {
|
|
8824
8928
|
type: "object",
|
|
8825
8929
|
required: ["query"],
|
|
@@ -8936,6 +9040,7 @@ export const googlemailSearchGmailMessagesDefinition = {
|
|
|
8936
9040
|
export const googlemailListGmailThreadsDefinition = {
|
|
8937
9041
|
description: "List Gmail threads in a user's inbox using a query string.",
|
|
8938
9042
|
scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
|
|
9043
|
+
tags: [],
|
|
8939
9044
|
parameters: {
|
|
8940
9045
|
type: "object",
|
|
8941
9046
|
required: ["query"],
|
|
@@ -9018,6 +9123,7 @@ export const googlemailListGmailThreadsDefinition = {
|
|
|
9018
9123
|
export const googlemailSendGmailDefinition = {
|
|
9019
9124
|
description: "Send an email through Gmail with support for to, cc, bcc, subject, and content.",
|
|
9020
9125
|
scopes: ["https://www.googleapis.com/auth/gmail.send"],
|
|
9126
|
+
tags: [],
|
|
9021
9127
|
parameters: {
|
|
9022
9128
|
type: "object",
|
|
9023
9129
|
required: ["to", "subject", "content"],
|
|
@@ -9081,6 +9187,7 @@ export const googlemailSendGmailDefinition = {
|
|
|
9081
9187
|
export const googleSearchCustomSearchDefinition = {
|
|
9082
9188
|
description: "Search for information using the Google Custom Search API",
|
|
9083
9189
|
scopes: [],
|
|
9190
|
+
tags: [],
|
|
9084
9191
|
parameters: {
|
|
9085
9192
|
type: "object",
|
|
9086
9193
|
required: ["query", "customSearchEngineId"],
|
|
@@ -9187,6 +9294,7 @@ export const googleSearchCustomSearchDefinition = {
|
|
|
9187
9294
|
export const oktaOrgGetOktaUserByNameDefinition = {
|
|
9188
9295
|
description: "Retrieve details of a specific Okta user by their name.",
|
|
9189
9296
|
scopes: ["okta.users.read"],
|
|
9297
|
+
tags: [],
|
|
9190
9298
|
parameters: {
|
|
9191
9299
|
type: "object",
|
|
9192
9300
|
required: ["name"],
|
|
@@ -9243,6 +9351,7 @@ export const oktaOrgGetOktaUserByNameDefinition = {
|
|
|
9243
9351
|
export const finnhubSymbolLookupDefinition = {
|
|
9244
9352
|
description: "Look up a stock symbol by name",
|
|
9245
9353
|
scopes: [],
|
|
9354
|
+
tags: [],
|
|
9246
9355
|
parameters: {
|
|
9247
9356
|
type: "object",
|
|
9248
9357
|
required: ["query"],
|
|
@@ -9283,6 +9392,7 @@ export const finnhubSymbolLookupDefinition = {
|
|
|
9283
9392
|
export const finnhubGetBasicFinancialsDefinition = {
|
|
9284
9393
|
description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
|
|
9285
9394
|
scopes: [],
|
|
9395
|
+
tags: [],
|
|
9286
9396
|
parameters: {
|
|
9287
9397
|
type: "object",
|
|
9288
9398
|
required: ["symbol"],
|
|
@@ -9375,6 +9485,7 @@ export const finnhubGetBasicFinancialsDefinition = {
|
|
|
9375
9485
|
export const lookerEnableUserByEmailDefinition = {
|
|
9376
9486
|
description: "Search for a Looker user by email and enable them if disabled",
|
|
9377
9487
|
scopes: [],
|
|
9488
|
+
tags: [],
|
|
9378
9489
|
parameters: {
|
|
9379
9490
|
type: "object",
|
|
9380
9491
|
required: ["userEmail"],
|
|
@@ -9436,6 +9547,7 @@ export const lookerEnableUserByEmailDefinition = {
|
|
|
9436
9547
|
export const salesforceUpdateRecordDefinition = {
|
|
9437
9548
|
description: "Update a record in Salesforce",
|
|
9438
9549
|
scopes: [],
|
|
9550
|
+
tags: [],
|
|
9439
9551
|
parameters: {
|
|
9440
9552
|
type: "object",
|
|
9441
9553
|
required: ["objectType", "recordId", "fieldsToUpdate"],
|
|
@@ -9477,6 +9589,7 @@ export const salesforceUpdateRecordDefinition = {
|
|
|
9477
9589
|
export const salesforceCreateRecordDefinition = {
|
|
9478
9590
|
description: "Create a record in Salesforce",
|
|
9479
9591
|
scopes: [],
|
|
9592
|
+
tags: [],
|
|
9480
9593
|
parameters: {
|
|
9481
9594
|
type: "object",
|
|
9482
9595
|
required: ["objectType"],
|
|
@@ -9518,6 +9631,7 @@ export const salesforceCreateRecordDefinition = {
|
|
|
9518
9631
|
export const salesforceCreateCaseDefinition = {
|
|
9519
9632
|
description: "Create a case or support ticket in Salesforce",
|
|
9520
9633
|
scopes: [],
|
|
9634
|
+
tags: [],
|
|
9521
9635
|
parameters: {
|
|
9522
9636
|
type: "object",
|
|
9523
9637
|
required: ["subject", "description", "priority", "origin"],
|
|
@@ -9571,6 +9685,7 @@ export const salesforceCreateCaseDefinition = {
|
|
|
9571
9685
|
export const salesforceGenerateSalesReportDefinition = {
|
|
9572
9686
|
description: "Generate a sales report from Salesforce",
|
|
9573
9687
|
scopes: [],
|
|
9688
|
+
tags: [],
|
|
9574
9689
|
parameters: {
|
|
9575
9690
|
type: "object",
|
|
9576
9691
|
required: ["startDate", "endDate"],
|
|
@@ -9623,6 +9738,7 @@ export const salesforceGenerateSalesReportDefinition = {
|
|
|
9623
9738
|
export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
9624
9739
|
description: "Search for all Salesforce records by keyword",
|
|
9625
9740
|
scopes: [],
|
|
9741
|
+
tags: [],
|
|
9626
9742
|
parameters: {
|
|
9627
9743
|
type: "object",
|
|
9628
9744
|
required: ["keyword"],
|
|
@@ -9710,6 +9826,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
|
9710
9826
|
export const salesforceSearchSalesforceRecordsDefinition = {
|
|
9711
9827
|
description: "Search for Salesforce records by keyword",
|
|
9712
9828
|
scopes: [],
|
|
9829
|
+
tags: [],
|
|
9713
9830
|
parameters: {
|
|
9714
9831
|
type: "object",
|
|
9715
9832
|
required: ["keyword", "recordType", "fieldsToSearch"],
|
|
@@ -9804,6 +9921,7 @@ export const salesforceSearchSalesforceRecordsDefinition = {
|
|
|
9804
9921
|
export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
9805
9922
|
description: "Retrieve Salesforce records by SOQL query",
|
|
9806
9923
|
scopes: [],
|
|
9924
|
+
tags: [],
|
|
9807
9925
|
parameters: {
|
|
9808
9926
|
type: "object",
|
|
9809
9927
|
required: ["query"],
|
|
@@ -9859,6 +9977,7 @@ export const salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
|
9859
9977
|
export const salesforceGetRecordDefinition = {
|
|
9860
9978
|
description: "Retrieve a record from Salesforce",
|
|
9861
9979
|
scopes: [],
|
|
9980
|
+
tags: [],
|
|
9862
9981
|
parameters: {
|
|
9863
9982
|
type: "object",
|
|
9864
9983
|
required: ["objectType", "recordId"],
|
|
@@ -9900,6 +10019,7 @@ export const salesforceGetRecordDefinition = {
|
|
|
9900
10019
|
export const microsoftCreateDocumentDefinition = {
|
|
9901
10020
|
description: "Creates a new Office365 document",
|
|
9902
10021
|
scopes: ["Files.ReadWrite", "Sites.Manage.All", "Sites.ReadWrite.All"],
|
|
10022
|
+
tags: [],
|
|
9903
10023
|
parameters: {
|
|
9904
10024
|
type: "object",
|
|
9905
10025
|
required: ["name", "content"],
|
|
@@ -9954,6 +10074,7 @@ export const microsoftCreateDocumentDefinition = {
|
|
|
9954
10074
|
export const microsoftUpdateDocumentDefinition = {
|
|
9955
10075
|
description: "Updates a Office365 document",
|
|
9956
10076
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10077
|
+
tags: [],
|
|
9957
10078
|
parameters: {
|
|
9958
10079
|
type: "object",
|
|
9959
10080
|
required: ["documentId", "content"],
|
|
@@ -9996,6 +10117,7 @@ export const microsoftUpdateDocumentDefinition = {
|
|
|
9996
10117
|
export const microsoftUpdateSpreadsheetDefinition = {
|
|
9997
10118
|
description: "Updates a Microsoft Excel spreadsheet",
|
|
9998
10119
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10120
|
+
tags: [],
|
|
9999
10121
|
parameters: {
|
|
10000
10122
|
type: "object",
|
|
10001
10123
|
required: ["spreadsheetId", "range", "values"],
|
|
@@ -10048,6 +10170,7 @@ export const microsoftUpdateSpreadsheetDefinition = {
|
|
|
10048
10170
|
export const microsoftMessageTeamsChatDefinition = {
|
|
10049
10171
|
description: "Sends a message to a Microsoft Teams chat",
|
|
10050
10172
|
scopes: ["ChatMessage.Send"],
|
|
10173
|
+
tags: [],
|
|
10051
10174
|
parameters: {
|
|
10052
10175
|
type: "object",
|
|
10053
10176
|
required: ["chatId", "message"],
|
|
@@ -10086,6 +10209,7 @@ export const microsoftMessageTeamsChatDefinition = {
|
|
|
10086
10209
|
export const microsoftMessageTeamsChannelDefinition = {
|
|
10087
10210
|
description: "Sends a message to a Microsoft Teams channel",
|
|
10088
10211
|
scopes: ["ChannelMessage.Send"],
|
|
10212
|
+
tags: [],
|
|
10089
10213
|
parameters: {
|
|
10090
10214
|
type: "object",
|
|
10091
10215
|
required: ["teamId", "channelId", "message"],
|
|
@@ -10128,6 +10252,7 @@ export const microsoftMessageTeamsChannelDefinition = {
|
|
|
10128
10252
|
export const microsoftGetDocumentDefinition = {
|
|
10129
10253
|
description: "Retrieves the content of a Microsoft Office document",
|
|
10130
10254
|
scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
|
|
10255
|
+
tags: [],
|
|
10131
10256
|
parameters: {
|
|
10132
10257
|
type: "object",
|
|
10133
10258
|
required: ["documentId"],
|
|
@@ -10166,6 +10291,7 @@ export const microsoftGetDocumentDefinition = {
|
|
|
10166
10291
|
export const githubCreateOrUpdateFileDefinition = {
|
|
10167
10292
|
description: "Create or update a file in a GitHub repository",
|
|
10168
10293
|
scopes: [],
|
|
10294
|
+
tags: [],
|
|
10169
10295
|
parameters: {
|
|
10170
10296
|
type: "object",
|
|
10171
10297
|
required: ["repositoryOwner", "repositoryName", "filePath", "branch", "fileContent", "commitMessage"],
|
|
@@ -10173,10 +10299,12 @@ export const githubCreateOrUpdateFileDefinition = {
|
|
|
10173
10299
|
repositoryOwner: {
|
|
10174
10300
|
type: "string",
|
|
10175
10301
|
description: "The owner of the repository",
|
|
10302
|
+
tags: ["recommend-predefined"],
|
|
10176
10303
|
},
|
|
10177
10304
|
repositoryName: {
|
|
10178
10305
|
type: "string",
|
|
10179
10306
|
description: "The name of the repository",
|
|
10307
|
+
tags: ["recommend-predefined"],
|
|
10180
10308
|
},
|
|
10181
10309
|
filePath: {
|
|
10182
10310
|
type: "string",
|
|
@@ -10229,6 +10357,7 @@ export const githubCreateOrUpdateFileDefinition = {
|
|
|
10229
10357
|
export const githubCreateBranchDefinition = {
|
|
10230
10358
|
description: "Create a new branch in a GitHub repository",
|
|
10231
10359
|
scopes: [],
|
|
10360
|
+
tags: [],
|
|
10232
10361
|
parameters: {
|
|
10233
10362
|
type: "object",
|
|
10234
10363
|
required: ["repositoryOwner", "repositoryName", "branchName", "baseRefOrHash"],
|
|
@@ -10236,10 +10365,12 @@ export const githubCreateBranchDefinition = {
|
|
|
10236
10365
|
repositoryOwner: {
|
|
10237
10366
|
type: "string",
|
|
10238
10367
|
description: "The owner of the repository",
|
|
10368
|
+
tags: ["recommend-predefined"],
|
|
10239
10369
|
},
|
|
10240
10370
|
repositoryName: {
|
|
10241
10371
|
type: "string",
|
|
10242
10372
|
description: "The name of the repository",
|
|
10373
|
+
tags: ["recommend-predefined"],
|
|
10243
10374
|
},
|
|
10244
10375
|
branchName: {
|
|
10245
10376
|
type: "string",
|
|
@@ -10271,6 +10402,7 @@ export const githubCreateBranchDefinition = {
|
|
|
10271
10402
|
export const githubCreatePullRequestDefinition = {
|
|
10272
10403
|
description: "Create a pull request in a GitHub repository",
|
|
10273
10404
|
scopes: [],
|
|
10405
|
+
tags: [],
|
|
10274
10406
|
parameters: {
|
|
10275
10407
|
type: "object",
|
|
10276
10408
|
required: ["repositoryOwner", "repositoryName", "head", "base", "title"],
|
|
@@ -10278,10 +10410,12 @@ export const githubCreatePullRequestDefinition = {
|
|
|
10278
10410
|
repositoryOwner: {
|
|
10279
10411
|
type: "string",
|
|
10280
10412
|
description: "The owner of the repository",
|
|
10413
|
+
tags: ["recommend-predefined"],
|
|
10281
10414
|
},
|
|
10282
10415
|
repositoryName: {
|
|
10283
10416
|
type: "string",
|
|
10284
10417
|
description: "The name of the repository",
|
|
10418
|
+
tags: ["recommend-predefined"],
|
|
10285
10419
|
},
|
|
10286
10420
|
head: {
|
|
10287
10421
|
type: "string",
|
|
@@ -10329,6 +10463,7 @@ export const githubCreatePullRequestDefinition = {
|
|
|
10329
10463
|
export const githubListPullRequestsDefinition = {
|
|
10330
10464
|
description: "List pull requests in a GitHub repository",
|
|
10331
10465
|
scopes: [],
|
|
10466
|
+
tags: [],
|
|
10332
10467
|
parameters: {
|
|
10333
10468
|
type: "object",
|
|
10334
10469
|
required: ["repositoryOwner", "repositoryName"],
|
|
@@ -10336,10 +10471,12 @@ export const githubListPullRequestsDefinition = {
|
|
|
10336
10471
|
repositoryOwner: {
|
|
10337
10472
|
type: "string",
|
|
10338
10473
|
description: "The owner of the repository",
|
|
10474
|
+
tags: ["recommend-predefined"],
|
|
10339
10475
|
},
|
|
10340
10476
|
repositoryName: {
|
|
10341
10477
|
type: "string",
|
|
10342
10478
|
description: "The name of the repository",
|
|
10479
|
+
tags: ["recommend-predefined"],
|
|
10343
10480
|
},
|
|
10344
10481
|
state: {
|
|
10345
10482
|
type: "string",
|
|
@@ -10426,6 +10563,7 @@ export const githubListPullRequestsDefinition = {
|
|
|
10426
10563
|
export const githubGetPullRequestDetailsDefinition = {
|
|
10427
10564
|
description: "Get detailed information about a specific pull request including description, files, reviews, and status",
|
|
10428
10565
|
scopes: [],
|
|
10566
|
+
tags: [],
|
|
10429
10567
|
parameters: {
|
|
10430
10568
|
type: "object",
|
|
10431
10569
|
required: ["repositoryOwner", "repositoryName", "pullRequestNumber"],
|
|
@@ -10433,10 +10571,12 @@ export const githubGetPullRequestDetailsDefinition = {
|
|
|
10433
10571
|
repositoryOwner: {
|
|
10434
10572
|
type: "string",
|
|
10435
10573
|
description: "The owner of the repository",
|
|
10574
|
+
tags: ["recommend-predefined"],
|
|
10436
10575
|
},
|
|
10437
10576
|
repositoryName: {
|
|
10438
10577
|
type: "string",
|
|
10439
10578
|
description: "The name of the repository",
|
|
10579
|
+
tags: ["recommend-predefined"],
|
|
10440
10580
|
},
|
|
10441
10581
|
pullRequestNumber: {
|
|
10442
10582
|
type: "number",
|
|
@@ -10703,6 +10843,7 @@ export const githubGetPullRequestDetailsDefinition = {
|
|
|
10703
10843
|
export const githubGetFileContentDefinition = {
|
|
10704
10844
|
description: "Get specified file content from a GitHub repository",
|
|
10705
10845
|
scopes: [],
|
|
10846
|
+
tags: [],
|
|
10706
10847
|
parameters: {
|
|
10707
10848
|
type: "object",
|
|
10708
10849
|
required: ["organization", "repository", "path"],
|
|
@@ -10710,10 +10851,12 @@ export const githubGetFileContentDefinition = {
|
|
|
10710
10851
|
organization: {
|
|
10711
10852
|
type: "string",
|
|
10712
10853
|
description: "The organization that owns the repository",
|
|
10854
|
+
tags: ["recommend-predefined"],
|
|
10713
10855
|
},
|
|
10714
10856
|
repository: {
|
|
10715
10857
|
type: "string",
|
|
10716
10858
|
description: "The repository name",
|
|
10859
|
+
tags: ["recommend-predefined"],
|
|
10717
10860
|
},
|
|
10718
10861
|
path: {
|
|
10719
10862
|
type: "string",
|
|
@@ -10779,6 +10922,7 @@ export const githubGetFileContentDefinition = {
|
|
|
10779
10922
|
export const githubListDirectoryDefinition = {
|
|
10780
10923
|
description: "List directory contents of a path in a GitHub repository",
|
|
10781
10924
|
scopes: [],
|
|
10925
|
+
tags: [],
|
|
10782
10926
|
parameters: {
|
|
10783
10927
|
type: "object",
|
|
10784
10928
|
required: ["organization", "repository", "path"],
|
|
@@ -10786,10 +10930,12 @@ export const githubListDirectoryDefinition = {
|
|
|
10786
10930
|
organization: {
|
|
10787
10931
|
type: "string",
|
|
10788
10932
|
description: "The organization that owns the repository",
|
|
10933
|
+
tags: ["recommend-predefined"],
|
|
10789
10934
|
},
|
|
10790
10935
|
repository: {
|
|
10791
10936
|
type: "string",
|
|
10792
10937
|
description: "The repository name",
|
|
10938
|
+
tags: ["recommend-predefined"],
|
|
10793
10939
|
},
|
|
10794
10940
|
path: {
|
|
10795
10941
|
type: "string",
|
|
@@ -10854,6 +11000,7 @@ export const githubListDirectoryDefinition = {
|
|
|
10854
11000
|
export const githubSearchRepositoryDefinition = {
|
|
10855
11001
|
description: "Search for code, issues and pull requests within a repository in a GitHub organization",
|
|
10856
11002
|
scopes: [],
|
|
11003
|
+
tags: [],
|
|
10857
11004
|
parameters: {
|
|
10858
11005
|
type: "object",
|
|
10859
11006
|
required: ["organization", "repository", "query"],
|
|
@@ -10861,10 +11008,12 @@ export const githubSearchRepositoryDefinition = {
|
|
|
10861
11008
|
organization: {
|
|
10862
11009
|
type: "string",
|
|
10863
11010
|
description: "The organization to search for data in",
|
|
11011
|
+
tags: ["recommend-predefined"],
|
|
10864
11012
|
},
|
|
10865
11013
|
repository: {
|
|
10866
11014
|
type: "string",
|
|
10867
11015
|
description: "The repository to search for data in",
|
|
11016
|
+
tags: ["recommend-predefined"],
|
|
10868
11017
|
},
|
|
10869
11018
|
query: {
|
|
10870
11019
|
type: "string",
|
|
@@ -11089,6 +11238,7 @@ export const githubSearchRepositoryDefinition = {
|
|
|
11089
11238
|
export const githubSearchOrganizationDefinition = {
|
|
11090
11239
|
description: "Search for code, issues and pull requests within a GitHub organization",
|
|
11091
11240
|
scopes: [],
|
|
11241
|
+
tags: [],
|
|
11092
11242
|
parameters: {
|
|
11093
11243
|
type: "object",
|
|
11094
11244
|
required: ["organization", "query"],
|
|
@@ -11096,6 +11246,7 @@ export const githubSearchOrganizationDefinition = {
|
|
|
11096
11246
|
organization: {
|
|
11097
11247
|
type: "string",
|
|
11098
11248
|
description: "The organization to search for data in",
|
|
11249
|
+
tags: ["recommend-predefined"],
|
|
11099
11250
|
},
|
|
11100
11251
|
query: {
|
|
11101
11252
|
type: "string",
|
|
@@ -11379,6 +11530,7 @@ export const githubSearchOrganizationDefinition = {
|
|
|
11379
11530
|
export const githubGetBranchDefinition = {
|
|
11380
11531
|
description: "Get a branch in a GitHub repository",
|
|
11381
11532
|
scopes: [],
|
|
11533
|
+
tags: [],
|
|
11382
11534
|
parameters: {
|
|
11383
11535
|
type: "object",
|
|
11384
11536
|
required: ["repositoryOwner", "repositoryName", "branchName"],
|
|
@@ -11386,10 +11538,12 @@ export const githubGetBranchDefinition = {
|
|
|
11386
11538
|
repositoryOwner: {
|
|
11387
11539
|
type: "string",
|
|
11388
11540
|
description: "The owner of the repository",
|
|
11541
|
+
tags: ["recommend-predefined"],
|
|
11389
11542
|
},
|
|
11390
11543
|
repositoryName: {
|
|
11391
11544
|
type: "string",
|
|
11392
11545
|
description: "The name of the repository",
|
|
11546
|
+
tags: ["recommend-predefined"],
|
|
11393
11547
|
},
|
|
11394
11548
|
branchName: {
|
|
11395
11549
|
type: "string",
|
|
@@ -11635,6 +11789,7 @@ export const githubGetBranchDefinition = {
|
|
|
11635
11789
|
export const githubListCommitsDefinition = {
|
|
11636
11790
|
description: "List commits in a GitHub repository with optional date filtering and pagination",
|
|
11637
11791
|
scopes: [],
|
|
11792
|
+
tags: [],
|
|
11638
11793
|
parameters: {
|
|
11639
11794
|
type: "object",
|
|
11640
11795
|
required: ["repositoryOwner", "repositoryName"],
|
|
@@ -11642,10 +11797,12 @@ export const githubListCommitsDefinition = {
|
|
|
11642
11797
|
repositoryOwner: {
|
|
11643
11798
|
type: "string",
|
|
11644
11799
|
description: "The owner of the repository",
|
|
11800
|
+
tags: ["recommend-predefined"],
|
|
11645
11801
|
},
|
|
11646
11802
|
repositoryName: {
|
|
11647
11803
|
type: "string",
|
|
11648
11804
|
description: "The name of the repository",
|
|
11805
|
+
tags: ["recommend-predefined"],
|
|
11649
11806
|
},
|
|
11650
11807
|
branch: {
|
|
11651
11808
|
type: "string",
|
|
@@ -11819,6 +11976,7 @@ export const githubListCommitsDefinition = {
|
|
|
11819
11976
|
export const notionSearchByTitleDefinition = {
|
|
11820
11977
|
description: "Search Notion pages and databases by title",
|
|
11821
11978
|
scopes: [],
|
|
11979
|
+
tags: [],
|
|
11822
11980
|
parameters: {
|
|
11823
11981
|
type: "object",
|
|
11824
11982
|
required: ["query"],
|
|
@@ -11872,6 +12030,7 @@ export const notionSearchByTitleDefinition = {
|
|
|
11872
12030
|
export const gitlabSearchGroupDefinition = {
|
|
11873
12031
|
description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
|
|
11874
12032
|
scopes: [],
|
|
12033
|
+
tags: [],
|
|
11875
12034
|
parameters: {
|
|
11876
12035
|
type: "object",
|
|
11877
12036
|
required: ["query", "groupId"],
|
|
@@ -12157,6 +12316,7 @@ export const gitlabSearchGroupDefinition = {
|
|
|
12157
12316
|
export const gitlabGetFileContentDefinition = {
|
|
12158
12317
|
description: "Get specified file content from a GitLab repository",
|
|
12159
12318
|
scopes: [],
|
|
12319
|
+
tags: [],
|
|
12160
12320
|
parameters: {
|
|
12161
12321
|
type: "object",
|
|
12162
12322
|
required: ["project_id", "path"],
|
|
@@ -12235,6 +12395,7 @@ export const gitlabGetFileContentDefinition = {
|
|
|
12235
12395
|
export const gitlabGetMergeRequestDefinition = {
|
|
12236
12396
|
description: "Get specified merge request from a GitLab repository",
|
|
12237
12397
|
scopes: [],
|
|
12398
|
+
tags: [],
|
|
12238
12399
|
parameters: {
|
|
12239
12400
|
type: "object",
|
|
12240
12401
|
required: ["mr_iid"],
|
|
@@ -12456,6 +12617,7 @@ export const gitlabGetMergeRequestDefinition = {
|
|
|
12456
12617
|
export const gitlabListDirectoryDefinition = {
|
|
12457
12618
|
description: "List directory contents of a path in a GitLab repository",
|
|
12458
12619
|
scopes: [],
|
|
12620
|
+
tags: [],
|
|
12459
12621
|
parameters: {
|
|
12460
12622
|
type: "object",
|
|
12461
12623
|
required: ["group", "project", "path"],
|
|
@@ -12543,6 +12705,7 @@ export const gitlabListDirectoryDefinition = {
|
|
|
12543
12705
|
export const linearGetIssuesDefinition = {
|
|
12544
12706
|
description: "Get Linear issues with optional query filter",
|
|
12545
12707
|
scopes: [],
|
|
12708
|
+
tags: [],
|
|
12546
12709
|
parameters: {
|
|
12547
12710
|
type: "object",
|
|
12548
12711
|
required: [],
|
|
@@ -12672,6 +12835,7 @@ export const linearGetIssuesDefinition = {
|
|
|
12672
12835
|
export const linearGetIssueDetailsDefinition = {
|
|
12673
12836
|
description: "Get detailed information about a Linear issue",
|
|
12674
12837
|
scopes: [],
|
|
12838
|
+
tags: [],
|
|
12675
12839
|
parameters: {
|
|
12676
12840
|
type: "object",
|
|
12677
12841
|
required: ["issueId"],
|
|
@@ -12832,6 +12996,7 @@ export const linearGetIssueDetailsDefinition = {
|
|
|
12832
12996
|
export const linearGetProjectsDefinition = {
|
|
12833
12997
|
description: "Get all Linear projects",
|
|
12834
12998
|
scopes: [],
|
|
12999
|
+
tags: [],
|
|
12835
13000
|
parameters: {
|
|
12836
13001
|
type: "object",
|
|
12837
13002
|
required: [],
|
|
@@ -12929,6 +13094,7 @@ export const linearGetProjectsDefinition = {
|
|
|
12929
13094
|
export const linearGetProjectDetailsDefinition = {
|
|
12930
13095
|
description: "Get detailed information about a Linear project",
|
|
12931
13096
|
scopes: [],
|
|
13097
|
+
tags: [],
|
|
12932
13098
|
parameters: {
|
|
12933
13099
|
type: "object",
|
|
12934
13100
|
required: ["projectId"],
|
|
@@ -13075,6 +13241,7 @@ export const linearGetProjectDetailsDefinition = {
|
|
|
13075
13241
|
export const linearGetTeamDetailsDefinition = {
|
|
13076
13242
|
description: "Get detailed information about a Linear team",
|
|
13077
13243
|
scopes: [],
|
|
13244
|
+
tags: [],
|
|
13078
13245
|
parameters: {
|
|
13079
13246
|
type: "object",
|
|
13080
13247
|
required: ["teamId"],
|
|
@@ -13141,6 +13308,7 @@ export const linearGetTeamDetailsDefinition = {
|
|
|
13141
13308
|
export const linearGetTeamsDefinition = {
|
|
13142
13309
|
description: "Get all teams in Linear",
|
|
13143
13310
|
scopes: [],
|
|
13311
|
+
tags: [],
|
|
13144
13312
|
parameters: {
|
|
13145
13313
|
type: "object",
|
|
13146
13314
|
required: [],
|
|
@@ -13183,6 +13351,7 @@ export const linearGetTeamsDefinition = {
|
|
|
13183
13351
|
export const hubspotGetContactsDefinition = {
|
|
13184
13352
|
description: "List or search HubSpot contacts by optional query",
|
|
13185
13353
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13354
|
+
tags: [],
|
|
13186
13355
|
parameters: {
|
|
13187
13356
|
type: "object",
|
|
13188
13357
|
required: [],
|
|
@@ -13246,6 +13415,7 @@ export const hubspotGetContactsDefinition = {
|
|
|
13246
13415
|
export const hubspotGetContactDetailsDefinition = {
|
|
13247
13416
|
description: "Get detailed information about a specific HubSpot contact",
|
|
13248
13417
|
scopes: ["oauth crm.objects.contacts.read"],
|
|
13418
|
+
tags: [],
|
|
13249
13419
|
parameters: {
|
|
13250
13420
|
type: "object",
|
|
13251
13421
|
required: ["contactId"],
|
|
@@ -13346,6 +13516,7 @@ export const hubspotGetContactDetailsDefinition = {
|
|
|
13346
13516
|
export const hubspotGetCompaniesDefinition = {
|
|
13347
13517
|
description: "List or search HubSpot companies by optional query",
|
|
13348
13518
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13519
|
+
tags: [],
|
|
13349
13520
|
parameters: {
|
|
13350
13521
|
type: "object",
|
|
13351
13522
|
required: [],
|
|
@@ -13405,6 +13576,7 @@ export const hubspotGetCompaniesDefinition = {
|
|
|
13405
13576
|
export const hubspotGetCompanyDetailsDefinition = {
|
|
13406
13577
|
description: "Get detailed information about a specific HubSpot company",
|
|
13407
13578
|
scopes: ["oauth crm.objects.companies.read"],
|
|
13579
|
+
tags: [],
|
|
13408
13580
|
parameters: {
|
|
13409
13581
|
type: "object",
|
|
13410
13582
|
required: ["companyId"],
|
|
@@ -13497,6 +13669,7 @@ export const hubspotGetCompanyDetailsDefinition = {
|
|
|
13497
13669
|
export const hubspotGetDealsDefinition = {
|
|
13498
13670
|
description: "List or search HubSpot deals by optional query",
|
|
13499
13671
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13672
|
+
tags: [],
|
|
13500
13673
|
parameters: {
|
|
13501
13674
|
type: "object",
|
|
13502
13675
|
required: [],
|
|
@@ -13560,6 +13733,7 @@ export const hubspotGetDealsDefinition = {
|
|
|
13560
13733
|
export const hubspotGetDealDetailsDefinition = {
|
|
13561
13734
|
description: "Get detailed information about a specific HubSpot deal",
|
|
13562
13735
|
scopes: ["oauth crm.objects.deals.read"],
|
|
13736
|
+
tags: [],
|
|
13563
13737
|
parameters: {
|
|
13564
13738
|
type: "object",
|
|
13565
13739
|
required: ["dealId"],
|
|
@@ -13644,6 +13818,7 @@ export const hubspotGetDealDetailsDefinition = {
|
|
|
13644
13818
|
export const hubspotGetTicketsDefinition = {
|
|
13645
13819
|
description: "List or search HubSpot tickets by optional query",
|
|
13646
13820
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13821
|
+
tags: [],
|
|
13647
13822
|
parameters: {
|
|
13648
13823
|
type: "object",
|
|
13649
13824
|
required: [],
|
|
@@ -13703,6 +13878,7 @@ export const hubspotGetTicketsDefinition = {
|
|
|
13703
13878
|
export const hubspotGetTicketDetailsDefinition = {
|
|
13704
13879
|
description: "Get detailed information about a specific HubSpot ticket",
|
|
13705
13880
|
scopes: ["oauth crm.objects.tickets.read"],
|
|
13881
|
+
tags: [],
|
|
13706
13882
|
parameters: {
|
|
13707
13883
|
type: "object",
|
|
13708
13884
|
required: ["ticketId"],
|