@credal/actions 0.2.106 → 0.2.108

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/README.md +2 -2
  2. package/dist/actions/actionMapper.js +19 -1
  3. package/dist/actions/autogen/templates.d.ts +3 -0
  4. package/dist/actions/autogen/templates.js +733 -0
  5. package/dist/actions/autogen/types.d.ts +1278 -0
  6. package/dist/actions/autogen/types.js +269 -0
  7. package/dist/actions/groups.js +14 -1
  8. package/dist/actions/parse.d.ts +3 -3
  9. package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
  10. package/dist/actions/providers/confluence/updatePage.js +46 -0
  11. package/dist/actions/providers/generic/fillTemplateAction.d.ts +7 -0
  12. package/dist/actions/providers/generic/fillTemplateAction.js +18 -0
  13. package/dist/actions/providers/generic/genericApiCall.d.ts +3 -0
  14. package/dist/actions/providers/generic/genericApiCall.js +38 -0
  15. package/dist/actions/providers/github/getBranch.d.ts +7 -0
  16. package/dist/actions/providers/github/getBranch.js +67 -0
  17. package/dist/actions/providers/github/getPullRequestDetails.d.ts +3 -0
  18. package/dist/actions/providers/github/getPullRequestDetails.js +61 -0
  19. package/dist/actions/providers/github/listCommits.d.ts +3 -0
  20. package/dist/actions/providers/github/listCommits.js +73 -0
  21. package/dist/actions/providers/google-oauth/editAGoogleCalendarEvent.js +9 -1
  22. package/dist/actions/providers/google-oauth/getDriveContentById.d.ts +3 -0
  23. package/dist/actions/providers/google-oauth/getDriveContentById.js +161 -0
  24. package/dist/actions/providers/google-oauth/listCalendarEvents.js +3 -0
  25. package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.js +2 -0
  26. package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.d.ts +3 -0
  27. package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.js +47 -0
  28. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.d.ts +3 -0
  29. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.js +110 -0
  30. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByQuery.d.ts +3 -0
  31. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByQuery.js +78 -0
  32. package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.d.ts +15 -0
  33. package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.js +129 -0
  34. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  35. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  36. package/dist/actions/providers/slack/archiveChannel.js +5 -9
  37. package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.d.ts +3 -0
  38. package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.js +154 -0
  39. package/dist/actions/providers/x/scrapeTweetDataWithNitter.d.ts +3 -0
  40. package/dist/actions/providers/x/scrapeTweetDataWithNitter.js +45 -0
  41. package/dist/utils/datetime.d.ts +1 -0
  42. package/dist/utils/datetime.js +7 -0
  43. package/package.json +1 -1
  44. package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +0 -3
  45. package/dist/actions/providers/google-oauth/listGmailThreads.js +0 -98
  46. package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +0 -3
  47. package/dist/actions/providers/google-oauth/searchGmailMessages.js +0 -91
  48. package/dist/actions/providers/jamf/getComputerInventory.d.ts +0 -3
  49. package/dist/actions/providers/jamf/getComputerInventory.js +0 -45
  50. package/dist/actions/providers/jamf/getFileVaultRecoveryKey.d.ts +0 -3
  51. package/dist/actions/providers/jamf/getFileVaultRecoveryKey.js +0 -40
  52. package/dist/actions/providers/jamf/restartJamfComputerById.d.ts +0 -3
  53. package/dist/actions/providers/jamf/restartJamfComputerById.js +0 -37
  54. package/dist/actions/providers/jamf/types.d.ts +0 -8
  55. package/dist/actions/providers/jamf/types.js +0 -7
@@ -3285,17 +3285,20 @@ export declare const googleOauthScheduleCalendarMeetingOutputSchema: z.ZodObject
3285
3285
  success: z.ZodBoolean;
3286
3286
  eventId: z.ZodOptional<z.ZodString>;
3287
3287
  eventUrl: z.ZodOptional<z.ZodString>;
3288
+ eventDayOfWeek: z.ZodOptional<z.ZodString>;
3288
3289
  error: z.ZodOptional<z.ZodString>;
3289
3290
  }, "strip", z.ZodTypeAny, {
3290
3291
  success: boolean;
3291
3292
  error?: string | undefined;
3292
3293
  eventId?: string | undefined;
3293
3294
  eventUrl?: string | undefined;
3295
+ eventDayOfWeek?: string | undefined;
3294
3296
  }, {
3295
3297
  success: boolean;
3296
3298
  error?: string | undefined;
3297
3299
  eventId?: string | undefined;
3298
3300
  eventUrl?: string | undefined;
3301
+ eventDayOfWeek?: string | undefined;
3299
3302
  }>;
3300
3303
  export type googleOauthScheduleCalendarMeetingOutputType = z.infer<typeof googleOauthScheduleCalendarMeetingOutputSchema>;
3301
3304
  export type googleOauthScheduleCalendarMeetingFunction = ActionFunction<googleOauthScheduleCalendarMeetingParamsType, AuthParamsType, googleOauthScheduleCalendarMeetingOutputType>;
@@ -3367,7 +3370,9 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3367
3370
  description: z.ZodOptional<z.ZodString>;
3368
3371
  location: z.ZodOptional<z.ZodString>;
3369
3372
  start: z.ZodOptional<z.ZodString>;
3373
+ startDayOfWeek: z.ZodOptional<z.ZodString>;
3370
3374
  end: z.ZodOptional<z.ZodString>;
3375
+ endDayOfWeek: z.ZodOptional<z.ZodString>;
3371
3376
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3372
3377
  email: z.ZodOptional<z.ZodString>;
3373
3378
  displayName: z.ZodOptional<z.ZodString>;
@@ -3414,6 +3419,8 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3414
3419
  email?: string | undefined;
3415
3420
  displayName?: string | undefined;
3416
3421
  } | undefined;
3422
+ startDayOfWeek?: string | undefined;
3423
+ endDayOfWeek?: string | undefined;
3417
3424
  hangoutLink?: string | undefined;
3418
3425
  }, {
3419
3426
  status?: string | undefined;
@@ -3435,6 +3442,8 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3435
3442
  email?: string | undefined;
3436
3443
  displayName?: string | undefined;
3437
3444
  } | undefined;
3445
+ startDayOfWeek?: string | undefined;
3446
+ endDayOfWeek?: string | undefined;
3438
3447
  hangoutLink?: string | undefined;
3439
3448
  }>, "many">;
3440
3449
  timezone: z.ZodOptional<z.ZodString>;
@@ -3461,6 +3470,8 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3461
3470
  email?: string | undefined;
3462
3471
  displayName?: string | undefined;
3463
3472
  } | undefined;
3473
+ startDayOfWeek?: string | undefined;
3474
+ endDayOfWeek?: string | undefined;
3464
3475
  hangoutLink?: string | undefined;
3465
3476
  }[];
3466
3477
  error?: string | undefined;
@@ -3487,6 +3498,8 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
3487
3498
  email?: string | undefined;
3488
3499
  displayName?: string | undefined;
3489
3500
  } | undefined;
3501
+ startDayOfWeek?: string | undefined;
3502
+ endDayOfWeek?: string | undefined;
3490
3503
  hangoutLink?: string | undefined;
3491
3504
  }[];
3492
3505
  error?: string | undefined;
@@ -3654,17 +3667,20 @@ export declare const googleOauthEditAGoogleCalendarEventOutputSchema: z.ZodObjec
3654
3667
  success: z.ZodBoolean;
3655
3668
  eventId: z.ZodOptional<z.ZodString>;
3656
3669
  eventUrl: z.ZodOptional<z.ZodString>;
3670
+ eventDayOfWeek: z.ZodOptional<z.ZodString>;
3657
3671
  error: z.ZodOptional<z.ZodString>;
3658
3672
  }, "strip", z.ZodTypeAny, {
3659
3673
  success: boolean;
3660
3674
  error?: string | undefined;
3661
3675
  eventId?: string | undefined;
3662
3676
  eventUrl?: string | undefined;
3677
+ eventDayOfWeek?: string | undefined;
3663
3678
  }, {
3664
3679
  success: boolean;
3665
3680
  error?: string | undefined;
3666
3681
  eventId?: string | undefined;
3667
3682
  eventUrl?: string | undefined;
3683
+ eventDayOfWeek?: string | undefined;
3668
3684
  }>;
3669
3685
  export type googleOauthEditAGoogleCalendarEventOutputType = z.infer<typeof googleOauthEditAGoogleCalendarEventOutputSchema>;
3670
3686
  export type googleOauthEditAGoogleCalendarEventFunction = ActionFunction<googleOauthEditAGoogleCalendarEventParamsType, AuthParamsType, googleOauthEditAGoogleCalendarEventOutputType>;
@@ -7045,6 +7061,442 @@ export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
7045
7061
  }>;
7046
7062
  export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
7047
7063
  export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
7064
+ export declare const githubGetPullRequestDetailsParamsSchema: z.ZodObject<{
7065
+ repositoryOwner: z.ZodString;
7066
+ repositoryName: z.ZodString;
7067
+ pullRequestNumber: z.ZodNumber;
7068
+ }, "strip", z.ZodTypeAny, {
7069
+ repositoryOwner: string;
7070
+ repositoryName: string;
7071
+ pullRequestNumber: number;
7072
+ }, {
7073
+ repositoryOwner: string;
7074
+ repositoryName: string;
7075
+ pullRequestNumber: number;
7076
+ }>;
7077
+ export type githubGetPullRequestDetailsParamsType = z.infer<typeof githubGetPullRequestDetailsParamsSchema>;
7078
+ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
7079
+ success: z.ZodBoolean;
7080
+ error: z.ZodOptional<z.ZodString>;
7081
+ pullRequest: z.ZodOptional<z.ZodObject<{
7082
+ number: z.ZodOptional<z.ZodNumber>;
7083
+ title: z.ZodOptional<z.ZodString>;
7084
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7085
+ state: z.ZodOptional<z.ZodEnum<["open", "closed", "merged"]>>;
7086
+ draft: z.ZodOptional<z.ZodBoolean>;
7087
+ url: z.ZodOptional<z.ZodString>;
7088
+ htmlUrl: z.ZodOptional<z.ZodString>;
7089
+ createdAt: z.ZodOptional<z.ZodString>;
7090
+ updatedAt: z.ZodOptional<z.ZodString>;
7091
+ closedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7092
+ mergedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7093
+ author: z.ZodOptional<z.ZodObject<{
7094
+ login: z.ZodOptional<z.ZodString>;
7095
+ }, "strip", z.ZodTypeAny, {
7096
+ login?: string | undefined;
7097
+ }, {
7098
+ login?: string | undefined;
7099
+ }>>;
7100
+ assignees: z.ZodOptional<z.ZodArray<z.ZodObject<{
7101
+ login: z.ZodOptional<z.ZodString>;
7102
+ }, "strip", z.ZodTypeAny, {
7103
+ login?: string | undefined;
7104
+ }, {
7105
+ login?: string | undefined;
7106
+ }>, "many">>;
7107
+ reviewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
7108
+ login: z.ZodOptional<z.ZodString>;
7109
+ }, "strip", z.ZodTypeAny, {
7110
+ login?: string | undefined;
7111
+ }, {
7112
+ login?: string | undefined;
7113
+ }>, "many">>;
7114
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
7115
+ name: z.ZodOptional<z.ZodString>;
7116
+ color: z.ZodOptional<z.ZodString>;
7117
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7118
+ }, "strip", z.ZodTypeAny, {
7119
+ description?: string | null | undefined;
7120
+ name?: string | undefined;
7121
+ color?: string | undefined;
7122
+ }, {
7123
+ description?: string | null | undefined;
7124
+ name?: string | undefined;
7125
+ color?: string | undefined;
7126
+ }>, "many">>;
7127
+ head: z.ZodOptional<z.ZodObject<{
7128
+ ref: z.ZodOptional<z.ZodString>;
7129
+ sha: z.ZodOptional<z.ZodString>;
7130
+ repo: z.ZodOptional<z.ZodObject<{
7131
+ name: z.ZodOptional<z.ZodString>;
7132
+ fullName: z.ZodOptional<z.ZodString>;
7133
+ owner: z.ZodOptional<z.ZodObject<{
7134
+ login: z.ZodOptional<z.ZodString>;
7135
+ }, "strip", z.ZodTypeAny, {
7136
+ login?: string | undefined;
7137
+ }, {
7138
+ login?: string | undefined;
7139
+ }>>;
7140
+ }, "strip", z.ZodTypeAny, {
7141
+ name?: string | undefined;
7142
+ fullName?: string | undefined;
7143
+ owner?: {
7144
+ login?: string | undefined;
7145
+ } | undefined;
7146
+ }, {
7147
+ name?: string | undefined;
7148
+ fullName?: string | undefined;
7149
+ owner?: {
7150
+ login?: string | undefined;
7151
+ } | undefined;
7152
+ }>>;
7153
+ }, "strip", z.ZodTypeAny, {
7154
+ sha?: string | undefined;
7155
+ ref?: string | undefined;
7156
+ repo?: {
7157
+ name?: string | undefined;
7158
+ fullName?: string | undefined;
7159
+ owner?: {
7160
+ login?: string | undefined;
7161
+ } | undefined;
7162
+ } | undefined;
7163
+ }, {
7164
+ sha?: string | undefined;
7165
+ ref?: string | undefined;
7166
+ repo?: {
7167
+ name?: string | undefined;
7168
+ fullName?: string | undefined;
7169
+ owner?: {
7170
+ login?: string | undefined;
7171
+ } | undefined;
7172
+ } | undefined;
7173
+ }>>;
7174
+ base: z.ZodOptional<z.ZodObject<{
7175
+ ref: z.ZodOptional<z.ZodString>;
7176
+ sha: z.ZodOptional<z.ZodString>;
7177
+ repo: z.ZodOptional<z.ZodObject<{
7178
+ name: z.ZodOptional<z.ZodString>;
7179
+ fullName: z.ZodOptional<z.ZodString>;
7180
+ owner: z.ZodOptional<z.ZodObject<{
7181
+ login: z.ZodOptional<z.ZodString>;
7182
+ }, "strip", z.ZodTypeAny, {
7183
+ login?: string | undefined;
7184
+ }, {
7185
+ login?: string | undefined;
7186
+ }>>;
7187
+ }, "strip", z.ZodTypeAny, {
7188
+ name?: string | undefined;
7189
+ fullName?: string | undefined;
7190
+ owner?: {
7191
+ login?: string | undefined;
7192
+ } | undefined;
7193
+ }, {
7194
+ name?: string | undefined;
7195
+ fullName?: string | undefined;
7196
+ owner?: {
7197
+ login?: string | undefined;
7198
+ } | undefined;
7199
+ }>>;
7200
+ }, "strip", z.ZodTypeAny, {
7201
+ sha?: string | undefined;
7202
+ ref?: string | undefined;
7203
+ repo?: {
7204
+ name?: string | undefined;
7205
+ fullName?: string | undefined;
7206
+ owner?: {
7207
+ login?: string | undefined;
7208
+ } | undefined;
7209
+ } | undefined;
7210
+ }, {
7211
+ sha?: string | undefined;
7212
+ ref?: string | undefined;
7213
+ repo?: {
7214
+ name?: string | undefined;
7215
+ fullName?: string | undefined;
7216
+ owner?: {
7217
+ login?: string | undefined;
7218
+ } | undefined;
7219
+ } | undefined;
7220
+ }>>;
7221
+ mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
7222
+ mergeableState: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7223
+ merged: z.ZodOptional<z.ZodBoolean>;
7224
+ commits: z.ZodOptional<z.ZodNumber>;
7225
+ additions: z.ZodOptional<z.ZodNumber>;
7226
+ deletions: z.ZodOptional<z.ZodNumber>;
7227
+ changedFiles: z.ZodOptional<z.ZodNumber>;
7228
+ milestone: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7229
+ title: z.ZodOptional<z.ZodString>;
7230
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7231
+ state: z.ZodOptional<z.ZodString>;
7232
+ dueOn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7233
+ }, "strip", z.ZodTypeAny, {
7234
+ description?: string | null | undefined;
7235
+ title?: string | undefined;
7236
+ state?: string | undefined;
7237
+ dueOn?: string | null | undefined;
7238
+ }, {
7239
+ description?: string | null | undefined;
7240
+ title?: string | undefined;
7241
+ state?: string | undefined;
7242
+ dueOn?: string | null | undefined;
7243
+ }>>>;
7244
+ }, "strip", z.ZodTypeAny, {
7245
+ number?: number | undefined;
7246
+ description?: string | null | undefined;
7247
+ title?: string | undefined;
7248
+ url?: string | undefined;
7249
+ createdAt?: string | undefined;
7250
+ head?: {
7251
+ sha?: string | undefined;
7252
+ ref?: string | undefined;
7253
+ repo?: {
7254
+ name?: string | undefined;
7255
+ fullName?: string | undefined;
7256
+ owner?: {
7257
+ login?: string | undefined;
7258
+ } | undefined;
7259
+ } | undefined;
7260
+ } | undefined;
7261
+ base?: {
7262
+ sha?: string | undefined;
7263
+ ref?: string | undefined;
7264
+ repo?: {
7265
+ name?: string | undefined;
7266
+ fullName?: string | undefined;
7267
+ owner?: {
7268
+ login?: string | undefined;
7269
+ } | undefined;
7270
+ } | undefined;
7271
+ } | undefined;
7272
+ state?: "open" | "closed" | "merged" | undefined;
7273
+ merged?: boolean | undefined;
7274
+ htmlUrl?: string | undefined;
7275
+ commits?: number | undefined;
7276
+ author?: {
7277
+ login?: string | undefined;
7278
+ } | undefined;
7279
+ updatedAt?: string | undefined;
7280
+ draft?: boolean | undefined;
7281
+ closedAt?: string | null | undefined;
7282
+ mergedAt?: string | null | undefined;
7283
+ assignees?: {
7284
+ login?: string | undefined;
7285
+ }[] | undefined;
7286
+ reviewers?: {
7287
+ login?: string | undefined;
7288
+ }[] | undefined;
7289
+ labels?: {
7290
+ description?: string | null | undefined;
7291
+ name?: string | undefined;
7292
+ color?: string | undefined;
7293
+ }[] | undefined;
7294
+ mergeable?: boolean | null | undefined;
7295
+ mergeableState?: string | null | undefined;
7296
+ additions?: number | undefined;
7297
+ deletions?: number | undefined;
7298
+ changedFiles?: number | undefined;
7299
+ milestone?: {
7300
+ description?: string | null | undefined;
7301
+ title?: string | undefined;
7302
+ state?: string | undefined;
7303
+ dueOn?: string | null | undefined;
7304
+ } | null | undefined;
7305
+ }, {
7306
+ number?: number | undefined;
7307
+ description?: string | null | undefined;
7308
+ title?: string | undefined;
7309
+ url?: string | undefined;
7310
+ createdAt?: string | undefined;
7311
+ head?: {
7312
+ sha?: string | undefined;
7313
+ ref?: string | undefined;
7314
+ repo?: {
7315
+ name?: string | undefined;
7316
+ fullName?: string | undefined;
7317
+ owner?: {
7318
+ login?: string | undefined;
7319
+ } | undefined;
7320
+ } | undefined;
7321
+ } | undefined;
7322
+ base?: {
7323
+ sha?: string | undefined;
7324
+ ref?: string | undefined;
7325
+ repo?: {
7326
+ name?: string | undefined;
7327
+ fullName?: string | undefined;
7328
+ owner?: {
7329
+ login?: string | undefined;
7330
+ } | undefined;
7331
+ } | undefined;
7332
+ } | undefined;
7333
+ state?: "open" | "closed" | "merged" | undefined;
7334
+ merged?: boolean | undefined;
7335
+ htmlUrl?: string | undefined;
7336
+ commits?: number | undefined;
7337
+ author?: {
7338
+ login?: string | undefined;
7339
+ } | undefined;
7340
+ updatedAt?: string | undefined;
7341
+ draft?: boolean | undefined;
7342
+ closedAt?: string | null | undefined;
7343
+ mergedAt?: string | null | undefined;
7344
+ assignees?: {
7345
+ login?: string | undefined;
7346
+ }[] | undefined;
7347
+ reviewers?: {
7348
+ login?: string | undefined;
7349
+ }[] | undefined;
7350
+ labels?: {
7351
+ description?: string | null | undefined;
7352
+ name?: string | undefined;
7353
+ color?: string | undefined;
7354
+ }[] | undefined;
7355
+ mergeable?: boolean | null | undefined;
7356
+ mergeableState?: string | null | undefined;
7357
+ additions?: number | undefined;
7358
+ deletions?: number | undefined;
7359
+ changedFiles?: number | undefined;
7360
+ milestone?: {
7361
+ description?: string | null | undefined;
7362
+ title?: string | undefined;
7363
+ state?: string | undefined;
7364
+ dueOn?: string | null | undefined;
7365
+ } | null | undefined;
7366
+ }>>;
7367
+ }, "strip", z.ZodTypeAny, {
7368
+ success: boolean;
7369
+ error?: string | undefined;
7370
+ pullRequest?: {
7371
+ number?: number | undefined;
7372
+ description?: string | null | undefined;
7373
+ title?: string | undefined;
7374
+ url?: string | undefined;
7375
+ createdAt?: string | undefined;
7376
+ head?: {
7377
+ sha?: string | undefined;
7378
+ ref?: string | undefined;
7379
+ repo?: {
7380
+ name?: string | undefined;
7381
+ fullName?: string | undefined;
7382
+ owner?: {
7383
+ login?: string | undefined;
7384
+ } | undefined;
7385
+ } | undefined;
7386
+ } | undefined;
7387
+ base?: {
7388
+ sha?: string | undefined;
7389
+ ref?: string | undefined;
7390
+ repo?: {
7391
+ name?: string | undefined;
7392
+ fullName?: string | undefined;
7393
+ owner?: {
7394
+ login?: string | undefined;
7395
+ } | undefined;
7396
+ } | undefined;
7397
+ } | undefined;
7398
+ state?: "open" | "closed" | "merged" | undefined;
7399
+ merged?: boolean | undefined;
7400
+ htmlUrl?: string | undefined;
7401
+ commits?: number | undefined;
7402
+ author?: {
7403
+ login?: string | undefined;
7404
+ } | undefined;
7405
+ updatedAt?: string | undefined;
7406
+ draft?: boolean | undefined;
7407
+ closedAt?: string | null | undefined;
7408
+ mergedAt?: string | null | undefined;
7409
+ assignees?: {
7410
+ login?: string | undefined;
7411
+ }[] | undefined;
7412
+ reviewers?: {
7413
+ login?: string | undefined;
7414
+ }[] | undefined;
7415
+ labels?: {
7416
+ description?: string | null | undefined;
7417
+ name?: string | undefined;
7418
+ color?: string | undefined;
7419
+ }[] | undefined;
7420
+ mergeable?: boolean | null | undefined;
7421
+ mergeableState?: string | null | undefined;
7422
+ additions?: number | undefined;
7423
+ deletions?: number | undefined;
7424
+ changedFiles?: number | undefined;
7425
+ milestone?: {
7426
+ description?: string | null | undefined;
7427
+ title?: string | undefined;
7428
+ state?: string | undefined;
7429
+ dueOn?: string | null | undefined;
7430
+ } | null | undefined;
7431
+ } | undefined;
7432
+ }, {
7433
+ success: boolean;
7434
+ error?: string | undefined;
7435
+ pullRequest?: {
7436
+ number?: number | undefined;
7437
+ description?: string | null | undefined;
7438
+ title?: string | undefined;
7439
+ url?: string | undefined;
7440
+ createdAt?: string | undefined;
7441
+ head?: {
7442
+ sha?: string | undefined;
7443
+ ref?: string | undefined;
7444
+ repo?: {
7445
+ name?: string | undefined;
7446
+ fullName?: string | undefined;
7447
+ owner?: {
7448
+ login?: string | undefined;
7449
+ } | undefined;
7450
+ } | undefined;
7451
+ } | undefined;
7452
+ base?: {
7453
+ sha?: string | undefined;
7454
+ ref?: string | undefined;
7455
+ repo?: {
7456
+ name?: string | undefined;
7457
+ fullName?: string | undefined;
7458
+ owner?: {
7459
+ login?: string | undefined;
7460
+ } | undefined;
7461
+ } | undefined;
7462
+ } | undefined;
7463
+ state?: "open" | "closed" | "merged" | undefined;
7464
+ merged?: boolean | undefined;
7465
+ htmlUrl?: string | undefined;
7466
+ commits?: number | undefined;
7467
+ author?: {
7468
+ login?: string | undefined;
7469
+ } | undefined;
7470
+ updatedAt?: string | undefined;
7471
+ draft?: boolean | undefined;
7472
+ closedAt?: string | null | undefined;
7473
+ mergedAt?: string | null | undefined;
7474
+ assignees?: {
7475
+ login?: string | undefined;
7476
+ }[] | undefined;
7477
+ reviewers?: {
7478
+ login?: string | undefined;
7479
+ }[] | undefined;
7480
+ labels?: {
7481
+ description?: string | null | undefined;
7482
+ name?: string | undefined;
7483
+ color?: string | undefined;
7484
+ }[] | undefined;
7485
+ mergeable?: boolean | null | undefined;
7486
+ mergeableState?: string | null | undefined;
7487
+ additions?: number | undefined;
7488
+ deletions?: number | undefined;
7489
+ changedFiles?: number | undefined;
7490
+ milestone?: {
7491
+ description?: string | null | undefined;
7492
+ title?: string | undefined;
7493
+ state?: string | undefined;
7494
+ dueOn?: string | null | undefined;
7495
+ } | null | undefined;
7496
+ } | undefined;
7497
+ }>;
7498
+ export type githubGetPullRequestDetailsOutputType = z.infer<typeof githubGetPullRequestDetailsOutputSchema>;
7499
+ export type githubGetPullRequestDetailsFunction = ActionFunction<githubGetPullRequestDetailsParamsType, AuthParamsType, githubGetPullRequestDetailsOutputType>;
7048
7500
  export declare const githubGetFileContentParamsSchema: z.ZodObject<{
7049
7501
  organization: z.ZodString;
7050
7502
  repository: z.ZodString;
@@ -7694,6 +8146,832 @@ export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
7694
8146
  }>;
7695
8147
  export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
7696
8148
  export type githubSearchOrganizationFunction = ActionFunction<githubSearchOrganizationParamsType, AuthParamsType, githubSearchOrganizationOutputType>;
8149
+ export declare const githubGetBranchParamsSchema: z.ZodObject<{
8150
+ repositoryOwner: z.ZodString;
8151
+ repositoryName: z.ZodString;
8152
+ branchName: z.ZodString;
8153
+ }, "strip", z.ZodTypeAny, {
8154
+ repositoryOwner: string;
8155
+ repositoryName: string;
8156
+ branchName: string;
8157
+ }, {
8158
+ repositoryOwner: string;
8159
+ repositoryName: string;
8160
+ branchName: string;
8161
+ }>;
8162
+ export type githubGetBranchParamsType = z.infer<typeof githubGetBranchParamsSchema>;
8163
+ export declare const githubGetBranchOutputSchema: z.ZodObject<{
8164
+ success: z.ZodBoolean;
8165
+ error: z.ZodOptional<z.ZodString>;
8166
+ branch: z.ZodOptional<z.ZodObject<{
8167
+ name: z.ZodOptional<z.ZodString>;
8168
+ commit: z.ZodOptional<z.ZodObject<{
8169
+ sha: z.ZodOptional<z.ZodString>;
8170
+ node_id: z.ZodOptional<z.ZodString>;
8171
+ url: z.ZodOptional<z.ZodString>;
8172
+ html_url: z.ZodOptional<z.ZodString>;
8173
+ comments_url: z.ZodOptional<z.ZodString>;
8174
+ commit: z.ZodOptional<z.ZodObject<{
8175
+ author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8176
+ name: z.ZodOptional<z.ZodString>;
8177
+ email: z.ZodOptional<z.ZodString>;
8178
+ date: z.ZodOptional<z.ZodString>;
8179
+ }, "strip", z.ZodTypeAny, {
8180
+ date?: string | undefined;
8181
+ name?: string | undefined;
8182
+ email?: string | undefined;
8183
+ }, {
8184
+ date?: string | undefined;
8185
+ name?: string | undefined;
8186
+ email?: string | undefined;
8187
+ }>>>;
8188
+ committer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8189
+ name: z.ZodOptional<z.ZodString>;
8190
+ email: z.ZodOptional<z.ZodString>;
8191
+ date: z.ZodOptional<z.ZodString>;
8192
+ }, "strip", z.ZodTypeAny, {
8193
+ date?: string | undefined;
8194
+ name?: string | undefined;
8195
+ email?: string | undefined;
8196
+ }, {
8197
+ date?: string | undefined;
8198
+ name?: string | undefined;
8199
+ email?: string | undefined;
8200
+ }>>>;
8201
+ message: z.ZodOptional<z.ZodString>;
8202
+ tree: z.ZodOptional<z.ZodObject<{
8203
+ sha: z.ZodOptional<z.ZodString>;
8204
+ url: z.ZodOptional<z.ZodString>;
8205
+ }, "strip", z.ZodTypeAny, {
8206
+ url?: string | undefined;
8207
+ sha?: string | undefined;
8208
+ }, {
8209
+ url?: string | undefined;
8210
+ sha?: string | undefined;
8211
+ }>>;
8212
+ url: z.ZodOptional<z.ZodString>;
8213
+ comment_count: z.ZodOptional<z.ZodNumber>;
8214
+ }, "strip", z.ZodTypeAny, {
8215
+ message?: string | undefined;
8216
+ url?: string | undefined;
8217
+ author?: {
8218
+ date?: string | undefined;
8219
+ name?: string | undefined;
8220
+ email?: string | undefined;
8221
+ } | null | undefined;
8222
+ committer?: {
8223
+ date?: string | undefined;
8224
+ name?: string | undefined;
8225
+ email?: string | undefined;
8226
+ } | null | undefined;
8227
+ tree?: {
8228
+ url?: string | undefined;
8229
+ sha?: string | undefined;
8230
+ } | undefined;
8231
+ comment_count?: number | undefined;
8232
+ }, {
8233
+ message?: string | undefined;
8234
+ url?: string | undefined;
8235
+ author?: {
8236
+ date?: string | undefined;
8237
+ name?: string | undefined;
8238
+ email?: string | undefined;
8239
+ } | null | undefined;
8240
+ committer?: {
8241
+ date?: string | undefined;
8242
+ name?: string | undefined;
8243
+ email?: string | undefined;
8244
+ } | null | undefined;
8245
+ tree?: {
8246
+ url?: string | undefined;
8247
+ sha?: string | undefined;
8248
+ } | undefined;
8249
+ comment_count?: number | undefined;
8250
+ }>>;
8251
+ author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8252
+ login: z.ZodOptional<z.ZodString>;
8253
+ id: z.ZodOptional<z.ZodNumber>;
8254
+ node_id: z.ZodOptional<z.ZodString>;
8255
+ avatar_url: z.ZodOptional<z.ZodString>;
8256
+ html_url: z.ZodOptional<z.ZodString>;
8257
+ type: z.ZodOptional<z.ZodString>;
8258
+ }, "strip", z.ZodTypeAny, {
8259
+ type?: string | undefined;
8260
+ id?: number | undefined;
8261
+ login?: string | undefined;
8262
+ html_url?: string | undefined;
8263
+ node_id?: string | undefined;
8264
+ avatar_url?: string | undefined;
8265
+ }, {
8266
+ type?: string | undefined;
8267
+ id?: number | undefined;
8268
+ login?: string | undefined;
8269
+ html_url?: string | undefined;
8270
+ node_id?: string | undefined;
8271
+ avatar_url?: string | undefined;
8272
+ }>>>;
8273
+ committer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8274
+ login: z.ZodOptional<z.ZodString>;
8275
+ id: z.ZodOptional<z.ZodNumber>;
8276
+ node_id: z.ZodOptional<z.ZodString>;
8277
+ avatar_url: z.ZodOptional<z.ZodString>;
8278
+ html_url: z.ZodOptional<z.ZodString>;
8279
+ type: z.ZodOptional<z.ZodString>;
8280
+ }, "strip", z.ZodTypeAny, {
8281
+ type?: string | undefined;
8282
+ id?: number | undefined;
8283
+ login?: string | undefined;
8284
+ html_url?: string | undefined;
8285
+ node_id?: string | undefined;
8286
+ avatar_url?: string | undefined;
8287
+ }, {
8288
+ type?: string | undefined;
8289
+ id?: number | undefined;
8290
+ login?: string | undefined;
8291
+ html_url?: string | undefined;
8292
+ node_id?: string | undefined;
8293
+ avatar_url?: string | undefined;
8294
+ }>>>;
8295
+ parents: z.ZodOptional<z.ZodArray<z.ZodObject<{
8296
+ sha: z.ZodOptional<z.ZodString>;
8297
+ url: z.ZodOptional<z.ZodString>;
8298
+ html_url: z.ZodOptional<z.ZodString>;
8299
+ }, "strip", z.ZodTypeAny, {
8300
+ url?: string | undefined;
8301
+ sha?: string | undefined;
8302
+ html_url?: string | undefined;
8303
+ }, {
8304
+ url?: string | undefined;
8305
+ sha?: string | undefined;
8306
+ html_url?: string | undefined;
8307
+ }>, "many">>;
8308
+ }, "strip", z.ZodTypeAny, {
8309
+ url?: string | undefined;
8310
+ sha?: string | undefined;
8311
+ author?: {
8312
+ type?: string | undefined;
8313
+ id?: number | undefined;
8314
+ login?: string | undefined;
8315
+ html_url?: string | undefined;
8316
+ node_id?: string | undefined;
8317
+ avatar_url?: string | undefined;
8318
+ } | null | undefined;
8319
+ committer?: {
8320
+ type?: string | undefined;
8321
+ id?: number | undefined;
8322
+ login?: string | undefined;
8323
+ html_url?: string | undefined;
8324
+ node_id?: string | undefined;
8325
+ avatar_url?: string | undefined;
8326
+ } | null | undefined;
8327
+ parents?: {
8328
+ url?: string | undefined;
8329
+ sha?: string | undefined;
8330
+ html_url?: string | undefined;
8331
+ }[] | undefined;
8332
+ commit?: {
8333
+ message?: string | undefined;
8334
+ url?: string | undefined;
8335
+ author?: {
8336
+ date?: string | undefined;
8337
+ name?: string | undefined;
8338
+ email?: string | undefined;
8339
+ } | null | undefined;
8340
+ committer?: {
8341
+ date?: string | undefined;
8342
+ name?: string | undefined;
8343
+ email?: string | undefined;
8344
+ } | null | undefined;
8345
+ tree?: {
8346
+ url?: string | undefined;
8347
+ sha?: string | undefined;
8348
+ } | undefined;
8349
+ comment_count?: number | undefined;
8350
+ } | undefined;
8351
+ html_url?: string | undefined;
8352
+ node_id?: string | undefined;
8353
+ comments_url?: string | undefined;
8354
+ }, {
8355
+ url?: string | undefined;
8356
+ sha?: string | undefined;
8357
+ author?: {
8358
+ type?: string | undefined;
8359
+ id?: number | undefined;
8360
+ login?: string | undefined;
8361
+ html_url?: string | undefined;
8362
+ node_id?: string | undefined;
8363
+ avatar_url?: string | undefined;
8364
+ } | null | undefined;
8365
+ committer?: {
8366
+ type?: string | undefined;
8367
+ id?: number | undefined;
8368
+ login?: string | undefined;
8369
+ html_url?: string | undefined;
8370
+ node_id?: string | undefined;
8371
+ avatar_url?: string | undefined;
8372
+ } | null | undefined;
8373
+ parents?: {
8374
+ url?: string | undefined;
8375
+ sha?: string | undefined;
8376
+ html_url?: string | undefined;
8377
+ }[] | undefined;
8378
+ commit?: {
8379
+ message?: string | undefined;
8380
+ url?: string | undefined;
8381
+ author?: {
8382
+ date?: string | undefined;
8383
+ name?: string | undefined;
8384
+ email?: string | undefined;
8385
+ } | null | undefined;
8386
+ committer?: {
8387
+ date?: string | undefined;
8388
+ name?: string | undefined;
8389
+ email?: string | undefined;
8390
+ } | null | undefined;
8391
+ tree?: {
8392
+ url?: string | undefined;
8393
+ sha?: string | undefined;
8394
+ } | undefined;
8395
+ comment_count?: number | undefined;
8396
+ } | undefined;
8397
+ html_url?: string | undefined;
8398
+ node_id?: string | undefined;
8399
+ comments_url?: string | undefined;
8400
+ }>>;
8401
+ _links: z.ZodOptional<z.ZodObject<{
8402
+ html: z.ZodOptional<z.ZodString>;
8403
+ self: z.ZodOptional<z.ZodString>;
8404
+ }, "strip", z.ZodTypeAny, {
8405
+ html?: string | undefined;
8406
+ self?: string | undefined;
8407
+ }, {
8408
+ html?: string | undefined;
8409
+ self?: string | undefined;
8410
+ }>>;
8411
+ protected: z.ZodOptional<z.ZodBoolean>;
8412
+ protection: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8413
+ enabled: z.ZodOptional<z.ZodBoolean>;
8414
+ required_status_checks: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8415
+ enforcement_level: z.ZodOptional<z.ZodString>;
8416
+ contexts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8417
+ strict: z.ZodOptional<z.ZodBoolean>;
8418
+ }, "strip", z.ZodTypeAny, {
8419
+ strict?: boolean | undefined;
8420
+ enforcement_level?: string | undefined;
8421
+ contexts?: string[] | undefined;
8422
+ }, {
8423
+ strict?: boolean | undefined;
8424
+ enforcement_level?: string | undefined;
8425
+ contexts?: string[] | undefined;
8426
+ }>>>;
8427
+ }, "strip", z.ZodTypeAny, {
8428
+ enabled?: boolean | undefined;
8429
+ required_status_checks?: {
8430
+ strict?: boolean | undefined;
8431
+ enforcement_level?: string | undefined;
8432
+ contexts?: string[] | undefined;
8433
+ } | null | undefined;
8434
+ }, {
8435
+ enabled?: boolean | undefined;
8436
+ required_status_checks?: {
8437
+ strict?: boolean | undefined;
8438
+ enforcement_level?: string | undefined;
8439
+ contexts?: string[] | undefined;
8440
+ } | null | undefined;
8441
+ }>>>;
8442
+ protection_url: z.ZodOptional<z.ZodString>;
8443
+ }, "strip", z.ZodTypeAny, {
8444
+ name?: string | undefined;
8445
+ commit?: {
8446
+ url?: string | undefined;
8447
+ sha?: string | undefined;
8448
+ author?: {
8449
+ type?: string | undefined;
8450
+ id?: number | undefined;
8451
+ login?: string | undefined;
8452
+ html_url?: string | undefined;
8453
+ node_id?: string | undefined;
8454
+ avatar_url?: string | undefined;
8455
+ } | null | undefined;
8456
+ committer?: {
8457
+ type?: string | undefined;
8458
+ id?: number | undefined;
8459
+ login?: string | undefined;
8460
+ html_url?: string | undefined;
8461
+ node_id?: string | undefined;
8462
+ avatar_url?: string | undefined;
8463
+ } | null | undefined;
8464
+ parents?: {
8465
+ url?: string | undefined;
8466
+ sha?: string | undefined;
8467
+ html_url?: string | undefined;
8468
+ }[] | undefined;
8469
+ commit?: {
8470
+ message?: string | undefined;
8471
+ url?: string | undefined;
8472
+ author?: {
8473
+ date?: string | undefined;
8474
+ name?: string | undefined;
8475
+ email?: string | undefined;
8476
+ } | null | undefined;
8477
+ committer?: {
8478
+ date?: string | undefined;
8479
+ name?: string | undefined;
8480
+ email?: string | undefined;
8481
+ } | null | undefined;
8482
+ tree?: {
8483
+ url?: string | undefined;
8484
+ sha?: string | undefined;
8485
+ } | undefined;
8486
+ comment_count?: number | undefined;
8487
+ } | undefined;
8488
+ html_url?: string | undefined;
8489
+ node_id?: string | undefined;
8490
+ comments_url?: string | undefined;
8491
+ } | undefined;
8492
+ _links?: {
8493
+ html?: string | undefined;
8494
+ self?: string | undefined;
8495
+ } | undefined;
8496
+ protected?: boolean | undefined;
8497
+ protection?: {
8498
+ enabled?: boolean | undefined;
8499
+ required_status_checks?: {
8500
+ strict?: boolean | undefined;
8501
+ enforcement_level?: string | undefined;
8502
+ contexts?: string[] | undefined;
8503
+ } | null | undefined;
8504
+ } | null | undefined;
8505
+ protection_url?: string | undefined;
8506
+ }, {
8507
+ name?: string | undefined;
8508
+ commit?: {
8509
+ url?: string | undefined;
8510
+ sha?: string | undefined;
8511
+ author?: {
8512
+ type?: string | undefined;
8513
+ id?: number | undefined;
8514
+ login?: string | undefined;
8515
+ html_url?: string | undefined;
8516
+ node_id?: string | undefined;
8517
+ avatar_url?: string | undefined;
8518
+ } | null | undefined;
8519
+ committer?: {
8520
+ type?: string | undefined;
8521
+ id?: number | undefined;
8522
+ login?: string | undefined;
8523
+ html_url?: string | undefined;
8524
+ node_id?: string | undefined;
8525
+ avatar_url?: string | undefined;
8526
+ } | null | undefined;
8527
+ parents?: {
8528
+ url?: string | undefined;
8529
+ sha?: string | undefined;
8530
+ html_url?: string | undefined;
8531
+ }[] | undefined;
8532
+ commit?: {
8533
+ message?: string | undefined;
8534
+ url?: string | undefined;
8535
+ author?: {
8536
+ date?: string | undefined;
8537
+ name?: string | undefined;
8538
+ email?: string | undefined;
8539
+ } | null | undefined;
8540
+ committer?: {
8541
+ date?: string | undefined;
8542
+ name?: string | undefined;
8543
+ email?: string | undefined;
8544
+ } | null | undefined;
8545
+ tree?: {
8546
+ url?: string | undefined;
8547
+ sha?: string | undefined;
8548
+ } | undefined;
8549
+ comment_count?: number | undefined;
8550
+ } | undefined;
8551
+ html_url?: string | undefined;
8552
+ node_id?: string | undefined;
8553
+ comments_url?: string | undefined;
8554
+ } | undefined;
8555
+ _links?: {
8556
+ html?: string | undefined;
8557
+ self?: string | undefined;
8558
+ } | undefined;
8559
+ protected?: boolean | undefined;
8560
+ protection?: {
8561
+ enabled?: boolean | undefined;
8562
+ required_status_checks?: {
8563
+ strict?: boolean | undefined;
8564
+ enforcement_level?: string | undefined;
8565
+ contexts?: string[] | undefined;
8566
+ } | null | undefined;
8567
+ } | null | undefined;
8568
+ protection_url?: string | undefined;
8569
+ }>>;
8570
+ }, "strip", z.ZodTypeAny, {
8571
+ success: boolean;
8572
+ error?: string | undefined;
8573
+ branch?: {
8574
+ name?: string | undefined;
8575
+ commit?: {
8576
+ url?: string | undefined;
8577
+ sha?: string | undefined;
8578
+ author?: {
8579
+ type?: string | undefined;
8580
+ id?: number | undefined;
8581
+ login?: string | undefined;
8582
+ html_url?: string | undefined;
8583
+ node_id?: string | undefined;
8584
+ avatar_url?: string | undefined;
8585
+ } | null | undefined;
8586
+ committer?: {
8587
+ type?: string | undefined;
8588
+ id?: number | undefined;
8589
+ login?: string | undefined;
8590
+ html_url?: string | undefined;
8591
+ node_id?: string | undefined;
8592
+ avatar_url?: string | undefined;
8593
+ } | null | undefined;
8594
+ parents?: {
8595
+ url?: string | undefined;
8596
+ sha?: string | undefined;
8597
+ html_url?: string | undefined;
8598
+ }[] | undefined;
8599
+ commit?: {
8600
+ message?: string | undefined;
8601
+ url?: string | undefined;
8602
+ author?: {
8603
+ date?: string | undefined;
8604
+ name?: string | undefined;
8605
+ email?: string | undefined;
8606
+ } | null | undefined;
8607
+ committer?: {
8608
+ date?: string | undefined;
8609
+ name?: string | undefined;
8610
+ email?: string | undefined;
8611
+ } | null | undefined;
8612
+ tree?: {
8613
+ url?: string | undefined;
8614
+ sha?: string | undefined;
8615
+ } | undefined;
8616
+ comment_count?: number | undefined;
8617
+ } | undefined;
8618
+ html_url?: string | undefined;
8619
+ node_id?: string | undefined;
8620
+ comments_url?: string | undefined;
8621
+ } | undefined;
8622
+ _links?: {
8623
+ html?: string | undefined;
8624
+ self?: string | undefined;
8625
+ } | undefined;
8626
+ protected?: boolean | undefined;
8627
+ protection?: {
8628
+ enabled?: boolean | undefined;
8629
+ required_status_checks?: {
8630
+ strict?: boolean | undefined;
8631
+ enforcement_level?: string | undefined;
8632
+ contexts?: string[] | undefined;
8633
+ } | null | undefined;
8634
+ } | null | undefined;
8635
+ protection_url?: string | undefined;
8636
+ } | undefined;
8637
+ }, {
8638
+ success: boolean;
8639
+ error?: string | undefined;
8640
+ branch?: {
8641
+ name?: string | undefined;
8642
+ commit?: {
8643
+ url?: string | undefined;
8644
+ sha?: string | undefined;
8645
+ author?: {
8646
+ type?: string | undefined;
8647
+ id?: number | undefined;
8648
+ login?: string | undefined;
8649
+ html_url?: string | undefined;
8650
+ node_id?: string | undefined;
8651
+ avatar_url?: string | undefined;
8652
+ } | null | undefined;
8653
+ committer?: {
8654
+ type?: string | undefined;
8655
+ id?: number | undefined;
8656
+ login?: string | undefined;
8657
+ html_url?: string | undefined;
8658
+ node_id?: string | undefined;
8659
+ avatar_url?: string | undefined;
8660
+ } | null | undefined;
8661
+ parents?: {
8662
+ url?: string | undefined;
8663
+ sha?: string | undefined;
8664
+ html_url?: string | undefined;
8665
+ }[] | undefined;
8666
+ commit?: {
8667
+ message?: string | undefined;
8668
+ url?: string | undefined;
8669
+ author?: {
8670
+ date?: string | undefined;
8671
+ name?: string | undefined;
8672
+ email?: string | undefined;
8673
+ } | null | undefined;
8674
+ committer?: {
8675
+ date?: string | undefined;
8676
+ name?: string | undefined;
8677
+ email?: string | undefined;
8678
+ } | null | undefined;
8679
+ tree?: {
8680
+ url?: string | undefined;
8681
+ sha?: string | undefined;
8682
+ } | undefined;
8683
+ comment_count?: number | undefined;
8684
+ } | undefined;
8685
+ html_url?: string | undefined;
8686
+ node_id?: string | undefined;
8687
+ comments_url?: string | undefined;
8688
+ } | undefined;
8689
+ _links?: {
8690
+ html?: string | undefined;
8691
+ self?: string | undefined;
8692
+ } | undefined;
8693
+ protected?: boolean | undefined;
8694
+ protection?: {
8695
+ enabled?: boolean | undefined;
8696
+ required_status_checks?: {
8697
+ strict?: boolean | undefined;
8698
+ enforcement_level?: string | undefined;
8699
+ contexts?: string[] | undefined;
8700
+ } | null | undefined;
8701
+ } | null | undefined;
8702
+ protection_url?: string | undefined;
8703
+ } | undefined;
8704
+ }>;
8705
+ export type githubGetBranchOutputType = z.infer<typeof githubGetBranchOutputSchema>;
8706
+ export type githubGetBranchFunction = ActionFunction<githubGetBranchParamsType, AuthParamsType, githubGetBranchOutputType>;
8707
+ export declare const githubListCommitsParamsSchema: z.ZodObject<{
8708
+ repositoryOwner: z.ZodString;
8709
+ repositoryName: z.ZodString;
8710
+ branch: z.ZodOptional<z.ZodString>;
8711
+ since: z.ZodOptional<z.ZodString>;
8712
+ until: z.ZodOptional<z.ZodString>;
8713
+ author: z.ZodOptional<z.ZodString>;
8714
+ perPage: z.ZodOptional<z.ZodNumber>;
8715
+ page: z.ZodOptional<z.ZodNumber>;
8716
+ }, "strip", z.ZodTypeAny, {
8717
+ repositoryOwner: string;
8718
+ repositoryName: string;
8719
+ branch?: string | undefined;
8720
+ author?: string | undefined;
8721
+ since?: string | undefined;
8722
+ until?: string | undefined;
8723
+ perPage?: number | undefined;
8724
+ page?: number | undefined;
8725
+ }, {
8726
+ repositoryOwner: string;
8727
+ repositoryName: string;
8728
+ branch?: string | undefined;
8729
+ author?: string | undefined;
8730
+ since?: string | undefined;
8731
+ until?: string | undefined;
8732
+ perPage?: number | undefined;
8733
+ page?: number | undefined;
8734
+ }>;
8735
+ export type githubListCommitsParamsType = z.infer<typeof githubListCommitsParamsSchema>;
8736
+ export declare const githubListCommitsOutputSchema: z.ZodObject<{
8737
+ success: z.ZodBoolean;
8738
+ error: z.ZodOptional<z.ZodString>;
8739
+ commits: z.ZodOptional<z.ZodArray<z.ZodObject<{
8740
+ sha: z.ZodString;
8741
+ url: z.ZodString;
8742
+ htmlUrl: z.ZodString;
8743
+ commit: z.ZodObject<{
8744
+ message: z.ZodString;
8745
+ author: z.ZodObject<{
8746
+ name: z.ZodString;
8747
+ email: z.ZodString;
8748
+ date: z.ZodString;
8749
+ }, "strip", z.ZodTypeAny, {
8750
+ date: string;
8751
+ name: string;
8752
+ email: string;
8753
+ }, {
8754
+ date: string;
8755
+ name: string;
8756
+ email: string;
8757
+ }>;
8758
+ committer: z.ZodObject<{
8759
+ name: z.ZodString;
8760
+ email: z.ZodString;
8761
+ date: z.ZodString;
8762
+ }, "strip", z.ZodTypeAny, {
8763
+ date: string;
8764
+ name: string;
8765
+ email: string;
8766
+ }, {
8767
+ date: string;
8768
+ name: string;
8769
+ email: string;
8770
+ }>;
8771
+ tree: z.ZodObject<{
8772
+ sha: z.ZodString;
8773
+ url: z.ZodString;
8774
+ }, "strip", z.ZodTypeAny, {
8775
+ url: string;
8776
+ sha: string;
8777
+ }, {
8778
+ url: string;
8779
+ sha: string;
8780
+ }>;
8781
+ commentCount: z.ZodOptional<z.ZodNumber>;
8782
+ }, "strip", z.ZodTypeAny, {
8783
+ message: string;
8784
+ author: {
8785
+ date: string;
8786
+ name: string;
8787
+ email: string;
8788
+ };
8789
+ committer: {
8790
+ date: string;
8791
+ name: string;
8792
+ email: string;
8793
+ };
8794
+ tree: {
8795
+ url: string;
8796
+ sha: string;
8797
+ };
8798
+ commentCount?: number | undefined;
8799
+ }, {
8800
+ message: string;
8801
+ author: {
8802
+ date: string;
8803
+ name: string;
8804
+ email: string;
8805
+ };
8806
+ committer: {
8807
+ date: string;
8808
+ name: string;
8809
+ email: string;
8810
+ };
8811
+ tree: {
8812
+ url: string;
8813
+ sha: string;
8814
+ };
8815
+ commentCount?: number | undefined;
8816
+ }>;
8817
+ author: z.ZodNullable<z.ZodObject<{
8818
+ login: z.ZodOptional<z.ZodString>;
8819
+ }, "strip", z.ZodTypeAny, {
8820
+ login?: string | undefined;
8821
+ }, {
8822
+ login?: string | undefined;
8823
+ }>>;
8824
+ parents: z.ZodOptional<z.ZodArray<z.ZodObject<{
8825
+ sha: z.ZodString;
8826
+ url: z.ZodString;
8827
+ htmlUrl: z.ZodString;
8828
+ }, "strip", z.ZodTypeAny, {
8829
+ url: string;
8830
+ htmlUrl: string;
8831
+ sha: string;
8832
+ }, {
8833
+ url: string;
8834
+ htmlUrl: string;
8835
+ sha: string;
8836
+ }>, "many">>;
8837
+ }, "strip", z.ZodTypeAny, {
8838
+ url: string;
8839
+ htmlUrl: string;
8840
+ sha: string;
8841
+ author: {
8842
+ login?: string | undefined;
8843
+ } | null;
8844
+ commit: {
8845
+ message: string;
8846
+ author: {
8847
+ date: string;
8848
+ name: string;
8849
+ email: string;
8850
+ };
8851
+ committer: {
8852
+ date: string;
8853
+ name: string;
8854
+ email: string;
8855
+ };
8856
+ tree: {
8857
+ url: string;
8858
+ sha: string;
8859
+ };
8860
+ commentCount?: number | undefined;
8861
+ };
8862
+ parents?: {
8863
+ url: string;
8864
+ htmlUrl: string;
8865
+ sha: string;
8866
+ }[] | undefined;
8867
+ }, {
8868
+ url: string;
8869
+ htmlUrl: string;
8870
+ sha: string;
8871
+ author: {
8872
+ login?: string | undefined;
8873
+ } | null;
8874
+ commit: {
8875
+ message: string;
8876
+ author: {
8877
+ date: string;
8878
+ name: string;
8879
+ email: string;
8880
+ };
8881
+ committer: {
8882
+ date: string;
8883
+ name: string;
8884
+ email: string;
8885
+ };
8886
+ tree: {
8887
+ url: string;
8888
+ sha: string;
8889
+ };
8890
+ commentCount?: number | undefined;
8891
+ };
8892
+ parents?: {
8893
+ url: string;
8894
+ htmlUrl: string;
8895
+ sha: string;
8896
+ }[] | undefined;
8897
+ }>, "many">>;
8898
+ totalCount: z.ZodOptional<z.ZodNumber>;
8899
+ hasMore: z.ZodOptional<z.ZodBoolean>;
8900
+ }, "strip", z.ZodTypeAny, {
8901
+ success: boolean;
8902
+ error?: string | undefined;
8903
+ commits?: {
8904
+ url: string;
8905
+ htmlUrl: string;
8906
+ sha: string;
8907
+ author: {
8908
+ login?: string | undefined;
8909
+ } | null;
8910
+ commit: {
8911
+ message: string;
8912
+ author: {
8913
+ date: string;
8914
+ name: string;
8915
+ email: string;
8916
+ };
8917
+ committer: {
8918
+ date: string;
8919
+ name: string;
8920
+ email: string;
8921
+ };
8922
+ tree: {
8923
+ url: string;
8924
+ sha: string;
8925
+ };
8926
+ commentCount?: number | undefined;
8927
+ };
8928
+ parents?: {
8929
+ url: string;
8930
+ htmlUrl: string;
8931
+ sha: string;
8932
+ }[] | undefined;
8933
+ }[] | undefined;
8934
+ totalCount?: number | undefined;
8935
+ hasMore?: boolean | undefined;
8936
+ }, {
8937
+ success: boolean;
8938
+ error?: string | undefined;
8939
+ commits?: {
8940
+ url: string;
8941
+ htmlUrl: string;
8942
+ sha: string;
8943
+ author: {
8944
+ login?: string | undefined;
8945
+ } | null;
8946
+ commit: {
8947
+ message: string;
8948
+ author: {
8949
+ date: string;
8950
+ name: string;
8951
+ email: string;
8952
+ };
8953
+ committer: {
8954
+ date: string;
8955
+ name: string;
8956
+ email: string;
8957
+ };
8958
+ tree: {
8959
+ url: string;
8960
+ sha: string;
8961
+ };
8962
+ commentCount?: number | undefined;
8963
+ };
8964
+ parents?: {
8965
+ url: string;
8966
+ htmlUrl: string;
8967
+ sha: string;
8968
+ }[] | undefined;
8969
+ }[] | undefined;
8970
+ totalCount?: number | undefined;
8971
+ hasMore?: boolean | undefined;
8972
+ }>;
8973
+ export type githubListCommitsOutputType = z.infer<typeof githubListCommitsOutputSchema>;
8974
+ export type githubListCommitsFunction = ActionFunction<githubListCommitsParamsType, AuthParamsType, githubListCommitsOutputType>;
7697
8975
  export declare const notionSearchByTitleParamsSchema: z.ZodObject<{
7698
8976
  query: z.ZodString;
7699
8977
  }, "strip", z.ZodTypeAny, {