@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.
- package/dist/actions/actionMapper.js +2 -1
- package/dist/actions/autogen/templates.js +148 -18
- package/dist/actions/autogen/types.d.ts +390 -63
- package/dist/actions/autogen/types.js +82 -9
- 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/zendesk/createZendeskTicket.js +2 -1
- package/package.json +2 -1
|
@@ -1679,9 +1679,45 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1679
1679
|
category?: string | undefined;
|
|
1680
1680
|
id?: string | undefined;
|
|
1681
1681
|
}>;
|
|
1682
|
-
assignee: z.ZodOptional<z.ZodNullable<z.
|
|
1683
|
-
|
|
1684
|
-
|
|
1682
|
+
assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1683
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1684
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1686
|
+
}, "strip", z.ZodTypeAny, {
|
|
1687
|
+
name?: string | undefined;
|
|
1688
|
+
id?: string | undefined;
|
|
1689
|
+
email?: string | undefined;
|
|
1690
|
+
}, {
|
|
1691
|
+
name?: string | undefined;
|
|
1692
|
+
id?: string | undefined;
|
|
1693
|
+
email?: string | undefined;
|
|
1694
|
+
}>>>;
|
|
1695
|
+
reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1696
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
}, "strip", z.ZodTypeAny, {
|
|
1700
|
+
name?: string | undefined;
|
|
1701
|
+
id?: string | undefined;
|
|
1702
|
+
email?: string | undefined;
|
|
1703
|
+
}, {
|
|
1704
|
+
name?: string | undefined;
|
|
1705
|
+
id?: string | undefined;
|
|
1706
|
+
email?: string | undefined;
|
|
1707
|
+
}>>>;
|
|
1708
|
+
creator: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1709
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1710
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1711
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1712
|
+
}, "strip", z.ZodTypeAny, {
|
|
1713
|
+
name?: string | undefined;
|
|
1714
|
+
id?: string | undefined;
|
|
1715
|
+
email?: string | undefined;
|
|
1716
|
+
}, {
|
|
1717
|
+
name?: string | undefined;
|
|
1718
|
+
id?: string | undefined;
|
|
1719
|
+
email?: string | undefined;
|
|
1720
|
+
}>>>;
|
|
1685
1721
|
created: z.ZodString;
|
|
1686
1722
|
updated: z.ZodString;
|
|
1687
1723
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1708,9 +1744,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1708
1744
|
};
|
|
1709
1745
|
created: string;
|
|
1710
1746
|
updated: string;
|
|
1711
|
-
assignee?:
|
|
1712
|
-
|
|
1713
|
-
|
|
1747
|
+
assignee?: {
|
|
1748
|
+
name?: string | undefined;
|
|
1749
|
+
id?: string | undefined;
|
|
1750
|
+
email?: string | undefined;
|
|
1751
|
+
} | null | undefined;
|
|
1752
|
+
reporter?: {
|
|
1753
|
+
name?: string | undefined;
|
|
1754
|
+
id?: string | undefined;
|
|
1755
|
+
email?: string | undefined;
|
|
1756
|
+
} | null | undefined;
|
|
1757
|
+
creator?: {
|
|
1758
|
+
name?: string | undefined;
|
|
1759
|
+
id?: string | undefined;
|
|
1760
|
+
email?: string | undefined;
|
|
1761
|
+
} | null | undefined;
|
|
1714
1762
|
resolution?: string | null | undefined;
|
|
1715
1763
|
dueDate?: string | null | undefined;
|
|
1716
1764
|
}, {
|
|
@@ -1735,9 +1783,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1735
1783
|
};
|
|
1736
1784
|
created: string;
|
|
1737
1785
|
updated: string;
|
|
1738
|
-
assignee?:
|
|
1739
|
-
|
|
1740
|
-
|
|
1786
|
+
assignee?: {
|
|
1787
|
+
name?: string | undefined;
|
|
1788
|
+
id?: string | undefined;
|
|
1789
|
+
email?: string | undefined;
|
|
1790
|
+
} | null | undefined;
|
|
1791
|
+
reporter?: {
|
|
1792
|
+
name?: string | undefined;
|
|
1793
|
+
id?: string | undefined;
|
|
1794
|
+
email?: string | undefined;
|
|
1795
|
+
} | null | undefined;
|
|
1796
|
+
creator?: {
|
|
1797
|
+
name?: string | undefined;
|
|
1798
|
+
id?: string | undefined;
|
|
1799
|
+
email?: string | undefined;
|
|
1800
|
+
} | null | undefined;
|
|
1741
1801
|
resolution?: string | null | undefined;
|
|
1742
1802
|
dueDate?: string | null | undefined;
|
|
1743
1803
|
}>;
|
|
@@ -1766,9 +1826,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1766
1826
|
};
|
|
1767
1827
|
created: string;
|
|
1768
1828
|
updated: string;
|
|
1769
|
-
assignee?:
|
|
1770
|
-
|
|
1771
|
-
|
|
1829
|
+
assignee?: {
|
|
1830
|
+
name?: string | undefined;
|
|
1831
|
+
id?: string | undefined;
|
|
1832
|
+
email?: string | undefined;
|
|
1833
|
+
} | null | undefined;
|
|
1834
|
+
reporter?: {
|
|
1835
|
+
name?: string | undefined;
|
|
1836
|
+
id?: string | undefined;
|
|
1837
|
+
email?: string | undefined;
|
|
1838
|
+
} | null | undefined;
|
|
1839
|
+
creator?: {
|
|
1840
|
+
name?: string | undefined;
|
|
1841
|
+
id?: string | undefined;
|
|
1842
|
+
email?: string | undefined;
|
|
1843
|
+
} | null | undefined;
|
|
1772
1844
|
resolution?: string | null | undefined;
|
|
1773
1845
|
dueDate?: string | null | undefined;
|
|
1774
1846
|
};
|
|
@@ -1797,9 +1869,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1797
1869
|
};
|
|
1798
1870
|
created: string;
|
|
1799
1871
|
updated: string;
|
|
1800
|
-
assignee?:
|
|
1801
|
-
|
|
1802
|
-
|
|
1872
|
+
assignee?: {
|
|
1873
|
+
name?: string | undefined;
|
|
1874
|
+
id?: string | undefined;
|
|
1875
|
+
email?: string | undefined;
|
|
1876
|
+
} | null | undefined;
|
|
1877
|
+
reporter?: {
|
|
1878
|
+
name?: string | undefined;
|
|
1879
|
+
id?: string | undefined;
|
|
1880
|
+
email?: string | undefined;
|
|
1881
|
+
} | null | undefined;
|
|
1882
|
+
creator?: {
|
|
1883
|
+
name?: string | undefined;
|
|
1884
|
+
id?: string | undefined;
|
|
1885
|
+
email?: string | undefined;
|
|
1886
|
+
} | null | undefined;
|
|
1803
1887
|
resolution?: string | null | undefined;
|
|
1804
1888
|
dueDate?: string | null | undefined;
|
|
1805
1889
|
};
|
|
@@ -1832,9 +1916,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1832
1916
|
};
|
|
1833
1917
|
created: string;
|
|
1834
1918
|
updated: string;
|
|
1835
|
-
assignee?:
|
|
1836
|
-
|
|
1837
|
-
|
|
1919
|
+
assignee?: {
|
|
1920
|
+
name?: string | undefined;
|
|
1921
|
+
id?: string | undefined;
|
|
1922
|
+
email?: string | undefined;
|
|
1923
|
+
} | null | undefined;
|
|
1924
|
+
reporter?: {
|
|
1925
|
+
name?: string | undefined;
|
|
1926
|
+
id?: string | undefined;
|
|
1927
|
+
email?: string | undefined;
|
|
1928
|
+
} | null | undefined;
|
|
1929
|
+
creator?: {
|
|
1930
|
+
name?: string | undefined;
|
|
1931
|
+
id?: string | undefined;
|
|
1932
|
+
email?: string | undefined;
|
|
1933
|
+
} | null | undefined;
|
|
1838
1934
|
resolution?: string | null | undefined;
|
|
1839
1935
|
dueDate?: string | null | undefined;
|
|
1840
1936
|
};
|
|
@@ -1866,9 +1962,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1866
1962
|
};
|
|
1867
1963
|
created: string;
|
|
1868
1964
|
updated: string;
|
|
1869
|
-
assignee?:
|
|
1870
|
-
|
|
1871
|
-
|
|
1965
|
+
assignee?: {
|
|
1966
|
+
name?: string | undefined;
|
|
1967
|
+
id?: string | undefined;
|
|
1968
|
+
email?: string | undefined;
|
|
1969
|
+
} | null | undefined;
|
|
1970
|
+
reporter?: {
|
|
1971
|
+
name?: string | undefined;
|
|
1972
|
+
id?: string | undefined;
|
|
1973
|
+
email?: string | undefined;
|
|
1974
|
+
} | null | undefined;
|
|
1975
|
+
creator?: {
|
|
1976
|
+
name?: string | undefined;
|
|
1977
|
+
id?: string | undefined;
|
|
1978
|
+
email?: string | undefined;
|
|
1979
|
+
} | null | undefined;
|
|
1872
1980
|
resolution?: string | null | undefined;
|
|
1873
1981
|
dueDate?: string | null | undefined;
|
|
1874
1982
|
};
|
|
@@ -2362,9 +2470,45 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2362
2470
|
category?: string | undefined;
|
|
2363
2471
|
id?: string | undefined;
|
|
2364
2472
|
}>;
|
|
2365
|
-
assignee: z.ZodOptional<z.ZodNullable<z.
|
|
2366
|
-
|
|
2367
|
-
|
|
2473
|
+
assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2474
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2475
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2476
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2477
|
+
}, "strip", z.ZodTypeAny, {
|
|
2478
|
+
name?: string | undefined;
|
|
2479
|
+
id?: string | undefined;
|
|
2480
|
+
email?: string | undefined;
|
|
2481
|
+
}, {
|
|
2482
|
+
name?: string | undefined;
|
|
2483
|
+
id?: string | undefined;
|
|
2484
|
+
email?: string | undefined;
|
|
2485
|
+
}>>>;
|
|
2486
|
+
reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2487
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2489
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2490
|
+
}, "strip", z.ZodTypeAny, {
|
|
2491
|
+
name?: string | undefined;
|
|
2492
|
+
id?: string | undefined;
|
|
2493
|
+
email?: string | undefined;
|
|
2494
|
+
}, {
|
|
2495
|
+
name?: string | undefined;
|
|
2496
|
+
id?: string | undefined;
|
|
2497
|
+
email?: string | undefined;
|
|
2498
|
+
}>>>;
|
|
2499
|
+
creator: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2500
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2501
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2502
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2503
|
+
}, "strip", z.ZodTypeAny, {
|
|
2504
|
+
name?: string | undefined;
|
|
2505
|
+
id?: string | undefined;
|
|
2506
|
+
email?: string | undefined;
|
|
2507
|
+
}, {
|
|
2508
|
+
name?: string | undefined;
|
|
2509
|
+
id?: string | undefined;
|
|
2510
|
+
email?: string | undefined;
|
|
2511
|
+
}>>>;
|
|
2368
2512
|
created: z.ZodString;
|
|
2369
2513
|
updated: z.ZodString;
|
|
2370
2514
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2391,9 +2535,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2391
2535
|
};
|
|
2392
2536
|
created: string;
|
|
2393
2537
|
updated: string;
|
|
2394
|
-
assignee?:
|
|
2395
|
-
|
|
2396
|
-
|
|
2538
|
+
assignee?: {
|
|
2539
|
+
name?: string | undefined;
|
|
2540
|
+
id?: string | undefined;
|
|
2541
|
+
email?: string | undefined;
|
|
2542
|
+
} | null | undefined;
|
|
2543
|
+
reporter?: {
|
|
2544
|
+
name?: string | undefined;
|
|
2545
|
+
id?: string | undefined;
|
|
2546
|
+
email?: string | undefined;
|
|
2547
|
+
} | null | undefined;
|
|
2548
|
+
creator?: {
|
|
2549
|
+
name?: string | undefined;
|
|
2550
|
+
id?: string | undefined;
|
|
2551
|
+
email?: string | undefined;
|
|
2552
|
+
} | null | undefined;
|
|
2397
2553
|
resolution?: string | null | undefined;
|
|
2398
2554
|
dueDate?: string | null | undefined;
|
|
2399
2555
|
}, {
|
|
@@ -2418,9 +2574,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2418
2574
|
};
|
|
2419
2575
|
created: string;
|
|
2420
2576
|
updated: string;
|
|
2421
|
-
assignee?:
|
|
2422
|
-
|
|
2423
|
-
|
|
2577
|
+
assignee?: {
|
|
2578
|
+
name?: string | undefined;
|
|
2579
|
+
id?: string | undefined;
|
|
2580
|
+
email?: string | undefined;
|
|
2581
|
+
} | null | undefined;
|
|
2582
|
+
reporter?: {
|
|
2583
|
+
name?: string | undefined;
|
|
2584
|
+
id?: string | undefined;
|
|
2585
|
+
email?: string | undefined;
|
|
2586
|
+
} | null | undefined;
|
|
2587
|
+
creator?: {
|
|
2588
|
+
name?: string | undefined;
|
|
2589
|
+
id?: string | undefined;
|
|
2590
|
+
email?: string | undefined;
|
|
2591
|
+
} | null | undefined;
|
|
2424
2592
|
resolution?: string | null | undefined;
|
|
2425
2593
|
dueDate?: string | null | undefined;
|
|
2426
2594
|
}>;
|
|
@@ -2449,9 +2617,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2449
2617
|
};
|
|
2450
2618
|
created: string;
|
|
2451
2619
|
updated: string;
|
|
2452
|
-
assignee?:
|
|
2453
|
-
|
|
2454
|
-
|
|
2620
|
+
assignee?: {
|
|
2621
|
+
name?: string | undefined;
|
|
2622
|
+
id?: string | undefined;
|
|
2623
|
+
email?: string | undefined;
|
|
2624
|
+
} | null | undefined;
|
|
2625
|
+
reporter?: {
|
|
2626
|
+
name?: string | undefined;
|
|
2627
|
+
id?: string | undefined;
|
|
2628
|
+
email?: string | undefined;
|
|
2629
|
+
} | null | undefined;
|
|
2630
|
+
creator?: {
|
|
2631
|
+
name?: string | undefined;
|
|
2632
|
+
id?: string | undefined;
|
|
2633
|
+
email?: string | undefined;
|
|
2634
|
+
} | null | undefined;
|
|
2455
2635
|
resolution?: string | null | undefined;
|
|
2456
2636
|
dueDate?: string | null | undefined;
|
|
2457
2637
|
};
|
|
@@ -2480,9 +2660,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2480
2660
|
};
|
|
2481
2661
|
created: string;
|
|
2482
2662
|
updated: string;
|
|
2483
|
-
assignee?:
|
|
2484
|
-
|
|
2485
|
-
|
|
2663
|
+
assignee?: {
|
|
2664
|
+
name?: string | undefined;
|
|
2665
|
+
id?: string | undefined;
|
|
2666
|
+
email?: string | undefined;
|
|
2667
|
+
} | null | undefined;
|
|
2668
|
+
reporter?: {
|
|
2669
|
+
name?: string | undefined;
|
|
2670
|
+
id?: string | undefined;
|
|
2671
|
+
email?: string | undefined;
|
|
2672
|
+
} | null | undefined;
|
|
2673
|
+
creator?: {
|
|
2674
|
+
name?: string | undefined;
|
|
2675
|
+
id?: string | undefined;
|
|
2676
|
+
email?: string | undefined;
|
|
2677
|
+
} | null | undefined;
|
|
2486
2678
|
resolution?: string | null | undefined;
|
|
2487
2679
|
dueDate?: string | null | undefined;
|
|
2488
2680
|
};
|
|
@@ -2515,9 +2707,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2515
2707
|
};
|
|
2516
2708
|
created: string;
|
|
2517
2709
|
updated: string;
|
|
2518
|
-
assignee?:
|
|
2519
|
-
|
|
2520
|
-
|
|
2710
|
+
assignee?: {
|
|
2711
|
+
name?: string | undefined;
|
|
2712
|
+
id?: string | undefined;
|
|
2713
|
+
email?: string | undefined;
|
|
2714
|
+
} | null | undefined;
|
|
2715
|
+
reporter?: {
|
|
2716
|
+
name?: string | undefined;
|
|
2717
|
+
id?: string | undefined;
|
|
2718
|
+
email?: string | undefined;
|
|
2719
|
+
} | null | undefined;
|
|
2720
|
+
creator?: {
|
|
2721
|
+
name?: string | undefined;
|
|
2722
|
+
id?: string | undefined;
|
|
2723
|
+
email?: string | undefined;
|
|
2724
|
+
} | null | undefined;
|
|
2521
2725
|
resolution?: string | null | undefined;
|
|
2522
2726
|
dueDate?: string | null | undefined;
|
|
2523
2727
|
};
|
|
@@ -2549,9 +2753,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2549
2753
|
};
|
|
2550
2754
|
created: string;
|
|
2551
2755
|
updated: string;
|
|
2552
|
-
assignee?:
|
|
2553
|
-
|
|
2554
|
-
|
|
2756
|
+
assignee?: {
|
|
2757
|
+
name?: string | undefined;
|
|
2758
|
+
id?: string | undefined;
|
|
2759
|
+
email?: string | undefined;
|
|
2760
|
+
} | null | undefined;
|
|
2761
|
+
reporter?: {
|
|
2762
|
+
name?: string | undefined;
|
|
2763
|
+
id?: string | undefined;
|
|
2764
|
+
email?: string | undefined;
|
|
2765
|
+
} | null | undefined;
|
|
2766
|
+
creator?: {
|
|
2767
|
+
name?: string | undefined;
|
|
2768
|
+
id?: string | undefined;
|
|
2769
|
+
email?: string | undefined;
|
|
2770
|
+
} | null | undefined;
|
|
2555
2771
|
resolution?: string | null | undefined;
|
|
2556
2772
|
dueDate?: string | null | undefined;
|
|
2557
2773
|
};
|
|
@@ -3045,9 +3261,45 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3045
3261
|
category?: string | undefined;
|
|
3046
3262
|
id?: string | undefined;
|
|
3047
3263
|
}>;
|
|
3048
|
-
assignee: z.ZodOptional<z.ZodNullable<z.
|
|
3049
|
-
|
|
3050
|
-
|
|
3264
|
+
assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3265
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3266
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3267
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3268
|
+
}, "strip", z.ZodTypeAny, {
|
|
3269
|
+
name?: string | undefined;
|
|
3270
|
+
id?: string | undefined;
|
|
3271
|
+
email?: string | undefined;
|
|
3272
|
+
}, {
|
|
3273
|
+
name?: string | undefined;
|
|
3274
|
+
id?: string | undefined;
|
|
3275
|
+
email?: string | undefined;
|
|
3276
|
+
}>>>;
|
|
3277
|
+
reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3278
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3279
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3280
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3281
|
+
}, "strip", z.ZodTypeAny, {
|
|
3282
|
+
name?: string | undefined;
|
|
3283
|
+
id?: string | undefined;
|
|
3284
|
+
email?: string | undefined;
|
|
3285
|
+
}, {
|
|
3286
|
+
name?: string | undefined;
|
|
3287
|
+
id?: string | undefined;
|
|
3288
|
+
email?: string | undefined;
|
|
3289
|
+
}>>>;
|
|
3290
|
+
creator: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3291
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3292
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3293
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3294
|
+
}, "strip", z.ZodTypeAny, {
|
|
3295
|
+
name?: string | undefined;
|
|
3296
|
+
id?: string | undefined;
|
|
3297
|
+
email?: string | undefined;
|
|
3298
|
+
}, {
|
|
3299
|
+
name?: string | undefined;
|
|
3300
|
+
id?: string | undefined;
|
|
3301
|
+
email?: string | undefined;
|
|
3302
|
+
}>>>;
|
|
3051
3303
|
created: z.ZodString;
|
|
3052
3304
|
updated: z.ZodString;
|
|
3053
3305
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3074,9 +3326,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3074
3326
|
};
|
|
3075
3327
|
created: string;
|
|
3076
3328
|
updated: string;
|
|
3077
|
-
assignee?:
|
|
3078
|
-
|
|
3079
|
-
|
|
3329
|
+
assignee?: {
|
|
3330
|
+
name?: string | undefined;
|
|
3331
|
+
id?: string | undefined;
|
|
3332
|
+
email?: string | undefined;
|
|
3333
|
+
} | null | undefined;
|
|
3334
|
+
reporter?: {
|
|
3335
|
+
name?: string | undefined;
|
|
3336
|
+
id?: string | undefined;
|
|
3337
|
+
email?: string | undefined;
|
|
3338
|
+
} | null | undefined;
|
|
3339
|
+
creator?: {
|
|
3340
|
+
name?: string | undefined;
|
|
3341
|
+
id?: string | undefined;
|
|
3342
|
+
email?: string | undefined;
|
|
3343
|
+
} | null | undefined;
|
|
3080
3344
|
resolution?: string | null | undefined;
|
|
3081
3345
|
dueDate?: string | null | undefined;
|
|
3082
3346
|
}, {
|
|
@@ -3101,9 +3365,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3101
3365
|
};
|
|
3102
3366
|
created: string;
|
|
3103
3367
|
updated: string;
|
|
3104
|
-
assignee?:
|
|
3105
|
-
|
|
3106
|
-
|
|
3368
|
+
assignee?: {
|
|
3369
|
+
name?: string | undefined;
|
|
3370
|
+
id?: string | undefined;
|
|
3371
|
+
email?: string | undefined;
|
|
3372
|
+
} | null | undefined;
|
|
3373
|
+
reporter?: {
|
|
3374
|
+
name?: string | undefined;
|
|
3375
|
+
id?: string | undefined;
|
|
3376
|
+
email?: string | undefined;
|
|
3377
|
+
} | null | undefined;
|
|
3378
|
+
creator?: {
|
|
3379
|
+
name?: string | undefined;
|
|
3380
|
+
id?: string | undefined;
|
|
3381
|
+
email?: string | undefined;
|
|
3382
|
+
} | null | undefined;
|
|
3107
3383
|
resolution?: string | null | undefined;
|
|
3108
3384
|
dueDate?: string | null | undefined;
|
|
3109
3385
|
}>;
|
|
@@ -3132,9 +3408,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3132
3408
|
};
|
|
3133
3409
|
created: string;
|
|
3134
3410
|
updated: string;
|
|
3135
|
-
assignee?:
|
|
3136
|
-
|
|
3137
|
-
|
|
3411
|
+
assignee?: {
|
|
3412
|
+
name?: string | undefined;
|
|
3413
|
+
id?: string | undefined;
|
|
3414
|
+
email?: string | undefined;
|
|
3415
|
+
} | null | undefined;
|
|
3416
|
+
reporter?: {
|
|
3417
|
+
name?: string | undefined;
|
|
3418
|
+
id?: string | undefined;
|
|
3419
|
+
email?: string | undefined;
|
|
3420
|
+
} | null | undefined;
|
|
3421
|
+
creator?: {
|
|
3422
|
+
name?: string | undefined;
|
|
3423
|
+
id?: string | undefined;
|
|
3424
|
+
email?: string | undefined;
|
|
3425
|
+
} | null | undefined;
|
|
3138
3426
|
resolution?: string | null | undefined;
|
|
3139
3427
|
dueDate?: string | null | undefined;
|
|
3140
3428
|
};
|
|
@@ -3163,9 +3451,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3163
3451
|
};
|
|
3164
3452
|
created: string;
|
|
3165
3453
|
updated: string;
|
|
3166
|
-
assignee?:
|
|
3167
|
-
|
|
3168
|
-
|
|
3454
|
+
assignee?: {
|
|
3455
|
+
name?: string | undefined;
|
|
3456
|
+
id?: string | undefined;
|
|
3457
|
+
email?: string | undefined;
|
|
3458
|
+
} | null | undefined;
|
|
3459
|
+
reporter?: {
|
|
3460
|
+
name?: string | undefined;
|
|
3461
|
+
id?: string | undefined;
|
|
3462
|
+
email?: string | undefined;
|
|
3463
|
+
} | null | undefined;
|
|
3464
|
+
creator?: {
|
|
3465
|
+
name?: string | undefined;
|
|
3466
|
+
id?: string | undefined;
|
|
3467
|
+
email?: string | undefined;
|
|
3468
|
+
} | null | undefined;
|
|
3169
3469
|
resolution?: string | null | undefined;
|
|
3170
3470
|
dueDate?: string | null | undefined;
|
|
3171
3471
|
};
|
|
@@ -3198,9 +3498,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3198
3498
|
};
|
|
3199
3499
|
created: string;
|
|
3200
3500
|
updated: string;
|
|
3201
|
-
assignee?:
|
|
3202
|
-
|
|
3203
|
-
|
|
3501
|
+
assignee?: {
|
|
3502
|
+
name?: string | undefined;
|
|
3503
|
+
id?: string | undefined;
|
|
3504
|
+
email?: string | undefined;
|
|
3505
|
+
} | null | undefined;
|
|
3506
|
+
reporter?: {
|
|
3507
|
+
name?: string | undefined;
|
|
3508
|
+
id?: string | undefined;
|
|
3509
|
+
email?: string | undefined;
|
|
3510
|
+
} | null | undefined;
|
|
3511
|
+
creator?: {
|
|
3512
|
+
name?: string | undefined;
|
|
3513
|
+
id?: string | undefined;
|
|
3514
|
+
email?: string | undefined;
|
|
3515
|
+
} | null | undefined;
|
|
3204
3516
|
resolution?: string | null | undefined;
|
|
3205
3517
|
dueDate?: string | null | undefined;
|
|
3206
3518
|
};
|
|
@@ -3232,9 +3544,21 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3232
3544
|
};
|
|
3233
3545
|
created: string;
|
|
3234
3546
|
updated: string;
|
|
3235
|
-
assignee?:
|
|
3236
|
-
|
|
3237
|
-
|
|
3547
|
+
assignee?: {
|
|
3548
|
+
name?: string | undefined;
|
|
3549
|
+
id?: string | undefined;
|
|
3550
|
+
email?: string | undefined;
|
|
3551
|
+
} | null | undefined;
|
|
3552
|
+
reporter?: {
|
|
3553
|
+
name?: string | undefined;
|
|
3554
|
+
id?: string | undefined;
|
|
3555
|
+
email?: string | undefined;
|
|
3556
|
+
} | null | undefined;
|
|
3557
|
+
creator?: {
|
|
3558
|
+
name?: string | undefined;
|
|
3559
|
+
id?: string | undefined;
|
|
3560
|
+
email?: string | undefined;
|
|
3561
|
+
} | null | undefined;
|
|
3238
3562
|
resolution?: string | null | undefined;
|
|
3239
3563
|
dueDate?: string | null | undefined;
|
|
3240
3564
|
};
|
|
@@ -3597,14 +3921,17 @@ export declare const zendeskCreateZendeskTicketParamsSchema: z.ZodObject<{
|
|
|
3597
3921
|
subject: z.ZodString;
|
|
3598
3922
|
body: z.ZodOptional<z.ZodString>;
|
|
3599
3923
|
subdomain: z.ZodString;
|
|
3924
|
+
groupId: z.ZodOptional<z.ZodNumber>;
|
|
3600
3925
|
}, "strip", z.ZodTypeAny, {
|
|
3601
3926
|
subdomain: string;
|
|
3602
3927
|
subject: string;
|
|
3603
3928
|
body?: string | undefined;
|
|
3929
|
+
groupId?: number | undefined;
|
|
3604
3930
|
}, {
|
|
3605
3931
|
subdomain: string;
|
|
3606
3932
|
subject: string;
|
|
3607
3933
|
body?: string | undefined;
|
|
3934
|
+
groupId?: number | undefined;
|
|
3608
3935
|
}>;
|
|
3609
3936
|
export type zendeskCreateZendeskTicketParamsType = z.infer<typeof zendeskCreateZendeskTicketParamsSchema>;
|
|
3610
3937
|
export declare const zendeskCreateZendeskTicketOutputSchema: z.ZodObject<{
|