@credal/actions 0.2.158 → 0.2.160

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.
@@ -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: getJiraIssuesByQuery,
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: "string",
1685
+ type: "object",
1686
+ description: "The issue assignee",
1686
1687
  nullable: true,
1687
- description: "Email of the assignee, if any",
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: "string",
1704
+ type: "object",
1705
+ description: "The issue reporter",
1691
1706
  nullable: true,
1692
- description: "Email of the reporter, if any",
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: "string",
1723
+ type: "object",
1724
+ description: "The issue creator",
1696
1725
  nullable: true,
1697
- description: "Email of the creator, if any",
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: "string",
2414
+ type: "object",
2415
+ description: "The issue assignee",
2373
2416
  nullable: true,
2374
- description: "Email of the assignee, if any",
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: "string",
2433
+ type: "object",
2434
+ description: "The issue reporter",
2378
2435
  nullable: true,
2379
- description: "Email of the reporter, if any",
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: "string",
2452
+ type: "object",
2453
+ description: "The issue creator",
2383
2454
  nullable: true,
2384
- description: "Email of the creator, if any",
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: "string",
3143
+ type: "object",
3144
+ description: "The issue assignee",
3060
3145
  nullable: true,
3061
- description: "Email of the assignee, if any",
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: "string",
3162
+ type: "object",
3163
+ description: "The issue reporter",
3065
3164
  nullable: true,
3066
- description: "Email of the reporter, if any",
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: "string",
3181
+ type: "object",
3182
+ description: "The issue creator",
3070
3183
  nullable: true,
3071
- description: "Email of the creator, if any",
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",
@@ -3439,6 +3565,10 @@ export const zendeskCreateZendeskTicketDefinition = {
3439
3565
  type: "string",
3440
3566
  description: "The subdomain of the Zendesk account",
3441
3567
  },
3568
+ groupId: {
3569
+ type: "number",
3570
+ description: "The ID of the group to assign the ticket to",
3571
+ },
3442
3572
  },
3443
3573
  },
3444
3574
  output: {