eas-cli 0.48.2 → 0.51.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 (55) hide show
  1. package/README.md +137 -43
  2. package/build/build/build.d.ts +6 -2
  3. package/build/build/build.js +191 -104
  4. package/build/build/local.js +1 -1
  5. package/build/build/runBuildAndSubmit.js +5 -1
  6. package/build/build/utils/printBuildInfo.js +1 -2
  7. package/build/commands/update/index.d.ts +1 -0
  8. package/build/commands/update/index.js +27 -3
  9. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +24 -9
  10. package/build/credentials/context.js +5 -0
  11. package/build/credentials/ios/actions/AscApiKeyUtils.js +0 -1
  12. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
  13. package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
  14. package/build/credentials/ios/appstore/AppStoreApi.d.ts +5 -1
  15. package/build/credentials/ios/appstore/AppStoreApi.js +38 -15
  16. package/build/credentials/ios/appstore/ascApiKey.d.ts +21 -5
  17. package/build/credentials/ios/appstore/ascApiKey.js +28 -12
  18. package/build/credentials/ios/appstore/authenticate.d.ts +9 -18
  19. package/build/credentials/ios/appstore/authenticate.js +43 -3
  20. package/build/credentials/ios/appstore/authenticateTypes.d.ts +42 -0
  21. package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
  22. package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +2 -0
  23. package/build/credentials/ios/appstore/capabilityIdentifiers.js +9 -0
  24. package/build/credentials/ios/appstore/contractMessages.d.ts +3 -0
  25. package/build/credentials/ios/appstore/contractMessages.js +12 -0
  26. package/build/credentials/ios/appstore/distributionCertificate.d.ts +1 -1
  27. package/build/credentials/ios/appstore/ensureAppExists.d.ts +2 -2
  28. package/build/credentials/ios/appstore/ensureAppExists.js +12 -5
  29. package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
  30. package/build/credentials/ios/appstore/provisioningProfile.js +6 -0
  31. package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +1 -1
  32. package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +17 -2
  33. package/build/credentials/ios/appstore/pushKey.d.ts +16 -4
  34. package/build/credentials/ios/appstore/pushKey.js +20 -8
  35. package/build/credentials/ios/appstore/resolveCredentials.d.ts +10 -1
  36. package/build/credentials/ios/appstore/resolveCredentials.js +125 -3
  37. package/build/credentials/ios/utils/authType.d.ts +4 -0
  38. package/build/credentials/ios/utils/authType.js +8 -0
  39. package/build/fetch.d.ts +1 -1
  40. package/build/fetch.js +10 -7
  41. package/build/graphql/client.js +1 -1
  42. package/build/graphql/generated.d.ts +73 -0
  43. package/build/graphql/generated.js +16 -1
  44. package/build/graphql/types/Build.js +4 -0
  45. package/build/project/ios/target.js +37 -0
  46. package/build/project/publish.js +2 -1
  47. package/build/submit/android/ServiceAccountSource.js +1 -1
  48. package/build/submit/ios/AppProduce.d.ts +0 -1
  49. package/build/submit/ios/AppProduce.js +5 -6
  50. package/build/submit/ios/AppSpecificPasswordSource.js +2 -2
  51. package/build/submit/utils/errors.js +6 -2
  52. package/build/utils/code-signing.d.ts +0 -5
  53. package/build/utils/code-signing.js +16 -65
  54. package/oclif.manifest.json +1 -1
  55. package/package.json +14 -14
package/README.md CHANGED
@@ -48,6 +48,7 @@ eas --help COMMAND
48
48
  * [`eas build:configure`](#eas-buildconfigure)
49
49
  * [`eas build:inspect`](#eas-buildinspect)
50
50
  * [`eas build:list`](#eas-buildlist)
51
+ * [`eas build:submit`](#eas-buildsubmit)
51
52
  * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
52
53
  * [`eas channel:create [NAME]`](#eas-channelcreate-name)
53
54
  * [`eas channel:edit [NAME]`](#eas-channeledit-name)
@@ -61,6 +62,9 @@ eas --help COMMAND
61
62
  * [`eas device:view [UDID]`](#eas-deviceview-udid)
62
63
  * [`eas diagnostics`](#eas-diagnostics)
63
64
  * [`eas help [COMMAND]`](#eas-help-command)
65
+ * [`eas init`](#eas-init)
66
+ * [`eas login`](#eas-login)
67
+ * [`eas logout`](#eas-logout)
64
68
  * [`eas project:info`](#eas-projectinfo)
65
69
  * [`eas project:init`](#eas-projectinit)
66
70
  * [`eas secret:create`](#eas-secretcreate)
@@ -77,6 +81,7 @@ eas --help COMMAND
77
81
  * [`eas webhook:list`](#eas-webhooklist)
78
82
  * [`eas webhook:update`](#eas-webhookupdate)
79
83
  * [`eas webhook:view ID`](#eas-webhookview-id)
84
+ * [`eas whoami`](#eas-whoami)
80
85
 
81
86
  ## `eas account:login`
82
87
 
@@ -93,7 +98,7 @@ ALIASES
93
98
  $ eas login
94
99
  ```
95
100
 
96
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/account/login.ts)_
101
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/account/login.ts)_
97
102
 
98
103
  ## `eas account:logout`
99
104
 
@@ -110,7 +115,7 @@ ALIASES
110
115
  $ eas logout
111
116
  ```
112
117
 
113
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/account/logout.ts)_
118
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/account/logout.ts)_
114
119
 
115
120
  ## `eas account:view`
116
121
 
@@ -127,7 +132,7 @@ ALIASES
127
132
  $ eas whoami
128
133
  ```
129
134
 
130
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/account/view.ts)_
135
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/account/view.ts)_
131
136
 
132
137
  ## `eas analytics [STATUS]`
133
138
 
@@ -141,7 +146,7 @@ DESCRIPTION
141
146
  display or change analytics settings
142
147
  ```
143
148
 
144
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/analytics.ts)_
149
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/analytics.ts)_
145
150
 
146
151
  ## `eas autocomplete [SHELL]`
147
152
 
@@ -190,7 +195,7 @@ DESCRIPTION
190
195
  create a branch
191
196
  ```
192
197
 
193
- _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/branch/create.ts)_
198
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/branch/create.ts)_
194
199
 
195
200
  ## `eas branch:delete [NAME]`
196
201
 
@@ -210,7 +215,7 @@ DESCRIPTION
210
215
  delete a branch
211
216
  ```
212
217
 
213
- _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/branch/delete.ts)_
218
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/branch/delete.ts)_
214
219
 
215
220
  ## `eas branch:list`
216
221
 
@@ -227,7 +232,7 @@ DESCRIPTION
227
232
  list all branches
228
233
  ```
229
234
 
230
- _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/branch/list.ts)_
235
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/branch/list.ts)_
231
236
 
232
237
  ## `eas branch:rename`
233
238
 
@@ -246,7 +251,7 @@ DESCRIPTION
246
251
  rename a branch
247
252
  ```
248
253
 
249
- _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/branch/rename.ts)_
254
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/branch/rename.ts)_
250
255
 
251
256
  ## `eas branch:view [NAME]`
252
257
 
@@ -266,7 +271,7 @@ DESCRIPTION
266
271
  view a branch
267
272
  ```
268
273
 
269
- _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/branch/view.ts)_
274
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/branch/view.ts)_
270
275
 
271
276
  ## `eas build`
272
277
 
@@ -295,7 +300,7 @@ DESCRIPTION
295
300
  start a build
296
301
  ```
297
302
 
298
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/index.ts)_
303
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/index.ts)_
299
304
 
300
305
  ## `eas build:cancel [BUILD_ID]`
301
306
 
@@ -309,7 +314,7 @@ DESCRIPTION
309
314
  cancel a build
310
315
  ```
311
316
 
312
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/cancel.ts)_
317
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/cancel.ts)_
313
318
 
314
319
  ## `eas build:configure`
315
320
 
@@ -326,7 +331,7 @@ DESCRIPTION
326
331
  configure the project to support EAS Build
327
332
  ```
328
333
 
329
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/configure.ts)_
334
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/configure.ts)_
330
335
 
331
336
  ## `eas build:inspect`
332
337
 
@@ -361,7 +366,7 @@ DESCRIPTION
361
366
  inspect the state of the project at specific build stages, useful for troubleshooting
362
367
  ```
363
368
 
364
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/inspect.ts)_
369
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/inspect.ts)_
365
370
 
366
371
  ## `eas build:list`
367
372
 
@@ -394,7 +399,35 @@ DESCRIPTION
394
399
  list all builds for your project
395
400
  ```
396
401
 
397
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/list.ts)_
402
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/list.ts)_
403
+
404
+ ## `eas build:submit`
405
+
406
+ submit app binary to App Store and/or Play Store
407
+
408
+ ```
409
+ USAGE
410
+ $ eas build:submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
411
+ <value>] [--verbose] [--wait] [--non-interactive]
412
+
413
+ FLAGS
414
+ -p, --platform=(android|ios|all)
415
+ --id=<value> ID of the build to submit
416
+ --latest Submit the latest build for specified platform
417
+ --non-interactive Run command in non-interactive mode
418
+ --path=<value> Path to the .apk/.aab/.ipa file
419
+ --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
420
+ eas.json.
421
+ --url=<value> App archive url
422
+ --verbose Always print logs from Submission Service
423
+ --[no-]wait Wait for submission to complete
424
+
425
+ DESCRIPTION
426
+ submit app binary to App Store and/or Play Store
427
+
428
+ ALIASES
429
+ $ eas build:submit
430
+ ```
398
431
 
399
432
  ## `eas build:view [BUILD_ID]`
400
433
 
@@ -411,7 +444,7 @@ DESCRIPTION
411
444
  view a build for your project
412
445
  ```
413
446
 
414
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/build/view.ts)_
447
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/build/view.ts)_
415
448
 
416
449
  ## `eas channel:create [NAME]`
417
450
 
@@ -431,7 +464,7 @@ DESCRIPTION
431
464
  create a channel
432
465
  ```
433
466
 
434
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/channel/create.ts)_
467
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/channel/create.ts)_
435
468
 
436
469
  ## `eas channel:edit [NAME]`
437
470
 
@@ -452,7 +485,7 @@ DESCRIPTION
452
485
  point a channel at a new branch
453
486
  ```
454
487
 
455
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/channel/edit.ts)_
488
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/channel/edit.ts)_
456
489
 
457
490
  ## `eas channel:list`
458
491
 
@@ -469,7 +502,7 @@ DESCRIPTION
469
502
  list all channels
470
503
  ```
471
504
 
472
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/channel/list.ts)_
505
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/channel/list.ts)_
473
506
 
474
507
  ## `eas channel:view [NAME]`
475
508
 
@@ -489,7 +522,7 @@ DESCRIPTION
489
522
  view a channel
490
523
  ```
491
524
 
492
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/channel/view.ts)_
525
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/channel/view.ts)_
493
526
 
494
527
  ## `eas config`
495
528
 
@@ -507,7 +540,7 @@ DESCRIPTION
507
540
  display project configuration (app.json + eas.json)
508
541
  ```
509
542
 
510
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/config.ts)_
543
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/config.ts)_
511
544
 
512
545
  ## `eas credentials`
513
546
 
@@ -521,7 +554,7 @@ DESCRIPTION
521
554
  manage credentials
522
555
  ```
523
556
 
524
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/credentials.ts)_
557
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/credentials.ts)_
525
558
 
526
559
  ## `eas device:create`
527
560
 
@@ -535,7 +568,7 @@ DESCRIPTION
535
568
  register new Apple Devices to use for internal distribution
536
569
  ```
537
570
 
538
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/device/create.ts)_
571
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/device/create.ts)_
539
572
 
540
573
  ## `eas device:delete`
541
574
 
@@ -553,7 +586,7 @@ DESCRIPTION
553
586
  remove a registered device from your account
554
587
  ```
555
588
 
556
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/device/delete.ts)_
589
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/device/delete.ts)_
557
590
 
558
591
  ## `eas device:list`
559
592
 
@@ -570,7 +603,7 @@ DESCRIPTION
570
603
  list all registered devices for your account
571
604
  ```
572
605
 
573
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/device/list.ts)_
606
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/device/list.ts)_
574
607
 
575
608
  ## `eas device:view [UDID]`
576
609
 
@@ -584,7 +617,7 @@ DESCRIPTION
584
617
  view a device for your project
585
618
  ```
586
619
 
587
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/device/view.ts)_
620
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/device/view.ts)_
588
621
 
589
622
  ## `eas diagnostics`
590
623
 
@@ -598,7 +631,7 @@ DESCRIPTION
598
631
  display environment info
599
632
  ```
600
633
 
601
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/diagnostics.ts)_
634
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/diagnostics.ts)_
602
635
 
603
636
  ## `eas help [COMMAND]`
604
637
 
@@ -620,6 +653,51 @@ DESCRIPTION
620
653
 
621
654
  _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
622
655
 
656
+ ## `eas init`
657
+
658
+ create or link an EAS project
659
+
660
+ ```
661
+ USAGE
662
+ $ eas init
663
+
664
+ DESCRIPTION
665
+ create or link an EAS project
666
+
667
+ ALIASES
668
+ $ eas init
669
+ ```
670
+
671
+ ## `eas login`
672
+
673
+ log in with your Expo account
674
+
675
+ ```
676
+ USAGE
677
+ $ eas login
678
+
679
+ DESCRIPTION
680
+ log in with your Expo account
681
+
682
+ ALIASES
683
+ $ eas login
684
+ ```
685
+
686
+ ## `eas logout`
687
+
688
+ log out
689
+
690
+ ```
691
+ USAGE
692
+ $ eas logout
693
+
694
+ DESCRIPTION
695
+ log out
696
+
697
+ ALIASES
698
+ $ eas logout
699
+ ```
700
+
623
701
  ## `eas project:info`
624
702
 
625
703
  information about the current project
@@ -632,7 +710,7 @@ DESCRIPTION
632
710
  information about the current project
633
711
  ```
634
712
 
635
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/project/info.ts)_
713
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/project/info.ts)_
636
714
 
637
715
  ## `eas project:init`
638
716
 
@@ -649,7 +727,7 @@ ALIASES
649
727
  $ eas init
650
728
  ```
651
729
 
652
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/project/init.ts)_
730
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/project/init.ts)_
653
731
 
654
732
  ## `eas secret:create`
655
733
 
@@ -669,7 +747,7 @@ DESCRIPTION
669
747
  create an environment secret on the current project or owner account
670
748
  ```
671
749
 
672
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/secret/create.ts)_
750
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/secret/create.ts)_
673
751
 
674
752
  ## `eas secret:delete`
675
753
 
@@ -686,7 +764,7 @@ DESCRIPTION
686
764
  delete an environment secret by ID
687
765
  ```
688
766
 
689
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/secret/delete.ts)_
767
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/secret/delete.ts)_
690
768
 
691
769
  ## `eas secret:list`
692
770
 
@@ -700,7 +778,7 @@ DESCRIPTION
700
778
  list environment secrets available for your current app
701
779
  ```
702
780
 
703
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/secret/list.ts)_
781
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/secret/list.ts)_
704
782
 
705
783
  ## `eas submit`
706
784
 
@@ -730,7 +808,7 @@ ALIASES
730
808
  $ eas build:submit
731
809
  ```
732
810
 
733
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/submit.ts)_
811
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/submit.ts)_
734
812
 
735
813
  ## `eas update`
736
814
 
@@ -739,7 +817,7 @@ publish an update group
739
817
  ```
740
818
  USAGE
741
819
  $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
742
- [--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]
743
821
 
744
822
  FLAGS
745
823
  -p, --platform=(android|ios|all) [default: all]
@@ -749,6 +827,7 @@ FLAGS
749
827
  --input-dir=<value> [default: dist] Location of the bundle
750
828
  --json Enable JSON output, non-JSON messages will be printed to stderr
751
829
  --message=<value> A short message describing the update
830
+ --non-interactive Run command in non-interactive mode
752
831
  --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
753
832
  expo-updates' configuration. Defaults to a file named "private-key.pem" in the
754
833
  certificate's directory.
@@ -759,7 +838,7 @@ DESCRIPTION
759
838
  publish an update group
760
839
  ```
761
840
 
762
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/update/index.ts)_
841
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/update/index.ts)_
763
842
 
764
843
  ## `eas update:configure`
765
844
 
@@ -776,7 +855,7 @@ DESCRIPTION
776
855
  configure the project to support EAS Update
777
856
  ```
778
857
 
779
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/update/configure.ts)_
858
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/update/configure.ts)_
780
859
 
781
860
  ## `eas update:delete GROUPID`
782
861
 
@@ -796,7 +875,7 @@ DESCRIPTION
796
875
  delete all the updates in an update group
797
876
  ```
798
877
 
799
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/update/delete.ts)_
878
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/update/delete.ts)_
800
879
 
801
880
  ## `eas update:list`
802
881
 
@@ -815,7 +894,7 @@ DESCRIPTION
815
894
  view the recent updates for a branch
816
895
  ```
817
896
 
818
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/update/list.ts)_
897
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/update/list.ts)_
819
898
 
820
899
  ## `eas update:view GROUPID`
821
900
 
@@ -835,7 +914,7 @@ DESCRIPTION
835
914
  update group details
836
915
  ```
837
916
 
838
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/update/view.ts)_
917
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/update/view.ts)_
839
918
 
840
919
  ## `eas webhook:create`
841
920
 
@@ -855,7 +934,7 @@ DESCRIPTION
855
934
  create a webhook
856
935
  ```
857
936
 
858
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/webhook/create.ts)_
937
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/webhook/create.ts)_
859
938
 
860
939
  ## `eas webhook:delete [ID]`
861
940
 
@@ -872,7 +951,7 @@ DESCRIPTION
872
951
  delete a webhook
873
952
  ```
874
953
 
875
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/webhook/delete.ts)_
954
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/webhook/delete.ts)_
876
955
 
877
956
  ## `eas webhook:list`
878
957
 
@@ -889,7 +968,7 @@ DESCRIPTION
889
968
  list webhooks
890
969
  ```
891
970
 
892
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/webhook/list.ts)_
971
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/webhook/list.ts)_
893
972
 
894
973
  ## `eas webhook:update`
895
974
 
@@ -910,7 +989,7 @@ DESCRIPTION
910
989
  update a webhook
911
990
  ```
912
991
 
913
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/webhook/update.ts)_
992
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/webhook/update.ts)_
914
993
 
915
994
  ## `eas webhook:view ID`
916
995
 
@@ -927,5 +1006,20 @@ DESCRIPTION
927
1006
  view a webhook
928
1007
  ```
929
1008
 
930
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.48.2/packages/eas-cli/src/commands/webhook/view.ts)_
1009
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.51.0/packages/eas-cli/src/commands/webhook/view.ts)_
1010
+
1011
+ ## `eas whoami`
1012
+
1013
+ show the username you are logged in as
1014
+
1015
+ ```
1016
+ USAGE
1017
+ $ eas whoami
1018
+
1019
+ DESCRIPTION
1020
+ show the username you are logged in as
1021
+
1022
+ ALIASES
1023
+ $ eas whoami
1024
+ ```
931
1025
  <!-- commandsstop -->
@@ -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 {};