@credal/actions 0.2.127 → 0.2.129
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 +909 -584
- package/dist/actions/autogen/types.d.ts +865 -938
- package/dist/actions/autogen/types.js +365 -212
- package/dist/actions/groups.d.ts +6 -0
- package/dist/actions/groups.js +261 -0
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +47 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- 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/jamf/types.d.ts +8 -0
- package/dist/actions/providers/jamf/types.js +7 -0
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +9 -7
- package/dist/actions/providers/jira/getJiraTicketDetails.js +8 -1
- package/dist/actions/providers/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordsByQuery.js +10 -3
- package/dist/actions/providers/salesforce/searchSalesforceRecords.js +9 -7
- package/dist/actions/providers/slack/archiveChannel.d.ts +3 -0
- package/dist/actions/providers/slack/archiveChannel.js +42 -0
- package/dist/actions/providers/slack/index.d.ts +1 -0
- package/dist/actions/providers/slack/index.js +37 -0
- package/dist/actions/providers/slack/listConversations.d.ts +3 -0
- package/dist/actions/providers/slack/listConversations.js +41 -0
- package/dist/actions/providers/slackUser/searchSlack.js +81 -8
- package/package.json +1 -1
- package/dist/actions/providers/jira/updateServiceDeskRequest.d.ts +0 -3
- package/dist/actions/providers/jira/updateServiceDeskRequest.js +0 -72
|
@@ -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,87 +886,156 @@ 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">;
|
|
976
|
+
currentUser: z.ZodObject<{
|
|
977
|
+
userId: z.ZodString;
|
|
978
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
979
|
+
userEmail: z.ZodOptional<z.ZodString>;
|
|
980
|
+
}, "strip", z.ZodTypeAny, {
|
|
981
|
+
userId: string;
|
|
982
|
+
userEmail?: string | undefined;
|
|
983
|
+
userName?: string | undefined;
|
|
984
|
+
}, {
|
|
985
|
+
userId: string;
|
|
986
|
+
userEmail?: string | undefined;
|
|
987
|
+
userName?: string | undefined;
|
|
988
|
+
}>;
|
|
938
989
|
}, "strip", z.ZodTypeAny, {
|
|
939
990
|
query: string;
|
|
940
991
|
results: {
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
userName?: string | undefined;
|
|
946
|
-
permalink?: string | undefined;
|
|
947
|
-
context?: {
|
|
992
|
+
name: string;
|
|
993
|
+
url: string;
|
|
994
|
+
contents: {
|
|
995
|
+
channelId: string;
|
|
948
996
|
ts: string;
|
|
949
997
|
text?: string | undefined;
|
|
950
998
|
userEmail?: string | undefined;
|
|
951
999
|
userName?: string | undefined;
|
|
952
|
-
|
|
1000
|
+
permalink?: string | undefined;
|
|
1001
|
+
context?: {
|
|
1002
|
+
ts: string;
|
|
1003
|
+
text?: string | undefined;
|
|
1004
|
+
userEmail?: string | undefined;
|
|
1005
|
+
userName?: string | undefined;
|
|
1006
|
+
}[] | undefined;
|
|
1007
|
+
};
|
|
953
1008
|
}[];
|
|
1009
|
+
currentUser: {
|
|
1010
|
+
userId: string;
|
|
1011
|
+
userEmail?: string | undefined;
|
|
1012
|
+
userName?: string | undefined;
|
|
1013
|
+
};
|
|
954
1014
|
}, {
|
|
955
1015
|
query: string;
|
|
956
1016
|
results: {
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
userName?: string | undefined;
|
|
962
|
-
permalink?: string | undefined;
|
|
963
|
-
context?: {
|
|
1017
|
+
name: string;
|
|
1018
|
+
url: string;
|
|
1019
|
+
contents: {
|
|
1020
|
+
channelId: string;
|
|
964
1021
|
ts: string;
|
|
965
1022
|
text?: string | undefined;
|
|
966
1023
|
userEmail?: string | undefined;
|
|
967
1024
|
userName?: string | undefined;
|
|
968
|
-
|
|
1025
|
+
permalink?: string | undefined;
|
|
1026
|
+
context?: {
|
|
1027
|
+
ts: string;
|
|
1028
|
+
text?: string | undefined;
|
|
1029
|
+
userEmail?: string | undefined;
|
|
1030
|
+
userName?: string | undefined;
|
|
1031
|
+
}[] | undefined;
|
|
1032
|
+
};
|
|
969
1033
|
}[];
|
|
1034
|
+
currentUser: {
|
|
1035
|
+
userId: string;
|
|
1036
|
+
userEmail?: string | undefined;
|
|
1037
|
+
userName?: string | undefined;
|
|
1038
|
+
};
|
|
970
1039
|
}>;
|
|
971
1040
|
export type slackUserSearchSlackOutputType = z.infer<typeof slackUserSearchSlackOutputSchema>;
|
|
972
1041
|
export type slackUserSearchSlackFunction = ActionFunction<slackUserSearchSlackParamsType, AuthParamsType, slackUserSearchSlackOutputType>;
|
|
@@ -1346,15 +1415,43 @@ export type jiraGetJiraTicketDetailsParamsType = z.infer<typeof jiraGetJiraTicke
|
|
|
1346
1415
|
export declare const jiraGetJiraTicketDetailsOutputSchema: z.ZodObject<{
|
|
1347
1416
|
success: z.ZodBoolean;
|
|
1348
1417
|
error: z.ZodOptional<z.ZodString>;
|
|
1349
|
-
|
|
1418
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1419
|
+
name: z.ZodString;
|
|
1420
|
+
url: z.ZodString;
|
|
1421
|
+
contents: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
|
1422
|
+
}, "strip", z.ZodTypeAny, {
|
|
1423
|
+
name: string;
|
|
1424
|
+
url: string;
|
|
1425
|
+
contents: {} & {
|
|
1426
|
+
[k: string]: any;
|
|
1427
|
+
};
|
|
1428
|
+
}, {
|
|
1429
|
+
name: string;
|
|
1430
|
+
url: string;
|
|
1431
|
+
contents: {} & {
|
|
1432
|
+
[k: string]: any;
|
|
1433
|
+
};
|
|
1434
|
+
}>, "many">>;
|
|
1350
1435
|
}, "strip", z.ZodTypeAny, {
|
|
1351
1436
|
success: boolean;
|
|
1352
1437
|
error?: string | undefined;
|
|
1353
|
-
|
|
1438
|
+
results?: {
|
|
1439
|
+
name: string;
|
|
1440
|
+
url: string;
|
|
1441
|
+
contents: {} & {
|
|
1442
|
+
[k: string]: any;
|
|
1443
|
+
};
|
|
1444
|
+
}[] | undefined;
|
|
1354
1445
|
}, {
|
|
1355
1446
|
success: boolean;
|
|
1356
1447
|
error?: string | undefined;
|
|
1357
|
-
|
|
1448
|
+
results?: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
url: string;
|
|
1451
|
+
contents: {} & {
|
|
1452
|
+
[k: string]: any;
|
|
1453
|
+
};
|
|
1454
|
+
}[] | undefined;
|
|
1358
1455
|
}>;
|
|
1359
1456
|
export type jiraGetJiraTicketDetailsOutputType = z.infer<typeof jiraGetJiraTicketDetailsOutputSchema>;
|
|
1360
1457
|
export type jiraGetJiraTicketDetailsFunction = ActionFunction<jiraGetJiraTicketDetailsParamsType, AuthParamsType, jiraGetJiraTicketDetailsOutputType>;
|
|
@@ -1461,8 +1558,10 @@ export declare const jiraGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
|
1461
1558
|
export type jiraGetJiraIssuesByQueryParamsType = z.infer<typeof jiraGetJiraIssuesByQueryParamsSchema>;
|
|
1462
1559
|
export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
1463
1560
|
success: z.ZodBoolean;
|
|
1464
|
-
|
|
1465
|
-
|
|
1561
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1562
|
+
name: z.ZodString;
|
|
1563
|
+
url: z.ZodString;
|
|
1564
|
+
contents: z.ZodObject<{
|
|
1466
1565
|
id: z.ZodString;
|
|
1467
1566
|
key: z.ZodString;
|
|
1468
1567
|
summary: z.ZodString;
|
|
@@ -1519,6 +1618,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1519
1618
|
};
|
|
1520
1619
|
description: string;
|
|
1521
1620
|
id: string;
|
|
1621
|
+
url: string;
|
|
1522
1622
|
summary: string;
|
|
1523
1623
|
issueType: {
|
|
1524
1624
|
name?: string | undefined;
|
|
@@ -1532,7 +1632,6 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1532
1632
|
};
|
|
1533
1633
|
created: string;
|
|
1534
1634
|
updated: string;
|
|
1535
|
-
url: string;
|
|
1536
1635
|
assignee?: string | null | undefined;
|
|
1537
1636
|
reporter?: string | null | undefined;
|
|
1538
1637
|
creator?: string | null | undefined;
|
|
@@ -1546,6 +1645,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1546
1645
|
};
|
|
1547
1646
|
description: string;
|
|
1548
1647
|
id: string;
|
|
1648
|
+
url: string;
|
|
1549
1649
|
summary: string;
|
|
1550
1650
|
issueType: {
|
|
1551
1651
|
name?: string | undefined;
|
|
@@ -1559,15 +1659,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1559
1659
|
};
|
|
1560
1660
|
created: string;
|
|
1561
1661
|
updated: string;
|
|
1562
|
-
url: string;
|
|
1563
1662
|
assignee?: string | null | undefined;
|
|
1564
1663
|
reporter?: string | null | undefined;
|
|
1565
1664
|
creator?: string | null | undefined;
|
|
1566
1665
|
resolution?: string | null | undefined;
|
|
1567
1666
|
dueDate?: string | null | undefined;
|
|
1568
|
-
}
|
|
1667
|
+
}>;
|
|
1569
1668
|
}, "strip", z.ZodTypeAny, {
|
|
1570
|
-
|
|
1669
|
+
name: string;
|
|
1670
|
+
url: string;
|
|
1671
|
+
contents: {
|
|
1571
1672
|
status: {
|
|
1572
1673
|
name?: string | undefined;
|
|
1573
1674
|
category?: string | undefined;
|
|
@@ -1575,6 +1676,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1575
1676
|
};
|
|
1576
1677
|
description: string;
|
|
1577
1678
|
id: string;
|
|
1679
|
+
url: string;
|
|
1578
1680
|
summary: string;
|
|
1579
1681
|
issueType: {
|
|
1580
1682
|
name?: string | undefined;
|
|
@@ -1588,15 +1690,16 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1588
1690
|
};
|
|
1589
1691
|
created: string;
|
|
1590
1692
|
updated: string;
|
|
1591
|
-
url: string;
|
|
1592
1693
|
assignee?: string | null | undefined;
|
|
1593
1694
|
reporter?: string | null | undefined;
|
|
1594
1695
|
creator?: string | null | undefined;
|
|
1595
1696
|
resolution?: string | null | undefined;
|
|
1596
1697
|
dueDate?: string | null | undefined;
|
|
1597
|
-
}
|
|
1698
|
+
};
|
|
1598
1699
|
}, {
|
|
1599
|
-
|
|
1700
|
+
name: string;
|
|
1701
|
+
url: string;
|
|
1702
|
+
contents: {
|
|
1600
1703
|
status: {
|
|
1601
1704
|
name?: string | undefined;
|
|
1602
1705
|
category?: string | undefined;
|
|
@@ -1604,6 +1707,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1604
1707
|
};
|
|
1605
1708
|
description: string;
|
|
1606
1709
|
id: string;
|
|
1710
|
+
url: string;
|
|
1607
1711
|
summary: string;
|
|
1608
1712
|
issueType: {
|
|
1609
1713
|
name?: string | undefined;
|
|
@@ -1617,20 +1721,21 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1617
1721
|
};
|
|
1618
1722
|
created: string;
|
|
1619
1723
|
updated: string;
|
|
1620
|
-
url: string;
|
|
1621
1724
|
assignee?: string | null | undefined;
|
|
1622
1725
|
reporter?: string | null | undefined;
|
|
1623
1726
|
creator?: string | null | undefined;
|
|
1624
1727
|
resolution?: string | null | undefined;
|
|
1625
1728
|
dueDate?: string | null | undefined;
|
|
1626
|
-
}
|
|
1627
|
-
}>>;
|
|
1729
|
+
};
|
|
1730
|
+
}>, "many">>;
|
|
1628
1731
|
error: z.ZodOptional<z.ZodString>;
|
|
1629
1732
|
}, "strip", z.ZodTypeAny, {
|
|
1630
1733
|
success: boolean;
|
|
1631
1734
|
error?: string | undefined;
|
|
1632
|
-
|
|
1633
|
-
|
|
1735
|
+
results?: {
|
|
1736
|
+
name: string;
|
|
1737
|
+
url: string;
|
|
1738
|
+
contents: {
|
|
1634
1739
|
status: {
|
|
1635
1740
|
name?: string | undefined;
|
|
1636
1741
|
category?: string | undefined;
|
|
@@ -1638,6 +1743,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1638
1743
|
};
|
|
1639
1744
|
description: string;
|
|
1640
1745
|
id: string;
|
|
1746
|
+
url: string;
|
|
1641
1747
|
summary: string;
|
|
1642
1748
|
issueType: {
|
|
1643
1749
|
name?: string | undefined;
|
|
@@ -1651,19 +1757,20 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1651
1757
|
};
|
|
1652
1758
|
created: string;
|
|
1653
1759
|
updated: string;
|
|
1654
|
-
url: string;
|
|
1655
1760
|
assignee?: string | null | undefined;
|
|
1656
1761
|
reporter?: string | null | undefined;
|
|
1657
1762
|
creator?: string | null | undefined;
|
|
1658
1763
|
resolution?: string | null | undefined;
|
|
1659
1764
|
dueDate?: string | null | undefined;
|
|
1660
|
-
}
|
|
1661
|
-
} | undefined;
|
|
1765
|
+
};
|
|
1766
|
+
}[] | undefined;
|
|
1662
1767
|
}, {
|
|
1663
1768
|
success: boolean;
|
|
1664
1769
|
error?: string | undefined;
|
|
1665
|
-
|
|
1666
|
-
|
|
1770
|
+
results?: {
|
|
1771
|
+
name: string;
|
|
1772
|
+
url: string;
|
|
1773
|
+
contents: {
|
|
1667
1774
|
status: {
|
|
1668
1775
|
name?: string | undefined;
|
|
1669
1776
|
category?: string | undefined;
|
|
@@ -1671,6 +1778,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1671
1778
|
};
|
|
1672
1779
|
description: string;
|
|
1673
1780
|
id: string;
|
|
1781
|
+
url: string;
|
|
1674
1782
|
summary: string;
|
|
1675
1783
|
issueType: {
|
|
1676
1784
|
name?: string | undefined;
|
|
@@ -1684,14 +1792,13 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
1684
1792
|
};
|
|
1685
1793
|
created: string;
|
|
1686
1794
|
updated: string;
|
|
1687
|
-
url: string;
|
|
1688
1795
|
assignee?: string | null | undefined;
|
|
1689
1796
|
reporter?: string | null | undefined;
|
|
1690
1797
|
creator?: string | null | undefined;
|
|
1691
1798
|
resolution?: string | null | undefined;
|
|
1692
1799
|
dueDate?: string | null | undefined;
|
|
1693
|
-
}
|
|
1694
|
-
} | undefined;
|
|
1800
|
+
};
|
|
1801
|
+
}[] | undefined;
|
|
1695
1802
|
}>;
|
|
1696
1803
|
export type jiraGetJiraIssuesByQueryOutputType = z.infer<typeof jiraGetJiraIssuesByQueryOutputSchema>;
|
|
1697
1804
|
export type jiraGetJiraIssuesByQueryFunction = ActionFunction<jiraGetJiraIssuesByQueryParamsType, AuthParamsType, jiraGetJiraIssuesByQueryOutputType>;
|
|
@@ -1982,15 +2089,43 @@ export type jiraOrgGetJiraTicketDetailsParamsType = z.infer<typeof jiraOrgGetJir
|
|
|
1982
2089
|
export declare const jiraOrgGetJiraTicketDetailsOutputSchema: z.ZodObject<{
|
|
1983
2090
|
success: z.ZodBoolean;
|
|
1984
2091
|
error: z.ZodOptional<z.ZodString>;
|
|
1985
|
-
|
|
2092
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2093
|
+
name: z.ZodString;
|
|
2094
|
+
url: z.ZodString;
|
|
2095
|
+
contents: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
|
2096
|
+
}, "strip", z.ZodTypeAny, {
|
|
2097
|
+
name: string;
|
|
2098
|
+
url: string;
|
|
2099
|
+
contents: {} & {
|
|
2100
|
+
[k: string]: any;
|
|
2101
|
+
};
|
|
2102
|
+
}, {
|
|
2103
|
+
name: string;
|
|
2104
|
+
url: string;
|
|
2105
|
+
contents: {} & {
|
|
2106
|
+
[k: string]: any;
|
|
2107
|
+
};
|
|
2108
|
+
}>, "many">>;
|
|
1986
2109
|
}, "strip", z.ZodTypeAny, {
|
|
1987
2110
|
success: boolean;
|
|
1988
2111
|
error?: string | undefined;
|
|
1989
|
-
|
|
2112
|
+
results?: {
|
|
2113
|
+
name: string;
|
|
2114
|
+
url: string;
|
|
2115
|
+
contents: {} & {
|
|
2116
|
+
[k: string]: any;
|
|
2117
|
+
};
|
|
2118
|
+
}[] | undefined;
|
|
1990
2119
|
}, {
|
|
1991
2120
|
success: boolean;
|
|
1992
2121
|
error?: string | undefined;
|
|
1993
|
-
|
|
2122
|
+
results?: {
|
|
2123
|
+
name: string;
|
|
2124
|
+
url: string;
|
|
2125
|
+
contents: {} & {
|
|
2126
|
+
[k: string]: any;
|
|
2127
|
+
};
|
|
2128
|
+
}[] | undefined;
|
|
1994
2129
|
}>;
|
|
1995
2130
|
export type jiraOrgGetJiraTicketDetailsOutputType = z.infer<typeof jiraOrgGetJiraTicketDetailsOutputSchema>;
|
|
1996
2131
|
export type jiraOrgGetJiraTicketDetailsFunction = ActionFunction<jiraOrgGetJiraTicketDetailsParamsType, AuthParamsType, jiraOrgGetJiraTicketDetailsOutputType>;
|
|
@@ -2097,8 +2232,10 @@ export declare const jiraOrgGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
|
2097
2232
|
export type jiraOrgGetJiraIssuesByQueryParamsType = z.infer<typeof jiraOrgGetJiraIssuesByQueryParamsSchema>;
|
|
2098
2233
|
export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
2099
2234
|
success: z.ZodBoolean;
|
|
2100
|
-
|
|
2101
|
-
|
|
2235
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2236
|
+
name: z.ZodString;
|
|
2237
|
+
url: z.ZodString;
|
|
2238
|
+
contents: z.ZodObject<{
|
|
2102
2239
|
id: z.ZodString;
|
|
2103
2240
|
key: z.ZodString;
|
|
2104
2241
|
summary: z.ZodString;
|
|
@@ -2155,6 +2292,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2155
2292
|
};
|
|
2156
2293
|
description: string;
|
|
2157
2294
|
id: string;
|
|
2295
|
+
url: string;
|
|
2158
2296
|
summary: string;
|
|
2159
2297
|
issueType: {
|
|
2160
2298
|
name?: string | undefined;
|
|
@@ -2168,7 +2306,6 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2168
2306
|
};
|
|
2169
2307
|
created: string;
|
|
2170
2308
|
updated: string;
|
|
2171
|
-
url: string;
|
|
2172
2309
|
assignee?: string | null | undefined;
|
|
2173
2310
|
reporter?: string | null | undefined;
|
|
2174
2311
|
creator?: string | null | undefined;
|
|
@@ -2182,6 +2319,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2182
2319
|
};
|
|
2183
2320
|
description: string;
|
|
2184
2321
|
id: string;
|
|
2322
|
+
url: string;
|
|
2185
2323
|
summary: string;
|
|
2186
2324
|
issueType: {
|
|
2187
2325
|
name?: string | undefined;
|
|
@@ -2195,15 +2333,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2195
2333
|
};
|
|
2196
2334
|
created: string;
|
|
2197
2335
|
updated: string;
|
|
2198
|
-
url: string;
|
|
2199
2336
|
assignee?: string | null | undefined;
|
|
2200
2337
|
reporter?: string | null | undefined;
|
|
2201
2338
|
creator?: string | null | undefined;
|
|
2202
2339
|
resolution?: string | null | undefined;
|
|
2203
2340
|
dueDate?: string | null | undefined;
|
|
2204
|
-
}
|
|
2341
|
+
}>;
|
|
2205
2342
|
}, "strip", z.ZodTypeAny, {
|
|
2206
|
-
|
|
2343
|
+
name: string;
|
|
2344
|
+
url: string;
|
|
2345
|
+
contents: {
|
|
2207
2346
|
status: {
|
|
2208
2347
|
name?: string | undefined;
|
|
2209
2348
|
category?: string | undefined;
|
|
@@ -2211,6 +2350,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2211
2350
|
};
|
|
2212
2351
|
description: string;
|
|
2213
2352
|
id: string;
|
|
2353
|
+
url: string;
|
|
2214
2354
|
summary: string;
|
|
2215
2355
|
issueType: {
|
|
2216
2356
|
name?: string | undefined;
|
|
@@ -2224,15 +2364,16 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2224
2364
|
};
|
|
2225
2365
|
created: string;
|
|
2226
2366
|
updated: string;
|
|
2227
|
-
url: string;
|
|
2228
2367
|
assignee?: string | null | undefined;
|
|
2229
2368
|
reporter?: string | null | undefined;
|
|
2230
2369
|
creator?: string | null | undefined;
|
|
2231
2370
|
resolution?: string | null | undefined;
|
|
2232
2371
|
dueDate?: string | null | undefined;
|
|
2233
|
-
}
|
|
2372
|
+
};
|
|
2234
2373
|
}, {
|
|
2235
|
-
|
|
2374
|
+
name: string;
|
|
2375
|
+
url: string;
|
|
2376
|
+
contents: {
|
|
2236
2377
|
status: {
|
|
2237
2378
|
name?: string | undefined;
|
|
2238
2379
|
category?: string | undefined;
|
|
@@ -2240,6 +2381,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2240
2381
|
};
|
|
2241
2382
|
description: string;
|
|
2242
2383
|
id: string;
|
|
2384
|
+
url: string;
|
|
2243
2385
|
summary: string;
|
|
2244
2386
|
issueType: {
|
|
2245
2387
|
name?: string | undefined;
|
|
@@ -2253,20 +2395,21 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2253
2395
|
};
|
|
2254
2396
|
created: string;
|
|
2255
2397
|
updated: string;
|
|
2256
|
-
url: string;
|
|
2257
2398
|
assignee?: string | null | undefined;
|
|
2258
2399
|
reporter?: string | null | undefined;
|
|
2259
2400
|
creator?: string | null | undefined;
|
|
2260
2401
|
resolution?: string | null | undefined;
|
|
2261
2402
|
dueDate?: string | null | undefined;
|
|
2262
|
-
}
|
|
2263
|
-
}>>;
|
|
2403
|
+
};
|
|
2404
|
+
}>, "many">>;
|
|
2264
2405
|
error: z.ZodOptional<z.ZodString>;
|
|
2265
2406
|
}, "strip", z.ZodTypeAny, {
|
|
2266
2407
|
success: boolean;
|
|
2267
2408
|
error?: string | undefined;
|
|
2268
|
-
|
|
2269
|
-
|
|
2409
|
+
results?: {
|
|
2410
|
+
name: string;
|
|
2411
|
+
url: string;
|
|
2412
|
+
contents: {
|
|
2270
2413
|
status: {
|
|
2271
2414
|
name?: string | undefined;
|
|
2272
2415
|
category?: string | undefined;
|
|
@@ -2274,6 +2417,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2274
2417
|
};
|
|
2275
2418
|
description: string;
|
|
2276
2419
|
id: string;
|
|
2420
|
+
url: string;
|
|
2277
2421
|
summary: string;
|
|
2278
2422
|
issueType: {
|
|
2279
2423
|
name?: string | undefined;
|
|
@@ -2287,19 +2431,20 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2287
2431
|
};
|
|
2288
2432
|
created: string;
|
|
2289
2433
|
updated: string;
|
|
2290
|
-
url: string;
|
|
2291
2434
|
assignee?: string | null | undefined;
|
|
2292
2435
|
reporter?: string | null | undefined;
|
|
2293
2436
|
creator?: string | null | undefined;
|
|
2294
2437
|
resolution?: string | null | undefined;
|
|
2295
2438
|
dueDate?: string | null | undefined;
|
|
2296
|
-
}
|
|
2297
|
-
} | undefined;
|
|
2439
|
+
};
|
|
2440
|
+
}[] | undefined;
|
|
2298
2441
|
}, {
|
|
2299
2442
|
success: boolean;
|
|
2300
2443
|
error?: string | undefined;
|
|
2301
|
-
|
|
2302
|
-
|
|
2444
|
+
results?: {
|
|
2445
|
+
name: string;
|
|
2446
|
+
url: string;
|
|
2447
|
+
contents: {
|
|
2303
2448
|
status: {
|
|
2304
2449
|
name?: string | undefined;
|
|
2305
2450
|
category?: string | undefined;
|
|
@@ -2307,6 +2452,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2307
2452
|
};
|
|
2308
2453
|
description: string;
|
|
2309
2454
|
id: string;
|
|
2455
|
+
url: string;
|
|
2310
2456
|
summary: string;
|
|
2311
2457
|
issueType: {
|
|
2312
2458
|
name?: string | undefined;
|
|
@@ -2320,14 +2466,13 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2320
2466
|
};
|
|
2321
2467
|
created: string;
|
|
2322
2468
|
updated: string;
|
|
2323
|
-
url: string;
|
|
2324
2469
|
assignee?: string | null | undefined;
|
|
2325
2470
|
reporter?: string | null | undefined;
|
|
2326
2471
|
creator?: string | null | undefined;
|
|
2327
2472
|
resolution?: string | null | undefined;
|
|
2328
2473
|
dueDate?: string | null | undefined;
|
|
2329
|
-
}
|
|
2330
|
-
} | undefined;
|
|
2474
|
+
};
|
|
2475
|
+
}[] | undefined;
|
|
2331
2476
|
}>;
|
|
2332
2477
|
export type jiraOrgGetJiraIssuesByQueryOutputType = z.infer<typeof jiraOrgGetJiraIssuesByQueryOutputSchema>;
|
|
2333
2478
|
export type jiraOrgGetJiraIssuesByQueryFunction = ActionFunction<jiraOrgGetJiraIssuesByQueryParamsType, AuthParamsType, jiraOrgGetJiraIssuesByQueryOutputType>;
|
|
@@ -3127,26 +3272,26 @@ export declare const firecrawlDeepResearchOutputSchema: z.ZodObject<{
|
|
|
3127
3272
|
title: z.ZodString;
|
|
3128
3273
|
description: z.ZodOptional<z.ZodString>;
|
|
3129
3274
|
}, "strip", z.ZodTypeAny, {
|
|
3130
|
-
title: string;
|
|
3131
3275
|
url: string;
|
|
3276
|
+
title: string;
|
|
3132
3277
|
description?: string | undefined;
|
|
3133
3278
|
}, {
|
|
3134
|
-
title: string;
|
|
3135
3279
|
url: string;
|
|
3280
|
+
title: string;
|
|
3136
3281
|
description?: string | undefined;
|
|
3137
3282
|
}>, "many">;
|
|
3138
3283
|
}, "strip", z.ZodTypeAny, {
|
|
3139
3284
|
finalAnalysis: string;
|
|
3140
3285
|
sources: {
|
|
3141
|
-
title: string;
|
|
3142
3286
|
url: string;
|
|
3287
|
+
title: string;
|
|
3143
3288
|
description?: string | undefined;
|
|
3144
3289
|
}[];
|
|
3145
3290
|
}, {
|
|
3146
3291
|
finalAnalysis: string;
|
|
3147
3292
|
sources: {
|
|
3148
|
-
title: string;
|
|
3149
3293
|
url: string;
|
|
3294
|
+
title: string;
|
|
3150
3295
|
description?: string | undefined;
|
|
3151
3296
|
}[];
|
|
3152
3297
|
}>;
|
|
@@ -3170,11 +3315,37 @@ export declare const firecrawlScrapeUrlParamsSchema: z.ZodObject<{
|
|
|
3170
3315
|
}>;
|
|
3171
3316
|
export type firecrawlScrapeUrlParamsType = z.infer<typeof firecrawlScrapeUrlParamsSchema>;
|
|
3172
3317
|
export declare const firecrawlScrapeUrlOutputSchema: z.ZodObject<{
|
|
3173
|
-
|
|
3318
|
+
success: z.ZodBoolean;
|
|
3319
|
+
error: z.ZodOptional<z.ZodString>;
|
|
3320
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3321
|
+
name: z.ZodString;
|
|
3322
|
+
url: z.ZodString;
|
|
3323
|
+
contents: z.ZodString;
|
|
3324
|
+
}, "strip", z.ZodTypeAny, {
|
|
3325
|
+
name: string;
|
|
3326
|
+
url: string;
|
|
3327
|
+
contents: string;
|
|
3328
|
+
}, {
|
|
3329
|
+
name: string;
|
|
3330
|
+
url: string;
|
|
3331
|
+
contents: string;
|
|
3332
|
+
}>, "many">>;
|
|
3174
3333
|
}, "strip", z.ZodTypeAny, {
|
|
3175
|
-
|
|
3334
|
+
success: boolean;
|
|
3335
|
+
error?: string | undefined;
|
|
3336
|
+
results?: {
|
|
3337
|
+
name: string;
|
|
3338
|
+
url: string;
|
|
3339
|
+
contents: string;
|
|
3340
|
+
}[] | undefined;
|
|
3176
3341
|
}, {
|
|
3177
|
-
|
|
3342
|
+
success: boolean;
|
|
3343
|
+
error?: string | undefined;
|
|
3344
|
+
results?: {
|
|
3345
|
+
name: string;
|
|
3346
|
+
url: string;
|
|
3347
|
+
contents: string;
|
|
3348
|
+
}[] | undefined;
|
|
3178
3349
|
}>;
|
|
3179
3350
|
export type firecrawlScrapeUrlOutputType = z.infer<typeof firecrawlScrapeUrlOutputSchema>;
|
|
3180
3351
|
export type firecrawlScrapeUrlFunction = ActionFunction<firecrawlScrapeUrlParamsType, AuthParamsType, firecrawlScrapeUrlOutputType>;
|
|
@@ -3198,25 +3369,25 @@ export declare const firecrawlSearchAndScrapeOutputSchema: z.ZodObject<{
|
|
|
3198
3369
|
title: z.ZodString;
|
|
3199
3370
|
contents: z.ZodString;
|
|
3200
3371
|
}, "strip", z.ZodTypeAny, {
|
|
3201
|
-
title: string;
|
|
3202
3372
|
url: string;
|
|
3203
3373
|
contents: string;
|
|
3204
|
-
}, {
|
|
3205
3374
|
title: string;
|
|
3375
|
+
}, {
|
|
3206
3376
|
url: string;
|
|
3207
3377
|
contents: string;
|
|
3378
|
+
title: string;
|
|
3208
3379
|
}>, "many">;
|
|
3209
3380
|
}, "strip", z.ZodTypeAny, {
|
|
3210
3381
|
results: {
|
|
3211
|
-
title: string;
|
|
3212
3382
|
url: string;
|
|
3213
3383
|
contents: string;
|
|
3384
|
+
title: string;
|
|
3214
3385
|
}[];
|
|
3215
3386
|
}, {
|
|
3216
3387
|
results: {
|
|
3217
|
-
title: string;
|
|
3218
3388
|
url: string;
|
|
3219
3389
|
contents: string;
|
|
3390
|
+
title: string;
|
|
3220
3391
|
}[];
|
|
3221
3392
|
}>;
|
|
3222
3393
|
export type firecrawlSearchAndScrapeOutputType = z.infer<typeof firecrawlSearchAndScrapeOutputSchema>;
|
|
@@ -3572,10 +3743,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3572
3743
|
status?: string | undefined;
|
|
3573
3744
|
description?: string | undefined;
|
|
3574
3745
|
id?: string | undefined;
|
|
3746
|
+
url?: string | undefined;
|
|
3575
3747
|
title?: string | undefined;
|
|
3576
3748
|
created?: string | undefined;
|
|
3577
3749
|
updated?: string | undefined;
|
|
3578
|
-
url?: string | undefined;
|
|
3579
3750
|
location?: string | undefined;
|
|
3580
3751
|
start?: string | undefined;
|
|
3581
3752
|
end?: string | undefined;
|
|
@@ -3595,10 +3766,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3595
3766
|
status?: string | undefined;
|
|
3596
3767
|
description?: string | undefined;
|
|
3597
3768
|
id?: string | undefined;
|
|
3769
|
+
url?: string | undefined;
|
|
3598
3770
|
title?: string | undefined;
|
|
3599
3771
|
created?: string | undefined;
|
|
3600
3772
|
updated?: string | undefined;
|
|
3601
|
-
url?: string | undefined;
|
|
3602
3773
|
location?: string | undefined;
|
|
3603
3774
|
start?: string | undefined;
|
|
3604
3775
|
end?: string | undefined;
|
|
@@ -3623,10 +3794,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3623
3794
|
status?: string | undefined;
|
|
3624
3795
|
description?: string | undefined;
|
|
3625
3796
|
id?: string | undefined;
|
|
3797
|
+
url?: string | undefined;
|
|
3626
3798
|
title?: string | undefined;
|
|
3627
3799
|
created?: string | undefined;
|
|
3628
3800
|
updated?: string | undefined;
|
|
3629
|
-
url?: string | undefined;
|
|
3630
3801
|
location?: string | undefined;
|
|
3631
3802
|
start?: string | undefined;
|
|
3632
3803
|
end?: string | undefined;
|
|
@@ -3651,10 +3822,10 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
3651
3822
|
status?: string | undefined;
|
|
3652
3823
|
description?: string | undefined;
|
|
3653
3824
|
id?: string | undefined;
|
|
3825
|
+
url?: string | undefined;
|
|
3654
3826
|
title?: string | undefined;
|
|
3655
3827
|
created?: string | undefined;
|
|
3656
3828
|
updated?: string | undefined;
|
|
3657
|
-
url?: string | undefined;
|
|
3658
3829
|
location?: string | undefined;
|
|
3659
3830
|
start?: string | undefined;
|
|
3660
3831
|
end?: string | undefined;
|
|
@@ -4359,45 +4530,77 @@ export declare const googleOauthSearchDriveByKeywordsAndGetFileContentParamsSche
|
|
|
4359
4530
|
export type googleOauthSearchDriveByKeywordsAndGetFileContentParamsType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentParamsSchema>;
|
|
4360
4531
|
export declare const googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema: z.ZodObject<{
|
|
4361
4532
|
success: z.ZodBoolean;
|
|
4362
|
-
|
|
4363
|
-
id: z.ZodString;
|
|
4533
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4364
4534
|
name: z.ZodString;
|
|
4365
|
-
mimeType: z.ZodString;
|
|
4366
4535
|
url: z.ZodString;
|
|
4367
|
-
|
|
4536
|
+
contents: z.ZodObject<{
|
|
4537
|
+
id: z.ZodString;
|
|
4538
|
+
name: z.ZodString;
|
|
4539
|
+
mimeType: z.ZodString;
|
|
4540
|
+
url: z.ZodString;
|
|
4541
|
+
content: z.ZodOptional<z.ZodString>;
|
|
4542
|
+
}, "strip", z.ZodTypeAny, {
|
|
4543
|
+
name: string;
|
|
4544
|
+
id: string;
|
|
4545
|
+
url: string;
|
|
4546
|
+
mimeType: string;
|
|
4547
|
+
content?: string | undefined;
|
|
4548
|
+
}, {
|
|
4549
|
+
name: string;
|
|
4550
|
+
id: string;
|
|
4551
|
+
url: string;
|
|
4552
|
+
mimeType: string;
|
|
4553
|
+
content?: string | undefined;
|
|
4554
|
+
}>;
|
|
4368
4555
|
}, "strip", z.ZodTypeAny, {
|
|
4369
4556
|
name: string;
|
|
4370
|
-
id: string;
|
|
4371
4557
|
url: string;
|
|
4372
|
-
|
|
4373
|
-
|
|
4558
|
+
contents: {
|
|
4559
|
+
name: string;
|
|
4560
|
+
id: string;
|
|
4561
|
+
url: string;
|
|
4562
|
+
mimeType: string;
|
|
4563
|
+
content?: string | undefined;
|
|
4564
|
+
};
|
|
4374
4565
|
}, {
|
|
4375
4566
|
name: string;
|
|
4376
|
-
id: string;
|
|
4377
4567
|
url: string;
|
|
4378
|
-
|
|
4379
|
-
|
|
4568
|
+
contents: {
|
|
4569
|
+
name: string;
|
|
4570
|
+
id: string;
|
|
4571
|
+
url: string;
|
|
4572
|
+
mimeType: string;
|
|
4573
|
+
content?: string | undefined;
|
|
4574
|
+
};
|
|
4380
4575
|
}>, "many">>;
|
|
4381
4576
|
error: z.ZodOptional<z.ZodString>;
|
|
4382
4577
|
}, "strip", z.ZodTypeAny, {
|
|
4383
4578
|
success: boolean;
|
|
4384
4579
|
error?: string | undefined;
|
|
4385
|
-
|
|
4580
|
+
results?: {
|
|
4386
4581
|
name: string;
|
|
4387
|
-
id: string;
|
|
4388
4582
|
url: string;
|
|
4389
|
-
|
|
4390
|
-
|
|
4583
|
+
contents: {
|
|
4584
|
+
name: string;
|
|
4585
|
+
id: string;
|
|
4586
|
+
url: string;
|
|
4587
|
+
mimeType: string;
|
|
4588
|
+
content?: string | undefined;
|
|
4589
|
+
};
|
|
4391
4590
|
}[] | undefined;
|
|
4392
4591
|
}, {
|
|
4393
4592
|
success: boolean;
|
|
4394
4593
|
error?: string | undefined;
|
|
4395
|
-
|
|
4594
|
+
results?: {
|
|
4396
4595
|
name: string;
|
|
4397
|
-
id: string;
|
|
4398
4596
|
url: string;
|
|
4399
|
-
|
|
4400
|
-
|
|
4597
|
+
contents: {
|
|
4598
|
+
name: string;
|
|
4599
|
+
id: string;
|
|
4600
|
+
url: string;
|
|
4601
|
+
mimeType: string;
|
|
4602
|
+
content?: string | undefined;
|
|
4603
|
+
};
|
|
4401
4604
|
}[] | undefined;
|
|
4402
4605
|
}>;
|
|
4403
4606
|
export type googleOauthSearchDriveByKeywordsAndGetFileContentOutputType = z.infer<typeof googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema>;
|
|
@@ -4486,22 +4689,64 @@ export declare const googleOauthGetDriveFileContentByIdParamsSchema: z.ZodObject
|
|
|
4486
4689
|
export type googleOauthGetDriveFileContentByIdParamsType = z.infer<typeof googleOauthGetDriveFileContentByIdParamsSchema>;
|
|
4487
4690
|
export declare const googleOauthGetDriveFileContentByIdOutputSchema: z.ZodObject<{
|
|
4488
4691
|
success: z.ZodBoolean;
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4692
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4693
|
+
name: z.ZodString;
|
|
4694
|
+
url: z.ZodString;
|
|
4695
|
+
contents: z.ZodObject<{
|
|
4696
|
+
content: z.ZodOptional<z.ZodString>;
|
|
4697
|
+
fileName: z.ZodOptional<z.ZodString>;
|
|
4698
|
+
fileLength: z.ZodOptional<z.ZodNumber>;
|
|
4699
|
+
}, "strip", z.ZodTypeAny, {
|
|
4700
|
+
content?: string | undefined;
|
|
4701
|
+
fileName?: string | undefined;
|
|
4702
|
+
fileLength?: number | undefined;
|
|
4703
|
+
}, {
|
|
4704
|
+
content?: string | undefined;
|
|
4705
|
+
fileName?: string | undefined;
|
|
4706
|
+
fileLength?: number | undefined;
|
|
4707
|
+
}>;
|
|
4708
|
+
}, "strip", z.ZodTypeAny, {
|
|
4709
|
+
name: string;
|
|
4710
|
+
url: string;
|
|
4711
|
+
contents: {
|
|
4712
|
+
content?: string | undefined;
|
|
4713
|
+
fileName?: string | undefined;
|
|
4714
|
+
fileLength?: number | undefined;
|
|
4715
|
+
};
|
|
4716
|
+
}, {
|
|
4717
|
+
name: string;
|
|
4718
|
+
url: string;
|
|
4719
|
+
contents: {
|
|
4720
|
+
content?: string | undefined;
|
|
4721
|
+
fileName?: string | undefined;
|
|
4722
|
+
fileLength?: number | undefined;
|
|
4723
|
+
};
|
|
4724
|
+
}>, "many">>;
|
|
4492
4725
|
error: z.ZodOptional<z.ZodString>;
|
|
4493
4726
|
}, "strip", z.ZodTypeAny, {
|
|
4494
4727
|
success: boolean;
|
|
4495
4728
|
error?: string | undefined;
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4729
|
+
results?: {
|
|
4730
|
+
name: string;
|
|
4731
|
+
url: string;
|
|
4732
|
+
contents: {
|
|
4733
|
+
content?: string | undefined;
|
|
4734
|
+
fileName?: string | undefined;
|
|
4735
|
+
fileLength?: number | undefined;
|
|
4736
|
+
};
|
|
4737
|
+
}[] | undefined;
|
|
4499
4738
|
}, {
|
|
4500
4739
|
success: boolean;
|
|
4501
4740
|
error?: string | undefined;
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4741
|
+
results?: {
|
|
4742
|
+
name: string;
|
|
4743
|
+
url: string;
|
|
4744
|
+
contents: {
|
|
4745
|
+
content?: string | undefined;
|
|
4746
|
+
fileName?: string | undefined;
|
|
4747
|
+
fileLength?: number | undefined;
|
|
4748
|
+
};
|
|
4749
|
+
}[] | undefined;
|
|
4505
4750
|
}>;
|
|
4506
4751
|
export type googleOauthGetDriveFileContentByIdOutputType = z.infer<typeof googleOauthGetDriveFileContentByIdOutputSchema>;
|
|
4507
4752
|
export type googleOauthGetDriveFileContentByIdFunction = ActionFunction<googleOauthGetDriveFileContentByIdParamsType, AuthParamsType, googleOauthGetDriveFileContentByIdOutputType>;
|
|
@@ -6045,12 +6290,12 @@ export declare const oktaResetPasswordParamsSchema: z.ZodObject<{
|
|
|
6045
6290
|
sendEmail: z.ZodBoolean;
|
|
6046
6291
|
revokeSessions: z.ZodOptional<z.ZodBoolean>;
|
|
6047
6292
|
}, "strip", z.ZodTypeAny, {
|
|
6048
|
-
sendEmail: boolean;
|
|
6049
6293
|
userId: string;
|
|
6294
|
+
sendEmail: boolean;
|
|
6050
6295
|
revokeSessions?: boolean | undefined;
|
|
6051
6296
|
}, {
|
|
6052
|
-
sendEmail: boolean;
|
|
6053
6297
|
userId: string;
|
|
6298
|
+
sendEmail: boolean;
|
|
6054
6299
|
revokeSessions?: boolean | undefined;
|
|
6055
6300
|
}>;
|
|
6056
6301
|
export type oktaResetPasswordParamsType = z.infer<typeof oktaResetPasswordParamsSchema>;
|
|
@@ -6873,51 +7118,83 @@ export declare const salesforceSearchSalesforceRecordsParamsSchema: z.ZodObject<
|
|
|
6873
7118
|
export type salesforceSearchSalesforceRecordsParamsType = z.infer<typeof salesforceSearchSalesforceRecordsParamsSchema>;
|
|
6874
7119
|
export declare const salesforceSearchSalesforceRecordsOutputSchema: z.ZodObject<{
|
|
6875
7120
|
success: z.ZodBoolean;
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6887
|
-
|
|
7121
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7122
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7123
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7124
|
+
contents: z.ZodOptional<z.ZodObject<{
|
|
7125
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7126
|
+
attributes: z.ZodOptional<z.ZodObject<{
|
|
7127
|
+
type: z.ZodString;
|
|
7128
|
+
url: z.ZodString;
|
|
7129
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
7130
|
+
type: z.ZodString;
|
|
7131
|
+
url: z.ZodString;
|
|
7132
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
7133
|
+
type: z.ZodString;
|
|
7134
|
+
url: z.ZodString;
|
|
7135
|
+
}, z.ZodAny, "strip">>>;
|
|
7136
|
+
}, "strip", z.ZodTypeAny, {
|
|
7137
|
+
attributes?: z.objectOutputType<{
|
|
7138
|
+
type: z.ZodString;
|
|
7139
|
+
url: z.ZodString;
|
|
7140
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7141
|
+
id?: string | undefined;
|
|
7142
|
+
}, {
|
|
7143
|
+
attributes?: z.objectInputType<{
|
|
7144
|
+
type: z.ZodString;
|
|
7145
|
+
url: z.ZodString;
|
|
7146
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7147
|
+
id?: string | undefined;
|
|
7148
|
+
}>>;
|
|
6888
7149
|
}, "strip", z.ZodTypeAny, {
|
|
6889
|
-
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
7150
|
+
name?: string | undefined;
|
|
7151
|
+
url?: string | undefined;
|
|
7152
|
+
contents?: {
|
|
7153
|
+
attributes?: z.objectOutputType<{
|
|
7154
|
+
type: z.ZodString;
|
|
7155
|
+
url: z.ZodString;
|
|
7156
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7157
|
+
id?: string | undefined;
|
|
7158
|
+
} | undefined;
|
|
6894
7159
|
}, {
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
|
|
6898
|
-
|
|
6899
|
-
|
|
7160
|
+
name?: string | undefined;
|
|
7161
|
+
url?: string | undefined;
|
|
7162
|
+
contents?: {
|
|
7163
|
+
attributes?: z.objectInputType<{
|
|
7164
|
+
type: z.ZodString;
|
|
7165
|
+
url: z.ZodString;
|
|
7166
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7167
|
+
id?: string | undefined;
|
|
7168
|
+
} | undefined;
|
|
6900
7169
|
}>, "many">>;
|
|
6901
7170
|
error: z.ZodOptional<z.ZodString>;
|
|
6902
7171
|
}, "strip", z.ZodTypeAny, {
|
|
6903
7172
|
success: boolean;
|
|
6904
7173
|
error?: string | undefined;
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
7174
|
+
results?: {
|
|
7175
|
+
name?: string | undefined;
|
|
7176
|
+
url?: string | undefined;
|
|
7177
|
+
contents?: {
|
|
7178
|
+
attributes?: z.objectOutputType<{
|
|
7179
|
+
type: z.ZodString;
|
|
7180
|
+
url: z.ZodString;
|
|
7181
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7182
|
+
id?: string | undefined;
|
|
7183
|
+
} | undefined;
|
|
6911
7184
|
}[] | undefined;
|
|
6912
7185
|
}, {
|
|
6913
7186
|
success: boolean;
|
|
6914
7187
|
error?: string | undefined;
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
|
|
6919
|
-
|
|
6920
|
-
|
|
7188
|
+
results?: {
|
|
7189
|
+
name?: string | undefined;
|
|
7190
|
+
url?: string | undefined;
|
|
7191
|
+
contents?: {
|
|
7192
|
+
attributes?: z.objectInputType<{
|
|
7193
|
+
type: z.ZodString;
|
|
7194
|
+
url: z.ZodString;
|
|
7195
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
7196
|
+
id?: string | undefined;
|
|
7197
|
+
} | undefined;
|
|
6921
7198
|
}[] | undefined;
|
|
6922
7199
|
}>;
|
|
6923
7200
|
export type salesforceSearchSalesforceRecordsOutputType = z.infer<typeof salesforceSearchSalesforceRecordsOutputSchema>;
|
|
@@ -6935,16 +7212,16 @@ export declare const salesforceGetSalesforceRecordsByQueryParamsSchema: z.ZodObj
|
|
|
6935
7212
|
export type salesforceGetSalesforceRecordsByQueryParamsType = z.infer<typeof salesforceGetSalesforceRecordsByQueryParamsSchema>;
|
|
6936
7213
|
export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObject<{
|
|
6937
7214
|
success: z.ZodBoolean;
|
|
6938
|
-
|
|
7215
|
+
results: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
6939
7216
|
error: z.ZodOptional<z.ZodString>;
|
|
6940
7217
|
}, "strip", z.ZodTypeAny, {
|
|
6941
7218
|
success: boolean;
|
|
6942
7219
|
error?: string | undefined;
|
|
6943
|
-
|
|
7220
|
+
results?: any[] | undefined;
|
|
6944
7221
|
}, {
|
|
6945
7222
|
success: boolean;
|
|
6946
7223
|
error?: string | undefined;
|
|
6947
|
-
|
|
7224
|
+
results?: any[] | undefined;
|
|
6948
7225
|
}>;
|
|
6949
7226
|
export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
|
|
6950
7227
|
export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
|
|
@@ -7306,70 +7583,118 @@ export declare const githubListPullRequestsParamsSchema: z.ZodObject<{
|
|
|
7306
7583
|
}>;
|
|
7307
7584
|
export type githubListPullRequestsParamsType = z.infer<typeof githubListPullRequestsParamsSchema>;
|
|
7308
7585
|
export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7586
|
+
success: z.ZodBoolean;
|
|
7587
|
+
error: z.ZodOptional<z.ZodString>;
|
|
7588
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7589
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7313
7590
|
url: z.ZodOptional<z.ZodString>;
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7591
|
+
contents: z.ZodOptional<z.ZodObject<{
|
|
7592
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
7593
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7594
|
+
state: z.ZodOptional<z.ZodString>;
|
|
7595
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7596
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7597
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7598
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
7599
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7600
|
+
}, "strip", z.ZodTypeAny, {
|
|
7601
|
+
login?: string | undefined;
|
|
7602
|
+
}, {
|
|
7603
|
+
login?: string | undefined;
|
|
7604
|
+
}>>;
|
|
7605
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7318
7606
|
}, "strip", z.ZodTypeAny, {
|
|
7319
|
-
|
|
7607
|
+
number?: number | undefined;
|
|
7608
|
+
description?: string | undefined;
|
|
7609
|
+
user?: {
|
|
7610
|
+
login?: string | undefined;
|
|
7611
|
+
} | undefined;
|
|
7612
|
+
url?: string | undefined;
|
|
7613
|
+
title?: string | undefined;
|
|
7614
|
+
createdAt?: string | undefined;
|
|
7615
|
+
state?: string | undefined;
|
|
7616
|
+
updatedAt?: string | undefined;
|
|
7320
7617
|
}, {
|
|
7321
|
-
|
|
7618
|
+
number?: number | undefined;
|
|
7619
|
+
description?: string | undefined;
|
|
7620
|
+
user?: {
|
|
7621
|
+
login?: string | undefined;
|
|
7622
|
+
} | undefined;
|
|
7623
|
+
url?: string | undefined;
|
|
7624
|
+
title?: string | undefined;
|
|
7625
|
+
createdAt?: string | undefined;
|
|
7626
|
+
state?: string | undefined;
|
|
7627
|
+
updatedAt?: string | undefined;
|
|
7322
7628
|
}>>;
|
|
7323
|
-
description: z.ZodOptional<z.ZodString>;
|
|
7324
7629
|
}, "strip", z.ZodTypeAny, {
|
|
7325
|
-
|
|
7326
|
-
description?: string | undefined;
|
|
7327
|
-
user?: {
|
|
7328
|
-
login?: string | undefined;
|
|
7329
|
-
} | undefined;
|
|
7330
|
-
title?: string | undefined;
|
|
7630
|
+
name?: string | undefined;
|
|
7331
7631
|
url?: string | undefined;
|
|
7332
|
-
|
|
7333
|
-
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
|
|
7339
|
-
|
|
7632
|
+
contents?: {
|
|
7633
|
+
number?: number | undefined;
|
|
7634
|
+
description?: string | undefined;
|
|
7635
|
+
user?: {
|
|
7636
|
+
login?: string | undefined;
|
|
7637
|
+
} | undefined;
|
|
7638
|
+
url?: string | undefined;
|
|
7639
|
+
title?: string | undefined;
|
|
7640
|
+
createdAt?: string | undefined;
|
|
7641
|
+
state?: string | undefined;
|
|
7642
|
+
updatedAt?: string | undefined;
|
|
7340
7643
|
} | undefined;
|
|
7341
|
-
|
|
7644
|
+
}, {
|
|
7645
|
+
name?: string | undefined;
|
|
7342
7646
|
url?: string | undefined;
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
|
|
7349
|
-
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
7647
|
+
contents?: {
|
|
7648
|
+
number?: number | undefined;
|
|
7649
|
+
description?: string | undefined;
|
|
7650
|
+
user?: {
|
|
7651
|
+
login?: string | undefined;
|
|
7652
|
+
} | undefined;
|
|
7653
|
+
url?: string | undefined;
|
|
7654
|
+
title?: string | undefined;
|
|
7655
|
+
createdAt?: string | undefined;
|
|
7656
|
+
state?: string | undefined;
|
|
7657
|
+
updatedAt?: string | undefined;
|
|
7353
7658
|
} | undefined;
|
|
7354
|
-
|
|
7659
|
+
}>, "many">>;
|
|
7660
|
+
}, "strip", z.ZodTypeAny, {
|
|
7661
|
+
success: boolean;
|
|
7662
|
+
error?: string | undefined;
|
|
7663
|
+
results?: {
|
|
7664
|
+
name?: string | undefined;
|
|
7355
7665
|
url?: string | undefined;
|
|
7356
|
-
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
|
|
7364
|
-
|
|
7365
|
-
|
|
7366
|
-
|
|
7367
|
-
|
|
7666
|
+
contents?: {
|
|
7667
|
+
number?: number | undefined;
|
|
7668
|
+
description?: string | undefined;
|
|
7669
|
+
user?: {
|
|
7670
|
+
login?: string | undefined;
|
|
7671
|
+
} | undefined;
|
|
7672
|
+
url?: string | undefined;
|
|
7673
|
+
title?: string | undefined;
|
|
7674
|
+
createdAt?: string | undefined;
|
|
7675
|
+
state?: string | undefined;
|
|
7676
|
+
updatedAt?: string | undefined;
|
|
7677
|
+
} | undefined;
|
|
7678
|
+
}[] | undefined;
|
|
7679
|
+
}, {
|
|
7680
|
+
success: boolean;
|
|
7681
|
+
error?: string | undefined;
|
|
7682
|
+
results?: {
|
|
7683
|
+
name?: string | undefined;
|
|
7368
7684
|
url?: string | undefined;
|
|
7369
|
-
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
|
|
7685
|
+
contents?: {
|
|
7686
|
+
number?: number | undefined;
|
|
7687
|
+
description?: string | undefined;
|
|
7688
|
+
user?: {
|
|
7689
|
+
login?: string | undefined;
|
|
7690
|
+
} | undefined;
|
|
7691
|
+
url?: string | undefined;
|
|
7692
|
+
title?: string | undefined;
|
|
7693
|
+
createdAt?: string | undefined;
|
|
7694
|
+
state?: string | undefined;
|
|
7695
|
+
updatedAt?: string | undefined;
|
|
7696
|
+
} | undefined;
|
|
7697
|
+
}[] | undefined;
|
|
7373
7698
|
}>;
|
|
7374
7699
|
export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
|
|
7375
7700
|
export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
|
|
@@ -7556,8 +7881,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7556
7881
|
}, "strip", z.ZodTypeAny, {
|
|
7557
7882
|
number?: number | undefined;
|
|
7558
7883
|
description?: string | null | undefined;
|
|
7559
|
-
title?: string | undefined;
|
|
7560
7884
|
url?: string | undefined;
|
|
7885
|
+
title?: string | undefined;
|
|
7561
7886
|
createdAt?: string | undefined;
|
|
7562
7887
|
head?: {
|
|
7563
7888
|
sha?: string | undefined;
|
|
@@ -7583,12 +7908,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7583
7908
|
} | undefined;
|
|
7584
7909
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7585
7910
|
merged?: boolean | undefined;
|
|
7586
|
-
htmlUrl?: string | undefined;
|
|
7587
7911
|
commits?: number | undefined;
|
|
7588
7912
|
author?: {
|
|
7589
7913
|
login?: string | undefined;
|
|
7590
7914
|
} | undefined;
|
|
7591
7915
|
updatedAt?: string | undefined;
|
|
7916
|
+
htmlUrl?: string | undefined;
|
|
7592
7917
|
draft?: boolean | undefined;
|
|
7593
7918
|
closedAt?: string | null | undefined;
|
|
7594
7919
|
mergedAt?: string | null | undefined;
|
|
@@ -7617,8 +7942,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7617
7942
|
}, {
|
|
7618
7943
|
number?: number | undefined;
|
|
7619
7944
|
description?: string | null | undefined;
|
|
7620
|
-
title?: string | undefined;
|
|
7621
7945
|
url?: string | undefined;
|
|
7946
|
+
title?: string | undefined;
|
|
7622
7947
|
createdAt?: string | undefined;
|
|
7623
7948
|
head?: {
|
|
7624
7949
|
sha?: string | undefined;
|
|
@@ -7644,12 +7969,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7644
7969
|
} | undefined;
|
|
7645
7970
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7646
7971
|
merged?: boolean | undefined;
|
|
7647
|
-
htmlUrl?: string | undefined;
|
|
7648
7972
|
commits?: number | undefined;
|
|
7649
7973
|
author?: {
|
|
7650
7974
|
login?: string | undefined;
|
|
7651
7975
|
} | undefined;
|
|
7652
7976
|
updatedAt?: string | undefined;
|
|
7977
|
+
htmlUrl?: string | undefined;
|
|
7653
7978
|
draft?: boolean | undefined;
|
|
7654
7979
|
closedAt?: string | null | undefined;
|
|
7655
7980
|
mergedAt?: string | null | undefined;
|
|
@@ -7682,8 +8007,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7682
8007
|
pullRequest?: {
|
|
7683
8008
|
number?: number | undefined;
|
|
7684
8009
|
description?: string | null | undefined;
|
|
7685
|
-
title?: string | undefined;
|
|
7686
8010
|
url?: string | undefined;
|
|
8011
|
+
title?: string | undefined;
|
|
7687
8012
|
createdAt?: string | undefined;
|
|
7688
8013
|
head?: {
|
|
7689
8014
|
sha?: string | undefined;
|
|
@@ -7709,12 +8034,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7709
8034
|
} | undefined;
|
|
7710
8035
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7711
8036
|
merged?: boolean | undefined;
|
|
7712
|
-
htmlUrl?: string | undefined;
|
|
7713
8037
|
commits?: number | undefined;
|
|
7714
8038
|
author?: {
|
|
7715
8039
|
login?: string | undefined;
|
|
7716
8040
|
} | undefined;
|
|
7717
8041
|
updatedAt?: string | undefined;
|
|
8042
|
+
htmlUrl?: string | undefined;
|
|
7718
8043
|
draft?: boolean | undefined;
|
|
7719
8044
|
closedAt?: string | null | undefined;
|
|
7720
8045
|
mergedAt?: string | null | undefined;
|
|
@@ -7747,8 +8072,8 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7747
8072
|
pullRequest?: {
|
|
7748
8073
|
number?: number | undefined;
|
|
7749
8074
|
description?: string | null | undefined;
|
|
7750
|
-
title?: string | undefined;
|
|
7751
8075
|
url?: string | undefined;
|
|
8076
|
+
title?: string | undefined;
|
|
7752
8077
|
createdAt?: string | undefined;
|
|
7753
8078
|
head?: {
|
|
7754
8079
|
sha?: string | undefined;
|
|
@@ -7774,12 +8099,12 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7774
8099
|
} | undefined;
|
|
7775
8100
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7776
8101
|
merged?: boolean | undefined;
|
|
7777
|
-
htmlUrl?: string | undefined;
|
|
7778
8102
|
commits?: number | undefined;
|
|
7779
8103
|
author?: {
|
|
7780
8104
|
login?: string | undefined;
|
|
7781
8105
|
} | undefined;
|
|
7782
8106
|
updatedAt?: string | undefined;
|
|
8107
|
+
htmlUrl?: string | undefined;
|
|
7783
8108
|
draft?: boolean | undefined;
|
|
7784
8109
|
closedAt?: string | null | undefined;
|
|
7785
8110
|
mergedAt?: string | null | undefined;
|
|
@@ -7826,24 +8151,70 @@ export type githubGetFileContentParamsType = z.infer<typeof githubGetFileContent
|
|
|
7826
8151
|
export declare const githubGetFileContentOutputSchema: z.ZodObject<{
|
|
7827
8152
|
success: z.ZodBoolean;
|
|
7828
8153
|
error: z.ZodOptional<z.ZodString>;
|
|
7829
|
-
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
|
|
8154
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8155
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8156
|
+
url: z.ZodOptional<z.ZodString>;
|
|
8157
|
+
contents: z.ZodOptional<z.ZodObject<{
|
|
8158
|
+
content: z.ZodOptional<z.ZodString>;
|
|
8159
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
8160
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8161
|
+
htmlUrl: z.ZodOptional<z.ZodString>;
|
|
8162
|
+
}, "strip", z.ZodTypeAny, {
|
|
8163
|
+
name?: string | undefined;
|
|
8164
|
+
content?: string | undefined;
|
|
8165
|
+
size?: number | undefined;
|
|
8166
|
+
htmlUrl?: string | undefined;
|
|
8167
|
+
}, {
|
|
8168
|
+
name?: string | undefined;
|
|
8169
|
+
content?: string | undefined;
|
|
8170
|
+
size?: number | undefined;
|
|
8171
|
+
htmlUrl?: string | undefined;
|
|
8172
|
+
}>>;
|
|
8173
|
+
}, "strip", z.ZodTypeAny, {
|
|
8174
|
+
name?: string | undefined;
|
|
8175
|
+
url?: string | undefined;
|
|
8176
|
+
contents?: {
|
|
8177
|
+
name?: string | undefined;
|
|
8178
|
+
content?: string | undefined;
|
|
8179
|
+
size?: number | undefined;
|
|
8180
|
+
htmlUrl?: string | undefined;
|
|
8181
|
+
} | undefined;
|
|
8182
|
+
}, {
|
|
8183
|
+
name?: string | undefined;
|
|
8184
|
+
url?: string | undefined;
|
|
8185
|
+
contents?: {
|
|
8186
|
+
name?: string | undefined;
|
|
8187
|
+
content?: string | undefined;
|
|
8188
|
+
size?: number | undefined;
|
|
8189
|
+
htmlUrl?: string | undefined;
|
|
8190
|
+
} | undefined;
|
|
8191
|
+
}>, "many">>;
|
|
7833
8192
|
}, "strip", z.ZodTypeAny, {
|
|
7834
8193
|
success: boolean;
|
|
7835
|
-
name?: string | undefined;
|
|
7836
8194
|
error?: string | undefined;
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
8195
|
+
results?: {
|
|
8196
|
+
name?: string | undefined;
|
|
8197
|
+
url?: string | undefined;
|
|
8198
|
+
contents?: {
|
|
8199
|
+
name?: string | undefined;
|
|
8200
|
+
content?: string | undefined;
|
|
8201
|
+
size?: number | undefined;
|
|
8202
|
+
htmlUrl?: string | undefined;
|
|
8203
|
+
} | undefined;
|
|
8204
|
+
}[] | undefined;
|
|
7840
8205
|
}, {
|
|
7841
8206
|
success: boolean;
|
|
7842
|
-
name?: string | undefined;
|
|
7843
8207
|
error?: string | undefined;
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
8208
|
+
results?: {
|
|
8209
|
+
name?: string | undefined;
|
|
8210
|
+
url?: string | undefined;
|
|
8211
|
+
contents?: {
|
|
8212
|
+
name?: string | undefined;
|
|
8213
|
+
content?: string | undefined;
|
|
8214
|
+
size?: number | undefined;
|
|
8215
|
+
htmlUrl?: string | undefined;
|
|
8216
|
+
} | undefined;
|
|
8217
|
+
}[] | undefined;
|
|
7847
8218
|
}>;
|
|
7848
8219
|
export type githubGetFileContentOutputType = z.infer<typeof githubGetFileContentOutputSchema>;
|
|
7849
8220
|
export type githubGetFileContentFunction = ActionFunction<githubGetFileContentParamsType, AuthParamsType, githubGetFileContentOutputType>;
|
|
@@ -7864,44 +8235,62 @@ export type githubListDirectoryParamsType = z.infer<typeof githubListDirectoryPa
|
|
|
7864
8235
|
export declare const githubListDirectoryOutputSchema: z.ZodObject<{
|
|
7865
8236
|
success: z.ZodBoolean;
|
|
7866
8237
|
error: z.ZodOptional<z.ZodString>;
|
|
7867
|
-
|
|
8238
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7868
8239
|
name: z.ZodString;
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
8240
|
+
url: z.ZodString;
|
|
8241
|
+
contents: z.ZodObject<{
|
|
8242
|
+
path: z.ZodString;
|
|
8243
|
+
type: z.ZodString;
|
|
8244
|
+
size: z.ZodNumber;
|
|
8245
|
+
}, "strip", z.ZodTypeAny, {
|
|
8246
|
+
type: string;
|
|
8247
|
+
path: string;
|
|
8248
|
+
size: number;
|
|
8249
|
+
}, {
|
|
8250
|
+
type: string;
|
|
8251
|
+
path: string;
|
|
8252
|
+
size: number;
|
|
8253
|
+
}>;
|
|
7873
8254
|
}, "strip", z.ZodTypeAny, {
|
|
7874
|
-
type: string;
|
|
7875
|
-
path: string;
|
|
7876
8255
|
name: string;
|
|
7877
|
-
|
|
7878
|
-
|
|
8256
|
+
url: string;
|
|
8257
|
+
contents: {
|
|
8258
|
+
type: string;
|
|
8259
|
+
path: string;
|
|
8260
|
+
size: number;
|
|
8261
|
+
};
|
|
7879
8262
|
}, {
|
|
7880
|
-
type: string;
|
|
7881
|
-
path: string;
|
|
7882
8263
|
name: string;
|
|
7883
|
-
|
|
7884
|
-
|
|
8264
|
+
url: string;
|
|
8265
|
+
contents: {
|
|
8266
|
+
type: string;
|
|
8267
|
+
path: string;
|
|
8268
|
+
size: number;
|
|
8269
|
+
};
|
|
7885
8270
|
}>, "many">>;
|
|
7886
8271
|
}, "strip", z.ZodTypeAny, {
|
|
7887
8272
|
success: boolean;
|
|
7888
8273
|
error?: string | undefined;
|
|
7889
|
-
|
|
7890
|
-
type: string;
|
|
7891
|
-
path: string;
|
|
8274
|
+
results?: {
|
|
7892
8275
|
name: string;
|
|
7893
|
-
|
|
7894
|
-
|
|
8276
|
+
url: string;
|
|
8277
|
+
contents: {
|
|
8278
|
+
type: string;
|
|
8279
|
+
path: string;
|
|
8280
|
+
size: number;
|
|
8281
|
+
};
|
|
7895
8282
|
}[] | undefined;
|
|
7896
8283
|
}, {
|
|
7897
8284
|
success: boolean;
|
|
7898
8285
|
error?: string | undefined;
|
|
7899
|
-
|
|
7900
|
-
type: string;
|
|
7901
|
-
path: string;
|
|
8286
|
+
results?: {
|
|
7902
8287
|
name: string;
|
|
7903
|
-
|
|
7904
|
-
|
|
8288
|
+
url: string;
|
|
8289
|
+
contents: {
|
|
8290
|
+
type: string;
|
|
8291
|
+
path: string;
|
|
8292
|
+
size: number;
|
|
8293
|
+
};
|
|
7905
8294
|
}[] | undefined;
|
|
7906
8295
|
}>;
|
|
7907
8296
|
export type githubListDirectoryOutputType = z.infer<typeof githubListDirectoryOutputSchema>;
|
|
@@ -8197,264 +8586,42 @@ export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
|
|
|
8197
8586
|
}>;
|
|
8198
8587
|
export type githubSearchOrganizationParamsType = z.infer<typeof githubSearchOrganizationParamsSchema>;
|
|
8199
8588
|
export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
|
|
8200
|
-
|
|
8589
|
+
success: z.ZodBoolean;
|
|
8590
|
+
error: z.ZodOptional<z.ZodString>;
|
|
8591
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8201
8592
|
name: z.ZodString;
|
|
8202
|
-
path: z.ZodString;
|
|
8203
|
-
sha: z.ZodString;
|
|
8204
8593
|
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">;
|
|
8594
|
+
type: z.ZodEnum<["code", "commit", "issueOrPullRequest"]>;
|
|
8595
|
+
content: z.ZodEffects<z.ZodAny, any, any>;
|
|
8237
8596
|
}, "strip", z.ZodTypeAny, {
|
|
8238
|
-
|
|
8597
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8239
8598
|
name: string;
|
|
8240
8599
|
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
|
-
}[];
|
|
8600
|
+
content?: any;
|
|
8252
8601
|
}, {
|
|
8253
|
-
|
|
8602
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8254
8603
|
name: string;
|
|
8255
8604
|
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, {
|
|
8605
|
+
content?: any;
|
|
8606
|
+
}>, "many">>;
|
|
8607
|
+
}, "strip", z.ZodTypeAny, {
|
|
8608
|
+
success: boolean;
|
|
8609
|
+
error?: string | undefined;
|
|
8610
|
+
results?: {
|
|
8611
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8612
|
+
name: string;
|
|
8302
8613
|
url: string;
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
|
|
8310
|
-
|
|
8311
|
-
} | undefined;
|
|
8312
|
-
}, {
|
|
8614
|
+
content?: any;
|
|
8615
|
+
}[] | undefined;
|
|
8616
|
+
}, {
|
|
8617
|
+
success: boolean;
|
|
8618
|
+
error?: string | undefined;
|
|
8619
|
+
results?: {
|
|
8620
|
+
type: "code" | "commit" | "issueOrPullRequest";
|
|
8621
|
+
name: string;
|
|
8313
8622
|
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
|
-
}[];
|
|
8623
|
+
content?: any;
|
|
8624
|
+
}[] | undefined;
|
|
8458
8625
|
}>;
|
|
8459
8626
|
export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
|
|
8460
8627
|
export type githubSearchOrganizationFunction = ActionFunction<githubSearchOrganizationParamsType, AuthParamsType, githubSearchOrganizationOutputType>;
|
|
@@ -9139,16 +9306,15 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9139
9306
|
htmlUrl: z.ZodString;
|
|
9140
9307
|
}, "strip", z.ZodTypeAny, {
|
|
9141
9308
|
url: string;
|
|
9142
|
-
htmlUrl: string;
|
|
9143
9309
|
sha: string;
|
|
9310
|
+
htmlUrl: string;
|
|
9144
9311
|
}, {
|
|
9145
9312
|
url: string;
|
|
9146
|
-
htmlUrl: string;
|
|
9147
9313
|
sha: string;
|
|
9314
|
+
htmlUrl: string;
|
|
9148
9315
|
}>, "many">>;
|
|
9149
9316
|
}, "strip", z.ZodTypeAny, {
|
|
9150
9317
|
url: string;
|
|
9151
|
-
htmlUrl: string;
|
|
9152
9318
|
sha: string;
|
|
9153
9319
|
author: {
|
|
9154
9320
|
login?: string | undefined;
|
|
@@ -9171,14 +9337,14 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9171
9337
|
};
|
|
9172
9338
|
commentCount?: number | undefined;
|
|
9173
9339
|
};
|
|
9340
|
+
htmlUrl: string;
|
|
9174
9341
|
parents?: {
|
|
9175
9342
|
url: string;
|
|
9176
|
-
htmlUrl: string;
|
|
9177
9343
|
sha: string;
|
|
9344
|
+
htmlUrl: string;
|
|
9178
9345
|
}[] | undefined;
|
|
9179
9346
|
}, {
|
|
9180
9347
|
url: string;
|
|
9181
|
-
htmlUrl: string;
|
|
9182
9348
|
sha: string;
|
|
9183
9349
|
author: {
|
|
9184
9350
|
login?: string | undefined;
|
|
@@ -9201,10 +9367,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9201
9367
|
};
|
|
9202
9368
|
commentCount?: number | undefined;
|
|
9203
9369
|
};
|
|
9370
|
+
htmlUrl: string;
|
|
9204
9371
|
parents?: {
|
|
9205
9372
|
url: string;
|
|
9206
|
-
htmlUrl: string;
|
|
9207
9373
|
sha: string;
|
|
9374
|
+
htmlUrl: string;
|
|
9208
9375
|
}[] | undefined;
|
|
9209
9376
|
}>, "many">>;
|
|
9210
9377
|
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9214,7 +9381,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9214
9381
|
error?: string | undefined;
|
|
9215
9382
|
commits?: {
|
|
9216
9383
|
url: string;
|
|
9217
|
-
htmlUrl: string;
|
|
9218
9384
|
sha: string;
|
|
9219
9385
|
author: {
|
|
9220
9386
|
login?: string | undefined;
|
|
@@ -9237,10 +9403,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9237
9403
|
};
|
|
9238
9404
|
commentCount?: number | undefined;
|
|
9239
9405
|
};
|
|
9406
|
+
htmlUrl: string;
|
|
9240
9407
|
parents?: {
|
|
9241
9408
|
url: string;
|
|
9242
|
-
htmlUrl: string;
|
|
9243
9409
|
sha: string;
|
|
9410
|
+
htmlUrl: string;
|
|
9244
9411
|
}[] | undefined;
|
|
9245
9412
|
}[] | undefined;
|
|
9246
9413
|
totalCount?: number | undefined;
|
|
@@ -9250,7 +9417,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9250
9417
|
error?: string | undefined;
|
|
9251
9418
|
commits?: {
|
|
9252
9419
|
url: string;
|
|
9253
|
-
htmlUrl: string;
|
|
9254
9420
|
sha: string;
|
|
9255
9421
|
author: {
|
|
9256
9422
|
login?: string | undefined;
|
|
@@ -9273,10 +9439,11 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9273
9439
|
};
|
|
9274
9440
|
commentCount?: number | undefined;
|
|
9275
9441
|
};
|
|
9442
|
+
htmlUrl: string;
|
|
9276
9443
|
parents?: {
|
|
9277
9444
|
url: string;
|
|
9278
|
-
htmlUrl: string;
|
|
9279
9445
|
sha: string;
|
|
9446
|
+
htmlUrl: string;
|
|
9280
9447
|
}[] | undefined;
|
|
9281
9448
|
}[] | undefined;
|
|
9282
9449
|
totalCount?: number | undefined;
|
|
@@ -9434,365 +9601,41 @@ export declare const gitlabSearchGroupParamsSchema: z.ZodObject<{
|
|
|
9434
9601
|
}>;
|
|
9435
9602
|
export type gitlabSearchGroupParamsType = z.infer<typeof gitlabSearchGroupParamsSchema>;
|
|
9436
9603
|
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">;
|
|
9604
|
+
success: z.ZodBoolean;
|
|
9605
|
+
error: z.ZodOptional<z.ZodString>;
|
|
9606
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9607
|
+
name: z.ZodString;
|
|
9608
|
+
url: z.ZodString;
|
|
9609
|
+
type: z.ZodEnum<["mergeRequest", "blob", "commit"]>;
|
|
9610
|
+
contents: z.ZodEffects<z.ZodAny, any, any>;
|
|
9654
9611
|
}, "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;
|
|
9612
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9613
|
+
name: string;
|
|
9614
|
+
url: string;
|
|
9615
|
+
contents?: any;
|
|
9668
9616
|
}, {
|
|
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;
|
|
9617
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9618
|
+
name: string;
|
|
9619
|
+
url: string;
|
|
9620
|
+
contents?: any;
|
|
9682
9621
|
}>, "many">>;
|
|
9683
9622
|
}, "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;
|
|
9623
|
+
success: boolean;
|
|
9624
|
+
error?: string | undefined;
|
|
9625
|
+
results?: {
|
|
9626
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9627
|
+
name: string;
|
|
9628
|
+
url: string;
|
|
9629
|
+
contents?: any;
|
|
9739
9630
|
}[] | undefined;
|
|
9740
9631
|
}, {
|
|
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;
|
|
9632
|
+
success: boolean;
|
|
9633
|
+
error?: string | undefined;
|
|
9634
|
+
results?: {
|
|
9635
|
+
type: "commit" | "mergeRequest" | "blob";
|
|
9636
|
+
name: string;
|
|
9637
|
+
url: string;
|
|
9638
|
+
contents?: any;
|
|
9796
9639
|
}[] | undefined;
|
|
9797
9640
|
}>;
|
|
9798
9641
|
export type gitlabSearchGroupOutputType = z.infer<typeof gitlabSearchGroupOutputSchema>;
|
|
@@ -9814,24 +9657,70 @@ export type gitlabGetFileContentParamsType = z.infer<typeof gitlabGetFileContent
|
|
|
9814
9657
|
export declare const gitlabGetFileContentOutputSchema: z.ZodObject<{
|
|
9815
9658
|
success: z.ZodBoolean;
|
|
9816
9659
|
error: z.ZodOptional<z.ZodString>;
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
9660
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9661
|
+
name: z.ZodString;
|
|
9662
|
+
url: z.ZodString;
|
|
9663
|
+
contents: z.ZodObject<{
|
|
9664
|
+
content: z.ZodString;
|
|
9665
|
+
size: z.ZodNumber;
|
|
9666
|
+
name: z.ZodString;
|
|
9667
|
+
htmlUrl: z.ZodString;
|
|
9668
|
+
}, "strip", z.ZodTypeAny, {
|
|
9669
|
+
name: string;
|
|
9670
|
+
content: string;
|
|
9671
|
+
size: number;
|
|
9672
|
+
htmlUrl: string;
|
|
9673
|
+
}, {
|
|
9674
|
+
name: string;
|
|
9675
|
+
content: string;
|
|
9676
|
+
size: number;
|
|
9677
|
+
htmlUrl: string;
|
|
9678
|
+
}>;
|
|
9679
|
+
}, "strip", z.ZodTypeAny, {
|
|
9680
|
+
name: string;
|
|
9681
|
+
url: string;
|
|
9682
|
+
contents: {
|
|
9683
|
+
name: string;
|
|
9684
|
+
content: string;
|
|
9685
|
+
size: number;
|
|
9686
|
+
htmlUrl: string;
|
|
9687
|
+
};
|
|
9688
|
+
}, {
|
|
9689
|
+
name: string;
|
|
9690
|
+
url: string;
|
|
9691
|
+
contents: {
|
|
9692
|
+
name: string;
|
|
9693
|
+
content: string;
|
|
9694
|
+
size: number;
|
|
9695
|
+
htmlUrl: string;
|
|
9696
|
+
};
|
|
9697
|
+
}>, "many">>;
|
|
9821
9698
|
}, "strip", z.ZodTypeAny, {
|
|
9822
9699
|
success: boolean;
|
|
9823
|
-
name?: string | undefined;
|
|
9824
9700
|
error?: string | undefined;
|
|
9825
|
-
|
|
9826
|
-
|
|
9827
|
-
|
|
9701
|
+
results?: {
|
|
9702
|
+
name: string;
|
|
9703
|
+
url: string;
|
|
9704
|
+
contents: {
|
|
9705
|
+
name: string;
|
|
9706
|
+
content: string;
|
|
9707
|
+
size: number;
|
|
9708
|
+
htmlUrl: string;
|
|
9709
|
+
};
|
|
9710
|
+
}[] | undefined;
|
|
9828
9711
|
}, {
|
|
9829
9712
|
success: boolean;
|
|
9830
|
-
name?: string | undefined;
|
|
9831
9713
|
error?: string | undefined;
|
|
9832
|
-
|
|
9833
|
-
|
|
9834
|
-
|
|
9714
|
+
results?: {
|
|
9715
|
+
name: string;
|
|
9716
|
+
url: string;
|
|
9717
|
+
contents: {
|
|
9718
|
+
name: string;
|
|
9719
|
+
content: string;
|
|
9720
|
+
size: number;
|
|
9721
|
+
htmlUrl: string;
|
|
9722
|
+
};
|
|
9723
|
+
}[] | undefined;
|
|
9835
9724
|
}>;
|
|
9836
9725
|
export type gitlabGetFileContentOutputType = z.infer<typeof gitlabGetFileContentOutputSchema>;
|
|
9837
9726
|
export type gitlabGetFileContentFunction = ActionFunction<gitlabGetFileContentParamsType, AuthParamsType, gitlabGetFileContentOutputType>;
|
|
@@ -9853,41 +9742,79 @@ export declare const gitlabListDirectoryParamsSchema: z.ZodObject<{
|
|
|
9853
9742
|
}>;
|
|
9854
9743
|
export type gitlabListDirectoryParamsType = z.infer<typeof gitlabListDirectoryParamsSchema>;
|
|
9855
9744
|
export declare const gitlabListDirectoryOutputSchema: z.ZodObject<{
|
|
9856
|
-
|
|
9745
|
+
success: z.ZodBoolean;
|
|
9746
|
+
error: z.ZodOptional<z.ZodString>;
|
|
9747
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9857
9748
|
name: z.ZodString;
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9861
|
-
|
|
9749
|
+
url: z.ZodString;
|
|
9750
|
+
contents: z.ZodObject<{
|
|
9751
|
+
name: z.ZodString;
|
|
9752
|
+
path: z.ZodString;
|
|
9753
|
+
type: z.ZodString;
|
|
9754
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
9755
|
+
htmlUrl: z.ZodString;
|
|
9756
|
+
}, "strip", z.ZodTypeAny, {
|
|
9757
|
+
type: string;
|
|
9758
|
+
path: string;
|
|
9759
|
+
name: string;
|
|
9760
|
+
htmlUrl: string;
|
|
9761
|
+
size?: number | undefined;
|
|
9762
|
+
}, {
|
|
9763
|
+
type: string;
|
|
9764
|
+
path: string;
|
|
9765
|
+
name: string;
|
|
9766
|
+
htmlUrl: string;
|
|
9767
|
+
size?: number | undefined;
|
|
9768
|
+
}>;
|
|
9862
9769
|
}, "strip", z.ZodTypeAny, {
|
|
9863
|
-
type: string;
|
|
9864
|
-
path: string;
|
|
9865
9770
|
name: string;
|
|
9866
|
-
|
|
9867
|
-
|
|
9771
|
+
url: string;
|
|
9772
|
+
contents: {
|
|
9773
|
+
type: string;
|
|
9774
|
+
path: string;
|
|
9775
|
+
name: string;
|
|
9776
|
+
htmlUrl: string;
|
|
9777
|
+
size?: number | undefined;
|
|
9778
|
+
};
|
|
9868
9779
|
}, {
|
|
9869
|
-
type: string;
|
|
9870
|
-
path: string;
|
|
9871
9780
|
name: string;
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9781
|
+
url: string;
|
|
9782
|
+
contents: {
|
|
9783
|
+
type: string;
|
|
9784
|
+
path: string;
|
|
9785
|
+
name: string;
|
|
9786
|
+
htmlUrl: string;
|
|
9787
|
+
size?: number | undefined;
|
|
9788
|
+
};
|
|
9789
|
+
}>, "many">>;
|
|
9875
9790
|
}, "strip", z.ZodTypeAny, {
|
|
9876
|
-
|
|
9877
|
-
|
|
9878
|
-
|
|
9791
|
+
success: boolean;
|
|
9792
|
+
error?: string | undefined;
|
|
9793
|
+
results?: {
|
|
9879
9794
|
name: string;
|
|
9880
|
-
|
|
9881
|
-
|
|
9882
|
-
|
|
9795
|
+
url: string;
|
|
9796
|
+
contents: {
|
|
9797
|
+
type: string;
|
|
9798
|
+
path: string;
|
|
9799
|
+
name: string;
|
|
9800
|
+
htmlUrl: string;
|
|
9801
|
+
size?: number | undefined;
|
|
9802
|
+
};
|
|
9803
|
+
}[] | undefined;
|
|
9883
9804
|
}, {
|
|
9884
|
-
|
|
9885
|
-
|
|
9886
|
-
|
|
9805
|
+
success: boolean;
|
|
9806
|
+
error?: string | undefined;
|
|
9807
|
+
results?: {
|
|
9887
9808
|
name: string;
|
|
9888
|
-
|
|
9889
|
-
|
|
9890
|
-
|
|
9809
|
+
url: string;
|
|
9810
|
+
contents: {
|
|
9811
|
+
type: string;
|
|
9812
|
+
path: string;
|
|
9813
|
+
name: string;
|
|
9814
|
+
htmlUrl: string;
|
|
9815
|
+
size?: number | undefined;
|
|
9816
|
+
};
|
|
9817
|
+
}[] | undefined;
|
|
9891
9818
|
}>;
|
|
9892
9819
|
export type gitlabListDirectoryOutputType = z.infer<typeof gitlabListDirectoryOutputSchema>;
|
|
9893
9820
|
export type gitlabListDirectoryFunction = ActionFunction<gitlabListDirectoryParamsType, AuthParamsType, gitlabListDirectoryOutputType>;
|
|
@@ -9962,12 +9889,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
9962
9889
|
comment?: string | undefined;
|
|
9963
9890
|
author_name?: string | undefined;
|
|
9964
9891
|
}[] | undefined;
|
|
9892
|
+
url?: string | undefined;
|
|
9965
9893
|
title?: string | undefined;
|
|
9966
9894
|
project?: {
|
|
9967
9895
|
name?: string | undefined;
|
|
9968
9896
|
id?: string | undefined;
|
|
9969
9897
|
} | undefined;
|
|
9970
|
-
url?: string | undefined;
|
|
9971
9898
|
state?: string | undefined;
|
|
9972
9899
|
team?: {
|
|
9973
9900
|
name?: string | undefined;
|
|
@@ -9985,12 +9912,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
9985
9912
|
comment?: string | undefined;
|
|
9986
9913
|
author_name?: string | undefined;
|
|
9987
9914
|
}[] | undefined;
|
|
9915
|
+
url?: string | undefined;
|
|
9988
9916
|
title?: string | undefined;
|
|
9989
9917
|
project?: {
|
|
9990
9918
|
name?: string | undefined;
|
|
9991
9919
|
id?: string | undefined;
|
|
9992
9920
|
} | undefined;
|
|
9993
|
-
url?: string | undefined;
|
|
9994
9921
|
state?: string | undefined;
|
|
9995
9922
|
team?: {
|
|
9996
9923
|
name?: string | undefined;
|
|
@@ -10011,12 +9938,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
10011
9938
|
comment?: string | undefined;
|
|
10012
9939
|
author_name?: string | undefined;
|
|
10013
9940
|
}[] | undefined;
|
|
9941
|
+
url?: string | undefined;
|
|
10014
9942
|
title?: string | undefined;
|
|
10015
9943
|
project?: {
|
|
10016
9944
|
name?: string | undefined;
|
|
10017
9945
|
id?: string | undefined;
|
|
10018
9946
|
} | undefined;
|
|
10019
|
-
url?: string | undefined;
|
|
10020
9947
|
state?: string | undefined;
|
|
10021
9948
|
team?: {
|
|
10022
9949
|
name?: string | undefined;
|
|
@@ -10038,12 +9965,12 @@ export declare const linearGetIssuesOutputSchema: z.ZodObject<{
|
|
|
10038
9965
|
comment?: string | undefined;
|
|
10039
9966
|
author_name?: string | undefined;
|
|
10040
9967
|
}[] | undefined;
|
|
9968
|
+
url?: string | undefined;
|
|
10041
9969
|
title?: string | undefined;
|
|
10042
9970
|
project?: {
|
|
10043
9971
|
name?: string | undefined;
|
|
10044
9972
|
id?: string | undefined;
|
|
10045
9973
|
} | undefined;
|
|
10046
|
-
url?: string | undefined;
|
|
10047
9974
|
state?: string | undefined;
|
|
10048
9975
|
team?: {
|
|
10049
9976
|
name?: string | undefined;
|
|
@@ -10141,13 +10068,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10141
10068
|
comment?: string | undefined;
|
|
10142
10069
|
author_name?: string | undefined;
|
|
10143
10070
|
}[] | undefined;
|
|
10071
|
+
url?: string | undefined;
|
|
10144
10072
|
title?: string | undefined;
|
|
10145
10073
|
content?: string | undefined;
|
|
10146
10074
|
project?: {
|
|
10147
10075
|
name?: string | undefined;
|
|
10148
10076
|
id?: string | undefined;
|
|
10149
10077
|
} | undefined;
|
|
10150
|
-
url?: string | undefined;
|
|
10151
10078
|
createdAt?: string | undefined;
|
|
10152
10079
|
priority?: number | undefined;
|
|
10153
10080
|
state?: string | undefined;
|
|
@@ -10174,13 +10101,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10174
10101
|
comment?: string | undefined;
|
|
10175
10102
|
author_name?: string | undefined;
|
|
10176
10103
|
}[] | undefined;
|
|
10104
|
+
url?: string | undefined;
|
|
10177
10105
|
title?: string | undefined;
|
|
10178
10106
|
content?: string | undefined;
|
|
10179
10107
|
project?: {
|
|
10180
10108
|
name?: string | undefined;
|
|
10181
10109
|
id?: string | undefined;
|
|
10182
10110
|
} | undefined;
|
|
10183
|
-
url?: string | undefined;
|
|
10184
10111
|
createdAt?: string | undefined;
|
|
10185
10112
|
priority?: number | undefined;
|
|
10186
10113
|
state?: string | undefined;
|
|
@@ -10211,13 +10138,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10211
10138
|
comment?: string | undefined;
|
|
10212
10139
|
author_name?: string | undefined;
|
|
10213
10140
|
}[] | undefined;
|
|
10141
|
+
url?: string | undefined;
|
|
10214
10142
|
title?: string | undefined;
|
|
10215
10143
|
content?: string | undefined;
|
|
10216
10144
|
project?: {
|
|
10217
10145
|
name?: string | undefined;
|
|
10218
10146
|
id?: string | undefined;
|
|
10219
10147
|
} | undefined;
|
|
10220
|
-
url?: string | undefined;
|
|
10221
10148
|
createdAt?: string | undefined;
|
|
10222
10149
|
priority?: number | undefined;
|
|
10223
10150
|
state?: string | undefined;
|
|
@@ -10248,13 +10175,13 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10248
10175
|
comment?: string | undefined;
|
|
10249
10176
|
author_name?: string | undefined;
|
|
10250
10177
|
}[] | undefined;
|
|
10178
|
+
url?: string | undefined;
|
|
10251
10179
|
title?: string | undefined;
|
|
10252
10180
|
content?: string | undefined;
|
|
10253
10181
|
project?: {
|
|
10254
10182
|
name?: string | undefined;
|
|
10255
10183
|
id?: string | undefined;
|
|
10256
10184
|
} | undefined;
|
|
10257
|
-
url?: string | undefined;
|
|
10258
10185
|
createdAt?: string | undefined;
|
|
10259
10186
|
priority?: number | undefined;
|
|
10260
10187
|
state?: string | undefined;
|
|
@@ -10313,8 +10240,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10313
10240
|
description?: string | undefined;
|
|
10314
10241
|
name?: string | undefined;
|
|
10315
10242
|
id?: string | undefined;
|
|
10316
|
-
content?: string | undefined;
|
|
10317
10243
|
url?: string | undefined;
|
|
10244
|
+
content?: string | undefined;
|
|
10318
10245
|
creator?: {
|
|
10319
10246
|
name?: string | undefined;
|
|
10320
10247
|
id?: string | undefined;
|
|
@@ -10330,8 +10257,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10330
10257
|
description?: string | undefined;
|
|
10331
10258
|
name?: string | undefined;
|
|
10332
10259
|
id?: string | undefined;
|
|
10333
|
-
content?: string | undefined;
|
|
10334
10260
|
url?: string | undefined;
|
|
10261
|
+
content?: string | undefined;
|
|
10335
10262
|
creator?: {
|
|
10336
10263
|
name?: string | undefined;
|
|
10337
10264
|
id?: string | undefined;
|
|
@@ -10351,8 +10278,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10351
10278
|
description?: string | undefined;
|
|
10352
10279
|
name?: string | undefined;
|
|
10353
10280
|
id?: string | undefined;
|
|
10354
|
-
content?: string | undefined;
|
|
10355
10281
|
url?: string | undefined;
|
|
10282
|
+
content?: string | undefined;
|
|
10356
10283
|
creator?: {
|
|
10357
10284
|
name?: string | undefined;
|
|
10358
10285
|
id?: string | undefined;
|
|
@@ -10372,8 +10299,8 @@ export declare const linearGetProjectsOutputSchema: z.ZodObject<{
|
|
|
10372
10299
|
description?: string | undefined;
|
|
10373
10300
|
name?: string | undefined;
|
|
10374
10301
|
id?: string | undefined;
|
|
10375
|
-
content?: string | undefined;
|
|
10376
10302
|
url?: string | undefined;
|
|
10303
|
+
content?: string | undefined;
|
|
10377
10304
|
creator?: {
|
|
10378
10305
|
name?: string | undefined;
|
|
10379
10306
|
id?: string | undefined;
|
|
@@ -10464,8 +10391,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10464
10391
|
description?: string | undefined;
|
|
10465
10392
|
name?: string | undefined;
|
|
10466
10393
|
id?: string | undefined;
|
|
10467
|
-
content?: string | undefined;
|
|
10468
10394
|
url?: string | undefined;
|
|
10395
|
+
content?: string | undefined;
|
|
10469
10396
|
updates?: {
|
|
10470
10397
|
id?: string | undefined;
|
|
10471
10398
|
created_at?: string | undefined;
|
|
@@ -10493,8 +10420,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10493
10420
|
description?: string | undefined;
|
|
10494
10421
|
name?: string | undefined;
|
|
10495
10422
|
id?: string | undefined;
|
|
10496
|
-
content?: string | undefined;
|
|
10497
10423
|
url?: string | undefined;
|
|
10424
|
+
content?: string | undefined;
|
|
10498
10425
|
updates?: {
|
|
10499
10426
|
id?: string | undefined;
|
|
10500
10427
|
created_at?: string | undefined;
|
|
@@ -10526,8 +10453,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10526
10453
|
description?: string | undefined;
|
|
10527
10454
|
name?: string | undefined;
|
|
10528
10455
|
id?: string | undefined;
|
|
10529
|
-
content?: string | undefined;
|
|
10530
10456
|
url?: string | undefined;
|
|
10457
|
+
content?: string | undefined;
|
|
10531
10458
|
updates?: {
|
|
10532
10459
|
id?: string | undefined;
|
|
10533
10460
|
created_at?: string | undefined;
|
|
@@ -10559,8 +10486,8 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10559
10486
|
description?: string | undefined;
|
|
10560
10487
|
name?: string | undefined;
|
|
10561
10488
|
id?: string | undefined;
|
|
10562
|
-
content?: string | undefined;
|
|
10563
10489
|
url?: string | undefined;
|
|
10490
|
+
content?: string | undefined;
|
|
10564
10491
|
updates?: {
|
|
10565
10492
|
id?: string | undefined;
|
|
10566
10493
|
created_at?: string | undefined;
|