@credal/actions 0.2.175 → 0.2.179

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.
@@ -915,6 +915,49 @@ export declare const slackGetChannelMessagesOutputSchema: z.ZodObject<{
915
915
  }>;
916
916
  export type slackGetChannelMessagesOutputType = z.infer<typeof slackGetChannelMessagesOutputSchema>;
917
917
  export type slackGetChannelMessagesFunction = ActionFunction<slackGetChannelMessagesParamsType, AuthParamsType, slackGetChannelMessagesOutputType>;
918
+ export declare const slackGetChannelMembersParamsSchema: z.ZodObject<{
919
+ channelId: z.ZodOptional<z.ZodString>;
920
+ channelName: z.ZodOptional<z.ZodString>;
921
+ }, "strip", z.ZodTypeAny, {
922
+ channelId?: string | undefined;
923
+ channelName?: string | undefined;
924
+ }, {
925
+ channelId?: string | undefined;
926
+ channelName?: string | undefined;
927
+ }>;
928
+ export type slackGetChannelMembersParamsType = z.infer<typeof slackGetChannelMembersParamsSchema>;
929
+ export declare const slackGetChannelMembersOutputSchema: z.ZodObject<{
930
+ success: z.ZodBoolean;
931
+ members: z.ZodArray<z.ZodObject<{
932
+ id: z.ZodString;
933
+ name: z.ZodString;
934
+ email: z.ZodString;
935
+ }, "strip", z.ZodTypeAny, {
936
+ name: string;
937
+ id: string;
938
+ email: string;
939
+ }, {
940
+ name: string;
941
+ id: string;
942
+ email: string;
943
+ }>, "many">;
944
+ }, "strip", z.ZodTypeAny, {
945
+ members: {
946
+ name: string;
947
+ id: string;
948
+ email: string;
949
+ }[];
950
+ success: boolean;
951
+ }, {
952
+ members: {
953
+ name: string;
954
+ id: string;
955
+ email: string;
956
+ }[];
957
+ success: boolean;
958
+ }>;
959
+ export type slackGetChannelMembersOutputType = z.infer<typeof slackGetChannelMembersOutputSchema>;
960
+ export type slackGetChannelMembersFunction = ActionFunction<slackGetChannelMembersParamsType, AuthParamsType, slackGetChannelMembersOutputType>;
918
961
  export declare const slackUserSearchSlackParamsSchema: z.ZodObject<{
919
962
  emails: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
920
963
  channel: z.ZodOptional<z.ZodString>;
@@ -1357,116 +1400,6 @@ export declare const jiraCreateJiraTicketOutputSchema: z.ZodObject<{
1357
1400
  }>;
1358
1401
  export type jiraCreateJiraTicketOutputType = z.infer<typeof jiraCreateJiraTicketOutputSchema>;
1359
1402
  export type jiraCreateJiraTicketFunction = ActionFunction<jiraCreateJiraTicketParamsType, AuthParamsType, jiraCreateJiraTicketOutputType>;
1360
- export declare const jiraGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1361
- export type jiraGetServiceDesksParamsType = z.infer<typeof jiraGetServiceDesksParamsSchema>;
1362
- export declare const jiraGetServiceDesksOutputSchema: z.ZodObject<{
1363
- success: z.ZodBoolean;
1364
- error: z.ZodOptional<z.ZodString>;
1365
- serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1366
- id: z.ZodOptional<z.ZodString>;
1367
- projectId: z.ZodOptional<z.ZodString>;
1368
- projectKey: z.ZodOptional<z.ZodString>;
1369
- projectName: z.ZodOptional<z.ZodString>;
1370
- requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
1371
- id: z.ZodOptional<z.ZodString>;
1372
- name: z.ZodOptional<z.ZodString>;
1373
- description: z.ZodOptional<z.ZodString>;
1374
- issueTypeId: z.ZodOptional<z.ZodString>;
1375
- portalId: z.ZodOptional<z.ZodString>;
1376
- helpText: z.ZodOptional<z.ZodString>;
1377
- serviceDeskId: z.ZodOptional<z.ZodString>;
1378
- canCreateRequest: z.ZodOptional<z.ZodBoolean>;
1379
- }, "strip", z.ZodTypeAny, {
1380
- description?: string | undefined;
1381
- name?: string | undefined;
1382
- id?: string | undefined;
1383
- serviceDeskId?: string | undefined;
1384
- issueTypeId?: string | undefined;
1385
- portalId?: string | undefined;
1386
- helpText?: string | undefined;
1387
- canCreateRequest?: boolean | undefined;
1388
- }, {
1389
- description?: string | undefined;
1390
- name?: string | undefined;
1391
- id?: string | undefined;
1392
- serviceDeskId?: string | undefined;
1393
- issueTypeId?: string | undefined;
1394
- portalId?: string | undefined;
1395
- helpText?: string | undefined;
1396
- canCreateRequest?: boolean | undefined;
1397
- }>, "many">>;
1398
- }, "strip", z.ZodTypeAny, {
1399
- projectId?: string | undefined;
1400
- id?: string | undefined;
1401
- projectKey?: string | undefined;
1402
- projectName?: string | undefined;
1403
- requestTypes?: {
1404
- description?: string | undefined;
1405
- name?: string | undefined;
1406
- id?: string | undefined;
1407
- serviceDeskId?: string | undefined;
1408
- issueTypeId?: string | undefined;
1409
- portalId?: string | undefined;
1410
- helpText?: string | undefined;
1411
- canCreateRequest?: boolean | undefined;
1412
- }[] | undefined;
1413
- }, {
1414
- projectId?: string | undefined;
1415
- id?: string | undefined;
1416
- projectKey?: string | undefined;
1417
- projectName?: string | undefined;
1418
- requestTypes?: {
1419
- description?: string | undefined;
1420
- name?: string | undefined;
1421
- id?: string | undefined;
1422
- serviceDeskId?: string | undefined;
1423
- issueTypeId?: string | undefined;
1424
- portalId?: string | undefined;
1425
- helpText?: string | undefined;
1426
- canCreateRequest?: boolean | undefined;
1427
- }[] | undefined;
1428
- }>, "many">>;
1429
- }, "strip", z.ZodTypeAny, {
1430
- success: boolean;
1431
- error?: string | undefined;
1432
- serviceDesks?: {
1433
- projectId?: string | undefined;
1434
- id?: string | undefined;
1435
- projectKey?: string | undefined;
1436
- projectName?: string | undefined;
1437
- requestTypes?: {
1438
- description?: string | undefined;
1439
- name?: string | undefined;
1440
- id?: string | undefined;
1441
- serviceDeskId?: string | undefined;
1442
- issueTypeId?: string | undefined;
1443
- portalId?: string | undefined;
1444
- helpText?: string | undefined;
1445
- canCreateRequest?: boolean | undefined;
1446
- }[] | undefined;
1447
- }[] | undefined;
1448
- }, {
1449
- success: boolean;
1450
- error?: string | undefined;
1451
- serviceDesks?: {
1452
- projectId?: string | undefined;
1453
- id?: string | undefined;
1454
- projectKey?: string | undefined;
1455
- projectName?: string | undefined;
1456
- requestTypes?: {
1457
- description?: string | undefined;
1458
- name?: string | undefined;
1459
- id?: string | undefined;
1460
- serviceDeskId?: string | undefined;
1461
- issueTypeId?: string | undefined;
1462
- portalId?: string | undefined;
1463
- helpText?: string | undefined;
1464
- canCreateRequest?: boolean | undefined;
1465
- }[] | undefined;
1466
- }[] | undefined;
1467
- }>;
1468
- export type jiraGetServiceDesksOutputType = z.infer<typeof jiraGetServiceDesksOutputSchema>;
1469
- export type jiraGetServiceDesksFunction = ActionFunction<jiraGetServiceDesksParamsType, AuthParamsType, jiraGetServiceDesksOutputType>;
1470
1403
  export declare const jiraCreateServiceDeskRequestParamsSchema: z.ZodObject<{
1471
1404
  serviceDeskId: z.ZodString;
1472
1405
  requestTypeId: z.ZodString;
@@ -2148,116 +2081,6 @@ export declare const jiraOrgCreateJiraTicketOutputSchema: z.ZodObject<{
2148
2081
  }>;
2149
2082
  export type jiraOrgCreateJiraTicketOutputType = z.infer<typeof jiraOrgCreateJiraTicketOutputSchema>;
2150
2083
  export type jiraOrgCreateJiraTicketFunction = ActionFunction<jiraOrgCreateJiraTicketParamsType, AuthParamsType, jiraOrgCreateJiraTicketOutputType>;
2151
- export declare const jiraOrgGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2152
- export type jiraOrgGetServiceDesksParamsType = z.infer<typeof jiraOrgGetServiceDesksParamsSchema>;
2153
- export declare const jiraOrgGetServiceDesksOutputSchema: z.ZodObject<{
2154
- success: z.ZodBoolean;
2155
- error: z.ZodOptional<z.ZodString>;
2156
- serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2157
- id: z.ZodOptional<z.ZodString>;
2158
- projectId: z.ZodOptional<z.ZodString>;
2159
- projectKey: z.ZodOptional<z.ZodString>;
2160
- projectName: z.ZodOptional<z.ZodString>;
2161
- requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
2162
- id: z.ZodOptional<z.ZodString>;
2163
- name: z.ZodOptional<z.ZodString>;
2164
- description: z.ZodOptional<z.ZodString>;
2165
- issueTypeId: z.ZodOptional<z.ZodString>;
2166
- portalId: z.ZodOptional<z.ZodString>;
2167
- helpText: z.ZodOptional<z.ZodString>;
2168
- serviceDeskId: z.ZodOptional<z.ZodString>;
2169
- canCreateRequest: z.ZodOptional<z.ZodBoolean>;
2170
- }, "strip", z.ZodTypeAny, {
2171
- description?: string | undefined;
2172
- name?: string | undefined;
2173
- id?: string | undefined;
2174
- serviceDeskId?: string | undefined;
2175
- issueTypeId?: string | undefined;
2176
- portalId?: string | undefined;
2177
- helpText?: string | undefined;
2178
- canCreateRequest?: boolean | undefined;
2179
- }, {
2180
- description?: string | undefined;
2181
- name?: string | undefined;
2182
- id?: string | undefined;
2183
- serviceDeskId?: string | undefined;
2184
- issueTypeId?: string | undefined;
2185
- portalId?: string | undefined;
2186
- helpText?: string | undefined;
2187
- canCreateRequest?: boolean | undefined;
2188
- }>, "many">>;
2189
- }, "strip", z.ZodTypeAny, {
2190
- projectId?: string | undefined;
2191
- id?: string | undefined;
2192
- projectKey?: string | undefined;
2193
- projectName?: string | undefined;
2194
- requestTypes?: {
2195
- description?: string | undefined;
2196
- name?: string | undefined;
2197
- id?: string | undefined;
2198
- serviceDeskId?: string | undefined;
2199
- issueTypeId?: string | undefined;
2200
- portalId?: string | undefined;
2201
- helpText?: string | undefined;
2202
- canCreateRequest?: boolean | undefined;
2203
- }[] | undefined;
2204
- }, {
2205
- projectId?: string | undefined;
2206
- id?: string | undefined;
2207
- projectKey?: string | undefined;
2208
- projectName?: string | undefined;
2209
- requestTypes?: {
2210
- description?: string | undefined;
2211
- name?: string | undefined;
2212
- id?: string | undefined;
2213
- serviceDeskId?: string | undefined;
2214
- issueTypeId?: string | undefined;
2215
- portalId?: string | undefined;
2216
- helpText?: string | undefined;
2217
- canCreateRequest?: boolean | undefined;
2218
- }[] | undefined;
2219
- }>, "many">>;
2220
- }, "strip", z.ZodTypeAny, {
2221
- success: boolean;
2222
- error?: string | undefined;
2223
- serviceDesks?: {
2224
- projectId?: string | undefined;
2225
- id?: string | undefined;
2226
- projectKey?: string | undefined;
2227
- projectName?: string | undefined;
2228
- requestTypes?: {
2229
- description?: string | undefined;
2230
- name?: string | undefined;
2231
- id?: string | undefined;
2232
- serviceDeskId?: string | undefined;
2233
- issueTypeId?: string | undefined;
2234
- portalId?: string | undefined;
2235
- helpText?: string | undefined;
2236
- canCreateRequest?: boolean | undefined;
2237
- }[] | undefined;
2238
- }[] | undefined;
2239
- }, {
2240
- success: boolean;
2241
- error?: string | undefined;
2242
- serviceDesks?: {
2243
- projectId?: string | undefined;
2244
- id?: string | undefined;
2245
- projectKey?: string | undefined;
2246
- projectName?: string | undefined;
2247
- requestTypes?: {
2248
- description?: string | undefined;
2249
- name?: string | undefined;
2250
- id?: string | undefined;
2251
- serviceDeskId?: string | undefined;
2252
- issueTypeId?: string | undefined;
2253
- portalId?: string | undefined;
2254
- helpText?: string | undefined;
2255
- canCreateRequest?: boolean | undefined;
2256
- }[] | undefined;
2257
- }[] | undefined;
2258
- }>;
2259
- export type jiraOrgGetServiceDesksOutputType = z.infer<typeof jiraOrgGetServiceDesksOutputSchema>;
2260
- export type jiraOrgGetServiceDesksFunction = ActionFunction<jiraOrgGetServiceDesksParamsType, AuthParamsType, jiraOrgGetServiceDesksOutputType>;
2261
2084
  export declare const jiraOrgCreateServiceDeskRequestParamsSchema: z.ZodObject<{
2262
2085
  serviceDeskId: z.ZodString;
2263
2086
  requestTypeId: z.ZodString;
@@ -2939,116 +2762,6 @@ export declare const jiraDataCenterCreateJiraTicketOutputSchema: z.ZodObject<{
2939
2762
  }>;
2940
2763
  export type jiraDataCenterCreateJiraTicketOutputType = z.infer<typeof jiraDataCenterCreateJiraTicketOutputSchema>;
2941
2764
  export type jiraDataCenterCreateJiraTicketFunction = ActionFunction<jiraDataCenterCreateJiraTicketParamsType, AuthParamsType, jiraDataCenterCreateJiraTicketOutputType>;
2942
- export declare const jiraDataCenterGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2943
- export type jiraDataCenterGetServiceDesksParamsType = z.infer<typeof jiraDataCenterGetServiceDesksParamsSchema>;
2944
- export declare const jiraDataCenterGetServiceDesksOutputSchema: z.ZodObject<{
2945
- success: z.ZodBoolean;
2946
- error: z.ZodOptional<z.ZodString>;
2947
- serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2948
- id: z.ZodOptional<z.ZodString>;
2949
- projectId: z.ZodOptional<z.ZodString>;
2950
- projectKey: z.ZodOptional<z.ZodString>;
2951
- projectName: z.ZodOptional<z.ZodString>;
2952
- requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
2953
- id: z.ZodOptional<z.ZodString>;
2954
- name: z.ZodOptional<z.ZodString>;
2955
- description: z.ZodOptional<z.ZodString>;
2956
- issueTypeId: z.ZodOptional<z.ZodString>;
2957
- portalId: z.ZodOptional<z.ZodString>;
2958
- helpText: z.ZodOptional<z.ZodString>;
2959
- serviceDeskId: z.ZodOptional<z.ZodString>;
2960
- canCreateRequest: z.ZodOptional<z.ZodBoolean>;
2961
- }, "strip", z.ZodTypeAny, {
2962
- description?: string | undefined;
2963
- name?: string | undefined;
2964
- id?: string | undefined;
2965
- serviceDeskId?: string | undefined;
2966
- issueTypeId?: string | undefined;
2967
- portalId?: string | undefined;
2968
- helpText?: string | undefined;
2969
- canCreateRequest?: boolean | undefined;
2970
- }, {
2971
- description?: string | undefined;
2972
- name?: string | undefined;
2973
- id?: string | undefined;
2974
- serviceDeskId?: string | undefined;
2975
- issueTypeId?: string | undefined;
2976
- portalId?: string | undefined;
2977
- helpText?: string | undefined;
2978
- canCreateRequest?: boolean | undefined;
2979
- }>, "many">>;
2980
- }, "strip", z.ZodTypeAny, {
2981
- projectId?: string | undefined;
2982
- id?: string | undefined;
2983
- projectKey?: string | undefined;
2984
- projectName?: string | undefined;
2985
- requestTypes?: {
2986
- description?: string | undefined;
2987
- name?: string | undefined;
2988
- id?: string | undefined;
2989
- serviceDeskId?: string | undefined;
2990
- issueTypeId?: string | undefined;
2991
- portalId?: string | undefined;
2992
- helpText?: string | undefined;
2993
- canCreateRequest?: boolean | undefined;
2994
- }[] | undefined;
2995
- }, {
2996
- projectId?: string | undefined;
2997
- id?: string | undefined;
2998
- projectKey?: string | undefined;
2999
- projectName?: string | undefined;
3000
- requestTypes?: {
3001
- description?: string | undefined;
3002
- name?: string | undefined;
3003
- id?: string | undefined;
3004
- serviceDeskId?: string | undefined;
3005
- issueTypeId?: string | undefined;
3006
- portalId?: string | undefined;
3007
- helpText?: string | undefined;
3008
- canCreateRequest?: boolean | undefined;
3009
- }[] | undefined;
3010
- }>, "many">>;
3011
- }, "strip", z.ZodTypeAny, {
3012
- success: boolean;
3013
- error?: string | undefined;
3014
- serviceDesks?: {
3015
- projectId?: string | undefined;
3016
- id?: string | undefined;
3017
- projectKey?: string | undefined;
3018
- projectName?: string | undefined;
3019
- requestTypes?: {
3020
- description?: string | undefined;
3021
- name?: string | undefined;
3022
- id?: string | undefined;
3023
- serviceDeskId?: string | undefined;
3024
- issueTypeId?: string | undefined;
3025
- portalId?: string | undefined;
3026
- helpText?: string | undefined;
3027
- canCreateRequest?: boolean | undefined;
3028
- }[] | undefined;
3029
- }[] | undefined;
3030
- }, {
3031
- success: boolean;
3032
- error?: string | undefined;
3033
- serviceDesks?: {
3034
- projectId?: string | undefined;
3035
- id?: string | undefined;
3036
- projectKey?: string | undefined;
3037
- projectName?: string | undefined;
3038
- requestTypes?: {
3039
- description?: string | undefined;
3040
- name?: string | undefined;
3041
- id?: string | undefined;
3042
- serviceDeskId?: string | undefined;
3043
- issueTypeId?: string | undefined;
3044
- portalId?: string | undefined;
3045
- helpText?: string | undefined;
3046
- canCreateRequest?: boolean | undefined;
3047
- }[] | undefined;
3048
- }[] | undefined;
3049
- }>;
3050
- export type jiraDataCenterGetServiceDesksOutputType = z.infer<typeof jiraDataCenterGetServiceDesksOutputSchema>;
3051
- export type jiraDataCenterGetServiceDesksFunction = ActionFunction<jiraDataCenterGetServiceDesksParamsType, AuthParamsType, jiraDataCenterGetServiceDesksOutputType>;
3052
2765
  export declare const jiraDataCenterCreateServiceDeskRequestParamsSchema: z.ZodObject<{
3053
2766
  serviceDeskId: z.ZodString;
3054
2767
  requestTypeId: z.ZodString;
@@ -4842,6 +4555,24 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
4842
4555
  hangoutLink: z.ZodOptional<z.ZodString>;
4843
4556
  created: z.ZodOptional<z.ZodString>;
4844
4557
  updated: z.ZodOptional<z.ZodString>;
4558
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
4559
+ fileId: z.ZodOptional<z.ZodString>;
4560
+ fileUrl: z.ZodOptional<z.ZodString>;
4561
+ title: z.ZodOptional<z.ZodString>;
4562
+ mimeType: z.ZodOptional<z.ZodString>;
4563
+ }, "strip", z.ZodTypeAny, {
4564
+ title?: string | undefined;
4565
+ mimeType?: string | undefined;
4566
+ fileId?: string | undefined;
4567
+ fileUrl?: string | undefined;
4568
+ }, {
4569
+ title?: string | undefined;
4570
+ mimeType?: string | undefined;
4571
+ fileId?: string | undefined;
4572
+ fileUrl?: string | undefined;
4573
+ }>, "many">>;
4574
+ eventType: z.ZodOptional<z.ZodString>;
4575
+ transparency: z.ZodOptional<z.ZodString>;
4845
4576
  }, "strip", z.ZodTypeAny, {
4846
4577
  status?: string | undefined;
4847
4578
  description?: string | undefined;
@@ -4865,6 +4596,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
4865
4596
  startDayOfWeek?: string | undefined;
4866
4597
  endDayOfWeek?: string | undefined;
4867
4598
  hangoutLink?: string | undefined;
4599
+ attachments?: {
4600
+ title?: string | undefined;
4601
+ mimeType?: string | undefined;
4602
+ fileId?: string | undefined;
4603
+ fileUrl?: string | undefined;
4604
+ }[] | undefined;
4605
+ eventType?: string | undefined;
4606
+ transparency?: string | undefined;
4868
4607
  }, {
4869
4608
  status?: string | undefined;
4870
4609
  description?: string | undefined;
@@ -4888,6 +4627,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
4888
4627
  startDayOfWeek?: string | undefined;
4889
4628
  endDayOfWeek?: string | undefined;
4890
4629
  hangoutLink?: string | undefined;
4630
+ attachments?: {
4631
+ title?: string | undefined;
4632
+ mimeType?: string | undefined;
4633
+ fileId?: string | undefined;
4634
+ fileUrl?: string | undefined;
4635
+ }[] | undefined;
4636
+ eventType?: string | undefined;
4637
+ transparency?: string | undefined;
4891
4638
  }>, "many">;
4892
4639
  timezone: z.ZodOptional<z.ZodString>;
4893
4640
  error: z.ZodOptional<z.ZodString>;
@@ -4916,6 +4663,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
4916
4663
  startDayOfWeek?: string | undefined;
4917
4664
  endDayOfWeek?: string | undefined;
4918
4665
  hangoutLink?: string | undefined;
4666
+ attachments?: {
4667
+ title?: string | undefined;
4668
+ mimeType?: string | undefined;
4669
+ fileId?: string | undefined;
4670
+ fileUrl?: string | undefined;
4671
+ }[] | undefined;
4672
+ eventType?: string | undefined;
4673
+ transparency?: string | undefined;
4919
4674
  }[];
4920
4675
  error?: string | undefined;
4921
4676
  timezone?: string | undefined;
@@ -4944,6 +4699,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
4944
4699
  startDayOfWeek?: string | undefined;
4945
4700
  endDayOfWeek?: string | undefined;
4946
4701
  hangoutLink?: string | undefined;
4702
+ attachments?: {
4703
+ title?: string | undefined;
4704
+ mimeType?: string | undefined;
4705
+ fileId?: string | undefined;
4706
+ fileUrl?: string | undefined;
4707
+ }[] | undefined;
4708
+ eventType?: string | undefined;
4709
+ transparency?: string | undefined;
4947
4710
  }[];
4948
4711
  error?: string | undefined;
4949
4712
  timezone?: string | undefined;
@@ -7859,18 +7622,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7859
7622
  } | undefined;
7860
7623
  state?: "open" | "closed" | "merged" | undefined;
7861
7624
  merged?: boolean | undefined;
7862
- commits?: number | undefined;
7863
7625
  author?: {
7864
7626
  login?: string | undefined;
7865
7627
  } | undefined;
7866
- createdAt?: string | undefined;
7867
- updatedAt?: string | undefined;
7628
+ commits?: number | undefined;
7868
7629
  htmlUrl?: string | undefined;
7869
7630
  labels?: {
7870
7631
  description?: string | null | undefined;
7871
7632
  name?: string | undefined;
7872
7633
  color?: string | undefined;
7873
7634
  }[] | undefined;
7635
+ createdAt?: string | undefined;
7636
+ updatedAt?: string | undefined;
7874
7637
  draft?: boolean | undefined;
7875
7638
  closedAt?: string | null | undefined;
7876
7639
  mergedAt?: string | null | undefined;
@@ -7920,18 +7683,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7920
7683
  } | undefined;
7921
7684
  state?: "open" | "closed" | "merged" | undefined;
7922
7685
  merged?: boolean | undefined;
7923
- commits?: number | undefined;
7924
7686
  author?: {
7925
7687
  login?: string | undefined;
7926
7688
  } | undefined;
7927
- createdAt?: string | undefined;
7928
- updatedAt?: string | undefined;
7689
+ commits?: number | undefined;
7929
7690
  htmlUrl?: string | undefined;
7930
7691
  labels?: {
7931
7692
  description?: string | null | undefined;
7932
7693
  name?: string | undefined;
7933
7694
  color?: string | undefined;
7934
7695
  }[] | undefined;
7696
+ createdAt?: string | undefined;
7697
+ updatedAt?: string | undefined;
7935
7698
  draft?: boolean | undefined;
7936
7699
  closedAt?: string | null | undefined;
7937
7700
  mergedAt?: string | null | undefined;
@@ -7985,18 +7748,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7985
7748
  } | undefined;
7986
7749
  state?: "open" | "closed" | "merged" | undefined;
7987
7750
  merged?: boolean | undefined;
7988
- commits?: number | undefined;
7989
7751
  author?: {
7990
7752
  login?: string | undefined;
7991
7753
  } | undefined;
7992
- createdAt?: string | undefined;
7993
- updatedAt?: string | undefined;
7754
+ commits?: number | undefined;
7994
7755
  htmlUrl?: string | undefined;
7995
7756
  labels?: {
7996
7757
  description?: string | null | undefined;
7997
7758
  name?: string | undefined;
7998
7759
  color?: string | undefined;
7999
7760
  }[] | undefined;
7761
+ createdAt?: string | undefined;
7762
+ updatedAt?: string | undefined;
8000
7763
  draft?: boolean | undefined;
8001
7764
  closedAt?: string | null | undefined;
8002
7765
  mergedAt?: string | null | undefined;
@@ -8050,18 +7813,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
8050
7813
  } | undefined;
8051
7814
  state?: "open" | "closed" | "merged" | undefined;
8052
7815
  merged?: boolean | undefined;
8053
- commits?: number | undefined;
8054
7816
  author?: {
8055
7817
  login?: string | undefined;
8056
7818
  } | undefined;
8057
- createdAt?: string | undefined;
8058
- updatedAt?: string | undefined;
7819
+ commits?: number | undefined;
8059
7820
  htmlUrl?: string | undefined;
8060
7821
  labels?: {
8061
7822
  description?: string | null | undefined;
8062
7823
  name?: string | undefined;
8063
7824
  color?: string | undefined;
8064
7825
  }[] | undefined;
7826
+ createdAt?: string | undefined;
7827
+ updatedAt?: string | undefined;
8065
7828
  draft?: boolean | undefined;
8066
7829
  closedAt?: string | null | undefined;
8067
7830
  mergedAt?: string | null | undefined;
@@ -8247,311 +8010,35 @@ export declare const githubListDirectoryOutputSchema: z.ZodObject<{
8247
8010
  }>;
8248
8011
  export type githubListDirectoryOutputType = z.infer<typeof githubListDirectoryOutputSchema>;
8249
8012
  export type githubListDirectoryFunction = ActionFunction<githubListDirectoryParamsType, AuthParamsType, githubListDirectoryOutputType>;
8250
- export declare const githubSearchRepositoryParamsSchema: z.ZodObject<{
8013
+ export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
8251
8014
  organization: z.ZodString;
8252
- repository: z.ZodString;
8253
8015
  query: z.ZodString;
8016
+ repository: z.ZodOptional<z.ZodString>;
8254
8017
  }, "strip", z.ZodTypeAny, {
8255
8018
  query: string;
8256
8019
  organization: string;
8257
- repository: string;
8020
+ repository?: string | undefined;
8258
8021
  }, {
8259
8022
  query: string;
8260
8023
  organization: string;
8261
- repository: string;
8024
+ repository?: string | undefined;
8262
8025
  }>;
8263
- export type githubSearchRepositoryParamsType = z.infer<typeof githubSearchRepositoryParamsSchema>;
8264
- export declare const githubSearchRepositoryOutputSchema: z.ZodObject<{
8265
- code: z.ZodArray<z.ZodObject<{
8026
+ export type githubSearchOrganizationParamsType = z.infer<typeof githubSearchOrganizationParamsSchema>;
8027
+ export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
8028
+ success: z.ZodBoolean;
8029
+ error: z.ZodOptional<z.ZodString>;
8030
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
8031
+ type: z.ZodEnum<["code", "commit", "issueOrPullRequest"]>;
8266
8032
  name: z.ZodString;
8267
- path: z.ZodString;
8268
- sha: z.ZodString;
8269
8033
  url: z.ZodString;
8270
- score: z.ZodNumber;
8271
- textMatches: z.ZodArray<z.ZodObject<{
8272
- object_url: z.ZodOptional<z.ZodString>;
8273
- object_type: z.ZodOptional<z.ZodString>;
8274
- fragment: z.ZodOptional<z.ZodString>;
8275
- matches: z.ZodArray<z.ZodObject<{
8276
- text: z.ZodOptional<z.ZodString>;
8277
- indices: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
8278
- }, "strip", z.ZodTypeAny, {
8279
- text?: string | undefined;
8280
- indices?: number[] | undefined;
8281
- }, {
8282
- text?: string | undefined;
8283
- indices?: number[] | undefined;
8284
- }>, "many">;
8285
- }, "strip", z.ZodTypeAny, {
8286
- matches: {
8287
- text?: string | undefined;
8288
- indices?: number[] | undefined;
8289
- }[];
8290
- object_url?: string | undefined;
8291
- object_type?: string | undefined;
8292
- fragment?: string | undefined;
8293
- }, {
8294
- matches: {
8295
- text?: string | undefined;
8296
- indices?: number[] | undefined;
8297
- }[];
8298
- object_url?: string | undefined;
8299
- object_type?: string | undefined;
8300
- fragment?: string | undefined;
8301
- }>, "many">;
8034
+ contents: z.ZodEffects<z.ZodAny, any, any>;
8302
8035
  }, "strip", z.ZodTypeAny, {
8303
- path: string;
8036
+ type: "code" | "commit" | "issueOrPullRequest";
8304
8037
  name: string;
8305
8038
  url: string;
8306
- sha: string;
8307
- score: number;
8308
- textMatches: {
8309
- matches: {
8310
- text?: string | undefined;
8311
- indices?: number[] | undefined;
8312
- }[];
8313
- object_url?: string | undefined;
8314
- object_type?: string | undefined;
8315
- fragment?: string | undefined;
8316
- }[];
8039
+ contents?: any;
8317
8040
  }, {
8318
- path: string;
8319
- name: string;
8320
- url: string;
8321
- sha: string;
8322
- score: number;
8323
- textMatches: {
8324
- matches: {
8325
- text?: string | undefined;
8326
- indices?: number[] | undefined;
8327
- }[];
8328
- object_url?: string | undefined;
8329
- object_type?: string | undefined;
8330
- fragment?: string | undefined;
8331
- }[];
8332
- }>, "many">;
8333
- commits: z.ZodArray<z.ZodObject<{
8334
- sha: z.ZodString;
8335
- url: z.ZodString;
8336
- commit: z.ZodOptional<z.ZodObject<{
8337
- author: z.ZodObject<{
8338
- name: z.ZodString;
8339
- email: z.ZodString;
8340
- date: z.ZodString;
8341
- }, "strip", z.ZodTypeAny, {
8342
- date: string;
8343
- name: string;
8344
- email: string;
8345
- }, {
8346
- date: string;
8347
- name: string;
8348
- email: string;
8349
- }>;
8350
- message: z.ZodString;
8351
- }, "strip", z.ZodTypeAny, {
8352
- message: string;
8353
- author: {
8354
- date: string;
8355
- name: string;
8356
- email: string;
8357
- };
8358
- }, {
8359
- message: string;
8360
- author: {
8361
- date: string;
8362
- name: string;
8363
- email: string;
8364
- };
8365
- }>>;
8366
- }, "strip", z.ZodTypeAny, {
8367
- url: string;
8368
- sha: string;
8369
- commit?: {
8370
- message: string;
8371
- author: {
8372
- date: string;
8373
- name: string;
8374
- email: string;
8375
- };
8376
- } | undefined;
8377
- }, {
8378
- url: string;
8379
- sha: string;
8380
- commit?: {
8381
- message: string;
8382
- author: {
8383
- date: string;
8384
- name: string;
8385
- email: string;
8386
- };
8387
- } | undefined;
8388
- }>, "many">;
8389
- issuesAndPullRequests: z.ZodArray<z.ZodObject<{
8390
- number: z.ZodOptional<z.ZodNumber>;
8391
- title: z.ZodString;
8392
- html_url: z.ZodOptional<z.ZodString>;
8393
- state: z.ZodEnum<["open", "closed"]>;
8394
- isPullRequest: z.ZodOptional<z.ZodBoolean>;
8395
- body: z.ZodOptional<z.ZodString>;
8396
- score: z.ZodOptional<z.ZodNumber>;
8397
- files: z.ZodOptional<z.ZodArray<z.ZodObject<{
8398
- filename: z.ZodString;
8399
- status: z.ZodString;
8400
- patch: z.ZodOptional<z.ZodString>;
8401
- }, "strip", z.ZodTypeAny, {
8402
- status: string;
8403
- filename: string;
8404
- patch?: string | undefined;
8405
- }, {
8406
- status: string;
8407
- filename: string;
8408
- patch?: string | undefined;
8409
- }>, "many">>;
8410
- }, "strip", z.ZodTypeAny, {
8411
- title: string;
8412
- state: "open" | "closed";
8413
- number?: number | undefined;
8414
- body?: string | undefined;
8415
- files?: {
8416
- status: string;
8417
- filename: string;
8418
- patch?: string | undefined;
8419
- }[] | undefined;
8420
- score?: number | undefined;
8421
- html_url?: string | undefined;
8422
- isPullRequest?: boolean | undefined;
8423
- }, {
8424
- title: string;
8425
- state: "open" | "closed";
8426
- number?: number | undefined;
8427
- body?: string | undefined;
8428
- files?: {
8429
- status: string;
8430
- filename: string;
8431
- patch?: string | undefined;
8432
- }[] | undefined;
8433
- score?: number | undefined;
8434
- html_url?: string | undefined;
8435
- isPullRequest?: boolean | undefined;
8436
- }>, "many">;
8437
- }, "strip", z.ZodTypeAny, {
8438
- code: {
8439
- path: string;
8440
- name: string;
8441
- url: string;
8442
- sha: string;
8443
- score: number;
8444
- textMatches: {
8445
- matches: {
8446
- text?: string | undefined;
8447
- indices?: number[] | undefined;
8448
- }[];
8449
- object_url?: string | undefined;
8450
- object_type?: string | undefined;
8451
- fragment?: string | undefined;
8452
- }[];
8453
- }[];
8454
- commits: {
8455
- url: string;
8456
- sha: string;
8457
- commit?: {
8458
- message: string;
8459
- author: {
8460
- date: string;
8461
- name: string;
8462
- email: string;
8463
- };
8464
- } | undefined;
8465
- }[];
8466
- issuesAndPullRequests: {
8467
- title: string;
8468
- state: "open" | "closed";
8469
- number?: number | undefined;
8470
- body?: string | undefined;
8471
- files?: {
8472
- status: string;
8473
- filename: string;
8474
- patch?: string | undefined;
8475
- }[] | undefined;
8476
- score?: number | undefined;
8477
- html_url?: string | undefined;
8478
- isPullRequest?: boolean | undefined;
8479
- }[];
8480
- }, {
8481
- code: {
8482
- path: string;
8483
- name: string;
8484
- url: string;
8485
- sha: string;
8486
- score: number;
8487
- textMatches: {
8488
- matches: {
8489
- text?: string | undefined;
8490
- indices?: number[] | undefined;
8491
- }[];
8492
- object_url?: string | undefined;
8493
- object_type?: string | undefined;
8494
- fragment?: string | undefined;
8495
- }[];
8496
- }[];
8497
- commits: {
8498
- url: string;
8499
- sha: string;
8500
- commit?: {
8501
- message: string;
8502
- author: {
8503
- date: string;
8504
- name: string;
8505
- email: string;
8506
- };
8507
- } | undefined;
8508
- }[];
8509
- issuesAndPullRequests: {
8510
- title: string;
8511
- state: "open" | "closed";
8512
- number?: number | undefined;
8513
- body?: string | undefined;
8514
- files?: {
8515
- status: string;
8516
- filename: string;
8517
- patch?: string | undefined;
8518
- }[] | undefined;
8519
- score?: number | undefined;
8520
- html_url?: string | undefined;
8521
- isPullRequest?: boolean | undefined;
8522
- }[];
8523
- }>;
8524
- export type githubSearchRepositoryOutputType = z.infer<typeof githubSearchRepositoryOutputSchema>;
8525
- export type githubSearchRepositoryFunction = ActionFunction<githubSearchRepositoryParamsType, AuthParamsType, githubSearchRepositoryOutputType>;
8526
- export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
8527
- organization: z.ZodString;
8528
- query: z.ZodString;
8529
- repository: z.ZodOptional<z.ZodString>;
8530
- }, "strip", z.ZodTypeAny, {
8531
- query: string;
8532
- organization: string;
8533
- repository?: string | undefined;
8534
- }, {
8535
- query: string;
8536
- organization: string;
8537
- repository?: string | undefined;
8538
- }>;
8539
- export type githubSearchOrganizationParamsType = z.infer<typeof githubSearchOrganizationParamsSchema>;
8540
- export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
8541
- success: z.ZodBoolean;
8542
- error: z.ZodOptional<z.ZodString>;
8543
- results: z.ZodOptional<z.ZodArray<z.ZodObject<{
8544
- type: z.ZodEnum<["code", "commit", "issueOrPullRequest"]>;
8545
- name: z.ZodString;
8546
- url: z.ZodString;
8547
- contents: z.ZodEffects<z.ZodAny, any, any>;
8548
- }, "strip", z.ZodTypeAny, {
8549
- type: "code" | "commit" | "issueOrPullRequest";
8550
- name: string;
8551
- url: string;
8552
- contents?: any;
8553
- }, {
8554
- type: "code" | "commit" | "issueOrPullRequest";
8041
+ type: "code" | "commit" | "issueOrPullRequest";
8555
8042
  name: string;
8556
8043
  url: string;
8557
8044
  contents?: any;
@@ -8738,28 +8225,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8738
8225
  }>, "many">>;
8739
8226
  }, "strip", z.ZodTypeAny, {
8740
8227
  url?: string | undefined;
8741
- sha?: string | undefined;
8742
- author?: {
8743
- type?: string | undefined;
8744
- id?: number | undefined;
8745
- html_url?: string | undefined;
8746
- login?: string | undefined;
8747
- node_id?: string | undefined;
8748
- avatar_url?: string | undefined;
8749
- } | null | undefined;
8750
- committer?: {
8751
- type?: string | undefined;
8752
- id?: number | undefined;
8753
- html_url?: string | undefined;
8754
- login?: string | undefined;
8755
- node_id?: string | undefined;
8756
- avatar_url?: string | undefined;
8757
- } | null | undefined;
8758
- parents?: {
8759
- url?: string | undefined;
8760
- sha?: string | undefined;
8761
- html_url?: string | undefined;
8762
- }[] | undefined;
8763
8228
  commit?: {
8764
8229
  message?: string | undefined;
8765
8230
  url?: string | undefined;
@@ -8779,11 +8244,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8779
8244
  } | undefined;
8780
8245
  comment_count?: number | undefined;
8781
8246
  } | undefined;
8782
- html_url?: string | undefined;
8783
- node_id?: string | undefined;
8784
- comments_url?: string | undefined;
8785
- }, {
8786
- url?: string | undefined;
8787
8247
  sha?: string | undefined;
8788
8248
  author?: {
8789
8249
  type?: string | undefined;
@@ -8793,6 +8253,7 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8793
8253
  node_id?: string | undefined;
8794
8254
  avatar_url?: string | undefined;
8795
8255
  } | null | undefined;
8256
+ html_url?: string | undefined;
8796
8257
  committer?: {
8797
8258
  type?: string | undefined;
8798
8259
  id?: number | undefined;
@@ -8801,11 +8262,15 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8801
8262
  node_id?: string | undefined;
8802
8263
  avatar_url?: string | undefined;
8803
8264
  } | null | undefined;
8265
+ node_id?: string | undefined;
8266
+ comments_url?: string | undefined;
8804
8267
  parents?: {
8805
8268
  url?: string | undefined;
8806
8269
  sha?: string | undefined;
8807
8270
  html_url?: string | undefined;
8808
8271
  }[] | undefined;
8272
+ }, {
8273
+ url?: string | undefined;
8809
8274
  commit?: {
8810
8275
  message?: string | undefined;
8811
8276
  url?: string | undefined;
@@ -8825,9 +8290,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8825
8290
  } | undefined;
8826
8291
  comment_count?: number | undefined;
8827
8292
  } | undefined;
8293
+ sha?: string | undefined;
8294
+ author?: {
8295
+ type?: string | undefined;
8296
+ id?: number | undefined;
8297
+ html_url?: string | undefined;
8298
+ login?: string | undefined;
8299
+ node_id?: string | undefined;
8300
+ avatar_url?: string | undefined;
8301
+ } | null | undefined;
8828
8302
  html_url?: string | undefined;
8303
+ committer?: {
8304
+ type?: string | undefined;
8305
+ id?: number | undefined;
8306
+ html_url?: string | undefined;
8307
+ login?: string | undefined;
8308
+ node_id?: string | undefined;
8309
+ avatar_url?: string | undefined;
8310
+ } | null | undefined;
8829
8311
  node_id?: string | undefined;
8830
8312
  comments_url?: string | undefined;
8313
+ parents?: {
8314
+ url?: string | undefined;
8315
+ sha?: string | undefined;
8316
+ html_url?: string | undefined;
8317
+ }[] | undefined;
8831
8318
  }>>;
8832
8319
  _links: z.ZodOptional<z.ZodObject<{
8833
8320
  html: z.ZodOptional<z.ZodString>;
@@ -8875,28 +8362,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8875
8362
  name?: string | undefined;
8876
8363
  commit?: {
8877
8364
  url?: string | undefined;
8878
- sha?: string | undefined;
8879
- author?: {
8880
- type?: string | undefined;
8881
- id?: number | undefined;
8882
- html_url?: string | undefined;
8883
- login?: string | undefined;
8884
- node_id?: string | undefined;
8885
- avatar_url?: string | undefined;
8886
- } | null | undefined;
8887
- committer?: {
8888
- type?: string | undefined;
8889
- id?: number | undefined;
8890
- html_url?: string | undefined;
8891
- login?: string | undefined;
8892
- node_id?: string | undefined;
8893
- avatar_url?: string | undefined;
8894
- } | null | undefined;
8895
- parents?: {
8896
- url?: string | undefined;
8897
- sha?: string | undefined;
8898
- html_url?: string | undefined;
8899
- }[] | undefined;
8900
8365
  commit?: {
8901
8366
  message?: string | undefined;
8902
8367
  url?: string | undefined;
@@ -8916,28 +8381,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8916
8381
  } | undefined;
8917
8382
  comment_count?: number | undefined;
8918
8383
  } | undefined;
8919
- html_url?: string | undefined;
8920
- node_id?: string | undefined;
8921
- comments_url?: string | undefined;
8922
- } | undefined;
8923
- _links?: {
8924
- html?: string | undefined;
8925
- self?: string | undefined;
8926
- } | undefined;
8927
- protected?: boolean | undefined;
8928
- protection?: {
8929
- enabled?: boolean | undefined;
8930
- required_status_checks?: {
8931
- strict?: boolean | undefined;
8932
- enforcement_level?: string | undefined;
8933
- contexts?: string[] | undefined;
8934
- } | null | undefined;
8935
- } | null | undefined;
8936
- protection_url?: string | undefined;
8937
- }, {
8938
- name?: string | undefined;
8939
- commit?: {
8940
- url?: string | undefined;
8941
8384
  sha?: string | undefined;
8942
8385
  author?: {
8943
8386
  type?: string | undefined;
@@ -8947,6 +8390,7 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8947
8390
  node_id?: string | undefined;
8948
8391
  avatar_url?: string | undefined;
8949
8392
  } | null | undefined;
8393
+ html_url?: string | undefined;
8950
8394
  committer?: {
8951
8395
  type?: string | undefined;
8952
8396
  id?: number | undefined;
@@ -8955,11 +8399,32 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8955
8399
  node_id?: string | undefined;
8956
8400
  avatar_url?: string | undefined;
8957
8401
  } | null | undefined;
8402
+ node_id?: string | undefined;
8403
+ comments_url?: string | undefined;
8958
8404
  parents?: {
8959
8405
  url?: string | undefined;
8960
8406
  sha?: string | undefined;
8961
8407
  html_url?: string | undefined;
8962
8408
  }[] | undefined;
8409
+ } | undefined;
8410
+ _links?: {
8411
+ html?: string | undefined;
8412
+ self?: string | undefined;
8413
+ } | undefined;
8414
+ protected?: boolean | undefined;
8415
+ protection?: {
8416
+ enabled?: boolean | undefined;
8417
+ required_status_checks?: {
8418
+ strict?: boolean | undefined;
8419
+ enforcement_level?: string | undefined;
8420
+ contexts?: string[] | undefined;
8421
+ } | null | undefined;
8422
+ } | null | undefined;
8423
+ protection_url?: string | undefined;
8424
+ }, {
8425
+ name?: string | undefined;
8426
+ commit?: {
8427
+ url?: string | undefined;
8963
8428
  commit?: {
8964
8429
  message?: string | undefined;
8965
8430
  url?: string | undefined;
@@ -8979,9 +8444,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8979
8444
  } | undefined;
8980
8445
  comment_count?: number | undefined;
8981
8446
  } | undefined;
8447
+ sha?: string | undefined;
8448
+ author?: {
8449
+ type?: string | undefined;
8450
+ id?: number | undefined;
8451
+ html_url?: string | undefined;
8452
+ login?: string | undefined;
8453
+ node_id?: string | undefined;
8454
+ avatar_url?: string | undefined;
8455
+ } | null | undefined;
8982
8456
  html_url?: string | undefined;
8457
+ committer?: {
8458
+ type?: string | undefined;
8459
+ id?: number | undefined;
8460
+ html_url?: string | undefined;
8461
+ login?: string | undefined;
8462
+ node_id?: string | undefined;
8463
+ avatar_url?: string | undefined;
8464
+ } | null | undefined;
8983
8465
  node_id?: string | undefined;
8984
8466
  comments_url?: string | undefined;
8467
+ parents?: {
8468
+ url?: string | undefined;
8469
+ sha?: string | undefined;
8470
+ html_url?: string | undefined;
8471
+ }[] | undefined;
8985
8472
  } | undefined;
8986
8473
  _links?: {
8987
8474
  html?: string | undefined;
@@ -9005,28 +8492,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
9005
8492
  name?: string | undefined;
9006
8493
  commit?: {
9007
8494
  url?: string | undefined;
9008
- sha?: string | undefined;
9009
- author?: {
9010
- type?: string | undefined;
9011
- id?: number | undefined;
9012
- html_url?: string | undefined;
9013
- login?: string | undefined;
9014
- node_id?: string | undefined;
9015
- avatar_url?: string | undefined;
9016
- } | null | undefined;
9017
- committer?: {
9018
- type?: string | undefined;
9019
- id?: number | undefined;
9020
- html_url?: string | undefined;
9021
- login?: string | undefined;
9022
- node_id?: string | undefined;
9023
- avatar_url?: string | undefined;
9024
- } | null | undefined;
9025
- parents?: {
9026
- url?: string | undefined;
9027
- sha?: string | undefined;
9028
- html_url?: string | undefined;
9029
- }[] | undefined;
9030
8495
  commit?: {
9031
8496
  message?: string | undefined;
9032
8497
  url?: string | undefined;
@@ -9046,9 +8511,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
9046
8511
  } | undefined;
9047
8512
  comment_count?: number | undefined;
9048
8513
  } | undefined;
8514
+ sha?: string | undefined;
8515
+ author?: {
8516
+ type?: string | undefined;
8517
+ id?: number | undefined;
8518
+ html_url?: string | undefined;
8519
+ login?: string | undefined;
8520
+ node_id?: string | undefined;
8521
+ avatar_url?: string | undefined;
8522
+ } | null | undefined;
9049
8523
  html_url?: string | undefined;
8524
+ committer?: {
8525
+ type?: string | undefined;
8526
+ id?: number | undefined;
8527
+ html_url?: string | undefined;
8528
+ login?: string | undefined;
8529
+ node_id?: string | undefined;
8530
+ avatar_url?: string | undefined;
8531
+ } | null | undefined;
9050
8532
  node_id?: string | undefined;
9051
8533
  comments_url?: string | undefined;
8534
+ parents?: {
8535
+ url?: string | undefined;
8536
+ sha?: string | undefined;
8537
+ html_url?: string | undefined;
8538
+ }[] | undefined;
9052
8539
  } | undefined;
9053
8540
  _links?: {
9054
8541
  html?: string | undefined;
@@ -9072,28 +8559,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
9072
8559
  name?: string | undefined;
9073
8560
  commit?: {
9074
8561
  url?: string | undefined;
9075
- sha?: string | undefined;
9076
- author?: {
9077
- type?: string | undefined;
9078
- id?: number | undefined;
9079
- html_url?: string | undefined;
9080
- login?: string | undefined;
9081
- node_id?: string | undefined;
9082
- avatar_url?: string | undefined;
9083
- } | null | undefined;
9084
- committer?: {
9085
- type?: string | undefined;
9086
- id?: number | undefined;
9087
- html_url?: string | undefined;
9088
- login?: string | undefined;
9089
- node_id?: string | undefined;
9090
- avatar_url?: string | undefined;
9091
- } | null | undefined;
9092
- parents?: {
9093
- url?: string | undefined;
9094
- sha?: string | undefined;
9095
- html_url?: string | undefined;
9096
- }[] | undefined;
9097
8562
  commit?: {
9098
8563
  message?: string | undefined;
9099
8564
  url?: string | undefined;
@@ -9113,9 +8578,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
9113
8578
  } | undefined;
9114
8579
  comment_count?: number | undefined;
9115
8580
  } | undefined;
8581
+ sha?: string | undefined;
8582
+ author?: {
8583
+ type?: string | undefined;
8584
+ id?: number | undefined;
8585
+ html_url?: string | undefined;
8586
+ login?: string | undefined;
8587
+ node_id?: string | undefined;
8588
+ avatar_url?: string | undefined;
8589
+ } | null | undefined;
9116
8590
  html_url?: string | undefined;
8591
+ committer?: {
8592
+ type?: string | undefined;
8593
+ id?: number | undefined;
8594
+ html_url?: string | undefined;
8595
+ login?: string | undefined;
8596
+ node_id?: string | undefined;
8597
+ avatar_url?: string | undefined;
8598
+ } | null | undefined;
9117
8599
  node_id?: string | undefined;
9118
8600
  comments_url?: string | undefined;
8601
+ parents?: {
8602
+ url?: string | undefined;
8603
+ sha?: string | undefined;
8604
+ html_url?: string | undefined;
8605
+ }[] | undefined;
9119
8606
  } | undefined;
9120
8607
  _links?: {
9121
8608
  html?: string | undefined;
@@ -9267,10 +8754,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9267
8754
  }>, "many">>;
9268
8755
  }, "strip", z.ZodTypeAny, {
9269
8756
  url: string;
9270
- sha: string;
9271
- author: {
9272
- login?: string | undefined;
9273
- } | null;
9274
8757
  commit: {
9275
8758
  message: string;
9276
8759
  author: {
@@ -9289,6 +8772,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9289
8772
  };
9290
8773
  commentCount?: number | undefined;
9291
8774
  };
8775
+ sha: string;
8776
+ author: {
8777
+ login?: string | undefined;
8778
+ } | null;
9292
8779
  htmlUrl: string;
9293
8780
  parents?: {
9294
8781
  url: string;
@@ -9297,10 +8784,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9297
8784
  }[] | undefined;
9298
8785
  }, {
9299
8786
  url: string;
9300
- sha: string;
9301
- author: {
9302
- login?: string | undefined;
9303
- } | null;
9304
8787
  commit: {
9305
8788
  message: string;
9306
8789
  author: {
@@ -9319,6 +8802,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9319
8802
  };
9320
8803
  commentCount?: number | undefined;
9321
8804
  };
8805
+ sha: string;
8806
+ author: {
8807
+ login?: string | undefined;
8808
+ } | null;
9322
8809
  htmlUrl: string;
9323
8810
  parents?: {
9324
8811
  url: string;
@@ -9334,10 +8821,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9334
8821
  hasMore?: boolean | undefined;
9335
8822
  commits?: {
9336
8823
  url: string;
9337
- sha: string;
9338
- author: {
9339
- login?: string | undefined;
9340
- } | null;
9341
8824
  commit: {
9342
8825
  message: string;
9343
8826
  author: {
@@ -9356,6 +8839,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9356
8839
  };
9357
8840
  commentCount?: number | undefined;
9358
8841
  };
8842
+ sha: string;
8843
+ author: {
8844
+ login?: string | undefined;
8845
+ } | null;
9359
8846
  htmlUrl: string;
9360
8847
  parents?: {
9361
8848
  url: string;
@@ -9370,10 +8857,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9370
8857
  hasMore?: boolean | undefined;
9371
8858
  commits?: {
9372
8859
  url: string;
9373
- sha: string;
9374
- author: {
9375
- login?: string | undefined;
9376
- } | null;
9377
8860
  commit: {
9378
8861
  message: string;
9379
8862
  author: {
@@ -9392,6 +8875,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
9392
8875
  };
9393
8876
  commentCount?: number | undefined;
9394
8877
  };
8878
+ sha: string;
8879
+ author: {
8880
+ login?: string | undefined;
8881
+ } | null;
9395
8882
  htmlUrl: string;
9396
8883
  parents?: {
9397
8884
  url: string;
@@ -10259,8 +9746,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10259
9746
  } | undefined;
10260
9747
  priority?: number | undefined;
10261
9748
  state?: string | undefined;
10262
- createdAt?: string | undefined;
10263
- updatedAt?: string | undefined;
10264
9749
  team?: {
10265
9750
  name?: string | undefined;
10266
9751
  id?: string | undefined;
@@ -10271,6 +9756,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10271
9756
  } | undefined;
10272
9757
  dueDate?: string | undefined;
10273
9758
  labels?: string[] | undefined;
9759
+ createdAt?: string | undefined;
9760
+ updatedAt?: string | undefined;
10274
9761
  estimate?: number | undefined;
10275
9762
  }, {
10276
9763
  description?: string | undefined;
@@ -10292,8 +9779,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10292
9779
  } | undefined;
10293
9780
  priority?: number | undefined;
10294
9781
  state?: string | undefined;
10295
- createdAt?: string | undefined;
10296
- updatedAt?: string | undefined;
10297
9782
  team?: {
10298
9783
  name?: string | undefined;
10299
9784
  id?: string | undefined;
@@ -10304,6 +9789,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10304
9789
  } | undefined;
10305
9790
  dueDate?: string | undefined;
10306
9791
  labels?: string[] | undefined;
9792
+ createdAt?: string | undefined;
9793
+ updatedAt?: string | undefined;
10307
9794
  estimate?: number | undefined;
10308
9795
  }>>;
10309
9796
  }, "strip", z.ZodTypeAny, {
@@ -10329,8 +9816,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10329
9816
  } | undefined;
10330
9817
  priority?: number | undefined;
10331
9818
  state?: string | undefined;
10332
- createdAt?: string | undefined;
10333
- updatedAt?: string | undefined;
10334
9819
  team?: {
10335
9820
  name?: string | undefined;
10336
9821
  id?: string | undefined;
@@ -10341,6 +9826,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10341
9826
  } | undefined;
10342
9827
  dueDate?: string | undefined;
10343
9828
  labels?: string[] | undefined;
9829
+ createdAt?: string | undefined;
9830
+ updatedAt?: string | undefined;
10344
9831
  estimate?: number | undefined;
10345
9832
  } | undefined;
10346
9833
  }, {
@@ -10366,8 +9853,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10366
9853
  } | undefined;
10367
9854
  priority?: number | undefined;
10368
9855
  state?: string | undefined;
10369
- createdAt?: string | undefined;
10370
- updatedAt?: string | undefined;
10371
9856
  team?: {
10372
9857
  name?: string | undefined;
10373
9858
  id?: string | undefined;
@@ -10378,6 +9863,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
10378
9863
  } | undefined;
10379
9864
  dueDate?: string | undefined;
10380
9865
  labels?: string[] | undefined;
9866
+ createdAt?: string | undefined;
9867
+ updatedAt?: string | undefined;
10381
9868
  estimate?: number | undefined;
10382
9869
  } | undefined;
10383
9870
  }>;
@@ -10582,12 +10069,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10582
10069
  author_name?: string | undefined;
10583
10070
  }[] | undefined;
10584
10071
  state?: string | undefined;
10585
- createdAt?: string | undefined;
10586
- updatedAt?: string | undefined;
10587
10072
  team?: {
10588
10073
  name?: string | undefined;
10589
10074
  id?: string | undefined;
10590
10075
  } | undefined;
10076
+ createdAt?: string | undefined;
10077
+ updatedAt?: string | undefined;
10591
10078
  lead?: {
10592
10079
  name?: string | undefined;
10593
10080
  id?: string | undefined;
@@ -10611,12 +10098,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10611
10098
  author_name?: string | undefined;
10612
10099
  }[] | undefined;
10613
10100
  state?: string | undefined;
10614
- createdAt?: string | undefined;
10615
- updatedAt?: string | undefined;
10616
10101
  team?: {
10617
10102
  name?: string | undefined;
10618
10103
  id?: string | undefined;
10619
10104
  } | undefined;
10105
+ createdAt?: string | undefined;
10106
+ updatedAt?: string | undefined;
10620
10107
  lead?: {
10621
10108
  name?: string | undefined;
10622
10109
  id?: string | undefined;
@@ -10644,12 +10131,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10644
10131
  author_name?: string | undefined;
10645
10132
  }[] | undefined;
10646
10133
  state?: string | undefined;
10647
- createdAt?: string | undefined;
10648
- updatedAt?: string | undefined;
10649
10134
  team?: {
10650
10135
  name?: string | undefined;
10651
10136
  id?: string | undefined;
10652
10137
  } | undefined;
10138
+ createdAt?: string | undefined;
10139
+ updatedAt?: string | undefined;
10653
10140
  lead?: {
10654
10141
  name?: string | undefined;
10655
10142
  id?: string | undefined;
@@ -10677,12 +10164,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
10677
10164
  author_name?: string | undefined;
10678
10165
  }[] | undefined;
10679
10166
  state?: string | undefined;
10680
- createdAt?: string | undefined;
10681
- updatedAt?: string | undefined;
10682
10167
  team?: {
10683
10168
  name?: string | undefined;
10684
10169
  id?: string | undefined;
10685
10170
  } | undefined;
10171
+ createdAt?: string | undefined;
10172
+ updatedAt?: string | undefined;
10686
10173
  lead?: {
10687
10174
  name?: string | undefined;
10688
10175
  id?: string | undefined;
@@ -10889,10 +10376,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
10889
10376
  id?: string | undefined;
10890
10377
  email?: string | undefined;
10891
10378
  state?: string | undefined;
10892
- createdAt?: string | undefined;
10893
- updatedAt?: string | undefined;
10894
10379
  company?: string | undefined;
10895
10380
  address?: string | undefined;
10381
+ createdAt?: string | undefined;
10382
+ updatedAt?: string | undefined;
10896
10383
  firstname?: string | undefined;
10897
10384
  lastname?: string | undefined;
10898
10385
  phone?: string | undefined;
@@ -10906,10 +10393,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
10906
10393
  id?: string | undefined;
10907
10394
  email?: string | undefined;
10908
10395
  state?: string | undefined;
10909
- createdAt?: string | undefined;
10910
- updatedAt?: string | undefined;
10911
10396
  company?: string | undefined;
10912
10397
  address?: string | undefined;
10398
+ createdAt?: string | undefined;
10399
+ updatedAt?: string | undefined;
10913
10400
  firstname?: string | undefined;
10914
10401
  lastname?: string | undefined;
10915
10402
  phone?: string | undefined;
@@ -10927,10 +10414,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
10927
10414
  id?: string | undefined;
10928
10415
  email?: string | undefined;
10929
10416
  state?: string | undefined;
10930
- createdAt?: string | undefined;
10931
- updatedAt?: string | undefined;
10932
10417
  company?: string | undefined;
10933
10418
  address?: string | undefined;
10419
+ createdAt?: string | undefined;
10420
+ updatedAt?: string | undefined;
10934
10421
  firstname?: string | undefined;
10935
10422
  lastname?: string | undefined;
10936
10423
  phone?: string | undefined;
@@ -10948,10 +10435,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
10948
10435
  id?: string | undefined;
10949
10436
  email?: string | undefined;
10950
10437
  state?: string | undefined;
10951
- createdAt?: string | undefined;
10952
- updatedAt?: string | undefined;
10953
10438
  company?: string | undefined;
10954
10439
  address?: string | undefined;
10440
+ createdAt?: string | undefined;
10441
+ updatedAt?: string | undefined;
10955
10442
  firstname?: string | undefined;
10956
10443
  lastname?: string | undefined;
10957
10444
  phone?: string | undefined;
@@ -11046,9 +10533,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
11046
10533
  name?: string | undefined;
11047
10534
  id?: string | undefined;
11048
10535
  state?: string | undefined;
10536
+ address?: string | undefined;
11049
10537
  createdAt?: string | undefined;
11050
10538
  updatedAt?: string | undefined;
11051
- address?: string | undefined;
11052
10539
  phone?: string | undefined;
11053
10540
  city?: string | undefined;
11054
10541
  zip?: string | undefined;
@@ -11061,9 +10548,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
11061
10548
  name?: string | undefined;
11062
10549
  id?: string | undefined;
11063
10550
  state?: string | undefined;
10551
+ address?: string | undefined;
11064
10552
  createdAt?: string | undefined;
11065
10553
  updatedAt?: string | undefined;
11066
- address?: string | undefined;
11067
10554
  phone?: string | undefined;
11068
10555
  city?: string | undefined;
11069
10556
  zip?: string | undefined;
@@ -11080,9 +10567,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
11080
10567
  name?: string | undefined;
11081
10568
  id?: string | undefined;
11082
10569
  state?: string | undefined;
10570
+ address?: string | undefined;
11083
10571
  createdAt?: string | undefined;
11084
10572
  updatedAt?: string | undefined;
11085
- address?: string | undefined;
11086
10573
  phone?: string | undefined;
11087
10574
  city?: string | undefined;
11088
10575
  zip?: string | undefined;
@@ -11099,9 +10586,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
11099
10586
  name?: string | undefined;
11100
10587
  id?: string | undefined;
11101
10588
  state?: string | undefined;
10589
+ address?: string | undefined;
11102
10590
  createdAt?: string | undefined;
11103
10591
  updatedAt?: string | undefined;
11104
- address?: string | undefined;
11105
10592
  phone?: string | undefined;
11106
10593
  city?: string | undefined;
11107
10594
  zip?: string | undefined;