eas-cli 16.13.3 → 16.14.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 (33) hide show
  1. package/README.md +128 -78
  2. package/build/commands/env/create.d.ts +0 -1
  3. package/build/commands/env/create.js +1 -28
  4. package/build/commands/update/delete.js +2 -20
  5. package/build/commands/update/republish.js +2 -139
  6. package/build/commands/update/revert-update-rollout.d.ts +24 -0
  7. package/build/commands/update/revert-update-rollout.js +264 -0
  8. package/build/commands/update/roll-back-to-embedded.d.ts +0 -2
  9. package/build/commands/update/roll-back-to-embedded.js +13 -133
  10. package/build/commands/upload.d.ts +0 -1
  11. package/build/commands/upload.js +0 -1
  12. package/build/graphql/generated.d.ts +91 -109
  13. package/build/graphql/generated.js +15 -3
  14. package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +0 -2
  15. package/build/graphql/mutations/EnvironmentVariableMutation.js +0 -48
  16. package/build/graphql/types/Update.js +1 -0
  17. package/build/project/publish.js +1 -0
  18. package/build/update/delete.d.ts +5 -0
  19. package/build/update/delete.js +24 -0
  20. package/build/update/queries.d.ts +13 -1
  21. package/build/update/queries.js +62 -1
  22. package/build/update/republish.d.ts +27 -0
  23. package/build/update/republish.js +242 -1
  24. package/build/update/roll-back-to-embedded.d.ts +18 -0
  25. package/build/update/roll-back-to-embedded.js +119 -0
  26. package/build/user/fetchUser.js +15 -13
  27. package/build/utils/statuspageService.js +1 -0
  28. package/oclif.manifest.json +78 -115
  29. package/package.json +3 -2
  30. package/build/commands/env/link.d.ts +0 -23
  31. package/build/commands/env/link.js +0 -128
  32. package/build/commands/env/unlink.d.ts +0 -22
  33. package/build/commands/env/unlink.js +0 -117
package/README.md CHANGED
@@ -129,9 +129,11 @@ eas --help COMMAND
129
129
  * [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
130
130
  * [`eas update:list`](#eas-updatelist)
131
131
  * [`eas update:republish`](#eas-updaterepublish)
132
+ * [`eas update:revert-update-rollout`](#eas-updaterevert-update-rollout)
132
133
  * [`eas update:roll-back-to-embedded`](#eas-updateroll-back-to-embedded)
133
134
  * [`eas update:rollback`](#eas-updaterollback)
134
135
  * [`eas update:view GROUPID`](#eas-updateview-groupid)
136
+ * [`eas upload`](#eas-upload)
135
137
  * [`eas webhook:create`](#eas-webhookcreate)
136
138
  * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
137
139
  * [`eas webhook:list`](#eas-webhooklist)
@@ -164,7 +166,7 @@ ALIASES
164
166
  $ eas login
165
167
  ```
166
168
 
167
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/account/login.ts)_
169
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/account/login.ts)_
168
170
 
169
171
  ## `eas account:logout`
170
172
 
@@ -181,7 +183,7 @@ ALIASES
181
183
  $ eas logout
182
184
  ```
183
185
 
184
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/account/logout.ts)_
186
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/account/logout.ts)_
185
187
 
186
188
  ## `eas account:view`
187
189
 
@@ -198,7 +200,7 @@ ALIASES
198
200
  $ eas whoami
199
201
  ```
200
202
 
201
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/account/view.ts)_
203
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/account/view.ts)_
202
204
 
203
205
  ## `eas analytics [STATUS]`
204
206
 
@@ -212,7 +214,7 @@ DESCRIPTION
212
214
  display or change analytics settings
213
215
  ```
214
216
 
215
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/analytics.ts)_
217
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/analytics.ts)_
216
218
 
217
219
  ## `eas autocomplete [SHELL]`
218
220
 
@@ -264,7 +266,7 @@ DESCRIPTION
264
266
  create a branch
265
267
  ```
266
268
 
267
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/branch/create.ts)_
269
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/branch/create.ts)_
268
270
 
269
271
  ## `eas branch:delete [NAME]`
270
272
 
@@ -285,7 +287,7 @@ DESCRIPTION
285
287
  delete a branch
286
288
  ```
287
289
 
288
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/branch/delete.ts)_
290
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/branch/delete.ts)_
289
291
 
290
292
  ## `eas branch:list`
291
293
 
@@ -305,7 +307,7 @@ DESCRIPTION
305
307
  list all branches
306
308
  ```
307
309
 
308
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/branch/list.ts)_
310
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/branch/list.ts)_
309
311
 
310
312
  ## `eas branch:rename`
311
313
 
@@ -325,7 +327,7 @@ DESCRIPTION
325
327
  rename a branch
326
328
  ```
327
329
 
328
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/branch/rename.ts)_
330
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/branch/rename.ts)_
329
331
 
330
332
  ## `eas branch:view [NAME]`
331
333
 
@@ -348,7 +350,7 @@ DESCRIPTION
348
350
  view a branch
349
351
  ```
350
352
 
351
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/branch/view.ts)_
353
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/branch/view.ts)_
352
354
 
353
355
  ## `eas build`
354
356
 
@@ -389,7 +391,7 @@ DESCRIPTION
389
391
  start a build
390
392
  ```
391
393
 
392
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/index.ts)_
394
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/index.ts)_
393
395
 
394
396
  ## `eas build:cancel [BUILD_ID]`
395
397
 
@@ -408,7 +410,7 @@ DESCRIPTION
408
410
  cancel a build
409
411
  ```
410
412
 
411
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/cancel.ts)_
413
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/cancel.ts)_
412
414
 
413
415
  ## `eas build:configure`
414
416
 
@@ -425,7 +427,7 @@ DESCRIPTION
425
427
  configure the project to support EAS Build
426
428
  ```
427
429
 
428
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/configure.ts)_
430
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/configure.ts)_
429
431
 
430
432
  ## `eas build:delete [BUILD_ID]`
431
433
 
@@ -444,7 +446,7 @@ DESCRIPTION
444
446
  delete a build
445
447
  ```
446
448
 
447
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/delete.ts)_
449
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/delete.ts)_
448
450
 
449
451
  ## `eas build:dev`
450
452
 
@@ -464,7 +466,7 @@ DESCRIPTION
464
466
  run dev client simulator/emulator build with matching fingerprint or create a new one
465
467
  ```
466
468
 
467
- _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/dev.ts)_
469
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/dev.ts)_
468
470
 
469
471
  ## `eas build:download`
470
472
 
@@ -485,7 +487,7 @@ DESCRIPTION
485
487
  download simulator/emulator builds for a given fingerprint hash
486
488
  ```
487
489
 
488
- _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/download.ts)_
490
+ _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/download.ts)_
489
491
 
490
492
  ## `eas build:inspect`
491
493
 
@@ -520,7 +522,7 @@ DESCRIPTION
520
522
  inspect the state of the project at specific build stages, useful for troubleshooting
521
523
  ```
522
524
 
523
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/inspect.ts)_
525
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/inspect.ts)_
524
526
 
525
527
  ## `eas build:list`
526
528
 
@@ -572,7 +574,7 @@ DESCRIPTION
572
574
  list all builds for your project
573
575
  ```
574
576
 
575
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/list.ts)_
577
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/list.ts)_
576
578
 
577
579
  ## `eas build:resign`
578
580
 
@@ -601,7 +603,7 @@ DESCRIPTION
601
603
  re-sign a build archive
602
604
  ```
603
605
 
604
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/resign.ts)_
606
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/resign.ts)_
605
607
 
606
608
  ## `eas build:run`
607
609
 
@@ -627,7 +629,7 @@ DESCRIPTION
627
629
  run simulator/emulator builds from eas-cli
628
630
  ```
629
631
 
630
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/run.ts)_
632
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/run.ts)_
631
633
 
632
634
  ## `eas build:submit`
633
635
 
@@ -681,7 +683,7 @@ DESCRIPTION
681
683
  get the latest version from EAS servers
682
684
  ```
683
685
 
684
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/version/get.ts)_
686
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/version/get.ts)_
685
687
 
686
688
  ## `eas build:version:set`
687
689
 
@@ -700,7 +702,7 @@ DESCRIPTION
700
702
  update version of an app
701
703
  ```
702
704
 
703
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/version/set.ts)_
705
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/version/set.ts)_
704
706
 
705
707
  ## `eas build:version:sync`
706
708
 
@@ -719,7 +721,7 @@ DESCRIPTION
719
721
  update a version in native code with a value stored on EAS servers
720
722
  ```
721
723
 
722
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/version/sync.ts)_
724
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/version/sync.ts)_
723
725
 
724
726
  ## `eas build:view [BUILD_ID]`
725
727
 
@@ -736,7 +738,7 @@ DESCRIPTION
736
738
  view a build for your project
737
739
  ```
738
740
 
739
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/build/view.ts)_
741
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/build/view.ts)_
740
742
 
741
743
  ## `eas channel:create [NAME]`
742
744
 
@@ -757,7 +759,7 @@ DESCRIPTION
757
759
  create a channel
758
760
  ```
759
761
 
760
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/create.ts)_
762
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/create.ts)_
761
763
 
762
764
  ## `eas channel:edit [NAME]`
763
765
 
@@ -779,7 +781,7 @@ DESCRIPTION
779
781
  point a channel at a new branch
780
782
  ```
781
783
 
782
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/edit.ts)_
784
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/edit.ts)_
783
785
 
784
786
  ## `eas channel:list`
785
787
 
@@ -799,7 +801,7 @@ DESCRIPTION
799
801
  list all channels
800
802
  ```
801
803
 
802
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/list.ts)_
804
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/list.ts)_
803
805
 
804
806
  ## `eas channel:pause [NAME]`
805
807
 
@@ -821,7 +823,7 @@ DESCRIPTION
821
823
  pause a channel to stop it from sending updates
822
824
  ```
823
825
 
824
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/pause.ts)_
826
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/pause.ts)_
825
827
 
826
828
  ## `eas channel:resume [NAME]`
827
829
 
@@ -843,7 +845,7 @@ DESCRIPTION
843
845
  resume a channel to start sending updates
844
846
  ```
845
847
 
846
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/resume.ts)_
848
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/resume.ts)_
847
849
 
848
850
  ## `eas channel:rollout [CHANNEL]`
849
851
 
@@ -876,7 +878,7 @@ DESCRIPTION
876
878
  Roll a new branch out on a channel incrementally.
877
879
  ```
878
880
 
879
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/rollout.ts)_
881
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/rollout.ts)_
880
882
 
881
883
  ## `eas channel:view [NAME]`
882
884
 
@@ -899,7 +901,7 @@ DESCRIPTION
899
901
  view a channel
900
902
  ```
901
903
 
902
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/channel/view.ts)_
904
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/channel/view.ts)_
903
905
 
904
906
  ## `eas config`
905
907
 
@@ -920,7 +922,7 @@ DESCRIPTION
920
922
  display project configuration (app.json + eas.json)
921
923
  ```
922
924
 
923
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/config.ts)_
925
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/config.ts)_
924
926
 
925
927
  ## `eas credentials`
926
928
 
@@ -937,7 +939,7 @@ DESCRIPTION
937
939
  manage credentials
938
940
  ```
939
941
 
940
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/credentials/index.ts)_
942
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/credentials/index.ts)_
941
943
 
942
944
  ## `eas credentials:configure-build`
943
945
 
@@ -955,7 +957,7 @@ DESCRIPTION
955
957
  Set up credentials for building your project.
956
958
  ```
957
959
 
958
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/credentials/configure-build.ts)_
960
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
959
961
 
960
962
  ## `eas deploy [options]`
961
963
 
@@ -983,7 +985,7 @@ ALIASES
983
985
  $ eas worker:deploy
984
986
  ```
985
987
 
986
- _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/deploy/index.ts)_
988
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/deploy/index.ts)_
987
989
 
988
990
  ## `eas deploy:alias`
989
991
 
@@ -1008,7 +1010,7 @@ ALIASES
1008
1010
  $ eas deploy:promote
1009
1011
  ```
1010
1012
 
1011
- _See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/deploy/alias.ts)_
1013
+ _See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/deploy/alias.ts)_
1012
1014
 
1013
1015
  ## `eas deploy:promote`
1014
1016
 
@@ -1045,7 +1047,7 @@ DESCRIPTION
1045
1047
  register new Apple Devices to use for internal distribution
1046
1048
  ```
1047
1049
 
1048
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/device/create.ts)_
1050
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/device/create.ts)_
1049
1051
 
1050
1052
  ## `eas device:delete`
1051
1053
 
@@ -1065,7 +1067,7 @@ DESCRIPTION
1065
1067
  remove a registered device from your account
1066
1068
  ```
1067
1069
 
1068
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/device/delete.ts)_
1070
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/device/delete.ts)_
1069
1071
 
1070
1072
  ## `eas device:list`
1071
1073
 
@@ -1086,7 +1088,7 @@ DESCRIPTION
1086
1088
  list all registered devices for your account
1087
1089
  ```
1088
1090
 
1089
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/device/list.ts)_
1091
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/device/list.ts)_
1090
1092
 
1091
1093
  ## `eas device:rename`
1092
1094
 
@@ -1107,7 +1109,7 @@ DESCRIPTION
1107
1109
  rename a registered device
1108
1110
  ```
1109
1111
 
1110
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/device/rename.ts)_
1112
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/device/rename.ts)_
1111
1113
 
1112
1114
  ## `eas device:view [UDID]`
1113
1115
 
@@ -1121,7 +1123,7 @@ DESCRIPTION
1121
1123
  view a device for your project
1122
1124
  ```
1123
1125
 
1124
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/device/view.ts)_
1126
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/device/view.ts)_
1125
1127
 
1126
1128
  ## `eas diagnostics`
1127
1129
 
@@ -1135,7 +1137,7 @@ DESCRIPTION
1135
1137
  display environment info
1136
1138
  ```
1137
1139
 
1138
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/diagnostics.ts)_
1140
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/diagnostics.ts)_
1139
1141
 
1140
1142
  ## `eas env:create [ENVIRONMENT]`
1141
1143
 
@@ -1164,7 +1166,7 @@ DESCRIPTION
1164
1166
  create an environment variable for the current project or account
1165
1167
  ```
1166
1168
 
1167
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/create.ts)_
1169
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/create.ts)_
1168
1170
 
1169
1171
  ## `eas env:delete [ENVIRONMENT]`
1170
1172
 
@@ -1188,7 +1190,7 @@ DESCRIPTION
1188
1190
  delete an environment variable for the current project or account
1189
1191
  ```
1190
1192
 
1191
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/delete.ts)_
1193
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/delete.ts)_
1192
1194
 
1193
1195
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1194
1196
 
@@ -1209,7 +1211,7 @@ DESCRIPTION
1209
1211
  execute a command with environment variables from the selected environment
1210
1212
  ```
1211
1213
 
1212
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/exec.ts)_
1214
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/exec.ts)_
1213
1215
 
1214
1216
  ## `eas env:get [ENVIRONMENT]`
1215
1217
 
@@ -1234,7 +1236,7 @@ DESCRIPTION
1234
1236
  view an environment variable for the current project or account
1235
1237
  ```
1236
1238
 
1237
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/get.ts)_
1239
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/get.ts)_
1238
1240
 
1239
1241
  ## `eas env:list [ENVIRONMENT]`
1240
1242
 
@@ -1259,7 +1261,7 @@ DESCRIPTION
1259
1261
  list environment variables for the current project or account
1260
1262
  ```
1261
1263
 
1262
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/list.ts)_
1264
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/list.ts)_
1263
1265
 
1264
1266
  ## `eas env:pull [ENVIRONMENT]`
1265
1267
 
@@ -1282,7 +1284,7 @@ DESCRIPTION
1282
1284
  pull environment variables for the selected environment to .env file
1283
1285
  ```
1284
1286
 
1285
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/pull.ts)_
1287
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/pull.ts)_
1286
1288
 
1287
1289
  ## `eas env:push [ENVIRONMENT]`
1288
1290
 
@@ -1303,7 +1305,7 @@ DESCRIPTION
1303
1305
  push environment variables from .env file to the selected environment
1304
1306
  ```
1305
1307
 
1306
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/push.ts)_
1308
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/push.ts)_
1307
1309
 
1308
1310
  ## `eas env:update [ENVIRONMENT]`
1309
1311
 
@@ -1334,7 +1336,7 @@ DESCRIPTION
1334
1336
  update an environment variable on the current project or account
1335
1337
  ```
1336
1338
 
1337
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/env/update.ts)_
1339
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/env/update.ts)_
1338
1340
 
1339
1341
  ## `eas fingerprint:compare [HASH1] [HASH2]`
1340
1342
 
@@ -1379,7 +1381,7 @@ EXAMPLES
1379
1381
  $ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
1380
1382
  ```
1381
1383
 
1382
- _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1384
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1383
1385
 
1384
1386
  ## `eas fingerprint:generate`
1385
1387
 
@@ -1410,7 +1412,7 @@ EXAMPLES
1410
1412
  $ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
1411
1413
  ```
1412
1414
 
1413
- _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1415
+ _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1414
1416
 
1415
1417
  ## `eas help [COMMAND]`
1416
1418
 
@@ -1518,7 +1520,7 @@ DESCRIPTION
1518
1520
  validate the local store configuration
1519
1521
  ```
1520
1522
 
1521
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/metadata/lint.ts)_
1523
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1522
1524
 
1523
1525
  ## `eas metadata:pull`
1524
1526
 
@@ -1535,7 +1537,7 @@ DESCRIPTION
1535
1537
  generate the local store configuration from the app stores
1536
1538
  ```
1537
1539
 
1538
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/metadata/pull.ts)_
1540
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1539
1541
 
1540
1542
  ## `eas metadata:push`
1541
1543
 
@@ -1552,7 +1554,7 @@ DESCRIPTION
1552
1554
  sync the local store configuration to the app stores
1553
1555
  ```
1554
1556
 
1555
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/metadata/push.ts)_
1557
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/metadata/push.ts)_
1556
1558
 
1557
1559
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1558
1560
 
@@ -1582,7 +1584,7 @@ DESCRIPTION
1582
1584
  open the project page in a web browser
1583
1585
  ```
1584
1586
 
1585
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/open.ts)_
1587
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/open.ts)_
1586
1588
 
1587
1589
  ## `eas project:info`
1588
1590
 
@@ -1596,7 +1598,7 @@ DESCRIPTION
1596
1598
  information about the current project
1597
1599
  ```
1598
1600
 
1599
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/project/info.ts)_
1601
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/project/info.ts)_
1600
1602
 
1601
1603
  ## `eas project:init`
1602
1604
 
@@ -1619,7 +1621,7 @@ ALIASES
1619
1621
  $ eas init
1620
1622
  ```
1621
1623
 
1622
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/project/init.ts)_
1624
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/project/init.ts)_
1623
1625
 
1624
1626
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
1625
1627
 
@@ -1637,7 +1639,7 @@ ALIASES
1637
1639
  $ eas onboarding
1638
1640
  ```
1639
1641
 
1640
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/project/onboarding.ts)_
1642
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1641
1643
 
1642
1644
  ## `eas submit`
1643
1645
 
@@ -1672,7 +1674,7 @@ ALIASES
1672
1674
  $ eas build:submit
1673
1675
  ```
1674
1676
 
1675
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/submit.ts)_
1677
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/submit.ts)_
1676
1678
 
1677
1679
  ## `eas update`
1678
1680
 
@@ -1714,7 +1716,7 @@ DESCRIPTION
1714
1716
  publish an update group
1715
1717
  ```
1716
1718
 
1717
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/index.ts)_
1719
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/index.ts)_
1718
1720
 
1719
1721
  ## `eas update:configure`
1720
1722
 
@@ -1734,7 +1736,7 @@ DESCRIPTION
1734
1736
  configure the project to support EAS Update
1735
1737
  ```
1736
1738
 
1737
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/configure.ts)_
1739
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/configure.ts)_
1738
1740
 
1739
1741
  ## `eas update:delete GROUPID`
1740
1742
 
@@ -1755,7 +1757,7 @@ DESCRIPTION
1755
1757
  delete all the updates in an update group
1756
1758
  ```
1757
1759
 
1758
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/delete.ts)_
1760
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/delete.ts)_
1759
1761
 
1760
1762
  ## `eas update:edit [GROUPID]`
1761
1763
 
@@ -1779,7 +1781,7 @@ DESCRIPTION
1779
1781
  edit all the updates in an update group
1780
1782
  ```
1781
1783
 
1782
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/edit.ts)_
1784
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/edit.ts)_
1783
1785
 
1784
1786
  ## `eas update:list`
1785
1787
 
@@ -1801,7 +1803,7 @@ DESCRIPTION
1801
1803
  view the recent updates
1802
1804
  ```
1803
1805
 
1804
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/list.ts)_
1806
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/list.ts)_
1805
1807
 
1806
1808
  ## `eas update:republish`
1807
1809
 
@@ -1837,7 +1839,34 @@ DESCRIPTION
1837
1839
  roll back to an existing update
1838
1840
  ```
1839
1841
 
1840
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/republish.ts)_
1842
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/republish.ts)_
1843
+
1844
+ ## `eas update:revert-update-rollout`
1845
+
1846
+ revert a rollout update for a project
1847
+
1848
+ ```
1849
+ USAGE
1850
+ $ eas update:revert-update-rollout [--channel <value> | --branch <value> | --group <value>] [-m <value>] [--private-key-path
1851
+ <value>] [--json --non-interactive]
1852
+
1853
+ FLAGS
1854
+ -m, --message=<value> Short message describing the revert
1855
+ --branch=<value> Branch name to select an update group to revert the rollout update from
1856
+ --channel=<value> Channel name to select an update group to revert the rollout update from
1857
+ --group=<value> Rollout update group ID to revert
1858
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1859
+ --non-interactive Run the command in non-interactive mode.
1860
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1861
+ expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1862
+ certificate's directory. Only relevant if you are using code signing:
1863
+ https://docs.expo.dev/eas-update/code-signing/
1864
+
1865
+ DESCRIPTION
1866
+ revert a rollout update for a project
1867
+ ```
1868
+
1869
+ _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
1841
1870
 
1842
1871
  ## `eas update:roll-back-to-embedded`
1843
1872
 
@@ -1865,7 +1894,7 @@ DESCRIPTION
1865
1894
  roll back to the embedded update
1866
1895
  ```
1867
1896
 
1868
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1897
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1869
1898
 
1870
1899
  ## `eas update:rollback`
1871
1900
 
@@ -1885,7 +1914,7 @@ DESCRIPTION
1885
1914
  roll back to an embedded update or an existing update
1886
1915
  ```
1887
1916
 
1888
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/rollback.ts)_
1917
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/rollback.ts)_
1889
1918
 
1890
1919
  ## `eas update:view GROUPID`
1891
1920
 
@@ -1905,7 +1934,28 @@ DESCRIPTION
1905
1934
  update group details
1906
1935
  ```
1907
1936
 
1908
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/update/view.ts)_
1937
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/update/view.ts)_
1938
+
1939
+ ## `eas upload`
1940
+
1941
+ upload a local build and generate a sharable link
1942
+
1943
+ ```
1944
+ USAGE
1945
+ $ eas upload [-p ios|android] [--build-path <value>] [--fingerprint <value>] [--json --non-interactive]
1946
+
1947
+ FLAGS
1948
+ -p, --platform=(ios|android)
1949
+ --build-path=<value> Path for the local build
1950
+ --fingerprint=<value> Fingerprint hash of the local build
1951
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1952
+ --non-interactive Run the command in non-interactive mode.
1953
+
1954
+ DESCRIPTION
1955
+ upload a local build and generate a sharable link
1956
+ ```
1957
+
1958
+ _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/upload.ts)_
1909
1959
 
1910
1960
  ## `eas webhook:create`
1911
1961
 
@@ -1926,7 +1976,7 @@ DESCRIPTION
1926
1976
  create a webhook
1927
1977
  ```
1928
1978
 
1929
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/webhook/create.ts)_
1979
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/webhook/create.ts)_
1930
1980
 
1931
1981
  ## `eas webhook:delete [ID]`
1932
1982
 
@@ -1946,7 +1996,7 @@ DESCRIPTION
1946
1996
  delete a webhook
1947
1997
  ```
1948
1998
 
1949
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/webhook/delete.ts)_
1999
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1950
2000
 
1951
2001
  ## `eas webhook:list`
1952
2002
 
@@ -1964,7 +2014,7 @@ DESCRIPTION
1964
2014
  list webhooks
1965
2015
  ```
1966
2016
 
1967
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/webhook/list.ts)_
2017
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/webhook/list.ts)_
1968
2018
 
1969
2019
  ## `eas webhook:update`
1970
2020
 
@@ -1986,7 +2036,7 @@ DESCRIPTION
1986
2036
  update a webhook
1987
2037
  ```
1988
2038
 
1989
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/webhook/update.ts)_
2039
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/webhook/update.ts)_
1990
2040
 
1991
2041
  ## `eas webhook:view ID`
1992
2042
 
@@ -2003,7 +2053,7 @@ DESCRIPTION
2003
2053
  view a webhook
2004
2054
  ```
2005
2055
 
2006
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/webhook/view.ts)_
2056
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/webhook/view.ts)_
2007
2057
 
2008
2058
  ## `eas whoami`
2009
2059
 
@@ -2085,7 +2135,7 @@ DESCRIPTION
2085
2135
  to cancel.
2086
2136
  ```
2087
2137
 
2088
- _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/workflow/cancel.ts)_
2138
+ _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2089
2139
 
2090
2140
  ## `eas workflow:create [NAME]`
2091
2141
 
@@ -2105,7 +2155,7 @@ DESCRIPTION
2105
2155
  create a new workflow configuration YAML file
2106
2156
  ```
2107
2157
 
2108
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/workflow/create.ts)_
2158
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/workflow/create.ts)_
2109
2159
 
2110
2160
  ## `eas workflow:run [FILE]`
2111
2161
 
@@ -2132,7 +2182,7 @@ FLAG DESCRIPTIONS
2132
2182
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
2133
2183
  ```
2134
2184
 
2135
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/workflow/run.ts)_
2185
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/workflow/run.ts)_
2136
2186
 
2137
2187
  ## `eas workflow:runs`
2138
2188
 
@@ -2157,7 +2207,7 @@ DESCRIPTION
2157
2207
  list recent workflow runs for this project, with their IDs, statuses, and timestamps
2158
2208
  ```
2159
2209
 
2160
- _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/workflow/runs.ts)_
2210
+ _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2161
2211
 
2162
2212
  ## `eas workflow:validate PATH`
2163
2213
 
@@ -2177,5 +2227,5 @@ DESCRIPTION
2177
2227
  validate a workflow configuration yaml file
2178
2228
  ```
2179
2229
 
2180
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.13.3/packages/eas-cli/src/commands/workflow/validate.ts)_
2230
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.14.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2181
2231
  <!-- commandsstop -->