@credal/actions 0.2.126 → 0.2.128

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.
Files changed (41) hide show
  1. package/dist/actions/autogen/templates.js +903 -581
  2. package/dist/actions/autogen/types.d.ts +860 -944
  3. package/dist/actions/autogen/types.js +362 -212
  4. package/dist/actions/providers/firecrawl/scrapeUrl.js +11 -4
  5. package/dist/actions/providers/github/getFileContent.js +13 -5
  6. package/dist/actions/providers/github/listDirectory.js +12 -11
  7. package/dist/actions/providers/github/listPullRequests.js +58 -30
  8. package/dist/actions/providers/github/searchOrganization.d.ts +1 -1
  9. package/dist/actions/providers/github/searchOrganization.js +26 -4
  10. package/dist/actions/providers/gitlab/getFileContent.js +15 -6
  11. package/dist/actions/providers/gitlab/listDirectory.js +10 -6
  12. package/dist/actions/providers/gitlab/searchGroup.js +84 -55
  13. package/dist/actions/providers/google-oauth/getDriveFileContentById.js +10 -1
  14. package/dist/actions/providers/google-oauth/searchDriveByKeywordsAndGetFileContent.js +12 -4
  15. package/dist/actions/providers/google-oauth/searchDriveByQueryAndGetFileContent.js +2 -1
  16. package/dist/actions/providers/jira/createJiraTicket.js +11 -3
  17. package/dist/actions/providers/jira/getJiraIssuesByQuery.js +9 -7
  18. package/dist/actions/providers/jira/getJiraTicketDetails.js +8 -1
  19. package/dist/actions/providers/jira/updateJiraTicketDetails.js +11 -2
  20. package/dist/actions/providers/jira/updateServiceDeskRequest.d.ts +3 -0
  21. package/dist/actions/providers/jira/updateServiceDeskRequest.js +72 -0
  22. package/dist/actions/providers/jira/utils.d.ts +1 -0
  23. package/dist/actions/providers/jira/utils.js +40 -0
  24. package/dist/actions/providers/salesforce/getSalesforceRecordsByQuery.js +10 -3
  25. package/dist/actions/providers/salesforce/searchSalesforceRecords.js +9 -7
  26. package/dist/actions/providers/slackUser/searchSlack.js +8 -1
  27. package/package.json +1 -1
  28. package/dist/actions/groups.d.ts +0 -6
  29. package/dist/actions/groups.js +0 -248
  30. package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
  31. package/dist/actions/providers/credal/callCopilot.js +0 -36
  32. package/dist/actions/providers/math/index.d.ts +0 -1
  33. package/dist/actions/providers/math/index.js +0 -37
  34. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
  35. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
  36. package/dist/actions/providers/slack/archiveChannel.d.ts +0 -3
  37. package/dist/actions/providers/slack/archiveChannel.js +0 -35
  38. package/dist/actions/providers/slack/index.d.ts +0 -1
  39. package/dist/actions/providers/slack/index.js +0 -37
  40. package/dist/actions/providers/slack/listConversations.d.ts +0 -3
  41. package/dist/actions/providers/slack/listConversations.js +0 -41
@@ -142,23 +142,23 @@ export declare const perplexityPerplexityDeepResearchOutputSchema: z.ZodObject<{
142
142
  title: z.ZodOptional<z.ZodString>;
143
143
  url: z.ZodOptional<z.ZodString>;
144
144
  }, "strip", z.ZodTypeAny, {
145
- title?: string | undefined;
146
145
  url?: string | undefined;
147
- }, {
148
146
  title?: string | undefined;
147
+ }, {
149
148
  url?: string | undefined;
149
+ title?: string | undefined;
150
150
  }>, "many">>;
151
151
  }, "strip", z.ZodTypeAny, {
152
152
  content?: string | undefined;
153
153
  sources?: {
154
- title?: string | undefined;
155
154
  url?: string | undefined;
155
+ title?: string | undefined;
156
156
  }[] | undefined;
157
157
  }, {
158
158
  content?: string | undefined;
159
159
  sources?: {
160
- title?: string | undefined;
161
160
  url?: string | undefined;
161
+ title?: string | undefined;
162
162
  }[] | undefined;
163
163
  }>>;
164
164
  }, "strip", z.ZodTypeAny, {
@@ -166,8 +166,8 @@ export declare const perplexityPerplexityDeepResearchOutputSchema: z.ZodObject<{
166
166
  result?: {
167
167
  content?: string | undefined;
168
168
  sources?: {
169
- title?: string | undefined;
170
169
  url?: string | undefined;
170
+ title?: string | undefined;
171
171
  }[] | undefined;
172
172
  } | undefined;
173
173
  error?: string | undefined;
@@ -176,8 +176,8 @@ export declare const perplexityPerplexityDeepResearchOutputSchema: z.ZodObject<{
176
176
  result?: {
177
177
  content?: string | undefined;
178
178
  sources?: {
179
- title?: string | undefined;
180
179
  url?: string | undefined;
180
+ title?: string | undefined;
181
181
  }[] | undefined;
182
182
  } | undefined;
183
183
  error?: string | undefined;
@@ -886,86 +886,132 @@ export type slackUserSearchSlackParamsType = z.infer<typeof slackUserSearchSlack
886
886
  export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
887
887
  query: z.ZodString;
888
888
  results: z.ZodArray<z.ZodObject<{
889
- channelId: z.ZodString;
890
- ts: z.ZodString;
891
- text: z.ZodOptional<z.ZodString>;
892
- userEmail: z.ZodOptional<z.ZodString>;
893
- userName: z.ZodOptional<z.ZodString>;
894
- permalink: z.ZodOptional<z.ZodString>;
895
- context: z.ZodOptional<z.ZodArray<z.ZodObject<{
889
+ name: z.ZodString;
890
+ url: z.ZodString;
891
+ contents: z.ZodObject<{
892
+ channelId: z.ZodString;
896
893
  ts: z.ZodString;
897
894
  text: z.ZodOptional<z.ZodString>;
898
895
  userEmail: z.ZodOptional<z.ZodString>;
899
896
  userName: z.ZodOptional<z.ZodString>;
897
+ permalink: z.ZodOptional<z.ZodString>;
898
+ context: z.ZodOptional<z.ZodArray<z.ZodObject<{
899
+ ts: z.ZodString;
900
+ text: z.ZodOptional<z.ZodString>;
901
+ userEmail: z.ZodOptional<z.ZodString>;
902
+ userName: z.ZodOptional<z.ZodString>;
903
+ }, "strip", z.ZodTypeAny, {
904
+ ts: string;
905
+ text?: string | undefined;
906
+ userEmail?: string | undefined;
907
+ userName?: string | undefined;
908
+ }, {
909
+ ts: string;
910
+ text?: string | undefined;
911
+ userEmail?: string | undefined;
912
+ userName?: string | undefined;
913
+ }>, "many">>;
900
914
  }, "strip", z.ZodTypeAny, {
915
+ channelId: string;
901
916
  ts: string;
902
917
  text?: string | undefined;
903
918
  userEmail?: string | undefined;
904
919
  userName?: string | undefined;
920
+ permalink?: string | undefined;
921
+ context?: {
922
+ ts: string;
923
+ text?: string | undefined;
924
+ userEmail?: string | undefined;
925
+ userName?: string | undefined;
926
+ }[] | undefined;
905
927
  }, {
928
+ channelId: string;
906
929
  ts: string;
907
930
  text?: string | undefined;
908
931
  userEmail?: string | undefined;
909
932
  userName?: string | undefined;
910
- }>, "many">>;
933
+ permalink?: string | undefined;
934
+ context?: {
935
+ ts: string;
936
+ text?: string | undefined;
937
+ userEmail?: string | undefined;
938
+ userName?: string | undefined;
939
+ }[] | undefined;
940
+ }>;
911
941
  }, "strip", z.ZodTypeAny, {
912
- channelId: string;
913
- ts: string;
914
- text?: string | undefined;
915
- userEmail?: string | undefined;
916
- userName?: string | undefined;
917
- permalink?: string | undefined;
918
- context?: {
942
+ name: string;
943
+ url: string;
944
+ contents: {
945
+ channelId: string;
919
946
  ts: string;
920
947
  text?: string | undefined;
921
948
  userEmail?: string | undefined;
922
949
  userName?: string | undefined;
923
- }[] | undefined;
950
+ permalink?: string | undefined;
951
+ context?: {
952
+ ts: string;
953
+ text?: string | undefined;
954
+ userEmail?: string | undefined;
955
+ userName?: string | undefined;
956
+ }[] | undefined;
957
+ };
924
958
  }, {
925
- channelId: string;
926
- ts: string;
927
- text?: string | undefined;
928
- userEmail?: string | undefined;
929
- userName?: string | undefined;
930
- permalink?: string | undefined;
931
- context?: {
959
+ name: string;
960
+ url: string;
961
+ contents: {
962
+ channelId: string;
932
963
  ts: string;
933
964
  text?: string | undefined;
934
965
  userEmail?: string | undefined;
935
966
  userName?: string | undefined;
936
- }[] | undefined;
967
+ permalink?: string | undefined;
968
+ context?: {
969
+ ts: string;
970
+ text?: string | undefined;
971
+ userEmail?: string | undefined;
972
+ userName?: string | undefined;
973
+ }[] | undefined;
974
+ };
937
975
  }>, "many">;
938
976
  }, "strip", z.ZodTypeAny, {
939
977
  query: string;
940
978
  results: {
941
- channelId: string;
942
- ts: string;
943
- text?: string | undefined;
944
- userEmail?: string | undefined;
945
- userName?: string | undefined;
946
- permalink?: string | undefined;
947
- context?: {
979
+ name: string;
980
+ url: string;
981
+ contents: {
982
+ channelId: string;
948
983
  ts: string;
949
984
  text?: string | undefined;
950
985
  userEmail?: string | undefined;
951
986
  userName?: string | undefined;
952
- }[] | undefined;
987
+ permalink?: string | undefined;
988
+ context?: {
989
+ ts: string;
990
+ text?: string | undefined;
991
+ userEmail?: string | undefined;
992
+ userName?: string | undefined;
993
+ }[] | undefined;
994
+ };
953
995
  }[];
954
996
  }, {
955
997
  query: string;
956
998
  results: {
957
- channelId: string;
958
- ts: string;
959
- text?: string | undefined;
960
- userEmail?: string | undefined;
961
- userName?: string | undefined;
962
- permalink?: string | undefined;
963
- context?: {
999
+ name: string;
1000
+ url: string;
1001
+ contents: {
1002
+ channelId: string;
964
1003
  ts: string;
965
1004
  text?: string | undefined;
966
1005
  userEmail?: string | undefined;
967
1006
  userName?: string | undefined;
968
- }[] | undefined;
1007
+ permalink?: string | undefined;
1008
+ context?: {
1009
+ ts: string;
1010
+ text?: string | undefined;
1011
+ userEmail?: string | undefined;
1012
+ userName?: string | undefined;
1013
+ }[] | undefined;
1014
+ };
969
1015
  }[];
970
1016
  }>;
971
1017
  export type slackUserSearchSlackOutputType = z.infer<typeof slackUserSearchSlackOutputSchema>;
@@ -1150,6 +1196,7 @@ export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
1150
1196
  issueType: z.ZodString;
1151
1197
  reporter: z.ZodOptional<z.ZodString>;
1152
1198
  assignee: z.ZodOptional<z.ZodString>;
1199
+ requestTypeId: z.ZodOptional<z.ZodString>;
1153
1200
  customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
1154
1201
  }, "strip", z.ZodTypeAny, {
1155
1202
  description: string;
@@ -1159,6 +1206,7 @@ export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
1159
1206
  assignee?: string | undefined;
1160
1207
  customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
1161
1208
  reporter?: string | undefined;
1209
+ requestTypeId?: string | undefined;
1162
1210
  }, {
1163
1211
  description: string;
1164
1212
  projectKey: string;
@@ -1167,6 +1215,7 @@ export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
1167
1215
  assignee?: string | undefined;
1168
1216
  customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
1169
1217
  reporter?: string | undefined;
1218
+ requestTypeId?: string | undefined;
1170
1219
  }>;
1171
1220
  export type jiraCreateJiraTicketParamsType = z.infer<typeof jiraCreateJiraTicketParamsSchema>;
1172
1221
  export declare const jiraCreateJiraTicketOutputSchema: z.ZodObject<{
@@ -1297,14 +1346,14 @@ export declare const jiraCreateServiceDeskRequestParamsSchema: z.ZodObject<{
1297
1346
  }, "strip", z.ZodTypeAny, {
1298
1347
  description: string;
1299
1348
  summary: string;
1300
- serviceDeskId: string;
1301
1349
  requestTypeId: string;
1350
+ serviceDeskId: string;
1302
1351
  reporter?: string | undefined;
1303
1352
  }, {
1304
1353
  description: string;
1305
1354
  summary: string;
1306
- serviceDeskId: string;
1307
1355
  requestTypeId: string;
1356
+ serviceDeskId: string;
1308
1357
  reporter?: string | undefined;
1309
1358
  }>;
1310
1359
  export type jiraCreateServiceDeskRequestParamsType = z.infer<typeof jiraCreateServiceDeskRequestParamsSchema>;
@@ -1343,15 +1392,43 @@ export type jiraGetJiraTicketDetailsParamsType = z.infer<typeof jiraGetJiraTicke
1343
1392
  export declare const jiraGetJiraTicketDetailsOutputSchema: z.ZodObject<{
1344
1393
  success: z.ZodBoolean;
1345
1394
  error: z.ZodOptional<z.ZodString>;
1346
- data: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
1395
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
1396
+ name: z.ZodString;
1397
+ url: z.ZodString;
1398
+ contents: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
1399
+ }, "strip", z.ZodTypeAny, {
1400
+ name: string;
1401
+ url: string;
1402
+ contents: {} & {
1403
+ [k: string]: any;
1404
+ };
1405
+ }, {
1406
+ name: string;
1407
+ url: string;
1408
+ contents: {} & {
1409
+ [k: string]: any;
1410
+ };
1411
+ }>, "many">>;
1347
1412
  }, "strip", z.ZodTypeAny, {
1348
1413
  success: boolean;
1349
1414
  error?: string | undefined;
1350
- data?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
1415
+ results?: {
1416
+ name: string;
1417
+ url: string;
1418
+ contents: {} & {
1419
+ [k: string]: any;
1420
+ };
1421
+ }[] | undefined;
1351
1422
  }, {
1352
1423
  success: boolean;
1353
1424
  error?: string | undefined;
1354
- data?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
1425
+ results?: {
1426
+ name: string;
1427
+ url: string;
1428
+ contents: {} & {
1429
+ [k: string]: any;
1430
+ };
1431
+ }[] | undefined;
1355
1432
  }>;
1356
1433
  export type jiraGetJiraTicketDetailsOutputType = z.infer<typeof jiraGetJiraTicketDetailsOutputSchema>;
1357
1434
  export type jiraGetJiraTicketDetailsFunction = ActionFunction<jiraGetJiraTicketDetailsParamsType, AuthParamsType, jiraGetJiraTicketDetailsOutputType>;
@@ -1387,6 +1464,7 @@ export declare const jiraUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
1387
1464
  summary: z.ZodOptional<z.ZodString>;
1388
1465
  description: z.ZodOptional<z.ZodString>;
1389
1466
  issueType: z.ZodOptional<z.ZodString>;
1467
+ requestTypeId: z.ZodOptional<z.ZodString>;
1390
1468
  customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
1391
1469
  }, "strip", z.ZodTypeAny, {
1392
1470
  projectKey: string;
@@ -1395,6 +1473,7 @@ export declare const jiraUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
1395
1473
  customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
1396
1474
  summary?: string | undefined;
1397
1475
  issueType?: string | undefined;
1476
+ requestTypeId?: string | undefined;
1398
1477
  }, {
1399
1478
  projectKey: string;
1400
1479
  issueId: string;
@@ -1402,6 +1481,7 @@ export declare const jiraUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
1402
1481
  customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
1403
1482
  summary?: string | undefined;
1404
1483
  issueType?: string | undefined;
1484
+ requestTypeId?: string | undefined;
1405
1485
  }>;
1406
1486
  export type jiraUpdateJiraTicketDetailsParamsType = z.infer<typeof jiraUpdateJiraTicketDetailsParamsSchema>;
1407
1487
  export declare const jiraUpdateJiraTicketDetailsOutputSchema: z.ZodObject<{
@@ -1455,8 +1535,10 @@ export declare const jiraGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
1455
1535
  export type jiraGetJiraIssuesByQueryParamsType = z.infer<typeof jiraGetJiraIssuesByQueryParamsSchema>;
1456
1536
  export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1457
1537
  success: z.ZodBoolean;
1458
- records: z.ZodOptional<z.ZodObject<{
1459
- issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
1538
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
1539
+ name: z.ZodString;
1540
+ url: z.ZodString;
1541
+ contents: z.ZodObject<{
1460
1542
  id: z.ZodString;
1461
1543
  key: z.ZodString;
1462
1544
  summary: z.ZodString;
@@ -1513,6 +1595,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1513
1595
  };
1514
1596
  description: string;
1515
1597
  id: string;
1598
+ url: string;
1516
1599
  summary: string;
1517
1600
  issueType: {
1518
1601
  name?: string | undefined;
@@ -1526,7 +1609,6 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1526
1609
  };
1527
1610
  created: string;
1528
1611
  updated: string;
1529
- url: string;
1530
1612
  assignee?: string | null | undefined;
1531
1613
  reporter?: string | null | undefined;
1532
1614
  creator?: string | null | undefined;
@@ -1540,6 +1622,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1540
1622
  };
1541
1623
  description: string;
1542
1624
  id: string;
1625
+ url: string;
1543
1626
  summary: string;
1544
1627
  issueType: {
1545
1628
  name?: string | undefined;
@@ -1553,15 +1636,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1553
1636
  };
1554
1637
  created: string;
1555
1638
  updated: string;
1556
- url: string;
1557
1639
  assignee?: string | null | undefined;
1558
1640
  reporter?: string | null | undefined;
1559
1641
  creator?: string | null | undefined;
1560
1642
  resolution?: string | null | undefined;
1561
1643
  dueDate?: string | null | undefined;
1562
- }>, "many">>;
1644
+ }>;
1563
1645
  }, "strip", z.ZodTypeAny, {
1564
- issues?: {
1646
+ name: string;
1647
+ url: string;
1648
+ contents: {
1565
1649
  status: {
1566
1650
  name?: string | undefined;
1567
1651
  category?: string | undefined;
@@ -1569,6 +1653,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1569
1653
  };
1570
1654
  description: string;
1571
1655
  id: string;
1656
+ url: string;
1572
1657
  summary: string;
1573
1658
  issueType: {
1574
1659
  name?: string | undefined;
@@ -1582,15 +1667,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1582
1667
  };
1583
1668
  created: string;
1584
1669
  updated: string;
1585
- url: string;
1586
1670
  assignee?: string | null | undefined;
1587
1671
  reporter?: string | null | undefined;
1588
1672
  creator?: string | null | undefined;
1589
1673
  resolution?: string | null | undefined;
1590
1674
  dueDate?: string | null | undefined;
1591
- }[] | undefined;
1675
+ };
1592
1676
  }, {
1593
- issues?: {
1677
+ name: string;
1678
+ url: string;
1679
+ contents: {
1594
1680
  status: {
1595
1681
  name?: string | undefined;
1596
1682
  category?: string | undefined;
@@ -1598,6 +1684,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1598
1684
  };
1599
1685
  description: string;
1600
1686
  id: string;
1687
+ url: string;
1601
1688
  summary: string;
1602
1689
  issueType: {
1603
1690
  name?: string | undefined;
@@ -1611,20 +1698,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1611
1698
  };
1612
1699
  created: string;
1613
1700
  updated: string;
1614
- url: string;
1615
1701
  assignee?: string | null | undefined;
1616
1702
  reporter?: string | null | undefined;
1617
1703
  creator?: string | null | undefined;
1618
1704
  resolution?: string | null | undefined;
1619
1705
  dueDate?: string | null | undefined;
1620
- }[] | undefined;
1621
- }>>;
1706
+ };
1707
+ }>, "many">>;
1622
1708
  error: z.ZodOptional<z.ZodString>;
1623
1709
  }, "strip", z.ZodTypeAny, {
1624
1710
  success: boolean;
1625
1711
  error?: string | undefined;
1626
- records?: {
1627
- issues?: {
1712
+ results?: {
1713
+ name: string;
1714
+ url: string;
1715
+ contents: {
1628
1716
  status: {
1629
1717
  name?: string | undefined;
1630
1718
  category?: string | undefined;
@@ -1632,6 +1720,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1632
1720
  };
1633
1721
  description: string;
1634
1722
  id: string;
1723
+ url: string;
1635
1724
  summary: string;
1636
1725
  issueType: {
1637
1726
  name?: string | undefined;
@@ -1645,19 +1734,20 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1645
1734
  };
1646
1735
  created: string;
1647
1736
  updated: string;
1648
- url: string;
1649
1737
  assignee?: string | null | undefined;
1650
1738
  reporter?: string | null | undefined;
1651
1739
  creator?: string | null | undefined;
1652
1740
  resolution?: string | null | undefined;
1653
1741
  dueDate?: string | null | undefined;
1654
- }[] | undefined;
1655
- } | undefined;
1742
+ };
1743
+ }[] | undefined;
1656
1744
  }, {
1657
1745
  success: boolean;
1658
1746
  error?: string | undefined;
1659
- records?: {
1660
- issues?: {
1747
+ results?: {
1748
+ name: string;
1749
+ url: string;
1750
+ contents: {
1661
1751
  status: {
1662
1752
  name?: string | undefined;
1663
1753
  category?: string | undefined;
@@ -1665,6 +1755,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1665
1755
  };
1666
1756
  description: string;
1667
1757
  id: string;
1758
+ url: string;
1668
1759
  summary: string;
1669
1760
  issueType: {
1670
1761
  name?: string | undefined;
@@ -1678,14 +1769,13 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
1678
1769
  };
1679
1770
  created: string;
1680
1771
  updated: string;
1681
- url: string;
1682
1772
  assignee?: string | null | undefined;
1683
1773
  reporter?: string | null | undefined;
1684
1774
  creator?: string | null | undefined;
1685
1775
  resolution?: string | null | undefined;
1686
1776
  dueDate?: string | null | undefined;
1687
- }[] | undefined;
1688
- } | undefined;
1777
+ };
1778
+ }[] | undefined;
1689
1779
  }>;
1690
1780
  export type jiraGetJiraIssuesByQueryOutputType = z.infer<typeof jiraGetJiraIssuesByQueryOutputSchema>;
1691
1781
  export type jiraGetJiraIssuesByQueryFunction = ActionFunction<jiraGetJiraIssuesByQueryParamsType, AuthParamsType, jiraGetJiraIssuesByQueryOutputType>;
@@ -1780,6 +1870,7 @@ export declare const jiraOrgCreateJiraTicketParamsSchema: z.ZodObject<{
1780
1870
  issueType: z.ZodString;
1781
1871
  reporter: z.ZodOptional<z.ZodString>;
1782
1872
  assignee: z.ZodOptional<z.ZodString>;
1873
+ requestTypeId: z.ZodOptional<z.ZodString>;
1783
1874
  customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
1784
1875
  }, "strip", z.ZodTypeAny, {
1785
1876
  description: string;
@@ -1789,6 +1880,7 @@ export declare const jiraOrgCreateJiraTicketParamsSchema: z.ZodObject<{
1789
1880
  assignee?: string | undefined;
1790
1881
  customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
1791
1882
  reporter?: string | undefined;
1883
+ requestTypeId?: string | undefined;
1792
1884
  }, {
1793
1885
  description: string;
1794
1886
  projectKey: string;
@@ -1797,6 +1889,7 @@ export declare const jiraOrgCreateJiraTicketParamsSchema: z.ZodObject<{
1797
1889
  assignee?: string | undefined;
1798
1890
  customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
1799
1891
  reporter?: string | undefined;
1892
+ requestTypeId?: string | undefined;
1800
1893
  }>;
1801
1894
  export type jiraOrgCreateJiraTicketParamsType = z.infer<typeof jiraOrgCreateJiraTicketParamsSchema>;
1802
1895
  export declare const jiraOrgCreateJiraTicketOutputSchema: z.ZodObject<{
@@ -1927,14 +2020,14 @@ export declare const jiraOrgCreateServiceDeskRequestParamsSchema: z.ZodObject<{
1927
2020
  }, "strip", z.ZodTypeAny, {
1928
2021
  description: string;
1929
2022
  summary: string;
1930
- serviceDeskId: string;
1931
2023
  requestTypeId: string;
2024
+ serviceDeskId: string;
1932
2025
  reporter?: string | undefined;
1933
2026
  }, {
1934
2027
  description: string;
1935
2028
  summary: string;
1936
- serviceDeskId: string;
1937
2029
  requestTypeId: string;
2030
+ serviceDeskId: string;
1938
2031
  reporter?: string | undefined;
1939
2032
  }>;
1940
2033
  export type jiraOrgCreateServiceDeskRequestParamsType = z.infer<typeof jiraOrgCreateServiceDeskRequestParamsSchema>;
@@ -1973,15 +2066,43 @@ export type jiraOrgGetJiraTicketDetailsParamsType = z.infer<typeof jiraOrgGetJir
1973
2066
  export declare const jiraOrgGetJiraTicketDetailsOutputSchema: z.ZodObject<{
1974
2067
  success: z.ZodBoolean;
1975
2068
  error: z.ZodOptional<z.ZodString>;
1976
- data: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
2069
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
2070
+ name: z.ZodString;
2071
+ url: z.ZodString;
2072
+ contents: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
2073
+ }, "strip", z.ZodTypeAny, {
2074
+ name: string;
2075
+ url: string;
2076
+ contents: {} & {
2077
+ [k: string]: any;
2078
+ };
2079
+ }, {
2080
+ name: string;
2081
+ url: string;
2082
+ contents: {} & {
2083
+ [k: string]: any;
2084
+ };
2085
+ }>, "many">>;
1977
2086
  }, "strip", z.ZodTypeAny, {
1978
2087
  success: boolean;
1979
2088
  error?: string | undefined;
1980
- data?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
2089
+ results?: {
2090
+ name: string;
2091
+ url: string;
2092
+ contents: {} & {
2093
+ [k: string]: any;
2094
+ };
2095
+ }[] | undefined;
1981
2096
  }, {
1982
2097
  success: boolean;
1983
2098
  error?: string | undefined;
1984
- data?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
2099
+ results?: {
2100
+ name: string;
2101
+ url: string;
2102
+ contents: {} & {
2103
+ [k: string]: any;
2104
+ };
2105
+ }[] | undefined;
1985
2106
  }>;
1986
2107
  export type jiraOrgGetJiraTicketDetailsOutputType = z.infer<typeof jiraOrgGetJiraTicketDetailsOutputSchema>;
1987
2108
  export type jiraOrgGetJiraTicketDetailsFunction = ActionFunction<jiraOrgGetJiraTicketDetailsParamsType, AuthParamsType, jiraOrgGetJiraTicketDetailsOutputType>;
@@ -2017,6 +2138,7 @@ export declare const jiraOrgUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
2017
2138
  summary: z.ZodOptional<z.ZodString>;
2018
2139
  description: z.ZodOptional<z.ZodString>;
2019
2140
  issueType: z.ZodOptional<z.ZodString>;
2141
+ requestTypeId: z.ZodOptional<z.ZodString>;
2020
2142
  customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
2021
2143
  }, "strip", z.ZodTypeAny, {
2022
2144
  projectKey: string;
@@ -2025,6 +2147,7 @@ export declare const jiraOrgUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
2025
2147
  customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
2026
2148
  summary?: string | undefined;
2027
2149
  issueType?: string | undefined;
2150
+ requestTypeId?: string | undefined;
2028
2151
  }, {
2029
2152
  projectKey: string;
2030
2153
  issueId: string;
@@ -2032,6 +2155,7 @@ export declare const jiraOrgUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
2032
2155
  customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
2033
2156
  summary?: string | undefined;
2034
2157
  issueType?: string | undefined;
2158
+ requestTypeId?: string | undefined;
2035
2159
  }>;
2036
2160
  export type jiraOrgUpdateJiraTicketDetailsParamsType = z.infer<typeof jiraOrgUpdateJiraTicketDetailsParamsSchema>;
2037
2161
  export declare const jiraOrgUpdateJiraTicketDetailsOutputSchema: z.ZodObject<{
@@ -2085,8 +2209,10 @@ export declare const jiraOrgGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
2085
2209
  export type jiraOrgGetJiraIssuesByQueryParamsType = z.infer<typeof jiraOrgGetJiraIssuesByQueryParamsSchema>;
2086
2210
  export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2087
2211
  success: z.ZodBoolean;
2088
- records: z.ZodOptional<z.ZodObject<{
2089
- issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
2212
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
2213
+ name: z.ZodString;
2214
+ url: z.ZodString;
2215
+ contents: z.ZodObject<{
2090
2216
  id: z.ZodString;
2091
2217
  key: z.ZodString;
2092
2218
  summary: z.ZodString;
@@ -2143,6 +2269,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2143
2269
  };
2144
2270
  description: string;
2145
2271
  id: string;
2272
+ url: string;
2146
2273
  summary: string;
2147
2274
  issueType: {
2148
2275
  name?: string | undefined;
@@ -2156,7 +2283,6 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2156
2283
  };
2157
2284
  created: string;
2158
2285
  updated: string;
2159
- url: string;
2160
2286
  assignee?: string | null | undefined;
2161
2287
  reporter?: string | null | undefined;
2162
2288
  creator?: string | null | undefined;
@@ -2170,6 +2296,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2170
2296
  };
2171
2297
  description: string;
2172
2298
  id: string;
2299
+ url: string;
2173
2300
  summary: string;
2174
2301
  issueType: {
2175
2302
  name?: string | undefined;
@@ -2183,15 +2310,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2183
2310
  };
2184
2311
  created: string;
2185
2312
  updated: string;
2186
- url: string;
2187
2313
  assignee?: string | null | undefined;
2188
2314
  reporter?: string | null | undefined;
2189
2315
  creator?: string | null | undefined;
2190
2316
  resolution?: string | null | undefined;
2191
2317
  dueDate?: string | null | undefined;
2192
- }>, "many">>;
2318
+ }>;
2193
2319
  }, "strip", z.ZodTypeAny, {
2194
- issues?: {
2320
+ name: string;
2321
+ url: string;
2322
+ contents: {
2195
2323
  status: {
2196
2324
  name?: string | undefined;
2197
2325
  category?: string | undefined;
@@ -2199,6 +2327,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2199
2327
  };
2200
2328
  description: string;
2201
2329
  id: string;
2330
+ url: string;
2202
2331
  summary: string;
2203
2332
  issueType: {
2204
2333
  name?: string | undefined;
@@ -2212,15 +2341,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2212
2341
  };
2213
2342
  created: string;
2214
2343
  updated: string;
2215
- url: string;
2216
2344
  assignee?: string | null | undefined;
2217
2345
  reporter?: string | null | undefined;
2218
2346
  creator?: string | null | undefined;
2219
2347
  resolution?: string | null | undefined;
2220
2348
  dueDate?: string | null | undefined;
2221
- }[] | undefined;
2349
+ };
2222
2350
  }, {
2223
- issues?: {
2351
+ name: string;
2352
+ url: string;
2353
+ contents: {
2224
2354
  status: {
2225
2355
  name?: string | undefined;
2226
2356
  category?: string | undefined;
@@ -2228,6 +2358,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2228
2358
  };
2229
2359
  description: string;
2230
2360
  id: string;
2361
+ url: string;
2231
2362
  summary: string;
2232
2363
  issueType: {
2233
2364
  name?: string | undefined;
@@ -2241,20 +2372,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2241
2372
  };
2242
2373
  created: string;
2243
2374
  updated: string;
2244
- url: string;
2245
2375
  assignee?: string | null | undefined;
2246
2376
  reporter?: string | null | undefined;
2247
2377
  creator?: string | null | undefined;
2248
2378
  resolution?: string | null | undefined;
2249
2379
  dueDate?: string | null | undefined;
2250
- }[] | undefined;
2251
- }>>;
2380
+ };
2381
+ }>, "many">>;
2252
2382
  error: z.ZodOptional<z.ZodString>;
2253
2383
  }, "strip", z.ZodTypeAny, {
2254
2384
  success: boolean;
2255
2385
  error?: string | undefined;
2256
- records?: {
2257
- issues?: {
2386
+ results?: {
2387
+ name: string;
2388
+ url: string;
2389
+ contents: {
2258
2390
  status: {
2259
2391
  name?: string | undefined;
2260
2392
  category?: string | undefined;
@@ -2262,6 +2394,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2262
2394
  };
2263
2395
  description: string;
2264
2396
  id: string;
2397
+ url: string;
2265
2398
  summary: string;
2266
2399
  issueType: {
2267
2400
  name?: string | undefined;
@@ -2275,19 +2408,20 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2275
2408
  };
2276
2409
  created: string;
2277
2410
  updated: string;
2278
- url: string;
2279
2411
  assignee?: string | null | undefined;
2280
2412
  reporter?: string | null | undefined;
2281
2413
  creator?: string | null | undefined;
2282
2414
  resolution?: string | null | undefined;
2283
2415
  dueDate?: string | null | undefined;
2284
- }[] | undefined;
2285
- } | undefined;
2416
+ };
2417
+ }[] | undefined;
2286
2418
  }, {
2287
2419
  success: boolean;
2288
2420
  error?: string | undefined;
2289
- records?: {
2290
- issues?: {
2421
+ results?: {
2422
+ name: string;
2423
+ url: string;
2424
+ contents: {
2291
2425
  status: {
2292
2426
  name?: string | undefined;
2293
2427
  category?: string | undefined;
@@ -2295,6 +2429,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2295
2429
  };
2296
2430
  description: string;
2297
2431
  id: string;
2432
+ url: string;
2298
2433
  summary: string;
2299
2434
  issueType: {
2300
2435
  name?: string | undefined;
@@ -2308,14 +2443,13 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2308
2443
  };
2309
2444
  created: string;
2310
2445
  updated: string;
2311
- url: string;
2312
2446
  assignee?: string | null | undefined;
2313
2447
  reporter?: string | null | undefined;
2314
2448
  creator?: string | null | undefined;
2315
2449
  resolution?: string | null | undefined;
2316
2450
  dueDate?: string | null | undefined;
2317
- }[] | undefined;
2318
- } | undefined;
2451
+ };
2452
+ }[] | undefined;
2319
2453
  }>;
2320
2454
  export type jiraOrgGetJiraIssuesByQueryOutputType = z.infer<typeof jiraOrgGetJiraIssuesByQueryOutputSchema>;
2321
2455
  export type jiraOrgGetJiraIssuesByQueryFunction = ActionFunction<jiraOrgGetJiraIssuesByQueryParamsType, AuthParamsType, jiraOrgGetJiraIssuesByQueryOutputType>;
@@ -3115,26 +3249,26 @@ export declare const firecrawlDeepResearchOutputSchema: z.ZodObject<{
3115
3249
  title: z.ZodString;
3116
3250
  description: z.ZodOptional<z.ZodString>;
3117
3251
  }, "strip", z.ZodTypeAny, {
3118
- title: string;
3119
3252
  url: string;
3253
+ title: string;
3120
3254
  description?: string | undefined;
3121
3255
  }, {
3122
- title: string;
3123
3256
  url: string;
3257
+ title: string;
3124
3258
  description?: string | undefined;
3125
3259
  }>, "many">;
3126
3260
  }, "strip", z.ZodTypeAny, {
3127
3261
  finalAnalysis: string;
3128
3262
  sources: {
3129
- title: string;
3130
3263
  url: string;
3264
+ title: string;
3131
3265
  description?: string | undefined;
3132
3266
  }[];
3133
3267
  }, {
3134
3268
  finalAnalysis: string;
3135
3269
  sources: {
3136
- title: string;
3137
3270
  url: string;
3271
+ title: string;
3138
3272
  description?: string | undefined;
3139
3273
  }[];
3140
3274
  }>;
@@ -3158,11 +3292,37 @@ export declare const firecrawlScrapeUrlParamsSchema: z.ZodObject<{
3158
3292
  }>;
3159
3293
  export type firecrawlScrapeUrlParamsType = z.infer<typeof firecrawlScrapeUrlParamsSchema>;
3160
3294
  export declare const firecrawlScrapeUrlOutputSchema: z.ZodObject<{
3161
- content: z.ZodString;
3295
+ success: z.ZodBoolean;
3296
+ error: z.ZodOptional<z.ZodString>;
3297
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
3298
+ name: z.ZodString;
3299
+ url: z.ZodString;
3300
+ contents: z.ZodString;
3301
+ }, "strip", z.ZodTypeAny, {
3302
+ name: string;
3303
+ url: string;
3304
+ contents: string;
3305
+ }, {
3306
+ name: string;
3307
+ url: string;
3308
+ contents: string;
3309
+ }>, "many">>;
3162
3310
  }, "strip", z.ZodTypeAny, {
3163
- content: string;
3311
+ success: boolean;
3312
+ error?: string | undefined;
3313
+ results?: {
3314
+ name: string;
3315
+ url: string;
3316
+ contents: string;
3317
+ }[] | undefined;
3164
3318
  }, {
3165
- content: string;
3319
+ success: boolean;
3320
+ error?: string | undefined;
3321
+ results?: {
3322
+ name: string;
3323
+ url: string;
3324
+ contents: string;
3325
+ }[] | undefined;
3166
3326
  }>;
3167
3327
  export type firecrawlScrapeUrlOutputType = z.infer<typeof firecrawlScrapeUrlOutputSchema>;
3168
3328
  export type firecrawlScrapeUrlFunction = ActionFunction<firecrawlScrapeUrlParamsType, AuthParamsType, firecrawlScrapeUrlOutputType>;
@@ -3186,25 +3346,25 @@ export declare const firecrawlSearchAndScrapeOutputSchema: z.ZodObject<{
3186
3346
  title: z.ZodString;
3187
3347
  contents: z.ZodString;
3188
3348
  }, "strip", z.ZodTypeAny, {
3189
- title: string;
3190
3349
  url: string;
3191
3350
  contents: string;
3192
- }, {
3193
3351
  title: string;
3352
+ }, {
3194
3353
  url: string;
3195
3354
  contents: string;
3355
+ title: string;
3196
3356
  }>, "many">;
3197
3357
  }, "strip", z.ZodTypeAny, {
3198
3358
  results: {
3199
- title: string;
3200
3359
  url: string;
3201
3360
  contents: string;
3361
+ title: string;
3202
3362
  }[];
3203
3363
  }, {
3204
3364
  results: {
3205
- title: string;
3206
3365
  url: string;
3207
3366
  contents: string;
3367
+ title: string;
3208
3368
  }[];
3209
3369
  }>;
3210
3370
  export type firecrawlSearchAndScrapeOutputType = z.infer<typeof firecrawlSearchAndScrapeOutputSchema>;
@@ -3560,10 +3720,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3560
3720
  status?: string | undefined;
3561
3721
  description?: string | undefined;
3562
3722
  id?: string | undefined;
3723
+ url?: string | undefined;
3563
3724
  title?: string | undefined;
3564
3725
  created?: string | undefined;
3565
3726
  updated?: string | undefined;
3566
- url?: string | undefined;
3567
3727
  location?: string | undefined;
3568
3728
  start?: string | undefined;
3569
3729
  end?: string | undefined;
@@ -3583,10 +3743,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3583
3743
  status?: string | undefined;
3584
3744
  description?: string | undefined;
3585
3745
  id?: string | undefined;
3746
+ url?: string | undefined;
3586
3747
  title?: string | undefined;
3587
3748
  created?: string | undefined;
3588
3749
  updated?: string | undefined;
3589
- url?: string | undefined;
3590
3750
  location?: string | undefined;
3591
3751
  start?: string | undefined;
3592
3752
  end?: string | undefined;
@@ -3611,10 +3771,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3611
3771
  status?: string | undefined;
3612
3772
  description?: string | undefined;
3613
3773
  id?: string | undefined;
3774
+ url?: string | undefined;
3614
3775
  title?: string | undefined;
3615
3776
  created?: string | undefined;
3616
3777
  updated?: string | undefined;
3617
- url?: string | undefined;
3618
3778
  location?: string | undefined;
3619
3779
  start?: string | undefined;
3620
3780
  end?: string | undefined;
@@ -3639,10 +3799,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3639
3799
  status?: string | undefined;
3640
3800
  description?: string | undefined;
3641
3801
  id?: string | undefined;
3802
+ url?: string | undefined;
3642
3803
  title?: string | undefined;
3643
3804
  created?: string | undefined;
3644
3805
  updated?: string | undefined;
3645
- url?: string | undefined;
3646
3806
  location?: string | undefined;
3647
3807
  start?: string | undefined;
3648
3808
  end?: string | undefined;
@@ -4347,45 +4507,77 @@ export declare const googleOauthSearchDriveByKeywordsAndGetFileContentParamsSche
4347
4507
  export type googleOauthSearchDriveByKeywordsAndGetFileContentParamsType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentParamsSchema>;
4348
4508
  export declare const googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema: z.ZodObject<{
4349
4509
  success: z.ZodBoolean;
4350
- files: z.ZodOptional<z.ZodArray<z.ZodObject<{
4351
- id: z.ZodString;
4510
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
4352
4511
  name: z.ZodString;
4353
- mimeType: z.ZodString;
4354
4512
  url: z.ZodString;
4355
- content: z.ZodOptional<z.ZodString>;
4513
+ contents: z.ZodObject<{
4514
+ id: z.ZodString;
4515
+ name: z.ZodString;
4516
+ mimeType: z.ZodString;
4517
+ url: z.ZodString;
4518
+ content: z.ZodOptional<z.ZodString>;
4519
+ }, "strip", z.ZodTypeAny, {
4520
+ name: string;
4521
+ id: string;
4522
+ url: string;
4523
+ mimeType: string;
4524
+ content?: string | undefined;
4525
+ }, {
4526
+ name: string;
4527
+ id: string;
4528
+ url: string;
4529
+ mimeType: string;
4530
+ content?: string | undefined;
4531
+ }>;
4356
4532
  }, "strip", z.ZodTypeAny, {
4357
4533
  name: string;
4358
- id: string;
4359
4534
  url: string;
4360
- mimeType: string;
4361
- content?: string | undefined;
4535
+ contents: {
4536
+ name: string;
4537
+ id: string;
4538
+ url: string;
4539
+ mimeType: string;
4540
+ content?: string | undefined;
4541
+ };
4362
4542
  }, {
4363
4543
  name: string;
4364
- id: string;
4365
4544
  url: string;
4366
- mimeType: string;
4367
- content?: string | undefined;
4545
+ contents: {
4546
+ name: string;
4547
+ id: string;
4548
+ url: string;
4549
+ mimeType: string;
4550
+ content?: string | undefined;
4551
+ };
4368
4552
  }>, "many">>;
4369
4553
  error: z.ZodOptional<z.ZodString>;
4370
4554
  }, "strip", z.ZodTypeAny, {
4371
4555
  success: boolean;
4372
4556
  error?: string | undefined;
4373
- files?: {
4557
+ results?: {
4374
4558
  name: string;
4375
- id: string;
4376
4559
  url: string;
4377
- mimeType: string;
4378
- content?: string | undefined;
4560
+ contents: {
4561
+ name: string;
4562
+ id: string;
4563
+ url: string;
4564
+ mimeType: string;
4565
+ content?: string | undefined;
4566
+ };
4379
4567
  }[] | undefined;
4380
4568
  }, {
4381
4569
  success: boolean;
4382
4570
  error?: string | undefined;
4383
- files?: {
4571
+ results?: {
4384
4572
  name: string;
4385
- id: string;
4386
4573
  url: string;
4387
- mimeType: string;
4388
- content?: string | undefined;
4574
+ contents: {
4575
+ name: string;
4576
+ id: string;
4577
+ url: string;
4578
+ mimeType: string;
4579
+ content?: string | undefined;
4580
+ };
4389
4581
  }[] | undefined;
4390
4582
  }>;
4391
4583
  export type googleOauthSearchDriveByKeywordsAndGetFileContentOutputType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema>;
@@ -4474,22 +4666,64 @@ export declare const googleOauthGetDriveFileContentByIdParamsSchema: z.ZodObject
4474
4666
  export type googleOauthGetDriveFileContentByIdParamsType = z.infer<typeof googleOauthGetDriveFileContentByIdParamsSchema>;
4475
4667
  export declare const googleOauthGetDriveFileContentByIdOutputSchema: z.ZodObject<{
4476
4668
  success: z.ZodBoolean;
4477
- content: z.ZodOptional<z.ZodString>;
4478
- fileName: z.ZodOptional<z.ZodString>;
4479
- fileLength: z.ZodOptional<z.ZodNumber>;
4669
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
4670
+ name: z.ZodString;
4671
+ url: z.ZodString;
4672
+ contents: z.ZodObject<{
4673
+ content: z.ZodOptional<z.ZodString>;
4674
+ fileName: z.ZodOptional<z.ZodString>;
4675
+ fileLength: z.ZodOptional<z.ZodNumber>;
4676
+ }, "strip", z.ZodTypeAny, {
4677
+ content?: string | undefined;
4678
+ fileName?: string | undefined;
4679
+ fileLength?: number | undefined;
4680
+ }, {
4681
+ content?: string | undefined;
4682
+ fileName?: string | undefined;
4683
+ fileLength?: number | undefined;
4684
+ }>;
4685
+ }, "strip", z.ZodTypeAny, {
4686
+ name: string;
4687
+ url: string;
4688
+ contents: {
4689
+ content?: string | undefined;
4690
+ fileName?: string | undefined;
4691
+ fileLength?: number | undefined;
4692
+ };
4693
+ }, {
4694
+ name: string;
4695
+ url: string;
4696
+ contents: {
4697
+ content?: string | undefined;
4698
+ fileName?: string | undefined;
4699
+ fileLength?: number | undefined;
4700
+ };
4701
+ }>, "many">>;
4480
4702
  error: z.ZodOptional<z.ZodString>;
4481
4703
  }, "strip", z.ZodTypeAny, {
4482
4704
  success: boolean;
4483
4705
  error?: string | undefined;
4484
- content?: string | undefined;
4485
- fileName?: string | undefined;
4486
- fileLength?: number | undefined;
4706
+ results?: {
4707
+ name: string;
4708
+ url: string;
4709
+ contents: {
4710
+ content?: string | undefined;
4711
+ fileName?: string | undefined;
4712
+ fileLength?: number | undefined;
4713
+ };
4714
+ }[] | undefined;
4487
4715
  }, {
4488
4716
  success: boolean;
4489
4717
  error?: string | undefined;
4490
- content?: string | undefined;
4491
- fileName?: string | undefined;
4492
- fileLength?: number | undefined;
4718
+ results?: {
4719
+ name: string;
4720
+ url: string;
4721
+ contents: {
4722
+ content?: string | undefined;
4723
+ fileName?: string | undefined;
4724
+ fileLength?: number | undefined;
4725
+ };
4726
+ }[] | undefined;
4493
4727
  }>;
4494
4728
  export type googleOauthGetDriveFileContentByIdOutputType = z.infer<typeof googleOauthGetDriveFileContentByIdOutputSchema>;
4495
4729
  export type googleOauthGetDriveFileContentByIdFunction = ActionFunction<googleOauthGetDriveFileContentByIdParamsType, AuthParamsType, googleOauthGetDriveFileContentByIdOutputType>;
@@ -6861,51 +7095,83 @@ export declare const salesforceSearchSalesforceRecordsParamsSchema: z.ZodObject<
6861
7095
  export type salesforceSearchSalesforceRecordsParamsType = z.infer<typeof salesforceSearchSalesforceRecordsParamsSchema>;
6862
7096
  export declare const salesforceSearchSalesforceRecordsOutputSchema: z.ZodObject<{
6863
7097
  success: z.ZodBoolean;
6864
- searchRecords: z.ZodOptional<z.ZodArray<z.ZodObject<{
6865
- id: z.ZodOptional<z.ZodString>;
6866
- attributes: z.ZodOptional<z.ZodObject<{
6867
- type: z.ZodString;
6868
- url: z.ZodString;
6869
- }, "strip", z.ZodAny, z.objectOutputType<{
6870
- type: z.ZodString;
6871
- url: z.ZodString;
6872
- }, z.ZodAny, "strip">, z.objectInputType<{
6873
- type: z.ZodString;
6874
- url: z.ZodString;
6875
- }, z.ZodAny, "strip">>>;
7098
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
7099
+ name: z.ZodOptional<z.ZodString>;
7100
+ url: z.ZodOptional<z.ZodString>;
7101
+ contents: z.ZodOptional<z.ZodObject<{
7102
+ id: z.ZodOptional<z.ZodString>;
7103
+ attributes: z.ZodOptional<z.ZodObject<{
7104
+ type: z.ZodString;
7105
+ url: z.ZodString;
7106
+ }, "strip", z.ZodAny, z.objectOutputType<{
7107
+ type: z.ZodString;
7108
+ url: z.ZodString;
7109
+ }, z.ZodAny, "strip">, z.objectInputType<{
7110
+ type: z.ZodString;
7111
+ url: z.ZodString;
7112
+ }, z.ZodAny, "strip">>>;
7113
+ }, "strip", z.ZodTypeAny, {
7114
+ attributes?: z.objectOutputType<{
7115
+ type: z.ZodString;
7116
+ url: z.ZodString;
7117
+ }, z.ZodAny, "strip"> | undefined;
7118
+ id?: string | undefined;
7119
+ }, {
7120
+ attributes?: z.objectInputType<{
7121
+ type: z.ZodString;
7122
+ url: z.ZodString;
7123
+ }, z.ZodAny, "strip"> | undefined;
7124
+ id?: string | undefined;
7125
+ }>>;
6876
7126
  }, "strip", z.ZodTypeAny, {
6877
- attributes?: z.objectOutputType<{
6878
- type: z.ZodString;
6879
- url: z.ZodString;
6880
- }, z.ZodAny, "strip"> | undefined;
6881
- id?: string | undefined;
7127
+ name?: string | undefined;
7128
+ url?: string | undefined;
7129
+ contents?: {
7130
+ attributes?: z.objectOutputType<{
7131
+ type: z.ZodString;
7132
+ url: z.ZodString;
7133
+ }, z.ZodAny, "strip"> | undefined;
7134
+ id?: string | undefined;
7135
+ } | undefined;
6882
7136
  }, {
6883
- attributes?: z.objectInputType<{
6884
- type: z.ZodString;
6885
- url: z.ZodString;
6886
- }, z.ZodAny, "strip"> | undefined;
6887
- id?: string | undefined;
7137
+ name?: string | undefined;
7138
+ url?: string | undefined;
7139
+ contents?: {
7140
+ attributes?: z.objectInputType<{
7141
+ type: z.ZodString;
7142
+ url: z.ZodString;
7143
+ }, z.ZodAny, "strip"> | undefined;
7144
+ id?: string | undefined;
7145
+ } | undefined;
6888
7146
  }>, "many">>;
6889
7147
  error: z.ZodOptional<z.ZodString>;
6890
7148
  }, "strip", z.ZodTypeAny, {
6891
7149
  success: boolean;
6892
7150
  error?: string | undefined;
6893
- searchRecords?: {
6894
- attributes?: z.objectOutputType<{
6895
- type: z.ZodString;
6896
- url: z.ZodString;
6897
- }, z.ZodAny, "strip"> | undefined;
6898
- id?: string | undefined;
7151
+ results?: {
7152
+ name?: string | undefined;
7153
+ url?: string | undefined;
7154
+ contents?: {
7155
+ attributes?: z.objectOutputType<{
7156
+ type: z.ZodString;
7157
+ url: z.ZodString;
7158
+ }, z.ZodAny, "strip"> | undefined;
7159
+ id?: string | undefined;
7160
+ } | undefined;
6899
7161
  }[] | undefined;
6900
7162
  }, {
6901
7163
  success: boolean;
6902
7164
  error?: string | undefined;
6903
- searchRecords?: {
6904
- attributes?: z.objectInputType<{
6905
- type: z.ZodString;
6906
- url: z.ZodString;
6907
- }, z.ZodAny, "strip"> | undefined;
6908
- id?: string | undefined;
7165
+ results?: {
7166
+ name?: string | undefined;
7167
+ url?: string | undefined;
7168
+ contents?: {
7169
+ attributes?: z.objectInputType<{
7170
+ type: z.ZodString;
7171
+ url: z.ZodString;
7172
+ }, z.ZodAny, "strip"> | undefined;
7173
+ id?: string | undefined;
7174
+ } | undefined;
6909
7175
  }[] | undefined;
6910
7176
  }>;
6911
7177
  export type salesforceSearchSalesforceRecordsOutputType = z.infer<typeof salesforceSearchSalesforceRecordsOutputSchema>;
@@ -6923,16 +7189,16 @@ export declare const salesforceGetSalesforceRecordsByQueryParamsSchema: z.ZodObj
6923
7189
  export type salesforceGetSalesforceRecordsByQueryParamsType = z.infer<typeof salesforceGetSalesforceRecordsByQueryParamsSchema>;
6924
7190
  export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObject<{
6925
7191
  success: z.ZodBoolean;
6926
- records: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
7192
+ results: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
6927
7193
  error: z.ZodOptional<z.ZodString>;
6928
7194
  }, "strip", z.ZodTypeAny, {
6929
7195
  success: boolean;
6930
7196
  error?: string | undefined;
6931
- records?: Record<string, string>[] | undefined;
7197
+ results?: any[] | undefined;
6932
7198
  }, {
6933
7199
  success: boolean;
6934
7200
  error?: string | undefined;
6935
- records?: Record<string, string>[] | undefined;
7201
+ results?: any[] | undefined;
6936
7202
  }>;
6937
7203
  export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
6938
7204
  export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
@@ -7294,75 +7560,123 @@ export declare const githubListPullRequestsParamsSchema: z.ZodObject<{
7294
7560
  }>;
7295
7561
  export type githubListPullRequestsParamsType = z.infer<typeof githubListPullRequestsParamsSchema>;
7296
7562
  export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
7297
- pullRequests: z.ZodArray<z.ZodObject<{
7298
- number: z.ZodOptional<z.ZodNumber>;
7299
- title: z.ZodOptional<z.ZodString>;
7300
- state: z.ZodOptional<z.ZodString>;
7563
+ success: z.ZodBoolean;
7564
+ error: z.ZodOptional<z.ZodString>;
7565
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
7566
+ name: z.ZodOptional<z.ZodString>;
7301
7567
  url: z.ZodOptional<z.ZodString>;
7302
- createdAt: z.ZodOptional<z.ZodString>;
7303
- updatedAt: z.ZodOptional<z.ZodString>;
7304
- user: z.ZodOptional<z.ZodObject<{
7305
- login: z.ZodOptional<z.ZodString>;
7568
+ contents: z.ZodOptional<z.ZodObject<{
7569
+ number: z.ZodOptional<z.ZodNumber>;
7570
+ title: z.ZodOptional<z.ZodString>;
7571
+ state: z.ZodOptional<z.ZodString>;
7572
+ url: z.ZodOptional<z.ZodString>;
7573
+ createdAt: z.ZodOptional<z.ZodString>;
7574
+ updatedAt: z.ZodOptional<z.ZodString>;
7575
+ user: z.ZodOptional<z.ZodObject<{
7576
+ login: z.ZodOptional<z.ZodString>;
7577
+ }, "strip", z.ZodTypeAny, {
7578
+ login?: string | undefined;
7579
+ }, {
7580
+ login?: string | undefined;
7581
+ }>>;
7582
+ description: z.ZodOptional<z.ZodString>;
7306
7583
  }, "strip", z.ZodTypeAny, {
7307
- login?: string | undefined;
7584
+ number?: number | undefined;
7585
+ description?: string | undefined;
7586
+ user?: {
7587
+ login?: string | undefined;
7588
+ } | undefined;
7589
+ url?: string | undefined;
7590
+ title?: string | undefined;
7591
+ createdAt?: string | undefined;
7592
+ state?: string | undefined;
7593
+ updatedAt?: string | undefined;
7308
7594
  }, {
7309
- login?: string | undefined;
7595
+ number?: number | undefined;
7596
+ description?: string | undefined;
7597
+ user?: {
7598
+ login?: string | undefined;
7599
+ } | undefined;
7600
+ url?: string | undefined;
7601
+ title?: string | undefined;
7602
+ createdAt?: string | undefined;
7603
+ state?: string | undefined;
7604
+ updatedAt?: string | undefined;
7310
7605
  }>>;
7311
- description: z.ZodOptional<z.ZodString>;
7312
7606
  }, "strip", z.ZodTypeAny, {
7313
- number?: number | undefined;
7314
- description?: string | undefined;
7315
- user?: {
7316
- login?: string | undefined;
7317
- } | undefined;
7318
- title?: string | undefined;
7607
+ name?: string | undefined;
7319
7608
  url?: string | undefined;
7320
- createdAt?: string | undefined;
7321
- state?: string | undefined;
7322
- updatedAt?: string | undefined;
7323
- }, {
7324
- number?: number | undefined;
7325
- description?: string | undefined;
7326
- user?: {
7327
- login?: string | undefined;
7609
+ contents?: {
7610
+ number?: number | undefined;
7611
+ description?: string | undefined;
7612
+ user?: {
7613
+ login?: string | undefined;
7614
+ } | undefined;
7615
+ url?: string | undefined;
7616
+ title?: string | undefined;
7617
+ createdAt?: string | undefined;
7618
+ state?: string | undefined;
7619
+ updatedAt?: string | undefined;
7328
7620
  } | undefined;
7329
- title?: string | undefined;
7621
+ }, {
7622
+ name?: string | undefined;
7330
7623
  url?: string | undefined;
7331
- createdAt?: string | undefined;
7332
- state?: string | undefined;
7333
- updatedAt?: string | undefined;
7334
- }>, "many">;
7335
- }, "strip", z.ZodTypeAny, {
7336
- pullRequests: {
7337
- number?: number | undefined;
7338
- description?: string | undefined;
7339
- user?: {
7340
- login?: string | undefined;
7624
+ contents?: {
7625
+ number?: number | undefined;
7626
+ description?: string | undefined;
7627
+ user?: {
7628
+ login?: string | undefined;
7629
+ } | undefined;
7630
+ url?: string | undefined;
7631
+ title?: string | undefined;
7632
+ createdAt?: string | undefined;
7633
+ state?: string | undefined;
7634
+ updatedAt?: string | undefined;
7341
7635
  } | undefined;
7342
- title?: string | undefined;
7636
+ }>, "many">>;
7637
+ }, "strip", z.ZodTypeAny, {
7638
+ success: boolean;
7639
+ error?: string | undefined;
7640
+ results?: {
7641
+ name?: string | undefined;
7343
7642
  url?: string | undefined;
7344
- createdAt?: string | undefined;
7345
- state?: string | undefined;
7346
- updatedAt?: string | undefined;
7347
- }[];
7348
- }, {
7349
- pullRequests: {
7350
- number?: number | undefined;
7351
- description?: string | undefined;
7352
- user?: {
7353
- login?: string | undefined;
7643
+ contents?: {
7644
+ number?: number | undefined;
7645
+ description?: string | undefined;
7646
+ user?: {
7647
+ login?: string | undefined;
7648
+ } | undefined;
7649
+ url?: string | undefined;
7650
+ title?: string | undefined;
7651
+ createdAt?: string | undefined;
7652
+ state?: string | undefined;
7653
+ updatedAt?: string | undefined;
7354
7654
  } | undefined;
7355
- title?: string | undefined;
7655
+ }[] | undefined;
7656
+ }, {
7657
+ success: boolean;
7658
+ error?: string | undefined;
7659
+ results?: {
7660
+ name?: string | undefined;
7356
7661
  url?: string | undefined;
7357
- createdAt?: string | undefined;
7358
- state?: string | undefined;
7359
- updatedAt?: string | undefined;
7360
- }[];
7361
- }>;
7362
- export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
7363
- export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
7364
- export declare const githubGetPullRequestDetailsParamsSchema: z.ZodObject<{
7365
- repositoryOwner: z.ZodString;
7662
+ contents?: {
7663
+ number?: number | undefined;
7664
+ description?: string | undefined;
7665
+ user?: {
7666
+ login?: string | undefined;
7667
+ } | undefined;
7668
+ url?: string | undefined;
7669
+ title?: string | undefined;
7670
+ createdAt?: string | undefined;
7671
+ state?: string | undefined;
7672
+ updatedAt?: string | undefined;
7673
+ } | undefined;
7674
+ }[] | undefined;
7675
+ }>;
7676
+ export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
7677
+ export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
7678
+ export declare const githubGetPullRequestDetailsParamsSchema: z.ZodObject<{
7679
+ repositoryOwner: z.ZodString;
7366
7680
  repositoryName: z.ZodString;
7367
7681
  pullRequestNumber: z.ZodNumber;
7368
7682
  }, "strip", z.ZodTypeAny, {
@@ -7544,8 +7858,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7544
7858
  }, "strip", z.ZodTypeAny, {
7545
7859
  number?: number | undefined;
7546
7860
  description?: string | null | undefined;
7547
- title?: string | undefined;
7548
7861
  url?: string | undefined;
7862
+ title?: string | undefined;
7549
7863
  createdAt?: string | undefined;
7550
7864
  head?: {
7551
7865
  sha?: string | undefined;
@@ -7571,12 +7885,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7571
7885
  } | undefined;
7572
7886
  state?: "open" | "closed" | "merged" | undefined;
7573
7887
  merged?: boolean | undefined;
7574
- htmlUrl?: string | undefined;
7575
7888
  commits?: number | undefined;
7576
7889
  author?: {
7577
7890
  login?: string | undefined;
7578
7891
  } | undefined;
7579
7892
  updatedAt?: string | undefined;
7893
+ htmlUrl?: string | undefined;
7580
7894
  draft?: boolean | undefined;
7581
7895
  closedAt?: string | null | undefined;
7582
7896
  mergedAt?: string | null | undefined;
@@ -7605,8 +7919,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7605
7919
  }, {
7606
7920
  number?: number | undefined;
7607
7921
  description?: string | null | undefined;
7608
- title?: string | undefined;
7609
7922
  url?: string | undefined;
7923
+ title?: string | undefined;
7610
7924
  createdAt?: string | undefined;
7611
7925
  head?: {
7612
7926
  sha?: string | undefined;
@@ -7632,12 +7946,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7632
7946
  } | undefined;
7633
7947
  state?: "open" | "closed" | "merged" | undefined;
7634
7948
  merged?: boolean | undefined;
7635
- htmlUrl?: string | undefined;
7636
7949
  commits?: number | undefined;
7637
7950
  author?: {
7638
7951
  login?: string | undefined;
7639
7952
  } | undefined;
7640
7953
  updatedAt?: string | undefined;
7954
+ htmlUrl?: string | undefined;
7641
7955
  draft?: boolean | undefined;
7642
7956
  closedAt?: string | null | undefined;
7643
7957
  mergedAt?: string | null | undefined;
@@ -7670,8 +7984,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7670
7984
  pullRequest?: {
7671
7985
  number?: number | undefined;
7672
7986
  description?: string | null | undefined;
7673
- title?: string | undefined;
7674
7987
  url?: string | undefined;
7988
+ title?: string | undefined;
7675
7989
  createdAt?: string | undefined;
7676
7990
  head?: {
7677
7991
  sha?: string | undefined;
@@ -7697,12 +8011,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7697
8011
  } | undefined;
7698
8012
  state?: "open" | "closed" | "merged" | undefined;
7699
8013
  merged?: boolean | undefined;
7700
- htmlUrl?: string | undefined;
7701
8014
  commits?: number | undefined;
7702
8015
  author?: {
7703
8016
  login?: string | undefined;
7704
8017
  } | undefined;
7705
8018
  updatedAt?: string | undefined;
8019
+ htmlUrl?: string | undefined;
7706
8020
  draft?: boolean | undefined;
7707
8021
  closedAt?: string | null | undefined;
7708
8022
  mergedAt?: string | null | undefined;
@@ -7735,8 +8049,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7735
8049
  pullRequest?: {
7736
8050
  number?: number | undefined;
7737
8051
  description?: string | null | undefined;
7738
- title?: string | undefined;
7739
8052
  url?: string | undefined;
8053
+ title?: string | undefined;
7740
8054
  createdAt?: string | undefined;
7741
8055
  head?: {
7742
8056
  sha?: string | undefined;
@@ -7762,12 +8076,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7762
8076
  } | undefined;
7763
8077
  state?: "open" | "closed" | "merged" | undefined;
7764
8078
  merged?: boolean | undefined;
7765
- htmlUrl?: string | undefined;
7766
8079
  commits?: number | undefined;
7767
8080
  author?: {
7768
8081
  login?: string | undefined;
7769
8082
  } | undefined;
7770
8083
  updatedAt?: string | undefined;
8084
+ htmlUrl?: string | undefined;
7771
8085
  draft?: boolean | undefined;
7772
8086
  closedAt?: string | null | undefined;
7773
8087
  mergedAt?: string | null | undefined;
@@ -7814,24 +8128,70 @@ export type githubGetFileContentParamsType = z.infer<typeof githubGetFileContent
7814
8128
  export declare const githubGetFileContentOutputSchema: z.ZodObject<{
7815
8129
  success: z.ZodBoolean;
7816
8130
  error: z.ZodOptional<z.ZodString>;
7817
- content: z.ZodOptional<z.ZodString>;
7818
- size: z.ZodOptional<z.ZodNumber>;
7819
- name: z.ZodOptional<z.ZodString>;
7820
- htmlUrl: z.ZodOptional<z.ZodString>;
8131
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
8132
+ name: z.ZodOptional<z.ZodString>;
8133
+ url: z.ZodOptional<z.ZodString>;
8134
+ contents: z.ZodOptional<z.ZodObject<{
8135
+ content: z.ZodOptional<z.ZodString>;
8136
+ size: z.ZodOptional<z.ZodNumber>;
8137
+ name: z.ZodOptional<z.ZodString>;
8138
+ htmlUrl: z.ZodOptional<z.ZodString>;
8139
+ }, "strip", z.ZodTypeAny, {
8140
+ name?: string | undefined;
8141
+ content?: string | undefined;
8142
+ size?: number | undefined;
8143
+ htmlUrl?: string | undefined;
8144
+ }, {
8145
+ name?: string | undefined;
8146
+ content?: string | undefined;
8147
+ size?: number | undefined;
8148
+ htmlUrl?: string | undefined;
8149
+ }>>;
8150
+ }, "strip", z.ZodTypeAny, {
8151
+ name?: string | undefined;
8152
+ url?: string | undefined;
8153
+ contents?: {
8154
+ name?: string | undefined;
8155
+ content?: string | undefined;
8156
+ size?: number | undefined;
8157
+ htmlUrl?: string | undefined;
8158
+ } | undefined;
8159
+ }, {
8160
+ name?: string | undefined;
8161
+ url?: string | undefined;
8162
+ contents?: {
8163
+ name?: string | undefined;
8164
+ content?: string | undefined;
8165
+ size?: number | undefined;
8166
+ htmlUrl?: string | undefined;
8167
+ } | undefined;
8168
+ }>, "many">>;
7821
8169
  }, "strip", z.ZodTypeAny, {
7822
8170
  success: boolean;
7823
- name?: string | undefined;
7824
8171
  error?: string | undefined;
7825
- content?: string | undefined;
7826
- size?: number | undefined;
7827
- htmlUrl?: string | undefined;
8172
+ results?: {
8173
+ name?: string | undefined;
8174
+ url?: string | undefined;
8175
+ contents?: {
8176
+ name?: string | undefined;
8177
+ content?: string | undefined;
8178
+ size?: number | undefined;
8179
+ htmlUrl?: string | undefined;
8180
+ } | undefined;
8181
+ }[] | undefined;
7828
8182
  }, {
7829
8183
  success: boolean;
7830
- name?: string | undefined;
7831
8184
  error?: string | undefined;
7832
- content?: string | undefined;
7833
- size?: number | undefined;
7834
- htmlUrl?: string | undefined;
8185
+ results?: {
8186
+ name?: string | undefined;
8187
+ url?: string | undefined;
8188
+ contents?: {
8189
+ name?: string | undefined;
8190
+ content?: string | undefined;
8191
+ size?: number | undefined;
8192
+ htmlUrl?: string | undefined;
8193
+ } | undefined;
8194
+ }[] | undefined;
7835
8195
  }>;
7836
8196
  export type githubGetFileContentOutputType = z.infer<typeof githubGetFileContentOutputSchema>;
7837
8197
  export type githubGetFileContentFunction = ActionFunction<githubGetFileContentParamsType, AuthParamsType, githubGetFileContentOutputType>;
@@ -7852,44 +8212,62 @@ export type githubListDirectoryParamsType = z.infer<typeof githubListDirectoryPa
7852
8212
  export declare const githubListDirectoryOutputSchema: z.ZodObject<{
7853
8213
  success: z.ZodBoolean;
7854
8214
  error: z.ZodOptional<z.ZodString>;
7855
- content: z.ZodOptional<z.ZodArray<z.ZodObject<{
8215
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
7856
8216
  name: z.ZodString;
7857
- path: z.ZodString;
7858
- type: z.ZodString;
7859
- size: z.ZodNumber;
7860
- htmlUrl: z.ZodString;
8217
+ url: z.ZodString;
8218
+ contents: z.ZodObject<{
8219
+ path: z.ZodString;
8220
+ type: z.ZodString;
8221
+ size: z.ZodNumber;
8222
+ }, "strip", z.ZodTypeAny, {
8223
+ type: string;
8224
+ path: string;
8225
+ size: number;
8226
+ }, {
8227
+ type: string;
8228
+ path: string;
8229
+ size: number;
8230
+ }>;
7861
8231
  }, "strip", z.ZodTypeAny, {
7862
- type: string;
7863
- path: string;
7864
8232
  name: string;
7865
- size: number;
7866
- htmlUrl: string;
8233
+ url: string;
8234
+ contents: {
8235
+ type: string;
8236
+ path: string;
8237
+ size: number;
8238
+ };
7867
8239
  }, {
7868
- type: string;
7869
- path: string;
7870
8240
  name: string;
7871
- size: number;
7872
- htmlUrl: string;
8241
+ url: string;
8242
+ contents: {
8243
+ type: string;
8244
+ path: string;
8245
+ size: number;
8246
+ };
7873
8247
  }>, "many">>;
7874
8248
  }, "strip", z.ZodTypeAny, {
7875
8249
  success: boolean;
7876
8250
  error?: string | undefined;
7877
- content?: {
7878
- type: string;
7879
- path: string;
8251
+ results?: {
7880
8252
  name: string;
7881
- size: number;
7882
- htmlUrl: string;
8253
+ url: string;
8254
+ contents: {
8255
+ type: string;
8256
+ path: string;
8257
+ size: number;
8258
+ };
7883
8259
  }[] | undefined;
7884
8260
  }, {
7885
8261
  success: boolean;
7886
8262
  error?: string | undefined;
7887
- content?: {
7888
- type: string;
7889
- path: string;
8263
+ results?: {
7890
8264
  name: string;
7891
- size: number;
7892
- htmlUrl: string;
8265
+ url: string;
8266
+ contents: {
8267
+ type: string;
8268
+ path: string;
8269
+ size: number;
8270
+ };
7893
8271
  }[] | undefined;
7894
8272
  }>;
7895
8273
  export type githubListDirectoryOutputType = z.infer<typeof githubListDirectoryOutputSchema>;
@@ -8185,264 +8563,42 @@ export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
8185
8563
  }>;
8186
8564
  export type githubSearchOrganizationParamsType = z.infer<typeof githubSearchOrganizationParamsSchema>;
8187
8565
  export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
8188
- code: z.ZodArray<z.ZodObject<{
8566
+ success: z.ZodBoolean;
8567
+ error: z.ZodOptional<z.ZodString>;
8568
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
8189
8569
  name: z.ZodString;
8190
- path: z.ZodString;
8191
- sha: z.ZodString;
8192
8570
  url: z.ZodString;
8193
- score: z.ZodNumber;
8194
- textMatches: z.ZodArray<z.ZodObject<{
8195
- object_url: z.ZodOptional<z.ZodString>;
8196
- object_type: z.ZodOptional<z.ZodString>;
8197
- fragment: z.ZodOptional<z.ZodString>;
8198
- matches: z.ZodArray<z.ZodObject<{
8199
- text: z.ZodOptional<z.ZodString>;
8200
- indices: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
8201
- }, "strip", z.ZodTypeAny, {
8202
- text?: string | undefined;
8203
- indices?: number[] | undefined;
8204
- }, {
8205
- text?: string | undefined;
8206
- indices?: number[] | undefined;
8207
- }>, "many">;
8208
- }, "strip", z.ZodTypeAny, {
8209
- matches: {
8210
- text?: string | undefined;
8211
- indices?: number[] | undefined;
8212
- }[];
8213
- object_url?: string | undefined;
8214
- object_type?: string | undefined;
8215
- fragment?: string | undefined;
8216
- }, {
8217
- matches: {
8218
- text?: string | undefined;
8219
- indices?: number[] | undefined;
8220
- }[];
8221
- object_url?: string | undefined;
8222
- object_type?: string | undefined;
8223
- fragment?: string | undefined;
8224
- }>, "many">;
8571
+ type: z.ZodEnum<["code", "commit", "issueOrPullRequest"]>;
8572
+ content: z.ZodEffects<z.ZodAny, any, any>;
8225
8573
  }, "strip", z.ZodTypeAny, {
8226
- path: string;
8574
+ type: "code" | "commit" | "issueOrPullRequest";
8227
8575
  name: string;
8228
8576
  url: string;
8229
- sha: string;
8230
- score: number;
8231
- textMatches: {
8232
- matches: {
8233
- text?: string | undefined;
8234
- indices?: number[] | undefined;
8235
- }[];
8236
- object_url?: string | undefined;
8237
- object_type?: string | undefined;
8238
- fragment?: string | undefined;
8239
- }[];
8577
+ content?: any;
8240
8578
  }, {
8241
- path: string;
8579
+ type: "code" | "commit" | "issueOrPullRequest";
8242
8580
  name: string;
8243
8581
  url: string;
8244
- sha: string;
8245
- score: number;
8246
- textMatches: {
8247
- matches: {
8248
- text?: string | undefined;
8249
- indices?: number[] | undefined;
8250
- }[];
8251
- object_url?: string | undefined;
8252
- object_type?: string | undefined;
8253
- fragment?: string | undefined;
8254
- }[];
8255
- }>, "many">;
8256
- commits: z.ZodArray<z.ZodObject<{
8257
- sha: z.ZodString;
8258
- url: z.ZodString;
8259
- commit: z.ZodOptional<z.ZodObject<{
8260
- author: z.ZodObject<{
8261
- name: z.ZodString;
8262
- email: z.ZodString;
8263
- date: z.ZodString;
8264
- }, "strip", z.ZodTypeAny, {
8265
- date: string;
8266
- name: string;
8267
- email: string;
8268
- }, {
8269
- date: string;
8270
- name: string;
8271
- email: string;
8272
- }>;
8273
- message: z.ZodString;
8274
- }, "strip", z.ZodTypeAny, {
8275
- message: string;
8276
- author: {
8277
- date: string;
8278
- name: string;
8279
- email: string;
8280
- };
8281
- }, {
8282
- message: string;
8283
- author: {
8284
- date: string;
8285
- name: string;
8286
- email: string;
8287
- };
8288
- }>>;
8289
- }, "strip", z.ZodTypeAny, {
8582
+ content?: any;
8583
+ }>, "many">>;
8584
+ }, "strip", z.ZodTypeAny, {
8585
+ success: boolean;
8586
+ error?: string | undefined;
8587
+ results?: {
8588
+ type: "code" | "commit" | "issueOrPullRequest";
8589
+ name: string;
8290
8590
  url: string;
8291
- sha: string;
8292
- commit?: {
8293
- message: string;
8294
- author: {
8295
- date: string;
8296
- name: string;
8297
- email: string;
8298
- };
8299
- } | undefined;
8300
- }, {
8591
+ content?: any;
8592
+ }[] | undefined;
8593
+ }, {
8594
+ success: boolean;
8595
+ error?: string | undefined;
8596
+ results?: {
8597
+ type: "code" | "commit" | "issueOrPullRequest";
8598
+ name: string;
8301
8599
  url: string;
8302
- sha: string;
8303
- commit?: {
8304
- message: string;
8305
- author: {
8306
- date: string;
8307
- name: string;
8308
- email: string;
8309
- };
8310
- } | undefined;
8311
- }>, "many">;
8312
- issuesAndPullRequests: z.ZodArray<z.ZodObject<{
8313
- number: z.ZodOptional<z.ZodNumber>;
8314
- title: z.ZodString;
8315
- html_url: z.ZodOptional<z.ZodString>;
8316
- state: z.ZodEnum<["open", "closed"]>;
8317
- isPullRequest: z.ZodOptional<z.ZodBoolean>;
8318
- body: z.ZodOptional<z.ZodString>;
8319
- score: z.ZodOptional<z.ZodNumber>;
8320
- files: z.ZodOptional<z.ZodArray<z.ZodObject<{
8321
- filename: z.ZodString;
8322
- status: z.ZodString;
8323
- patch: z.ZodOptional<z.ZodString>;
8324
- }, "strip", z.ZodTypeAny, {
8325
- status: string;
8326
- filename: string;
8327
- patch?: string | undefined;
8328
- }, {
8329
- status: string;
8330
- filename: string;
8331
- patch?: string | undefined;
8332
- }>, "many">>;
8333
- }, "strip", z.ZodTypeAny, {
8334
- title: string;
8335
- state: "open" | "closed";
8336
- number?: number | undefined;
8337
- body?: string | undefined;
8338
- files?: {
8339
- status: string;
8340
- filename: string;
8341
- patch?: string | undefined;
8342
- }[] | undefined;
8343
- score?: number | undefined;
8344
- html_url?: string | undefined;
8345
- isPullRequest?: boolean | undefined;
8346
- }, {
8347
- title: string;
8348
- state: "open" | "closed";
8349
- number?: number | undefined;
8350
- body?: string | undefined;
8351
- files?: {
8352
- status: string;
8353
- filename: string;
8354
- patch?: string | undefined;
8355
- }[] | undefined;
8356
- score?: number | undefined;
8357
- html_url?: string | undefined;
8358
- isPullRequest?: boolean | undefined;
8359
- }>, "many">;
8360
- }, "strip", z.ZodTypeAny, {
8361
- code: {
8362
- path: string;
8363
- name: string;
8364
- url: string;
8365
- sha: string;
8366
- score: number;
8367
- textMatches: {
8368
- matches: {
8369
- text?: string | undefined;
8370
- indices?: number[] | undefined;
8371
- }[];
8372
- object_url?: string | undefined;
8373
- object_type?: string | undefined;
8374
- fragment?: string | undefined;
8375
- }[];
8376
- }[];
8377
- commits: {
8378
- url: string;
8379
- sha: string;
8380
- commit?: {
8381
- message: string;
8382
- author: {
8383
- date: string;
8384
- name: string;
8385
- email: string;
8386
- };
8387
- } | undefined;
8388
- }[];
8389
- issuesAndPullRequests: {
8390
- title: string;
8391
- state: "open" | "closed";
8392
- number?: number | undefined;
8393
- body?: string | undefined;
8394
- files?: {
8395
- status: string;
8396
- filename: string;
8397
- patch?: string | undefined;
8398
- }[] | undefined;
8399
- score?: number | undefined;
8400
- html_url?: string | undefined;
8401
- isPullRequest?: boolean | undefined;
8402
- }[];
8403
- }, {
8404
- code: {
8405
- path: string;
8406
- name: string;
8407
- url: string;
8408
- sha: string;
8409
- score: number;
8410
- textMatches: {
8411
- matches: {
8412
- text?: string | undefined;
8413
- indices?: number[] | undefined;
8414
- }[];
8415
- object_url?: string | undefined;
8416
- object_type?: string | undefined;
8417
- fragment?: string | undefined;
8418
- }[];
8419
- }[];
8420
- commits: {
8421
- url: string;
8422
- sha: string;
8423
- commit?: {
8424
- message: string;
8425
- author: {
8426
- date: string;
8427
- name: string;
8428
- email: string;
8429
- };
8430
- } | undefined;
8431
- }[];
8432
- issuesAndPullRequests: {
8433
- title: string;
8434
- state: "open" | "closed";
8435
- number?: number | undefined;
8436
- body?: string | undefined;
8437
- files?: {
8438
- status: string;
8439
- filename: string;
8440
- patch?: string | undefined;
8441
- }[] | undefined;
8442
- score?: number | undefined;
8443
- html_url?: string | undefined;
8444
- isPullRequest?: boolean | undefined;
8445
- }[];
8600
+ content?: any;
8601
+ }[] | undefined;
8446
8602
  }>;
8447
8603
  export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
8448
8604
  export type githubSearchOrganizationFunction = ActionFunction<githubSearchOrganizationParamsType, AuthParamsType, githubSearchOrganizationOutputType>;
@@ -9127,16 +9283,15 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9127
9283
  htmlUrl: z.ZodString;
9128
9284
  }, "strip", z.ZodTypeAny, {
9129
9285
  url: string;
9130
- htmlUrl: string;
9131
9286
  sha: string;
9287
+ htmlUrl: string;
9132
9288
  }, {
9133
9289
  url: string;
9134
- htmlUrl: string;
9135
9290
  sha: string;
9291
+ htmlUrl: string;
9136
9292
  }>, "many">>;
9137
9293
  }, "strip", z.ZodTypeAny, {
9138
9294
  url: string;
9139
- htmlUrl: string;
9140
9295
  sha: string;
9141
9296
  author: {
9142
9297
  login?: string | undefined;
@@ -9159,14 +9314,14 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9159
9314
  };
9160
9315
  commentCount?: number | undefined;
9161
9316
  };
9317
+ htmlUrl: string;
9162
9318
  parents?: {
9163
9319
  url: string;
9164
- htmlUrl: string;
9165
9320
  sha: string;
9321
+ htmlUrl: string;
9166
9322
  }[] | undefined;
9167
9323
  }, {
9168
9324
  url: string;
9169
- htmlUrl: string;
9170
9325
  sha: string;
9171
9326
  author: {
9172
9327
  login?: string | undefined;
@@ -9189,10 +9344,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9189
9344
  };
9190
9345
  commentCount?: number | undefined;
9191
9346
  };
9347
+ htmlUrl: string;
9192
9348
  parents?: {
9193
9349
  url: string;
9194
- htmlUrl: string;
9195
9350
  sha: string;
9351
+ htmlUrl: string;
9196
9352
  }[] | undefined;
9197
9353
  }>, "many">>;
9198
9354
  totalCount: z.ZodOptional<z.ZodNumber>;
@@ -9202,7 +9358,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9202
9358
  error?: string | undefined;
9203
9359
  commits?: {
9204
9360
  url: string;
9205
- htmlUrl: string;
9206
9361
  sha: string;
9207
9362
  author: {
9208
9363
  login?: string | undefined;
@@ -9225,10 +9380,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9225
9380
  };
9226
9381
  commentCount?: number | undefined;
9227
9382
  };
9383
+ htmlUrl: string;
9228
9384
  parents?: {
9229
9385
  url: string;
9230
- htmlUrl: string;
9231
9386
  sha: string;
9387
+ htmlUrl: string;
9232
9388
  }[] | undefined;
9233
9389
  }[] | undefined;
9234
9390
  totalCount?: number | undefined;
@@ -9238,7 +9394,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9238
9394
  error?: string | undefined;
9239
9395
  commits?: {
9240
9396
  url: string;
9241
- htmlUrl: string;
9242
9397
  sha: string;
9243
9398
  author: {
9244
9399
  login?: string | undefined;
@@ -9261,10 +9416,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9261
9416
  };
9262
9417
  commentCount?: number | undefined;
9263
9418
  };
9419
+ htmlUrl: string;
9264
9420
  parents?: {
9265
9421
  url: string;
9266
- htmlUrl: string;
9267
9422
  sha: string;
9423
+ htmlUrl: string;
9268
9424
  }[] | undefined;
9269
9425
  }[] | undefined;
9270
9426
  totalCount?: number | undefined;
@@ -9422,365 +9578,41 @@ export declare const gitlabSearchGroupParamsSchema: z.ZodObject<{
9422
9578
  }>;
9423
9579
  export type gitlabSearchGroupParamsType = z.infer<typeof gitlabSearchGroupParamsSchema>;
9424
9580
  export declare const gitlabSearchGroupOutputSchema: z.ZodObject<{
9425
- mergeRequests: z.ZodArray<z.ZodObject<{
9426
- metadata: z.ZodObject<{
9427
- id: z.ZodNumber;
9428
- iid: z.ZodNumber;
9429
- project_id: z.ZodNumber;
9430
- title: z.ZodString;
9431
- web_url: z.ZodString;
9432
- description: z.ZodOptional<z.ZodString>;
9433
- author: z.ZodOptional<z.ZodObject<{
9434
- name: z.ZodOptional<z.ZodString>;
9435
- }, "strip", z.ZodTypeAny, {
9436
- name?: string | undefined;
9437
- }, {
9438
- name?: string | undefined;
9439
- }>>;
9440
- merged_at: z.ZodOptional<z.ZodString>;
9441
- }, "strip", z.ZodTypeAny, {
9442
- id: number;
9443
- title: string;
9444
- iid: number;
9445
- project_id: number;
9446
- web_url: string;
9447
- description?: string | undefined;
9448
- author?: {
9449
- name?: string | undefined;
9450
- } | undefined;
9451
- merged_at?: string | undefined;
9452
- }, {
9453
- id: number;
9454
- title: string;
9455
- iid: number;
9456
- project_id: number;
9457
- web_url: string;
9458
- description?: string | undefined;
9459
- author?: {
9460
- name?: string | undefined;
9461
- } | undefined;
9462
- merged_at?: string | undefined;
9463
- }>;
9464
- diffs: z.ZodArray<z.ZodObject<{
9465
- old_path: z.ZodString;
9466
- new_path: z.ZodString;
9467
- diff: z.ZodString;
9468
- new_file: z.ZodBoolean;
9469
- renamed_file: z.ZodBoolean;
9470
- deleted_file: z.ZodBoolean;
9471
- too_large: z.ZodOptional<z.ZodBoolean>;
9472
- }, "strip", z.ZodTypeAny, {
9473
- old_path: string;
9474
- new_path: string;
9475
- diff: string;
9476
- new_file: boolean;
9477
- renamed_file: boolean;
9478
- deleted_file: boolean;
9479
- too_large?: boolean | undefined;
9480
- }, {
9481
- old_path: string;
9482
- new_path: string;
9483
- diff: string;
9484
- new_file: boolean;
9485
- renamed_file: boolean;
9486
- deleted_file: boolean;
9487
- too_large?: boolean | undefined;
9488
- }>, "many">;
9489
- }, "strip", z.ZodTypeAny, {
9490
- metadata: {
9491
- id: number;
9492
- title: string;
9493
- iid: number;
9494
- project_id: number;
9495
- web_url: string;
9496
- description?: string | undefined;
9497
- author?: {
9498
- name?: string | undefined;
9499
- } | undefined;
9500
- merged_at?: string | undefined;
9501
- };
9502
- diffs: {
9503
- old_path: string;
9504
- new_path: string;
9505
- diff: string;
9506
- new_file: boolean;
9507
- renamed_file: boolean;
9508
- deleted_file: boolean;
9509
- too_large?: boolean | undefined;
9510
- }[];
9511
- }, {
9512
- metadata: {
9513
- id: number;
9514
- title: string;
9515
- iid: number;
9516
- project_id: number;
9517
- web_url: string;
9518
- description?: string | undefined;
9519
- author?: {
9520
- name?: string | undefined;
9521
- } | undefined;
9522
- merged_at?: string | undefined;
9523
- };
9524
- diffs: {
9525
- old_path: string;
9526
- new_path: string;
9527
- diff: string;
9528
- new_file: boolean;
9529
- renamed_file: boolean;
9530
- deleted_file: boolean;
9531
- too_large?: boolean | undefined;
9532
- }[];
9533
- }>, "many">;
9534
- blobs: z.ZodArray<z.ZodObject<{
9535
- metadata: z.ZodObject<{
9536
- path: z.ZodString;
9537
- basename: z.ZodString;
9538
- data: z.ZodString;
9539
- project_id: z.ZodNumber;
9540
- ref: z.ZodString;
9541
- startline: z.ZodNumber;
9542
- filename: z.ZodString;
9543
- web_url: z.ZodString;
9544
- }, "strip", z.ZodTypeAny, {
9545
- path: string;
9546
- data: string;
9547
- filename: string;
9548
- project_id: number;
9549
- web_url: string;
9550
- basename: string;
9551
- ref: string;
9552
- startline: number;
9553
- }, {
9554
- path: string;
9555
- data: string;
9556
- filename: string;
9557
- project_id: number;
9558
- web_url: string;
9559
- basename: string;
9560
- ref: string;
9561
- startline: number;
9562
- }>;
9563
- matchedMergeRequests: z.ZodOptional<z.ZodArray<z.ZodObject<{
9564
- title: z.ZodString;
9565
- web_url: z.ZodString;
9566
- author: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
9567
- merged_at: z.ZodOptional<z.ZodString>;
9568
- }, "strip", z.ZodTypeAny, {
9569
- title: string;
9570
- web_url: string;
9571
- author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
9572
- merged_at?: string | undefined;
9573
- }, {
9574
- title: string;
9575
- web_url: string;
9576
- author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
9577
- merged_at?: string | undefined;
9578
- }>, "many">>;
9579
- }, "strip", z.ZodTypeAny, {
9580
- metadata: {
9581
- path: string;
9582
- data: string;
9583
- filename: string;
9584
- project_id: number;
9585
- web_url: string;
9586
- basename: string;
9587
- ref: string;
9588
- startline: number;
9589
- };
9590
- matchedMergeRequests?: {
9591
- title: string;
9592
- web_url: string;
9593
- author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
9594
- merged_at?: string | undefined;
9595
- }[] | undefined;
9596
- }, {
9597
- metadata: {
9598
- path: string;
9599
- data: string;
9600
- filename: string;
9601
- project_id: number;
9602
- web_url: string;
9603
- basename: string;
9604
- ref: string;
9605
- startline: number;
9606
- };
9607
- matchedMergeRequests?: {
9608
- title: string;
9609
- web_url: string;
9610
- author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
9611
- merged_at?: string | undefined;
9612
- }[] | undefined;
9613
- }>, "many">;
9614
- commits: z.ZodOptional<z.ZodArray<z.ZodObject<{
9615
- sha: z.ZodString;
9616
- web_url: z.ZodString;
9617
- message: z.ZodString;
9618
- author: z.ZodObject<{
9619
- name: z.ZodString;
9620
- email: z.ZodString;
9621
- }, "strip", z.ZodTypeAny, {
9622
- name: string;
9623
- email: string;
9624
- }, {
9625
- name: string;
9626
- email: string;
9627
- }>;
9628
- created_at: z.ZodString;
9629
- files: z.ZodArray<z.ZodObject<{
9630
- old_path: z.ZodString;
9631
- new_path: z.ZodString;
9632
- diff: z.ZodString;
9633
- }, "strip", z.ZodTypeAny, {
9634
- old_path: string;
9635
- new_path: string;
9636
- diff: string;
9637
- }, {
9638
- old_path: string;
9639
- new_path: string;
9640
- diff: string;
9641
- }>, "many">;
9581
+ success: z.ZodBoolean;
9582
+ error: z.ZodOptional<z.ZodString>;
9583
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
9584
+ name: z.ZodString;
9585
+ url: z.ZodString;
9586
+ type: z.ZodEnum<["mergeRequest", "blob", "commit"]>;
9587
+ contents: z.ZodEffects<z.ZodAny, any, any>;
9642
9588
  }, "strip", z.ZodTypeAny, {
9643
- message: string;
9644
- created_at: string;
9645
- files: {
9646
- old_path: string;
9647
- new_path: string;
9648
- diff: string;
9649
- }[];
9650
- sha: string;
9651
- author: {
9652
- name: string;
9653
- email: string;
9654
- };
9655
- web_url: string;
9589
+ type: "commit" | "mergeRequest" | "blob";
9590
+ name: string;
9591
+ url: string;
9592
+ contents?: any;
9656
9593
  }, {
9657
- message: string;
9658
- created_at: string;
9659
- files: {
9660
- old_path: string;
9661
- new_path: string;
9662
- diff: string;
9663
- }[];
9664
- sha: string;
9665
- author: {
9666
- name: string;
9667
- email: string;
9668
- };
9669
- web_url: string;
9594
+ type: "commit" | "mergeRequest" | "blob";
9595
+ name: string;
9596
+ url: string;
9597
+ contents?: any;
9670
9598
  }>, "many">>;
9671
9599
  }, "strip", z.ZodTypeAny, {
9672
- mergeRequests: {
9673
- metadata: {
9674
- id: number;
9675
- title: string;
9676
- iid: number;
9677
- project_id: number;
9678
- web_url: string;
9679
- description?: string | undefined;
9680
- author?: {
9681
- name?: string | undefined;
9682
- } | undefined;
9683
- merged_at?: string | undefined;
9684
- };
9685
- diffs: {
9686
- old_path: string;
9687
- new_path: string;
9688
- diff: string;
9689
- new_file: boolean;
9690
- renamed_file: boolean;
9691
- deleted_file: boolean;
9692
- too_large?: boolean | undefined;
9693
- }[];
9694
- }[];
9695
- blobs: {
9696
- metadata: {
9697
- path: string;
9698
- data: string;
9699
- filename: string;
9700
- project_id: number;
9701
- web_url: string;
9702
- basename: string;
9703
- ref: string;
9704
- startline: number;
9705
- };
9706
- matchedMergeRequests?: {
9707
- title: string;
9708
- web_url: string;
9709
- author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
9710
- merged_at?: string | undefined;
9711
- }[] | undefined;
9712
- }[];
9713
- commits?: {
9714
- message: string;
9715
- created_at: string;
9716
- files: {
9717
- old_path: string;
9718
- new_path: string;
9719
- diff: string;
9720
- }[];
9721
- sha: string;
9722
- author: {
9723
- name: string;
9724
- email: string;
9725
- };
9726
- web_url: string;
9600
+ success: boolean;
9601
+ error?: string | undefined;
9602
+ results?: {
9603
+ type: "commit" | "mergeRequest" | "blob";
9604
+ name: string;
9605
+ url: string;
9606
+ contents?: any;
9727
9607
  }[] | undefined;
9728
9608
  }, {
9729
- mergeRequests: {
9730
- metadata: {
9731
- id: number;
9732
- title: string;
9733
- iid: number;
9734
- project_id: number;
9735
- web_url: string;
9736
- description?: string | undefined;
9737
- author?: {
9738
- name?: string | undefined;
9739
- } | undefined;
9740
- merged_at?: string | undefined;
9741
- };
9742
- diffs: {
9743
- old_path: string;
9744
- new_path: string;
9745
- diff: string;
9746
- new_file: boolean;
9747
- renamed_file: boolean;
9748
- deleted_file: boolean;
9749
- too_large?: boolean | undefined;
9750
- }[];
9751
- }[];
9752
- blobs: {
9753
- metadata: {
9754
- path: string;
9755
- data: string;
9756
- filename: string;
9757
- project_id: number;
9758
- web_url: string;
9759
- basename: string;
9760
- ref: string;
9761
- startline: number;
9762
- };
9763
- matchedMergeRequests?: {
9764
- title: string;
9765
- web_url: string;
9766
- author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
9767
- merged_at?: string | undefined;
9768
- }[] | undefined;
9769
- }[];
9770
- commits?: {
9771
- message: string;
9772
- created_at: string;
9773
- files: {
9774
- old_path: string;
9775
- new_path: string;
9776
- diff: string;
9777
- }[];
9778
- sha: string;
9779
- author: {
9780
- name: string;
9781
- email: string;
9782
- };
9783
- web_url: string;
9609
+ success: boolean;
9610
+ error?: string | undefined;
9611
+ results?: {
9612
+ type: "commit" | "mergeRequest" | "blob";
9613
+ name: string;
9614
+ url: string;
9615
+ contents?: any;
9784
9616
  }[] | undefined;
9785
9617
  }>;
9786
9618
  export type gitlabSearchGroupOutputType = z.infer<typeof gitlabSearchGroupOutputSchema>;
@@ -9802,24 +9634,70 @@ export type gitlabGetFileContentParamsType = z.infer<typeof gitlabGetFileContent
9802
9634
  export declare const gitlabGetFileContentOutputSchema: z.ZodObject<{
9803
9635
  success: z.ZodBoolean;
9804
9636
  error: z.ZodOptional<z.ZodString>;
9805
- content: z.ZodOptional<z.ZodString>;
9806
- size: z.ZodOptional<z.ZodNumber>;
9807
- name: z.ZodOptional<z.ZodString>;
9808
- htmlUrl: z.ZodOptional<z.ZodString>;
9637
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
9638
+ name: z.ZodString;
9639
+ url: z.ZodString;
9640
+ contents: z.ZodObject<{
9641
+ content: z.ZodString;
9642
+ size: z.ZodNumber;
9643
+ name: z.ZodString;
9644
+ htmlUrl: z.ZodString;
9645
+ }, "strip", z.ZodTypeAny, {
9646
+ name: string;
9647
+ content: string;
9648
+ size: number;
9649
+ htmlUrl: string;
9650
+ }, {
9651
+ name: string;
9652
+ content: string;
9653
+ size: number;
9654
+ htmlUrl: string;
9655
+ }>;
9656
+ }, "strip", z.ZodTypeAny, {
9657
+ name: string;
9658
+ url: string;
9659
+ contents: {
9660
+ name: string;
9661
+ content: string;
9662
+ size: number;
9663
+ htmlUrl: string;
9664
+ };
9665
+ }, {
9666
+ name: string;
9667
+ url: string;
9668
+ contents: {
9669
+ name: string;
9670
+ content: string;
9671
+ size: number;
9672
+ htmlUrl: string;
9673
+ };
9674
+ }>, "many">>;
9809
9675
  }, "strip", z.ZodTypeAny, {
9810
9676
  success: boolean;
9811
- name?: string | undefined;
9812
9677
  error?: string | undefined;
9813
- content?: string | undefined;
9814
- size?: number | undefined;
9815
- htmlUrl?: string | undefined;
9678
+ results?: {
9679
+ name: string;
9680
+ url: string;
9681
+ contents: {
9682
+ name: string;
9683
+ content: string;
9684
+ size: number;
9685
+ htmlUrl: string;
9686
+ };
9687
+ }[] | undefined;
9816
9688
  }, {
9817
9689
  success: boolean;
9818
- name?: string | undefined;
9819
9690
  error?: string | undefined;
9820
- content?: string | undefined;
9821
- size?: number | undefined;
9822
- htmlUrl?: string | undefined;
9691
+ results?: {
9692
+ name: string;
9693
+ url: string;
9694
+ contents: {
9695
+ name: string;
9696
+ content: string;
9697
+ size: number;
9698
+ htmlUrl: string;
9699
+ };
9700
+ }[] | undefined;
9823
9701
  }>;
9824
9702
  export type gitlabGetFileContentOutputType = z.infer<typeof gitlabGetFileContentOutputSchema>;
9825
9703
  export type gitlabGetFileContentFunction = ActionFunction<gitlabGetFileContentParamsType, AuthParamsType, gitlabGetFileContentOutputType>;
@@ -9841,41 +9719,79 @@ export declare const gitlabListDirectoryParamsSchema: z.ZodObject<{
9841
9719
  }>;
9842
9720
  export type gitlabListDirectoryParamsType = z.infer<typeof gitlabListDirectoryParamsSchema>;
9843
9721
  export declare const gitlabListDirectoryOutputSchema: z.ZodObject<{
9844
- content: z.ZodArray<z.ZodObject<{
9722
+ success: z.ZodBoolean;
9723
+ error: z.ZodOptional<z.ZodString>;
9724
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
9845
9725
  name: z.ZodString;
9846
- path: z.ZodString;
9847
- type: z.ZodString;
9848
- size: z.ZodOptional<z.ZodNumber>;
9849
- htmlUrl: z.ZodString;
9726
+ url: z.ZodString;
9727
+ contents: z.ZodObject<{
9728
+ name: z.ZodString;
9729
+ path: z.ZodString;
9730
+ type: z.ZodString;
9731
+ size: z.ZodOptional<z.ZodNumber>;
9732
+ htmlUrl: z.ZodString;
9733
+ }, "strip", z.ZodTypeAny, {
9734
+ type: string;
9735
+ path: string;
9736
+ name: string;
9737
+ htmlUrl: string;
9738
+ size?: number | undefined;
9739
+ }, {
9740
+ type: string;
9741
+ path: string;
9742
+ name: string;
9743
+ htmlUrl: string;
9744
+ size?: number | undefined;
9745
+ }>;
9850
9746
  }, "strip", z.ZodTypeAny, {
9851
- type: string;
9852
- path: string;
9853
9747
  name: string;
9854
- htmlUrl: string;
9855
- size?: number | undefined;
9748
+ url: string;
9749
+ contents: {
9750
+ type: string;
9751
+ path: string;
9752
+ name: string;
9753
+ htmlUrl: string;
9754
+ size?: number | undefined;
9755
+ };
9856
9756
  }, {
9857
- type: string;
9858
- path: string;
9859
9757
  name: string;
9860
- htmlUrl: string;
9861
- size?: number | undefined;
9862
- }>, "many">;
9758
+ url: string;
9759
+ contents: {
9760
+ type: string;
9761
+ path: string;
9762
+ name: string;
9763
+ htmlUrl: string;
9764
+ size?: number | undefined;
9765
+ };
9766
+ }>, "many">>;
9863
9767
  }, "strip", z.ZodTypeAny, {
9864
- content: {
9865
- type: string;
9866
- path: string;
9768
+ success: boolean;
9769
+ error?: string | undefined;
9770
+ results?: {
9867
9771
  name: string;
9868
- htmlUrl: string;
9869
- size?: number | undefined;
9870
- }[];
9772
+ url: string;
9773
+ contents: {
9774
+ type: string;
9775
+ path: string;
9776
+ name: string;
9777
+ htmlUrl: string;
9778
+ size?: number | undefined;
9779
+ };
9780
+ }[] | undefined;
9871
9781
  }, {
9872
- content: {
9873
- type: string;
9874
- path: string;
9782
+ success: boolean;
9783
+ error?: string | undefined;
9784
+ results?: {
9875
9785
  name: string;
9876
- htmlUrl: string;
9877
- size?: number | undefined;
9878
- }[];
9786
+ url: string;
9787
+ contents: {
9788
+ type: string;
9789
+ path: string;
9790
+ name: string;
9791
+ htmlUrl: string;
9792
+ size?: number | undefined;
9793
+ };
9794
+ }[] | undefined;
9879
9795
  }>;
9880
9796
  export type gitlabListDirectoryOutputType = z.infer<typeof gitlabListDirectoryOutputSchema>;
9881
9797
  export type gitlabListDirectoryFunction = ActionFunction<gitlabListDirectoryParamsType, AuthParamsType, gitlabListDirectoryOutputType>;
@@ -9950,12 +9866,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
9950
9866
  comment?: string | undefined;
9951
9867
  author_name?: string | undefined;
9952
9868
  }[] | undefined;
9869
+ url?: string | undefined;
9953
9870
  title?: string | undefined;
9954
9871
  project?: {
9955
9872
  name?: string | undefined;
9956
9873
  id?: string | undefined;
9957
9874
  } | undefined;
9958
- url?: string | undefined;
9959
9875
  state?: string | undefined;
9960
9876
  team?: {
9961
9877
  name?: string | undefined;
@@ -9973,12 +9889,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
9973
9889
  comment?: string | undefined;
9974
9890
  author_name?: string | undefined;
9975
9891
  }[] | undefined;
9892
+ url?: string | undefined;
9976
9893
  title?: string | undefined;
9977
9894
  project?: {
9978
9895
  name?: string | undefined;
9979
9896
  id?: string | undefined;
9980
9897
  } | undefined;
9981
- url?: string | undefined;
9982
9898
  state?: string | undefined;
9983
9899
  team?: {
9984
9900
  name?: string | undefined;
@@ -9999,12 +9915,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
9999
9915
  comment?: string | undefined;
10000
9916
  author_name?: string | undefined;
10001
9917
  }[] | undefined;
9918
+ url?: string | undefined;
10002
9919
  title?: string | undefined;
10003
9920
  project?: {
10004
9921
  name?: string | undefined;
10005
9922
  id?: string | undefined;
10006
9923
  } | undefined;
10007
- url?: string | undefined;
10008
9924
  state?: string | undefined;
10009
9925
  team?: {
10010
9926
  name?: string | undefined;
@@ -10026,12 +9942,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
10026
9942
  comment?: string | undefined;
10027
9943
  author_name?: string | undefined;
10028
9944
  }[] | undefined;
9945
+ url?: string | undefined;
10029
9946
  title?: string | undefined;
10030
9947
  project?: {
10031
9948
  name?: string | undefined;
10032
9949
  id?: string | undefined;
10033
9950
  } | undefined;
10034
- url?: string | undefined;
10035
9951
  state?: string | undefined;
10036
9952
  team?: {
10037
9953
  name?: string | undefined;
@@ -10129,13 +10045,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10129
10045
  comment?: string | undefined;
10130
10046
  author_name?: string | undefined;
10131
10047
  }[] | undefined;
10048
+ url?: string | undefined;
10132
10049
  title?: string | undefined;
10133
10050
  content?: string | undefined;
10134
10051
  project?: {
10135
10052
  name?: string | undefined;
10136
10053
  id?: string | undefined;
10137
10054
  } | undefined;
10138
- url?: string | undefined;
10139
10055
  createdAt?: string | undefined;
10140
10056
  priority?: number | undefined;
10141
10057
  state?: string | undefined;
@@ -10162,13 +10078,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10162
10078
  comment?: string | undefined;
10163
10079
  author_name?: string | undefined;
10164
10080
  }[] | undefined;
10081
+ url?: string | undefined;
10165
10082
  title?: string | undefined;
10166
10083
  content?: string | undefined;
10167
10084
  project?: {
10168
10085
  name?: string | undefined;
10169
10086
  id?: string | undefined;
10170
10087
  } | undefined;
10171
- url?: string | undefined;
10172
10088
  createdAt?: string | undefined;
10173
10089
  priority?: number | undefined;
10174
10090
  state?: string | undefined;
@@ -10199,13 +10115,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10199
10115
  comment?: string | undefined;
10200
10116
  author_name?: string | undefined;
10201
10117
  }[] | undefined;
10118
+ url?: string | undefined;
10202
10119
  title?: string | undefined;
10203
10120
  content?: string | undefined;
10204
10121
  project?: {
10205
10122
  name?: string | undefined;
10206
10123
  id?: string | undefined;
10207
10124
  } | undefined;
10208
- url?: string | undefined;
10209
10125
  createdAt?: string | undefined;
10210
10126
  priority?: number | undefined;
10211
10127
  state?: string | undefined;
@@ -10236,13 +10152,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10236
10152
  comment?: string | undefined;
10237
10153
  author_name?: string | undefined;
10238
10154
  }[] | undefined;
10155
+ url?: string | undefined;
10239
10156
  title?: string | undefined;
10240
10157
  content?: string | undefined;
10241
10158
  project?: {
10242
10159
  name?: string | undefined;
10243
10160
  id?: string | undefined;
10244
10161
  } | undefined;
10245
- url?: string | undefined;
10246
10162
  createdAt?: string | undefined;
10247
10163
  priority?: number | undefined;
10248
10164
  state?: string | undefined;
@@ -10301,8 +10217,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
10301
10217
  description?: string | undefined;
10302
10218
  name?: string | undefined;
10303
10219
  id?: string | undefined;
10304
- content?: string | undefined;
10305
10220
  url?: string | undefined;
10221
+ content?: string | undefined;
10306
10222
  creator?: {
10307
10223
  name?: string | undefined;
10308
10224
  id?: string | undefined;
@@ -10318,8 +10234,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
10318
10234
  description?: string | undefined;
10319
10235
  name?: string | undefined;
10320
10236
  id?: string | undefined;
10321
- content?: string | undefined;
10322
10237
  url?: string | undefined;
10238
+ content?: string | undefined;
10323
10239
  creator?: {
10324
10240
  name?: string | undefined;
10325
10241
  id?: string | undefined;
@@ -10339,8 +10255,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
10339
10255
  description?: string | undefined;
10340
10256
  name?: string | undefined;
10341
10257
  id?: string | undefined;
10342
- content?: string | undefined;
10343
10258
  url?: string | undefined;
10259
+ content?: string | undefined;
10344
10260
  creator?: {
10345
10261
  name?: string | undefined;
10346
10262
  id?: string | undefined;
@@ -10360,8 +10276,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
10360
10276
  description?: string | undefined;
10361
10277
  name?: string | undefined;
10362
10278
  id?: string | undefined;
10363
- content?: string | undefined;
10364
10279
  url?: string | undefined;
10280
+ content?: string | undefined;
10365
10281
  creator?: {
10366
10282
  name?: string | undefined;
10367
10283
  id?: string | undefined;
@@ -10452,8 +10368,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10452
10368
  description?: string | undefined;
10453
10369
  name?: string | undefined;
10454
10370
  id?: string | undefined;
10455
- content?: string | undefined;
10456
10371
  url?: string | undefined;
10372
+ content?: string | undefined;
10457
10373
  updates?: {
10458
10374
  id?: string | undefined;
10459
10375
  created_at?: string | undefined;
@@ -10481,8 +10397,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10481
10397
  description?: string | undefined;
10482
10398
  name?: string | undefined;
10483
10399
  id?: string | undefined;
10484
- content?: string | undefined;
10485
10400
  url?: string | undefined;
10401
+ content?: string | undefined;
10486
10402
  updates?: {
10487
10403
  id?: string | undefined;
10488
10404
  created_at?: string | undefined;
@@ -10514,8 +10430,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10514
10430
  description?: string | undefined;
10515
10431
  name?: string | undefined;
10516
10432
  id?: string | undefined;
10517
- content?: string | undefined;
10518
10433
  url?: string | undefined;
10434
+ content?: string | undefined;
10519
10435
  updates?: {
10520
10436
  id?: string | undefined;
10521
10437
  created_at?: string | undefined;
@@ -10547,8 +10463,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10547
10463
  description?: string | undefined;
10548
10464
  name?: string | undefined;
10549
10465
  id?: string | undefined;
10550
- content?: string | undefined;
10551
10466
  url?: string | undefined;
10467
+ content?: string | undefined;
10552
10468
  updates?: {
10553
10469
  id?: string | undefined;
10554
10470
  created_at?: string | undefined;