@credal/actions 0.2.158 → 0.2.159
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 +2 -1
- package/dist/actions/autogen/templates.js +144 -18
- package/dist/actions/autogen/types.d.ts +387 -63
- package/dist/actions/autogen/types.js +81 -9
- package/dist/actions/groups.js +3 -44
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.d.ts +8 -0
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.js +139 -0
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +78 -78
- package/dist/actions/providers/jira/utils.d.ts +19 -0
- package/dist/actions/providers/jira/utils.js +51 -0
- package/dist/actions/providers/slack/archiveChannel.js +2 -9
- package/package.json +2 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +0 -3
- package/dist/actions/providers/confluence/updatePage.js +0 -47
- package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
- package/dist/actions/providers/credal/callCopilot.js +0 -36
- package/dist/actions/providers/jamf/types.d.ts +0 -8
- package/dist/actions/providers/jamf/types.js +0 -7
- package/dist/actions/providers/math/index.d.ts +0 -1
- package/dist/actions/providers/math/index.js +0 -37
- 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
|
@@ -78,6 +78,7 @@ import fetchSalesforceSchemaByObject from "./providers/salesforce/fetchSalesforc
|
|
|
78
78
|
import deepResearch from "./providers/firecrawl/deepResearch.js";
|
|
79
79
|
import listPullRequests from "./providers/github/listPullRequests.js";
|
|
80
80
|
import getJiraIssuesByQuery from "./providers/jira/getJiraIssuesByQuery.js";
|
|
81
|
+
import getJiraDCIssuesByQuery from "./providers/jira/getJiraDCIssuesByQuery.js";
|
|
81
82
|
import createRecord from "./providers/salesforce/createRecord.js";
|
|
82
83
|
import getTopNSearchResultUrls from "./providers/bing/getTopNSearchResultUrls.js";
|
|
83
84
|
import getGongTranscripts from "./providers/gong/getGongTranscripts.js";
|
|
@@ -415,7 +416,7 @@ export const ActionMapper = {
|
|
|
415
416
|
jiraDataCenter: {
|
|
416
417
|
// Exclude Service Desk: getServiceDesks, createServiceDeskRequest, publicCommentOnServiceDeskRequest
|
|
417
418
|
getJiraIssuesByQuery: {
|
|
418
|
-
fn:
|
|
419
|
+
fn: getJiraDCIssuesByQuery,
|
|
419
420
|
paramsSchema: jiraGetJiraIssuesByQueryParamsSchema,
|
|
420
421
|
outputSchema: jiraGetJiraIssuesByQueryOutputSchema,
|
|
421
422
|
},
|
|
@@ -1682,19 +1682,61 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
1682
1682
|
},
|
|
1683
1683
|
},
|
|
1684
1684
|
assignee: {
|
|
1685
|
-
type: "
|
|
1685
|
+
type: "object",
|
|
1686
|
+
description: "The issue assignee",
|
|
1686
1687
|
nullable: true,
|
|
1687
|
-
|
|
1688
|
+
properties: {
|
|
1689
|
+
id: {
|
|
1690
|
+
type: "string",
|
|
1691
|
+
description: "The assignee ID",
|
|
1692
|
+
},
|
|
1693
|
+
name: {
|
|
1694
|
+
type: "string",
|
|
1695
|
+
description: "The assignee name",
|
|
1696
|
+
},
|
|
1697
|
+
email: {
|
|
1698
|
+
type: "string",
|
|
1699
|
+
description: "The assignee email",
|
|
1700
|
+
},
|
|
1701
|
+
},
|
|
1688
1702
|
},
|
|
1689
1703
|
reporter: {
|
|
1690
|
-
type: "
|
|
1704
|
+
type: "object",
|
|
1705
|
+
description: "The issue reporter",
|
|
1691
1706
|
nullable: true,
|
|
1692
|
-
|
|
1707
|
+
properties: {
|
|
1708
|
+
id: {
|
|
1709
|
+
type: "string",
|
|
1710
|
+
description: "The reporter ID",
|
|
1711
|
+
},
|
|
1712
|
+
name: {
|
|
1713
|
+
type: "string",
|
|
1714
|
+
description: "The reporter name",
|
|
1715
|
+
},
|
|
1716
|
+
email: {
|
|
1717
|
+
type: "string",
|
|
1718
|
+
description: "The reporter email",
|
|
1719
|
+
},
|
|
1720
|
+
},
|
|
1693
1721
|
},
|
|
1694
1722
|
creator: {
|
|
1695
|
-
type: "
|
|
1723
|
+
type: "object",
|
|
1724
|
+
description: "The issue creator",
|
|
1696
1725
|
nullable: true,
|
|
1697
|
-
|
|
1726
|
+
properties: {
|
|
1727
|
+
id: {
|
|
1728
|
+
type: "string",
|
|
1729
|
+
description: "The creator ID",
|
|
1730
|
+
},
|
|
1731
|
+
name: {
|
|
1732
|
+
type: "string",
|
|
1733
|
+
description: "The creator name",
|
|
1734
|
+
},
|
|
1735
|
+
email: {
|
|
1736
|
+
type: "string",
|
|
1737
|
+
description: "The creator email",
|
|
1738
|
+
},
|
|
1739
|
+
},
|
|
1698
1740
|
},
|
|
1699
1741
|
created: {
|
|
1700
1742
|
type: "string",
|
|
@@ -2369,19 +2411,61 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
2369
2411
|
},
|
|
2370
2412
|
},
|
|
2371
2413
|
assignee: {
|
|
2372
|
-
type: "
|
|
2414
|
+
type: "object",
|
|
2415
|
+
description: "The issue assignee",
|
|
2373
2416
|
nullable: true,
|
|
2374
|
-
|
|
2417
|
+
properties: {
|
|
2418
|
+
id: {
|
|
2419
|
+
type: "string",
|
|
2420
|
+
description: "The assignee ID",
|
|
2421
|
+
},
|
|
2422
|
+
name: {
|
|
2423
|
+
type: "string",
|
|
2424
|
+
description: "The assignee name",
|
|
2425
|
+
},
|
|
2426
|
+
email: {
|
|
2427
|
+
type: "string",
|
|
2428
|
+
description: "The assignee email",
|
|
2429
|
+
},
|
|
2430
|
+
},
|
|
2375
2431
|
},
|
|
2376
2432
|
reporter: {
|
|
2377
|
-
type: "
|
|
2433
|
+
type: "object",
|
|
2434
|
+
description: "The issue reporter",
|
|
2378
2435
|
nullable: true,
|
|
2379
|
-
|
|
2436
|
+
properties: {
|
|
2437
|
+
id: {
|
|
2438
|
+
type: "string",
|
|
2439
|
+
description: "The reporter ID",
|
|
2440
|
+
},
|
|
2441
|
+
name: {
|
|
2442
|
+
type: "string",
|
|
2443
|
+
description: "The reporter name",
|
|
2444
|
+
},
|
|
2445
|
+
email: {
|
|
2446
|
+
type: "string",
|
|
2447
|
+
description: "The reporter email",
|
|
2448
|
+
},
|
|
2449
|
+
},
|
|
2380
2450
|
},
|
|
2381
2451
|
creator: {
|
|
2382
|
-
type: "
|
|
2452
|
+
type: "object",
|
|
2453
|
+
description: "The issue creator",
|
|
2383
2454
|
nullable: true,
|
|
2384
|
-
|
|
2455
|
+
properties: {
|
|
2456
|
+
id: {
|
|
2457
|
+
type: "string",
|
|
2458
|
+
description: "The creator ID",
|
|
2459
|
+
},
|
|
2460
|
+
name: {
|
|
2461
|
+
type: "string",
|
|
2462
|
+
description: "The creator name",
|
|
2463
|
+
},
|
|
2464
|
+
email: {
|
|
2465
|
+
type: "string",
|
|
2466
|
+
description: "The creator email",
|
|
2467
|
+
},
|
|
2468
|
+
},
|
|
2385
2469
|
},
|
|
2386
2470
|
created: {
|
|
2387
2471
|
type: "string",
|
|
@@ -3056,19 +3140,61 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3056
3140
|
},
|
|
3057
3141
|
},
|
|
3058
3142
|
assignee: {
|
|
3059
|
-
type: "
|
|
3143
|
+
type: "object",
|
|
3144
|
+
description: "The issue assignee",
|
|
3060
3145
|
nullable: true,
|
|
3061
|
-
|
|
3146
|
+
properties: {
|
|
3147
|
+
id: {
|
|
3148
|
+
type: "string",
|
|
3149
|
+
description: "The assignee ID",
|
|
3150
|
+
},
|
|
3151
|
+
name: {
|
|
3152
|
+
type: "string",
|
|
3153
|
+
description: "The assignee name",
|
|
3154
|
+
},
|
|
3155
|
+
email: {
|
|
3156
|
+
type: "string",
|
|
3157
|
+
description: "The assignee email",
|
|
3158
|
+
},
|
|
3159
|
+
},
|
|
3062
3160
|
},
|
|
3063
3161
|
reporter: {
|
|
3064
|
-
type: "
|
|
3162
|
+
type: "object",
|
|
3163
|
+
description: "The issue reporter",
|
|
3065
3164
|
nullable: true,
|
|
3066
|
-
|
|
3165
|
+
properties: {
|
|
3166
|
+
id: {
|
|
3167
|
+
type: "string",
|
|
3168
|
+
description: "The reporter ID",
|
|
3169
|
+
},
|
|
3170
|
+
name: {
|
|
3171
|
+
type: "string",
|
|
3172
|
+
description: "The reporter name",
|
|
3173
|
+
},
|
|
3174
|
+
email: {
|
|
3175
|
+
type: "string",
|
|
3176
|
+
description: "The reporter email",
|
|
3177
|
+
},
|
|
3178
|
+
},
|
|
3067
3179
|
},
|
|
3068
3180
|
creator: {
|
|
3069
|
-
type: "
|
|
3181
|
+
type: "object",
|
|
3182
|
+
description: "The issue creator",
|
|
3070
3183
|
nullable: true,
|
|
3071
|
-
|
|
3184
|
+
properties: {
|
|
3185
|
+
id: {
|
|
3186
|
+
type: "string",
|
|
3187
|
+
description: "The creator ID",
|
|
3188
|
+
},
|
|
3189
|
+
name: {
|
|
3190
|
+
type: "string",
|
|
3191
|
+
description: "The creator name",
|
|
3192
|
+
},
|
|
3193
|
+
email: {
|
|
3194
|
+
type: "string",
|
|
3195
|
+
description: "The creator email",
|
|
3196
|
+
},
|
|
3197
|
+
},
|
|
3072
3198
|
},
|
|
3073
3199
|
created: {
|
|
3074
3200
|
type: "string",
|