@credal/actions 0.2.74 → 0.2.76
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 +198 -14
- package/dist/actions/autogen/types.d.ts +492 -64
- package/dist/actions/autogen/types.js +56 -2
- package/dist/actions/providers/google-oauth/utils/decodeMessage.d.ts +12 -12
- package/dist/actions/providers/google-oauth/utils/decodeMessage.js +47 -31
- package/dist/actions/providers/googlemail/searchGmailMessages.js +45 -26
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +45 -1
- package/package.json +4 -1
|
@@ -1291,13 +1291,105 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
1291
1291
|
description: "Whether the records were successfully retrieved",
|
|
1292
1292
|
},
|
|
1293
1293
|
records: {
|
|
1294
|
-
type: "
|
|
1295
|
-
description: "The
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1294
|
+
type: "object",
|
|
1295
|
+
description: "The result object containing issues",
|
|
1296
|
+
properties: {
|
|
1297
|
+
issues: {
|
|
1298
|
+
type: "array",
|
|
1299
|
+
description: "The retrieved Jira issues",
|
|
1300
|
+
items: {
|
|
1301
|
+
type: "object",
|
|
1302
|
+
required: ["id", "key", "summary", "description", "project", "issueType", "status", "created", "updated"],
|
|
1303
|
+
properties: {
|
|
1304
|
+
id: {
|
|
1305
|
+
type: "string",
|
|
1306
|
+
description: "Internal Jira issue ID",
|
|
1307
|
+
},
|
|
1308
|
+
key: {
|
|
1309
|
+
type: "string",
|
|
1310
|
+
description: "Human-readable issue key (e.g. SSPR-123)",
|
|
1311
|
+
},
|
|
1312
|
+
summary: {
|
|
1313
|
+
type: "string",
|
|
1314
|
+
description: "Summary of the issue",
|
|
1315
|
+
},
|
|
1316
|
+
description: {
|
|
1317
|
+
type: "string",
|
|
1318
|
+
description: "Plain text description",
|
|
1319
|
+
},
|
|
1320
|
+
project: {
|
|
1321
|
+
type: "object",
|
|
1322
|
+
properties: {
|
|
1323
|
+
id: {
|
|
1324
|
+
type: "string",
|
|
1325
|
+
},
|
|
1326
|
+
key: {
|
|
1327
|
+
type: "string",
|
|
1328
|
+
},
|
|
1329
|
+
name: {
|
|
1330
|
+
type: "string",
|
|
1331
|
+
},
|
|
1332
|
+
},
|
|
1333
|
+
},
|
|
1334
|
+
issueType: {
|
|
1335
|
+
type: "object",
|
|
1336
|
+
properties: {
|
|
1337
|
+
id: {
|
|
1338
|
+
type: "string",
|
|
1339
|
+
},
|
|
1340
|
+
name: {
|
|
1341
|
+
type: "string",
|
|
1342
|
+
},
|
|
1343
|
+
},
|
|
1344
|
+
},
|
|
1345
|
+
status: {
|
|
1346
|
+
type: "object",
|
|
1347
|
+
properties: {
|
|
1348
|
+
id: {
|
|
1349
|
+
type: "string",
|
|
1350
|
+
},
|
|
1351
|
+
name: {
|
|
1352
|
+
type: "string",
|
|
1353
|
+
},
|
|
1354
|
+
category: {
|
|
1355
|
+
type: "string",
|
|
1356
|
+
},
|
|
1357
|
+
},
|
|
1358
|
+
},
|
|
1359
|
+
assignee: {
|
|
1360
|
+
type: "string",
|
|
1361
|
+
nullable: true,
|
|
1362
|
+
description: "Email of the assignee, if any",
|
|
1363
|
+
},
|
|
1364
|
+
reporter: {
|
|
1365
|
+
type: "string",
|
|
1366
|
+
nullable: true,
|
|
1367
|
+
description: "Email of the reporter, if any",
|
|
1368
|
+
},
|
|
1369
|
+
creator: {
|
|
1370
|
+
type: "string",
|
|
1371
|
+
nullable: true,
|
|
1372
|
+
description: "Email of the creator, if any",
|
|
1373
|
+
},
|
|
1374
|
+
created: {
|
|
1375
|
+
type: "string",
|
|
1376
|
+
format: "date-time",
|
|
1377
|
+
},
|
|
1378
|
+
updated: {
|
|
1379
|
+
type: "string",
|
|
1380
|
+
format: "date-time",
|
|
1381
|
+
},
|
|
1382
|
+
resolution: {
|
|
1383
|
+
type: "string",
|
|
1384
|
+
nullable: true,
|
|
1385
|
+
},
|
|
1386
|
+
dueDate: {
|
|
1387
|
+
type: "string",
|
|
1388
|
+
nullable: true,
|
|
1389
|
+
format: "date",
|
|
1390
|
+
},
|
|
1391
|
+
},
|
|
1392
|
+
},
|
|
1301
1393
|
},
|
|
1302
1394
|
},
|
|
1303
1395
|
},
|
|
@@ -1825,13 +1917,105 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
1825
1917
|
description: "Whether the records were successfully retrieved",
|
|
1826
1918
|
},
|
|
1827
1919
|
records: {
|
|
1828
|
-
type: "
|
|
1829
|
-
description: "The
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1920
|
+
type: "object",
|
|
1921
|
+
description: "The result object containing issues",
|
|
1922
|
+
properties: {
|
|
1923
|
+
issues: {
|
|
1924
|
+
type: "array",
|
|
1925
|
+
description: "The retrieved Jira issues",
|
|
1926
|
+
items: {
|
|
1927
|
+
type: "object",
|
|
1928
|
+
required: ["id", "key", "summary", "description", "project", "issueType", "status", "created", "updated"],
|
|
1929
|
+
properties: {
|
|
1930
|
+
id: {
|
|
1931
|
+
type: "string",
|
|
1932
|
+
description: "Internal Jira issue ID",
|
|
1933
|
+
},
|
|
1934
|
+
key: {
|
|
1935
|
+
type: "string",
|
|
1936
|
+
description: "Human-readable issue key (e.g. SSPR-123)",
|
|
1937
|
+
},
|
|
1938
|
+
summary: {
|
|
1939
|
+
type: "string",
|
|
1940
|
+
description: "Summary of the issue",
|
|
1941
|
+
},
|
|
1942
|
+
description: {
|
|
1943
|
+
type: "string",
|
|
1944
|
+
description: "Plain text description",
|
|
1945
|
+
},
|
|
1946
|
+
project: {
|
|
1947
|
+
type: "object",
|
|
1948
|
+
properties: {
|
|
1949
|
+
id: {
|
|
1950
|
+
type: "string",
|
|
1951
|
+
},
|
|
1952
|
+
key: {
|
|
1953
|
+
type: "string",
|
|
1954
|
+
},
|
|
1955
|
+
name: {
|
|
1956
|
+
type: "string",
|
|
1957
|
+
},
|
|
1958
|
+
},
|
|
1959
|
+
},
|
|
1960
|
+
issueType: {
|
|
1961
|
+
type: "object",
|
|
1962
|
+
properties: {
|
|
1963
|
+
id: {
|
|
1964
|
+
type: "string",
|
|
1965
|
+
},
|
|
1966
|
+
name: {
|
|
1967
|
+
type: "string",
|
|
1968
|
+
},
|
|
1969
|
+
},
|
|
1970
|
+
},
|
|
1971
|
+
status: {
|
|
1972
|
+
type: "object",
|
|
1973
|
+
properties: {
|
|
1974
|
+
id: {
|
|
1975
|
+
type: "string",
|
|
1976
|
+
},
|
|
1977
|
+
name: {
|
|
1978
|
+
type: "string",
|
|
1979
|
+
},
|
|
1980
|
+
category: {
|
|
1981
|
+
type: "string",
|
|
1982
|
+
},
|
|
1983
|
+
},
|
|
1984
|
+
},
|
|
1985
|
+
assignee: {
|
|
1986
|
+
type: "string",
|
|
1987
|
+
nullable: true,
|
|
1988
|
+
description: "Email of the assignee, if any",
|
|
1989
|
+
},
|
|
1990
|
+
reporter: {
|
|
1991
|
+
type: "string",
|
|
1992
|
+
nullable: true,
|
|
1993
|
+
description: "Email of the reporter, if any",
|
|
1994
|
+
},
|
|
1995
|
+
creator: {
|
|
1996
|
+
type: "string",
|
|
1997
|
+
nullable: true,
|
|
1998
|
+
description: "Email of the creator, if any",
|
|
1999
|
+
},
|
|
2000
|
+
created: {
|
|
2001
|
+
type: "string",
|
|
2002
|
+
format: "date-time",
|
|
2003
|
+
},
|
|
2004
|
+
updated: {
|
|
2005
|
+
type: "string",
|
|
2006
|
+
format: "date-time",
|
|
2007
|
+
},
|
|
2008
|
+
resolution: {
|
|
2009
|
+
type: "string",
|
|
2010
|
+
nullable: true,
|
|
2011
|
+
},
|
|
2012
|
+
dueDate: {
|
|
2013
|
+
type: "string",
|
|
2014
|
+
nullable: true,
|
|
2015
|
+
format: "date",
|
|
2016
|
+
},
|
|
2017
|
+
},
|
|
2018
|
+
},
|
|
1835
2019
|
},
|
|
1836
2020
|
},
|
|
1837
2021
|
},
|