eas-cli 0.49.0 → 0.50.0

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 (37) hide show
  1. package/README.md +42 -42
  2. package/build/build/build.d.ts +6 -2
  3. package/build/build/build.js +191 -104
  4. package/build/build/runBuildAndSubmit.js +5 -1
  5. package/build/credentials/context.js +5 -0
  6. package/build/credentials/ios/actions/AscApiKeyUtils.js +0 -1
  7. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
  8. package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
  9. package/build/credentials/ios/appstore/AppStoreApi.d.ts +5 -1
  10. package/build/credentials/ios/appstore/AppStoreApi.js +38 -15
  11. package/build/credentials/ios/appstore/ascApiKey.d.ts +21 -5
  12. package/build/credentials/ios/appstore/ascApiKey.js +28 -12
  13. package/build/credentials/ios/appstore/authenticate.d.ts +9 -18
  14. package/build/credentials/ios/appstore/authenticate.js +43 -3
  15. package/build/credentials/ios/appstore/authenticateTypes.d.ts +42 -0
  16. package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
  17. package/build/credentials/ios/appstore/contractMessages.d.ts +3 -0
  18. package/build/credentials/ios/appstore/contractMessages.js +12 -0
  19. package/build/credentials/ios/appstore/distributionCertificate.d.ts +1 -1
  20. package/build/credentials/ios/appstore/ensureAppExists.d.ts +2 -2
  21. package/build/credentials/ios/appstore/ensureAppExists.js +12 -5
  22. package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
  23. package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +1 -1
  24. package/build/credentials/ios/appstore/pushKey.d.ts +4 -4
  25. package/build/credentials/ios/appstore/pushKey.js +8 -8
  26. package/build/credentials/ios/appstore/resolveCredentials.d.ts +10 -1
  27. package/build/credentials/ios/appstore/resolveCredentials.js +125 -3
  28. package/build/graphql/generated.d.ts +73 -0
  29. package/build/graphql/generated.js +16 -1
  30. package/build/graphql/types/Build.js +4 -0
  31. package/build/submit/ios/AppProduce.d.ts +0 -1
  32. package/build/submit/ios/AppProduce.js +5 -6
  33. package/build/submit/ios/AppSpecificPasswordSource.js +2 -2
  34. package/build/utils/code-signing.d.ts +0 -5
  35. package/build/utils/code-signing.js +5 -51
  36. package/oclif.manifest.json +1 -1
  37. package/package.json +6 -6
package/README.md CHANGED
@@ -98,7 +98,7 @@ ALIASES
98
98
  $ eas login
99
99
  ```
100
100
 
101
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/account/login.ts)_
101
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/login.ts)_
102
102
 
103
103
  ## `eas account:logout`
104
104
 
@@ -115,7 +115,7 @@ ALIASES
115
115
  $ eas logout
116
116
  ```
117
117
 
118
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/account/logout.ts)_
118
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/logout.ts)_
119
119
 
120
120
  ## `eas account:view`
121
121
 
@@ -132,7 +132,7 @@ ALIASES
132
132
  $ eas whoami
133
133
  ```
134
134
 
135
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/account/view.ts)_
135
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/view.ts)_
136
136
 
137
137
  ## `eas analytics [STATUS]`
138
138
 
@@ -146,7 +146,7 @@ DESCRIPTION
146
146
  display or change analytics settings
147
147
  ```
148
148
 
149
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/analytics.ts)_
149
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/analytics.ts)_
150
150
 
151
151
  ## `eas autocomplete [SHELL]`
152
152
 
@@ -195,7 +195,7 @@ DESCRIPTION
195
195
  create a branch
196
196
  ```
197
197
 
198
- _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/branch/create.ts)_
198
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/create.ts)_
199
199
 
200
200
  ## `eas branch:delete [NAME]`
201
201
 
@@ -215,7 +215,7 @@ DESCRIPTION
215
215
  delete a branch
216
216
  ```
217
217
 
218
- _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/branch/delete.ts)_
218
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/delete.ts)_
219
219
 
220
220
  ## `eas branch:list`
221
221
 
@@ -232,7 +232,7 @@ DESCRIPTION
232
232
  list all branches
233
233
  ```
234
234
 
235
- _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/branch/list.ts)_
235
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/list.ts)_
236
236
 
237
237
  ## `eas branch:rename`
238
238
 
@@ -251,7 +251,7 @@ DESCRIPTION
251
251
  rename a branch
252
252
  ```
253
253
 
254
- _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/branch/rename.ts)_
254
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/rename.ts)_
255
255
 
256
256
  ## `eas branch:view [NAME]`
257
257
 
@@ -271,7 +271,7 @@ DESCRIPTION
271
271
  view a branch
272
272
  ```
273
273
 
274
- _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/branch/view.ts)_
274
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/view.ts)_
275
275
 
276
276
  ## `eas build`
277
277
 
@@ -300,7 +300,7 @@ DESCRIPTION
300
300
  start a build
301
301
  ```
302
302
 
303
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/index.ts)_
303
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/index.ts)_
304
304
 
305
305
  ## `eas build:cancel [BUILD_ID]`
306
306
 
@@ -314,7 +314,7 @@ DESCRIPTION
314
314
  cancel a build
315
315
  ```
316
316
 
317
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/cancel.ts)_
317
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/cancel.ts)_
318
318
 
319
319
  ## `eas build:configure`
320
320
 
@@ -331,7 +331,7 @@ DESCRIPTION
331
331
  configure the project to support EAS Build
332
332
  ```
333
333
 
334
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/configure.ts)_
334
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/configure.ts)_
335
335
 
336
336
  ## `eas build:inspect`
337
337
 
@@ -366,7 +366,7 @@ DESCRIPTION
366
366
  inspect the state of the project at specific build stages, useful for troubleshooting
367
367
  ```
368
368
 
369
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/inspect.ts)_
369
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/inspect.ts)_
370
370
 
371
371
  ## `eas build:list`
372
372
 
@@ -399,7 +399,7 @@ DESCRIPTION
399
399
  list all builds for your project
400
400
  ```
401
401
 
402
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/list.ts)_
402
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/list.ts)_
403
403
 
404
404
  ## `eas build:submit`
405
405
 
@@ -444,7 +444,7 @@ DESCRIPTION
444
444
  view a build for your project
445
445
  ```
446
446
 
447
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/build/view.ts)_
447
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/view.ts)_
448
448
 
449
449
  ## `eas channel:create [NAME]`
450
450
 
@@ -464,7 +464,7 @@ DESCRIPTION
464
464
  create a channel
465
465
  ```
466
466
 
467
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/channel/create.ts)_
467
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/create.ts)_
468
468
 
469
469
  ## `eas channel:edit [NAME]`
470
470
 
@@ -485,7 +485,7 @@ DESCRIPTION
485
485
  point a channel at a new branch
486
486
  ```
487
487
 
488
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/channel/edit.ts)_
488
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/edit.ts)_
489
489
 
490
490
  ## `eas channel:list`
491
491
 
@@ -502,7 +502,7 @@ DESCRIPTION
502
502
  list all channels
503
503
  ```
504
504
 
505
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/channel/list.ts)_
505
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/list.ts)_
506
506
 
507
507
  ## `eas channel:view [NAME]`
508
508
 
@@ -522,7 +522,7 @@ DESCRIPTION
522
522
  view a channel
523
523
  ```
524
524
 
525
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/channel/view.ts)_
525
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/view.ts)_
526
526
 
527
527
  ## `eas config`
528
528
 
@@ -540,7 +540,7 @@ DESCRIPTION
540
540
  display project configuration (app.json + eas.json)
541
541
  ```
542
542
 
543
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/config.ts)_
543
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/config.ts)_
544
544
 
545
545
  ## `eas credentials`
546
546
 
@@ -554,7 +554,7 @@ DESCRIPTION
554
554
  manage credentials
555
555
  ```
556
556
 
557
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/credentials.ts)_
557
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/credentials.ts)_
558
558
 
559
559
  ## `eas device:create`
560
560
 
@@ -568,7 +568,7 @@ DESCRIPTION
568
568
  register new Apple Devices to use for internal distribution
569
569
  ```
570
570
 
571
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/device/create.ts)_
571
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/create.ts)_
572
572
 
573
573
  ## `eas device:delete`
574
574
 
@@ -586,7 +586,7 @@ DESCRIPTION
586
586
  remove a registered device from your account
587
587
  ```
588
588
 
589
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/device/delete.ts)_
589
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/delete.ts)_
590
590
 
591
591
  ## `eas device:list`
592
592
 
@@ -603,7 +603,7 @@ DESCRIPTION
603
603
  list all registered devices for your account
604
604
  ```
605
605
 
606
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/device/list.ts)_
606
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/list.ts)_
607
607
 
608
608
  ## `eas device:view [UDID]`
609
609
 
@@ -617,7 +617,7 @@ DESCRIPTION
617
617
  view a device for your project
618
618
  ```
619
619
 
620
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/device/view.ts)_
620
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/view.ts)_
621
621
 
622
622
  ## `eas diagnostics`
623
623
 
@@ -631,7 +631,7 @@ DESCRIPTION
631
631
  display environment info
632
632
  ```
633
633
 
634
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/diagnostics.ts)_
634
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/diagnostics.ts)_
635
635
 
636
636
  ## `eas help [COMMAND]`
637
637
 
@@ -710,7 +710,7 @@ DESCRIPTION
710
710
  information about the current project
711
711
  ```
712
712
 
713
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/project/info.ts)_
713
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/project/info.ts)_
714
714
 
715
715
  ## `eas project:init`
716
716
 
@@ -727,7 +727,7 @@ ALIASES
727
727
  $ eas init
728
728
  ```
729
729
 
730
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/project/init.ts)_
730
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/project/init.ts)_
731
731
 
732
732
  ## `eas secret:create`
733
733
 
@@ -747,7 +747,7 @@ DESCRIPTION
747
747
  create an environment secret on the current project or owner account
748
748
  ```
749
749
 
750
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/secret/create.ts)_
750
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/create.ts)_
751
751
 
752
752
  ## `eas secret:delete`
753
753
 
@@ -764,7 +764,7 @@ DESCRIPTION
764
764
  delete an environment secret by ID
765
765
  ```
766
766
 
767
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/secret/delete.ts)_
767
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/delete.ts)_
768
768
 
769
769
  ## `eas secret:list`
770
770
 
@@ -778,7 +778,7 @@ DESCRIPTION
778
778
  list environment secrets available for your current app
779
779
  ```
780
780
 
781
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/secret/list.ts)_
781
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/list.ts)_
782
782
 
783
783
  ## `eas submit`
784
784
 
@@ -808,7 +808,7 @@ ALIASES
808
808
  $ eas build:submit
809
809
  ```
810
810
 
811
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/submit.ts)_
811
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/submit.ts)_
812
812
 
813
813
  ## `eas update`
814
814
 
@@ -837,7 +837,7 @@ DESCRIPTION
837
837
  publish an update group
838
838
  ```
839
839
 
840
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/update/index.ts)_
840
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/index.ts)_
841
841
 
842
842
  ## `eas update:configure`
843
843
 
@@ -854,7 +854,7 @@ DESCRIPTION
854
854
  configure the project to support EAS Update
855
855
  ```
856
856
 
857
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/update/configure.ts)_
857
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/configure.ts)_
858
858
 
859
859
  ## `eas update:delete GROUPID`
860
860
 
@@ -874,7 +874,7 @@ DESCRIPTION
874
874
  delete all the updates in an update group
875
875
  ```
876
876
 
877
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/update/delete.ts)_
877
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/delete.ts)_
878
878
 
879
879
  ## `eas update:list`
880
880
 
@@ -893,7 +893,7 @@ DESCRIPTION
893
893
  view the recent updates for a branch
894
894
  ```
895
895
 
896
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/update/list.ts)_
896
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/list.ts)_
897
897
 
898
898
  ## `eas update:view GROUPID`
899
899
 
@@ -913,7 +913,7 @@ DESCRIPTION
913
913
  update group details
914
914
  ```
915
915
 
916
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/update/view.ts)_
916
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/view.ts)_
917
917
 
918
918
  ## `eas webhook:create`
919
919
 
@@ -933,7 +933,7 @@ DESCRIPTION
933
933
  create a webhook
934
934
  ```
935
935
 
936
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/webhook/create.ts)_
936
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/create.ts)_
937
937
 
938
938
  ## `eas webhook:delete [ID]`
939
939
 
@@ -950,7 +950,7 @@ DESCRIPTION
950
950
  delete a webhook
951
951
  ```
952
952
 
953
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/webhook/delete.ts)_
953
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/delete.ts)_
954
954
 
955
955
  ## `eas webhook:list`
956
956
 
@@ -967,7 +967,7 @@ DESCRIPTION
967
967
  list webhooks
968
968
  ```
969
969
 
970
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/webhook/list.ts)_
970
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/list.ts)_
971
971
 
972
972
  ## `eas webhook:update`
973
973
 
@@ -988,7 +988,7 @@ DESCRIPTION
988
988
  update a webhook
989
989
  ```
990
990
 
991
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/webhook/update.ts)_
991
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/update.ts)_
992
992
 
993
993
  ## `eas webhook:view ID`
994
994
 
@@ -1005,7 +1005,7 @@ DESCRIPTION
1005
1005
  view a webhook
1006
1006
  ```
1007
1007
 
1008
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.49.0/packages/eas-cli/src/commands/webhook/view.ts)_
1008
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/view.ts)_
1009
1009
 
1010
1010
  ## `eas whoami`
1011
1011
 
@@ -20,8 +20,12 @@ interface Builder<TPlatform extends Platform, Credentials, TJob extends Job> {
20
20
  }
21
21
  export declare type BuildRequestSender = () => Promise<BuildFragment | undefined>;
22
22
  export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends Job>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
23
- export declare function waitForBuildEndAsync(buildIds: string[], { timeoutSec, intervalSec }?: {
23
+ declare type MaybeBuildFragment = BuildFragment | null;
24
+ export declare function waitForBuildEndAsync({ buildIds, accountName }: {
25
+ buildIds: string[];
26
+ accountName: string;
27
+ }, { timeoutSec, intervalSec, }?: {
24
28
  timeoutSec?: number | undefined;
25
29
  intervalSec?: number | undefined;
26
- }): Promise<(BuildFragment | null)[]>;
30
+ }): Promise<MaybeBuildFragment[]>;
27
31
  export {};