eas-cli 16.1.0 → 16.2.1

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 (41) hide show
  1. package/README.md +117 -81
  2. package/build/build/utils/url.d.ts +1 -0
  3. package/build/build/utils/url.js +5 -1
  4. package/build/commandUtils/EasCommand.js +6 -1
  5. package/build/commandUtils/builds.d.ts +1 -0
  6. package/build/commandUtils/builds.js +3 -0
  7. package/build/commandUtils/context/ServerSideEnvironmentVariablesContextField.d.ts +1 -2
  8. package/build/commands/deploy/index.js +20 -2
  9. package/build/commands/fingerprint/compare.d.ts +3 -0
  10. package/build/commands/fingerprint/compare.js +50 -13
  11. package/build/commands/fingerprint/generate.d.ts +5 -2
  12. package/build/commands/fingerprint/generate.js +44 -7
  13. package/build/commands/update/delete.js +13 -6
  14. package/build/commands/update/index.d.ts +1 -0
  15. package/build/commands/update/index.js +90 -59
  16. package/build/commands/upload.d.ts +18 -0
  17. package/build/commands/upload.js +253 -0
  18. package/build/credentials/ios/appstore/ensureTestFlightGroup.js +4 -3
  19. package/build/graphql/generated.d.ts +170 -5
  20. package/build/graphql/generated.js +6 -2
  21. package/build/graphql/mutations/LocalBuildMutation.d.ts +5 -0
  22. package/build/graphql/mutations/LocalBuildMutation.js +38 -0
  23. package/build/graphql/mutations/UploadSessionMutation.d.ts +1 -1
  24. package/build/graphql/mutations/UploadSessionMutation.js +4 -3
  25. package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +5 -0
  26. package/build/graphql/queries/BackgroundJobReceiptQuery.js +27 -0
  27. package/build/graphql/types/BackgroundJobReceipt.d.ts +1 -0
  28. package/build/graphql/types/BackgroundJobReceipt.js +20 -0
  29. package/build/metadata/download.js +1 -1
  30. package/build/metadata/upload.js +1 -1
  31. package/build/metadata/utils/telemetry.d.ts +3 -3
  32. package/build/metadata/utils/telemetry.js +9 -9
  33. package/build/project/publish.d.ts +17 -1
  34. package/build/project/publish.js +22 -1
  35. package/build/run/ios/xcode.d.ts +15 -0
  36. package/build/run/ios/xcode.js +24 -1
  37. package/build/uploads.js +2 -1
  38. package/build/utils/pollForBackgroundJobReceiptAsync.d.ts +29 -0
  39. package/build/utils/pollForBackgroundJobReceiptAsync.js +92 -0
  40. package/oclif.manifest.json +80 -5
  41. package/package.json +5 -3
package/README.md CHANGED
@@ -107,6 +107,7 @@ eas --help COMMAND
107
107
  * [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
108
108
  * [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
109
109
  * [`eas fingerprint:compare [HASH1] [HASH2]`](#eas-fingerprintcompare-hash1-hash2)
110
+ * [`eas fingerprint:generate`](#eas-fingerprintgenerate)
110
111
  * [`eas help [COMMAND]`](#eas-help-command)
111
112
  * [`eas init`](#eas-init)
112
113
  * [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
@@ -160,7 +161,7 @@ ALIASES
160
161
  $ eas login
161
162
  ```
162
163
 
163
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/account/login.ts)_
164
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/account/login.ts)_
164
165
 
165
166
  ## `eas account:logout`
166
167
 
@@ -177,7 +178,7 @@ ALIASES
177
178
  $ eas logout
178
179
  ```
179
180
 
180
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/account/logout.ts)_
181
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/account/logout.ts)_
181
182
 
182
183
  ## `eas account:view`
183
184
 
@@ -194,7 +195,7 @@ ALIASES
194
195
  $ eas whoami
195
196
  ```
196
197
 
197
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/account/view.ts)_
198
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/account/view.ts)_
198
199
 
199
200
  ## `eas analytics [STATUS]`
200
201
 
@@ -208,7 +209,7 @@ DESCRIPTION
208
209
  display or change analytics settings
209
210
  ```
210
211
 
211
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/analytics.ts)_
212
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/analytics.ts)_
212
213
 
213
214
  ## `eas autocomplete [SHELL]`
214
215
 
@@ -260,7 +261,7 @@ DESCRIPTION
260
261
  create a branch
261
262
  ```
262
263
 
263
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/branch/create.ts)_
264
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/branch/create.ts)_
264
265
 
265
266
  ## `eas branch:delete [NAME]`
266
267
 
@@ -281,7 +282,7 @@ DESCRIPTION
281
282
  delete a branch
282
283
  ```
283
284
 
284
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/branch/delete.ts)_
285
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/branch/delete.ts)_
285
286
 
286
287
  ## `eas branch:list`
287
288
 
@@ -301,7 +302,7 @@ DESCRIPTION
301
302
  list all branches
302
303
  ```
303
304
 
304
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/branch/list.ts)_
305
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/branch/list.ts)_
305
306
 
306
307
  ## `eas branch:rename`
307
308
 
@@ -321,7 +322,7 @@ DESCRIPTION
321
322
  rename a branch
322
323
  ```
323
324
 
324
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/branch/rename.ts)_
325
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/branch/rename.ts)_
325
326
 
326
327
  ## `eas branch:view [NAME]`
327
328
 
@@ -344,7 +345,7 @@ DESCRIPTION
344
345
  view a branch
345
346
  ```
346
347
 
347
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/branch/view.ts)_
348
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/branch/view.ts)_
348
349
 
349
350
  ## `eas build`
350
351
 
@@ -381,7 +382,7 @@ DESCRIPTION
381
382
  start a build
382
383
  ```
383
384
 
384
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/index.ts)_
385
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/index.ts)_
385
386
 
386
387
  ## `eas build:cancel [BUILD_ID]`
387
388
 
@@ -400,7 +401,7 @@ DESCRIPTION
400
401
  cancel a build
401
402
  ```
402
403
 
403
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/cancel.ts)_
404
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/cancel.ts)_
404
405
 
405
406
  ## `eas build:configure`
406
407
 
@@ -417,7 +418,7 @@ DESCRIPTION
417
418
  configure the project to support EAS Build
418
419
  ```
419
420
 
420
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/configure.ts)_
421
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/configure.ts)_
421
422
 
422
423
  ## `eas build:delete [BUILD_ID]`
423
424
 
@@ -436,7 +437,7 @@ DESCRIPTION
436
437
  delete a build
437
438
  ```
438
439
 
439
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/delete.ts)_
440
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/delete.ts)_
440
441
 
441
442
  ## `eas build:dev`
442
443
 
@@ -456,7 +457,7 @@ DESCRIPTION
456
457
  run dev client simulator/emulator build with matching fingerprint or create a new one
457
458
  ```
458
459
 
459
- _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/dev.ts)_
460
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/dev.ts)_
460
461
 
461
462
  ## `eas build:inspect`
462
463
 
@@ -491,7 +492,7 @@ DESCRIPTION
491
492
  inspect the state of the project at specific build stages, useful for troubleshooting
492
493
  ```
493
494
 
494
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/inspect.ts)_
495
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/inspect.ts)_
495
496
 
496
497
  ## `eas build:list`
497
498
 
@@ -543,7 +544,7 @@ DESCRIPTION
543
544
  list all builds for your project
544
545
  ```
545
546
 
546
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/list.ts)_
547
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/list.ts)_
547
548
 
548
549
  ## `eas build:resign`
549
550
 
@@ -572,7 +573,7 @@ DESCRIPTION
572
573
  re-sign a build archive
573
574
  ```
574
575
 
575
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/resign.ts)_
576
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/resign.ts)_
576
577
 
577
578
  ## `eas build:run`
578
579
 
@@ -598,7 +599,7 @@ DESCRIPTION
598
599
  run simulator/emulator builds from eas-cli
599
600
  ```
600
601
 
601
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/run.ts)_
602
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/run.ts)_
602
603
 
603
604
  ## `eas build:submit`
604
605
 
@@ -648,7 +649,7 @@ DESCRIPTION
648
649
  get the latest version from EAS servers
649
650
  ```
650
651
 
651
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/version/get.ts)_
652
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/version/get.ts)_
652
653
 
653
654
  ## `eas build:version:set`
654
655
 
@@ -667,7 +668,7 @@ DESCRIPTION
667
668
  update version of an app
668
669
  ```
669
670
 
670
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/version/set.ts)_
671
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/version/set.ts)_
671
672
 
672
673
  ## `eas build:version:sync`
673
674
 
@@ -686,7 +687,7 @@ DESCRIPTION
686
687
  update a version in native code with a value stored on EAS servers
687
688
  ```
688
689
 
689
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/version/sync.ts)_
690
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/version/sync.ts)_
690
691
 
691
692
  ## `eas build:view [BUILD_ID]`
692
693
 
@@ -703,7 +704,7 @@ DESCRIPTION
703
704
  view a build for your project
704
705
  ```
705
706
 
706
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/build/view.ts)_
707
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/build/view.ts)_
707
708
 
708
709
  ## `eas channel:create [NAME]`
709
710
 
@@ -724,7 +725,7 @@ DESCRIPTION
724
725
  create a channel
725
726
  ```
726
727
 
727
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/create.ts)_
728
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/create.ts)_
728
729
 
729
730
  ## `eas channel:edit [NAME]`
730
731
 
@@ -746,7 +747,7 @@ DESCRIPTION
746
747
  point a channel at a new branch
747
748
  ```
748
749
 
749
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/edit.ts)_
750
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/edit.ts)_
750
751
 
751
752
  ## `eas channel:list`
752
753
 
@@ -766,7 +767,7 @@ DESCRIPTION
766
767
  list all channels
767
768
  ```
768
769
 
769
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/list.ts)_
770
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/list.ts)_
770
771
 
771
772
  ## `eas channel:pause [NAME]`
772
773
 
@@ -788,7 +789,7 @@ DESCRIPTION
788
789
  pause a channel to stop it from sending updates
789
790
  ```
790
791
 
791
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/pause.ts)_
792
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/pause.ts)_
792
793
 
793
794
  ## `eas channel:resume [NAME]`
794
795
 
@@ -810,7 +811,7 @@ DESCRIPTION
810
811
  resume a channel to start sending updates
811
812
  ```
812
813
 
813
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/resume.ts)_
814
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/resume.ts)_
814
815
 
815
816
  ## `eas channel:rollout [CHANNEL]`
816
817
 
@@ -843,7 +844,7 @@ DESCRIPTION
843
844
  Roll a new branch out on a channel incrementally.
844
845
  ```
845
846
 
846
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/rollout.ts)_
847
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/rollout.ts)_
847
848
 
848
849
  ## `eas channel:view [NAME]`
849
850
 
@@ -866,7 +867,7 @@ DESCRIPTION
866
867
  view a channel
867
868
  ```
868
869
 
869
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/channel/view.ts)_
870
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/channel/view.ts)_
870
871
 
871
872
  ## `eas config`
872
873
 
@@ -887,7 +888,7 @@ DESCRIPTION
887
888
  display project configuration (app.json + eas.json)
888
889
  ```
889
890
 
890
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/config.ts)_
891
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/config.ts)_
891
892
 
892
893
  ## `eas credentials`
893
894
 
@@ -904,7 +905,7 @@ DESCRIPTION
904
905
  manage credentials
905
906
  ```
906
907
 
907
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/credentials/index.ts)_
908
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/credentials/index.ts)_
908
909
 
909
910
  ## `eas credentials:configure-build`
910
911
 
@@ -922,7 +923,7 @@ DESCRIPTION
922
923
  Set up credentials for building your project.
923
924
  ```
924
925
 
925
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
926
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
926
927
 
927
928
  ## `eas deploy [options]`
928
929
 
@@ -950,7 +951,7 @@ ALIASES
950
951
  $ eas worker:deploy
951
952
  ```
952
953
 
953
- _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/deploy/index.ts)_
954
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/deploy/index.ts)_
954
955
 
955
956
  ## `eas deploy:alias`
956
957
 
@@ -975,7 +976,7 @@ ALIASES
975
976
  $ eas deploy:promote
976
977
  ```
977
978
 
978
- _See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/deploy/alias.ts)_
979
+ _See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/deploy/alias.ts)_
979
980
 
980
981
  ## `eas deploy:promote`
981
982
 
@@ -1012,7 +1013,7 @@ DESCRIPTION
1012
1013
  register new Apple Devices to use for internal distribution
1013
1014
  ```
1014
1015
 
1015
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/device/create.ts)_
1016
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/device/create.ts)_
1016
1017
 
1017
1018
  ## `eas device:delete`
1018
1019
 
@@ -1032,7 +1033,7 @@ DESCRIPTION
1032
1033
  remove a registered device from your account
1033
1034
  ```
1034
1035
 
1035
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/device/delete.ts)_
1036
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/device/delete.ts)_
1036
1037
 
1037
1038
  ## `eas device:list`
1038
1039
 
@@ -1053,7 +1054,7 @@ DESCRIPTION
1053
1054
  list all registered devices for your account
1054
1055
  ```
1055
1056
 
1056
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/device/list.ts)_
1057
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/device/list.ts)_
1057
1058
 
1058
1059
  ## `eas device:rename`
1059
1060
 
@@ -1074,7 +1075,7 @@ DESCRIPTION
1074
1075
  rename a registered device
1075
1076
  ```
1076
1077
 
1077
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/device/rename.ts)_
1078
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/device/rename.ts)_
1078
1079
 
1079
1080
  ## `eas device:view [UDID]`
1080
1081
 
@@ -1088,7 +1089,7 @@ DESCRIPTION
1088
1089
  view a device for your project
1089
1090
  ```
1090
1091
 
1091
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/device/view.ts)_
1092
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/device/view.ts)_
1092
1093
 
1093
1094
  ## `eas diagnostics`
1094
1095
 
@@ -1102,7 +1103,7 @@ DESCRIPTION
1102
1103
  display environment info
1103
1104
  ```
1104
1105
 
1105
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/diagnostics.ts)_
1106
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/diagnostics.ts)_
1106
1107
 
1107
1108
  ## `eas env:create [ENVIRONMENT]`
1108
1109
 
@@ -1131,7 +1132,7 @@ DESCRIPTION
1131
1132
  create an environment variable for the current project or account
1132
1133
  ```
1133
1134
 
1134
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/create.ts)_
1135
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/create.ts)_
1135
1136
 
1136
1137
  ## `eas env:delete [ENVIRONMENT]`
1137
1138
 
@@ -1155,7 +1156,7 @@ DESCRIPTION
1155
1156
  delete an environment variable for the current project or account
1156
1157
  ```
1157
1158
 
1158
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/delete.ts)_
1159
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/delete.ts)_
1159
1160
 
1160
1161
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1161
1162
 
@@ -1176,7 +1177,7 @@ DESCRIPTION
1176
1177
  execute a command with environment variables from the selected environment
1177
1178
  ```
1178
1179
 
1179
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/exec.ts)_
1180
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/exec.ts)_
1180
1181
 
1181
1182
  ## `eas env:get [ENVIRONMENT]`
1182
1183
 
@@ -1201,7 +1202,7 @@ DESCRIPTION
1201
1202
  view an environment variable for the current project or account
1202
1203
  ```
1203
1204
 
1204
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/get.ts)_
1205
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/get.ts)_
1205
1206
 
1206
1207
  ## `eas env:list [ENVIRONMENT]`
1207
1208
 
@@ -1226,7 +1227,7 @@ DESCRIPTION
1226
1227
  list environment variables for the current project or account
1227
1228
  ```
1228
1229
 
1229
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/list.ts)_
1230
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/list.ts)_
1230
1231
 
1231
1232
  ## `eas env:pull [ENVIRONMENT]`
1232
1233
 
@@ -1249,7 +1250,7 @@ DESCRIPTION
1249
1250
  pull environment variables for the selected environment to .env file
1250
1251
  ```
1251
1252
 
1252
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/pull.ts)_
1253
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/pull.ts)_
1253
1254
 
1254
1255
  ## `eas env:push [ENVIRONMENT]`
1255
1256
 
@@ -1270,7 +1271,7 @@ DESCRIPTION
1270
1271
  push environment variables from .env file to the selected environment
1271
1272
  ```
1272
1273
 
1273
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/push.ts)_
1274
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/push.ts)_
1274
1275
 
1275
1276
  ## `eas env:update [ENVIRONMENT]`
1276
1277
 
@@ -1301,7 +1302,7 @@ DESCRIPTION
1301
1302
  update an environment variable on the current project or account
1302
1303
  ```
1303
1304
 
1304
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/env/update.ts)_
1305
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/env/update.ts)_
1305
1306
 
1306
1307
  ## `eas fingerprint:compare [HASH1] [HASH2]`
1307
1308
 
@@ -1309,19 +1310,21 @@ compare fingerprints of the current project, builds, and updates
1309
1310
 
1310
1311
  ```
1311
1312
  USAGE
1312
- $ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--update-id <value>] [--open] [--json
1313
- --non-interactive]
1313
+ $ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--update-id <value>] [--open] [--environment
1314
+ development|preview|production] [--json --non-interactive]
1314
1315
 
1315
1316
  ARGUMENTS
1316
1317
  HASH1 If provided alone, HASH1 is compared against the current project's fingerprint.
1317
1318
  HASH2 If two hashes are provided, HASH1 is compared against HASH2.
1318
1319
 
1319
1320
  FLAGS
1320
- --build-id=<value>... Compare the fingerprint with the build with the specified ID
1321
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1322
- --non-interactive Run the command in non-interactive mode.
1323
- --open Open the fingerprint comparison in the browser
1324
- --update-id=<value>... Compare the fingerprint with the update with the specified ID
1321
+ --build-id=<value>... Compare the fingerprint with the build with the specified ID
1322
+ --environment=(development|preview|production) If generating a fingerprint from the local directory, use the
1323
+ specified environment.
1324
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1325
+ --non-interactive Run the command in non-interactive mode.
1326
+ --open Open the fingerprint comparison in the browser
1327
+ --update-id=<value>... Compare the fingerprint with the update with the specified ID
1325
1328
 
1326
1329
  DESCRIPTION
1327
1330
  compare fingerprints of the current project, builds, and updates
@@ -1335,6 +1338,8 @@ EXAMPLES
1335
1338
 
1336
1339
  $ eas fingerprint:compare --build-id <BUILD-ID> # Compare fingerprint from build against local directory
1337
1340
 
1341
+ $ eas fingerprint:compare --build-id <BUILD-ID> --environment production # Compare fingerprint from build against local directory with the "production" environment
1342
+
1338
1343
  $ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2> # Compare fingerprint from a build against another build
1339
1344
 
1340
1345
  $ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID> # Compare fingerprint from build against fingerprint from update
@@ -1342,7 +1347,38 @@ EXAMPLES
1342
1347
  $ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
1343
1348
  ```
1344
1349
 
1345
- _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1350
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1351
+
1352
+ ## `eas fingerprint:generate`
1353
+
1354
+ generate fingerprints from the current project
1355
+
1356
+ ```
1357
+ USAGE
1358
+ $ eas fingerprint:generate [-p android|ios] [--environment development|preview|production | -e <value>] [--json
1359
+ --non-interactive]
1360
+
1361
+ FLAGS
1362
+ -e, --build-profile=<value> Name of the build profile from eas.json.
1363
+ -p, --platform=(android|ios)
1364
+ --environment=(development|preview|production) Environment variable's environment
1365
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1366
+ --non-interactive Run the command in non-interactive mode.
1367
+
1368
+ DESCRIPTION
1369
+ generate fingerprints from the current project
1370
+
1371
+ EXAMPLES
1372
+ $ eas fingerprint:generate # Generate fingerprint in interactive mode
1373
+
1374
+ $ eas fingerprint:generate --build-profile preview # Generate a fingerprint using the "preview" build profile
1375
+
1376
+ $ eas fingerprint:generate --environment preview # Generate a fingerprint using the "preview" environment
1377
+
1378
+ $ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
1379
+ ```
1380
+
1381
+ _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1346
1382
 
1347
1383
  ## `eas help [COMMAND]`
1348
1384
 
@@ -1450,7 +1486,7 @@ DESCRIPTION
1450
1486
  validate the local store configuration
1451
1487
  ```
1452
1488
 
1453
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1489
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/metadata/lint.ts)_
1454
1490
 
1455
1491
  ## `eas metadata:pull`
1456
1492
 
@@ -1467,7 +1503,7 @@ DESCRIPTION
1467
1503
  generate the local store configuration from the app stores
1468
1504
  ```
1469
1505
 
1470
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1506
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/metadata/pull.ts)_
1471
1507
 
1472
1508
  ## `eas metadata:push`
1473
1509
 
@@ -1484,7 +1520,7 @@ DESCRIPTION
1484
1520
  sync the local store configuration to the app stores
1485
1521
  ```
1486
1522
 
1487
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/metadata/push.ts)_
1523
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/metadata/push.ts)_
1488
1524
 
1489
1525
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1490
1526
 
@@ -1514,7 +1550,7 @@ DESCRIPTION
1514
1550
  open the project page in a web browser
1515
1551
  ```
1516
1552
 
1517
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/open.ts)_
1553
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/open.ts)_
1518
1554
 
1519
1555
  ## `eas project:info`
1520
1556
 
@@ -1528,7 +1564,7 @@ DESCRIPTION
1528
1564
  information about the current project
1529
1565
  ```
1530
1566
 
1531
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/project/info.ts)_
1567
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/project/info.ts)_
1532
1568
 
1533
1569
  ## `eas project:init`
1534
1570
 
@@ -1551,7 +1587,7 @@ ALIASES
1551
1587
  $ eas init
1552
1588
  ```
1553
1589
 
1554
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/project/init.ts)_
1590
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/project/init.ts)_
1555
1591
 
1556
1592
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
1557
1593
 
@@ -1569,7 +1605,7 @@ ALIASES
1569
1605
  $ eas onboarding
1570
1606
  ```
1571
1607
 
1572
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1608
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/project/onboarding.ts)_
1573
1609
 
1574
1610
  ## `eas submit`
1575
1611
 
@@ -1600,7 +1636,7 @@ ALIASES
1600
1636
  $ eas build:submit
1601
1637
  ```
1602
1638
 
1603
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/submit.ts)_
1639
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/submit.ts)_
1604
1640
 
1605
1641
  ## `eas update`
1606
1642
 
@@ -1642,7 +1678,7 @@ DESCRIPTION
1642
1678
  publish an update group
1643
1679
  ```
1644
1680
 
1645
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/index.ts)_
1681
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/index.ts)_
1646
1682
 
1647
1683
  ## `eas update:configure`
1648
1684
 
@@ -1662,7 +1698,7 @@ DESCRIPTION
1662
1698
  configure the project to support EAS Update
1663
1699
  ```
1664
1700
 
1665
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/configure.ts)_
1701
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/configure.ts)_
1666
1702
 
1667
1703
  ## `eas update:delete GROUPID`
1668
1704
 
@@ -1683,7 +1719,7 @@ DESCRIPTION
1683
1719
  delete all the updates in an update group
1684
1720
  ```
1685
1721
 
1686
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/delete.ts)_
1722
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/delete.ts)_
1687
1723
 
1688
1724
  ## `eas update:edit [GROUPID]`
1689
1725
 
@@ -1707,7 +1743,7 @@ DESCRIPTION
1707
1743
  edit all the updates in an update group
1708
1744
  ```
1709
1745
 
1710
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/edit.ts)_
1746
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/edit.ts)_
1711
1747
 
1712
1748
  ## `eas update:list`
1713
1749
 
@@ -1729,7 +1765,7 @@ DESCRIPTION
1729
1765
  view the recent updates
1730
1766
  ```
1731
1767
 
1732
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/list.ts)_
1768
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/list.ts)_
1733
1769
 
1734
1770
  ## `eas update:republish`
1735
1771
 
@@ -1761,7 +1797,7 @@ DESCRIPTION
1761
1797
  roll back to an existing update
1762
1798
  ```
1763
1799
 
1764
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/republish.ts)_
1800
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/republish.ts)_
1765
1801
 
1766
1802
  ## `eas update:roll-back-to-embedded`
1767
1803
 
@@ -1789,7 +1825,7 @@ DESCRIPTION
1789
1825
  roll back to the embedded update
1790
1826
  ```
1791
1827
 
1792
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1828
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1793
1829
 
1794
1830
  ## `eas update:rollback`
1795
1831
 
@@ -1809,7 +1845,7 @@ DESCRIPTION
1809
1845
  roll back to an embedded update or an existing update
1810
1846
  ```
1811
1847
 
1812
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/rollback.ts)_
1848
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/rollback.ts)_
1813
1849
 
1814
1850
  ## `eas update:view GROUPID`
1815
1851
 
@@ -1829,7 +1865,7 @@ DESCRIPTION
1829
1865
  update group details
1830
1866
  ```
1831
1867
 
1832
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/update/view.ts)_
1868
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/update/view.ts)_
1833
1869
 
1834
1870
  ## `eas webhook:create`
1835
1871
 
@@ -1850,7 +1886,7 @@ DESCRIPTION
1850
1886
  create a webhook
1851
1887
  ```
1852
1888
 
1853
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/webhook/create.ts)_
1889
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/webhook/create.ts)_
1854
1890
 
1855
1891
  ## `eas webhook:delete [ID]`
1856
1892
 
@@ -1870,7 +1906,7 @@ DESCRIPTION
1870
1906
  delete a webhook
1871
1907
  ```
1872
1908
 
1873
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1909
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/webhook/delete.ts)_
1874
1910
 
1875
1911
  ## `eas webhook:list`
1876
1912
 
@@ -1888,7 +1924,7 @@ DESCRIPTION
1888
1924
  list webhooks
1889
1925
  ```
1890
1926
 
1891
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/webhook/list.ts)_
1927
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/webhook/list.ts)_
1892
1928
 
1893
1929
  ## `eas webhook:update`
1894
1930
 
@@ -1910,7 +1946,7 @@ DESCRIPTION
1910
1946
  update a webhook
1911
1947
  ```
1912
1948
 
1913
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/webhook/update.ts)_
1949
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/webhook/update.ts)_
1914
1950
 
1915
1951
  ## `eas webhook:view ID`
1916
1952
 
@@ -1927,7 +1963,7 @@ DESCRIPTION
1927
1963
  view a webhook
1928
1964
  ```
1929
1965
 
1930
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/webhook/view.ts)_
1966
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/webhook/view.ts)_
1931
1967
 
1932
1968
  ## `eas whoami`
1933
1969
 
@@ -2011,7 +2047,7 @@ DESCRIPTION
2011
2047
  create a new workflow configuration YAML file
2012
2048
  ```
2013
2049
 
2014
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/workflow/create.ts)_
2050
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/workflow/create.ts)_
2015
2051
 
2016
2052
  ## `eas workflow:run [FILE]`
2017
2053
 
@@ -2031,7 +2067,7 @@ DESCRIPTION
2031
2067
  Run an EAS workflow
2032
2068
  ```
2033
2069
 
2034
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/workflow/run.ts)_
2070
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/workflow/run.ts)_
2035
2071
 
2036
2072
  ## `eas workflow:validate PATH`
2037
2073
 
@@ -2051,5 +2087,5 @@ DESCRIPTION
2051
2087
  validate a workflow configuration yaml file
2052
2088
  ```
2053
2089
 
2054
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.1.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2090
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.2.1/packages/eas-cli/src/commands/workflow/validate.ts)_
2055
2091
  <!-- commandsstop -->