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