eas-cli 12.5.4 → 12.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +131 -60
- package/build/channel/queries.js +12 -3
- package/build/commands/channel/pause.d.ts +22 -0
- package/build/commands/channel/pause.js +90 -0
- package/build/commands/channel/resume.d.ts +22 -0
- package/build/commands/channel/resume.js +90 -0
- package/build/commands/env/push.d.ts +0 -1
- package/build/commands/env/push.js +8 -8
- package/build/commands/update/edit.d.ts +2 -2
- package/build/commands/update/edit.js +41 -4
- package/build/graphql/generated.d.ts +147 -19
- package/build/graphql/generated.js +19 -2
- package/build/graphql/queries/ChannelQuery.js +2 -0
- package/oclif.manifest.json +96 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -81,6 +81,8 @@ eas --help COMMAND
|
|
|
81
81
|
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
82
82
|
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
83
83
|
* [`eas channel:list`](#eas-channellist)
|
|
84
|
+
* [`eas channel:pause [NAME]`](#eas-channelpause-name)
|
|
85
|
+
* [`eas channel:resume [NAME]`](#eas-channelresume-name)
|
|
84
86
|
* [`eas channel:rollout [CHANNEL]`](#eas-channelrollout-channel)
|
|
85
87
|
* [`eas channel:view [NAME]`](#eas-channelview-name)
|
|
86
88
|
* [`eas config`](#eas-config)
|
|
@@ -113,6 +115,7 @@ eas --help COMMAND
|
|
|
113
115
|
* [`eas update`](#eas-update)
|
|
114
116
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
115
117
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
118
|
+
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
116
119
|
* [`eas update:list`](#eas-updatelist)
|
|
117
120
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
118
121
|
* [`eas update:roll-back-to-embedded`](#eas-updateroll-back-to-embedded)
|
|
@@ -143,7 +146,7 @@ ALIASES
|
|
|
143
146
|
$ eas login
|
|
144
147
|
```
|
|
145
148
|
|
|
146
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
149
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
147
150
|
|
|
148
151
|
## `eas account:logout`
|
|
149
152
|
|
|
@@ -160,7 +163,7 @@ ALIASES
|
|
|
160
163
|
$ eas logout
|
|
161
164
|
```
|
|
162
165
|
|
|
163
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
166
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
164
167
|
|
|
165
168
|
## `eas account:view`
|
|
166
169
|
|
|
@@ -177,7 +180,7 @@ ALIASES
|
|
|
177
180
|
$ eas whoami
|
|
178
181
|
```
|
|
179
182
|
|
|
180
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
183
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
181
184
|
|
|
182
185
|
## `eas analytics [STATUS]`
|
|
183
186
|
|
|
@@ -191,7 +194,7 @@ DESCRIPTION
|
|
|
191
194
|
display or change analytics settings
|
|
192
195
|
```
|
|
193
196
|
|
|
194
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
197
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
195
198
|
|
|
196
199
|
## `eas autocomplete [SHELL]`
|
|
197
200
|
|
|
@@ -243,7 +246,7 @@ DESCRIPTION
|
|
|
243
246
|
create a branch
|
|
244
247
|
```
|
|
245
248
|
|
|
246
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
249
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
247
250
|
|
|
248
251
|
## `eas branch:delete [NAME]`
|
|
249
252
|
|
|
@@ -264,7 +267,7 @@ DESCRIPTION
|
|
|
264
267
|
delete a branch
|
|
265
268
|
```
|
|
266
269
|
|
|
267
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
270
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
268
271
|
|
|
269
272
|
## `eas branch:list`
|
|
270
273
|
|
|
@@ -284,7 +287,7 @@ DESCRIPTION
|
|
|
284
287
|
list all branches
|
|
285
288
|
```
|
|
286
289
|
|
|
287
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
290
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
288
291
|
|
|
289
292
|
## `eas branch:rename`
|
|
290
293
|
|
|
@@ -304,7 +307,7 @@ DESCRIPTION
|
|
|
304
307
|
rename a branch
|
|
305
308
|
```
|
|
306
309
|
|
|
307
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
310
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
308
311
|
|
|
309
312
|
## `eas branch:view [NAME]`
|
|
310
313
|
|
|
@@ -327,7 +330,7 @@ DESCRIPTION
|
|
|
327
330
|
view a branch
|
|
328
331
|
```
|
|
329
332
|
|
|
330
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
333
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
331
334
|
|
|
332
335
|
## `eas build`
|
|
333
336
|
|
|
@@ -364,7 +367,7 @@ DESCRIPTION
|
|
|
364
367
|
start a build
|
|
365
368
|
```
|
|
366
369
|
|
|
367
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
370
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
368
371
|
|
|
369
372
|
## `eas build:cancel [BUILD_ID]`
|
|
370
373
|
|
|
@@ -383,7 +386,7 @@ DESCRIPTION
|
|
|
383
386
|
cancel a build
|
|
384
387
|
```
|
|
385
388
|
|
|
386
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
389
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
387
390
|
|
|
388
391
|
## `eas build:configure`
|
|
389
392
|
|
|
@@ -400,7 +403,7 @@ DESCRIPTION
|
|
|
400
403
|
configure the project to support EAS Build
|
|
401
404
|
```
|
|
402
405
|
|
|
403
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
406
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
404
407
|
|
|
405
408
|
## `eas build:delete [BUILD_ID]`
|
|
406
409
|
|
|
@@ -419,7 +422,7 @@ DESCRIPTION
|
|
|
419
422
|
delete a build
|
|
420
423
|
```
|
|
421
424
|
|
|
422
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
425
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
423
426
|
|
|
424
427
|
## `eas build:inspect`
|
|
425
428
|
|
|
@@ -454,7 +457,7 @@ DESCRIPTION
|
|
|
454
457
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
455
458
|
```
|
|
456
459
|
|
|
457
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
460
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
458
461
|
|
|
459
462
|
## `eas build:list`
|
|
460
463
|
|
|
@@ -504,7 +507,7 @@ DESCRIPTION
|
|
|
504
507
|
list all builds for your project
|
|
505
508
|
```
|
|
506
509
|
|
|
507
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
510
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
508
511
|
|
|
509
512
|
## `eas build:resign`
|
|
510
513
|
|
|
@@ -533,7 +536,7 @@ DESCRIPTION
|
|
|
533
536
|
re-sign a build archive
|
|
534
537
|
```
|
|
535
538
|
|
|
536
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
539
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
537
540
|
|
|
538
541
|
## `eas build:run`
|
|
539
542
|
|
|
@@ -559,7 +562,7 @@ DESCRIPTION
|
|
|
559
562
|
run simulator/emulator builds from eas-cli
|
|
560
563
|
```
|
|
561
564
|
|
|
562
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
565
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
563
566
|
|
|
564
567
|
## `eas build:submit`
|
|
565
568
|
|
|
@@ -609,7 +612,7 @@ DESCRIPTION
|
|
|
609
612
|
get the latest version from EAS servers
|
|
610
613
|
```
|
|
611
614
|
|
|
612
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
615
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
613
616
|
|
|
614
617
|
## `eas build:version:set`
|
|
615
618
|
|
|
@@ -628,7 +631,7 @@ DESCRIPTION
|
|
|
628
631
|
update version of an app
|
|
629
632
|
```
|
|
630
633
|
|
|
631
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
634
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
632
635
|
|
|
633
636
|
## `eas build:version:sync`
|
|
634
637
|
|
|
@@ -647,7 +650,7 @@ DESCRIPTION
|
|
|
647
650
|
update a version in native code with a value stored on EAS servers
|
|
648
651
|
```
|
|
649
652
|
|
|
650
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
653
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
651
654
|
|
|
652
655
|
## `eas build:view [BUILD_ID]`
|
|
653
656
|
|
|
@@ -664,7 +667,7 @@ DESCRIPTION
|
|
|
664
667
|
view a build for your project
|
|
665
668
|
```
|
|
666
669
|
|
|
667
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
670
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
668
671
|
|
|
669
672
|
## `eas channel:create [NAME]`
|
|
670
673
|
|
|
@@ -685,7 +688,7 @@ DESCRIPTION
|
|
|
685
688
|
create a channel
|
|
686
689
|
```
|
|
687
690
|
|
|
688
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
691
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
689
692
|
|
|
690
693
|
## `eas channel:edit [NAME]`
|
|
691
694
|
|
|
@@ -707,7 +710,7 @@ DESCRIPTION
|
|
|
707
710
|
point a channel at a new branch
|
|
708
711
|
```
|
|
709
712
|
|
|
710
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
713
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
711
714
|
|
|
712
715
|
## `eas channel:list`
|
|
713
716
|
|
|
@@ -727,7 +730,51 @@ DESCRIPTION
|
|
|
727
730
|
list all channels
|
|
728
731
|
```
|
|
729
732
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
733
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
734
|
+
|
|
735
|
+
## `eas channel:pause [NAME]`
|
|
736
|
+
|
|
737
|
+
pause a channel to stop it from sending updates
|
|
738
|
+
|
|
739
|
+
```
|
|
740
|
+
USAGE
|
|
741
|
+
$ eas channel:pause [NAME] [--branch <value>] [--json --non-interactive]
|
|
742
|
+
|
|
743
|
+
ARGUMENTS
|
|
744
|
+
NAME Name of the channel to edit
|
|
745
|
+
|
|
746
|
+
FLAGS
|
|
747
|
+
--branch=<value> Name of the branch to point to
|
|
748
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
749
|
+
--non-interactive Run the command in non-interactive mode.
|
|
750
|
+
|
|
751
|
+
DESCRIPTION
|
|
752
|
+
pause a channel to stop it from sending updates
|
|
753
|
+
```
|
|
754
|
+
|
|
755
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
756
|
+
|
|
757
|
+
## `eas channel:resume [NAME]`
|
|
758
|
+
|
|
759
|
+
resume a channel to start sending updates
|
|
760
|
+
|
|
761
|
+
```
|
|
762
|
+
USAGE
|
|
763
|
+
$ eas channel:resume [NAME] [--branch <value>] [--json --non-interactive]
|
|
764
|
+
|
|
765
|
+
ARGUMENTS
|
|
766
|
+
NAME Name of the channel to edit
|
|
767
|
+
|
|
768
|
+
FLAGS
|
|
769
|
+
--branch=<value> Name of the branch to point to
|
|
770
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
771
|
+
--non-interactive Run the command in non-interactive mode.
|
|
772
|
+
|
|
773
|
+
DESCRIPTION
|
|
774
|
+
resume a channel to start sending updates
|
|
775
|
+
```
|
|
776
|
+
|
|
777
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
731
778
|
|
|
732
779
|
## `eas channel:rollout [CHANNEL]`
|
|
733
780
|
|
|
@@ -760,7 +807,7 @@ DESCRIPTION
|
|
|
760
807
|
Roll a new branch out on a channel incrementally.
|
|
761
808
|
```
|
|
762
809
|
|
|
763
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
810
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
764
811
|
|
|
765
812
|
## `eas channel:view [NAME]`
|
|
766
813
|
|
|
@@ -783,7 +830,7 @@ DESCRIPTION
|
|
|
783
830
|
view a channel
|
|
784
831
|
```
|
|
785
832
|
|
|
786
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
833
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
787
834
|
|
|
788
835
|
## `eas config`
|
|
789
836
|
|
|
@@ -804,7 +851,7 @@ DESCRIPTION
|
|
|
804
851
|
display project configuration (app.json + eas.json)
|
|
805
852
|
```
|
|
806
853
|
|
|
807
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
854
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/config.ts)_
|
|
808
855
|
|
|
809
856
|
## `eas credentials`
|
|
810
857
|
|
|
@@ -821,7 +868,7 @@ DESCRIPTION
|
|
|
821
868
|
manage credentials
|
|
822
869
|
```
|
|
823
870
|
|
|
824
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
871
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
825
872
|
|
|
826
873
|
## `eas credentials:configure-build`
|
|
827
874
|
|
|
@@ -839,7 +886,7 @@ DESCRIPTION
|
|
|
839
886
|
Set up credentials for building your project.
|
|
840
887
|
```
|
|
841
888
|
|
|
842
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
889
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
843
890
|
|
|
844
891
|
## `eas device:create`
|
|
845
892
|
|
|
@@ -853,7 +900,7 @@ DESCRIPTION
|
|
|
853
900
|
register new Apple Devices to use for internal distribution
|
|
854
901
|
```
|
|
855
902
|
|
|
856
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
903
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
857
904
|
|
|
858
905
|
## `eas device:delete`
|
|
859
906
|
|
|
@@ -873,7 +920,7 @@ DESCRIPTION
|
|
|
873
920
|
remove a registered device from your account
|
|
874
921
|
```
|
|
875
922
|
|
|
876
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
923
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
877
924
|
|
|
878
925
|
## `eas device:list`
|
|
879
926
|
|
|
@@ -894,7 +941,7 @@ DESCRIPTION
|
|
|
894
941
|
list all registered devices for your account
|
|
895
942
|
```
|
|
896
943
|
|
|
897
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
944
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
898
945
|
|
|
899
946
|
## `eas device:rename`
|
|
900
947
|
|
|
@@ -915,7 +962,7 @@ DESCRIPTION
|
|
|
915
962
|
rename a registered device
|
|
916
963
|
```
|
|
917
964
|
|
|
918
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
965
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
919
966
|
|
|
920
967
|
## `eas device:view [UDID]`
|
|
921
968
|
|
|
@@ -929,7 +976,7 @@ DESCRIPTION
|
|
|
929
976
|
view a device for your project
|
|
930
977
|
```
|
|
931
978
|
|
|
932
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
979
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
933
980
|
|
|
934
981
|
## `eas diagnostics`
|
|
935
982
|
|
|
@@ -943,7 +990,7 @@ DESCRIPTION
|
|
|
943
990
|
display environment info
|
|
944
991
|
```
|
|
945
992
|
|
|
946
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
993
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
947
994
|
|
|
948
995
|
## `eas help [COMMAND]`
|
|
949
996
|
|
|
@@ -1051,7 +1098,7 @@ DESCRIPTION
|
|
|
1051
1098
|
validate the local store configuration
|
|
1052
1099
|
```
|
|
1053
1100
|
|
|
1054
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1101
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1055
1102
|
|
|
1056
1103
|
## `eas metadata:pull`
|
|
1057
1104
|
|
|
@@ -1068,7 +1115,7 @@ DESCRIPTION
|
|
|
1068
1115
|
generate the local store configuration from the app stores
|
|
1069
1116
|
```
|
|
1070
1117
|
|
|
1071
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1118
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1072
1119
|
|
|
1073
1120
|
## `eas metadata:push`
|
|
1074
1121
|
|
|
@@ -1085,7 +1132,7 @@ DESCRIPTION
|
|
|
1085
1132
|
sync the local store configuration to the app stores
|
|
1086
1133
|
```
|
|
1087
1134
|
|
|
1088
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1135
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1089
1136
|
|
|
1090
1137
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1091
1138
|
|
|
@@ -1115,7 +1162,7 @@ DESCRIPTION
|
|
|
1115
1162
|
open the project page in a web browser
|
|
1116
1163
|
```
|
|
1117
1164
|
|
|
1118
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1165
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/open.ts)_
|
|
1119
1166
|
|
|
1120
1167
|
## `eas project:info`
|
|
1121
1168
|
|
|
@@ -1129,7 +1176,7 @@ DESCRIPTION
|
|
|
1129
1176
|
information about the current project
|
|
1130
1177
|
```
|
|
1131
1178
|
|
|
1132
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1179
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1133
1180
|
|
|
1134
1181
|
## `eas project:init`
|
|
1135
1182
|
|
|
@@ -1152,7 +1199,7 @@ ALIASES
|
|
|
1152
1199
|
$ eas init
|
|
1153
1200
|
```
|
|
1154
1201
|
|
|
1155
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1202
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1156
1203
|
|
|
1157
1204
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1158
1205
|
|
|
@@ -1170,7 +1217,7 @@ ALIASES
|
|
|
1170
1217
|
$ eas onboarding
|
|
1171
1218
|
```
|
|
1172
1219
|
|
|
1173
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1220
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1174
1221
|
|
|
1175
1222
|
## `eas secret:create`
|
|
1176
1223
|
|
|
@@ -1193,7 +1240,7 @@ DESCRIPTION
|
|
|
1193
1240
|
create an environment secret on the current project or owner account
|
|
1194
1241
|
```
|
|
1195
1242
|
|
|
1196
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1243
|
+
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1197
1244
|
|
|
1198
1245
|
## `eas secret:delete`
|
|
1199
1246
|
|
|
@@ -1211,7 +1258,7 @@ DESCRIPTION
|
|
|
1211
1258
|
delete an environment secret by ID
|
|
1212
1259
|
```
|
|
1213
1260
|
|
|
1214
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1261
|
+
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1215
1262
|
|
|
1216
1263
|
## `eas secret:list`
|
|
1217
1264
|
|
|
@@ -1225,7 +1272,7 @@ DESCRIPTION
|
|
|
1225
1272
|
list environment secrets available for your current app
|
|
1226
1273
|
```
|
|
1227
1274
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1275
|
+
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1229
1276
|
|
|
1230
1277
|
## `eas secret:push`
|
|
1231
1278
|
|
|
@@ -1245,7 +1292,7 @@ DESCRIPTION
|
|
|
1245
1292
|
read environment secrets from env file and store on the server
|
|
1246
1293
|
```
|
|
1247
1294
|
|
|
1248
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1295
|
+
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1249
1296
|
|
|
1250
1297
|
## `eas submit`
|
|
1251
1298
|
|
|
@@ -1276,7 +1323,7 @@ ALIASES
|
|
|
1276
1323
|
$ eas build:submit
|
|
1277
1324
|
```
|
|
1278
1325
|
|
|
1279
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1326
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1280
1327
|
|
|
1281
1328
|
## `eas update`
|
|
1282
1329
|
|
|
@@ -1314,7 +1361,7 @@ DESCRIPTION
|
|
|
1314
1361
|
publish an update group
|
|
1315
1362
|
```
|
|
1316
1363
|
|
|
1317
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1364
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1318
1365
|
|
|
1319
1366
|
## `eas update:configure`
|
|
1320
1367
|
|
|
@@ -1332,7 +1379,7 @@ DESCRIPTION
|
|
|
1332
1379
|
configure the project to support EAS Update
|
|
1333
1380
|
```
|
|
1334
1381
|
|
|
1335
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1382
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1336
1383
|
|
|
1337
1384
|
## `eas update:delete GROUPID`
|
|
1338
1385
|
|
|
@@ -1353,7 +1400,31 @@ DESCRIPTION
|
|
|
1353
1400
|
delete all the updates in an update group
|
|
1354
1401
|
```
|
|
1355
1402
|
|
|
1356
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1403
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1404
|
+
|
|
1405
|
+
## `eas update:edit [GROUPID]`
|
|
1406
|
+
|
|
1407
|
+
edit all the updates in an update group
|
|
1408
|
+
|
|
1409
|
+
```
|
|
1410
|
+
USAGE
|
|
1411
|
+
$ eas update:edit [GROUPID] [--rollout-percentage <value>] [--branch <value>] [--json --non-interactive]
|
|
1412
|
+
|
|
1413
|
+
ARGUMENTS
|
|
1414
|
+
GROUPID The ID of an update group to edit.
|
|
1415
|
+
|
|
1416
|
+
FLAGS
|
|
1417
|
+
--branch=<value> Branch for which to list updates to select from
|
|
1418
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1419
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1420
|
+
--rollout-percentage=<value> Rollout percentage to set for a rollout update. The specified number must be an integer
|
|
1421
|
+
between 1 and 100.
|
|
1422
|
+
|
|
1423
|
+
DESCRIPTION
|
|
1424
|
+
edit all the updates in an update group
|
|
1425
|
+
```
|
|
1426
|
+
|
|
1427
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1357
1428
|
|
|
1358
1429
|
## `eas update:list`
|
|
1359
1430
|
|
|
@@ -1375,7 +1446,7 @@ DESCRIPTION
|
|
|
1375
1446
|
view the recent updates
|
|
1376
1447
|
```
|
|
1377
1448
|
|
|
1378
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1449
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1379
1450
|
|
|
1380
1451
|
## `eas update:republish`
|
|
1381
1452
|
|
|
@@ -1407,7 +1478,7 @@ DESCRIPTION
|
|
|
1407
1478
|
roll back to an existing update
|
|
1408
1479
|
```
|
|
1409
1480
|
|
|
1410
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1481
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1411
1482
|
|
|
1412
1483
|
## `eas update:roll-back-to-embedded`
|
|
1413
1484
|
|
|
@@ -1435,7 +1506,7 @@ DESCRIPTION
|
|
|
1435
1506
|
roll back to the embedded update
|
|
1436
1507
|
```
|
|
1437
1508
|
|
|
1438
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1509
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1439
1510
|
|
|
1440
1511
|
## `eas update:rollback`
|
|
1441
1512
|
|
|
@@ -1455,7 +1526,7 @@ DESCRIPTION
|
|
|
1455
1526
|
roll back to an embedded update or an existing update
|
|
1456
1527
|
```
|
|
1457
1528
|
|
|
1458
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1529
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1459
1530
|
|
|
1460
1531
|
## `eas update:view GROUPID`
|
|
1461
1532
|
|
|
@@ -1475,7 +1546,7 @@ DESCRIPTION
|
|
|
1475
1546
|
update group details
|
|
1476
1547
|
```
|
|
1477
1548
|
|
|
1478
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1549
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1479
1550
|
|
|
1480
1551
|
## `eas webhook:create`
|
|
1481
1552
|
|
|
@@ -1496,7 +1567,7 @@ DESCRIPTION
|
|
|
1496
1567
|
create a webhook
|
|
1497
1568
|
```
|
|
1498
1569
|
|
|
1499
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1570
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1500
1571
|
|
|
1501
1572
|
## `eas webhook:delete [ID]`
|
|
1502
1573
|
|
|
@@ -1516,7 +1587,7 @@ DESCRIPTION
|
|
|
1516
1587
|
delete a webhook
|
|
1517
1588
|
```
|
|
1518
1589
|
|
|
1519
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1590
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1520
1591
|
|
|
1521
1592
|
## `eas webhook:list`
|
|
1522
1593
|
|
|
@@ -1534,7 +1605,7 @@ DESCRIPTION
|
|
|
1534
1605
|
list webhooks
|
|
1535
1606
|
```
|
|
1536
1607
|
|
|
1537
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1608
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1538
1609
|
|
|
1539
1610
|
## `eas webhook:update`
|
|
1540
1611
|
|
|
@@ -1556,7 +1627,7 @@ DESCRIPTION
|
|
|
1556
1627
|
update a webhook
|
|
1557
1628
|
```
|
|
1558
1629
|
|
|
1559
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1630
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1560
1631
|
|
|
1561
1632
|
## `eas webhook:view ID`
|
|
1562
1633
|
|
|
@@ -1573,7 +1644,7 @@ DESCRIPTION
|
|
|
1573
1644
|
view a webhook
|
|
1574
1645
|
```
|
|
1575
1646
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v12.
|
|
1647
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v12.6.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1577
1648
|
|
|
1578
1649
|
## `eas whoami`
|
|
1579
1650
|
|
package/build/channel/queries.js
CHANGED
|
@@ -65,7 +65,11 @@ async function listAndRenderChannelsOnAppAsync(graphqlClient, { projectId, pagin
|
|
|
65
65
|
exports.listAndRenderChannelsOnAppAsync = listAndRenderChannelsOnAppAsync;
|
|
66
66
|
async function listAndRenderBranchesAndUpdatesOnChannelAsync(graphqlClient, { projectId: appId, channelName, paginatedQueryOptions, }) {
|
|
67
67
|
const channel = await ChannelQuery_1.ChannelQuery.viewUpdateChannelAsync(graphqlClient, { appId, channelName });
|
|
68
|
-
renderChannelHeaderContent({
|
|
68
|
+
renderChannelHeaderContent({
|
|
69
|
+
channelName: channel.name,
|
|
70
|
+
channelId: channel.id,
|
|
71
|
+
isPaused: channel.isPaused,
|
|
72
|
+
});
|
|
69
73
|
if (paginatedQueryOptions.nonInteractive) {
|
|
70
74
|
const branches = await queryBranchesAndUpdateGroupsOnChannelAsync(graphqlClient, {
|
|
71
75
|
appId,
|
|
@@ -111,7 +115,11 @@ function renderPageOfChannels(currentPage, { json }) {
|
|
|
111
115
|
}
|
|
112
116
|
else {
|
|
113
117
|
for (const channel of currentPage) {
|
|
114
|
-
renderChannelHeaderContent({
|
|
118
|
+
renderChannelHeaderContent({
|
|
119
|
+
channelName: channel.name,
|
|
120
|
+
channelId: channel.id,
|
|
121
|
+
isPaused: channel.isPaused,
|
|
122
|
+
});
|
|
115
123
|
log_1.default.addNewLineIfNone();
|
|
116
124
|
(0, print_utils_1.logChannelDetails)(channel);
|
|
117
125
|
if (currentPage.indexOf(channel) < currentPage.length - 1) {
|
|
@@ -131,12 +139,13 @@ function renderPageOfBranchesOnChannel(channel, currentPage, { json }) {
|
|
|
131
139
|
(0, print_utils_1.logChannelDetails)(channelWithNewBranches);
|
|
132
140
|
}
|
|
133
141
|
}
|
|
134
|
-
function renderChannelHeaderContent({ channelName, channelId, }) {
|
|
142
|
+
function renderChannelHeaderContent({ channelName, channelId, isPaused, }) {
|
|
135
143
|
log_1.default.addNewLineIfNone();
|
|
136
144
|
log_1.default.log(chalk_1.default.bold('Channel:'));
|
|
137
145
|
log_1.default.log((0, formatFields_1.default)([
|
|
138
146
|
{ label: 'Name', value: channelName },
|
|
139
147
|
{ label: 'ID', value: channelId },
|
|
148
|
+
{ label: 'Status', value: isPaused ? 'Paused' : 'Active' },
|
|
140
149
|
]));
|
|
141
150
|
log_1.default.addNewLineIfNone();
|
|
142
151
|
log_1.default.log((0, chalk_1.default) `{bold Branches pointed at this channel and their most recent update group:}`);
|