@credal/actions 0.2.107 → 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 (48) hide show
  1. package/dist/actions/actionMapper.js +7 -1
  2. package/dist/actions/autogen/templates.d.ts +1 -0
  3. package/dist/actions/autogen/templates.js +272 -0
  4. package/dist/actions/autogen/types.d.ts +574 -0
  5. package/dist/actions/autogen/types.js +116 -0
  6. package/dist/actions/groups.js +11 -1
  7. package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
  8. package/dist/actions/providers/confluence/updatePage.js +46 -0
  9. package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
  10. package/dist/actions/providers/credal/callCopilot.js +36 -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/google-oauth/editAGoogleCalendarEvent.js +9 -1
  18. package/dist/actions/providers/google-oauth/getDriveContentById.d.ts +3 -0
  19. package/dist/actions/providers/google-oauth/getDriveContentById.js +161 -0
  20. package/dist/actions/providers/google-oauth/listCalendarEvents.js +3 -0
  21. package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.js +2 -0
  22. package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.d.ts +3 -0
  23. package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.js +47 -0
  24. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.d.ts +3 -0
  25. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.js +110 -0
  26. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByQuery.d.ts +3 -0
  27. package/dist/actions/providers/google-oauth/searchDriveAndGetContentByQuery.js +78 -0
  28. package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.d.ts +15 -0
  29. package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.js +129 -0
  30. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  31. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  32. package/dist/actions/providers/math/index.d.ts +1 -0
  33. package/dist/actions/providers/math/index.js +37 -0
  34. package/dist/actions/providers/slack/index.d.ts +1 -0
  35. package/dist/actions/providers/slack/index.js +37 -0
  36. package/dist/actions/providers/slack/listConversations.d.ts +3 -0
  37. package/dist/actions/providers/slack/listConversations.js +41 -0
  38. package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.d.ts +3 -0
  39. package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.js +154 -0
  40. package/dist/actions/providers/x/scrapeTweetDataWithNitter.d.ts +3 -0
  41. package/dist/actions/providers/x/scrapeTweetDataWithNitter.js +45 -0
  42. package/dist/utils/datetime.d.ts +1 -0
  43. package/dist/utils/datetime.js +7 -0
  44. package/package.json +1 -1
  45. package/dist/actions/providers/github/fetchFile.d.ts +0 -3
  46. package/dist/actions/providers/github/fetchFile.js +0 -131
  47. package/dist/actions/providers/github/getContents.d.ts +0 -3
  48. package/dist/actions/providers/github/getContents.js +0 -41
@@ -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>;
@@ -8130,6 +8146,564 @@ export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
8130
8146
  }>;
8131
8147
  export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
8132
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>;
8133
8707
  export declare const githubListCommitsParamsSchema: z.ZodObject<{
8134
8708
  repositoryOwner: z.ZodString;
8135
8709
  repositoryName: z.ZodString;