eas-cli 0.49.0 → 0.52.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 (60) hide show
  1. package/README.md +44 -43
  2. package/build/build/build.d.ts +6 -2
  3. package/build/build/build.js +191 -104
  4. package/build/build/ios/build.js +3 -1
  5. package/build/build/ios/credentials.js +2 -6
  6. package/build/build/local.js +1 -1
  7. package/build/build/runBuildAndSubmit.js +5 -1
  8. package/build/commands/update/index.d.ts +1 -0
  9. package/build/commands/update/index.js +27 -3
  10. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +24 -9
  11. package/build/credentials/context.js +5 -0
  12. package/build/credentials/ios/IosCredentialsProvider.d.ts +0 -2
  13. package/build/credentials/ios/IosCredentialsProvider.js +0 -1
  14. package/build/credentials/ios/actions/AscApiKeyUtils.js +0 -1
  15. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
  16. package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
  17. package/build/credentials/ios/actions/SetUpBuildCredentials.d.ts +0 -2
  18. package/build/credentials/ios/actions/SetUpBuildCredentials.js +3 -1
  19. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +2 -2
  20. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +2 -2
  21. package/build/credentials/ios/appstore/AppStoreApi.d.ts +5 -1
  22. package/build/credentials/ios/appstore/AppStoreApi.js +38 -15
  23. package/build/credentials/ios/appstore/ascApiKey.d.ts +21 -5
  24. package/build/credentials/ios/appstore/ascApiKey.js +28 -12
  25. package/build/credentials/ios/appstore/authenticate.d.ts +9 -18
  26. package/build/credentials/ios/appstore/authenticate.js +43 -3
  27. package/build/credentials/ios/appstore/authenticateTypes.d.ts +42 -0
  28. package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
  29. package/build/credentials/ios/appstore/contractMessages.d.ts +3 -0
  30. package/build/credentials/ios/appstore/contractMessages.js +12 -0
  31. package/build/credentials/ios/appstore/distributionCertificate.d.ts +1 -1
  32. package/build/credentials/ios/appstore/ensureAppExists.d.ts +2 -2
  33. package/build/credentials/ios/appstore/ensureAppExists.js +12 -5
  34. package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
  35. package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +1 -1
  36. package/build/credentials/ios/appstore/pushKey.d.ts +4 -4
  37. package/build/credentials/ios/appstore/pushKey.js +8 -8
  38. package/build/credentials/ios/appstore/resolveCredentials.d.ts +10 -1
  39. package/build/credentials/ios/appstore/resolveCredentials.js +125 -3
  40. package/build/credentials/ios/types.d.ts +2 -0
  41. package/build/credentials/ios/utils/printCredentials.d.ts +1 -1
  42. package/build/credentials/manager/ManageIos.js +8 -7
  43. package/build/graphql/generated.d.ts +73 -0
  44. package/build/graphql/generated.js +16 -1
  45. package/build/graphql/types/Build.js +4 -0
  46. package/build/project/ios/entitlements.d.ts +8 -0
  47. package/build/{credentials/ios/appstore → project/ios}/entitlements.js +7 -19
  48. package/build/project/ios/target.d.ts +9 -3
  49. package/build/project/ios/target.js +68 -47
  50. package/build/project/publish.js +2 -1
  51. package/build/submit/android/ServiceAccountSource.js +1 -1
  52. package/build/submit/ios/AppProduce.d.ts +0 -1
  53. package/build/submit/ios/AppProduce.js +5 -6
  54. package/build/submit/ios/AppSpecificPasswordSource.js +2 -2
  55. package/build/submit/utils/errors.js +6 -2
  56. package/build/utils/code-signing.d.ts +0 -5
  57. package/build/utils/code-signing.js +16 -65
  58. package/oclif.manifest.json +1 -1
  59. package/package.json +11 -11
  60. package/build/credentials/ios/appstore/entitlements.d.ts +0 -4
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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.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.52.0/packages/eas-cli/src/commands/submit.ts)_
812
812
 
813
813
  ## `eas update`
814
814
 
@@ -817,7 +817,7 @@ publish an update group
817
817
  ```
818
818
  USAGE
819
819
  $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
820
- [--group <value> | | ] [-p android|ios|all] [--json] [--auto] [--private-key-path <value>]
820
+ [--group <value> | | ] [-p android|ios|all] [--json] [--auto] [--private-key-path <value>] [--non-interactive]
821
821
 
822
822
  FLAGS
823
823
  -p, --platform=(android|ios|all) [default: all]
@@ -827,6 +827,7 @@ FLAGS
827
827
  --input-dir=<value> [default: dist] Location of the bundle
828
828
  --json Enable JSON output, non-JSON messages will be printed to stderr
829
829
  --message=<value> A short message describing the update
830
+ --non-interactive Run command in non-interactive mode
830
831
  --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
831
832
  expo-updates' configuration. Defaults to a file named "private-key.pem" in the
832
833
  certificate's directory.
@@ -837,7 +838,7 @@ DESCRIPTION
837
838
  publish an update group
838
839
  ```
839
840
 
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)_
841
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/update/index.ts)_
841
842
 
842
843
  ## `eas update:configure`
843
844
 
@@ -854,7 +855,7 @@ DESCRIPTION
854
855
  configure the project to support EAS Update
855
856
  ```
856
857
 
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)_
858
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/update/configure.ts)_
858
859
 
859
860
  ## `eas update:delete GROUPID`
860
861
 
@@ -874,7 +875,7 @@ DESCRIPTION
874
875
  delete all the updates in an update group
875
876
  ```
876
877
 
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)_
878
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/update/delete.ts)_
878
879
 
879
880
  ## `eas update:list`
880
881
 
@@ -893,7 +894,7 @@ DESCRIPTION
893
894
  view the recent updates for a branch
894
895
  ```
895
896
 
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)_
897
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/update/list.ts)_
897
898
 
898
899
  ## `eas update:view GROUPID`
899
900
 
@@ -913,7 +914,7 @@ DESCRIPTION
913
914
  update group details
914
915
  ```
915
916
 
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)_
917
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/update/view.ts)_
917
918
 
918
919
  ## `eas webhook:create`
919
920
 
@@ -933,7 +934,7 @@ DESCRIPTION
933
934
  create a webhook
934
935
  ```
935
936
 
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)_
937
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/webhook/create.ts)_
937
938
 
938
939
  ## `eas webhook:delete [ID]`
939
940
 
@@ -950,7 +951,7 @@ DESCRIPTION
950
951
  delete a webhook
951
952
  ```
952
953
 
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)_
954
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/webhook/delete.ts)_
954
955
 
955
956
  ## `eas webhook:list`
956
957
 
@@ -967,7 +968,7 @@ DESCRIPTION
967
968
  list webhooks
968
969
  ```
969
970
 
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)_
971
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/webhook/list.ts)_
971
972
 
972
973
  ## `eas webhook:update`
973
974
 
@@ -988,7 +989,7 @@ DESCRIPTION
988
989
  update a webhook
989
990
  ```
990
991
 
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)_
992
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/webhook/update.ts)_
992
993
 
993
994
  ## `eas webhook:view ID`
994
995
 
@@ -1005,7 +1006,7 @@ DESCRIPTION
1005
1006
  view a webhook
1006
1007
  ```
1007
1008
 
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)_
1009
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.52.0/packages/eas-cli/src/commands/webhook/view.ts)_
1009
1010
 
1010
1011
  ## `eas whoami`
1011
1012
 
@@ -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 {};