@credal/actions 0.2.127 → 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.
- package/dist/actions/autogen/templates.js +893 -587
- package/dist/actions/autogen/types.d.ts +854 -950
- package/dist/actions/autogen/types.js +358 -212
- package/dist/actions/providers/firecrawl/scrapeUrl.js +11 -4
- package/dist/actions/providers/github/getFileContent.js +13 -5
- package/dist/actions/providers/github/listDirectory.js +12 -11
- package/dist/actions/providers/github/listPullRequests.js +58 -30
- package/dist/actions/providers/github/searchOrganization.d.ts +1 -1
- package/dist/actions/providers/github/searchOrganization.js +26 -4
- package/dist/actions/providers/gitlab/getFileContent.js +15 -6
- package/dist/actions/providers/gitlab/listDirectory.js +10 -6
- package/dist/actions/providers/gitlab/searchGroup.js +84 -55
- package/dist/actions/providers/google-oauth/getDriveFileContentById.js +10 -1
- package/dist/actions/providers/google-oauth/searchDriveByKeywordsAndGetFileContent.js +12 -4
- package/dist/actions/providers/google-oauth/searchDriveByQueryAndGetFileContent.js +2 -1
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +9 -7
- package/dist/actions/providers/jira/getJiraTicketDetails.js +8 -1
- package/dist/actions/providers/salesforce/getSalesforceRecordsByQuery.js +10 -3
- package/dist/actions/providers/salesforce/searchSalesforceRecords.js +9 -7
- package/dist/actions/providers/slackUser/searchSlack.js +8 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
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
|
-
|
|
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
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
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
|
-
|
|
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
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
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
|
-
|
|
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
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
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
|
-
|
|
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
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
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
|
-
|
|
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>;
|
|
@@ -1346,15 +1392,43 @@ export type jiraGetJiraTicketDetailsParamsType = z.infer<typeof jiraGetJiraTicke
|
|
|
1346
1392
|
export declare const jiraGetJiraTicketDetailsOutputSchema: z.ZodObject<{
|
|
1347
1393
|
success: z.ZodBoolean;
|
|
1348
1394
|
error: z.ZodOptional<z.ZodString>;
|
|
1349
|
-
|
|
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">>;
|
|
1350
1412
|
}, "strip", z.ZodTypeAny, {
|
|
1351
1413
|
success: boolean;
|
|
1352
1414
|
error?: string | undefined;
|
|
1353
|
-
|
|
1415
|
+
results?: {
|
|
1416
|
+
name: string;
|
|
1417
|
+
url: string;
|
|
1418
|
+
contents: {} & {
|
|
1419
|
+
[k: string]: any;
|
|
1420
|
+
};
|
|
1421
|
+
}[] | undefined;
|
|
1354
1422
|
}, {
|
|
1355
1423
|
success: boolean;
|
|
1356
1424
|
error?: string | undefined;
|
|
1357
|
-
|
|
1425
|
+
results?: {
|
|
1426
|
+
name: string;
|
|
1427
|
+
url: string;
|
|
1428
|
+
contents: {} & {
|
|
1429
|
+
[k: string]: any;
|
|
1430
|
+
};
|
|
1431
|
+
}[] | undefined;
|
|
1358
1432
|
}>;
|
|
1359
1433
|
export type jiraGetJiraTicketDetailsOutputType = z.infer<typeof jiraGetJiraTicketDetailsOutputSchema>;
|
|
1360
1434
|
export type jiraGetJiraTicketDetailsFunction = ActionFunction<jiraGetJiraTicketDetailsParamsType, AuthParamsType, jiraGetJiraTicketDetailsOutputType>;
|
|
@@ -1461,8 +1535,10 @@ export declare const jiraGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
|
1461
1535
|
export type jiraGetJiraIssuesByQueryParamsType = z.infer<typeof jiraGetJiraIssuesByQueryParamsSchema>;
|
|
1462
1536
|
export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
1463
1537
|
success: z.ZodBoolean;
|
|
1464
|
-
|
|
1465
|
-
|
|
1538
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1539
|
+
name: z.ZodString;
|
|
1540
|
+
url: z.ZodString;
|
|
1541
|
+
contents: z.ZodObject<{
|
|
1466
1542
|
id: z.ZodString;
|
|
1467
1543
|
key: z.ZodString;
|
|
1468
1544
|
summary: z.ZodString;
|
|
@@ -1519,6 +1595,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1519
1595
|
};
|
|
1520
1596
|
description: string;
|
|
1521
1597
|
id: string;
|
|
1598
|
+
url: string;
|
|
1522
1599
|
summary: string;
|
|
1523
1600
|
issueType: {
|
|
1524
1601
|
name?: string | undefined;
|
|
@@ -1532,7 +1609,6 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1532
1609
|
};
|
|
1533
1610
|
created: string;
|
|
1534
1611
|
updated: string;
|
|
1535
|
-
url: string;
|
|
1536
1612
|
assignee?: string | null | undefined;
|
|
1537
1613
|
reporter?: string | null | undefined;
|
|
1538
1614
|
creator?: string | null | undefined;
|
|
@@ -1546,6 +1622,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1546
1622
|
};
|
|
1547
1623
|
description: string;
|
|
1548
1624
|
id: string;
|
|
1625
|
+
url: string;
|
|
1549
1626
|
summary: string;
|
|
1550
1627
|
issueType: {
|
|
1551
1628
|
name?: string | undefined;
|
|
@@ -1559,15 +1636,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1559
1636
|
};
|
|
1560
1637
|
created: string;
|
|
1561
1638
|
updated: string;
|
|
1562
|
-
url: string;
|
|
1563
1639
|
assignee?: string | null | undefined;
|
|
1564
1640
|
reporter?: string | null | undefined;
|
|
1565
1641
|
creator?: string | null | undefined;
|
|
1566
1642
|
resolution?: string | null | undefined;
|
|
1567
1643
|
dueDate?: string | null | undefined;
|
|
1568
|
-
}
|
|
1644
|
+
}>;
|
|
1569
1645
|
}, "strip", z.ZodTypeAny, {
|
|
1570
|
-
|
|
1646
|
+
name: string;
|
|
1647
|
+
url: string;
|
|
1648
|
+
contents: {
|
|
1571
1649
|
status: {
|
|
1572
1650
|
name?: string | undefined;
|
|
1573
1651
|
category?: string | undefined;
|
|
@@ -1575,6 +1653,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1575
1653
|
};
|
|
1576
1654
|
description: string;
|
|
1577
1655
|
id: string;
|
|
1656
|
+
url: string;
|
|
1578
1657
|
summary: string;
|
|
1579
1658
|
issueType: {
|
|
1580
1659
|
name?: string | undefined;
|
|
@@ -1588,15 +1667,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1588
1667
|
};
|
|
1589
1668
|
created: string;
|
|
1590
1669
|
updated: string;
|
|
1591
|
-
url: string;
|
|
1592
1670
|
assignee?: string | null | undefined;
|
|
1593
1671
|
reporter?: string | null | undefined;
|
|
1594
1672
|
creator?: string | null | undefined;
|
|
1595
1673
|
resolution?: string | null | undefined;
|
|
1596
1674
|
dueDate?: string | null | undefined;
|
|
1597
|
-
}
|
|
1675
|
+
};
|
|
1598
1676
|
}, {
|
|
1599
|
-
|
|
1677
|
+
name: string;
|
|
1678
|
+
url: string;
|
|
1679
|
+
contents: {
|
|
1600
1680
|
status: {
|
|
1601
1681
|
name?: string | undefined;
|
|
1602
1682
|
category?: string | undefined;
|
|
@@ -1604,6 +1684,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1604
1684
|
};
|
|
1605
1685
|
description: string;
|
|
1606
1686
|
id: string;
|
|
1687
|
+
url: string;
|
|
1607
1688
|
summary: string;
|
|
1608
1689
|
issueType: {
|
|
1609
1690
|
name?: string | undefined;
|
|
@@ -1617,20 +1698,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1617
1698
|
};
|
|
1618
1699
|
created: string;
|
|
1619
1700
|
updated: string;
|
|
1620
|
-
url: string;
|
|
1621
1701
|
assignee?: string | null | undefined;
|
|
1622
1702
|
reporter?: string | null | undefined;
|
|
1623
1703
|
creator?: string | null | undefined;
|
|
1624
1704
|
resolution?: string | null | undefined;
|
|
1625
1705
|
dueDate?: string | null | undefined;
|
|
1626
|
-
}
|
|
1627
|
-
}>>;
|
|
1706
|
+
};
|
|
1707
|
+
}>, "many">>;
|
|
1628
1708
|
error: z.ZodOptional<z.ZodString>;
|
|
1629
1709
|
}, "strip", z.ZodTypeAny, {
|
|
1630
1710
|
success: boolean;
|
|
1631
1711
|
error?: string | undefined;
|
|
1632
|
-
|
|
1633
|
-
|
|
1712
|
+
results?: {
|
|
1713
|
+
name: string;
|
|
1714
|
+
url: string;
|
|
1715
|
+
contents: {
|
|
1634
1716
|
status: {
|
|
1635
1717
|
name?: string | undefined;
|
|
1636
1718
|
category?: string | undefined;
|
|
@@ -1638,6 +1720,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1638
1720
|
};
|
|
1639
1721
|
description: string;
|
|
1640
1722
|
id: string;
|
|
1723
|
+
url: string;
|
|
1641
1724
|
summary: string;
|
|
1642
1725
|
issueType: {
|
|
1643
1726
|
name?: string | undefined;
|
|
@@ -1651,19 +1734,20 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1651
1734
|
};
|
|
1652
1735
|
created: string;
|
|
1653
1736
|
updated: string;
|
|
1654
|
-
url: string;
|
|
1655
1737
|
assignee?: string | null | undefined;
|
|
1656
1738
|
reporter?: string | null | undefined;
|
|
1657
1739
|
creator?: string | null | undefined;
|
|
1658
1740
|
resolution?: string | null | undefined;
|
|
1659
1741
|
dueDate?: string | null | undefined;
|
|
1660
|
-
}
|
|
1661
|
-
} | undefined;
|
|
1742
|
+
};
|
|
1743
|
+
}[] | undefined;
|
|
1662
1744
|
}, {
|
|
1663
1745
|
success: boolean;
|
|
1664
1746
|
error?: string | undefined;
|
|
1665
|
-
|
|
1666
|
-
|
|
1747
|
+
results?: {
|
|
1748
|
+
name: string;
|
|
1749
|
+
url: string;
|
|
1750
|
+
contents: {
|
|
1667
1751
|
status: {
|
|
1668
1752
|
name?: string | undefined;
|
|
1669
1753
|
category?: string | undefined;
|
|
@@ -1671,6 +1755,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1671
1755
|
};
|
|
1672
1756
|
description: string;
|
|
1673
1757
|
id: string;
|
|
1758
|
+
url: string;
|
|
1674
1759
|
summary: string;
|
|
1675
1760
|
issueType: {
|
|
1676
1761
|
name?: string | undefined;
|
|
@@ -1684,14 +1769,13 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1684
1769
|
};
|
|
1685
1770
|
created: string;
|
|
1686
1771
|
updated: string;
|
|
1687
|
-
url: string;
|
|
1688
1772
|
assignee?: string | null | undefined;
|
|
1689
1773
|
reporter?: string | null | undefined;
|
|
1690
1774
|
creator?: string | null | undefined;
|
|
1691
1775
|
resolution?: string | null | undefined;
|
|
1692
1776
|
dueDate?: string | null | undefined;
|
|
1693
|
-
}
|
|
1694
|
-
} | undefined;
|
|
1777
|
+
};
|
|
1778
|
+
}[] | undefined;
|
|
1695
1779
|
}>;
|
|
1696
1780
|
export type jiraGetJiraIssuesByQueryOutputType = z.infer<typeof jiraGetJiraIssuesByQueryOutputSchema>;
|
|
1697
1781
|
export type jiraGetJiraIssuesByQueryFunction = ActionFunction<jiraGetJiraIssuesByQueryParamsType, AuthParamsType, jiraGetJiraIssuesByQueryOutputType>;
|
|
@@ -1982,15 +2066,43 @@ export type jiraOrgGetJiraTicketDetailsParamsType = z.infer<typeof jiraOrgGetJir
|
|
|
1982
2066
|
export declare const jiraOrgGetJiraTicketDetailsOutputSchema: z.ZodObject<{
|
|
1983
2067
|
success: z.ZodBoolean;
|
|
1984
2068
|
error: z.ZodOptional<z.ZodString>;
|
|
1985
|
-
|
|
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">>;
|
|
1986
2086
|
}, "strip", z.ZodTypeAny, {
|
|
1987
2087
|
success: boolean;
|
|
1988
2088
|
error?: string | undefined;
|
|
1989
|
-
|
|
2089
|
+
results?: {
|
|
2090
|
+
name: string;
|
|
2091
|
+
url: string;
|
|
2092
|
+
contents: {} & {
|
|
2093
|
+
[k: string]: any;
|
|
2094
|
+
};
|
|
2095
|
+
}[] | undefined;
|
|
1990
2096
|
}, {
|
|
1991
2097
|
success: boolean;
|
|
1992
2098
|
error?: string | undefined;
|
|
1993
|
-
|
|
2099
|
+
results?: {
|
|
2100
|
+
name: string;
|
|
2101
|
+
url: string;
|
|
2102
|
+
contents: {} & {
|
|
2103
|
+
[k: string]: any;
|
|
2104
|
+
};
|
|
2105
|
+
}[] | undefined;
|
|
1994
2106
|
}>;
|
|
1995
2107
|
export type jiraOrgGetJiraTicketDetailsOutputType = z.infer<typeof jiraOrgGetJiraTicketDetailsOutputSchema>;
|
|
1996
2108
|
export type jiraOrgGetJiraTicketDetailsFunction = ActionFunction<jiraOrgGetJiraTicketDetailsParamsType, AuthParamsType, jiraOrgGetJiraTicketDetailsOutputType>;
|
|
@@ -2097,8 +2209,10 @@ export declare const jiraOrgGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
|
2097
2209
|
export type jiraOrgGetJiraIssuesByQueryParamsType = z.infer<typeof jiraOrgGetJiraIssuesByQueryParamsSchema>;
|
|
2098
2210
|
export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
2099
2211
|
success: z.ZodBoolean;
|
|
2100
|
-
|
|
2101
|
-
|
|
2212
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2213
|
+
name: z.ZodString;
|
|
2214
|
+
url: z.ZodString;
|
|
2215
|
+
contents: z.ZodObject<{
|
|
2102
2216
|
id: z.ZodString;
|
|
2103
2217
|
key: z.ZodString;
|
|
2104
2218
|
summary: z.ZodString;
|
|
@@ -2155,6 +2269,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2155
2269
|
};
|
|
2156
2270
|
description: string;
|
|
2157
2271
|
id: string;
|
|
2272
|
+
url: string;
|
|
2158
2273
|
summary: string;
|
|
2159
2274
|
issueType: {
|
|
2160
2275
|
name?: string | undefined;
|
|
@@ -2168,7 +2283,6 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2168
2283
|
};
|
|
2169
2284
|
created: string;
|
|
2170
2285
|
updated: string;
|
|
2171
|
-
url: string;
|
|
2172
2286
|
assignee?: string | null | undefined;
|
|
2173
2287
|
reporter?: string | null | undefined;
|
|
2174
2288
|
creator?: string | null | undefined;
|
|
@@ -2182,6 +2296,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2182
2296
|
};
|
|
2183
2297
|
description: string;
|
|
2184
2298
|
id: string;
|
|
2299
|
+
url: string;
|
|
2185
2300
|
summary: string;
|
|
2186
2301
|
issueType: {
|
|
2187
2302
|
name?: string | undefined;
|
|
@@ -2195,15 +2310,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2195
2310
|
};
|
|
2196
2311
|
created: string;
|
|
2197
2312
|
updated: string;
|
|
2198
|
-
url: string;
|
|
2199
2313
|
assignee?: string | null | undefined;
|
|
2200
2314
|
reporter?: string | null | undefined;
|
|
2201
2315
|
creator?: string | null | undefined;
|
|
2202
2316
|
resolution?: string | null | undefined;
|
|
2203
2317
|
dueDate?: string | null | undefined;
|
|
2204
|
-
}
|
|
2318
|
+
}>;
|
|
2205
2319
|
}, "strip", z.ZodTypeAny, {
|
|
2206
|
-
|
|
2320
|
+
name: string;
|
|
2321
|
+
url: string;
|
|
2322
|
+
contents: {
|
|
2207
2323
|
status: {
|
|
2208
2324
|
name?: string | undefined;
|
|
2209
2325
|
category?: string | undefined;
|
|
@@ -2211,6 +2327,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2211
2327
|
};
|
|
2212
2328
|
description: string;
|
|
2213
2329
|
id: string;
|
|
2330
|
+
url: string;
|
|
2214
2331
|
summary: string;
|
|
2215
2332
|
issueType: {
|
|
2216
2333
|
name?: string | undefined;
|
|
@@ -2224,15 +2341,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2224
2341
|
};
|
|
2225
2342
|
created: string;
|
|
2226
2343
|
updated: string;
|
|
2227
|
-
url: string;
|
|
2228
2344
|
assignee?: string | null | undefined;
|
|
2229
2345
|
reporter?: string | null | undefined;
|
|
2230
2346
|
creator?: string | null | undefined;
|
|
2231
2347
|
resolution?: string | null | undefined;
|
|
2232
2348
|
dueDate?: string | null | undefined;
|
|
2233
|
-
}
|
|
2349
|
+
};
|
|
2234
2350
|
}, {
|
|
2235
|
-
|
|
2351
|
+
name: string;
|
|
2352
|
+
url: string;
|
|
2353
|
+
contents: {
|
|
2236
2354
|
status: {
|
|
2237
2355
|
name?: string | undefined;
|
|
2238
2356
|
category?: string | undefined;
|
|
@@ -2240,6 +2358,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2240
2358
|
};
|
|
2241
2359
|
description: string;
|
|
2242
2360
|
id: string;
|
|
2361
|
+
url: string;
|
|
2243
2362
|
summary: string;
|
|
2244
2363
|
issueType: {
|
|
2245
2364
|
name?: string | undefined;
|
|
@@ -2253,20 +2372,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2253
2372
|
};
|
|
2254
2373
|
created: string;
|
|
2255
2374
|
updated: string;
|
|
2256
|
-
url: string;
|
|
2257
2375
|
assignee?: string | null | undefined;
|
|
2258
2376
|
reporter?: string | null | undefined;
|
|
2259
2377
|
creator?: string | null | undefined;
|
|
2260
2378
|
resolution?: string | null | undefined;
|
|
2261
2379
|
dueDate?: string | null | undefined;
|
|
2262
|
-
}
|
|
2263
|
-
}>>;
|
|
2380
|
+
};
|
|
2381
|
+
}>, "many">>;
|
|
2264
2382
|
error: z.ZodOptional<z.ZodString>;
|
|
2265
2383
|
}, "strip", z.ZodTypeAny, {
|
|
2266
2384
|
success: boolean;
|
|
2267
2385
|
error?: string | undefined;
|
|
2268
|
-
|
|
2269
|
-
|
|
2386
|
+
results?: {
|
|
2387
|
+
name: string;
|
|
2388
|
+
url: string;
|
|
2389
|
+
contents: {
|
|
2270
2390
|
status: {
|
|
2271
2391
|
name?: string | undefined;
|
|
2272
2392
|
category?: string | undefined;
|
|
@@ -2274,6 +2394,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2274
2394
|
};
|
|
2275
2395
|
description: string;
|
|
2276
2396
|
id: string;
|
|
2397
|
+
url: string;
|
|
2277
2398
|
summary: string;
|
|
2278
2399
|
issueType: {
|
|
2279
2400
|
name?: string | undefined;
|
|
@@ -2287,19 +2408,20 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2287
2408
|
};
|
|
2288
2409
|
created: string;
|
|
2289
2410
|
updated: string;
|
|
2290
|
-
url: string;
|
|
2291
2411
|
assignee?: string | null | undefined;
|
|
2292
2412
|
reporter?: string | null | undefined;
|
|
2293
2413
|
creator?: string | null | undefined;
|
|
2294
2414
|
resolution?: string | null | undefined;
|
|
2295
2415
|
dueDate?: string | null | undefined;
|
|
2296
|
-
}
|
|
2297
|
-
} | undefined;
|
|
2416
|
+
};
|
|
2417
|
+
}[] | undefined;
|
|
2298
2418
|
}, {
|
|
2299
2419
|
success: boolean;
|
|
2300
2420
|
error?: string | undefined;
|
|
2301
|
-
|
|
2302
|
-
|
|
2421
|
+
results?: {
|
|
2422
|
+
name: string;
|
|
2423
|
+
url: string;
|
|
2424
|
+
contents: {
|
|
2303
2425
|
status: {
|
|
2304
2426
|
name?: string | undefined;
|
|
2305
2427
|
category?: string | undefined;
|
|
@@ -2307,6 +2429,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2307
2429
|
};
|
|
2308
2430
|
description: string;
|
|
2309
2431
|
id: string;
|
|
2432
|
+
url: string;
|
|
2310
2433
|
summary: string;
|
|
2311
2434
|
issueType: {
|
|
2312
2435
|
name?: string | undefined;
|
|
@@ -2320,14 +2443,13 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2320
2443
|
};
|
|
2321
2444
|
created: string;
|
|
2322
2445
|
updated: string;
|
|
2323
|
-
url: string;
|
|
2324
2446
|
assignee?: string | null | undefined;
|
|
2325
2447
|
reporter?: string | null | undefined;
|
|
2326
2448
|
creator?: string | null | undefined;
|
|
2327
2449
|
resolution?: string | null | undefined;
|
|
2328
2450
|
dueDate?: string | null | undefined;
|
|
2329
|
-
}
|
|
2330
|
-
} | undefined;
|
|
2451
|
+
};
|
|
2452
|
+
}[] | undefined;
|
|
2331
2453
|
}>;
|
|
2332
2454
|
export type jiraOrgGetJiraIssuesByQueryOutputType = z.infer<typeof jiraOrgGetJiraIssuesByQueryOutputSchema>;
|
|
2333
2455
|
export type jiraOrgGetJiraIssuesByQueryFunction = ActionFunction<jiraOrgGetJiraIssuesByQueryParamsType, AuthParamsType, jiraOrgGetJiraIssuesByQueryOutputType>;
|
|
@@ -3127,26 +3249,26 @@ export declare const firecrawlDeepResearchOutputSchema: z.ZodObject<{
|
|
|
3127
3249
|
title: z.ZodString;
|
|
3128
3250
|
description: z.ZodOptional<z.ZodString>;
|
|
3129
3251
|
}, "strip", z.ZodTypeAny, {
|
|
3130
|
-
title: string;
|
|
3131
3252
|
url: string;
|
|
3253
|
+
title: string;
|
|
3132
3254
|
description?: string | undefined;
|
|
3133
3255
|
}, {
|
|
3134
|
-
title: string;
|
|
3135
3256
|
url: string;
|
|
3257
|
+
title: string;
|
|
3136
3258
|
description?: string | undefined;
|
|
3137
3259
|
}>, "many">;
|
|
3138
3260
|
}, "strip", z.ZodTypeAny, {
|
|
3139
3261
|
finalAnalysis: string;
|
|
3140
3262
|
sources: {
|
|
3141
|
-
title: string;
|
|
3142
3263
|
url: string;
|
|
3264
|
+
title: string;
|
|
3143
3265
|
description?: string | undefined;
|
|
3144
3266
|
}[];
|
|
3145
3267
|
}, {
|
|
3146
3268
|
finalAnalysis: string;
|
|
3147
3269
|
sources: {
|
|
3148
|
-
title: string;
|
|
3149
3270
|
url: string;
|
|
3271
|
+
title: string;
|
|
3150
3272
|
description?: string | undefined;
|
|
3151
3273
|
}[];
|
|
3152
3274
|
}>;
|
|
@@ -3170,11 +3292,37 @@ export declare const firecrawlScrapeUrlParamsSchema: z.ZodObject<{
|
|
|
3170
3292
|
}>;
|
|
3171
3293
|
export type firecrawlScrapeUrlParamsType = z.infer<typeof firecrawlScrapeUrlParamsSchema>;
|
|
3172
3294
|
export declare const firecrawlScrapeUrlOutputSchema: z.ZodObject<{
|
|
3173
|
-
|
|
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">>;
|
|
3174
3310
|
}, "strip", z.ZodTypeAny, {
|
|
3175
|
-
|
|
3311
|
+
success: boolean;
|
|
3312
|
+
error?: string | undefined;
|
|
3313
|
+
results?: {
|
|
3314
|
+
name: string;
|
|
3315
|
+
url: string;
|
|
3316
|
+
contents: string;
|
|
3317
|
+
}[] | undefined;
|
|
3176
3318
|
}, {
|
|
3177
|
-
|
|
3319
|
+
success: boolean;
|
|
3320
|
+
error?: string | undefined;
|
|
3321
|
+
results?: {
|
|
3322
|
+
name: string;
|
|
3323
|
+
url: string;
|
|
3324
|
+
contents: string;
|
|
3325
|
+
}[] | undefined;
|
|
3178
3326
|
}>;
|
|
3179
3327
|
export type firecrawlScrapeUrlOutputType = z.infer<typeof firecrawlScrapeUrlOutputSchema>;
|
|
3180
3328
|
export type firecrawlScrapeUrlFunction = ActionFunction<firecrawlScrapeUrlParamsType, AuthParamsType, firecrawlScrapeUrlOutputType>;
|
|
@@ -3198,25 +3346,25 @@ export declare const firecrawlSearchAndScrapeOutputSchema: z.ZodObject<{
|
|
|
3198
3346
|
title: z.ZodString;
|
|
3199
3347
|
contents: z.ZodString;
|
|
3200
3348
|
}, "strip", z.ZodTypeAny, {
|
|
3201
|
-
title: string;
|
|
3202
3349
|
url: string;
|
|
3203
3350
|
contents: string;
|
|
3204
|
-
}, {
|
|
3205
3351
|
title: string;
|
|
3352
|
+
}, {
|
|
3206
3353
|
url: string;
|
|
3207
3354
|
contents: string;
|
|
3355
|
+
title: string;
|
|
3208
3356
|
}>, "many">;
|
|
3209
3357
|
}, "strip", z.ZodTypeAny, {
|
|
3210
3358
|
results: {
|
|
3211
|
-
title: string;
|
|
3212
3359
|
url: string;
|
|
3213
3360
|
contents: string;
|
|
3361
|
+
title: string;
|
|
3214
3362
|
}[];
|
|
3215
3363
|
}, {
|
|
3216
3364
|
results: {
|
|
3217
|
-
title: string;
|
|
3218
3365
|
url: string;
|
|
3219
3366
|
contents: string;
|
|
3367
|
+
title: string;
|
|
3220
3368
|
}[];
|
|
3221
3369
|
}>;
|
|
3222
3370
|
export type firecrawlSearchAndScrapeOutputType = z.infer<typeof firecrawlSearchAndScrapeOutputSchema>;
|
|
@@ -3572,10 +3720,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3572
3720
|
status?: string | undefined;
|
|
3573
3721
|
description?: string | undefined;
|
|
3574
3722
|
id?: string | undefined;
|
|
3723
|
+
url?: string | undefined;
|
|
3575
3724
|
title?: string | undefined;
|
|
3576
3725
|
created?: string | undefined;
|
|
3577
3726
|
updated?: string | undefined;
|
|
3578
|
-
url?: string | undefined;
|
|
3579
3727
|
location?: string | undefined;
|
|
3580
3728
|
start?: string | undefined;
|
|
3581
3729
|
end?: string | undefined;
|
|
@@ -3595,10 +3743,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3595
3743
|
status?: string | undefined;
|
|
3596
3744
|
description?: string | undefined;
|
|
3597
3745
|
id?: string | undefined;
|
|
3746
|
+
url?: string | undefined;
|
|
3598
3747
|
title?: string | undefined;
|
|
3599
3748
|
created?: string | undefined;
|
|
3600
3749
|
updated?: string | undefined;
|
|
3601
|
-
url?: string | undefined;
|
|
3602
3750
|
location?: string | undefined;
|
|
3603
3751
|
start?: string | undefined;
|
|
3604
3752
|
end?: string | undefined;
|
|
@@ -3623,10 +3771,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3623
3771
|
status?: string | undefined;
|
|
3624
3772
|
description?: string | undefined;
|
|
3625
3773
|
id?: string | undefined;
|
|
3774
|
+
url?: string | undefined;
|
|
3626
3775
|
title?: string | undefined;
|
|
3627
3776
|
created?: string | undefined;
|
|
3628
3777
|
updated?: string | undefined;
|
|
3629
|
-
url?: string | undefined;
|
|
3630
3778
|
location?: string | undefined;
|
|
3631
3779
|
start?: string | undefined;
|
|
3632
3780
|
end?: string | undefined;
|
|
@@ -3651,10 +3799,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3651
3799
|
status?: string | undefined;
|
|
3652
3800
|
description?: string | undefined;
|
|
3653
3801
|
id?: string | undefined;
|
|
3802
|
+
url?: string | undefined;
|
|
3654
3803
|
title?: string | undefined;
|
|
3655
3804
|
created?: string | undefined;
|
|
3656
3805
|
updated?: string | undefined;
|
|
3657
|
-
url?: string | undefined;
|
|
3658
3806
|
location?: string | undefined;
|
|
3659
3807
|
start?: string | undefined;
|
|
3660
3808
|
end?: string | undefined;
|
|
@@ -4359,45 +4507,77 @@ export declare const googleOauthSearchDriveByKeywordsAndGetFileContentParamsSche
|
|
|
4359
4507
|
export type googleOauthSearchDriveByKeywordsAndGetFileContentParamsType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentParamsSchema>;
|
|
4360
4508
|
export declare const googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema: z.ZodObject<{
|
|
4361
4509
|
success: z.ZodBoolean;
|
|
4362
|
-
|
|
4363
|
-
id: z.ZodString;
|
|
4510
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4364
4511
|
name: z.ZodString;
|
|
4365
|
-
mimeType: z.ZodString;
|
|
4366
4512
|
url: z.ZodString;
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
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
|
+
}>;
|
|
4532
|
+
}, "strip", z.ZodTypeAny, {
|
|
4533
|
+
name: string;
|
|
4534
|
+
url: string;
|
|
4535
|
+
contents: {
|
|
4536
|
+
name: string;
|
|
4537
|
+
id: string;
|
|
4538
|
+
url: string;
|
|
4539
|
+
mimeType: string;
|
|
4540
|
+
content?: string | undefined;
|
|
4541
|
+
};
|
|
4374
4542
|
}, {
|
|
4375
4543
|
name: string;
|
|
4376
|
-
id: string;
|
|
4377
4544
|
url: string;
|
|
4378
|
-
|
|
4379
|
-
|
|
4545
|
+
contents: {
|
|
4546
|
+
name: string;
|
|
4547
|
+
id: string;
|
|
4548
|
+
url: string;
|
|
4549
|
+
mimeType: string;
|
|
4550
|
+
content?: string | undefined;
|
|
4551
|
+
};
|
|
4380
4552
|
}>, "many">>;
|
|
4381
4553
|
error: z.ZodOptional<z.ZodString>;
|
|
4382
4554
|
}, "strip", z.ZodTypeAny, {
|
|
4383
4555
|
success: boolean;
|
|
4384
4556
|
error?: string | undefined;
|
|
4385
|
-
|
|
4557
|
+
results?: {
|
|
4386
4558
|
name: string;
|
|
4387
|
-
id: string;
|
|
4388
4559
|
url: string;
|
|
4389
|
-
|
|
4390
|
-
|
|
4560
|
+
contents: {
|
|
4561
|
+
name: string;
|
|
4562
|
+
id: string;
|
|
4563
|
+
url: string;
|
|
4564
|
+
mimeType: string;
|
|
4565
|
+
content?: string | undefined;
|
|
4566
|
+
};
|
|
4391
4567
|
}[] | undefined;
|
|
4392
4568
|
}, {
|
|
4393
4569
|
success: boolean;
|
|
4394
4570
|
error?: string | undefined;
|
|
4395
|
-
|
|
4571
|
+
results?: {
|
|
4396
4572
|
name: string;
|
|
4397
|
-
id: string;
|
|
4398
4573
|
url: string;
|
|
4399
|
-
|
|
4400
|
-
|
|
4574
|
+
contents: {
|
|
4575
|
+
name: string;
|
|
4576
|
+
id: string;
|
|
4577
|
+
url: string;
|
|
4578
|
+
mimeType: string;
|
|
4579
|
+
content?: string | undefined;
|
|
4580
|
+
};
|
|
4401
4581
|
}[] | undefined;
|
|
4402
4582
|
}>;
|
|
4403
4583
|
export type googleOauthSearchDriveByKeywordsAndGetFileContentOutputType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema>;
|
|
@@ -4486,22 +4666,64 @@ export declare const googleOauthGetDriveFileContentByIdParamsSchema: z.ZodObject
|
|
|
4486
4666
|
export type googleOauthGetDriveFileContentByIdParamsType = z.infer<typeof googleOauthGetDriveFileContentByIdParamsSchema>;
|
|
4487
4667
|
export declare const googleOauthGetDriveFileContentByIdOutputSchema: z.ZodObject<{
|
|
4488
4668
|
success: z.ZodBoolean;
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
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">>;
|
|
4492
4702
|
error: z.ZodOptional<z.ZodString>;
|
|
4493
4703
|
}, "strip", z.ZodTypeAny, {
|
|
4494
4704
|
success: boolean;
|
|
4495
4705
|
error?: string | undefined;
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
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;
|
|
4499
4715
|
}, {
|
|
4500
4716
|
success: boolean;
|
|
4501
4717
|
error?: string | undefined;
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
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;
|
|
4505
4727
|
}>;
|
|
4506
4728
|
export type googleOauthGetDriveFileContentByIdOutputType = z.infer<typeof googleOauthGetDriveFileContentByIdOutputSchema>;
|
|
4507
4729
|
export type googleOauthGetDriveFileContentByIdFunction = ActionFunction<googleOauthGetDriveFileContentByIdParamsType, AuthParamsType, googleOauthGetDriveFileContentByIdOutputType>;
|
|
@@ -6873,51 +7095,83 @@ export declare const salesforceSearchSalesforceRecordsParamsSchema: z.ZodObject<
|
|
|
6873
7095
|
export type salesforceSearchSalesforceRecordsParamsType = z.infer<typeof salesforceSearchSalesforceRecordsParamsSchema>;
|
|
6874
7096
|
export declare const salesforceSearchSalesforceRecordsOutputSchema: z.ZodObject<{
|
|
6875
7097
|
success: z.ZodBoolean;
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6887
|
-
|
|
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
|
+
}>>;
|
|
6888
7126
|
}, "strip", z.ZodTypeAny, {
|
|
6889
|
-
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
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;
|
|
6894
7136
|
}, {
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
|
|
6898
|
-
|
|
6899
|
-
|
|
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;
|
|
6900
7146
|
}>, "many">>;
|
|
6901
7147
|
error: z.ZodOptional<z.ZodString>;
|
|
6902
7148
|
}, "strip", z.ZodTypeAny, {
|
|
6903
7149
|
success: boolean;
|
|
6904
7150
|
error?: string | undefined;
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
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;
|
|
6911
7161
|
}[] | undefined;
|
|
6912
7162
|
}, {
|
|
6913
7163
|
success: boolean;
|
|
6914
7164
|
error?: string | undefined;
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
|
|
6919
|
-
|
|
6920
|
-
|
|
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;
|
|
6921
7175
|
}[] | undefined;
|
|
6922
7176
|
}>;
|
|
6923
7177
|
export type salesforceSearchSalesforceRecordsOutputType = z.infer<typeof salesforceSearchSalesforceRecordsOutputSchema>;
|
|
@@ -6935,16 +7189,16 @@ export declare const salesforceGetSalesforceRecordsByQueryParamsSchema: z.ZodObj
|
|
|
6935
7189
|
export type salesforceGetSalesforceRecordsByQueryParamsType = z.infer<typeof salesforceGetSalesforceRecordsByQueryParamsSchema>;
|
|
6936
7190
|
export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObject<{
|
|
6937
7191
|
success: z.ZodBoolean;
|
|
6938
|
-
|
|
7192
|
+
results: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
6939
7193
|
error: z.ZodOptional<z.ZodString>;
|
|
6940
7194
|
}, "strip", z.ZodTypeAny, {
|
|
6941
7195
|
success: boolean;
|
|
6942
7196
|
error?: string | undefined;
|
|
6943
|
-
|
|
7197
|
+
results?: any[] | undefined;
|
|
6944
7198
|
}, {
|
|
6945
7199
|
success: boolean;
|
|
6946
7200
|
error?: string | undefined;
|
|
6947
|
-
|
|
7201
|
+
results?: any[] | undefined;
|
|
6948
7202
|
}>;
|
|
6949
7203
|
export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
|
|
6950
7204
|
export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
|
|
@@ -7306,81 +7560,129 @@ export declare const githubListPullRequestsParamsSchema: z.ZodObject<{
|
|
|
7306
7560
|
}>;
|
|
7307
7561
|
export type githubListPullRequestsParamsType = z.infer<typeof githubListPullRequestsParamsSchema>;
|
|
7308
7562
|
export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7563
|
+
success: z.ZodBoolean;
|
|
7564
|
+
error: z.ZodOptional<z.ZodString>;
|
|
7565
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7566
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7313
7567
|
url: z.ZodOptional<z.ZodString>;
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
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>;
|
|
7318
7583
|
}, "strip", z.ZodTypeAny, {
|
|
7319
|
-
|
|
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;
|
|
7320
7594
|
}, {
|
|
7321
|
-
|
|
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;
|
|
7322
7605
|
}>>;
|
|
7323
|
-
description: z.ZodOptional<z.ZodString>;
|
|
7324
7606
|
}, "strip", z.ZodTypeAny, {
|
|
7325
|
-
|
|
7326
|
-
description?: string | undefined;
|
|
7327
|
-
user?: {
|
|
7328
|
-
login?: string | undefined;
|
|
7329
|
-
} | undefined;
|
|
7330
|
-
title?: string | undefined;
|
|
7607
|
+
name?: string | undefined;
|
|
7331
7608
|
url?: string | undefined;
|
|
7332
|
-
|
|
7333
|
-
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
|
|
7339
|
-
|
|
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;
|
|
7340
7620
|
} | undefined;
|
|
7341
|
-
|
|
7621
|
+
}, {
|
|
7622
|
+
name?: string | undefined;
|
|
7342
7623
|
url?: string | undefined;
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
|
|
7349
|
-
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
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;
|
|
7353
7635
|
} | undefined;
|
|
7354
|
-
|
|
7636
|
+
}>, "many">>;
|
|
7637
|
+
}, "strip", z.ZodTypeAny, {
|
|
7638
|
+
success: boolean;
|
|
7639
|
+
error?: string | undefined;
|
|
7640
|
+
results?: {
|
|
7641
|
+
name?: string | undefined;
|
|
7355
7642
|
url?: string | undefined;
|
|
7356
|
-
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
|
|
7364
|
-
|
|
7365
|
-
|
|
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;
|
|
7366
7654
|
} | undefined;
|
|
7367
|
-
|
|
7368
|
-
|
|
7369
|
-
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7655
|
+
}[] | undefined;
|
|
7656
|
+
}, {
|
|
7657
|
+
success: boolean;
|
|
7658
|
+
error?: string | undefined;
|
|
7659
|
+
results?: {
|
|
7660
|
+
name?: string | undefined;
|
|
7661
|
+
url?: string | undefined;
|
|
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;
|
|
7680
|
+
repositoryName: z.ZodString;
|
|
7681
|
+
pullRequestNumber: z.ZodNumber;
|
|
7682
|
+
}, "strip", z.ZodTypeAny, {
|
|
7683
|
+
repositoryOwner: string;
|
|
7684
|
+
repositoryName: string;
|
|
7685
|
+
pullRequestNumber: number;
|
|
7384
7686
|
}, {
|
|
7385
7687
|
repositoryOwner: string;
|
|
7386
7688
|
repositoryName: string;
|
|
@@ -7556,8 +7858,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7556
7858
|
}, "strip", z.ZodTypeAny, {
|
|
7557
7859
|
number?: number | undefined;
|
|
7558
7860
|
description?: string | null | undefined;
|
|
7559
|
-
title?: string | undefined;
|
|
7560
7861
|
url?: string | undefined;
|
|
7862
|
+
title?: string | undefined;
|
|
7561
7863
|
createdAt?: string | undefined;
|
|
7562
7864
|
head?: {
|
|
7563
7865
|
sha?: string | undefined;
|
|
@@ -7583,12 +7885,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7583
7885
|
} | undefined;
|
|
7584
7886
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7585
7887
|
merged?: boolean | undefined;
|
|
7586
|
-
htmlUrl?: string | undefined;
|
|
7587
7888
|
commits?: number | undefined;
|
|
7588
7889
|
author?: {
|
|
7589
7890
|
login?: string | undefined;
|
|
7590
7891
|
} | undefined;
|
|
7591
7892
|
updatedAt?: string | undefined;
|
|
7893
|
+
htmlUrl?: string | undefined;
|
|
7592
7894
|
draft?: boolean | undefined;
|
|
7593
7895
|
closedAt?: string | null | undefined;
|
|
7594
7896
|
mergedAt?: string | null | undefined;
|
|
@@ -7617,8 +7919,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7617
7919
|
}, {
|
|
7618
7920
|
number?: number | undefined;
|
|
7619
7921
|
description?: string | null | undefined;
|
|
7620
|
-
title?: string | undefined;
|
|
7621
7922
|
url?: string | undefined;
|
|
7923
|
+
title?: string | undefined;
|
|
7622
7924
|
createdAt?: string | undefined;
|
|
7623
7925
|
head?: {
|
|
7624
7926
|
sha?: string | undefined;
|
|
@@ -7644,12 +7946,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7644
7946
|
} | undefined;
|
|
7645
7947
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7646
7948
|
merged?: boolean | undefined;
|
|
7647
|
-
htmlUrl?: string | undefined;
|
|
7648
7949
|
commits?: number | undefined;
|
|
7649
7950
|
author?: {
|
|
7650
7951
|
login?: string | undefined;
|
|
7651
7952
|
} | undefined;
|
|
7652
7953
|
updatedAt?: string | undefined;
|
|
7954
|
+
htmlUrl?: string | undefined;
|
|
7653
7955
|
draft?: boolean | undefined;
|
|
7654
7956
|
closedAt?: string | null | undefined;
|
|
7655
7957
|
mergedAt?: string | null | undefined;
|
|
@@ -7682,8 +7984,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7682
7984
|
pullRequest?: {
|
|
7683
7985
|
number?: number | undefined;
|
|
7684
7986
|
description?: string | null | undefined;
|
|
7685
|
-
title?: string | undefined;
|
|
7686
7987
|
url?: string | undefined;
|
|
7988
|
+
title?: string | undefined;
|
|
7687
7989
|
createdAt?: string | undefined;
|
|
7688
7990
|
head?: {
|
|
7689
7991
|
sha?: string | undefined;
|
|
@@ -7709,12 +8011,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7709
8011
|
} | undefined;
|
|
7710
8012
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7711
8013
|
merged?: boolean | undefined;
|
|
7712
|
-
htmlUrl?: string | undefined;
|
|
7713
8014
|
commits?: number | undefined;
|
|
7714
8015
|
author?: {
|
|
7715
8016
|
login?: string | undefined;
|
|
7716
8017
|
} | undefined;
|
|
7717
8018
|
updatedAt?: string | undefined;
|
|
8019
|
+
htmlUrl?: string | undefined;
|
|
7718
8020
|
draft?: boolean | undefined;
|
|
7719
8021
|
closedAt?: string | null | undefined;
|
|
7720
8022
|
mergedAt?: string | null | undefined;
|
|
@@ -7747,8 +8049,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7747
8049
|
pullRequest?: {
|
|
7748
8050
|
number?: number | undefined;
|
|
7749
8051
|
description?: string | null | undefined;
|
|
7750
|
-
title?: string | undefined;
|
|
7751
8052
|
url?: string | undefined;
|
|
8053
|
+
title?: string | undefined;
|
|
7752
8054
|
createdAt?: string | undefined;
|
|
7753
8055
|
head?: {
|
|
7754
8056
|
sha?: string | undefined;
|
|
@@ -7774,12 +8076,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7774
8076
|
} | undefined;
|
|
7775
8077
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7776
8078
|
merged?: boolean | undefined;
|
|
7777
|
-
htmlUrl?: string | undefined;
|
|
7778
8079
|
commits?: number | undefined;
|
|
7779
8080
|
author?: {
|
|
7780
8081
|
login?: string | undefined;
|
|
7781
8082
|
} | undefined;
|
|
7782
8083
|
updatedAt?: string | undefined;
|
|
8084
|
+
htmlUrl?: string | undefined;
|
|
7783
8085
|
draft?: boolean | undefined;
|
|
7784
8086
|
closedAt?: string | null | undefined;
|
|
7785
8087
|
mergedAt?: string | null | undefined;
|
|
@@ -7826,24 +8128,70 @@ export type githubGetFileContentParamsType = z.infer<typeof githubGetFileContent
|
|
|
7826
8128
|
export declare const githubGetFileContentOutputSchema: z.ZodObject<{
|
|
7827
8129
|
success: z.ZodBoolean;
|
|
7828
8130
|
error: z.ZodOptional<z.ZodString>;
|
|
7829
|
-
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
|
|
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">>;
|
|
7833
8169
|
}, "strip", z.ZodTypeAny, {
|
|
7834
8170
|
success: boolean;
|
|
7835
|
-
name?: string | undefined;
|
|
7836
8171
|
error?: string | undefined;
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
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;
|
|
7840
8182
|
}, {
|
|
7841
8183
|
success: boolean;
|
|
7842
|
-
name?: string | undefined;
|
|
7843
8184
|
error?: string | undefined;
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
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;
|
|
7847
8195
|
}>;
|
|
7848
8196
|
export type githubGetFileContentOutputType = z.infer<typeof githubGetFileContentOutputSchema>;
|
|
7849
8197
|
export type githubGetFileContentFunction = ActionFunction<githubGetFileContentParamsType, AuthParamsType, githubGetFileContentOutputType>;
|
|
@@ -7864,44 +8212,62 @@ export type githubListDirectoryParamsType = z.infer<typeof githubListDirectoryPa
|
|
|
7864
8212
|
export declare const githubListDirectoryOutputSchema: z.ZodObject<{
|
|
7865
8213
|
success: z.ZodBoolean;
|
|
7866
8214
|
error: z.ZodOptional<z.ZodString>;
|
|
7867
|
-
|
|
8215
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7868
8216
|
name: z.ZodString;
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
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
|
+
}>;
|
|
7873
8231
|
}, "strip", z.ZodTypeAny, {
|
|
7874
|
-
type: string;
|
|
7875
|
-
path: string;
|
|
7876
8232
|
name: string;
|
|
7877
|
-
|
|
7878
|
-
|
|
8233
|
+
url: string;
|
|
8234
|
+
contents: {
|
|
8235
|
+
type: string;
|
|
8236
|
+
path: string;
|
|
8237
|
+
size: number;
|
|
8238
|
+
};
|
|
7879
8239
|
}, {
|
|
7880
|
-
type: string;
|
|
7881
|
-
path: string;
|
|
7882
8240
|
name: string;
|
|
7883
|
-
|
|
7884
|
-
|
|
8241
|
+
url: string;
|
|
8242
|
+
contents: {
|
|
8243
|
+
type: string;
|
|
8244
|
+
path: string;
|
|
8245
|
+
size: number;
|
|
8246
|
+
};
|
|
7885
8247
|
}>, "many">>;
|
|
7886
8248
|
}, "strip", z.ZodTypeAny, {
|
|
7887
8249
|
success: boolean;
|
|
7888
8250
|
error?: string | undefined;
|
|
7889
|
-
|
|
7890
|
-
type: string;
|
|
7891
|
-
path: string;
|
|
8251
|
+
results?: {
|
|
7892
8252
|
name: string;
|
|
7893
|
-
|
|
7894
|
-
|
|
8253
|
+
url: string;
|
|
8254
|
+
contents: {
|
|
8255
|
+
type: string;
|
|
8256
|
+
path: string;
|
|
8257
|
+
size: number;
|
|
8258
|
+
};
|
|
7895
8259
|
}[] | undefined;
|
|
7896
8260
|
}, {
|
|
7897
8261
|
success: boolean;
|
|
7898
8262
|
error?: string | undefined;
|
|
7899
|
-
|
|
7900
|
-
type: string;
|
|
7901
|
-
path: string;
|
|
8263
|
+
results?: {
|
|
7902
8264
|
name: string;
|
|
7903
|
-
|
|
7904
|
-
|
|
8265
|
+
url: string;
|
|
8266
|
+
contents: {
|
|
8267
|
+
type: string;
|
|
8268
|
+
path: string;
|
|
8269
|
+
size: number;
|
|
8270
|
+
};
|
|
7905
8271
|
}[] | undefined;
|
|
7906
8272
|
}>;
|
|
7907
8273
|
export type githubListDirectoryOutputType = z.infer<typeof githubListDirectoryOutputSchema>;
|
|
@@ -8197,264 +8563,42 @@ export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
|
|
|
8197
8563
|
}>;
|
|
8198
8564
|
export type githubSearchOrganizationParamsType = z.infer<typeof githubSearchOrganizationParamsSchema>;
|
|
8199
8565
|
export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
|
|
8200
|
-
|
|
8566
|
+
success: z.ZodBoolean;
|
|
8567
|
+
error: z.ZodOptional<z.ZodString>;
|
|
8568
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8201
8569
|
name: z.ZodString;
|
|
8202
|
-
path: z.ZodString;
|
|
8203
|
-
sha: z.ZodString;
|
|
8204
8570
|
url: z.ZodString;
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
object_url: z.ZodOptional<z.ZodString>;
|
|
8208
|
-
object_type: z.ZodOptional<z.ZodString>;
|
|
8209
|
-
fragment: z.ZodOptional<z.ZodString>;
|
|
8210
|
-
matches: z.ZodArray<z.ZodObject<{
|
|
8211
|
-
text: z.ZodOptional<z.ZodString>;
|
|
8212
|
-
indices: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
8213
|
-
}, "strip", z.ZodTypeAny, {
|
|
8214
|
-
text?: string | undefined;
|
|
8215
|
-
indices?: number[] | undefined;
|
|
8216
|
-
}, {
|
|
8217
|
-
text?: string | undefined;
|
|
8218
|
-
indices?: number[] | undefined;
|
|
8219
|
-
}>, "many">;
|
|
8220
|
-
}, "strip", z.ZodTypeAny, {
|
|
8221
|
-
matches: {
|
|
8222
|
-
text?: string | undefined;
|
|
8223
|
-
indices?: number[] | undefined;
|
|
8224
|
-
}[];
|
|
8225
|
-
object_url?: string | undefined;
|
|
8226
|
-
object_type?: string | undefined;
|
|
8227
|
-
fragment?: string | undefined;
|
|
8228
|
-
}, {
|
|
8229
|
-
matches: {
|
|
8230
|
-
text?: string | undefined;
|
|
8231
|
-
indices?: number[] | undefined;
|
|
8232
|
-
}[];
|
|
8233
|
-
object_url?: string | undefined;
|
|
8234
|
-
object_type?: string | undefined;
|
|
8235
|
-
fragment?: string | undefined;
|
|
8236
|
-
}>, "many">;
|
|
8571
|
+
type: z.ZodEnum<["code", "commit", "issueOrPullRequest"]>;
|
|
8572
|
+
content: z.ZodEffects<z.ZodAny, any, any>;
|
|
8237
8573
|
}, "strip", z.ZodTypeAny, {
|
|
8238
|
-
|
|
8574
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8239
8575
|
name: string;
|
|
8240
8576
|
url: string;
|
|
8241
|
-
|
|
8242
|
-
score: number;
|
|
8243
|
-
textMatches: {
|
|
8244
|
-
matches: {
|
|
8245
|
-
text?: string | undefined;
|
|
8246
|
-
indices?: number[] | undefined;
|
|
8247
|
-
}[];
|
|
8248
|
-
object_url?: string | undefined;
|
|
8249
|
-
object_type?: string | undefined;
|
|
8250
|
-
fragment?: string | undefined;
|
|
8251
|
-
}[];
|
|
8577
|
+
content?: any;
|
|
8252
8578
|
}, {
|
|
8253
|
-
|
|
8579
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8254
8580
|
name: string;
|
|
8255
8581
|
url: string;
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
object_type?: string | undefined;
|
|
8265
|
-
fragment?: string | undefined;
|
|
8266
|
-
}[];
|
|
8267
|
-
}>, "many">;
|
|
8268
|
-
commits: z.ZodArray<z.ZodObject<{
|
|
8269
|
-
sha: z.ZodString;
|
|
8270
|
-
url: z.ZodString;
|
|
8271
|
-
commit: z.ZodOptional<z.ZodObject<{
|
|
8272
|
-
author: z.ZodObject<{
|
|
8273
|
-
name: z.ZodString;
|
|
8274
|
-
email: z.ZodString;
|
|
8275
|
-
date: z.ZodString;
|
|
8276
|
-
}, "strip", z.ZodTypeAny, {
|
|
8277
|
-
date: string;
|
|
8278
|
-
name: string;
|
|
8279
|
-
email: string;
|
|
8280
|
-
}, {
|
|
8281
|
-
date: string;
|
|
8282
|
-
name: string;
|
|
8283
|
-
email: string;
|
|
8284
|
-
}>;
|
|
8285
|
-
message: z.ZodString;
|
|
8286
|
-
}, "strip", z.ZodTypeAny, {
|
|
8287
|
-
message: string;
|
|
8288
|
-
author: {
|
|
8289
|
-
date: string;
|
|
8290
|
-
name: string;
|
|
8291
|
-
email: string;
|
|
8292
|
-
};
|
|
8293
|
-
}, {
|
|
8294
|
-
message: string;
|
|
8295
|
-
author: {
|
|
8296
|
-
date: string;
|
|
8297
|
-
name: string;
|
|
8298
|
-
email: string;
|
|
8299
|
-
};
|
|
8300
|
-
}>>;
|
|
8301
|
-
}, "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;
|
|
8302
8590
|
url: string;
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
|
|
8310
|
-
|
|
8311
|
-
} | undefined;
|
|
8312
|
-
}, {
|
|
8591
|
+
content?: any;
|
|
8592
|
+
}[] | undefined;
|
|
8593
|
+
}, {
|
|
8594
|
+
success: boolean;
|
|
8595
|
+
error?: string | undefined;
|
|
8596
|
+
results?: {
|
|
8597
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8598
|
+
name: string;
|
|
8313
8599
|
url: string;
|
|
8314
|
-
|
|
8315
|
-
|
|
8316
|
-
message: string;
|
|
8317
|
-
author: {
|
|
8318
|
-
date: string;
|
|
8319
|
-
name: string;
|
|
8320
|
-
email: string;
|
|
8321
|
-
};
|
|
8322
|
-
} | undefined;
|
|
8323
|
-
}>, "many">;
|
|
8324
|
-
issuesAndPullRequests: z.ZodArray<z.ZodObject<{
|
|
8325
|
-
number: z.ZodOptional<z.ZodNumber>;
|
|
8326
|
-
title: z.ZodString;
|
|
8327
|
-
html_url: z.ZodOptional<z.ZodString>;
|
|
8328
|
-
state: z.ZodEnum<["open", "closed"]>;
|
|
8329
|
-
isPullRequest: z.ZodOptional<z.ZodBoolean>;
|
|
8330
|
-
body: z.ZodOptional<z.ZodString>;
|
|
8331
|
-
score: z.ZodOptional<z.ZodNumber>;
|
|
8332
|
-
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8333
|
-
filename: z.ZodString;
|
|
8334
|
-
status: z.ZodString;
|
|
8335
|
-
patch: z.ZodOptional<z.ZodString>;
|
|
8336
|
-
}, "strip", z.ZodTypeAny, {
|
|
8337
|
-
status: string;
|
|
8338
|
-
filename: string;
|
|
8339
|
-
patch?: string | undefined;
|
|
8340
|
-
}, {
|
|
8341
|
-
status: string;
|
|
8342
|
-
filename: string;
|
|
8343
|
-
patch?: string | undefined;
|
|
8344
|
-
}>, "many">>;
|
|
8345
|
-
}, "strip", z.ZodTypeAny, {
|
|
8346
|
-
title: string;
|
|
8347
|
-
state: "open" | "closed";
|
|
8348
|
-
number?: number | undefined;
|
|
8349
|
-
body?: string | undefined;
|
|
8350
|
-
files?: {
|
|
8351
|
-
status: string;
|
|
8352
|
-
filename: string;
|
|
8353
|
-
patch?: string | undefined;
|
|
8354
|
-
}[] | undefined;
|
|
8355
|
-
score?: number | undefined;
|
|
8356
|
-
html_url?: string | undefined;
|
|
8357
|
-
isPullRequest?: boolean | undefined;
|
|
8358
|
-
}, {
|
|
8359
|
-
title: string;
|
|
8360
|
-
state: "open" | "closed";
|
|
8361
|
-
number?: number | undefined;
|
|
8362
|
-
body?: string | undefined;
|
|
8363
|
-
files?: {
|
|
8364
|
-
status: string;
|
|
8365
|
-
filename: string;
|
|
8366
|
-
patch?: string | undefined;
|
|
8367
|
-
}[] | undefined;
|
|
8368
|
-
score?: number | undefined;
|
|
8369
|
-
html_url?: string | undefined;
|
|
8370
|
-
isPullRequest?: boolean | undefined;
|
|
8371
|
-
}>, "many">;
|
|
8372
|
-
}, "strip", z.ZodTypeAny, {
|
|
8373
|
-
code: {
|
|
8374
|
-
path: string;
|
|
8375
|
-
name: string;
|
|
8376
|
-
url: string;
|
|
8377
|
-
sha: string;
|
|
8378
|
-
score: number;
|
|
8379
|
-
textMatches: {
|
|
8380
|
-
matches: {
|
|
8381
|
-
text?: string | undefined;
|
|
8382
|
-
indices?: number[] | undefined;
|
|
8383
|
-
}[];
|
|
8384
|
-
object_url?: string | undefined;
|
|
8385
|
-
object_type?: string | undefined;
|
|
8386
|
-
fragment?: string | undefined;
|
|
8387
|
-
}[];
|
|
8388
|
-
}[];
|
|
8389
|
-
commits: {
|
|
8390
|
-
url: string;
|
|
8391
|
-
sha: string;
|
|
8392
|
-
commit?: {
|
|
8393
|
-
message: string;
|
|
8394
|
-
author: {
|
|
8395
|
-
date: string;
|
|
8396
|
-
name: string;
|
|
8397
|
-
email: string;
|
|
8398
|
-
};
|
|
8399
|
-
} | undefined;
|
|
8400
|
-
}[];
|
|
8401
|
-
issuesAndPullRequests: {
|
|
8402
|
-
title: string;
|
|
8403
|
-
state: "open" | "closed";
|
|
8404
|
-
number?: number | undefined;
|
|
8405
|
-
body?: string | undefined;
|
|
8406
|
-
files?: {
|
|
8407
|
-
status: string;
|
|
8408
|
-
filename: string;
|
|
8409
|
-
patch?: string | undefined;
|
|
8410
|
-
}[] | undefined;
|
|
8411
|
-
score?: number | undefined;
|
|
8412
|
-
html_url?: string | undefined;
|
|
8413
|
-
isPullRequest?: boolean | undefined;
|
|
8414
|
-
}[];
|
|
8415
|
-
}, {
|
|
8416
|
-
code: {
|
|
8417
|
-
path: string;
|
|
8418
|
-
name: string;
|
|
8419
|
-
url: string;
|
|
8420
|
-
sha: string;
|
|
8421
|
-
score: number;
|
|
8422
|
-
textMatches: {
|
|
8423
|
-
matches: {
|
|
8424
|
-
text?: string | undefined;
|
|
8425
|
-
indices?: number[] | undefined;
|
|
8426
|
-
}[];
|
|
8427
|
-
object_url?: string | undefined;
|
|
8428
|
-
object_type?: string | undefined;
|
|
8429
|
-
fragment?: string | undefined;
|
|
8430
|
-
}[];
|
|
8431
|
-
}[];
|
|
8432
|
-
commits: {
|
|
8433
|
-
url: string;
|
|
8434
|
-
sha: string;
|
|
8435
|
-
commit?: {
|
|
8436
|
-
message: string;
|
|
8437
|
-
author: {
|
|
8438
|
-
date: string;
|
|
8439
|
-
name: string;
|
|
8440
|
-
email: string;
|
|
8441
|
-
};
|
|
8442
|
-
} | undefined;
|
|
8443
|
-
}[];
|
|
8444
|
-
issuesAndPullRequests: {
|
|
8445
|
-
title: string;
|
|
8446
|
-
state: "open" | "closed";
|
|
8447
|
-
number?: number | undefined;
|
|
8448
|
-
body?: string | undefined;
|
|
8449
|
-
files?: {
|
|
8450
|
-
status: string;
|
|
8451
|
-
filename: string;
|
|
8452
|
-
patch?: string | undefined;
|
|
8453
|
-
}[] | undefined;
|
|
8454
|
-
score?: number | undefined;
|
|
8455
|
-
html_url?: string | undefined;
|
|
8456
|
-
isPullRequest?: boolean | undefined;
|
|
8457
|
-
}[];
|
|
8600
|
+
content?: any;
|
|
8601
|
+
}[] | undefined;
|
|
8458
8602
|
}>;
|
|
8459
8603
|
export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
|
|
8460
8604
|
export type githubSearchOrganizationFunction = ActionFunction<githubSearchOrganizationParamsType, AuthParamsType, githubSearchOrganizationOutputType>;
|
|
@@ -9139,16 +9283,15 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9139
9283
|
htmlUrl: z.ZodString;
|
|
9140
9284
|
}, "strip", z.ZodTypeAny, {
|
|
9141
9285
|
url: string;
|
|
9142
|
-
htmlUrl: string;
|
|
9143
9286
|
sha: string;
|
|
9287
|
+
htmlUrl: string;
|
|
9144
9288
|
}, {
|
|
9145
9289
|
url: string;
|
|
9146
|
-
htmlUrl: string;
|
|
9147
9290
|
sha: string;
|
|
9291
|
+
htmlUrl: string;
|
|
9148
9292
|
}>, "many">>;
|
|
9149
9293
|
}, "strip", z.ZodTypeAny, {
|
|
9150
9294
|
url: string;
|
|
9151
|
-
htmlUrl: string;
|
|
9152
9295
|
sha: string;
|
|
9153
9296
|
author: {
|
|
9154
9297
|
login?: string | undefined;
|
|
@@ -9171,14 +9314,14 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9171
9314
|
};
|
|
9172
9315
|
commentCount?: number | undefined;
|
|
9173
9316
|
};
|
|
9317
|
+
htmlUrl: string;
|
|
9174
9318
|
parents?: {
|
|
9175
9319
|
url: string;
|
|
9176
|
-
htmlUrl: string;
|
|
9177
9320
|
sha: string;
|
|
9321
|
+
htmlUrl: string;
|
|
9178
9322
|
}[] | undefined;
|
|
9179
9323
|
}, {
|
|
9180
9324
|
url: string;
|
|
9181
|
-
htmlUrl: string;
|
|
9182
9325
|
sha: string;
|
|
9183
9326
|
author: {
|
|
9184
9327
|
login?: string | undefined;
|
|
@@ -9201,10 +9344,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9201
9344
|
};
|
|
9202
9345
|
commentCount?: number | undefined;
|
|
9203
9346
|
};
|
|
9347
|
+
htmlUrl: string;
|
|
9204
9348
|
parents?: {
|
|
9205
9349
|
url: string;
|
|
9206
|
-
htmlUrl: string;
|
|
9207
9350
|
sha: string;
|
|
9351
|
+
htmlUrl: string;
|
|
9208
9352
|
}[] | undefined;
|
|
9209
9353
|
}>, "many">>;
|
|
9210
9354
|
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9214,7 +9358,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9214
9358
|
error?: string | undefined;
|
|
9215
9359
|
commits?: {
|
|
9216
9360
|
url: string;
|
|
9217
|
-
htmlUrl: string;
|
|
9218
9361
|
sha: string;
|
|
9219
9362
|
author: {
|
|
9220
9363
|
login?: string | undefined;
|
|
@@ -9237,10 +9380,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9237
9380
|
};
|
|
9238
9381
|
commentCount?: number | undefined;
|
|
9239
9382
|
};
|
|
9383
|
+
htmlUrl: string;
|
|
9240
9384
|
parents?: {
|
|
9241
9385
|
url: string;
|
|
9242
|
-
htmlUrl: string;
|
|
9243
9386
|
sha: string;
|
|
9387
|
+
htmlUrl: string;
|
|
9244
9388
|
}[] | undefined;
|
|
9245
9389
|
}[] | undefined;
|
|
9246
9390
|
totalCount?: number | undefined;
|
|
@@ -9250,7 +9394,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9250
9394
|
error?: string | undefined;
|
|
9251
9395
|
commits?: {
|
|
9252
9396
|
url: string;
|
|
9253
|
-
htmlUrl: string;
|
|
9254
9397
|
sha: string;
|
|
9255
9398
|
author: {
|
|
9256
9399
|
login?: string | undefined;
|
|
@@ -9273,10 +9416,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9273
9416
|
};
|
|
9274
9417
|
commentCount?: number | undefined;
|
|
9275
9418
|
};
|
|
9419
|
+
htmlUrl: string;
|
|
9276
9420
|
parents?: {
|
|
9277
9421
|
url: string;
|
|
9278
|
-
htmlUrl: string;
|
|
9279
9422
|
sha: string;
|
|
9423
|
+
htmlUrl: string;
|
|
9280
9424
|
}[] | undefined;
|
|
9281
9425
|
}[] | undefined;
|
|
9282
9426
|
totalCount?: number | undefined;
|
|
@@ -9434,365 +9578,41 @@ export declare const gitlabSearchGroupParamsSchema: z.ZodObject<{
|
|
|
9434
9578
|
}>;
|
|
9435
9579
|
export type gitlabSearchGroupParamsType = z.infer<typeof gitlabSearchGroupParamsSchema>;
|
|
9436
9580
|
export declare const gitlabSearchGroupOutputSchema: z.ZodObject<{
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
description: z.ZodOptional<z.ZodString>;
|
|
9445
|
-
author: z.ZodOptional<z.ZodObject<{
|
|
9446
|
-
name: z.ZodOptional<z.ZodString>;
|
|
9447
|
-
}, "strip", z.ZodTypeAny, {
|
|
9448
|
-
name?: string | undefined;
|
|
9449
|
-
}, {
|
|
9450
|
-
name?: string | undefined;
|
|
9451
|
-
}>>;
|
|
9452
|
-
merged_at: z.ZodOptional<z.ZodString>;
|
|
9453
|
-
}, "strip", z.ZodTypeAny, {
|
|
9454
|
-
id: number;
|
|
9455
|
-
title: string;
|
|
9456
|
-
iid: number;
|
|
9457
|
-
project_id: number;
|
|
9458
|
-
web_url: string;
|
|
9459
|
-
description?: string | undefined;
|
|
9460
|
-
author?: {
|
|
9461
|
-
name?: string | undefined;
|
|
9462
|
-
} | undefined;
|
|
9463
|
-
merged_at?: string | undefined;
|
|
9464
|
-
}, {
|
|
9465
|
-
id: number;
|
|
9466
|
-
title: string;
|
|
9467
|
-
iid: number;
|
|
9468
|
-
project_id: number;
|
|
9469
|
-
web_url: string;
|
|
9470
|
-
description?: string | undefined;
|
|
9471
|
-
author?: {
|
|
9472
|
-
name?: string | undefined;
|
|
9473
|
-
} | undefined;
|
|
9474
|
-
merged_at?: string | undefined;
|
|
9475
|
-
}>;
|
|
9476
|
-
diffs: z.ZodArray<z.ZodObject<{
|
|
9477
|
-
old_path: z.ZodString;
|
|
9478
|
-
new_path: z.ZodString;
|
|
9479
|
-
diff: z.ZodString;
|
|
9480
|
-
new_file: z.ZodBoolean;
|
|
9481
|
-
renamed_file: z.ZodBoolean;
|
|
9482
|
-
deleted_file: z.ZodBoolean;
|
|
9483
|
-
too_large: z.ZodOptional<z.ZodBoolean>;
|
|
9484
|
-
}, "strip", z.ZodTypeAny, {
|
|
9485
|
-
old_path: string;
|
|
9486
|
-
new_path: string;
|
|
9487
|
-
diff: string;
|
|
9488
|
-
new_file: boolean;
|
|
9489
|
-
renamed_file: boolean;
|
|
9490
|
-
deleted_file: boolean;
|
|
9491
|
-
too_large?: boolean | undefined;
|
|
9492
|
-
}, {
|
|
9493
|
-
old_path: string;
|
|
9494
|
-
new_path: string;
|
|
9495
|
-
diff: string;
|
|
9496
|
-
new_file: boolean;
|
|
9497
|
-
renamed_file: boolean;
|
|
9498
|
-
deleted_file: boolean;
|
|
9499
|
-
too_large?: boolean | undefined;
|
|
9500
|
-
}>, "many">;
|
|
9501
|
-
}, "strip", z.ZodTypeAny, {
|
|
9502
|
-
metadata: {
|
|
9503
|
-
id: number;
|
|
9504
|
-
title: string;
|
|
9505
|
-
iid: number;
|
|
9506
|
-
project_id: number;
|
|
9507
|
-
web_url: string;
|
|
9508
|
-
description?: string | undefined;
|
|
9509
|
-
author?: {
|
|
9510
|
-
name?: string | undefined;
|
|
9511
|
-
} | undefined;
|
|
9512
|
-
merged_at?: string | undefined;
|
|
9513
|
-
};
|
|
9514
|
-
diffs: {
|
|
9515
|
-
old_path: string;
|
|
9516
|
-
new_path: string;
|
|
9517
|
-
diff: string;
|
|
9518
|
-
new_file: boolean;
|
|
9519
|
-
renamed_file: boolean;
|
|
9520
|
-
deleted_file: boolean;
|
|
9521
|
-
too_large?: boolean | undefined;
|
|
9522
|
-
}[];
|
|
9523
|
-
}, {
|
|
9524
|
-
metadata: {
|
|
9525
|
-
id: number;
|
|
9526
|
-
title: string;
|
|
9527
|
-
iid: number;
|
|
9528
|
-
project_id: number;
|
|
9529
|
-
web_url: string;
|
|
9530
|
-
description?: string | undefined;
|
|
9531
|
-
author?: {
|
|
9532
|
-
name?: string | undefined;
|
|
9533
|
-
} | undefined;
|
|
9534
|
-
merged_at?: string | undefined;
|
|
9535
|
-
};
|
|
9536
|
-
diffs: {
|
|
9537
|
-
old_path: string;
|
|
9538
|
-
new_path: string;
|
|
9539
|
-
diff: string;
|
|
9540
|
-
new_file: boolean;
|
|
9541
|
-
renamed_file: boolean;
|
|
9542
|
-
deleted_file: boolean;
|
|
9543
|
-
too_large?: boolean | undefined;
|
|
9544
|
-
}[];
|
|
9545
|
-
}>, "many">;
|
|
9546
|
-
blobs: z.ZodArray<z.ZodObject<{
|
|
9547
|
-
metadata: z.ZodObject<{
|
|
9548
|
-
path: z.ZodString;
|
|
9549
|
-
basename: z.ZodString;
|
|
9550
|
-
data: z.ZodString;
|
|
9551
|
-
project_id: z.ZodNumber;
|
|
9552
|
-
ref: z.ZodString;
|
|
9553
|
-
startline: z.ZodNumber;
|
|
9554
|
-
filename: z.ZodString;
|
|
9555
|
-
web_url: z.ZodString;
|
|
9556
|
-
}, "strip", z.ZodTypeAny, {
|
|
9557
|
-
path: string;
|
|
9558
|
-
data: string;
|
|
9559
|
-
filename: string;
|
|
9560
|
-
project_id: number;
|
|
9561
|
-
web_url: string;
|
|
9562
|
-
basename: string;
|
|
9563
|
-
ref: string;
|
|
9564
|
-
startline: number;
|
|
9565
|
-
}, {
|
|
9566
|
-
path: string;
|
|
9567
|
-
data: string;
|
|
9568
|
-
filename: string;
|
|
9569
|
-
project_id: number;
|
|
9570
|
-
web_url: string;
|
|
9571
|
-
basename: string;
|
|
9572
|
-
ref: string;
|
|
9573
|
-
startline: number;
|
|
9574
|
-
}>;
|
|
9575
|
-
matchedMergeRequests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9576
|
-
title: z.ZodString;
|
|
9577
|
-
web_url: z.ZodString;
|
|
9578
|
-
author: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
9579
|
-
merged_at: z.ZodOptional<z.ZodString>;
|
|
9580
|
-
}, "strip", z.ZodTypeAny, {
|
|
9581
|
-
title: string;
|
|
9582
|
-
web_url: string;
|
|
9583
|
-
author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9584
|
-
merged_at?: string | undefined;
|
|
9585
|
-
}, {
|
|
9586
|
-
title: string;
|
|
9587
|
-
web_url: string;
|
|
9588
|
-
author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9589
|
-
merged_at?: string | undefined;
|
|
9590
|
-
}>, "many">>;
|
|
9591
|
-
}, "strip", z.ZodTypeAny, {
|
|
9592
|
-
metadata: {
|
|
9593
|
-
path: string;
|
|
9594
|
-
data: string;
|
|
9595
|
-
filename: string;
|
|
9596
|
-
project_id: number;
|
|
9597
|
-
web_url: string;
|
|
9598
|
-
basename: string;
|
|
9599
|
-
ref: string;
|
|
9600
|
-
startline: number;
|
|
9601
|
-
};
|
|
9602
|
-
matchedMergeRequests?: {
|
|
9603
|
-
title: string;
|
|
9604
|
-
web_url: string;
|
|
9605
|
-
author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9606
|
-
merged_at?: string | undefined;
|
|
9607
|
-
}[] | undefined;
|
|
9608
|
-
}, {
|
|
9609
|
-
metadata: {
|
|
9610
|
-
path: string;
|
|
9611
|
-
data: string;
|
|
9612
|
-
filename: string;
|
|
9613
|
-
project_id: number;
|
|
9614
|
-
web_url: string;
|
|
9615
|
-
basename: string;
|
|
9616
|
-
ref: string;
|
|
9617
|
-
startline: number;
|
|
9618
|
-
};
|
|
9619
|
-
matchedMergeRequests?: {
|
|
9620
|
-
title: string;
|
|
9621
|
-
web_url: string;
|
|
9622
|
-
author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9623
|
-
merged_at?: string | undefined;
|
|
9624
|
-
}[] | undefined;
|
|
9625
|
-
}>, "many">;
|
|
9626
|
-
commits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9627
|
-
sha: z.ZodString;
|
|
9628
|
-
web_url: z.ZodString;
|
|
9629
|
-
message: z.ZodString;
|
|
9630
|
-
author: z.ZodObject<{
|
|
9631
|
-
name: z.ZodString;
|
|
9632
|
-
email: z.ZodString;
|
|
9633
|
-
}, "strip", z.ZodTypeAny, {
|
|
9634
|
-
name: string;
|
|
9635
|
-
email: string;
|
|
9636
|
-
}, {
|
|
9637
|
-
name: string;
|
|
9638
|
-
email: string;
|
|
9639
|
-
}>;
|
|
9640
|
-
created_at: z.ZodString;
|
|
9641
|
-
files: z.ZodArray<z.ZodObject<{
|
|
9642
|
-
old_path: z.ZodString;
|
|
9643
|
-
new_path: z.ZodString;
|
|
9644
|
-
diff: z.ZodString;
|
|
9645
|
-
}, "strip", z.ZodTypeAny, {
|
|
9646
|
-
old_path: string;
|
|
9647
|
-
new_path: string;
|
|
9648
|
-
diff: string;
|
|
9649
|
-
}, {
|
|
9650
|
-
old_path: string;
|
|
9651
|
-
new_path: string;
|
|
9652
|
-
diff: string;
|
|
9653
|
-
}>, "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>;
|
|
9654
9588
|
}, "strip", z.ZodTypeAny, {
|
|
9655
|
-
|
|
9656
|
-
|
|
9657
|
-
|
|
9658
|
-
|
|
9659
|
-
new_path: string;
|
|
9660
|
-
diff: string;
|
|
9661
|
-
}[];
|
|
9662
|
-
sha: string;
|
|
9663
|
-
author: {
|
|
9664
|
-
name: string;
|
|
9665
|
-
email: string;
|
|
9666
|
-
};
|
|
9667
|
-
web_url: string;
|
|
9589
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9590
|
+
name: string;
|
|
9591
|
+
url: string;
|
|
9592
|
+
contents?: any;
|
|
9668
9593
|
}, {
|
|
9669
|
-
|
|
9670
|
-
|
|
9671
|
-
|
|
9672
|
-
|
|
9673
|
-
new_path: string;
|
|
9674
|
-
diff: string;
|
|
9675
|
-
}[];
|
|
9676
|
-
sha: string;
|
|
9677
|
-
author: {
|
|
9678
|
-
name: string;
|
|
9679
|
-
email: string;
|
|
9680
|
-
};
|
|
9681
|
-
web_url: string;
|
|
9594
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9595
|
+
name: string;
|
|
9596
|
+
url: string;
|
|
9597
|
+
contents?: any;
|
|
9682
9598
|
}>, "many">>;
|
|
9683
9599
|
}, "strip", z.ZodTypeAny, {
|
|
9684
|
-
|
|
9685
|
-
|
|
9686
|
-
|
|
9687
|
-
|
|
9688
|
-
|
|
9689
|
-
|
|
9690
|
-
|
|
9691
|
-
description?: string | undefined;
|
|
9692
|
-
author?: {
|
|
9693
|
-
name?: string | undefined;
|
|
9694
|
-
} | undefined;
|
|
9695
|
-
merged_at?: string | undefined;
|
|
9696
|
-
};
|
|
9697
|
-
diffs: {
|
|
9698
|
-
old_path: string;
|
|
9699
|
-
new_path: string;
|
|
9700
|
-
diff: string;
|
|
9701
|
-
new_file: boolean;
|
|
9702
|
-
renamed_file: boolean;
|
|
9703
|
-
deleted_file: boolean;
|
|
9704
|
-
too_large?: boolean | undefined;
|
|
9705
|
-
}[];
|
|
9706
|
-
}[];
|
|
9707
|
-
blobs: {
|
|
9708
|
-
metadata: {
|
|
9709
|
-
path: string;
|
|
9710
|
-
data: string;
|
|
9711
|
-
filename: string;
|
|
9712
|
-
project_id: number;
|
|
9713
|
-
web_url: string;
|
|
9714
|
-
basename: string;
|
|
9715
|
-
ref: string;
|
|
9716
|
-
startline: number;
|
|
9717
|
-
};
|
|
9718
|
-
matchedMergeRequests?: {
|
|
9719
|
-
title: string;
|
|
9720
|
-
web_url: string;
|
|
9721
|
-
author?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9722
|
-
merged_at?: string | undefined;
|
|
9723
|
-
}[] | undefined;
|
|
9724
|
-
}[];
|
|
9725
|
-
commits?: {
|
|
9726
|
-
message: string;
|
|
9727
|
-
created_at: string;
|
|
9728
|
-
files: {
|
|
9729
|
-
old_path: string;
|
|
9730
|
-
new_path: string;
|
|
9731
|
-
diff: string;
|
|
9732
|
-
}[];
|
|
9733
|
-
sha: string;
|
|
9734
|
-
author: {
|
|
9735
|
-
name: string;
|
|
9736
|
-
email: string;
|
|
9737
|
-
};
|
|
9738
|
-
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;
|
|
9739
9607
|
}[] | undefined;
|
|
9740
9608
|
}, {
|
|
9741
|
-
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
|
|
9745
|
-
|
|
9746
|
-
|
|
9747
|
-
|
|
9748
|
-
description?: string | undefined;
|
|
9749
|
-
author?: {
|
|
9750
|
-
name?: string | undefined;
|
|
9751
|
-
} | undefined;
|
|
9752
|
-
merged_at?: string | undefined;
|
|
9753
|
-
};
|
|
9754
|
-
diffs: {
|
|
9755
|
-
old_path: string;
|
|
9756
|
-
new_path: string;
|
|
9757
|
-
diff: string;
|
|
9758
|
-
new_file: boolean;
|
|
9759
|
-
renamed_file: boolean;
|
|
9760
|
-
deleted_file: boolean;
|
|
9761
|
-
too_large?: boolean | undefined;
|
|
9762
|
-
}[];
|
|
9763
|
-
}[];
|
|
9764
|
-
blobs: {
|
|
9765
|
-
metadata: {
|
|
9766
|
-
path: string;
|
|
9767
|
-
data: string;
|
|
9768
|
-
filename: string;
|
|
9769
|
-
project_id: number;
|
|
9770
|
-
web_url: string;
|
|
9771
|
-
basename: string;
|
|
9772
|
-
ref: string;
|
|
9773
|
-
startline: number;
|
|
9774
|
-
};
|
|
9775
|
-
matchedMergeRequests?: {
|
|
9776
|
-
title: string;
|
|
9777
|
-
web_url: string;
|
|
9778
|
-
author?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
9779
|
-
merged_at?: string | undefined;
|
|
9780
|
-
}[] | undefined;
|
|
9781
|
-
}[];
|
|
9782
|
-
commits?: {
|
|
9783
|
-
message: string;
|
|
9784
|
-
created_at: string;
|
|
9785
|
-
files: {
|
|
9786
|
-
old_path: string;
|
|
9787
|
-
new_path: string;
|
|
9788
|
-
diff: string;
|
|
9789
|
-
}[];
|
|
9790
|
-
sha: string;
|
|
9791
|
-
author: {
|
|
9792
|
-
name: string;
|
|
9793
|
-
email: string;
|
|
9794
|
-
};
|
|
9795
|
-
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;
|
|
9796
9616
|
}[] | undefined;
|
|
9797
9617
|
}>;
|
|
9798
9618
|
export type gitlabSearchGroupOutputType = z.infer<typeof gitlabSearchGroupOutputSchema>;
|
|
@@ -9814,24 +9634,70 @@ export type gitlabGetFileContentParamsType = z.infer<typeof gitlabGetFileContent
|
|
|
9814
9634
|
export declare const gitlabGetFileContentOutputSchema: z.ZodObject<{
|
|
9815
9635
|
success: z.ZodBoolean;
|
|
9816
9636
|
error: z.ZodOptional<z.ZodString>;
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
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">>;
|
|
9821
9675
|
}, "strip", z.ZodTypeAny, {
|
|
9822
9676
|
success: boolean;
|
|
9823
|
-
name?: string | undefined;
|
|
9824
9677
|
error?: string | undefined;
|
|
9825
|
-
|
|
9826
|
-
|
|
9827
|
-
|
|
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;
|
|
9828
9688
|
}, {
|
|
9829
9689
|
success: boolean;
|
|
9830
|
-
name?: string | undefined;
|
|
9831
9690
|
error?: string | undefined;
|
|
9832
|
-
|
|
9833
|
-
|
|
9834
|
-
|
|
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;
|
|
9835
9701
|
}>;
|
|
9836
9702
|
export type gitlabGetFileContentOutputType = z.infer<typeof gitlabGetFileContentOutputSchema>;
|
|
9837
9703
|
export type gitlabGetFileContentFunction = ActionFunction<gitlabGetFileContentParamsType, AuthParamsType, gitlabGetFileContentOutputType>;
|
|
@@ -9853,41 +9719,79 @@ export declare const gitlabListDirectoryParamsSchema: z.ZodObject<{
|
|
|
9853
9719
|
}>;
|
|
9854
9720
|
export type gitlabListDirectoryParamsType = z.infer<typeof gitlabListDirectoryParamsSchema>;
|
|
9855
9721
|
export declare const gitlabListDirectoryOutputSchema: z.ZodObject<{
|
|
9856
|
-
|
|
9722
|
+
success: z.ZodBoolean;
|
|
9723
|
+
error: z.ZodOptional<z.ZodString>;
|
|
9724
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9857
9725
|
name: z.ZodString;
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9861
|
-
|
|
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
|
+
}>;
|
|
9862
9746
|
}, "strip", z.ZodTypeAny, {
|
|
9863
|
-
type: string;
|
|
9864
|
-
path: string;
|
|
9865
9747
|
name: string;
|
|
9866
|
-
|
|
9867
|
-
|
|
9748
|
+
url: string;
|
|
9749
|
+
contents: {
|
|
9750
|
+
type: string;
|
|
9751
|
+
path: string;
|
|
9752
|
+
name: string;
|
|
9753
|
+
htmlUrl: string;
|
|
9754
|
+
size?: number | undefined;
|
|
9755
|
+
};
|
|
9868
9756
|
}, {
|
|
9869
|
-
type: string;
|
|
9870
|
-
path: string;
|
|
9871
9757
|
name: string;
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9758
|
+
url: string;
|
|
9759
|
+
contents: {
|
|
9760
|
+
type: string;
|
|
9761
|
+
path: string;
|
|
9762
|
+
name: string;
|
|
9763
|
+
htmlUrl: string;
|
|
9764
|
+
size?: number | undefined;
|
|
9765
|
+
};
|
|
9766
|
+
}>, "many">>;
|
|
9875
9767
|
}, "strip", z.ZodTypeAny, {
|
|
9876
|
-
|
|
9877
|
-
|
|
9878
|
-
|
|
9768
|
+
success: boolean;
|
|
9769
|
+
error?: string | undefined;
|
|
9770
|
+
results?: {
|
|
9879
9771
|
name: string;
|
|
9880
|
-
|
|
9881
|
-
|
|
9882
|
-
|
|
9772
|
+
url: string;
|
|
9773
|
+
contents: {
|
|
9774
|
+
type: string;
|
|
9775
|
+
path: string;
|
|
9776
|
+
name: string;
|
|
9777
|
+
htmlUrl: string;
|
|
9778
|
+
size?: number | undefined;
|
|
9779
|
+
};
|
|
9780
|
+
}[] | undefined;
|
|
9883
9781
|
}, {
|
|
9884
|
-
|
|
9885
|
-
|
|
9886
|
-
|
|
9782
|
+
success: boolean;
|
|
9783
|
+
error?: string | undefined;
|
|
9784
|
+
results?: {
|
|
9887
9785
|
name: string;
|
|
9888
|
-
|
|
9889
|
-
|
|
9890
|
-
|
|
9786
|
+
url: string;
|
|
9787
|
+
contents: {
|
|
9788
|
+
type: string;
|
|
9789
|
+
path: string;
|
|
9790
|
+
name: string;
|
|
9791
|
+
htmlUrl: string;
|
|
9792
|
+
size?: number | undefined;
|
|
9793
|
+
};
|
|
9794
|
+
}[] | undefined;
|
|
9891
9795
|
}>;
|
|
9892
9796
|
export type gitlabListDirectoryOutputType = z.infer<typeof gitlabListDirectoryOutputSchema>;
|
|
9893
9797
|
export type gitlabListDirectoryFunction = ActionFunction<gitlabListDirectoryParamsType, AuthParamsType, gitlabListDirectoryOutputType>;
|
|
@@ -9962,12 +9866,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
9962
9866
|
comment?: string | undefined;
|
|
9963
9867
|
author_name?: string | undefined;
|
|
9964
9868
|
}[] | undefined;
|
|
9869
|
+
url?: string | undefined;
|
|
9965
9870
|
title?: string | undefined;
|
|
9966
9871
|
project?: {
|
|
9967
9872
|
name?: string | undefined;
|
|
9968
9873
|
id?: string | undefined;
|
|
9969
9874
|
} | undefined;
|
|
9970
|
-
url?: string | undefined;
|
|
9971
9875
|
state?: string | undefined;
|
|
9972
9876
|
team?: {
|
|
9973
9877
|
name?: string | undefined;
|
|
@@ -9985,12 +9889,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
9985
9889
|
comment?: string | undefined;
|
|
9986
9890
|
author_name?: string | undefined;
|
|
9987
9891
|
}[] | undefined;
|
|
9892
|
+
url?: string | undefined;
|
|
9988
9893
|
title?: string | undefined;
|
|
9989
9894
|
project?: {
|
|
9990
9895
|
name?: string | undefined;
|
|
9991
9896
|
id?: string | undefined;
|
|
9992
9897
|
} | undefined;
|
|
9993
|
-
url?: string | undefined;
|
|
9994
9898
|
state?: string | undefined;
|
|
9995
9899
|
team?: {
|
|
9996
9900
|
name?: string | undefined;
|
|
@@ -10011,12 +9915,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
10011
9915
|
comment?: string | undefined;
|
|
10012
9916
|
author_name?: string | undefined;
|
|
10013
9917
|
}[] | undefined;
|
|
9918
|
+
url?: string | undefined;
|
|
10014
9919
|
title?: string | undefined;
|
|
10015
9920
|
project?: {
|
|
10016
9921
|
name?: string | undefined;
|
|
10017
9922
|
id?: string | undefined;
|
|
10018
9923
|
} | undefined;
|
|
10019
|
-
url?: string | undefined;
|
|
10020
9924
|
state?: string | undefined;
|
|
10021
9925
|
team?: {
|
|
10022
9926
|
name?: string | undefined;
|
|
@@ -10038,12 +9942,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
10038
9942
|
comment?: string | undefined;
|
|
10039
9943
|
author_name?: string | undefined;
|
|
10040
9944
|
}[] | undefined;
|
|
9945
|
+
url?: string | undefined;
|
|
10041
9946
|
title?: string | undefined;
|
|
10042
9947
|
project?: {
|
|
10043
9948
|
name?: string | undefined;
|
|
10044
9949
|
id?: string | undefined;
|
|
10045
9950
|
} | undefined;
|
|
10046
|
-
url?: string | undefined;
|
|
10047
9951
|
state?: string | undefined;
|
|
10048
9952
|
team?: {
|
|
10049
9953
|
name?: string | undefined;
|
|
@@ -10141,13 +10045,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10141
10045
|
comment?: string | undefined;
|
|
10142
10046
|
author_name?: string | undefined;
|
|
10143
10047
|
}[] | undefined;
|
|
10048
|
+
url?: string | undefined;
|
|
10144
10049
|
title?: string | undefined;
|
|
10145
10050
|
content?: string | undefined;
|
|
10146
10051
|
project?: {
|
|
10147
10052
|
name?: string | undefined;
|
|
10148
10053
|
id?: string | undefined;
|
|
10149
10054
|
} | undefined;
|
|
10150
|
-
url?: string | undefined;
|
|
10151
10055
|
createdAt?: string | undefined;
|
|
10152
10056
|
priority?: number | undefined;
|
|
10153
10057
|
state?: string | undefined;
|
|
@@ -10174,13 +10078,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10174
10078
|
comment?: string | undefined;
|
|
10175
10079
|
author_name?: string | undefined;
|
|
10176
10080
|
}[] | undefined;
|
|
10081
|
+
url?: string | undefined;
|
|
10177
10082
|
title?: string | undefined;
|
|
10178
10083
|
content?: string | undefined;
|
|
10179
10084
|
project?: {
|
|
10180
10085
|
name?: string | undefined;
|
|
10181
10086
|
id?: string | undefined;
|
|
10182
10087
|
} | undefined;
|
|
10183
|
-
url?: string | undefined;
|
|
10184
10088
|
createdAt?: string | undefined;
|
|
10185
10089
|
priority?: number | undefined;
|
|
10186
10090
|
state?: string | undefined;
|
|
@@ -10211,13 +10115,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10211
10115
|
comment?: string | undefined;
|
|
10212
10116
|
author_name?: string | undefined;
|
|
10213
10117
|
}[] | undefined;
|
|
10118
|
+
url?: string | undefined;
|
|
10214
10119
|
title?: string | undefined;
|
|
10215
10120
|
content?: string | undefined;
|
|
10216
10121
|
project?: {
|
|
10217
10122
|
name?: string | undefined;
|
|
10218
10123
|
id?: string | undefined;
|
|
10219
10124
|
} | undefined;
|
|
10220
|
-
url?: string | undefined;
|
|
10221
10125
|
createdAt?: string | undefined;
|
|
10222
10126
|
priority?: number | undefined;
|
|
10223
10127
|
state?: string | undefined;
|
|
@@ -10248,13 +10152,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10248
10152
|
comment?: string | undefined;
|
|
10249
10153
|
author_name?: string | undefined;
|
|
10250
10154
|
}[] | undefined;
|
|
10155
|
+
url?: string | undefined;
|
|
10251
10156
|
title?: string | undefined;
|
|
10252
10157
|
content?: string | undefined;
|
|
10253
10158
|
project?: {
|
|
10254
10159
|
name?: string | undefined;
|
|
10255
10160
|
id?: string | undefined;
|
|
10256
10161
|
} | undefined;
|
|
10257
|
-
url?: string | undefined;
|
|
10258
10162
|
createdAt?: string | undefined;
|
|
10259
10163
|
priority?: number | undefined;
|
|
10260
10164
|
state?: string | undefined;
|
|
@@ -10313,8 +10217,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10313
10217
|
description?: string | undefined;
|
|
10314
10218
|
name?: string | undefined;
|
|
10315
10219
|
id?: string | undefined;
|
|
10316
|
-
content?: string | undefined;
|
|
10317
10220
|
url?: string | undefined;
|
|
10221
|
+
content?: string | undefined;
|
|
10318
10222
|
creator?: {
|
|
10319
10223
|
name?: string | undefined;
|
|
10320
10224
|
id?: string | undefined;
|
|
@@ -10330,8 +10234,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10330
10234
|
description?: string | undefined;
|
|
10331
10235
|
name?: string | undefined;
|
|
10332
10236
|
id?: string | undefined;
|
|
10333
|
-
content?: string | undefined;
|
|
10334
10237
|
url?: string | undefined;
|
|
10238
|
+
content?: string | undefined;
|
|
10335
10239
|
creator?: {
|
|
10336
10240
|
name?: string | undefined;
|
|
10337
10241
|
id?: string | undefined;
|
|
@@ -10351,8 +10255,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10351
10255
|
description?: string | undefined;
|
|
10352
10256
|
name?: string | undefined;
|
|
10353
10257
|
id?: string | undefined;
|
|
10354
|
-
content?: string | undefined;
|
|
10355
10258
|
url?: string | undefined;
|
|
10259
|
+
content?: string | undefined;
|
|
10356
10260
|
creator?: {
|
|
10357
10261
|
name?: string | undefined;
|
|
10358
10262
|
id?: string | undefined;
|
|
@@ -10372,8 +10276,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10372
10276
|
description?: string | undefined;
|
|
10373
10277
|
name?: string | undefined;
|
|
10374
10278
|
id?: string | undefined;
|
|
10375
|
-
content?: string | undefined;
|
|
10376
10279
|
url?: string | undefined;
|
|
10280
|
+
content?: string | undefined;
|
|
10377
10281
|
creator?: {
|
|
10378
10282
|
name?: string | undefined;
|
|
10379
10283
|
id?: string | undefined;
|
|
@@ -10464,8 +10368,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10464
10368
|
description?: string | undefined;
|
|
10465
10369
|
name?: string | undefined;
|
|
10466
10370
|
id?: string | undefined;
|
|
10467
|
-
content?: string | undefined;
|
|
10468
10371
|
url?: string | undefined;
|
|
10372
|
+
content?: string | undefined;
|
|
10469
10373
|
updates?: {
|
|
10470
10374
|
id?: string | undefined;
|
|
10471
10375
|
created_at?: string | undefined;
|
|
@@ -10493,8 +10397,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10493
10397
|
description?: string | undefined;
|
|
10494
10398
|
name?: string | undefined;
|
|
10495
10399
|
id?: string | undefined;
|
|
10496
|
-
content?: string | undefined;
|
|
10497
10400
|
url?: string | undefined;
|
|
10401
|
+
content?: string | undefined;
|
|
10498
10402
|
updates?: {
|
|
10499
10403
|
id?: string | undefined;
|
|
10500
10404
|
created_at?: string | undefined;
|
|
@@ -10526,8 +10430,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10526
10430
|
description?: string | undefined;
|
|
10527
10431
|
name?: string | undefined;
|
|
10528
10432
|
id?: string | undefined;
|
|
10529
|
-
content?: string | undefined;
|
|
10530
10433
|
url?: string | undefined;
|
|
10434
|
+
content?: string | undefined;
|
|
10531
10435
|
updates?: {
|
|
10532
10436
|
id?: string | undefined;
|
|
10533
10437
|
created_at?: string | undefined;
|
|
@@ -10559,8 +10463,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10559
10463
|
description?: string | undefined;
|
|
10560
10464
|
name?: string | undefined;
|
|
10561
10465
|
id?: string | undefined;
|
|
10562
|
-
content?: string | undefined;
|
|
10563
10466
|
url?: string | undefined;
|
|
10467
|
+
content?: string | undefined;
|
|
10564
10468
|
updates?: {
|
|
10565
10469
|
id?: string | undefined;
|
|
10566
10470
|
created_at?: string | undefined;
|