@credal/actions 0.2.175 → 0.2.179
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/actionMapper.js +9 -16
- package/dist/actions/autogen/templates.d.ts +1 -4
- package/dist/actions/autogen/templates.js +127 -520
- package/dist/actions/autogen/types.d.ts +278 -791
- package/dist/actions/autogen/types.js +27 -157
- package/dist/actions/groups.js +4 -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/google-oauth/listCalendarEvents.js +7 -20
- package/dist/actions/providers/slack/archiveChannel.js +9 -2
- package/dist/actions/providers/slack/getChannelMembers.d.ts +3 -0
- package/dist/actions/providers/slack/getChannelMembers.js +67 -0
- package/package.json +1 -1
- 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
|
@@ -329,6 +329,7 @@ export const asanaCreateTaskDefinition = {
|
|
|
329
329
|
projectId: {
|
|
330
330
|
type: "string",
|
|
331
331
|
description: "Project gid the task belongs to",
|
|
332
|
+
tags: ["recommend-predefined"],
|
|
332
333
|
},
|
|
333
334
|
name: {
|
|
334
335
|
type: "string",
|
|
@@ -802,6 +803,56 @@ export const slackGetChannelMessagesDefinition = {
|
|
|
802
803
|
name: "getChannelMessages",
|
|
803
804
|
provider: "slack",
|
|
804
805
|
};
|
|
806
|
+
export const slackGetChannelMembersDefinition = {
|
|
807
|
+
description: "Gets the members of a Slack channel",
|
|
808
|
+
scopes: ["channels:read"],
|
|
809
|
+
tags: [],
|
|
810
|
+
parameters: {
|
|
811
|
+
type: "object",
|
|
812
|
+
properties: {
|
|
813
|
+
channelId: {
|
|
814
|
+
type: "string",
|
|
815
|
+
description: "The ID of the channel to get members from",
|
|
816
|
+
},
|
|
817
|
+
channelName: {
|
|
818
|
+
type: "string",
|
|
819
|
+
description: "The name of the channel to get members from",
|
|
820
|
+
},
|
|
821
|
+
},
|
|
822
|
+
},
|
|
823
|
+
output: {
|
|
824
|
+
type: "object",
|
|
825
|
+
required: ["success", "members"],
|
|
826
|
+
properties: {
|
|
827
|
+
success: {
|
|
828
|
+
type: "boolean",
|
|
829
|
+
description: "Whether the members were retrieved successfully",
|
|
830
|
+
},
|
|
831
|
+
members: {
|
|
832
|
+
type: "array",
|
|
833
|
+
description: "The members of the channel",
|
|
834
|
+
items: {
|
|
835
|
+
type: "object",
|
|
836
|
+
description: "A member of the channel",
|
|
837
|
+
required: ["id", "name", "email"],
|
|
838
|
+
properties: {
|
|
839
|
+
id: {
|
|
840
|
+
type: "string",
|
|
841
|
+
},
|
|
842
|
+
name: {
|
|
843
|
+
type: "string",
|
|
844
|
+
},
|
|
845
|
+
email: {
|
|
846
|
+
type: "string",
|
|
847
|
+
},
|
|
848
|
+
},
|
|
849
|
+
},
|
|
850
|
+
},
|
|
851
|
+
},
|
|
852
|
+
},
|
|
853
|
+
name: "getChannelMembers",
|
|
854
|
+
provider: "slack",
|
|
855
|
+
};
|
|
805
856
|
export const slackUserSearchSlackDefinition = {
|
|
806
857
|
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).",
|
|
807
858
|
scopes: [
|
|
@@ -1118,6 +1169,7 @@ export const jiraAssignJiraTicketDefinition = {
|
|
|
1118
1169
|
projectKey: {
|
|
1119
1170
|
type: "string",
|
|
1120
1171
|
description: "The key for the project you want to add it to",
|
|
1172
|
+
tags: ["recommend-predefined"],
|
|
1121
1173
|
},
|
|
1122
1174
|
assignee: {
|
|
1123
1175
|
type: "string",
|
|
@@ -1200,6 +1252,7 @@ export const jiraCommentJiraTicketDefinition = {
|
|
|
1200
1252
|
projectKey: {
|
|
1201
1253
|
type: "string",
|
|
1202
1254
|
description: "The key for the project",
|
|
1255
|
+
tags: ["recommend-predefined"],
|
|
1203
1256
|
},
|
|
1204
1257
|
issueId: {
|
|
1205
1258
|
type: "string",
|
|
@@ -1243,6 +1296,7 @@ export const jiraCreateJiraTicketDefinition = {
|
|
|
1243
1296
|
projectKey: {
|
|
1244
1297
|
type: "string",
|
|
1245
1298
|
description: "The key for the project you want to add it to",
|
|
1299
|
+
tags: ["recommend-predefined"],
|
|
1246
1300
|
},
|
|
1247
1301
|
summary: {
|
|
1248
1302
|
type: "string",
|
|
@@ -1296,100 +1350,6 @@ export const jiraCreateJiraTicketDefinition = {
|
|
|
1296
1350
|
name: "createJiraTicket",
|
|
1297
1351
|
provider: "jira",
|
|
1298
1352
|
};
|
|
1299
|
-
export const jiraGetServiceDesksDefinition = {
|
|
1300
|
-
description: "Get the service desks for a Jira instance",
|
|
1301
|
-
scopes: [],
|
|
1302
|
-
tags: [],
|
|
1303
|
-
parameters: {
|
|
1304
|
-
type: "object",
|
|
1305
|
-
required: [],
|
|
1306
|
-
properties: {},
|
|
1307
|
-
},
|
|
1308
|
-
output: {
|
|
1309
|
-
type: "object",
|
|
1310
|
-
required: ["success"],
|
|
1311
|
-
properties: {
|
|
1312
|
-
success: {
|
|
1313
|
-
type: "boolean",
|
|
1314
|
-
description: "Whether the service desks were retrieved successfully",
|
|
1315
|
-
},
|
|
1316
|
-
error: {
|
|
1317
|
-
type: "string",
|
|
1318
|
-
description: "The error that occurred if the service desks were not retrieved successfully",
|
|
1319
|
-
},
|
|
1320
|
-
serviceDesks: {
|
|
1321
|
-
type: "array",
|
|
1322
|
-
description: "The list of service desks",
|
|
1323
|
-
items: {
|
|
1324
|
-
type: "object",
|
|
1325
|
-
description: "A service desk",
|
|
1326
|
-
properties: {
|
|
1327
|
-
id: {
|
|
1328
|
-
type: "string",
|
|
1329
|
-
description: "The ID of the service desk",
|
|
1330
|
-
},
|
|
1331
|
-
projectId: {
|
|
1332
|
-
type: "string",
|
|
1333
|
-
description: "The ID of the project",
|
|
1334
|
-
},
|
|
1335
|
-
projectKey: {
|
|
1336
|
-
type: "string",
|
|
1337
|
-
description: "The key of the project",
|
|
1338
|
-
},
|
|
1339
|
-
projectName: {
|
|
1340
|
-
type: "string",
|
|
1341
|
-
description: "The name of the service desk",
|
|
1342
|
-
},
|
|
1343
|
-
requestTypes: {
|
|
1344
|
-
type: "array",
|
|
1345
|
-
description: "The list of request types",
|
|
1346
|
-
items: {
|
|
1347
|
-
type: "object",
|
|
1348
|
-
description: "A request type",
|
|
1349
|
-
properties: {
|
|
1350
|
-
id: {
|
|
1351
|
-
type: "string",
|
|
1352
|
-
description: "The ID of the request type",
|
|
1353
|
-
},
|
|
1354
|
-
name: {
|
|
1355
|
-
type: "string",
|
|
1356
|
-
description: "The name of the request type",
|
|
1357
|
-
},
|
|
1358
|
-
description: {
|
|
1359
|
-
type: "string",
|
|
1360
|
-
description: "The description of the request type",
|
|
1361
|
-
},
|
|
1362
|
-
issueTypeId: {
|
|
1363
|
-
type: "string",
|
|
1364
|
-
description: "The ID of the issue type",
|
|
1365
|
-
},
|
|
1366
|
-
portalId: {
|
|
1367
|
-
type: "string",
|
|
1368
|
-
description: "The ID of the customer portal",
|
|
1369
|
-
},
|
|
1370
|
-
helpText: {
|
|
1371
|
-
type: "string",
|
|
1372
|
-
description: "The help text for the request type",
|
|
1373
|
-
},
|
|
1374
|
-
serviceDeskId: {
|
|
1375
|
-
type: "string",
|
|
1376
|
-
description: "The ID of the service desk",
|
|
1377
|
-
},
|
|
1378
|
-
canCreateRequest: {
|
|
1379
|
-
type: "boolean",
|
|
1380
|
-
description: "Whether the request type can be created",
|
|
1381
|
-
},
|
|
1382
|
-
},
|
|
1383
|
-
},
|
|
1384
|
-
},
|
|
1385
|
-
},
|
|
1386
|
-
},
|
|
1387
|
-
},
|
|
1388
|
-
},
|
|
1389
|
-
},
|
|
1390
|
-
name: "getServiceDesks",
|
|
1391
|
-
provider: "jira",
|
|
1392
|
-
};
|
|
1393
1353
|
export const jiraCreateServiceDeskRequestDefinition = {
|
|
1394
1354
|
description: "Create a jira service desk request with specified content",
|
|
1395
1355
|
scopes: [],
|
|
@@ -1460,6 +1420,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
|
|
|
1460
1420
|
projectKey: {
|
|
1461
1421
|
type: "string",
|
|
1462
1422
|
description: "The key for the project",
|
|
1423
|
+
tags: ["recommend-predefined"],
|
|
1463
1424
|
},
|
|
1464
1425
|
issueId: {
|
|
1465
1426
|
type: "string",
|
|
@@ -1517,6 +1478,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
|
|
|
1517
1478
|
projectKey: {
|
|
1518
1479
|
type: "string",
|
|
1519
1480
|
description: "The key for the project",
|
|
1481
|
+
tags: ["recommend-predefined"],
|
|
1520
1482
|
},
|
|
1521
1483
|
issueId: {
|
|
1522
1484
|
type: "string",
|
|
@@ -1556,6 +1518,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
|
1556
1518
|
projectKey: {
|
|
1557
1519
|
type: "string",
|
|
1558
1520
|
description: "The key for the project you want to add it to",
|
|
1521
|
+
tags: ["recommend-predefined"],
|
|
1559
1522
|
},
|
|
1560
1523
|
issueId: {
|
|
1561
1524
|
type: "string",
|
|
@@ -1616,6 +1579,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
|
|
|
1616
1579
|
projectKey: {
|
|
1617
1580
|
type: "string",
|
|
1618
1581
|
description: "The key for the project you want to add it to",
|
|
1582
|
+
tags: ["recommend-predefined"],
|
|
1619
1583
|
},
|
|
1620
1584
|
issueId: {
|
|
1621
1585
|
type: "string",
|
|
@@ -1858,6 +1822,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
|
|
|
1858
1822
|
projectKey: {
|
|
1859
1823
|
type: "string",
|
|
1860
1824
|
description: "The key for the project you want to add it to",
|
|
1825
|
+
tags: ["recommend-predefined"],
|
|
1861
1826
|
},
|
|
1862
1827
|
assignee: {
|
|
1863
1828
|
type: "string",
|
|
@@ -1940,6 +1905,7 @@ export const jiraOrgCommentJiraTicketDefinition = {
|
|
|
1940
1905
|
projectKey: {
|
|
1941
1906
|
type: "string",
|
|
1942
1907
|
description: "The key for the project",
|
|
1908
|
+
tags: ["recommend-predefined"],
|
|
1943
1909
|
},
|
|
1944
1910
|
issueId: {
|
|
1945
1911
|
type: "string",
|
|
@@ -1983,6 +1949,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
|
|
|
1983
1949
|
projectKey: {
|
|
1984
1950
|
type: "string",
|
|
1985
1951
|
description: "The key for the project you want to add it to",
|
|
1952
|
+
tags: ["recommend-predefined"],
|
|
1986
1953
|
},
|
|
1987
1954
|
summary: {
|
|
1988
1955
|
type: "string",
|
|
@@ -2036,100 +2003,6 @@ export const jiraOrgCreateJiraTicketDefinition = {
|
|
|
2036
2003
|
name: "createJiraTicket",
|
|
2037
2004
|
provider: "jiraOrg",
|
|
2038
2005
|
};
|
|
2039
|
-
export const jiraOrgGetServiceDesksDefinition = {
|
|
2040
|
-
description: "Get the service desks for a Jira instance",
|
|
2041
|
-
scopes: [],
|
|
2042
|
-
tags: [],
|
|
2043
|
-
parameters: {
|
|
2044
|
-
type: "object",
|
|
2045
|
-
required: [],
|
|
2046
|
-
properties: {},
|
|
2047
|
-
},
|
|
2048
|
-
output: {
|
|
2049
|
-
type: "object",
|
|
2050
|
-
required: ["success"],
|
|
2051
|
-
properties: {
|
|
2052
|
-
success: {
|
|
2053
|
-
type: "boolean",
|
|
2054
|
-
description: "Whether the service desks were retrieved successfully",
|
|
2055
|
-
},
|
|
2056
|
-
error: {
|
|
2057
|
-
type: "string",
|
|
2058
|
-
description: "The error that occurred if the service desks were not retrieved successfully",
|
|
2059
|
-
},
|
|
2060
|
-
serviceDesks: {
|
|
2061
|
-
type: "array",
|
|
2062
|
-
description: "The list of service desks",
|
|
2063
|
-
items: {
|
|
2064
|
-
type: "object",
|
|
2065
|
-
description: "A service desk",
|
|
2066
|
-
properties: {
|
|
2067
|
-
id: {
|
|
2068
|
-
type: "string",
|
|
2069
|
-
description: "The ID of the service desk",
|
|
2070
|
-
},
|
|
2071
|
-
projectId: {
|
|
2072
|
-
type: "string",
|
|
2073
|
-
description: "The ID of the project",
|
|
2074
|
-
},
|
|
2075
|
-
projectKey: {
|
|
2076
|
-
type: "string",
|
|
2077
|
-
description: "The key of the project",
|
|
2078
|
-
},
|
|
2079
|
-
projectName: {
|
|
2080
|
-
type: "string",
|
|
2081
|
-
description: "The name of the service desk",
|
|
2082
|
-
},
|
|
2083
|
-
requestTypes: {
|
|
2084
|
-
type: "array",
|
|
2085
|
-
description: "The list of request types",
|
|
2086
|
-
items: {
|
|
2087
|
-
type: "object",
|
|
2088
|
-
description: "A request type",
|
|
2089
|
-
properties: {
|
|
2090
|
-
id: {
|
|
2091
|
-
type: "string",
|
|
2092
|
-
description: "The ID of the request type",
|
|
2093
|
-
},
|
|
2094
|
-
name: {
|
|
2095
|
-
type: "string",
|
|
2096
|
-
description: "The name of the request type",
|
|
2097
|
-
},
|
|
2098
|
-
description: {
|
|
2099
|
-
type: "string",
|
|
2100
|
-
description: "The description of the request type",
|
|
2101
|
-
},
|
|
2102
|
-
issueTypeId: {
|
|
2103
|
-
type: "string",
|
|
2104
|
-
description: "The ID of the issue type",
|
|
2105
|
-
},
|
|
2106
|
-
portalId: {
|
|
2107
|
-
type: "string",
|
|
2108
|
-
description: "The ID of the customer portal",
|
|
2109
|
-
},
|
|
2110
|
-
helpText: {
|
|
2111
|
-
type: "string",
|
|
2112
|
-
description: "The help text for the request type",
|
|
2113
|
-
},
|
|
2114
|
-
serviceDeskId: {
|
|
2115
|
-
type: "string",
|
|
2116
|
-
description: "The ID of the service desk",
|
|
2117
|
-
},
|
|
2118
|
-
canCreateRequest: {
|
|
2119
|
-
type: "boolean",
|
|
2120
|
-
description: "Whether the request type can be created",
|
|
2121
|
-
},
|
|
2122
|
-
},
|
|
2123
|
-
},
|
|
2124
|
-
},
|
|
2125
|
-
},
|
|
2126
|
-
},
|
|
2127
|
-
},
|
|
2128
|
-
},
|
|
2129
|
-
},
|
|
2130
|
-
name: "getServiceDesks",
|
|
2131
|
-
provider: "jiraOrg",
|
|
2132
|
-
};
|
|
2133
2006
|
export const jiraOrgCreateServiceDeskRequestDefinition = {
|
|
2134
2007
|
description: "Create a jira service desk request with specified content",
|
|
2135
2008
|
scopes: [],
|
|
@@ -2200,6 +2073,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
|
2200
2073
|
projectKey: {
|
|
2201
2074
|
type: "string",
|
|
2202
2075
|
description: "The key for the project",
|
|
2076
|
+
tags: ["recommend-predefined"],
|
|
2203
2077
|
},
|
|
2204
2078
|
issueId: {
|
|
2205
2079
|
type: "string",
|
|
@@ -2257,6 +2131,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
|
2257
2131
|
projectKey: {
|
|
2258
2132
|
type: "string",
|
|
2259
2133
|
description: "The key for the project",
|
|
2134
|
+
tags: ["recommend-predefined"],
|
|
2260
2135
|
},
|
|
2261
2136
|
issueId: {
|
|
2262
2137
|
type: "string",
|
|
@@ -2296,6 +2171,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
|
2296
2171
|
projectKey: {
|
|
2297
2172
|
type: "string",
|
|
2298
2173
|
description: "The key for the project you want to add it to",
|
|
2174
|
+
tags: ["recommend-predefined"],
|
|
2299
2175
|
},
|
|
2300
2176
|
issueId: {
|
|
2301
2177
|
type: "string",
|
|
@@ -2356,6 +2232,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
|
2356
2232
|
projectKey: {
|
|
2357
2233
|
type: "string",
|
|
2358
2234
|
description: "The key for the project you want to add it to",
|
|
2235
|
+
tags: ["recommend-predefined"],
|
|
2359
2236
|
},
|
|
2360
2237
|
issueId: {
|
|
2361
2238
|
type: "string",
|
|
@@ -2598,6 +2475,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
|
2598
2475
|
projectKey: {
|
|
2599
2476
|
type: "string",
|
|
2600
2477
|
description: "The key for the project you want to add it to",
|
|
2478
|
+
tags: ["recommend-predefined"],
|
|
2601
2479
|
},
|
|
2602
2480
|
assignee: {
|
|
2603
2481
|
type: "string",
|
|
@@ -2680,6 +2558,7 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
|
2680
2558
|
projectKey: {
|
|
2681
2559
|
type: "string",
|
|
2682
2560
|
description: "The key for the project",
|
|
2561
|
+
tags: ["recommend-predefined"],
|
|
2683
2562
|
},
|
|
2684
2563
|
issueId: {
|
|
2685
2564
|
type: "string",
|
|
@@ -2723,6 +2602,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
|
2723
2602
|
projectKey: {
|
|
2724
2603
|
type: "string",
|
|
2725
2604
|
description: "The key for the project you want to add it to",
|
|
2605
|
+
tags: ["recommend-predefined"],
|
|
2726
2606
|
},
|
|
2727
2607
|
summary: {
|
|
2728
2608
|
type: "string",
|
|
@@ -2776,100 +2656,6 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
|
2776
2656
|
name: "createJiraTicket",
|
|
2777
2657
|
provider: "jiraDataCenter",
|
|
2778
2658
|
};
|
|
2779
|
-
export const jiraDataCenterGetServiceDesksDefinition = {
|
|
2780
|
-
description: "Get the service desks for a Jira instance",
|
|
2781
|
-
scopes: [],
|
|
2782
|
-
tags: [],
|
|
2783
|
-
parameters: {
|
|
2784
|
-
type: "object",
|
|
2785
|
-
required: [],
|
|
2786
|
-
properties: {},
|
|
2787
|
-
},
|
|
2788
|
-
output: {
|
|
2789
|
-
type: "object",
|
|
2790
|
-
required: ["success"],
|
|
2791
|
-
properties: {
|
|
2792
|
-
success: {
|
|
2793
|
-
type: "boolean",
|
|
2794
|
-
description: "Whether the service desks were retrieved successfully",
|
|
2795
|
-
},
|
|
2796
|
-
error: {
|
|
2797
|
-
type: "string",
|
|
2798
|
-
description: "The error that occurred if the service desks were not retrieved successfully",
|
|
2799
|
-
},
|
|
2800
|
-
serviceDesks: {
|
|
2801
|
-
type: "array",
|
|
2802
|
-
description: "The list of service desks",
|
|
2803
|
-
items: {
|
|
2804
|
-
type: "object",
|
|
2805
|
-
description: "A service desk",
|
|
2806
|
-
properties: {
|
|
2807
|
-
id: {
|
|
2808
|
-
type: "string",
|
|
2809
|
-
description: "The ID of the service desk",
|
|
2810
|
-
},
|
|
2811
|
-
projectId: {
|
|
2812
|
-
type: "string",
|
|
2813
|
-
description: "The ID of the project",
|
|
2814
|
-
},
|
|
2815
|
-
projectKey: {
|
|
2816
|
-
type: "string",
|
|
2817
|
-
description: "The key of the project",
|
|
2818
|
-
},
|
|
2819
|
-
projectName: {
|
|
2820
|
-
type: "string",
|
|
2821
|
-
description: "The name of the service desk",
|
|
2822
|
-
},
|
|
2823
|
-
requestTypes: {
|
|
2824
|
-
type: "array",
|
|
2825
|
-
description: "The list of request types",
|
|
2826
|
-
items: {
|
|
2827
|
-
type: "object",
|
|
2828
|
-
description: "A request type",
|
|
2829
|
-
properties: {
|
|
2830
|
-
id: {
|
|
2831
|
-
type: "string",
|
|
2832
|
-
description: "The ID of the request type",
|
|
2833
|
-
},
|
|
2834
|
-
name: {
|
|
2835
|
-
type: "string",
|
|
2836
|
-
description: "The name of the request type",
|
|
2837
|
-
},
|
|
2838
|
-
description: {
|
|
2839
|
-
type: "string",
|
|
2840
|
-
description: "The description of the request type",
|
|
2841
|
-
},
|
|
2842
|
-
issueTypeId: {
|
|
2843
|
-
type: "string",
|
|
2844
|
-
description: "The ID of the issue type",
|
|
2845
|
-
},
|
|
2846
|
-
portalId: {
|
|
2847
|
-
type: "string",
|
|
2848
|
-
description: "The ID of the customer portal",
|
|
2849
|
-
},
|
|
2850
|
-
helpText: {
|
|
2851
|
-
type: "string",
|
|
2852
|
-
description: "The help text for the request type",
|
|
2853
|
-
},
|
|
2854
|
-
serviceDeskId: {
|
|
2855
|
-
type: "string",
|
|
2856
|
-
description: "The ID of the service desk",
|
|
2857
|
-
},
|
|
2858
|
-
canCreateRequest: {
|
|
2859
|
-
type: "boolean",
|
|
2860
|
-
description: "Whether the request type can be created",
|
|
2861
|
-
},
|
|
2862
|
-
},
|
|
2863
|
-
},
|
|
2864
|
-
},
|
|
2865
|
-
},
|
|
2866
|
-
},
|
|
2867
|
-
},
|
|
2868
|
-
},
|
|
2869
|
-
},
|
|
2870
|
-
name: "getServiceDesks",
|
|
2871
|
-
provider: "jiraDataCenter",
|
|
2872
|
-
};
|
|
2873
2659
|
export const jiraDataCenterCreateServiceDeskRequestDefinition = {
|
|
2874
2660
|
description: "Create a jira service desk request with specified content",
|
|
2875
2661
|
scopes: [],
|
|
@@ -2940,6 +2726,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
|
2940
2726
|
projectKey: {
|
|
2941
2727
|
type: "string",
|
|
2942
2728
|
description: "The key for the project",
|
|
2729
|
+
tags: ["recommend-predefined"],
|
|
2943
2730
|
},
|
|
2944
2731
|
issueId: {
|
|
2945
2732
|
type: "string",
|
|
@@ -2997,6 +2784,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
|
2997
2784
|
projectKey: {
|
|
2998
2785
|
type: "string",
|
|
2999
2786
|
description: "The key for the project",
|
|
2787
|
+
tags: ["recommend-predefined"],
|
|
3000
2788
|
},
|
|
3001
2789
|
issueId: {
|
|
3002
2790
|
type: "string",
|
|
@@ -3036,6 +2824,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
|
3036
2824
|
projectKey: {
|
|
3037
2825
|
type: "string",
|
|
3038
2826
|
description: "The key for the project you want to add it to",
|
|
2827
|
+
tags: ["recommend-predefined"],
|
|
3039
2828
|
},
|
|
3040
2829
|
issueId: {
|
|
3041
2830
|
type: "string",
|
|
@@ -3096,6 +2885,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
|
3096
2885
|
projectKey: {
|
|
3097
2886
|
type: "string",
|
|
3098
2887
|
description: "The key for the project you want to add it to",
|
|
2888
|
+
tags: ["recommend-predefined"],
|
|
3099
2889
|
},
|
|
3100
2890
|
issueId: {
|
|
3101
2891
|
type: "string",
|
|
@@ -3630,6 +3420,7 @@ export const zendeskCreateZendeskTicketDefinition = {
|
|
|
3630
3420
|
subdomain: {
|
|
3631
3421
|
type: "string",
|
|
3632
3422
|
description: "The subdomain of the Zendesk account",
|
|
3423
|
+
tags: ["recommend-predefined"],
|
|
3633
3424
|
},
|
|
3634
3425
|
groupId: {
|
|
3635
3426
|
type: "number",
|
|
@@ -3665,6 +3456,7 @@ export const zendeskListZendeskTicketsDefinition = {
|
|
|
3665
3456
|
subdomain: {
|
|
3666
3457
|
type: "string",
|
|
3667
3458
|
description: "The subdomain of the Zendesk account",
|
|
3459
|
+
tags: ["recommend-predefined"],
|
|
3668
3460
|
},
|
|
3669
3461
|
status: {
|
|
3670
3462
|
type: "string",
|
|
@@ -3707,6 +3499,7 @@ export const zendeskGetTicketDetailsDefinition = {
|
|
|
3707
3499
|
subdomain: {
|
|
3708
3500
|
type: "string",
|
|
3709
3501
|
description: "The subdomain of the Zendesk account",
|
|
3502
|
+
tags: ["recommend-predefined"],
|
|
3710
3503
|
},
|
|
3711
3504
|
},
|
|
3712
3505
|
},
|
|
@@ -3738,6 +3531,7 @@ export const zendeskUpdateTicketStatusDefinition = {
|
|
|
3738
3531
|
subdomain: {
|
|
3739
3532
|
type: "string",
|
|
3740
3533
|
description: "The subdomain of the Zendesk account",
|
|
3534
|
+
tags: ["recommend-predefined"],
|
|
3741
3535
|
},
|
|
3742
3536
|
status: {
|
|
3743
3537
|
type: "string",
|
|
@@ -3763,6 +3557,7 @@ export const zendeskAddCommentToTicketDefinition = {
|
|
|
3763
3557
|
subdomain: {
|
|
3764
3558
|
type: "string",
|
|
3765
3559
|
description: "The subdomain of the Zendesk account",
|
|
3560
|
+
tags: ["recommend-predefined"],
|
|
3766
3561
|
},
|
|
3767
3562
|
body: {
|
|
3768
3563
|
type: "string",
|
|
@@ -3806,6 +3601,7 @@ export const zendeskAssignTicketDefinition = {
|
|
|
3806
3601
|
subdomain: {
|
|
3807
3602
|
type: "string",
|
|
3808
3603
|
description: "The subdomain of the Zendesk account",
|
|
3604
|
+
tags: ["recommend-predefined"],
|
|
3809
3605
|
},
|
|
3810
3606
|
assigneeEmail: {
|
|
3811
3607
|
type: "string",
|
|
@@ -3827,6 +3623,7 @@ export const zendeskSearchZendeskByQueryDefinition = {
|
|
|
3827
3623
|
subdomain: {
|
|
3828
3624
|
type: "string",
|
|
3829
3625
|
description: "The subdomain of the Zendesk account",
|
|
3626
|
+
tags: ["recommend-predefined"],
|
|
3830
3627
|
},
|
|
3831
3628
|
query: {
|
|
3832
3629
|
type: "string",
|
|
@@ -5702,6 +5499,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5702
5499
|
calendarId: {
|
|
5703
5500
|
type: "string",
|
|
5704
5501
|
description: "The ID of the calendar to schedule the meeting on",
|
|
5502
|
+
tags: ["recommend-predefined"],
|
|
5705
5503
|
},
|
|
5706
5504
|
name: {
|
|
5707
5505
|
type: "string",
|
|
@@ -5868,6 +5666,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
|
5868
5666
|
calendarId: {
|
|
5869
5667
|
type: "string",
|
|
5870
5668
|
description: "The ID of the calendar to list events from",
|
|
5669
|
+
tags: ["recommend-predefined"],
|
|
5871
5670
|
},
|
|
5872
5671
|
query: {
|
|
5873
5672
|
type: "string",
|
|
@@ -5989,6 +5788,39 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
|
5989
5788
|
type: "string",
|
|
5990
5789
|
description: "Last modification time of the event (RFC3339 timestamp)",
|
|
5991
5790
|
},
|
|
5791
|
+
attachments: {
|
|
5792
|
+
type: "array",
|
|
5793
|
+
description: "List of file attachments for the event",
|
|
5794
|
+
items: {
|
|
5795
|
+
type: "object",
|
|
5796
|
+
properties: {
|
|
5797
|
+
fileId: {
|
|
5798
|
+
type: "string",
|
|
5799
|
+
description: "ID of the attached file",
|
|
5800
|
+
},
|
|
5801
|
+
fileUrl: {
|
|
5802
|
+
type: "string",
|
|
5803
|
+
description: "URL link to the attachment",
|
|
5804
|
+
},
|
|
5805
|
+
title: {
|
|
5806
|
+
type: "string",
|
|
5807
|
+
description: "Attachment title",
|
|
5808
|
+
},
|
|
5809
|
+
mimeType: {
|
|
5810
|
+
type: "string",
|
|
5811
|
+
description: "Internet media type (MIME type) of the attachment",
|
|
5812
|
+
},
|
|
5813
|
+
},
|
|
5814
|
+
},
|
|
5815
|
+
},
|
|
5816
|
+
eventType: {
|
|
5817
|
+
type: "string",
|
|
5818
|
+
description: 'Differentiate "workingLocation" events, which simply specify a location, from real meetings',
|
|
5819
|
+
},
|
|
5820
|
+
transparency: {
|
|
5821
|
+
type: "string",
|
|
5822
|
+
description: 'Whether the event blocks time on the calendar and is considered a "busy" time. Populated when transparent.',
|
|
5823
|
+
},
|
|
5992
5824
|
},
|
|
5993
5825
|
},
|
|
5994
5826
|
},
|
|
@@ -6016,6 +5848,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
|
|
|
6016
5848
|
calendarId: {
|
|
6017
5849
|
type: "string",
|
|
6018
5850
|
description: "The ID of the calendar containing the event",
|
|
5851
|
+
tags: ["recommend-predefined"],
|
|
6019
5852
|
},
|
|
6020
5853
|
eventId: {
|
|
6021
5854
|
type: "string",
|
|
@@ -6115,6 +5948,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
|
6115
5948
|
calendarId: {
|
|
6116
5949
|
type: "string",
|
|
6117
5950
|
description: "The ID of the calendar containing the event",
|
|
5951
|
+
tags: ["recommend-predefined"],
|
|
6118
5952
|
},
|
|
6119
5953
|
eventId: {
|
|
6120
5954
|
type: "string",
|
|
@@ -6212,6 +6046,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
|
|
|
6212
6046
|
calendarId: {
|
|
6213
6047
|
type: "string",
|
|
6214
6048
|
description: "The ID of the calendar containing the event",
|
|
6049
|
+
tags: ["recommend-predefined"],
|
|
6215
6050
|
},
|
|
6216
6051
|
eventId: {
|
|
6217
6052
|
type: "string",
|
|
@@ -8323,6 +8158,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
|
8323
8158
|
searchDriveByDrive: {
|
|
8324
8159
|
type: "boolean",
|
|
8325
8160
|
description: "Search drive by drive or run a general search",
|
|
8161
|
+
tags: ["recommend-predefined"],
|
|
8326
8162
|
},
|
|
8327
8163
|
orderByQuery: {
|
|
8328
8164
|
type: "string",
|
|
@@ -8331,6 +8167,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
|
|
|
8331
8167
|
includeTrashed: {
|
|
8332
8168
|
type: "boolean",
|
|
8333
8169
|
description: "Whether to include trashed files in the search results",
|
|
8170
|
+
tags: ["recommend-predefined"],
|
|
8334
8171
|
},
|
|
8335
8172
|
},
|
|
8336
8173
|
},
|
|
@@ -8419,6 +8256,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
|
8419
8256
|
searchDriveByDrive: {
|
|
8420
8257
|
type: "boolean",
|
|
8421
8258
|
description: "Search drive by drive or run a general search",
|
|
8259
|
+
tags: ["recommend-predefined"],
|
|
8422
8260
|
},
|
|
8423
8261
|
orderByQuery: {
|
|
8424
8262
|
type: "string",
|
|
@@ -8427,6 +8265,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
|
|
|
8427
8265
|
includeTrashed: {
|
|
8428
8266
|
type: "boolean",
|
|
8429
8267
|
description: "Whether to include trashed files in the search results",
|
|
8268
|
+
tags: ["recommend-predefined"],
|
|
8430
8269
|
},
|
|
8431
8270
|
},
|
|
8432
8271
|
},
|
|
@@ -10997,244 +10836,6 @@ export const githubListDirectoryDefinition = {
|
|
|
10997
10836
|
name: "listDirectory",
|
|
10998
10837
|
provider: "github",
|
|
10999
10838
|
};
|
|
11000
|
-
export const githubSearchRepositoryDefinition = {
|
|
11001
|
-
description: "Search for code, issues and pull requests within a repository in a GitHub organization",
|
|
11002
|
-
scopes: [],
|
|
11003
|
-
tags: [],
|
|
11004
|
-
parameters: {
|
|
11005
|
-
type: "object",
|
|
11006
|
-
required: ["organization", "repository", "query"],
|
|
11007
|
-
properties: {
|
|
11008
|
-
organization: {
|
|
11009
|
-
type: "string",
|
|
11010
|
-
description: "The organization to search for data in",
|
|
11011
|
-
tags: ["recommend-predefined"],
|
|
11012
|
-
},
|
|
11013
|
-
repository: {
|
|
11014
|
-
type: "string",
|
|
11015
|
-
description: "The repository to search for data in",
|
|
11016
|
-
tags: ["recommend-predefined"],
|
|
11017
|
-
},
|
|
11018
|
-
query: {
|
|
11019
|
-
type: "string",
|
|
11020
|
-
description: "The query to search for in the repository",
|
|
11021
|
-
},
|
|
11022
|
-
},
|
|
11023
|
-
},
|
|
11024
|
-
output: {
|
|
11025
|
-
type: "object",
|
|
11026
|
-
required: ["code", "commits", "issuesAndPullRequests"],
|
|
11027
|
-
properties: {
|
|
11028
|
-
code: {
|
|
11029
|
-
type: "array",
|
|
11030
|
-
description: "A list of code results that match the query",
|
|
11031
|
-
items: {
|
|
11032
|
-
type: "object",
|
|
11033
|
-
required: ["name", "path", "sha", "url", "score", "textMatches"],
|
|
11034
|
-
properties: {
|
|
11035
|
-
name: {
|
|
11036
|
-
type: "string",
|
|
11037
|
-
description: "The name of the file that had a match",
|
|
11038
|
-
},
|
|
11039
|
-
path: {
|
|
11040
|
-
type: "string",
|
|
11041
|
-
description: "The path of the file that had a match",
|
|
11042
|
-
},
|
|
11043
|
-
sha: {
|
|
11044
|
-
type: "string",
|
|
11045
|
-
description: "The SHA of the commit that had a match",
|
|
11046
|
-
},
|
|
11047
|
-
url: {
|
|
11048
|
-
type: "string",
|
|
11049
|
-
description: "The URL of the file that had a match",
|
|
11050
|
-
},
|
|
11051
|
-
score: {
|
|
11052
|
-
type: "number",
|
|
11053
|
-
description: "The similarity score of the match",
|
|
11054
|
-
},
|
|
11055
|
-
textMatches: {
|
|
11056
|
-
type: "array",
|
|
11057
|
-
description: "A list of text matches that match the query",
|
|
11058
|
-
items: {
|
|
11059
|
-
type: "object",
|
|
11060
|
-
required: ["matches"],
|
|
11061
|
-
properties: {
|
|
11062
|
-
object_url: {
|
|
11063
|
-
type: "string",
|
|
11064
|
-
description: "The URL of the object that had a match",
|
|
11065
|
-
},
|
|
11066
|
-
object_type: {
|
|
11067
|
-
type: "string",
|
|
11068
|
-
description: "The type of the object that had a match",
|
|
11069
|
-
},
|
|
11070
|
-
fragment: {
|
|
11071
|
-
type: "string",
|
|
11072
|
-
description: "The fragment of the text that had a match",
|
|
11073
|
-
},
|
|
11074
|
-
matches: {
|
|
11075
|
-
type: "array",
|
|
11076
|
-
description: "A list of matches that match the query",
|
|
11077
|
-
items: {
|
|
11078
|
-
type: "object",
|
|
11079
|
-
properties: {
|
|
11080
|
-
text: {
|
|
11081
|
-
type: "string",
|
|
11082
|
-
description: "The text that had a match",
|
|
11083
|
-
},
|
|
11084
|
-
indices: {
|
|
11085
|
-
type: "array",
|
|
11086
|
-
description: "The indices of the text that had a match",
|
|
11087
|
-
items: {
|
|
11088
|
-
type: "number",
|
|
11089
|
-
},
|
|
11090
|
-
},
|
|
11091
|
-
},
|
|
11092
|
-
},
|
|
11093
|
-
},
|
|
11094
|
-
},
|
|
11095
|
-
},
|
|
11096
|
-
},
|
|
11097
|
-
},
|
|
11098
|
-
},
|
|
11099
|
-
},
|
|
11100
|
-
commits: {
|
|
11101
|
-
type: "array",
|
|
11102
|
-
description: "A list of commits that match the query",
|
|
11103
|
-
items: {
|
|
11104
|
-
type: "object",
|
|
11105
|
-
required: ["sha", "url", "message", "author", "committer", "parents", "tree", "commitDate"],
|
|
11106
|
-
properties: {
|
|
11107
|
-
sha: {
|
|
11108
|
-
type: "string",
|
|
11109
|
-
description: "The SHA of the commit that had a match",
|
|
11110
|
-
},
|
|
11111
|
-
url: {
|
|
11112
|
-
type: "string",
|
|
11113
|
-
description: "The URL of the commit that had a match",
|
|
11114
|
-
},
|
|
11115
|
-
commit: {
|
|
11116
|
-
type: "object",
|
|
11117
|
-
required: ["message", "author", "score", "files"],
|
|
11118
|
-
properties: {
|
|
11119
|
-
author: {
|
|
11120
|
-
type: "object",
|
|
11121
|
-
required: ["name", "email", "date"],
|
|
11122
|
-
properties: {
|
|
11123
|
-
name: {
|
|
11124
|
-
type: "string",
|
|
11125
|
-
description: "The name of the author",
|
|
11126
|
-
},
|
|
11127
|
-
email: {
|
|
11128
|
-
type: "string",
|
|
11129
|
-
description: "The email of the author",
|
|
11130
|
-
},
|
|
11131
|
-
date: {
|
|
11132
|
-
type: "string",
|
|
11133
|
-
description: "The date of the commit",
|
|
11134
|
-
},
|
|
11135
|
-
},
|
|
11136
|
-
},
|
|
11137
|
-
message: {
|
|
11138
|
-
type: "string",
|
|
11139
|
-
description: "The message of the commit",
|
|
11140
|
-
},
|
|
11141
|
-
},
|
|
11142
|
-
score: {
|
|
11143
|
-
type: "number",
|
|
11144
|
-
description: "The score of the commit",
|
|
11145
|
-
},
|
|
11146
|
-
files: {
|
|
11147
|
-
type: "array",
|
|
11148
|
-
description: "A list of files that match the query",
|
|
11149
|
-
items: {
|
|
11150
|
-
type: "object",
|
|
11151
|
-
required: ["filename", "status", "patch"],
|
|
11152
|
-
properties: {
|
|
11153
|
-
filename: {
|
|
11154
|
-
type: "string",
|
|
11155
|
-
description: "The filename of the file",
|
|
11156
|
-
},
|
|
11157
|
-
status: {
|
|
11158
|
-
type: "string",
|
|
11159
|
-
description: "The status of the file",
|
|
11160
|
-
},
|
|
11161
|
-
patch: {
|
|
11162
|
-
type: "string",
|
|
11163
|
-
description: "The patch of the file",
|
|
11164
|
-
},
|
|
11165
|
-
},
|
|
11166
|
-
},
|
|
11167
|
-
},
|
|
11168
|
-
},
|
|
11169
|
-
},
|
|
11170
|
-
},
|
|
11171
|
-
},
|
|
11172
|
-
issuesAndPullRequests: {
|
|
11173
|
-
type: "array",
|
|
11174
|
-
description: "A list of issues and pull requests that match the query",
|
|
11175
|
-
items: {
|
|
11176
|
-
type: "object",
|
|
11177
|
-
required: ["title", "url", "state", "createdAt", "updatedAt", "user"],
|
|
11178
|
-
properties: {
|
|
11179
|
-
number: {
|
|
11180
|
-
type: "number",
|
|
11181
|
-
description: "The number of the issue or pull request",
|
|
11182
|
-
},
|
|
11183
|
-
title: {
|
|
11184
|
-
type: "string",
|
|
11185
|
-
description: "The title of the issue or pull request",
|
|
11186
|
-
},
|
|
11187
|
-
html_url: {
|
|
11188
|
-
type: "string",
|
|
11189
|
-
description: "The URL of the issue or pull request",
|
|
11190
|
-
},
|
|
11191
|
-
state: {
|
|
11192
|
-
type: "string",
|
|
11193
|
-
description: "The state of the issue or pull request",
|
|
11194
|
-
enum: ["open", "closed"],
|
|
11195
|
-
},
|
|
11196
|
-
isPullRequest: {
|
|
11197
|
-
type: "boolean",
|
|
11198
|
-
description: "Whether the issue or pull request is a pull request",
|
|
11199
|
-
},
|
|
11200
|
-
body: {
|
|
11201
|
-
type: "string",
|
|
11202
|
-
description: "The body of the issue or pull request",
|
|
11203
|
-
},
|
|
11204
|
-
score: {
|
|
11205
|
-
type: "number",
|
|
11206
|
-
description: "The score of the issue or pull request",
|
|
11207
|
-
},
|
|
11208
|
-
files: {
|
|
11209
|
-
type: "array",
|
|
11210
|
-
description: "A list of files that match the query",
|
|
11211
|
-
items: {
|
|
11212
|
-
type: "object",
|
|
11213
|
-
required: ["filename", "status"],
|
|
11214
|
-
properties: {
|
|
11215
|
-
filename: {
|
|
11216
|
-
type: "string",
|
|
11217
|
-
description: "The filename of the file",
|
|
11218
|
-
},
|
|
11219
|
-
status: {
|
|
11220
|
-
type: "string",
|
|
11221
|
-
description: "The status of the file",
|
|
11222
|
-
},
|
|
11223
|
-
patch: {
|
|
11224
|
-
type: "string",
|
|
11225
|
-
description: "The patch of the file",
|
|
11226
|
-
},
|
|
11227
|
-
},
|
|
11228
|
-
},
|
|
11229
|
-
},
|
|
11230
|
-
},
|
|
11231
|
-
},
|
|
11232
|
-
},
|
|
11233
|
-
},
|
|
11234
|
-
},
|
|
11235
|
-
name: "searchRepository",
|
|
11236
|
-
provider: "github",
|
|
11237
|
-
};
|
|
11238
10839
|
export const githubSearchOrganizationDefinition = {
|
|
11239
10840
|
description: "Search for code, issues and pull requests within a GitHub organization",
|
|
11240
10841
|
scopes: [],
|
|
@@ -12042,10 +11643,12 @@ export const gitlabSearchGroupDefinition = {
|
|
|
12042
11643
|
groupId: {
|
|
12043
11644
|
type: "string",
|
|
12044
11645
|
description: "The group ID of the project to search in",
|
|
11646
|
+
tags: ["recommend-predefined"],
|
|
12045
11647
|
},
|
|
12046
11648
|
project: {
|
|
12047
11649
|
type: "string",
|
|
12048
11650
|
description: "The name of the project to search in",
|
|
11651
|
+
tags: ["recommend-predefined"],
|
|
12049
11652
|
},
|
|
12050
11653
|
},
|
|
12051
11654
|
},
|
|
@@ -12324,6 +11927,7 @@ export const gitlabGetFileContentDefinition = {
|
|
|
12324
11927
|
project_id: {
|
|
12325
11928
|
type: "number",
|
|
12326
11929
|
description: "Numeric project ID in GitLab (unique per project)",
|
|
11930
|
+
tags: ["recommend-predefined"],
|
|
12327
11931
|
},
|
|
12328
11932
|
path: {
|
|
12329
11933
|
type: "string",
|
|
@@ -12403,6 +12007,7 @@ export const gitlabGetMergeRequestDefinition = {
|
|
|
12403
12007
|
project_id: {
|
|
12404
12008
|
type: "number",
|
|
12405
12009
|
description: "Numeric project ID in GitLab (unique per project). Either this or the project path is required.",
|
|
12010
|
+
tags: ["recommend-predefined"],
|
|
12406
12011
|
},
|
|
12407
12012
|
project_path: {
|
|
12408
12013
|
type: "string",
|
|
@@ -12625,10 +12230,12 @@ export const gitlabListDirectoryDefinition = {
|
|
|
12625
12230
|
group: {
|
|
12626
12231
|
type: "string",
|
|
12627
12232
|
description: 'The group or namespace that owns the project (e.g., "my-group" or "org/subgroup")',
|
|
12233
|
+
tags: ["recommend-predefined"],
|
|
12628
12234
|
},
|
|
12629
12235
|
project: {
|
|
12630
12236
|
type: "string",
|
|
12631
12237
|
description: 'The name of the GitLab project (e.g., "my-repo")',
|
|
12238
|
+
tags: ["recommend-predefined"],
|
|
12632
12239
|
},
|
|
12633
12240
|
path: {
|
|
12634
12241
|
type: "string",
|