eas-cli 20.2.0 → 20.3.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 (31) hide show
  1. package/README.md +202 -110
  2. package/build/commandUtils/posthog.d.ts +4 -0
  3. package/build/commandUtils/posthog.js +23 -0
  4. package/build/commands/account/audit.d.ts +17 -0
  5. package/build/commands/account/audit.js +112 -0
  6. package/build/commands/integrations/posthog/connect.d.ts +27 -0
  7. package/build/commands/integrations/posthog/connect.js +432 -0
  8. package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
  9. package/build/commands/integrations/posthog/dashboard.js +66 -0
  10. package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
  11. package/build/commands/integrations/posthog/disconnect.js +80 -0
  12. package/build/commands/update/view.d.ts +7 -0
  13. package/build/commands/update/view.js +30 -3
  14. package/build/graphql/generated.d.ts +519 -30
  15. package/build/graphql/generated.js +29 -5
  16. package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
  17. package/build/graphql/mutations/PostHogMutation.js +55 -0
  18. package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
  19. package/build/graphql/queries/AuditLogQuery.js +57 -0
  20. package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
  21. package/build/graphql/queries/PostHogQuery.d.ts +6 -0
  22. package/build/graphql/queries/PostHogQuery.js +49 -0
  23. package/build/graphql/types/AuditLog.d.ts +1 -0
  24. package/build/graphql/types/AuditLog.js +18 -0
  25. package/build/graphql/types/PostHogConnection.d.ts +7 -0
  26. package/build/graphql/types/PostHogConnection.js +30 -0
  27. package/build/simulator/utils.js +28 -5
  28. package/build/user/SessionManager.d.ts +1 -22
  29. package/build/user/SessionManager.js +7 -89
  30. package/oclif.manifest.json +566 -186
  31. package/package.json +5 -2
package/README.md CHANGED
@@ -55,6 +55,7 @@ eas --help COMMAND
55
55
  # Commands
56
56
 
57
57
  <!-- commands -->
58
+ * [`eas account:audit [ACCOUNT_NAME]`](#eas-accountaudit-account_name)
58
59
  * [`eas account:login`](#eas-accountlogin)
59
60
  * [`eas account:logout`](#eas-accountlogout)
60
61
  * [`eas account:usage [ACCOUNT_NAME]`](#eas-accountusage-account_name)
@@ -127,6 +128,9 @@ eas --help COMMAND
127
128
  * [`eas integrations:convex:team`](#eas-integrationsconvexteam)
128
129
  * [`eas integrations:convex:team:delete [CONVEX_TEAM]`](#eas-integrationsconvexteamdelete-convex_team)
129
130
  * [`eas integrations:convex:team:invite [CONVEX_TEAM]`](#eas-integrationsconvexteaminvite-convex_team)
131
+ * [`eas integrations:posthog:connect`](#eas-integrationsposthogconnect)
132
+ * [`eas integrations:posthog:dashboard`](#eas-integrationsposthogdashboard)
133
+ * [`eas integrations:posthog:disconnect`](#eas-integrationsposthogdisconnect)
130
134
  * [`eas login`](#eas-login)
131
135
  * [`eas logout`](#eas-logout)
132
136
  * [`eas metadata:lint`](#eas-metadatalint)
@@ -180,6 +184,30 @@ eas --help COMMAND
180
184
  * [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
181
185
  * [`eas workflow:view [ID]`](#eas-workflowview-id)
182
186
 
187
+ ## `eas account:audit [ACCOUNT_NAME]`
188
+
189
+ view the audit logs for an account
190
+
191
+ ```
192
+ USAGE
193
+ $ eas account:audit [ACCOUNT_NAME] [--limit <value>] [--after <value>] [--json] [--non-interactive]
194
+
195
+ ARGUMENTS
196
+ [ACCOUNT_NAME] Account name to view audit logs for. If not provided, the account will be selected interactively (or
197
+ defaults to the only account if there is just one)
198
+
199
+ FLAGS
200
+ --after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
201
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
202
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
203
+ --non-interactive Run the command in non-interactive mode.
204
+
205
+ DESCRIPTION
206
+ view the audit logs for an account
207
+ ```
208
+
209
+ _See code: [packages/eas-cli/src/commands/account/audit.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/account/audit.ts)_
210
+
183
211
  ## `eas account:login`
184
212
 
185
213
  log in with your Expo account
@@ -199,7 +227,7 @@ ALIASES
199
227
  $ eas login
200
228
  ```
201
229
 
202
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/account/login.ts)_
230
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/account/login.ts)_
203
231
 
204
232
  ## `eas account:logout`
205
233
 
@@ -216,7 +244,7 @@ ALIASES
216
244
  $ eas logout
217
245
  ```
218
246
 
219
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/account/logout.ts)_
247
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/account/logout.ts)_
220
248
 
221
249
  ## `eas account:usage [ACCOUNT_NAME]`
222
250
 
@@ -238,7 +266,7 @@ DESCRIPTION
238
266
  view account usage and billing for the current cycle
239
267
  ```
240
268
 
241
- _See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/account/usage.ts)_
269
+ _See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/account/usage.ts)_
242
270
 
243
271
  ## `eas account:view`
244
272
 
@@ -255,7 +283,7 @@ ALIASES
255
283
  $ eas whoami
256
284
  ```
257
285
 
258
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/account/view.ts)_
286
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/account/view.ts)_
259
287
 
260
288
  ## `eas analytics [STATUS]`
261
289
 
@@ -269,7 +297,7 @@ DESCRIPTION
269
297
  display or change analytics settings
270
298
  ```
271
299
 
272
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/analytics.ts)_
300
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/analytics.ts)_
273
301
 
274
302
  ## `eas autocomplete [SHELL]`
275
303
 
@@ -321,7 +349,7 @@ DESCRIPTION
321
349
  create a branch
322
350
  ```
323
351
 
324
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/branch/create.ts)_
352
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/branch/create.ts)_
325
353
 
326
354
  ## `eas branch:delete [NAME]`
327
355
 
@@ -342,7 +370,7 @@ DESCRIPTION
342
370
  delete a branch
343
371
  ```
344
372
 
345
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/branch/delete.ts)_
373
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/branch/delete.ts)_
346
374
 
347
375
  ## `eas branch:list`
348
376
 
@@ -362,7 +390,7 @@ DESCRIPTION
362
390
  list all branches
363
391
  ```
364
392
 
365
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/branch/list.ts)_
393
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/branch/list.ts)_
366
394
 
367
395
  ## `eas branch:rename`
368
396
 
@@ -382,7 +410,7 @@ DESCRIPTION
382
410
  rename a branch
383
411
  ```
384
412
 
385
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/branch/rename.ts)_
413
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/branch/rename.ts)_
386
414
 
387
415
  ## `eas branch:view [NAME]`
388
416
 
@@ -405,7 +433,7 @@ DESCRIPTION
405
433
  view a branch
406
434
  ```
407
435
 
408
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/branch/view.ts)_
436
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/branch/view.ts)_
409
437
 
410
438
  ## `eas build`
411
439
 
@@ -446,7 +474,7 @@ DESCRIPTION
446
474
  start a build
447
475
  ```
448
476
 
449
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/index.ts)_
477
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/index.ts)_
450
478
 
451
479
  ## `eas build:cancel [BUILD_ID]`
452
480
 
@@ -466,7 +494,7 @@ DESCRIPTION
466
494
  cancel a build
467
495
  ```
468
496
 
469
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/cancel.ts)_
497
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/cancel.ts)_
470
498
 
471
499
  ## `eas build:configure`
472
500
 
@@ -484,7 +512,7 @@ DESCRIPTION
484
512
  configure the project to support EAS Build
485
513
  ```
486
514
 
487
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/configure.ts)_
515
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/configure.ts)_
488
516
 
489
517
  ## `eas build:delete [BUILD_ID]`
490
518
 
@@ -504,7 +532,7 @@ DESCRIPTION
504
532
  delete a build
505
533
  ```
506
534
 
507
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/delete.ts)_
535
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/delete.ts)_
508
536
 
509
537
  ## `eas build:dev`
510
538
 
@@ -529,7 +557,7 @@ DESCRIPTION
529
557
  run dev client simulator/emulator build with matching fingerprint or create a new one
530
558
  ```
531
559
 
532
- _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/dev.ts)_
560
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/dev.ts)_
533
561
 
534
562
  ## `eas build:download`
535
563
 
@@ -556,7 +584,7 @@ DESCRIPTION
556
584
  download a simulator/emulator build by build ID or fingerprint hash
557
585
  ```
558
586
 
559
- _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/download.ts)_
587
+ _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/download.ts)_
560
588
 
561
589
  ## `eas build:inspect`
562
590
 
@@ -594,7 +622,7 @@ DESCRIPTION
594
622
  inspect the state of the project at specific build stages, useful for troubleshooting
595
623
  ```
596
624
 
597
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/inspect.ts)_
625
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/inspect.ts)_
598
626
 
599
627
  ## `eas build:list`
600
628
 
@@ -634,7 +662,7 @@ DESCRIPTION
634
662
  list all builds for your project
635
663
  ```
636
664
 
637
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/list.ts)_
665
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/list.ts)_
638
666
 
639
667
  ## `eas build:resign`
640
668
 
@@ -664,7 +692,7 @@ DESCRIPTION
664
692
  re-sign a build archive
665
693
  ```
666
694
 
667
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/resign.ts)_
695
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/resign.ts)_
668
696
 
669
697
  ## `eas build:run`
670
698
 
@@ -692,7 +720,7 @@ DESCRIPTION
692
720
  run simulator/emulator builds from eas-cli
693
721
  ```
694
722
 
695
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/run.ts)_
723
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/run.ts)_
696
724
 
697
725
  ## `eas build:submit`
698
726
 
@@ -744,7 +772,7 @@ DESCRIPTION
744
772
  get the latest version from EAS servers
745
773
  ```
746
774
 
747
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/version/get.ts)_
775
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/version/get.ts)_
748
776
 
749
777
  ## `eas build:version:set`
750
778
 
@@ -762,7 +790,7 @@ DESCRIPTION
762
790
  update version of an app
763
791
  ```
764
792
 
765
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/version/set.ts)_
793
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/version/set.ts)_
766
794
 
767
795
  ## `eas build:version:sync`
768
796
 
@@ -780,7 +808,7 @@ DESCRIPTION
780
808
  update a version in native code with a value stored on EAS servers
781
809
  ```
782
810
 
783
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/version/sync.ts)_
811
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/version/sync.ts)_
784
812
 
785
813
  ## `eas build:view [BUILD_ID]`
786
814
 
@@ -797,7 +825,7 @@ DESCRIPTION
797
825
  view a build for your project
798
826
  ```
799
827
 
800
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/build/view.ts)_
828
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/build/view.ts)_
801
829
 
802
830
  ## `eas channel:create [NAME]`
803
831
 
@@ -818,7 +846,7 @@ DESCRIPTION
818
846
  create a channel
819
847
  ```
820
848
 
821
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/create.ts)_
849
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/create.ts)_
822
850
 
823
851
  ## `eas channel:delete [NAME]`
824
852
 
@@ -839,7 +867,7 @@ DESCRIPTION
839
867
  Delete a channel
840
868
  ```
841
869
 
842
- _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/delete.ts)_
870
+ _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/delete.ts)_
843
871
 
844
872
  ## `eas channel:edit [NAME]`
845
873
 
@@ -861,7 +889,7 @@ DESCRIPTION
861
889
  point a channel at a new branch
862
890
  ```
863
891
 
864
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/edit.ts)_
892
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/edit.ts)_
865
893
 
866
894
  ## `eas channel:insights`
867
895
 
@@ -885,7 +913,7 @@ DESCRIPTION
885
913
  display adoption, crash, and unique-user insights for a channel + runtime version
886
914
  ```
887
915
 
888
- _See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/insights.ts)_
916
+ _See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/insights.ts)_
889
917
 
890
918
  ## `eas channel:list`
891
919
 
@@ -905,7 +933,7 @@ DESCRIPTION
905
933
  list all channels
906
934
  ```
907
935
 
908
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/list.ts)_
936
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/list.ts)_
909
937
 
910
938
  ## `eas channel:pause [NAME]`
911
939
 
@@ -927,7 +955,7 @@ DESCRIPTION
927
955
  pause a channel to stop it from sending updates
928
956
  ```
929
957
 
930
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/pause.ts)_
958
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/pause.ts)_
931
959
 
932
960
  ## `eas channel:resume [NAME]`
933
961
 
@@ -949,7 +977,7 @@ DESCRIPTION
949
977
  resume a channel to start sending updates
950
978
  ```
951
979
 
952
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/resume.ts)_
980
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/resume.ts)_
953
981
 
954
982
  ## `eas channel:rollout [CHANNEL]`
955
983
 
@@ -984,7 +1012,7 @@ DESCRIPTION
984
1012
  Roll a new branch out on a channel incrementally.
985
1013
  ```
986
1014
 
987
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/rollout.ts)_
1015
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/rollout.ts)_
988
1016
 
989
1017
  ## `eas channel:view [NAME]`
990
1018
 
@@ -1007,7 +1035,7 @@ DESCRIPTION
1007
1035
  view a channel
1008
1036
  ```
1009
1037
 
1010
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/channel/view.ts)_
1038
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/channel/view.ts)_
1011
1039
 
1012
1040
  ## `eas config`
1013
1041
 
@@ -1028,7 +1056,7 @@ DESCRIPTION
1028
1056
  display project configuration (app.json + eas.json)
1029
1057
  ```
1030
1058
 
1031
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/config.ts)_
1059
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/config.ts)_
1032
1060
 
1033
1061
  ## `eas credentials`
1034
1062
 
@@ -1045,7 +1073,7 @@ DESCRIPTION
1045
1073
  manage credentials
1046
1074
  ```
1047
1075
 
1048
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/credentials/index.ts)_
1076
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/credentials/index.ts)_
1049
1077
 
1050
1078
  ## `eas credentials:configure-build`
1051
1079
 
@@ -1063,7 +1091,7 @@ DESCRIPTION
1063
1091
  Set up credentials for building your project.
1064
1092
  ```
1065
1093
 
1066
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
1094
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
1067
1095
 
1068
1096
  ## `eas deploy [options]`
1069
1097
 
@@ -1092,7 +1120,7 @@ ALIASES
1092
1120
  $ eas worker:deploy
1093
1121
  ```
1094
1122
 
1095
- _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/deploy/index.ts)_
1123
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/deploy/index.ts)_
1096
1124
 
1097
1125
  ## `eas deploy:alias`
1098
1126
 
@@ -1117,7 +1145,7 @@ ALIASES
1117
1145
  $ eas deploy:promote
1118
1146
  ```
1119
1147
 
1120
- _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1148
+ _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1121
1149
 
1122
1150
  ## `eas deploy:alias:delete [ALIAS_NAME]`
1123
1151
 
@@ -1138,7 +1166,7 @@ ALIASES
1138
1166
  $ eas worker:alias:delete
1139
1167
  ```
1140
1168
 
1141
- _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1169
+ _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1142
1170
 
1143
1171
  ## `eas deploy:delete [DEPLOYMENT_ID]`
1144
1172
 
@@ -1159,7 +1187,7 @@ ALIASES
1159
1187
  $ eas worker:delete
1160
1188
  ```
1161
1189
 
1162
- _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1190
+ _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1163
1191
 
1164
1192
  ## `eas deploy:promote`
1165
1193
 
@@ -1196,7 +1224,7 @@ DESCRIPTION
1196
1224
  register new Apple Devices to use for internal distribution
1197
1225
  ```
1198
1226
 
1199
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/device/create.ts)_
1227
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/device/create.ts)_
1200
1228
 
1201
1229
  ## `eas device:delete`
1202
1230
 
@@ -1216,7 +1244,7 @@ DESCRIPTION
1216
1244
  remove a registered device from your account
1217
1245
  ```
1218
1246
 
1219
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/device/delete.ts)_
1247
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/device/delete.ts)_
1220
1248
 
1221
1249
  ## `eas device:list`
1222
1250
 
@@ -1237,7 +1265,7 @@ DESCRIPTION
1237
1265
  list all registered devices for your account
1238
1266
  ```
1239
1267
 
1240
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/device/list.ts)_
1268
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/device/list.ts)_
1241
1269
 
1242
1270
  ## `eas device:rename`
1243
1271
 
@@ -1258,7 +1286,7 @@ DESCRIPTION
1258
1286
  rename a registered device
1259
1287
  ```
1260
1288
 
1261
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/device/rename.ts)_
1289
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/device/rename.ts)_
1262
1290
 
1263
1291
  ## `eas device:view [UDID]`
1264
1292
 
@@ -1272,7 +1300,7 @@ DESCRIPTION
1272
1300
  view a device for your project
1273
1301
  ```
1274
1302
 
1275
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/device/view.ts)_
1303
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/device/view.ts)_
1276
1304
 
1277
1305
  ## `eas diagnostics`
1278
1306
 
@@ -1286,7 +1314,7 @@ DESCRIPTION
1286
1314
  display environment info
1287
1315
  ```
1288
1316
 
1289
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/diagnostics.ts)_
1317
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/diagnostics.ts)_
1290
1318
 
1291
1319
  ## `eas env:create [ENVIRONMENT]`
1292
1320
 
@@ -1318,7 +1346,7 @@ DESCRIPTION
1318
1346
  create an environment variable for the current project or account
1319
1347
  ```
1320
1348
 
1321
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/create.ts)_
1349
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/create.ts)_
1322
1350
 
1323
1351
  ## `eas env:delete [ENVIRONMENT]`
1324
1352
 
@@ -1344,7 +1372,7 @@ DESCRIPTION
1344
1372
  delete an environment variable for the current project or account
1345
1373
  ```
1346
1374
 
1347
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/delete.ts)_
1375
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/delete.ts)_
1348
1376
 
1349
1377
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1350
1378
 
@@ -1366,7 +1394,7 @@ DESCRIPTION
1366
1394
  execute a command with environment variables from the selected environment
1367
1395
  ```
1368
1396
 
1369
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/exec.ts)_
1397
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/exec.ts)_
1370
1398
 
1371
1399
  ## `eas env:get [ENVIRONMENT]`
1372
1400
 
@@ -1394,7 +1422,7 @@ DESCRIPTION
1394
1422
  view an environment variable for the current project or account
1395
1423
  ```
1396
1424
 
1397
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/get.ts)_
1425
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/get.ts)_
1398
1426
 
1399
1427
  ## `eas env:list [ENVIRONMENT]`
1400
1428
 
@@ -1422,7 +1450,7 @@ DESCRIPTION
1422
1450
  list environment variables for the current project or account
1423
1451
  ```
1424
1452
 
1425
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/list.ts)_
1453
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/list.ts)_
1426
1454
 
1427
1455
  ## `eas env:pull [ENVIRONMENT]`
1428
1456
 
@@ -1445,7 +1473,7 @@ DESCRIPTION
1445
1473
  pull environment variables for the selected environment to .env file
1446
1474
  ```
1447
1475
 
1448
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/pull.ts)_
1476
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/pull.ts)_
1449
1477
 
1450
1478
  ## `eas env:push [ENVIRONMENT]`
1451
1479
 
@@ -1467,7 +1495,7 @@ DESCRIPTION
1467
1495
  push environment variables from .env file to the selected environment
1468
1496
  ```
1469
1497
 
1470
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/push.ts)_
1498
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/push.ts)_
1471
1499
 
1472
1500
  ## `eas env:update [ENVIRONMENT]`
1473
1501
 
@@ -1501,7 +1529,7 @@ DESCRIPTION
1501
1529
  update an environment variable on the current project or account
1502
1530
  ```
1503
1531
 
1504
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/env/update.ts)_
1532
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/env/update.ts)_
1505
1533
 
1506
1534
  ## `eas fingerprint:compare [HASH1] [HASH2]`
1507
1535
 
@@ -1545,7 +1573,7 @@ EXAMPLES
1545
1573
  $ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
1546
1574
  ```
1547
1575
 
1548
- _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1576
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1549
1577
 
1550
1578
  ## `eas fingerprint:generate`
1551
1579
 
@@ -1576,7 +1604,7 @@ EXAMPLES
1576
1604
  $ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
1577
1605
  ```
1578
1606
 
1579
- _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1607
+ _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1580
1608
 
1581
1609
  ## `eas help [COMMAND]`
1582
1610
 
@@ -1655,7 +1683,7 @@ DESCRIPTION
1655
1683
  connect a project to an App Store Connect app
1656
1684
  ```
1657
1685
 
1658
- _See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
1686
+ _See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
1659
1687
 
1660
1688
  ## `eas integrations:asc:disconnect`
1661
1689
 
@@ -1674,7 +1702,7 @@ DESCRIPTION
1674
1702
  disconnect the current project from its App Store Connect app
1675
1703
  ```
1676
1704
 
1677
- _See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
1705
+ _See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
1678
1706
 
1679
1707
  ## `eas integrations:asc:status`
1680
1708
 
@@ -1692,7 +1720,7 @@ DESCRIPTION
1692
1720
  show the App Store Connect app link status for the current project
1693
1721
  ```
1694
1722
 
1695
- _See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
1723
+ _See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
1696
1724
 
1697
1725
  ## `eas integrations:convex:connect`
1698
1726
 
@@ -1714,7 +1742,7 @@ DESCRIPTION
1714
1742
  connect Convex to your Expo project
1715
1743
  ```
1716
1744
 
1717
- _See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
1745
+ _See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
1718
1746
 
1719
1747
  ## `eas integrations:convex:dashboard`
1720
1748
 
@@ -1728,7 +1756,7 @@ DESCRIPTION
1728
1756
  open the Convex dashboard for the linked Convex project
1729
1757
  ```
1730
1758
 
1731
- _See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
1759
+ _See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
1732
1760
 
1733
1761
  ## `eas integrations:convex:project`
1734
1762
 
@@ -1742,7 +1770,7 @@ DESCRIPTION
1742
1770
  display the Convex project linked to the current Expo app
1743
1771
  ```
1744
1772
 
1745
- _See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
1773
+ _See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
1746
1774
 
1747
1775
  ## `eas integrations:convex:project:delete`
1748
1776
 
@@ -1760,7 +1788,7 @@ DESCRIPTION
1760
1788
  remove the Convex project link for the current Expo app from EAS servers
1761
1789
  ```
1762
1790
 
1763
- _See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
1791
+ _See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
1764
1792
 
1765
1793
  ## `eas integrations:convex:team`
1766
1794
 
@@ -1774,7 +1802,7 @@ DESCRIPTION
1774
1802
  display Convex teams linked to the current Expo app's owner account
1775
1803
  ```
1776
1804
 
1777
- _See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
1805
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
1778
1806
 
1779
1807
  ## `eas integrations:convex:team:delete [CONVEX_TEAM]`
1780
1808
 
@@ -1795,7 +1823,7 @@ DESCRIPTION
1795
1823
  remove a Convex team link from the current Expo app owner account's EAS servers
1796
1824
  ```
1797
1825
 
1798
- _See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
1826
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
1799
1827
 
1800
1828
  ## `eas integrations:convex:team:invite [CONVEX_TEAM]`
1801
1829
 
@@ -1815,7 +1843,71 @@ DESCRIPTION
1815
1843
  send a Convex team invitation to your verified email address
1816
1844
  ```
1817
1845
 
1818
- _See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
1846
+ _See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
1847
+
1848
+ ## `eas integrations:posthog:connect`
1849
+
1850
+ connect PostHog to your Expo project
1851
+
1852
+ ```
1853
+ USAGE
1854
+ $ eas integrations:posthog:connect [--json] [--non-interactive] [--region US|EU] [--session-replay] [--error-tracking]
1855
+ [--posthog-cli-api-key <value>] [--overwrite]
1856
+
1857
+ FLAGS
1858
+ --[no-]error-tracking Set up PostHog error tracking / source maps (requires a personal API key)
1859
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies
1860
+ --non-interactive.
1861
+ --non-interactive Run the command in non-interactive mode.
1862
+ --overwrite Overwrite existing PostHog environment variables without prompting
1863
+ --posthog-cli-api-key=<value> PostHog personal API key for error-tracking source-map uploads (enables error tracking
1864
+ non-interactively)
1865
+ --region=<option> PostHog region
1866
+ <options: US|EU>
1867
+ --[no-]session-replay Set up PostHog session replay (default: yes)
1868
+
1869
+ DESCRIPTION
1870
+ connect PostHog to your Expo project
1871
+ ```
1872
+
1873
+ _See code: [packages/eas-cli/src/commands/integrations/posthog/connect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/posthog/connect.ts)_
1874
+
1875
+ ## `eas integrations:posthog:dashboard`
1876
+
1877
+ open the PostHog dashboard for the linked PostHog project
1878
+
1879
+ ```
1880
+ USAGE
1881
+ $ eas integrations:posthog:dashboard [--json] [--non-interactive]
1882
+
1883
+ FLAGS
1884
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1885
+ --non-interactive Run the command in non-interactive mode.
1886
+
1887
+ DESCRIPTION
1888
+ open the PostHog dashboard for the linked PostHog project
1889
+ ```
1890
+
1891
+ _See code: [packages/eas-cli/src/commands/integrations/posthog/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/posthog/dashboard.ts)_
1892
+
1893
+ ## `eas integrations:posthog:disconnect`
1894
+
1895
+ remove the PostHog project link for the current Expo app from EAS servers
1896
+
1897
+ ```
1898
+ USAGE
1899
+ $ eas integrations:posthog:disconnect [--json] [--non-interactive] [-y]
1900
+
1901
+ FLAGS
1902
+ -y, --yes Skip confirmation prompt
1903
+ --json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1904
+ --non-interactive Run the command in non-interactive mode.
1905
+
1906
+ DESCRIPTION
1907
+ remove the PostHog project link for the current Expo app from EAS servers
1908
+ ```
1909
+
1910
+ _See code: [packages/eas-cli/src/commands/integrations/posthog/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/integrations/posthog/disconnect.ts)_
1819
1911
 
1820
1912
  ## `eas login`
1821
1913
 
@@ -1867,7 +1959,7 @@ DESCRIPTION
1867
1959
  validate the local store configuration
1868
1960
  ```
1869
1961
 
1870
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1962
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1871
1963
 
1872
1964
  ## `eas metadata:pull`
1873
1965
 
@@ -1885,7 +1977,7 @@ DESCRIPTION
1885
1977
  generate the local store configuration from the app stores
1886
1978
  ```
1887
1979
 
1888
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1980
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1889
1981
 
1890
1982
  ## `eas metadata:push`
1891
1983
 
@@ -1903,7 +1995,7 @@ DESCRIPTION
1903
1995
  sync the local store configuration to the app stores
1904
1996
  ```
1905
1997
 
1906
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/metadata/push.ts)_
1998
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/metadata/push.ts)_
1907
1999
 
1908
2000
  ## `eas new [PATH]`
1909
2001
 
@@ -1962,7 +2054,7 @@ DESCRIPTION
1962
2054
  arguments, a list of the available event names and associated event counts is returned.
1963
2055
  ```
1964
2056
 
1965
- _See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/observe/events.ts)_
2057
+ _See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/observe/events.ts)_
1966
2058
 
1967
2059
  ## `eas observe:metrics [METRIC]`
1968
2060
 
@@ -1997,7 +2089,7 @@ DESCRIPTION
1997
2089
  display individual performance metric samples ordered by value
1998
2090
  ```
1999
2091
 
2000
- _See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/observe/metrics.ts)_
2092
+ _See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/observe/metrics.ts)_
2001
2093
 
2002
2094
  ## `eas observe:metrics-summary`
2003
2095
 
@@ -2028,7 +2120,7 @@ DESCRIPTION
2028
2120
  display aggregated performance metric statistics grouped by app version
2029
2121
  ```
2030
2122
 
2031
- _See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
2123
+ _See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
2032
2124
 
2033
2125
  ## `eas observe:routes`
2034
2126
 
@@ -2065,7 +2157,7 @@ DESCRIPTION
2065
2157
  display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
2066
2158
  ```
2067
2159
 
2068
- _See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/observe/routes.ts)_
2160
+ _See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/observe/routes.ts)_
2069
2161
 
2070
2162
  ## `eas observe:versions`
2071
2163
 
@@ -2090,7 +2182,7 @@ DESCRIPTION
2090
2182
  display app versions with build and update details
2091
2183
  ```
2092
2184
 
2093
- _See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/observe/versions.ts)_
2185
+ _See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/observe/versions.ts)_
2094
2186
 
2095
2187
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
2096
2188
 
@@ -2120,7 +2212,7 @@ DESCRIPTION
2120
2212
  open the project page in a web browser
2121
2213
  ```
2122
2214
 
2123
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/open.ts)_
2215
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/open.ts)_
2124
2216
 
2125
2217
  ## `eas project:info`
2126
2218
 
@@ -2134,7 +2226,7 @@ DESCRIPTION
2134
2226
  information about the current project
2135
2227
  ```
2136
2228
 
2137
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/project/info.ts)_
2229
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/project/info.ts)_
2138
2230
 
2139
2231
  ## `eas project:init`
2140
2232
 
@@ -2157,7 +2249,7 @@ ALIASES
2157
2249
  $ eas init
2158
2250
  ```
2159
2251
 
2160
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/project/init.ts)_
2252
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/project/init.ts)_
2161
2253
 
2162
2254
  ## `eas project:new [PATH]`
2163
2255
 
@@ -2181,7 +2273,7 @@ ALIASES
2181
2273
  $ eas new
2182
2274
  ```
2183
2275
 
2184
- _See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/project/new.ts)_
2276
+ _See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/project/new.ts)_
2185
2277
 
2186
2278
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
2187
2279
 
@@ -2199,7 +2291,7 @@ ALIASES
2199
2291
  $ eas onboarding
2200
2292
  ```
2201
2293
 
2202
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/project/onboarding.ts)_
2294
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/project/onboarding.ts)_
2203
2295
 
2204
2296
  ## `eas submit`
2205
2297
 
@@ -2232,7 +2324,7 @@ ALIASES
2232
2324
  $ eas build:submit
2233
2325
  ```
2234
2326
 
2235
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/submit.ts)_
2327
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/submit.ts)_
2236
2328
 
2237
2329
  ## `eas update`
2238
2330
 
@@ -2275,7 +2367,7 @@ DESCRIPTION
2275
2367
  publish an update group
2276
2368
  ```
2277
2369
 
2278
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/index.ts)_
2370
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/index.ts)_
2279
2371
 
2280
2372
  ## `eas update:configure`
2281
2373
 
@@ -2296,7 +2388,7 @@ DESCRIPTION
2296
2388
  configure the project to support EAS Update
2297
2389
  ```
2298
2390
 
2299
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/configure.ts)_
2391
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/configure.ts)_
2300
2392
 
2301
2393
  ## `eas update:delete GROUPID`
2302
2394
 
@@ -2317,7 +2409,7 @@ DESCRIPTION
2317
2409
  delete all the updates in an update group
2318
2410
  ```
2319
2411
 
2320
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/delete.ts)_
2412
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/delete.ts)_
2321
2413
 
2322
2414
  ## `eas update:edit [GROUPID]`
2323
2415
 
@@ -2342,7 +2434,7 @@ DESCRIPTION
2342
2434
  edit all the updates in an update group
2343
2435
  ```
2344
2436
 
2345
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/edit.ts)_
2437
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/edit.ts)_
2346
2438
 
2347
2439
  ## `eas update:embedded:delete ID`
2348
2440
 
@@ -2363,7 +2455,7 @@ DESCRIPTION
2363
2455
  delete an embedded update registered with EAS Update
2364
2456
  ```
2365
2457
 
2366
- _See code: [packages/eas-cli/src/commands/update/embedded/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/embedded/delete.ts)_
2458
+ _See code: [packages/eas-cli/src/commands/update/embedded/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/embedded/delete.ts)_
2367
2459
 
2368
2460
  ## `eas update:embedded:list`
2369
2461
 
@@ -2389,7 +2481,7 @@ DESCRIPTION
2389
2481
  list embedded updates registered with EAS Update for this project
2390
2482
  ```
2391
2483
 
2392
- _See code: [packages/eas-cli/src/commands/update/embedded/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/embedded/list.ts)_
2484
+ _See code: [packages/eas-cli/src/commands/update/embedded/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/embedded/list.ts)_
2393
2485
 
2394
2486
  ## `eas update:embedded:upload`
2395
2487
 
@@ -2419,7 +2511,7 @@ EXAMPLES
2419
2511
  $ 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>
2420
2512
  ```
2421
2513
 
2422
- _See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
2514
+ _See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
2423
2515
 
2424
2516
  ## `eas update:embedded:view ID`
2425
2517
 
@@ -2439,7 +2531,7 @@ DESCRIPTION
2439
2531
  view details of an embedded update registered with EAS Update
2440
2532
  ```
2441
2533
 
2442
- _See code: [packages/eas-cli/src/commands/update/embedded/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/embedded/view.ts)_
2534
+ _See code: [packages/eas-cli/src/commands/update/embedded/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/embedded/view.ts)_
2443
2535
 
2444
2536
  ## `eas update:insights GROUPID`
2445
2537
 
@@ -2466,7 +2558,7 @@ DESCRIPTION
2466
2558
  display launch, crash, unique-user, and size insights for an update group
2467
2559
  ```
2468
2560
 
2469
- _See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/insights.ts)_
2561
+ _See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/insights.ts)_
2470
2562
 
2471
2563
  ## `eas update:list`
2472
2564
 
@@ -2493,7 +2585,7 @@ DESCRIPTION
2493
2585
  view the recent updates
2494
2586
  ```
2495
2587
 
2496
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/list.ts)_
2588
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/list.ts)_
2497
2589
 
2498
2590
  ## `eas update:republish`
2499
2591
 
@@ -2531,7 +2623,7 @@ DESCRIPTION
2531
2623
  roll back to an existing update
2532
2624
  ```
2533
2625
 
2534
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/republish.ts)_
2626
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/republish.ts)_
2535
2627
 
2536
2628
  ## `eas update:revert-update-rollout`
2537
2629
 
@@ -2559,7 +2651,7 @@ DESCRIPTION
2559
2651
  revert a rollout update for a project
2560
2652
  ```
2561
2653
 
2562
- _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
2654
+ _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
2563
2655
 
2564
2656
  ## `eas update:roll-back-to-embedded`
2565
2657
 
@@ -2589,7 +2681,7 @@ DESCRIPTION
2589
2681
  roll back to the embedded update
2590
2682
  ```
2591
2683
 
2592
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
2684
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
2593
2685
 
2594
2686
  ## `eas update:rollback [GROUPID]`
2595
2687
 
@@ -2621,7 +2713,7 @@ DESCRIPTION
2621
2713
  roll back to an embedded update or an existing update
2622
2714
  ```
2623
2715
 
2624
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/rollback.ts)_
2716
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/rollback.ts)_
2625
2717
 
2626
2718
  ## `eas update:view GROUPID`
2627
2719
 
@@ -2632,7 +2724,7 @@ USAGE
2632
2724
  $ eas update:view GROUPID [--insights] [--days <value> | --start <value> | --end <value>] [--json]
2633
2725
 
2634
2726
  ARGUMENTS
2635
- GROUPID The ID of an update group.
2727
+ GROUPID The ID of an update group, or the ID of a platform-specific update.
2636
2728
 
2637
2729
  FLAGS
2638
2730
  --days=<value> Show insights from the last N days (default 7). Only used with --insights.
@@ -2645,7 +2737,7 @@ DESCRIPTION
2645
2737
  update group details
2646
2738
  ```
2647
2739
 
2648
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/update/view.ts)_
2740
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/update/view.ts)_
2649
2741
 
2650
2742
  ## `eas upload`
2651
2743
 
@@ -2666,7 +2758,7 @@ DESCRIPTION
2666
2758
  upload a local build and generate a sharable link
2667
2759
  ```
2668
2760
 
2669
- _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/upload.ts)_
2761
+ _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/upload.ts)_
2670
2762
 
2671
2763
  ## `eas webhook:create`
2672
2764
 
@@ -2688,7 +2780,7 @@ DESCRIPTION
2688
2780
  create a webhook
2689
2781
  ```
2690
2782
 
2691
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/webhook/create.ts)_
2783
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/webhook/create.ts)_
2692
2784
 
2693
2785
  ## `eas webhook:delete [ID]`
2694
2786
 
@@ -2708,7 +2800,7 @@ DESCRIPTION
2708
2800
  delete a webhook
2709
2801
  ```
2710
2802
 
2711
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2803
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2712
2804
 
2713
2805
  ## `eas webhook:list`
2714
2806
 
@@ -2727,7 +2819,7 @@ DESCRIPTION
2727
2819
  list webhooks
2728
2820
  ```
2729
2821
 
2730
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/webhook/list.ts)_
2822
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/webhook/list.ts)_
2731
2823
 
2732
2824
  ## `eas webhook:update`
2733
2825
 
@@ -2750,7 +2842,7 @@ DESCRIPTION
2750
2842
  update a webhook
2751
2843
  ```
2752
2844
 
2753
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/webhook/update.ts)_
2845
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/webhook/update.ts)_
2754
2846
 
2755
2847
  ## `eas webhook:view ID`
2756
2848
 
@@ -2767,7 +2859,7 @@ DESCRIPTION
2767
2859
  view a webhook
2768
2860
  ```
2769
2861
 
2770
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/webhook/view.ts)_
2862
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/webhook/view.ts)_
2771
2863
 
2772
2864
  ## `eas whoami`
2773
2865
 
@@ -2888,7 +2980,7 @@ DESCRIPTION
2888
2980
  to cancel.
2889
2981
  ```
2890
2982
 
2891
- _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2983
+ _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2892
2984
 
2893
2985
  ## `eas workflow:create [NAME]`
2894
2986
 
@@ -2908,7 +3000,7 @@ DESCRIPTION
2908
3000
  create a new workflow configuration YAML file
2909
3001
  ```
2910
3002
 
2911
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/create.ts)_
3003
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/create.ts)_
2912
3004
 
2913
3005
  ## `eas workflow:logs [ID]`
2914
3006
 
@@ -2932,7 +3024,7 @@ DESCRIPTION
2932
3024
  If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
2933
3025
  ```
2934
3026
 
2935
- _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/logs.ts)_
3027
+ _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/logs.ts)_
2936
3028
 
2937
3029
  ## `eas workflow:run FILE`
2938
3030
 
@@ -2972,7 +3064,7 @@ FLAG DESCRIPTIONS
2972
3064
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
2973
3065
  ```
2974
3066
 
2975
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/run.ts)_
3067
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/run.ts)_
2976
3068
 
2977
3069
  ## `eas workflow:runs`
2978
3070
 
@@ -2994,7 +3086,7 @@ DESCRIPTION
2994
3086
  list recent workflow runs for this project, with their IDs, statuses, and timestamps
2995
3087
  ```
2996
3088
 
2997
- _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/runs.ts)_
3089
+ _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2998
3090
 
2999
3091
  ## `eas workflow:status [WORKFLOW_RUN_ID]`
3000
3092
 
@@ -3022,7 +3114,7 @@ FLAG DESCRIPTIONS
3022
3114
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
3023
3115
  ```
3024
3116
 
3025
- _See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/status.ts)_
3117
+ _See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/status.ts)_
3026
3118
 
3027
3119
  ## `eas workflow:validate PATH`
3028
3120
 
@@ -3042,7 +3134,7 @@ DESCRIPTION
3042
3134
  validate a workflow configuration yaml file
3043
3135
  ```
3044
3136
 
3045
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/validate.ts)_
3137
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/validate.ts)_
3046
3138
 
3047
3139
  ## `eas workflow:view [ID]`
3048
3140
 
@@ -3064,5 +3156,5 @@ DESCRIPTION
3064
3156
  workflow runs for the current project.
3065
3157
  ```
3066
3158
 
3067
- _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.2.0/packages/eas-cli/src/commands/workflow/view.ts)_
3159
+ _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.3.0/packages/eas-cli/src/commands/workflow/view.ts)_
3068
3160
  <!-- commandsstop -->