eas-cli 19.1.0 → 20.0.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 (30) hide show
  1. package/README.md +301 -100
  2. package/build/commands/go.d.ts +1 -0
  3. package/build/commands/go.js +29 -1
  4. package/build/commands/observe/events.d.ts +3 -3
  5. package/build/commands/observe/events.js +69 -51
  6. package/build/commands/observe/{logs.d.ts → metrics-summary.d.ts} +3 -11
  7. package/build/commands/observe/metrics-summary.js +95 -0
  8. package/build/commands/observe/metrics.d.ts +8 -3
  9. package/build/commands/observe/metrics.js +63 -47
  10. package/build/commands/observe/routes.d.ts +0 -1
  11. package/build/commands/observe/routes.js +0 -4
  12. package/build/commands/observe/versions.d.ts +0 -1
  13. package/build/commands/observe/versions.js +0 -4
  14. package/build/commands/update/embedded/upload.d.ts +20 -0
  15. package/build/commands/update/embedded/upload.js +129 -0
  16. package/build/graphql/client.js +1 -0
  17. package/build/graphql/generated.d.ts +70 -1
  18. package/build/graphql/mutations/EmbeddedUpdateAssetMutation.d.ts +13 -0
  19. package/build/graphql/mutations/EmbeddedUpdateAssetMutation.js +32 -0
  20. package/build/graphql/mutations/EmbeddedUpdateMutation.d.ts +14 -0
  21. package/build/graphql/mutations/EmbeddedUpdateMutation.js +37 -0
  22. package/build/graphql/queries/WorkflowRunQuery.d.ts +2 -1
  23. package/build/graphql/queries/WorkflowRunQuery.js +19 -6
  24. package/build/observe/formatCustomEvents.js +5 -5
  25. package/build/observe/metricNames.js +2 -0
  26. package/build/update/embeddedManifest.d.ts +3 -0
  27. package/build/update/embeddedManifest.js +28 -0
  28. package/oclif.manifest.json +2476 -2350
  29. package/package.json +6 -6
  30. package/build/commands/observe/logs.js +0 -141
package/README.md CHANGED
@@ -133,6 +133,11 @@ eas --help COMMAND
133
133
  * [`eas metadata:pull`](#eas-metadatapull)
134
134
  * [`eas metadata:push`](#eas-metadatapush)
135
135
  * [`eas new [PATH]`](#eas-new-path)
136
+ * [`eas observe:events [EVENTNAME]`](#eas-observeevents-eventname)
137
+ * [`eas observe:metrics [METRIC]`](#eas-observemetrics-metric)
138
+ * [`eas observe:metrics-summary`](#eas-observemetrics-summary)
139
+ * [`eas observe:routes`](#eas-observeroutes)
140
+ * [`eas observe:versions`](#eas-observeversions)
136
141
  * [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
137
142
  * [`eas open`](#eas-open)
138
143
  * [`eas project:info`](#eas-projectinfo)
@@ -144,6 +149,7 @@ eas --help COMMAND
144
149
  * [`eas update:configure`](#eas-updateconfigure)
145
150
  * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
146
151
  * [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
152
+ * [`eas update:embedded:upload`](#eas-updateembeddedupload)
147
153
  * [`eas update:insights GROUPID`](#eas-updateinsights-groupid)
148
154
  * [`eas update:list`](#eas-updatelist)
149
155
  * [`eas update:republish`](#eas-updaterepublish)
@@ -190,7 +196,7 @@ ALIASES
190
196
  $ eas login
191
197
  ```
192
198
 
193
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/account/login.ts)_
199
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/login.ts)_
194
200
 
195
201
  ## `eas account:logout`
196
202
 
@@ -207,7 +213,7 @@ ALIASES
207
213
  $ eas logout
208
214
  ```
209
215
 
210
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/account/logout.ts)_
216
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/logout.ts)_
211
217
 
212
218
  ## `eas account:usage [ACCOUNT_NAME]`
213
219
 
@@ -229,7 +235,7 @@ DESCRIPTION
229
235
  view account usage and billing for the current cycle
230
236
  ```
231
237
 
232
- _See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/account/usage.ts)_
238
+ _See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/usage.ts)_
233
239
 
234
240
  ## `eas account:view`
235
241
 
@@ -246,7 +252,7 @@ ALIASES
246
252
  $ eas whoami
247
253
  ```
248
254
 
249
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/account/view.ts)_
255
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/view.ts)_
250
256
 
251
257
  ## `eas analytics [STATUS]`
252
258
 
@@ -260,7 +266,7 @@ DESCRIPTION
260
266
  display or change analytics settings
261
267
  ```
262
268
 
263
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/analytics.ts)_
269
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/analytics.ts)_
264
270
 
265
271
  ## `eas autocomplete [SHELL]`
266
272
 
@@ -312,7 +318,7 @@ DESCRIPTION
312
318
  create a branch
313
319
  ```
314
320
 
315
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/branch/create.ts)_
321
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/create.ts)_
316
322
 
317
323
  ## `eas branch:delete [NAME]`
318
324
 
@@ -333,7 +339,7 @@ DESCRIPTION
333
339
  delete a branch
334
340
  ```
335
341
 
336
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/branch/delete.ts)_
342
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/delete.ts)_
337
343
 
338
344
  ## `eas branch:list`
339
345
 
@@ -353,7 +359,7 @@ DESCRIPTION
353
359
  list all branches
354
360
  ```
355
361
 
356
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/branch/list.ts)_
362
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/list.ts)_
357
363
 
358
364
  ## `eas branch:rename`
359
365
 
@@ -373,7 +379,7 @@ DESCRIPTION
373
379
  rename a branch
374
380
  ```
375
381
 
376
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/branch/rename.ts)_
382
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/rename.ts)_
377
383
 
378
384
  ## `eas branch:view [NAME]`
379
385
 
@@ -396,7 +402,7 @@ DESCRIPTION
396
402
  view a branch
397
403
  ```
398
404
 
399
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/branch/view.ts)_
405
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/view.ts)_
400
406
 
401
407
  ## `eas build`
402
408
 
@@ -437,7 +443,7 @@ DESCRIPTION
437
443
  start a build
438
444
  ```
439
445
 
440
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/index.ts)_
446
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/index.ts)_
441
447
 
442
448
  ## `eas build:cancel [BUILD_ID]`
443
449
 
@@ -457,7 +463,7 @@ DESCRIPTION
457
463
  cancel a build
458
464
  ```
459
465
 
460
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/cancel.ts)_
466
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/cancel.ts)_
461
467
 
462
468
  ## `eas build:configure`
463
469
 
@@ -475,7 +481,7 @@ DESCRIPTION
475
481
  configure the project to support EAS Build
476
482
  ```
477
483
 
478
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/configure.ts)_
484
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/configure.ts)_
479
485
 
480
486
  ## `eas build:delete [BUILD_ID]`
481
487
 
@@ -495,7 +501,7 @@ DESCRIPTION
495
501
  delete a build
496
502
  ```
497
503
 
498
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/delete.ts)_
504
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/delete.ts)_
499
505
 
500
506
  ## `eas build:dev`
501
507
 
@@ -520,7 +526,7 @@ DESCRIPTION
520
526
  run dev client simulator/emulator build with matching fingerprint or create a new one
521
527
  ```
522
528
 
523
- _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/dev.ts)_
529
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/dev.ts)_
524
530
 
525
531
  ## `eas build:download`
526
532
 
@@ -547,7 +553,7 @@ DESCRIPTION
547
553
  download a simulator/emulator build by build ID or fingerprint hash
548
554
  ```
549
555
 
550
- _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/download.ts)_
556
+ _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/download.ts)_
551
557
 
552
558
  ## `eas build:inspect`
553
559
 
@@ -585,7 +591,7 @@ DESCRIPTION
585
591
  inspect the state of the project at specific build stages, useful for troubleshooting
586
592
  ```
587
593
 
588
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/inspect.ts)_
594
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/inspect.ts)_
589
595
 
590
596
  ## `eas build:list`
591
597
 
@@ -625,7 +631,7 @@ DESCRIPTION
625
631
  list all builds for your project
626
632
  ```
627
633
 
628
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/list.ts)_
634
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/list.ts)_
629
635
 
630
636
  ## `eas build:resign`
631
637
 
@@ -655,7 +661,7 @@ DESCRIPTION
655
661
  re-sign a build archive
656
662
  ```
657
663
 
658
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/resign.ts)_
664
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/resign.ts)_
659
665
 
660
666
  ## `eas build:run`
661
667
 
@@ -683,7 +689,7 @@ DESCRIPTION
683
689
  run simulator/emulator builds from eas-cli
684
690
  ```
685
691
 
686
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/run.ts)_
692
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/run.ts)_
687
693
 
688
694
  ## `eas build:submit`
689
695
 
@@ -735,7 +741,7 @@ DESCRIPTION
735
741
  get the latest version from EAS servers
736
742
  ```
737
743
 
738
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/version/get.ts)_
744
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/get.ts)_
739
745
 
740
746
  ## `eas build:version:set`
741
747
 
@@ -753,7 +759,7 @@ DESCRIPTION
753
759
  update version of an app
754
760
  ```
755
761
 
756
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/version/set.ts)_
762
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/set.ts)_
757
763
 
758
764
  ## `eas build:version:sync`
759
765
 
@@ -771,7 +777,7 @@ DESCRIPTION
771
777
  update a version in native code with a value stored on EAS servers
772
778
  ```
773
779
 
774
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/version/sync.ts)_
780
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/sync.ts)_
775
781
 
776
782
  ## `eas build:view [BUILD_ID]`
777
783
 
@@ -788,7 +794,7 @@ DESCRIPTION
788
794
  view a build for your project
789
795
  ```
790
796
 
791
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/build/view.ts)_
797
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/view.ts)_
792
798
 
793
799
  ## `eas channel:create [NAME]`
794
800
 
@@ -809,7 +815,7 @@ DESCRIPTION
809
815
  create a channel
810
816
  ```
811
817
 
812
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/create.ts)_
818
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/create.ts)_
813
819
 
814
820
  ## `eas channel:delete [NAME]`
815
821
 
@@ -830,7 +836,7 @@ DESCRIPTION
830
836
  Delete a channel
831
837
  ```
832
838
 
833
- _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/delete.ts)_
839
+ _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/delete.ts)_
834
840
 
835
841
  ## `eas channel:edit [NAME]`
836
842
 
@@ -852,7 +858,7 @@ DESCRIPTION
852
858
  point a channel at a new branch
853
859
  ```
854
860
 
855
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/edit.ts)_
861
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/edit.ts)_
856
862
 
857
863
  ## `eas channel:insights`
858
864
 
@@ -876,7 +882,7 @@ DESCRIPTION
876
882
  display adoption, crash, and unique-user insights for a channel + runtime version
877
883
  ```
878
884
 
879
- _See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/insights.ts)_
885
+ _See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/insights.ts)_
880
886
 
881
887
  ## `eas channel:list`
882
888
 
@@ -896,7 +902,7 @@ DESCRIPTION
896
902
  list all channels
897
903
  ```
898
904
 
899
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/list.ts)_
905
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/list.ts)_
900
906
 
901
907
  ## `eas channel:pause [NAME]`
902
908
 
@@ -918,7 +924,7 @@ DESCRIPTION
918
924
  pause a channel to stop it from sending updates
919
925
  ```
920
926
 
921
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/pause.ts)_
927
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/pause.ts)_
922
928
 
923
929
  ## `eas channel:resume [NAME]`
924
930
 
@@ -940,7 +946,7 @@ DESCRIPTION
940
946
  resume a channel to start sending updates
941
947
  ```
942
948
 
943
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/resume.ts)_
949
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/resume.ts)_
944
950
 
945
951
  ## `eas channel:rollout [CHANNEL]`
946
952
 
@@ -975,7 +981,7 @@ DESCRIPTION
975
981
  Roll a new branch out on a channel incrementally.
976
982
  ```
977
983
 
978
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/rollout.ts)_
984
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/rollout.ts)_
979
985
 
980
986
  ## `eas channel:view [NAME]`
981
987
 
@@ -998,7 +1004,7 @@ DESCRIPTION
998
1004
  view a channel
999
1005
  ```
1000
1006
 
1001
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/channel/view.ts)_
1007
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/view.ts)_
1002
1008
 
1003
1009
  ## `eas config`
1004
1010
 
@@ -1019,7 +1025,7 @@ DESCRIPTION
1019
1025
  display project configuration (app.json + eas.json)
1020
1026
  ```
1021
1027
 
1022
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/config.ts)_
1028
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/config.ts)_
1023
1029
 
1024
1030
  ## `eas credentials`
1025
1031
 
@@ -1036,7 +1042,7 @@ DESCRIPTION
1036
1042
  manage credentials
1037
1043
  ```
1038
1044
 
1039
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/credentials/index.ts)_
1045
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/credentials/index.ts)_
1040
1046
 
1041
1047
  ## `eas credentials:configure-build`
1042
1048
 
@@ -1054,7 +1060,7 @@ DESCRIPTION
1054
1060
  Set up credentials for building your project.
1055
1061
  ```
1056
1062
 
1057
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
1063
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
1058
1064
 
1059
1065
  ## `eas deploy [options]`
1060
1066
 
@@ -1083,7 +1089,7 @@ ALIASES
1083
1089
  $ eas worker:deploy
1084
1090
  ```
1085
1091
 
1086
- _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/deploy/index.ts)_
1092
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/index.ts)_
1087
1093
 
1088
1094
  ## `eas deploy:alias`
1089
1095
 
@@ -1108,7 +1114,7 @@ ALIASES
1108
1114
  $ eas deploy:promote
1109
1115
  ```
1110
1116
 
1111
- _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1117
+ _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1112
1118
 
1113
1119
  ## `eas deploy:alias:delete [ALIAS_NAME]`
1114
1120
 
@@ -1129,7 +1135,7 @@ ALIASES
1129
1135
  $ eas worker:alias:delete
1130
1136
  ```
1131
1137
 
1132
- _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1138
+ _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1133
1139
 
1134
1140
  ## `eas deploy:delete [DEPLOYMENT_ID]`
1135
1141
 
@@ -1150,7 +1156,7 @@ ALIASES
1150
1156
  $ eas worker:delete
1151
1157
  ```
1152
1158
 
1153
- _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1159
+ _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1154
1160
 
1155
1161
  ## `eas deploy:promote`
1156
1162
 
@@ -1187,7 +1193,7 @@ DESCRIPTION
1187
1193
  register new Apple Devices to use for internal distribution
1188
1194
  ```
1189
1195
 
1190
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/device/create.ts)_
1196
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/create.ts)_
1191
1197
 
1192
1198
  ## `eas device:delete`
1193
1199
 
@@ -1207,7 +1213,7 @@ DESCRIPTION
1207
1213
  remove a registered device from your account
1208
1214
  ```
1209
1215
 
1210
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/device/delete.ts)_
1216
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/delete.ts)_
1211
1217
 
1212
1218
  ## `eas device:list`
1213
1219
 
@@ -1228,7 +1234,7 @@ DESCRIPTION
1228
1234
  list all registered devices for your account
1229
1235
  ```
1230
1236
 
1231
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/device/list.ts)_
1237
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/list.ts)_
1232
1238
 
1233
1239
  ## `eas device:rename`
1234
1240
 
@@ -1249,7 +1255,7 @@ DESCRIPTION
1249
1255
  rename a registered device
1250
1256
  ```
1251
1257
 
1252
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/device/rename.ts)_
1258
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/rename.ts)_
1253
1259
 
1254
1260
  ## `eas device:view [UDID]`
1255
1261
 
@@ -1263,7 +1269,7 @@ DESCRIPTION
1263
1269
  view a device for your project
1264
1270
  ```
1265
1271
 
1266
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/device/view.ts)_
1272
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/view.ts)_
1267
1273
 
1268
1274
  ## `eas diagnostics`
1269
1275
 
@@ -1277,7 +1283,7 @@ DESCRIPTION
1277
1283
  display environment info
1278
1284
  ```
1279
1285
 
1280
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/diagnostics.ts)_
1286
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/diagnostics.ts)_
1281
1287
 
1282
1288
  ## `eas env:create [ENVIRONMENT]`
1283
1289
 
@@ -1309,7 +1315,7 @@ DESCRIPTION
1309
1315
  create an environment variable for the current project or account
1310
1316
  ```
1311
1317
 
1312
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/create.ts)_
1318
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/create.ts)_
1313
1319
 
1314
1320
  ## `eas env:delete [ENVIRONMENT]`
1315
1321
 
@@ -1335,7 +1341,7 @@ DESCRIPTION
1335
1341
  delete an environment variable for the current project or account
1336
1342
  ```
1337
1343
 
1338
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/delete.ts)_
1344
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/delete.ts)_
1339
1345
 
1340
1346
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1341
1347
 
@@ -1357,7 +1363,7 @@ DESCRIPTION
1357
1363
  execute a command with environment variables from the selected environment
1358
1364
  ```
1359
1365
 
1360
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/exec.ts)_
1366
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/exec.ts)_
1361
1367
 
1362
1368
  ## `eas env:get [ENVIRONMENT]`
1363
1369
 
@@ -1385,7 +1391,7 @@ DESCRIPTION
1385
1391
  view an environment variable for the current project or account
1386
1392
  ```
1387
1393
 
1388
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/get.ts)_
1394
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/get.ts)_
1389
1395
 
1390
1396
  ## `eas env:list [ENVIRONMENT]`
1391
1397
 
@@ -1413,7 +1419,7 @@ DESCRIPTION
1413
1419
  list environment variables for the current project or account
1414
1420
  ```
1415
1421
 
1416
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/list.ts)_
1422
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/list.ts)_
1417
1423
 
1418
1424
  ## `eas env:pull [ENVIRONMENT]`
1419
1425
 
@@ -1436,7 +1442,7 @@ DESCRIPTION
1436
1442
  pull environment variables for the selected environment to .env file
1437
1443
  ```
1438
1444
 
1439
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/pull.ts)_
1445
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/pull.ts)_
1440
1446
 
1441
1447
  ## `eas env:push [ENVIRONMENT]`
1442
1448
 
@@ -1458,7 +1464,7 @@ DESCRIPTION
1458
1464
  push environment variables from .env file to the selected environment
1459
1465
  ```
1460
1466
 
1461
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/push.ts)_
1467
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/push.ts)_
1462
1468
 
1463
1469
  ## `eas env:update [ENVIRONMENT]`
1464
1470
 
@@ -1492,7 +1498,7 @@ DESCRIPTION
1492
1498
  update an environment variable on the current project or account
1493
1499
  ```
1494
1500
 
1495
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/env/update.ts)_
1501
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/update.ts)_
1496
1502
 
1497
1503
  ## `eas fingerprint:compare [HASH1] [HASH2]`
1498
1504
 
@@ -1536,7 +1542,7 @@ EXAMPLES
1536
1542
  $ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
1537
1543
  ```
1538
1544
 
1539
- _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1545
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1540
1546
 
1541
1547
  ## `eas fingerprint:generate`
1542
1548
 
@@ -1567,7 +1573,7 @@ EXAMPLES
1567
1573
  $ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
1568
1574
  ```
1569
1575
 
1570
- _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1576
+ _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1571
1577
 
1572
1578
  ## `eas help [COMMAND]`
1573
1579
 
@@ -1646,7 +1652,7 @@ DESCRIPTION
1646
1652
  connect a project to an App Store Connect app
1647
1653
  ```
1648
1654
 
1649
- _See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
1655
+ _See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
1650
1656
 
1651
1657
  ## `eas integrations:asc:disconnect`
1652
1658
 
@@ -1665,7 +1671,7 @@ DESCRIPTION
1665
1671
  disconnect the current project from its App Store Connect app
1666
1672
  ```
1667
1673
 
1668
- _See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
1674
+ _See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
1669
1675
 
1670
1676
  ## `eas integrations:asc:status`
1671
1677
 
@@ -1683,7 +1689,7 @@ DESCRIPTION
1683
1689
  show the App Store Connect app link status for the current project
1684
1690
  ```
1685
1691
 
1686
- _See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
1692
+ _See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
1687
1693
 
1688
1694
  ## `eas integrations:convex:connect`
1689
1695
 
@@ -1705,7 +1711,7 @@ DESCRIPTION
1705
1711
  connect Convex to your Expo project
1706
1712
  ```
1707
1713
 
1708
- _See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
1714
+ _See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
1709
1715
 
1710
1716
  ## `eas integrations:convex:dashboard`
1711
1717
 
@@ -1719,7 +1725,7 @@ DESCRIPTION
1719
1725
  open the Convex dashboard for the linked Convex project
1720
1726
  ```
1721
1727
 
1722
- _See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
1728
+ _See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
1723
1729
 
1724
1730
  ## `eas integrations:convex:project`
1725
1731
 
@@ -1733,7 +1739,7 @@ DESCRIPTION
1733
1739
  display the Convex project linked to the current Expo app
1734
1740
  ```
1735
1741
 
1736
- _See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
1742
+ _See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
1737
1743
 
1738
1744
  ## `eas integrations:convex:project:delete`
1739
1745
 
@@ -1751,7 +1757,7 @@ DESCRIPTION
1751
1757
  remove the Convex project link for the current Expo app from EAS servers
1752
1758
  ```
1753
1759
 
1754
- _See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
1760
+ _See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
1755
1761
 
1756
1762
  ## `eas integrations:convex:team`
1757
1763
 
@@ -1765,7 +1771,7 @@ DESCRIPTION
1765
1771
  display Convex teams linked to the current Expo app's owner account
1766
1772
  ```
1767
1773
 
1768
- _See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
1774
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
1769
1775
 
1770
1776
  ## `eas integrations:convex:team:delete [CONVEX_TEAM]`
1771
1777
 
@@ -1786,7 +1792,7 @@ DESCRIPTION
1786
1792
  remove a Convex team link from the current Expo app owner account's EAS servers
1787
1793
  ```
1788
1794
 
1789
- _See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
1795
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
1790
1796
 
1791
1797
  ## `eas integrations:convex:team:invite [CONVEX_TEAM]`
1792
1798
 
@@ -1806,7 +1812,7 @@ DESCRIPTION
1806
1812
  send a Convex team invitation to your verified email address
1807
1813
  ```
1808
1814
 
1809
- _See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
1815
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
1810
1816
 
1811
1817
  ## `eas login`
1812
1818
 
@@ -1858,7 +1864,7 @@ DESCRIPTION
1858
1864
  validate the local store configuration
1859
1865
  ```
1860
1866
 
1861
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1867
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1862
1868
 
1863
1869
  ## `eas metadata:pull`
1864
1870
 
@@ -1876,7 +1882,7 @@ DESCRIPTION
1876
1882
  generate the local store configuration from the app stores
1877
1883
  ```
1878
1884
 
1879
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1885
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1880
1886
 
1881
1887
  ## `eas metadata:push`
1882
1888
 
@@ -1894,7 +1900,7 @@ DESCRIPTION
1894
1900
  sync the local store configuration to the app stores
1895
1901
  ```
1896
1902
 
1897
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/metadata/push.ts)_
1903
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/push.ts)_
1898
1904
 
1899
1905
  ## `eas new [PATH]`
1900
1906
 
@@ -1918,6 +1924,171 @@ ALIASES
1918
1924
  $ eas new
1919
1925
  ```
1920
1926
 
1927
+ ## `eas observe:events [EVENTNAME]`
1928
+
1929
+ display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.
1930
+
1931
+ ```
1932
+ USAGE
1933
+ $ eas observe:events [EVENTNAME] [--platform android|ios] [--after <value>] [--limit <value>] [--start <value> |
1934
+ --days <value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--session-id <value>]
1935
+ [--all-events] [--project-id <value>] [--json] [--non-interactive]
1936
+
1937
+ ARGUMENTS
1938
+ [EVENTNAME] Event name to filter by
1939
+
1940
+ FLAGS
1941
+ --after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
1942
+ --all-events When no event name argument is provided, list all events across all event names instead of a
1943
+ summary of event names + counts.
1944
+ --app-version=<value> Filter by app version
1945
+ --days=<value> Show results from the last N days (mutually exclusive with --start/--end)
1946
+ --end=<value> End of time range (ISO date)
1947
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1948
+ --limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
1949
+ --non-interactive Run the command in non-interactive mode.
1950
+ --platform=<option> Filter by platform
1951
+ <options: android|ios>
1952
+ --project-id=<value> EAS project ID (defaults to the project ID of the current directory)
1953
+ --session-id=<value> Filter by session ID
1954
+ --start=<value> Start of time range (ISO date)
1955
+ --update-id=<value> Filter by EAS update ID
1956
+
1957
+ DESCRIPTION
1958
+ display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no
1959
+ arguments, a list of the available event names and associated event counts is returned.
1960
+ ```
1961
+
1962
+ _See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/events.ts)_
1963
+
1964
+ ## `eas observe:metrics [METRIC]`
1965
+
1966
+ display individual performance metric samples ordered by value
1967
+
1968
+ ```
1969
+ USAGE
1970
+ $ eas observe:metrics [METRIC] [--sort slowest|fastest|newest|oldest] [--platform android|ios] [--after <value>]
1971
+ [--limit <value>] [--start <value> | --days <value>] [--end <value> | ] [--app-version <value>] [--update-id
1972
+ <value>] [--project-id <value>] [--json] [--non-interactive]
1973
+
1974
+ ARGUMENTS
1975
+ [METRIC] (tti|ttr|cold_launch|warm_launch|bundle_load|update_download) Metric to query (e.g. tti, cold_launch)
1976
+
1977
+ FLAGS
1978
+ --after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
1979
+ --app-version=<value> Filter by app version
1980
+ --days=<value> Show results from the last N days (mutually exclusive with --start/--end)
1981
+ --end=<value> End of time range (ISO date)
1982
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1983
+ --limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
1984
+ --non-interactive Run the command in non-interactive mode.
1985
+ --platform=<option> Filter by platform
1986
+ <options: android|ios>
1987
+ --project-id=<value> EAS project ID (defaults to the project ID of the current directory)
1988
+ --sort=<option> [default: oldest] Sort order for events
1989
+ <options: slowest|fastest|newest|oldest>
1990
+ --start=<value> Start of time range (ISO date)
1991
+ --update-id=<value> Filter by EAS update ID
1992
+
1993
+ DESCRIPTION
1994
+ display individual performance metric samples ordered by value
1995
+ ```
1996
+
1997
+ _See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/metrics.ts)_
1998
+
1999
+ ## `eas observe:metrics-summary`
2000
+
2001
+ display aggregated performance metric statistics grouped by app version
2002
+
2003
+ ```
2004
+ USAGE
2005
+ $ eas observe:metrics-summary [--platform android|ios] [--metric
2006
+ tti|ttr|cold_launch|warm_launch|bundle_load|update_download...] [--stat
2007
+ min|median|max|average|p80|p90|p99|eventCount...] [--start <value> | --days <value>] [--end <value> | ]
2008
+ [--project-id <value>] [--json] [--non-interactive]
2009
+
2010
+ FLAGS
2011
+ --days=<value> Show results from the last N days (mutually exclusive with --start/--end)
2012
+ --end=<value> End of time range (ISO date)
2013
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
2014
+ --metric=<option>... Metric name to display (can be specified multiple times).
2015
+ <options: tti|ttr|cold_launch|warm_launch|bundle_load|update_download>
2016
+ --non-interactive Run the command in non-interactive mode.
2017
+ --platform=<option> Filter by platform
2018
+ <options: android|ios>
2019
+ --project-id=<value> EAS project ID (defaults to the project ID of the current directory)
2020
+ --start=<value> Start of time range (ISO date)
2021
+ --stat=<option>... Statistic to display per metric (can be specified multiple times)
2022
+ <options: min|median|max|average|p80|p90|p99|eventCount>
2023
+
2024
+ DESCRIPTION
2025
+ display aggregated performance metric statistics grouped by app version
2026
+ ```
2027
+
2028
+ _See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
2029
+
2030
+ ## `eas observe:routes`
2031
+
2032
+ display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
2033
+
2034
+ ```
2035
+ USAGE
2036
+ $ eas observe:routes [--platform android|ios] [--metric cold_ttr|warm_ttr|nav_tti...] [--stat
2037
+ median|med|p90|count|event_count|eventCount...] [--after <value>] [--limit <value>] [--start <value> | --days
2038
+ <value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--build-number <value>] [--route-name
2039
+ <value>...] [--project-id <value>] [--json] [--non-interactive]
2040
+
2041
+ FLAGS
2042
+ --after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
2043
+ --app-version=<value> Filter by app version
2044
+ --build-number=<value> Filter by app build number
2045
+ --days=<value> Show results from the last N days (mutually exclusive with --start/--end)
2046
+ --end=<value> End of time range (ISO date)
2047
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
2048
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 200.
2049
+ --metric=<option>... Navigation metric to display (can be specified multiple times). Defaults to all three.
2050
+ <options: cold_ttr|warm_ttr|nav_tti>
2051
+ --non-interactive Run the command in non-interactive mode.
2052
+ --platform=<option> Filter by platform
2053
+ <options: android|ios>
2054
+ --project-id=<value> EAS project ID (defaults to the project ID of the current directory)
2055
+ --route-name=<value>... Filter by route name (can be specified multiple times to include several routes)
2056
+ --start=<value> Start of time range (ISO date)
2057
+ --stat=<option>... Statistic to display per metric (can be specified multiple times)
2058
+ <options: median|med|p90|count|event_count|eventCount>
2059
+ --update-id=<value> Filter by EAS update ID
2060
+
2061
+ DESCRIPTION
2062
+ display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
2063
+ ```
2064
+
2065
+ _See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/routes.ts)_
2066
+
2067
+ ## `eas observe:versions`
2068
+
2069
+ display app versions with build and update details
2070
+
2071
+ ```
2072
+ USAGE
2073
+ $ eas observe:versions [--platform android|ios] [--start <value> | --days <value>] [--end <value> | ] [--project-id
2074
+ <value>] [--json] [--non-interactive]
2075
+
2076
+ FLAGS
2077
+ --days=<value> Show results from the last N days (mutually exclusive with --start/--end)
2078
+ --end=<value> End of time range (ISO date)
2079
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
2080
+ --non-interactive Run the command in non-interactive mode.
2081
+ --platform=<option> Filter by platform
2082
+ <options: android|ios>
2083
+ --project-id=<value> EAS project ID (defaults to the project ID of the current directory)
2084
+ --start=<value> Start of time range (ISO date)
2085
+
2086
+ DESCRIPTION
2087
+ display app versions with build and update details
2088
+ ```
2089
+
2090
+ _See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/versions.ts)_
2091
+
1921
2092
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1922
2093
 
1923
2094
  continue onboarding process started on the https://expo.new website.
@@ -1946,7 +2117,7 @@ DESCRIPTION
1946
2117
  open the project page in a web browser
1947
2118
  ```
1948
2119
 
1949
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/open.ts)_
2120
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/open.ts)_
1950
2121
 
1951
2122
  ## `eas project:info`
1952
2123
 
@@ -1960,7 +2131,7 @@ DESCRIPTION
1960
2131
  information about the current project
1961
2132
  ```
1962
2133
 
1963
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/project/info.ts)_
2134
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/info.ts)_
1964
2135
 
1965
2136
  ## `eas project:init`
1966
2137
 
@@ -1983,7 +2154,7 @@ ALIASES
1983
2154
  $ eas init
1984
2155
  ```
1985
2156
 
1986
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/project/init.ts)_
2157
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/init.ts)_
1987
2158
 
1988
2159
  ## `eas project:new [PATH]`
1989
2160
 
@@ -2007,7 +2178,7 @@ ALIASES
2007
2178
  $ eas new
2008
2179
  ```
2009
2180
 
2010
- _See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/project/new.ts)_
2181
+ _See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/new.ts)_
2011
2182
 
2012
2183
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
2013
2184
 
@@ -2025,7 +2196,7 @@ ALIASES
2025
2196
  $ eas onboarding
2026
2197
  ```
2027
2198
 
2028
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/project/onboarding.ts)_
2199
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/onboarding.ts)_
2029
2200
 
2030
2201
  ## `eas submit`
2031
2202
 
@@ -2058,7 +2229,7 @@ ALIASES
2058
2229
  $ eas build:submit
2059
2230
  ```
2060
2231
 
2061
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/submit.ts)_
2232
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/submit.ts)_
2062
2233
 
2063
2234
  ## `eas update`
2064
2235
 
@@ -2101,7 +2272,7 @@ DESCRIPTION
2101
2272
  publish an update group
2102
2273
  ```
2103
2274
 
2104
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/index.ts)_
2275
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/index.ts)_
2105
2276
 
2106
2277
  ## `eas update:configure`
2107
2278
 
@@ -2122,7 +2293,7 @@ DESCRIPTION
2122
2293
  configure the project to support EAS Update
2123
2294
  ```
2124
2295
 
2125
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/configure.ts)_
2296
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/configure.ts)_
2126
2297
 
2127
2298
  ## `eas update:delete GROUPID`
2128
2299
 
@@ -2143,7 +2314,7 @@ DESCRIPTION
2143
2314
  delete all the updates in an update group
2144
2315
  ```
2145
2316
 
2146
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/delete.ts)_
2317
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/delete.ts)_
2147
2318
 
2148
2319
  ## `eas update:edit [GROUPID]`
2149
2320
 
@@ -2168,7 +2339,37 @@ DESCRIPTION
2168
2339
  edit all the updates in an update group
2169
2340
  ```
2170
2341
 
2171
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/edit.ts)_
2342
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/edit.ts)_
2343
+
2344
+ ## `eas update:embedded:upload`
2345
+
2346
+ upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
2347
+
2348
+ ```
2349
+ USAGE
2350
+ $ eas update:embedded:upload -p ios|android --bundle <value> --manifest <value> --channel <value> [--build-id <value>]
2351
+ [--json] [--non-interactive]
2352
+
2353
+ FLAGS
2354
+ -p, --platform=<option> (required) Platform of the embedded bundle
2355
+ <options: ios|android>
2356
+ --build-id=<value> EAS Build ID that produced this binary (required when invoked from EAS Build)
2357
+ --bundle=<value> (required) Path to the embedded JS bundle file
2358
+ --channel=<value> (required) Channel name the embedded update should be associated with
2359
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
2360
+ --manifest=<value> (required) Path to the app.manifest file embedded in the build
2361
+ --non-interactive Run the command in non-interactive mode.
2362
+
2363
+ DESCRIPTION
2364
+ upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
2365
+
2366
+ EXAMPLES
2367
+ $ eas update:embedded:upload --platform ios --bundle ios/build/App.app/main.jsbundle --manifest ios/build/App.app/app.manifest --channel production
2368
+
2369
+ $ eas update:embedded:upload --platform android --bundle android/app/src/main/assets/index.android.bundle --manifest android/app/src/main/assets/app.manifest --channel production --build-id <BUILD-ID>
2370
+ ```
2371
+
2372
+ _See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
2172
2373
 
2173
2374
  ## `eas update:insights GROUPID`
2174
2375
 
@@ -2195,7 +2396,7 @@ DESCRIPTION
2195
2396
  display launch, crash, unique-user, and size insights for an update group
2196
2397
  ```
2197
2398
 
2198
- _See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/insights.ts)_
2399
+ _See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/insights.ts)_
2199
2400
 
2200
2401
  ## `eas update:list`
2201
2402
 
@@ -2222,7 +2423,7 @@ DESCRIPTION
2222
2423
  view the recent updates
2223
2424
  ```
2224
2425
 
2225
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/list.ts)_
2426
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/list.ts)_
2226
2427
 
2227
2428
  ## `eas update:republish`
2228
2429
 
@@ -2260,7 +2461,7 @@ DESCRIPTION
2260
2461
  roll back to an existing update
2261
2462
  ```
2262
2463
 
2263
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/republish.ts)_
2464
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/republish.ts)_
2264
2465
 
2265
2466
  ## `eas update:revert-update-rollout`
2266
2467
 
@@ -2288,7 +2489,7 @@ DESCRIPTION
2288
2489
  revert a rollout update for a project
2289
2490
  ```
2290
2491
 
2291
- _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
2492
+ _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
2292
2493
 
2293
2494
  ## `eas update:roll-back-to-embedded`
2294
2495
 
@@ -2318,7 +2519,7 @@ DESCRIPTION
2318
2519
  roll back to the embedded update
2319
2520
  ```
2320
2521
 
2321
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
2522
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
2322
2523
 
2323
2524
  ## `eas update:rollback`
2324
2525
 
@@ -2339,7 +2540,7 @@ DESCRIPTION
2339
2540
  instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
2340
2541
  ```
2341
2542
 
2342
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/rollback.ts)_
2543
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/rollback.ts)_
2343
2544
 
2344
2545
  ## `eas update:view GROUPID`
2345
2546
 
@@ -2363,7 +2564,7 @@ DESCRIPTION
2363
2564
  update group details
2364
2565
  ```
2365
2566
 
2366
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/update/view.ts)_
2567
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/view.ts)_
2367
2568
 
2368
2569
  ## `eas upload`
2369
2570
 
@@ -2384,7 +2585,7 @@ DESCRIPTION
2384
2585
  upload a local build and generate a sharable link
2385
2586
  ```
2386
2587
 
2387
- _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/upload.ts)_
2588
+ _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/upload.ts)_
2388
2589
 
2389
2590
  ## `eas webhook:create`
2390
2591
 
@@ -2406,7 +2607,7 @@ DESCRIPTION
2406
2607
  create a webhook
2407
2608
  ```
2408
2609
 
2409
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/webhook/create.ts)_
2610
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/create.ts)_
2410
2611
 
2411
2612
  ## `eas webhook:delete [ID]`
2412
2613
 
@@ -2426,7 +2627,7 @@ DESCRIPTION
2426
2627
  delete a webhook
2427
2628
  ```
2428
2629
 
2429
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2630
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2430
2631
 
2431
2632
  ## `eas webhook:list`
2432
2633
 
@@ -2445,7 +2646,7 @@ DESCRIPTION
2445
2646
  list webhooks
2446
2647
  ```
2447
2648
 
2448
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/webhook/list.ts)_
2649
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/list.ts)_
2449
2650
 
2450
2651
  ## `eas webhook:update`
2451
2652
 
@@ -2468,7 +2669,7 @@ DESCRIPTION
2468
2669
  update a webhook
2469
2670
  ```
2470
2671
 
2471
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/webhook/update.ts)_
2672
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/update.ts)_
2472
2673
 
2473
2674
  ## `eas webhook:view ID`
2474
2675
 
@@ -2485,7 +2686,7 @@ DESCRIPTION
2485
2686
  view a webhook
2486
2687
  ```
2487
2688
 
2488
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/webhook/view.ts)_
2689
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/view.ts)_
2489
2690
 
2490
2691
  ## `eas whoami`
2491
2692
 
@@ -2606,7 +2807,7 @@ DESCRIPTION
2606
2807
  to cancel.
2607
2808
  ```
2608
2809
 
2609
- _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2810
+ _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2610
2811
 
2611
2812
  ## `eas workflow:create [NAME]`
2612
2813
 
@@ -2626,7 +2827,7 @@ DESCRIPTION
2626
2827
  create a new workflow configuration YAML file
2627
2828
  ```
2628
2829
 
2629
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/create.ts)_
2830
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/create.ts)_
2630
2831
 
2631
2832
  ## `eas workflow:logs [ID]`
2632
2833
 
@@ -2650,7 +2851,7 @@ DESCRIPTION
2650
2851
  If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
2651
2852
  ```
2652
2853
 
2653
- _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/logs.ts)_
2854
+ _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/logs.ts)_
2654
2855
 
2655
2856
  ## `eas workflow:run FILE`
2656
2857
 
@@ -2690,7 +2891,7 @@ FLAG DESCRIPTIONS
2690
2891
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
2691
2892
  ```
2692
2893
 
2693
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/run.ts)_
2894
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/run.ts)_
2694
2895
 
2695
2896
  ## `eas workflow:runs`
2696
2897
 
@@ -2712,7 +2913,7 @@ DESCRIPTION
2712
2913
  list recent workflow runs for this project, with their IDs, statuses, and timestamps
2713
2914
  ```
2714
2915
 
2715
- _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2916
+ _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2716
2917
 
2717
2918
  ## `eas workflow:status [WORKFLOW_RUN_ID]`
2718
2919
 
@@ -2740,7 +2941,7 @@ FLAG DESCRIPTIONS
2740
2941
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
2741
2942
  ```
2742
2943
 
2743
- _See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/status.ts)_
2944
+ _See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/status.ts)_
2744
2945
 
2745
2946
  ## `eas workflow:validate PATH`
2746
2947
 
@@ -2760,7 +2961,7 @@ DESCRIPTION
2760
2961
  validate a workflow configuration yaml file
2761
2962
  ```
2762
2963
 
2763
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2964
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2764
2965
 
2765
2966
  ## `eas workflow:view [ID]`
2766
2967
 
@@ -2782,5 +2983,5 @@ DESCRIPTION
2782
2983
  workflow runs for the current project.
2783
2984
  ```
2784
2985
 
2785
- _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v19.1.0/packages/eas-cli/src/commands/workflow/view.ts)_
2986
+ _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/view.ts)_
2786
2987
  <!-- commandsstop -->