eas-cli 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -104
- package/build/commands/update/index.js +1 -1
- package/build/commands/update/view.js +2 -2
- package/build/graphql/generated.d.ts +0 -59
- package/build/graphql/mutations/PublishMutation.js +4 -1
- package/build/graphql/types/Update.js +0 -1
- package/build/update/utils.d.ts +0 -4
- package/build/update/utils.js +1 -15
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -97,8 +97,6 @@ eas --help COMMAND
|
|
|
97
97
|
* [`eas open`](#eas-open)
|
|
98
98
|
* [`eas project:info`](#eas-projectinfo)
|
|
99
99
|
* [`eas project:init`](#eas-projectinit)
|
|
100
|
-
* [`eas run`](#eas-run)
|
|
101
|
-
* [`eas run:run`](#eas-runrun)
|
|
102
100
|
* [`eas secret:create`](#eas-secretcreate)
|
|
103
101
|
* [`eas secret:delete`](#eas-secretdelete)
|
|
104
102
|
* [`eas secret:list`](#eas-secretlist)
|
|
@@ -132,7 +130,7 @@ ALIASES
|
|
|
132
130
|
$ eas login
|
|
133
131
|
```
|
|
134
132
|
|
|
135
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
133
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
136
134
|
|
|
137
135
|
## `eas account:logout`
|
|
138
136
|
|
|
@@ -149,7 +147,7 @@ ALIASES
|
|
|
149
147
|
$ eas logout
|
|
150
148
|
```
|
|
151
149
|
|
|
152
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
150
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
153
151
|
|
|
154
152
|
## `eas account:view`
|
|
155
153
|
|
|
@@ -166,7 +164,7 @@ ALIASES
|
|
|
166
164
|
$ eas whoami
|
|
167
165
|
```
|
|
168
166
|
|
|
169
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
167
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
170
168
|
|
|
171
169
|
## `eas analytics [STATUS]`
|
|
172
170
|
|
|
@@ -180,7 +178,7 @@ DESCRIPTION
|
|
|
180
178
|
display or change analytics settings
|
|
181
179
|
```
|
|
182
180
|
|
|
183
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
181
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
184
182
|
|
|
185
183
|
## `eas autocomplete [SHELL]`
|
|
186
184
|
|
|
@@ -230,7 +228,7 @@ DESCRIPTION
|
|
|
230
228
|
create a branch
|
|
231
229
|
```
|
|
232
230
|
|
|
233
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
231
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
234
232
|
|
|
235
233
|
## `eas branch:delete [NAME]`
|
|
236
234
|
|
|
@@ -251,7 +249,7 @@ DESCRIPTION
|
|
|
251
249
|
delete a branch
|
|
252
250
|
```
|
|
253
251
|
|
|
254
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
252
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
255
253
|
|
|
256
254
|
## `eas branch:list`
|
|
257
255
|
|
|
@@ -271,7 +269,7 @@ DESCRIPTION
|
|
|
271
269
|
list all branches
|
|
272
270
|
```
|
|
273
271
|
|
|
274
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
272
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
275
273
|
|
|
276
274
|
## `eas branch:rename`
|
|
277
275
|
|
|
@@ -291,7 +289,7 @@ DESCRIPTION
|
|
|
291
289
|
rename a branch
|
|
292
290
|
```
|
|
293
291
|
|
|
294
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
292
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
295
293
|
|
|
296
294
|
## `eas branch:view [NAME]`
|
|
297
295
|
|
|
@@ -314,7 +312,7 @@ DESCRIPTION
|
|
|
314
312
|
view a branch
|
|
315
313
|
```
|
|
316
314
|
|
|
317
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
315
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
318
316
|
|
|
319
317
|
## `eas build`
|
|
320
318
|
|
|
@@ -344,7 +342,7 @@ DESCRIPTION
|
|
|
344
342
|
start a build
|
|
345
343
|
```
|
|
346
344
|
|
|
347
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
345
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
348
346
|
|
|
349
347
|
## `eas build:cancel [BUILD_ID]`
|
|
350
348
|
|
|
@@ -361,7 +359,7 @@ DESCRIPTION
|
|
|
361
359
|
cancel a build
|
|
362
360
|
```
|
|
363
361
|
|
|
364
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
362
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
365
363
|
|
|
366
364
|
## `eas build:configure`
|
|
367
365
|
|
|
@@ -378,7 +376,7 @@ DESCRIPTION
|
|
|
378
376
|
configure the project to support EAS Build
|
|
379
377
|
```
|
|
380
378
|
|
|
381
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
379
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
382
380
|
|
|
383
381
|
## `eas build:inspect`
|
|
384
382
|
|
|
@@ -413,7 +411,7 @@ DESCRIPTION
|
|
|
413
411
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
414
412
|
```
|
|
415
413
|
|
|
416
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
414
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
417
415
|
|
|
418
416
|
## `eas build:list`
|
|
419
417
|
|
|
@@ -450,7 +448,7 @@ DESCRIPTION
|
|
|
450
448
|
list all builds for your project
|
|
451
449
|
```
|
|
452
450
|
|
|
453
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
451
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
454
452
|
|
|
455
453
|
## `eas build:resign`
|
|
456
454
|
|
|
@@ -476,7 +474,7 @@ DESCRIPTION
|
|
|
476
474
|
re-sign a build archive
|
|
477
475
|
```
|
|
478
476
|
|
|
479
|
-
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
477
|
+
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
480
478
|
|
|
481
479
|
## `eas build:run`
|
|
482
480
|
|
|
@@ -500,7 +498,7 @@ DESCRIPTION
|
|
|
500
498
|
run simulator/emulator builds from eas-cli
|
|
501
499
|
```
|
|
502
500
|
|
|
503
|
-
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
501
|
+
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
504
502
|
|
|
505
503
|
## `eas build:submit`
|
|
506
504
|
|
|
@@ -530,6 +528,8 @@ ALIASES
|
|
|
530
528
|
$ eas build:submit
|
|
531
529
|
```
|
|
532
530
|
|
|
531
|
+
_See code: [src/commands/build/submit.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/submit.ts)_
|
|
532
|
+
|
|
533
533
|
## `eas build:version:set`
|
|
534
534
|
|
|
535
535
|
Update version of an app.
|
|
@@ -547,7 +547,7 @@ DESCRIPTION
|
|
|
547
547
|
Update version of an app.
|
|
548
548
|
```
|
|
549
549
|
|
|
550
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
550
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
551
551
|
|
|
552
552
|
## `eas build:version:sync`
|
|
553
553
|
|
|
@@ -566,7 +566,7 @@ DESCRIPTION
|
|
|
566
566
|
Update a version in native code with a value stored on EAS servers
|
|
567
567
|
```
|
|
568
568
|
|
|
569
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
569
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
570
570
|
|
|
571
571
|
## `eas build:view [BUILD_ID]`
|
|
572
572
|
|
|
@@ -583,7 +583,7 @@ DESCRIPTION
|
|
|
583
583
|
view a build for your project
|
|
584
584
|
```
|
|
585
585
|
|
|
586
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
586
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
587
587
|
|
|
588
588
|
## `eas channel:create [NAME]`
|
|
589
589
|
|
|
@@ -604,7 +604,7 @@ DESCRIPTION
|
|
|
604
604
|
create a channel
|
|
605
605
|
```
|
|
606
606
|
|
|
607
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
607
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
608
608
|
|
|
609
609
|
## `eas channel:edit [NAME]`
|
|
610
610
|
|
|
@@ -626,7 +626,7 @@ DESCRIPTION
|
|
|
626
626
|
point a channel at a new branch
|
|
627
627
|
```
|
|
628
628
|
|
|
629
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
629
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
630
630
|
|
|
631
631
|
## `eas channel:list`
|
|
632
632
|
|
|
@@ -646,7 +646,7 @@ DESCRIPTION
|
|
|
646
646
|
list all channels
|
|
647
647
|
```
|
|
648
648
|
|
|
649
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
649
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
650
650
|
|
|
651
651
|
## `eas channel:view [NAME]`
|
|
652
652
|
|
|
@@ -669,7 +669,7 @@ DESCRIPTION
|
|
|
669
669
|
view a channel
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
672
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
673
673
|
|
|
674
674
|
## `eas config`
|
|
675
675
|
|
|
@@ -688,7 +688,7 @@ DESCRIPTION
|
|
|
688
688
|
display project configuration (app.json + eas.json)
|
|
689
689
|
```
|
|
690
690
|
|
|
691
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
691
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/config.ts)_
|
|
692
692
|
|
|
693
693
|
## `eas credentials`
|
|
694
694
|
|
|
@@ -705,7 +705,7 @@ DESCRIPTION
|
|
|
705
705
|
manage credentials
|
|
706
706
|
```
|
|
707
707
|
|
|
708
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
708
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/credentials.ts)_
|
|
709
709
|
|
|
710
710
|
## `eas device:create`
|
|
711
711
|
|
|
@@ -719,7 +719,7 @@ DESCRIPTION
|
|
|
719
719
|
register new Apple Devices to use for internal distribution
|
|
720
720
|
```
|
|
721
721
|
|
|
722
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
722
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
723
723
|
|
|
724
724
|
## `eas device:delete`
|
|
725
725
|
|
|
@@ -739,7 +739,7 @@ DESCRIPTION
|
|
|
739
739
|
remove a registered device from your account
|
|
740
740
|
```
|
|
741
741
|
|
|
742
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
742
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
743
743
|
|
|
744
744
|
## `eas device:list`
|
|
745
745
|
|
|
@@ -760,7 +760,7 @@ DESCRIPTION
|
|
|
760
760
|
list all registered devices for your account
|
|
761
761
|
```
|
|
762
762
|
|
|
763
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
763
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
764
764
|
|
|
765
765
|
## `eas device:view [UDID]`
|
|
766
766
|
|
|
@@ -774,7 +774,7 @@ DESCRIPTION
|
|
|
774
774
|
view a device for your project
|
|
775
775
|
```
|
|
776
776
|
|
|
777
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
777
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
778
778
|
|
|
779
779
|
## `eas diagnostics`
|
|
780
780
|
|
|
@@ -788,7 +788,7 @@ DESCRIPTION
|
|
|
788
788
|
display environment info
|
|
789
789
|
```
|
|
790
790
|
|
|
791
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
791
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
792
792
|
|
|
793
793
|
## `eas help [COMMAND]`
|
|
794
794
|
|
|
@@ -845,6 +845,8 @@ ALIASES
|
|
|
845
845
|
$ eas login
|
|
846
846
|
```
|
|
847
847
|
|
|
848
|
+
_See code: [src/commands/login.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/login.ts)_
|
|
849
|
+
|
|
848
850
|
## `eas logout`
|
|
849
851
|
|
|
850
852
|
log out
|
|
@@ -860,6 +862,8 @@ ALIASES
|
|
|
860
862
|
$ eas logout
|
|
861
863
|
```
|
|
862
864
|
|
|
865
|
+
_See code: [src/commands/logout.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/logout.ts)_
|
|
866
|
+
|
|
863
867
|
## `eas metadata:lint`
|
|
864
868
|
|
|
865
869
|
validate the local store configuration
|
|
@@ -876,7 +880,7 @@ DESCRIPTION
|
|
|
876
880
|
validate the local store configuration
|
|
877
881
|
```
|
|
878
882
|
|
|
879
|
-
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
883
|
+
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
880
884
|
|
|
881
885
|
## `eas metadata:pull`
|
|
882
886
|
|
|
@@ -893,7 +897,7 @@ DESCRIPTION
|
|
|
893
897
|
generate the local store configuration from the app stores
|
|
894
898
|
```
|
|
895
899
|
|
|
896
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
900
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
897
901
|
|
|
898
902
|
## `eas metadata:push`
|
|
899
903
|
|
|
@@ -910,7 +914,7 @@ DESCRIPTION
|
|
|
910
914
|
sync the local store configuration to the app stores
|
|
911
915
|
```
|
|
912
916
|
|
|
913
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
917
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
914
918
|
|
|
915
919
|
## `eas open`
|
|
916
920
|
|
|
@@ -924,7 +928,7 @@ DESCRIPTION
|
|
|
924
928
|
open the project page in a web browser
|
|
925
929
|
```
|
|
926
930
|
|
|
927
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
931
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/open.ts)_
|
|
928
932
|
|
|
929
933
|
## `eas project:info`
|
|
930
934
|
|
|
@@ -938,7 +942,7 @@ DESCRIPTION
|
|
|
938
942
|
information about the current project
|
|
939
943
|
```
|
|
940
944
|
|
|
941
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
945
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
942
946
|
|
|
943
947
|
## `eas project:init`
|
|
944
948
|
|
|
@@ -960,55 +964,7 @@ ALIASES
|
|
|
960
964
|
$ eas init
|
|
961
965
|
```
|
|
962
966
|
|
|
963
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
964
|
-
|
|
965
|
-
## `eas run`
|
|
966
|
-
|
|
967
|
-
run simulator build
|
|
968
|
-
|
|
969
|
-
```
|
|
970
|
-
USAGE
|
|
971
|
-
$ eas run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
972
|
-
<value>] [--limit <value>]
|
|
973
|
-
|
|
974
|
-
FLAGS
|
|
975
|
-
-p, --platform=(android|ios|all)
|
|
976
|
-
--id=<value> ID of the simulator build to run
|
|
977
|
-
--latest Run the latest simulator build for specified platform
|
|
978
|
-
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
979
|
-
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
980
|
-
--path=<value> Path to the simulator build file file
|
|
981
|
-
--url=<value> Simulator build archive url
|
|
982
|
-
|
|
983
|
-
DESCRIPTION
|
|
984
|
-
run simulator build
|
|
985
|
-
```
|
|
986
|
-
|
|
987
|
-
_See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/v3.3.0/packages/eas-cli/src/commands/run/index.ts)_
|
|
988
|
-
|
|
989
|
-
## `eas run:run`
|
|
990
|
-
|
|
991
|
-
run simulator build
|
|
992
|
-
|
|
993
|
-
```
|
|
994
|
-
USAGE
|
|
995
|
-
$ eas run:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
996
|
-
<value>] [--limit <value>]
|
|
997
|
-
|
|
998
|
-
FLAGS
|
|
999
|
-
-p, --platform=(android|ios|all)
|
|
1000
|
-
--id=<value> ID of the simulator build to run
|
|
1001
|
-
--latest Run the latest simulator build for specified platform
|
|
1002
|
-
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
1003
|
-
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1004
|
-
--path=<value> Path to the simulator build file file
|
|
1005
|
-
--url=<value> Simulator build archive url
|
|
1006
|
-
|
|
1007
|
-
DESCRIPTION
|
|
1008
|
-
run simulator build
|
|
1009
|
-
```
|
|
1010
|
-
|
|
1011
|
-
_See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/v3.3.0/packages/eas-cli/src/commands/run/run.ts)_
|
|
967
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1012
968
|
|
|
1013
969
|
## `eas secret:create`
|
|
1014
970
|
|
|
@@ -1031,7 +987,7 @@ DESCRIPTION
|
|
|
1031
987
|
create an environment secret on the current project or owner account
|
|
1032
988
|
```
|
|
1033
989
|
|
|
1034
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
990
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1035
991
|
|
|
1036
992
|
## `eas secret:delete`
|
|
1037
993
|
|
|
@@ -1049,7 +1005,7 @@ DESCRIPTION
|
|
|
1049
1005
|
delete an environment secret by ID
|
|
1050
1006
|
```
|
|
1051
1007
|
|
|
1052
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1008
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1053
1009
|
|
|
1054
1010
|
## `eas secret:list`
|
|
1055
1011
|
|
|
@@ -1063,7 +1019,7 @@ DESCRIPTION
|
|
|
1063
1019
|
list environment secrets available for your current app
|
|
1064
1020
|
```
|
|
1065
1021
|
|
|
1066
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1022
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1067
1023
|
|
|
1068
1024
|
## `eas secret:push`
|
|
1069
1025
|
|
|
@@ -1083,7 +1039,7 @@ DESCRIPTION
|
|
|
1083
1039
|
read environment secrets from env file and store on the server
|
|
1084
1040
|
```
|
|
1085
1041
|
|
|
1086
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1042
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1087
1043
|
|
|
1088
1044
|
## `eas submit`
|
|
1089
1045
|
|
|
@@ -1113,7 +1069,7 @@ ALIASES
|
|
|
1113
1069
|
$ eas build:submit
|
|
1114
1070
|
```
|
|
1115
1071
|
|
|
1116
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1072
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1117
1073
|
|
|
1118
1074
|
## `eas update`
|
|
1119
1075
|
|
|
@@ -1145,7 +1101,7 @@ DESCRIPTION
|
|
|
1145
1101
|
publish an update group
|
|
1146
1102
|
```
|
|
1147
1103
|
|
|
1148
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1104
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1149
1105
|
|
|
1150
1106
|
## `eas update:configure`
|
|
1151
1107
|
|
|
@@ -1163,7 +1119,7 @@ DESCRIPTION
|
|
|
1163
1119
|
configure the project to support EAS Update
|
|
1164
1120
|
```
|
|
1165
1121
|
|
|
1166
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1122
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1167
1123
|
|
|
1168
1124
|
## `eas update:delete GROUPID`
|
|
1169
1125
|
|
|
@@ -1184,7 +1140,7 @@ DESCRIPTION
|
|
|
1184
1140
|
delete all the updates in an update group
|
|
1185
1141
|
```
|
|
1186
1142
|
|
|
1187
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1143
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1188
1144
|
|
|
1189
1145
|
## `eas update:list`
|
|
1190
1146
|
|
|
@@ -1206,7 +1162,7 @@ DESCRIPTION
|
|
|
1206
1162
|
view the recent updates
|
|
1207
1163
|
```
|
|
1208
1164
|
|
|
1209
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1165
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1210
1166
|
|
|
1211
1167
|
## `eas update:republish`
|
|
1212
1168
|
|
|
@@ -1230,7 +1186,7 @@ DESCRIPTION
|
|
|
1230
1186
|
rollback to an existing update
|
|
1231
1187
|
```
|
|
1232
1188
|
|
|
1233
|
-
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1189
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1234
1190
|
|
|
1235
1191
|
## `eas update:view GROUPID`
|
|
1236
1192
|
|
|
@@ -1250,7 +1206,7 @@ DESCRIPTION
|
|
|
1250
1206
|
update group details
|
|
1251
1207
|
```
|
|
1252
1208
|
|
|
1253
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1209
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1254
1210
|
|
|
1255
1211
|
## `eas webhook:create`
|
|
1256
1212
|
|
|
@@ -1271,7 +1227,7 @@ DESCRIPTION
|
|
|
1271
1227
|
create a webhook
|
|
1272
1228
|
```
|
|
1273
1229
|
|
|
1274
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1230
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1275
1231
|
|
|
1276
1232
|
## `eas webhook:delete [ID]`
|
|
1277
1233
|
|
|
@@ -1291,7 +1247,7 @@ DESCRIPTION
|
|
|
1291
1247
|
delete a webhook
|
|
1292
1248
|
```
|
|
1293
1249
|
|
|
1294
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1250
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1295
1251
|
|
|
1296
1252
|
## `eas webhook:list`
|
|
1297
1253
|
|
|
@@ -1299,17 +1255,16 @@ list webhooks
|
|
|
1299
1255
|
|
|
1300
1256
|
```
|
|
1301
1257
|
USAGE
|
|
1302
|
-
$ eas webhook:list [--event BUILD|SUBMIT]
|
|
1258
|
+
$ eas webhook:list [--event BUILD|SUBMIT]
|
|
1303
1259
|
|
|
1304
1260
|
FLAGS
|
|
1305
1261
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
1306
|
-
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1307
1262
|
|
|
1308
1263
|
DESCRIPTION
|
|
1309
1264
|
list webhooks
|
|
1310
1265
|
```
|
|
1311
1266
|
|
|
1312
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1267
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1313
1268
|
|
|
1314
1269
|
## `eas webhook:update`
|
|
1315
1270
|
|
|
@@ -1331,7 +1286,7 @@ DESCRIPTION
|
|
|
1331
1286
|
update a webhook
|
|
1332
1287
|
```
|
|
1333
1288
|
|
|
1334
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1289
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1335
1290
|
|
|
1336
1291
|
## `eas webhook:view ID`
|
|
1337
1292
|
|
|
@@ -1348,7 +1303,7 @@ DESCRIPTION
|
|
|
1348
1303
|
view a webhook
|
|
1349
1304
|
```
|
|
1350
1305
|
|
|
1351
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.3.
|
|
1306
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1352
1307
|
|
|
1353
1308
|
## `eas whoami`
|
|
1354
1309
|
|
|
@@ -1364,4 +1319,6 @@ DESCRIPTION
|
|
|
1364
1319
|
ALIASES
|
|
1365
1320
|
$ eas whoami
|
|
1366
1321
|
```
|
|
1322
|
+
|
|
1323
|
+
_See code: [src/commands/whoami.ts](https://github.com/expo/eas-cli/blob/v3.3.1/packages/eas-cli/src/commands/whoami.ts)_
|
|
1367
1324
|
<!-- commandsstop -->
|
|
@@ -256,7 +256,7 @@ class UpdatePublish extends EasCommand_1.default {
|
|
|
256
256
|
throw e;
|
|
257
257
|
}
|
|
258
258
|
if (jsonFlag) {
|
|
259
|
-
(0, json_1.printJsonOnlyOutput)(
|
|
259
|
+
(0, json_1.printJsonOnlyOutput)(newUpdates);
|
|
260
260
|
}
|
|
261
261
|
else {
|
|
262
262
|
if (new Set(newUpdates.map(update => update.group)).size > 1) {
|
|
@@ -17,11 +17,11 @@ class UpdateView extends EasCommand_1.default {
|
|
|
17
17
|
(0, json_1.enableJsonOutput)();
|
|
18
18
|
}
|
|
19
19
|
const updatesByGroup = await UpdateQuery_1.UpdateQuery.viewUpdateGroupAsync(graphqlClient, { groupId });
|
|
20
|
+
const [updateGroupDescription] = (0, utils_1.getUpdateGroupDescriptions)([updatesByGroup]);
|
|
20
21
|
if (jsonFlag) {
|
|
21
|
-
(0, json_1.printJsonOnlyOutput)(
|
|
22
|
+
(0, json_1.printJsonOnlyOutput)(updateGroupDescription);
|
|
22
23
|
}
|
|
23
24
|
else {
|
|
24
|
-
const [updateGroupDescription] = (0, utils_1.getUpdateGroupDescriptions)([updatesByGroup]);
|
|
25
25
|
log_1.default.log(chalk_1.default.bold('Update group:'));
|
|
26
26
|
log_1.default.log((0, utils_1.formatUpdateGroup)(updateGroupDescription));
|
|
27
27
|
}
|
|
@@ -3791,21 +3791,9 @@ export declare type User = Actor & {
|
|
|
3791
3791
|
hasPendingUserInvitations: Scalars['Boolean'];
|
|
3792
3792
|
id: Scalars['ID'];
|
|
3793
3793
|
industry?: Maybe<Scalars['String']>;
|
|
3794
|
-
/** @deprecated No longer supported */
|
|
3795
|
-
isEmailUnsubscribed: Scalars['Boolean'];
|
|
3796
3794
|
isExpoAdmin: Scalars['Boolean'];
|
|
3797
|
-
/** @deprecated No longer supported */
|
|
3798
|
-
isLegacy?: Maybe<Scalars['Boolean']>;
|
|
3799
|
-
/** @deprecated No longer supported */
|
|
3800
|
-
isOnboarded?: Maybe<Scalars['Boolean']>;
|
|
3801
3795
|
isSecondFactorAuthenticationEnabled: Scalars['Boolean'];
|
|
3802
|
-
/** @deprecated No longer supported */
|
|
3803
|
-
lastLogin?: Maybe<Scalars['DateTime']>;
|
|
3804
3796
|
lastName?: Maybe<Scalars['String']>;
|
|
3805
|
-
/** @deprecated No longer supported */
|
|
3806
|
-
lastPasswordReset?: Maybe<Scalars['DateTime']>;
|
|
3807
|
-
/** @deprecated 'likes' have been deprecated. */
|
|
3808
|
-
likes?: Maybe<Array<Maybe<App>>>;
|
|
3809
3797
|
location?: Maybe<Scalars['String']>;
|
|
3810
3798
|
notificationSubscriptions: Array<NotificationSubscription>;
|
|
3811
3799
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
@@ -3819,8 +3807,6 @@ export declare type User = Actor & {
|
|
|
3819
3807
|
snacks: Array<Snack>;
|
|
3820
3808
|
twitterUsername?: Maybe<Scalars['String']>;
|
|
3821
3809
|
username: Scalars['String'];
|
|
3822
|
-
/** @deprecated No longer supported */
|
|
3823
|
-
wasLegacy?: Maybe<Scalars['Boolean']>;
|
|
3824
3810
|
};
|
|
3825
3811
|
/** Represents a human (not robot) actor. */
|
|
3826
3812
|
export declare type UserActivityTimelineProjectActivitiesArgs = {
|
|
@@ -3839,11 +3825,6 @@ export declare type UserFeatureGatesArgs = {
|
|
|
3839
3825
|
filter?: InputMaybe<Array<Scalars['String']>>;
|
|
3840
3826
|
};
|
|
3841
3827
|
/** Represents a human (not robot) actor. */
|
|
3842
|
-
export declare type UserLikesArgs = {
|
|
3843
|
-
limit: Scalars['Int'];
|
|
3844
|
-
offset: Scalars['Int'];
|
|
3845
|
-
};
|
|
3846
|
-
/** Represents a human (not robot) actor. */
|
|
3847
3828
|
export declare type UserNotificationSubscriptionsArgs = {
|
|
3848
3829
|
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
3849
3830
|
};
|
|
@@ -3860,15 +3841,11 @@ export declare type UserDataInput = {
|
|
|
3860
3841
|
githubUsername?: InputMaybe<Scalars['String']>;
|
|
3861
3842
|
id?: InputMaybe<Scalars['ID']>;
|
|
3862
3843
|
industry?: InputMaybe<Scalars['String']>;
|
|
3863
|
-
isEmailUnsubscribed?: InputMaybe<Scalars['Boolean']>;
|
|
3864
|
-
isLegacy?: InputMaybe<Scalars['Boolean']>;
|
|
3865
|
-
isOnboarded?: InputMaybe<Scalars['Boolean']>;
|
|
3866
3844
|
lastName?: InputMaybe<Scalars['String']>;
|
|
3867
3845
|
location?: InputMaybe<Scalars['String']>;
|
|
3868
3846
|
profilePhoto?: InputMaybe<Scalars['String']>;
|
|
3869
3847
|
twitterUsername?: InputMaybe<Scalars['String']>;
|
|
3870
3848
|
username?: InputMaybe<Scalars['String']>;
|
|
3871
|
-
wasLegacy?: InputMaybe<Scalars['Boolean']>;
|
|
3872
3849
|
};
|
|
3873
3850
|
/** An pending invitation sent to an email granting membership on an Account. */
|
|
3874
3851
|
export declare type UserInvitation = {
|
|
@@ -7340,36 +7317,9 @@ export declare type UpdatePublishMutation = {
|
|
|
7340
7317
|
__typename?: 'Update';
|
|
7341
7318
|
id: string;
|
|
7342
7319
|
group: string;
|
|
7343
|
-
message?: string | null;
|
|
7344
|
-
createdAt: any;
|
|
7345
7320
|
runtimeVersion: string;
|
|
7346
7321
|
platform: string;
|
|
7347
|
-
manifestFragment: string;
|
|
7348
7322
|
manifestPermalink: string;
|
|
7349
|
-
gitCommitHash?: string | null;
|
|
7350
|
-
actor?: {
|
|
7351
|
-
__typename: 'Robot';
|
|
7352
|
-
firstName?: string | null;
|
|
7353
|
-
id: string;
|
|
7354
|
-
} | {
|
|
7355
|
-
__typename: 'SSOUser';
|
|
7356
|
-
id: string;
|
|
7357
|
-
} | {
|
|
7358
|
-
__typename: 'User';
|
|
7359
|
-
username: string;
|
|
7360
|
-
id: string;
|
|
7361
|
-
} | null;
|
|
7362
|
-
branch: {
|
|
7363
|
-
__typename?: 'UpdateBranch';
|
|
7364
|
-
id: string;
|
|
7365
|
-
name: string;
|
|
7366
|
-
};
|
|
7367
|
-
codeSigningInfo?: {
|
|
7368
|
-
__typename?: 'CodeSigningInfo';
|
|
7369
|
-
keyid: string;
|
|
7370
|
-
sig: string;
|
|
7371
|
-
alg: string;
|
|
7372
|
-
} | null;
|
|
7373
7323
|
}>;
|
|
7374
7324
|
};
|
|
7375
7325
|
};
|
|
@@ -7685,7 +7635,6 @@ export declare type BranchesByAppQuery = {
|
|
|
7685
7635
|
runtimeVersion: string;
|
|
7686
7636
|
platform: string;
|
|
7687
7637
|
manifestFragment: string;
|
|
7688
|
-
manifestPermalink: string;
|
|
7689
7638
|
gitCommitHash?: string | null;
|
|
7690
7639
|
actor?: {
|
|
7691
7640
|
__typename: 'Robot';
|
|
@@ -7744,7 +7693,6 @@ export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
|
7744
7693
|
runtimeVersion: string;
|
|
7745
7694
|
platform: string;
|
|
7746
7695
|
manifestFragment: string;
|
|
7747
|
-
manifestPermalink: string;
|
|
7748
7696
|
gitCommitHash?: string | null;
|
|
7749
7697
|
actor?: {
|
|
7750
7698
|
__typename: 'Robot';
|
|
@@ -8068,7 +8016,6 @@ export declare type ViewUpdateChannelOnAppQuery = {
|
|
|
8068
8016
|
runtimeVersion: string;
|
|
8069
8017
|
platform: string;
|
|
8070
8018
|
manifestFragment: string;
|
|
8071
|
-
manifestPermalink: string;
|
|
8072
8019
|
gitCommitHash?: string | null;
|
|
8073
8020
|
actor?: {
|
|
8074
8021
|
__typename: 'Robot';
|
|
@@ -8129,7 +8076,6 @@ export declare type ViewUpdateChannelsOnAppQuery = {
|
|
|
8129
8076
|
runtimeVersion: string;
|
|
8130
8077
|
platform: string;
|
|
8131
8078
|
manifestFragment: string;
|
|
8132
|
-
manifestPermalink: string;
|
|
8133
8079
|
gitCommitHash?: string | null;
|
|
8134
8080
|
actor?: {
|
|
8135
8081
|
__typename: 'Robot';
|
|
@@ -8350,7 +8296,6 @@ export declare type ViewUpdatesByGroupQuery = {
|
|
|
8350
8296
|
runtimeVersion: string;
|
|
8351
8297
|
platform: string;
|
|
8352
8298
|
manifestFragment: string;
|
|
8353
|
-
manifestPermalink: string;
|
|
8354
8299
|
gitCommitHash?: string | null;
|
|
8355
8300
|
actor?: {
|
|
8356
8301
|
__typename: 'Robot';
|
|
@@ -8403,7 +8348,6 @@ export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
|
8403
8348
|
runtimeVersion: string;
|
|
8404
8349
|
platform: string;
|
|
8405
8350
|
manifestFragment: string;
|
|
8406
|
-
manifestPermalink: string;
|
|
8407
8351
|
gitCommitHash?: string | null;
|
|
8408
8352
|
actor?: {
|
|
8409
8353
|
__typename: 'Robot';
|
|
@@ -8455,7 +8399,6 @@ export declare type ViewUpdateGroupsOnAppQuery = {
|
|
|
8455
8399
|
runtimeVersion: string;
|
|
8456
8400
|
platform: string;
|
|
8457
8401
|
manifestFragment: string;
|
|
8458
|
-
manifestPermalink: string;
|
|
8459
8402
|
gitCommitHash?: string | null;
|
|
8460
8403
|
actor?: {
|
|
8461
8404
|
__typename: 'Robot';
|
|
@@ -8895,7 +8838,6 @@ export declare type UpdateFragment = {
|
|
|
8895
8838
|
runtimeVersion: string;
|
|
8896
8839
|
platform: string;
|
|
8897
8840
|
manifestFragment: string;
|
|
8898
|
-
manifestPermalink: string;
|
|
8899
8841
|
gitCommitHash?: string | null;
|
|
8900
8842
|
actor?: {
|
|
8901
8843
|
__typename: 'Robot';
|
|
@@ -8934,7 +8876,6 @@ export declare type UpdateBranchFragment = {
|
|
|
8934
8876
|
runtimeVersion: string;
|
|
8935
8877
|
platform: string;
|
|
8936
8878
|
manifestFragment: string;
|
|
8937
|
-
manifestPermalink: string;
|
|
8938
8879
|
gitCommitHash?: string | null;
|
|
8939
8880
|
actor?: {
|
|
8940
8881
|
__typename: 'Robot';
|
package/build/update/utils.d.ts
CHANGED
|
@@ -5,9 +5,6 @@ import { ProfileData } from '../utils/profiles';
|
|
|
5
5
|
export declare type FormatUpdateParameter = Pick<Update, 'id' | 'createdAt' | 'message'> & {
|
|
6
6
|
actor?: Maybe<Pick<User, 'username' | 'id'> | Pick<Robot, 'firstName' | 'id'>>;
|
|
7
7
|
};
|
|
8
|
-
export declare type UpdateJsonInfo = {
|
|
9
|
-
branch: string;
|
|
10
|
-
} & Pick<UpdateFragment, 'id' | 'createdAt' | 'group' | 'message' | 'runtimeVersion' | 'platform' | 'manifestPermalink' | 'gitCommitHash'>;
|
|
11
8
|
export declare type UpdateGroupDescription = FormatUpdateParameter & {
|
|
12
9
|
branch: string;
|
|
13
10
|
group: string;
|
|
@@ -47,7 +44,6 @@ export declare function truncateString(originalMessage: string, length?: number)
|
|
|
47
44
|
export declare function formatUpdateMessage(update: FormatUpdateParameter): string;
|
|
48
45
|
export declare function ensureValidVersions(exp: ExpoConfig, platform: RequestedPlatform): void;
|
|
49
46
|
export declare function formatUpdateTitle(update: UpdateFragment): string;
|
|
50
|
-
export declare function getUpdateGroupJsonInfo(updateGroups: UpdateFragment[]): UpdateJsonInfo[];
|
|
51
47
|
export declare function getUpdateGroupDescriptions(updateGroups: UpdateFragment[][]): FormattedUpdateGroupDescription[];
|
|
52
48
|
export declare function getUpdateGroupDescriptionsWithBranch(updateGroups: UpdateFragment[][]): FormattedUpdateGroupDescriptionWithBranch[];
|
|
53
49
|
export declare function getBranchDescription(branch: UpdateBranchFragment): FormattedBranchDescription;
|
package/build/update/utils.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.validateBuildProfileConfigMatchesProjectConfigAsync = exports.checkEASUpdateURLIsSetAsync = exports.getBranchDescription = exports.getUpdateGroupDescriptionsWithBranch = exports.getUpdateGroupDescriptions = exports.
|
|
3
|
+
exports.validateBuildProfileConfigMatchesProjectConfigAsync = exports.checkEASUpdateURLIsSetAsync = exports.getBranchDescription = exports.getUpdateGroupDescriptionsWithBranch = exports.getUpdateGroupDescriptions = exports.formatUpdateTitle = exports.ensureValidVersions = exports.formatUpdateMessage = exports.truncateString = exports.formatPlatformForUpdateGroup = exports.getPlatformsForGroup = exports.formatBranch = exports.formatUpdateGroup = exports.UPDATE_COLUMNS_WITH_BRANCH = exports.UPDATE_COLUMNS = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const timeago_js_1 = require("@expo/timeago.js");
|
|
6
6
|
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
@@ -106,20 +106,6 @@ function formatUpdateTitle(update) {
|
|
|
106
106
|
return `[${(0, dateformat_1.default)(createdAt, 'mmm dd HH:MM')} by ${actorName}, runtimeVersion: ${runtimeVersion}] ${message}`;
|
|
107
107
|
}
|
|
108
108
|
exports.formatUpdateTitle = formatUpdateTitle;
|
|
109
|
-
function getUpdateGroupJsonInfo(updateGroups) {
|
|
110
|
-
return updateGroups.map(update => ({
|
|
111
|
-
id: update.id,
|
|
112
|
-
createdAt: update.createdAt,
|
|
113
|
-
group: update.group,
|
|
114
|
-
branch: update.branch.name,
|
|
115
|
-
message: update.message,
|
|
116
|
-
runtimeVersion: update.runtimeVersion,
|
|
117
|
-
platform: update.platform,
|
|
118
|
-
manifestPermalink: update.manifestPermalink,
|
|
119
|
-
gitCommitHash: update.gitCommitHash,
|
|
120
|
-
}));
|
|
121
|
-
}
|
|
122
|
-
exports.getUpdateGroupJsonInfo = getUpdateGroupJsonInfo;
|
|
123
109
|
function getUpdateGroupDescriptions(updateGroups) {
|
|
124
110
|
return updateGroups.map(updateGroup => ({
|
|
125
111
|
message: formatUpdateMessage(updateGroup[0]),
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"3.3.0","commands":{"analytics":{"id":"analytics","description":"display or change analytics settings","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"display project configuration (app.json + eas.json)","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"getDynamicProjectConfigAsync":{},"projectDir":{}}},"credentials":{"id":"credentials","description":"manage credentials","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"getDynamicProjectConfigAsync":{},"analytics":{}}},"diagnostics":{"id":"diagnostics","description":"display environment info","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"projectDir":{}}},"open":{"id":"open","description":"open the project page in a web browser","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"submit":{"id":"submit","description":"submit app binary to App Store and/or Play Store","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false,"exclusive":["id","path","url"]},"id":{"name":"id","type":"option","description":"ID of the build to submit","multiple":false,"exclusive":["latest, path, url"]},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file","multiple":false,"exclusive":["latest","id","url"]},"url":{"name":"url","type":"option","description":"App archive url","multiple":false,"exclusive":["latest","id","path"]},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from EAS Submit","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for submission to complete","allowNo":true},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"projectDir":{},"analytics":{}}},"account:login":{"id":"account:login","description":"log in with your Expo account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[],"contextDefinition":{"sessionManager":{}}},"account:logout":{"id":"account:logout","description":"log out","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[],"contextDefinition":{"sessionManager":{}}},"account:view":{"id":"account:view","description":"show the username you are logged in as","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[],"contextDefinition":{"maybeLoggedIn":{}}},"branch:create":{"id":"branch:create","description":"create a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:delete":{"id":"branch:delete","description":"delete a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:list":{"id":"branch:list","description":"list all branches","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:publish":{"id":"branch:publish","description":"deprecated, use \"eas update\"","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"branch:rename":{"id":"branch:rename","description":"rename a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false,"multiple":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false,"multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:view":{"id":"branch:view","description":"view a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 25 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:cancel":{"id":"build:cancel","description":"cancel a build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"BUILD_ID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:configure":{"id":"build:configure","description":"configure the project to support EAS Build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build":{"id":"build","description":"start a build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","hidden":true,"allowNo":false},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":false},"output":{"name":"output","type":"option","description":"Output path for local build","multiple":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete","allowNo":true},"clear-cache":{"name":"clear-cache","type":"boolean","description":"Clear cache before the build","allowNo":false},"auto-submit":{"name":"auto-submit","type":"boolean","description":"Submit on build complete using the submit profile with the same name as the build profile","allowNo":false,"exclusive":["auto-submit-with-profile"]},"auto-submit-with-profile":{"name":"auto-submit-with-profile","type":"option","description":"Submit on build complete using the submit profile with provided name","helpValue":"PROFILE_NAME","multiple":false,"exclusive":["auto-submit"]},"resource-class":{"name":"resource-class","type":"option","description":"The instance type that will be used to run this build [experimental]","hidden":true,"helpValue":"(default|large|m1-experimental|m1-medium|m1-large|intel-medium|medium)","multiple":false,"options":["default","large","m1-experimental","m1-medium","m1-large","intel-medium","medium"],"deprecated":{"message":"The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"}},"message":{"name":"message","type":"option","char":"m","description":"A short message describing the build","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:inspect":{"id":"build:inspect","description":"inspect the state of the project at specific build stages, useful for troubleshooting","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","required":true,"helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"stage":{"name":"stage","type":"option","char":"s","description":"Stage of the build you want to inspect.\n archive - builds the project archive that would be uploaded to EAS when building\n pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.\n post-build - builds the native project and leaves the output directory for inspection","required":true,"helpValue":"(archive|pre-build|post-build)","multiple":false,"options":["archive","pre-build","post-build"]},"output":{"name":"output","type":"option","char":"o","description":"Output directory.","required":true,"helpValue":"OUTPUT_DIRECTORY","multiple":false},"force":{"name":"force","type":"boolean","description":"Delete OUTPUT_DIRECTORY if it already exists.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:list":{"id":"build:list","description":"list all builds for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","multiple":false,"options":["all","android","ios"]},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","multiple":false,"options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","multiple":false,"options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option","multiple":false},"appVersion":{"name":"appVersion","type":"option","multiple":false},"appBuildVersion":{"name":"appBuildVersion","type":"option","multiple":false},"sdkVersion":{"name":"sdkVersion","type":"option","multiple":false},"runtimeVersion":{"name":"runtimeVersion","type":"option","multiple":false},"appIdentifier":{"name":"appIdentifier","type":"option","multiple":false},"buildProfile":{"name":"buildProfile","type":"option","multiple":false},"gitCommitHash":{"name":"gitCommitHash","type":"option","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 10 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:resign":{"id":"build:resign","description":"re-sign a build archive","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete.","allowNo":true},"id":{"name":"id","type":"option","description":"ID of the build to re-sign.","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:run":{"id":"build:run","description":"run simulator/emulator builds from eas-cli","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"latest":{"name":"latest","type":"boolean","description":"Run the latest simulator/emulator build for specified platform","allowNo":false,"exclusive":["id","path","url"]},"url":{"name":"url","type":"option","description":"Simulator/Emulator build archive url","multiple":false,"exclusive":["latest","id","path"]},"path":{"name":"path","type":"option","description":"Path to the simulator/emulator build archive or app","multiple":false,"exclusive":["latest","id","url"]},"id":{"name":"id","type":"option","description":"ID of the simulator/emulator build to run","multiple":false,"exclusive":["latest, path, url"]},"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"projectDir":{}}},"build:view":{"id":"build:view","description":"view a build for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[{"name":"BUILD_ID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:create":{"id":"channel:create","description":"create a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:delete":{"id":"channel:delete","description":"Delete a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:edit":{"id":"channel:edit","description":"point a channel at a new branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:list":{"id":"channel:list","description":"list all channels","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 10 and is capped at 25.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false,"multiple":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false,"multiple":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:view":{"id":"channel:view","description":"view a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:delete":{"id":"device:delete","description":"remove a registered device from your account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option","description":"The Apple team ID on which to find the device","multiple":false},"udid":{"name":"udid","type":"option","description":"The Apple device ID to disable","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:list":{"id":"device:list","description":"list all registered devices for your account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:view":{"id":"device:view","description":"view a device for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"metadata:lint":{"id":"metadata:lint","description":"validate the local store configuration","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"projectDir":{}}},"metadata:pull":{"id":"metadata:pull","description":"generate the local store configuration from the app stores","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"analytics":{}}},"metadata:push":{"id":"metadata:push","description":"sync the local store configuration to the app stores","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"analytics":{}}},"project:info":{"id":"project:info","description":"information about the current project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"project:init":{"id":"project:init","description":"create or link an EAS project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["init"],"flags":{"id":{"name":"id","type":"option","description":"ID of the EAS project to link","multiple":false},"force":{"name":"force","type":"boolean","description":"Whether to overwrite any existing project ID","allowNo":false,"dependsOn":["id"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false,"dependsOn":["id"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectDir":{}}},"secret:create":{"id":"secret:create","description":"create an environment secret on the current project or owner account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","multiple":false,"options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret","multiple":false},"value":{"name":"value","type":"option","description":"Text value or path to a file to store in the secret","multiple":false},"type":{"name":"type","type":"option","description":"The type of secret","helpValue":"(string|file)","multiple":false,"options":["string","file"]},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:delete":{"id":"secret:delete","description":"delete an environment secret by ID","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:list":{"id":"secret:list","description":"list environment secrets available for your current app","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:push":{"id":"secret:push","description":"read environment secrets from env file and store on the server","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secrets","helpValue":"(account|project)","multiple":false,"options":["account","project"],"default":"project"},"env-file":{"name":"env-file","type":"option","description":"Env file with secrets","multiple":false},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:configure":{"id":"update:configure","description":"configure the project to support EAS Update","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:delete":{"id":"update:delete","description":"delete all the updates in an update group","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}],"contextDefinition":{"loggedIn":{}}},"update":{"id":"update","description":"publish an update group","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Branch to publish the update group on","required":false,"multiple":false},"channel":{"name":"channel","type":"option","description":"Channel that the published update should affect","required":false,"multiple":false},"message":{"name":"message","type":"option","description":"A short message describing the update","required":false,"multiple":false},"republish":{"name":"republish","type":"boolean","description":"Republish an update group (deprecated, see republish command)","allowNo":false,"exclusive":["input-dir","skip-bundler"]},"group":{"name":"group","type":"option","description":"Update group to republish (deprecated, see republish command)","multiple":false,"exclusive":["input-dir","skip-bundler"]},"input-dir":{"name":"input-dir","type":"option","description":"Location of the bundle","required":false,"multiple":false,"default":"dist"},"skip-bundler":{"name":"skip-bundler","type":"boolean","description":"Skip running Expo CLI to bundle the app before publishing","allowNo":false},"platform":{"name":"platform","type":"option","char":"p","required":false,"helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"auto":{"name":"auto","type":"boolean","description":"Use the current git branch and commit message for the EAS branch and update message","allowNo":false},"private-key-path":{"name":"private-key-path","type":"option","description":"File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory.","required":false,"multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"getDynamicProjectConfigAsync":{},"loggedIn":{}}},"update:list":{"id":"update:list","description":"view the recent updates","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"List updates only on this branch","multiple":false,"exclusive":["all"]},"all":{"name":"all","type":"boolean","description":"List updates on all branches","allowNo":false,"exclusive":["branch"]},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 25 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:republish":{"id":"update:republish","description":"rollback to an existing update","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"channel":{"name":"channel","type":"option","description":"Channel name to select an update to republish from","multiple":false,"exclusive":["branch","group"]},"branch":{"name":"branch","type":"option","description":"Branch name to select an update to republish from","multiple":false,"exclusive":["channel","group"]},"group":{"name":"group","type":"option","description":"Update group ID to republish","multiple":false,"exclusive":["branch","channel"]},"message":{"name":"message","type":"option","description":"Short message describing the republished update","required":false,"multiple":false},"platform":{"name":"platform","type":"option","char":"p","required":false,"helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:view":{"id":"update:view","description":"update group details","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}],"contextDefinition":{"loggedIn":{}}},"webhook:create":{"id":"webhook:create","description":"create a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL","multiple":false},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:delete":{"id":"webhook:delete","description":"delete a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:list":{"id":"webhook:list","description":"list webhooks","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:update":{"id":"webhook:update","description":"update a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true,"multiple":false},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL","multiple":false},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{}}},"webhook:view":{"id":"webhook:view","description":"view a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}],"contextDefinition":{"loggedIn":{}}},"build:version:set":{"id":"build:version:set","description":"Update version of an app.","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{}}},"build:version:sync":{"id":"build:version:sync","description":"Update a version in native code with a value stored on EAS servers","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{}}}}}
|
|
1
|
+
{"version":"3.3.1","commands":{"analytics":{"id":"analytics","description":"display or change analytics settings","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"display project configuration (app.json + eas.json)","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"getDynamicProjectConfigAsync":{},"projectDir":{}}},"credentials":{"id":"credentials","description":"manage credentials","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"getDynamicProjectConfigAsync":{},"analytics":{}}},"diagnostics":{"id":"diagnostics","description":"display environment info","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"projectDir":{}}},"open":{"id":"open","description":"open the project page in a web browser","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"submit":{"id":"submit","description":"submit app binary to App Store and/or Play Store","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false,"exclusive":["id","path","url"]},"id":{"name":"id","type":"option","description":"ID of the build to submit","multiple":false,"exclusive":["latest, path, url"]},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file","multiple":false,"exclusive":["latest","id","url"]},"url":{"name":"url","type":"option","description":"App archive url","multiple":false,"exclusive":["latest","id","path"]},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from EAS Submit","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for submission to complete","allowNo":true},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"projectDir":{},"analytics":{}}},"account:login":{"id":"account:login","description":"log in with your Expo account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[],"contextDefinition":{"sessionManager":{}}},"account:logout":{"id":"account:logout","description":"log out","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[],"contextDefinition":{"sessionManager":{}}},"account:view":{"id":"account:view","description":"show the username you are logged in as","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[],"contextDefinition":{"maybeLoggedIn":{}}},"branch:create":{"id":"branch:create","description":"create a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:delete":{"id":"branch:delete","description":"delete a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:list":{"id":"branch:list","description":"list all branches","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:publish":{"id":"branch:publish","description":"deprecated, use \"eas update\"","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"branch:rename":{"id":"branch:rename","description":"rename a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false,"multiple":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false,"multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"branch:view":{"id":"branch:view","description":"view a branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 25 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:cancel":{"id":"build:cancel","description":"cancel a build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"BUILD_ID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:configure":{"id":"build:configure","description":"configure the project to support EAS Build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build":{"id":"build","description":"start a build","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","hidden":true,"allowNo":false},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":false},"output":{"name":"output","type":"option","description":"Output path for local build","multiple":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete","allowNo":true},"clear-cache":{"name":"clear-cache","type":"boolean","description":"Clear cache before the build","allowNo":false},"auto-submit":{"name":"auto-submit","type":"boolean","description":"Submit on build complete using the submit profile with the same name as the build profile","allowNo":false,"exclusive":["auto-submit-with-profile"]},"auto-submit-with-profile":{"name":"auto-submit-with-profile","type":"option","description":"Submit on build complete using the submit profile with provided name","helpValue":"PROFILE_NAME","multiple":false,"exclusive":["auto-submit"]},"resource-class":{"name":"resource-class","type":"option","description":"The instance type that will be used to run this build [experimental]","hidden":true,"helpValue":"(default|large|m1-experimental|m1-medium|m1-large|intel-medium|medium)","multiple":false,"options":["default","large","m1-experimental","m1-medium","m1-large","intel-medium","medium"],"deprecated":{"message":"The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"}},"message":{"name":"message","type":"option","char":"m","description":"A short message describing the build","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:inspect":{"id":"build:inspect","description":"inspect the state of the project at specific build stages, useful for troubleshooting","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","required":true,"helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"stage":{"name":"stage","type":"option","char":"s","description":"Stage of the build you want to inspect.\n archive - builds the project archive that would be uploaded to EAS when building\n pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.\n post-build - builds the native project and leaves the output directory for inspection","required":true,"helpValue":"(archive|pre-build|post-build)","multiple":false,"options":["archive","pre-build","post-build"]},"output":{"name":"output","type":"option","char":"o","description":"Output directory.","required":true,"helpValue":"OUTPUT_DIRECTORY","multiple":false},"force":{"name":"force","type":"boolean","description":"Delete OUTPUT_DIRECTORY if it already exists.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:list":{"id":"build:list","description":"list all builds for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","multiple":false,"options":["all","android","ios"]},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","multiple":false,"options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","multiple":false,"options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option","multiple":false},"appVersion":{"name":"appVersion","type":"option","multiple":false},"appBuildVersion":{"name":"appBuildVersion","type":"option","multiple":false},"sdkVersion":{"name":"sdkVersion","type":"option","multiple":false},"runtimeVersion":{"name":"runtimeVersion","type":"option","multiple":false},"appIdentifier":{"name":"appIdentifier","type":"option","multiple":false},"buildProfile":{"name":"buildProfile","type":"option","multiple":false},"gitCommitHash":{"name":"gitCommitHash","type":"option","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 10 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"build:resign":{"id":"build:resign","description":"re-sign a build archive","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete.","allowNo":true},"id":{"name":"id","type":"option","description":"ID of the build to re-sign.","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{},"analytics":{}}},"build:run":{"id":"build:run","description":"run simulator/emulator builds from eas-cli","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"latest":{"name":"latest","type":"boolean","description":"Run the latest simulator/emulator build for specified platform","allowNo":false,"exclusive":["id","path","url"]},"url":{"name":"url","type":"option","description":"Simulator/Emulator build archive url","multiple":false,"exclusive":["latest","id","path"]},"path":{"name":"path","type":"option","description":"Path to the simulator/emulator build archive or app","multiple":false,"exclusive":["latest","id","url"]},"id":{"name":"id","type":"option","description":"ID of the simulator/emulator build to run","multiple":false,"exclusive":["latest, path, url"]},"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"projectDir":{}}},"build:view":{"id":"build:view","description":"view a build for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[{"name":"BUILD_ID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:create":{"id":"channel:create","description":"create a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:delete":{"id":"channel:delete","description":"Delete a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:edit":{"id":"channel:edit","description":"point a channel at a new branch","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:list":{"id":"channel:list","description":"list all channels","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 10 and is capped at 25.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false,"multiple":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false,"multiple":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"channel:view":{"id":"channel:view","description":"view a channel","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:delete":{"id":"device:delete","description":"remove a registered device from your account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option","description":"The Apple team ID on which to find the device","multiple":false},"udid":{"name":"udid","type":"option","description":"The Apple device ID to disable","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:list":{"id":"device:list","description":"list all registered devices for your account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option","multiple":false},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 50 and is capped at 100.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"device:view":{"id":"device:view","description":"view a device for your project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"metadata:lint":{"id":"metadata:lint","description":"validate the local store configuration","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"projectDir":{}}},"metadata:pull":{"id":"metadata:pull","description":"generate the local store configuration from the app stores","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"analytics":{}}},"metadata:push":{"id":"metadata:push","description":"sync the local store configuration to the app stores","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"profile":{"name":"profile","type":"option","char":"e","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{},"analytics":{}}},"project:info":{"id":"project:info","description":"information about the current project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"project:init":{"id":"project:init","description":"create or link an EAS project","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":["init"],"flags":{"id":{"name":"id","type":"option","description":"ID of the EAS project to link","multiple":false},"force":{"name":"force","type":"boolean","description":"Whether to overwrite any existing project ID","allowNo":false,"dependsOn":["id"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false,"dependsOn":["id"]}},"args":[],"contextDefinition":{"loggedIn":{},"projectDir":{}}},"secret:create":{"id":"secret:create","description":"create an environment secret on the current project or owner account","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","multiple":false,"options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret","multiple":false},"value":{"name":"value","type":"option","description":"Text value or path to a file to store in the secret","multiple":false},"type":{"name":"type","type":"option","description":"The type of secret","helpValue":"(string|file)","multiple":false,"options":["string","file"]},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:delete":{"id":"secret:delete","description":"delete an environment secret by ID","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:list":{"id":"secret:list","description":"list environment secrets available for your current app","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"secret:push":{"id":"secret:push","description":"read environment secrets from env file and store on the server","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secrets","helpValue":"(account|project)","multiple":false,"options":["account","project"],"default":"project"},"env-file":{"name":"env-file","type":"option","description":"Env file with secrets","multiple":false},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:configure":{"id":"update:configure","description":"configure the project to support EAS Update","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:delete":{"id":"update:delete","description":"delete all the updates in an update group","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}],"contextDefinition":{"loggedIn":{}}},"update":{"id":"update","description":"publish an update group","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Branch to publish the update group on","required":false,"multiple":false},"channel":{"name":"channel","type":"option","description":"Channel that the published update should affect","required":false,"multiple":false},"message":{"name":"message","type":"option","description":"A short message describing the update","required":false,"multiple":false},"republish":{"name":"republish","type":"boolean","description":"Republish an update group (deprecated, see republish command)","allowNo":false,"exclusive":["input-dir","skip-bundler"]},"group":{"name":"group","type":"option","description":"Update group to republish (deprecated, see republish command)","multiple":false,"exclusive":["input-dir","skip-bundler"]},"input-dir":{"name":"input-dir","type":"option","description":"Location of the bundle","required":false,"multiple":false,"default":"dist"},"skip-bundler":{"name":"skip-bundler","type":"boolean","description":"Skip running Expo CLI to bundle the app before publishing","allowNo":false},"platform":{"name":"platform","type":"option","char":"p","required":false,"helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"auto":{"name":"auto","type":"boolean","description":"Use the current git branch and commit message for the EAS branch and update message","allowNo":false},"private-key-path":{"name":"private-key-path","type":"option","description":"File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory.","required":false,"multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"getDynamicProjectConfigAsync":{},"loggedIn":{}}},"update:list":{"id":"update:list","description":"view the recent updates","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"List updates only on this branch","multiple":false,"exclusive":["all"]},"all":{"name":"all","type":"boolean","description":"List updates on all branches","allowNo":false,"exclusive":["branch"]},"offset":{"name":"offset","type":"option","description":"Start queries from specified index. Use for paginating results. Defaults to 0.","multiple":false},"limit":{"name":"limit","type":"option","description":"The number of items to fetch each query. Defaults to 25 and is capped at 50.","multiple":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:republish":{"id":"update:republish","description":"rollback to an existing update","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"channel":{"name":"channel","type":"option","description":"Channel name to select an update to republish from","multiple":false,"exclusive":["branch","group"]},"branch":{"name":"branch","type":"option","description":"Branch name to select an update to republish from","multiple":false,"exclusive":["channel","group"]},"group":{"name":"group","type":"option","description":"Update group ID to republish","multiple":false,"exclusive":["branch","channel"]},"message":{"name":"message","type":"option","description":"Short message describing the republished update","required":false,"multiple":false},"platform":{"name":"platform","type":"option","char":"p","required":false,"helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"],"default":"all"},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false,"dependsOn":["non-interactive"]},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"update:view":{"id":"update:view","description":"update group details","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}],"contextDefinition":{"loggedIn":{}}},"webhook:create":{"id":"webhook:create","description":"create a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL","multiple":false},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:delete":{"id":"webhook:delete","description":"delete a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:list":{"id":"webhook:list","description":"list webhooks","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{},"projectConfig":{}}},"webhook:update":{"id":"webhook:update","description":"update a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true,"multiple":false},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","multiple":false,"options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL","multiple":false},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.","multiple":false},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run the command in non-interactive mode.","allowNo":false}},"args":[],"contextDefinition":{"loggedIn":{}}},"webhook:view":{"id":"webhook:view","description":"view a webhook","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}],"contextDefinition":{"loggedIn":{}}},"build:version:set":{"id":"build:version:set","description":"Update version of an app.","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","multiple":false,"options":["android","ios"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{}}},"build:version:sync":{"id":"build:version:sync","description":"Update a version in native code with a value stored on EAS servers","strict":true,"pluginName":"eas-cli","pluginAlias":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","multiple":false,"options":["android","ios","all"]},"profile":{"name":"profile","type":"option","char":"e","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME","multiple":false}},"args":[],"contextDefinition":{"loggedIn":{},"getDynamicProjectConfigAsync":{},"projectDir":{}}}}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.1",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -216,5 +216,5 @@
|
|
|
216
216
|
"node": "18.6.0",
|
|
217
217
|
"yarn": "1.22.19"
|
|
218
218
|
},
|
|
219
|
-
"gitHead": "
|
|
219
|
+
"gitHead": "a70222d35d17354bd721134f064b1f17f85597ba"
|
|
220
220
|
}
|