eas-cli 0.41.0 → 0.41.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 CHANGED
@@ -37,12 +37,21 @@ eas --help COMMAND
37
37
  * [`eas account:logout`](#eas-accountlogout)
38
38
  * [`eas account:view`](#eas-accountview)
39
39
  * [`eas analytics [STATUS]`](#eas-analytics-status)
40
+ * [`eas branch:create [NAME]`](#eas-branchcreate-name)
41
+ * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
42
+ * [`eas branch:list`](#eas-branchlist)
43
+ * [`eas branch:rename`](#eas-branchrename)
44
+ * [`eas branch:view [NAME]`](#eas-branchview-name)
40
45
  * [`eas build`](#eas-build)
41
46
  * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
42
47
  * [`eas build:configure`](#eas-buildconfigure)
43
48
  * [`eas build:inspect`](#eas-buildinspect)
44
49
  * [`eas build:list`](#eas-buildlist)
45
50
  * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
51
+ * [`eas channel:create [NAME]`](#eas-channelcreate-name)
52
+ * [`eas channel:edit [NAME]`](#eas-channeledit-name)
53
+ * [`eas channel:list`](#eas-channellist)
54
+ * [`eas channel:view [NAME]`](#eas-channelview-name)
46
55
  * [`eas config`](#eas-config)
47
56
  * [`eas credentials`](#eas-credentials)
48
57
  * [`eas device:create`](#eas-devicecreate)
@@ -56,6 +65,10 @@ eas --help COMMAND
56
65
  * [`eas secret:delete`](#eas-secretdelete)
57
66
  * [`eas secret:list`](#eas-secretlist)
58
67
  * [`eas submit`](#eas-submit)
68
+ * [`eas update`](#eas-update)
69
+ * [`eas update:configure`](#eas-updateconfigure)
70
+ * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
71
+ * [`eas update:view GROUPID`](#eas-updateview-groupid)
59
72
  * [`eas webhook:create`](#eas-webhookcreate)
60
73
  * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
61
74
  * [`eas webhook:list`](#eas-webhooklist)
@@ -74,7 +87,7 @@ ALIASES
74
87
  $ eas login
75
88
  ```
76
89
 
77
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/account/login.ts)_
90
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/account/login.ts)_
78
91
 
79
92
  ## `eas account:logout`
80
93
 
@@ -88,7 +101,7 @@ ALIASES
88
101
  $ eas logout
89
102
  ```
90
103
 
91
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/account/logout.ts)_
104
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/account/logout.ts)_
92
105
 
93
106
  ## `eas account:view`
94
107
 
@@ -102,7 +115,7 @@ ALIASES
102
115
  $ eas whoami
103
116
  ```
104
117
 
105
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/account/view.ts)_
118
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/account/view.ts)_
106
119
 
107
120
  ## `eas analytics [STATUS]`
108
121
 
@@ -113,7 +126,88 @@ USAGE
113
126
  $ eas analytics [STATUS]
114
127
  ```
115
128
 
116
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/analytics.ts)_
129
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/analytics.ts)_
130
+
131
+ ## `eas branch:create [NAME]`
132
+
133
+ Create a branch on the current project.
134
+
135
+ ```
136
+ USAGE
137
+ $ eas branch:create [NAME]
138
+
139
+ ARGUMENTS
140
+ NAME Name of the branch to create
141
+
142
+ OPTIONS
143
+ --json return a json with the new branch ID and name.
144
+ ```
145
+
146
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/branch/create.ts)_
147
+
148
+ ## `eas branch:delete [NAME]`
149
+
150
+ Delete a branch on the current project
151
+
152
+ ```
153
+ USAGE
154
+ $ eas branch:delete [NAME]
155
+
156
+ ARGUMENTS
157
+ NAME Name of the branch to delete
158
+
159
+ OPTIONS
160
+ --json return JSON with the edited branch's ID and name.
161
+ ```
162
+
163
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/branch/delete.ts)_
164
+
165
+ ## `eas branch:list`
166
+
167
+ List all branches on this project.
168
+
169
+ ```
170
+ USAGE
171
+ $ eas branch:list
172
+
173
+ OPTIONS
174
+ --json return output as JSON
175
+ ```
176
+
177
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/branch/list.ts)_
178
+
179
+ ## `eas branch:rename`
180
+
181
+ Rename a branch.
182
+
183
+ ```
184
+ USAGE
185
+ $ eas branch:rename
186
+
187
+ OPTIONS
188
+ --from=from current name of the branch.
189
+ --json return a json with the edited branch's ID and name.
190
+ --to=to new name of the branch.
191
+ ```
192
+
193
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/branch/rename.ts)_
194
+
195
+ ## `eas branch:view [NAME]`
196
+
197
+ View a branch.
198
+
199
+ ```
200
+ USAGE
201
+ $ eas branch:view [NAME]
202
+
203
+ ARGUMENTS
204
+ NAME Name of the branch to view
205
+
206
+ OPTIONS
207
+ --json return a json with the branch's ID name and recent update groups.
208
+ ```
209
+
210
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/branch/view.ts)_
117
211
 
118
212
  ## `eas build`
119
213
 
@@ -147,7 +241,7 @@ OPTIONS
147
241
  --[no-]wait Wait for build(s) to complete
148
242
  ```
149
243
 
150
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/index.ts)_
244
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/index.ts)_
151
245
 
152
246
  ## `eas build:cancel [BUILD_ID]`
153
247
 
@@ -158,7 +252,7 @@ USAGE
158
252
  $ eas build:cancel [BUILD_ID]
159
253
  ```
160
254
 
161
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/cancel.ts)_
255
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/cancel.ts)_
162
256
 
163
257
  ## `eas build:configure`
164
258
 
@@ -172,7 +266,7 @@ OPTIONS
172
266
  -p, --platform=(android|ios|all) Platform to configure
173
267
  ```
174
268
 
175
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/configure.ts)_
269
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/configure.ts)_
176
270
 
177
271
  ## `eas build:inspect`
178
272
 
@@ -204,7 +298,7 @@ OPTIONS
204
298
  --verbose
205
299
  ```
206
300
 
207
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/inspect.ts)_
301
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/inspect.ts)_
208
302
 
209
303
  ## `eas build:list`
210
304
 
@@ -237,7 +331,7 @@ OPTIONS
237
331
  --status=(new|in-queue|in-progress|errored|finished|canceled)
238
332
  ```
239
333
 
240
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/list.ts)_
334
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/list.ts)_
241
335
 
242
336
  ## `eas build:view [BUILD_ID]`
243
337
 
@@ -251,7 +345,73 @@ OPTIONS
251
345
  --json Enable JSON output, non-JSON messages will be printed to stderr
252
346
  ```
253
347
 
254
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/build/view.ts)_
348
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/build/view.ts)_
349
+
350
+ ## `eas channel:create [NAME]`
351
+
352
+ Create a channel on the current project.
353
+
354
+ ```
355
+ USAGE
356
+ $ eas channel:create [NAME]
357
+
358
+ ARGUMENTS
359
+ NAME Name of the channel to create
360
+
361
+ OPTIONS
362
+ --json print output as a JSON object with the new channel ID, name and branch mapping.
363
+ ```
364
+
365
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/channel/create.ts)_
366
+
367
+ ## `eas channel:edit [NAME]`
368
+
369
+ Point a channel at a new branch.
370
+
371
+ ```
372
+ USAGE
373
+ $ eas channel:edit [NAME]
374
+
375
+ ARGUMENTS
376
+ NAME Name of the channel to edit
377
+
378
+ OPTIONS
379
+ --branch=branch Name of the branch to point to
380
+ --json print output as a JSON object with the channel ID, name and branch mapping.
381
+ ```
382
+
383
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/channel/edit.ts)_
384
+
385
+ ## `eas channel:list`
386
+
387
+ List all channels on the current project.
388
+
389
+ ```
390
+ USAGE
391
+ $ eas channel:list
392
+
393
+ OPTIONS
394
+ --json print output as a JSON object with the channel ID, name and branch mapping.
395
+ ```
396
+
397
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/channel/list.ts)_
398
+
399
+ ## `eas channel:view [NAME]`
400
+
401
+ View a channel on the current project.
402
+
403
+ ```
404
+ USAGE
405
+ $ eas channel:view [NAME]
406
+
407
+ ARGUMENTS
408
+ NAME Name of the channel to view
409
+
410
+ OPTIONS
411
+ --json print output as a JSON object with the channel ID, name and branch mapping.
412
+ ```
413
+
414
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/channel/view.ts)_
255
415
 
256
416
  ## `eas config`
257
417
 
@@ -266,7 +426,7 @@ OPTIONS
266
426
  --profile=profile
267
427
  ```
268
428
 
269
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/config.ts)_
429
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/config.ts)_
270
430
 
271
431
  ## `eas credentials`
272
432
 
@@ -277,7 +437,7 @@ USAGE
277
437
  $ eas credentials
278
438
  ```
279
439
 
280
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/credentials.ts)_
440
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/credentials.ts)_
281
441
 
282
442
  ## `eas device:create`
283
443
 
@@ -288,7 +448,7 @@ USAGE
288
448
  $ eas device:create
289
449
  ```
290
450
 
291
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/device/create.ts)_
451
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/device/create.ts)_
292
452
 
293
453
  ## `eas device:list`
294
454
 
@@ -302,7 +462,7 @@ OPTIONS
302
462
  --apple-team-id=apple-team-id
303
463
  ```
304
464
 
305
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/device/list.ts)_
465
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/device/list.ts)_
306
466
 
307
467
  ## `eas device:view [UDID]`
308
468
 
@@ -313,7 +473,7 @@ USAGE
313
473
  $ eas device:view [UDID]
314
474
  ```
315
475
 
316
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/device/view.ts)_
476
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/device/view.ts)_
317
477
 
318
478
  ## `eas diagnostics`
319
479
 
@@ -324,7 +484,7 @@ USAGE
324
484
  $ eas diagnostics
325
485
  ```
326
486
 
327
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/diagnostics.ts)_
487
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/diagnostics.ts)_
328
488
 
329
489
  ## `eas help [COMMAND]`
330
490
 
@@ -352,7 +512,7 @@ USAGE
352
512
  $ eas project:info
353
513
  ```
354
514
 
355
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/project/info.ts)_
515
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/project/info.ts)_
356
516
 
357
517
  ## `eas project:init`
358
518
 
@@ -366,7 +526,7 @@ ALIASES
366
526
  $ eas init
367
527
  ```
368
528
 
369
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/project/init.ts)_
529
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/project/init.ts)_
370
530
 
371
531
  ## `eas secret:create`
372
532
 
@@ -383,7 +543,7 @@ OPTIONS
383
543
  --value=value Value of the secret
384
544
  ```
385
545
 
386
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/secret/create.ts)_
546
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/secret/create.ts)_
387
547
 
388
548
  ## `eas secret:delete`
389
549
 
@@ -400,7 +560,7 @@ DESCRIPTION
400
560
  Unsure where to find the secret's ID? Run eas secret:list
401
561
  ```
402
562
 
403
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/secret/delete.ts)_
563
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/secret/delete.ts)_
404
564
 
405
565
  ## `eas secret:list`
406
566
 
@@ -411,7 +571,7 @@ USAGE
411
571
  $ eas secret:list
412
572
  ```
413
573
 
414
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/secret/list.ts)_
574
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/secret/list.ts)_
415
575
 
416
576
  ## `eas submit`
417
577
 
@@ -444,7 +604,74 @@ ALIASES
444
604
  $ eas build:submit
445
605
  ```
446
606
 
447
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/submit.ts)_
607
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/submit.ts)_
608
+
609
+ ## `eas update`
610
+
611
+ Publish an update group.
612
+
613
+ ```
614
+ USAGE
615
+ $ eas update
616
+
617
+ OPTIONS
618
+ -p, --platform=(android|ios|all) [default: all]
619
+ --auto Use the current git branch and commit message for the EAS branch and update message
620
+ --branch=branch Branch to publish the update group on
621
+ --group=group Update group to republish
622
+ --input-dir=input-dir [default: dist] Location of the bundle
623
+ --json Enable JSON output, non-JSON messages will be printed to stderr
624
+ --message=message A short message describing the update
625
+ --republish Republish an update group
626
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
627
+ ```
628
+
629
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/update/index.ts)_
630
+
631
+ ## `eas update:configure`
632
+
633
+ Configure the project to support EAS Update.
634
+
635
+ ```
636
+ USAGE
637
+ $ eas update:configure
638
+ ```
639
+
640
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/update/configure.ts)_
641
+
642
+ ## `eas update:delete GROUPID`
643
+
644
+ Delete all the updates in an update Group.
645
+
646
+ ```
647
+ USAGE
648
+ $ eas update:delete GROUPID
649
+
650
+ ARGUMENTS
651
+ GROUPID The ID of an update group to delete.
652
+
653
+ OPTIONS
654
+ --json Return a json with the group ID of the deleted updates.
655
+ ```
656
+
657
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/update/delete.ts)_
658
+
659
+ ## `eas update:view GROUPID`
660
+
661
+ Update group details.
662
+
663
+ ```
664
+ USAGE
665
+ $ eas update:view GROUPID
666
+
667
+ ARGUMENTS
668
+ GROUPID The ID of an update group.
669
+
670
+ OPTIONS
671
+ --json Return a json with the updates belonging to the group.
672
+ ```
673
+
674
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/update/view.ts)_
448
675
 
449
676
  ## `eas webhook:create`
450
677
 
@@ -463,7 +690,7 @@ OPTIONS
463
690
  --url=url Webhook URL
464
691
  ```
465
692
 
466
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/webhook/create.ts)_
693
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/webhook/create.ts)_
467
694
 
468
695
  ## `eas webhook:delete [ID]`
469
696
 
@@ -477,7 +704,7 @@ ARGUMENTS
477
704
  ID ID of the webhook to delete
478
705
  ```
479
706
 
480
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/webhook/delete.ts)_
707
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/webhook/delete.ts)_
481
708
 
482
709
  ## `eas webhook:list`
483
710
 
@@ -491,7 +718,7 @@ OPTIONS
491
718
  --event=(BUILD|SUBMIT) Event type that triggers the webhook
492
719
  ```
493
720
 
494
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/webhook/list.ts)_
721
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/webhook/list.ts)_
495
722
 
496
723
  ## `eas webhook:update`
497
724
 
@@ -511,7 +738,7 @@ OPTIONS
511
738
  --url=url Webhook URL
512
739
  ```
513
740
 
514
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/webhook/update.ts)_
741
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/webhook/update.ts)_
515
742
 
516
743
  ## `eas webhook:view ID`
517
744
 
@@ -525,5 +752,5 @@ ARGUMENTS
525
752
  ID ID of the webhook to view
526
753
  ```
527
754
 
528
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.41.0/packages/eas-cli/src/commands/webhook/view.ts)_
755
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.41.1/packages/eas-cli/src/commands/webhook/view.ts)_
529
756
  <!-- commandsstop -->
package/build/api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export declare const apiClient: import("got").Got;
2
2
  export declare function getExpoApiBaseUrl(): string;
3
3
  export declare function getExpoWebsiteBaseUrl(): string;
4
+ export declare function getEASUpdateURL(projectId: string): string;
package/build/api.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getExpoWebsiteBaseUrl = exports.getExpoApiBaseUrl = exports.apiClient = void 0;
3
+ exports.getEASUpdateURL = exports.getExpoWebsiteBaseUrl = exports.getExpoApiBaseUrl = exports.apiClient = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const got_1 = (0, tslib_1.__importStar)(require("got"));
6
6
  const ApiV2Error_1 = (0, tslib_1.__importDefault)(require("./ApiV2Error"));
@@ -65,3 +65,15 @@ function getExpoWebsiteBaseUrl() {
65
65
  }
66
66
  }
67
67
  exports.getExpoWebsiteBaseUrl = getExpoWebsiteBaseUrl;
68
+ function getEASUpdateURL(projectId) {
69
+ if (process.env.EXPO_STAGING) {
70
+ return new URL(projectId, `https://staging-u.expo.dev`).href;
71
+ }
72
+ else if (process.env.EXPO_LOCAL) {
73
+ return new URL(`expo-updates/${projectId}`, `http://127.0.0.1:3000`).href;
74
+ }
75
+ else {
76
+ return new URL(projectId, `https://u.expo.dev`).href;
77
+ }
78
+ }
79
+ exports.getEASUpdateURL = getEASUpdateURL;
@@ -2,7 +2,6 @@ import EasCommand from '../../commandUtils/EasCommand';
2
2
  import { CreateUpdateBranchForAppMutationVariables, UpdateBranch } from '../../graphql/generated';
3
3
  export declare function createUpdateBranchOnAppAsync({ appId, name, }: CreateUpdateBranchForAppMutationVariables): Promise<Pick<UpdateBranch, 'id' | 'name'>>;
4
4
  export default class BranchCreate extends EasCommand {
5
- static hidden: boolean;
6
5
  static description: string;
7
6
  static args: {
8
7
  name: string;
@@ -65,7 +65,6 @@ class BranchCreate extends EasCommand_1.default {
65
65
  }
66
66
  }
67
67
  exports.default = BranchCreate;
68
- BranchCreate.hidden = true;
69
68
  BranchCreate.description = 'Create a branch on the current project.';
70
69
  BranchCreate.args = [
71
70
  {
@@ -1,6 +1,5 @@
1
1
  import EasCommand from '../../commandUtils/EasCommand';
2
2
  export default class BranchDelete extends EasCommand {
3
- static hidden: boolean;
4
3
  static description: string;
5
4
  static args: {
6
5
  name: string;
@@ -93,8 +93,7 @@ class BranchDelete extends EasCommand_1.default {
93
93
  }
94
94
  }
95
95
  exports.default = BranchDelete;
96
- BranchDelete.hidden = true;
97
- BranchDelete.description = 'Republish an update group';
96
+ BranchDelete.description = 'Delete a branch on the current project';
98
97
  BranchDelete.args = [
99
98
  {
100
99
  name: 'name',
@@ -4,7 +4,6 @@ export declare function listBranchesAsync({ projectId, }: {
4
4
  projectId: string;
5
5
  }): Promise<UpdateBranchFragment[]>;
6
6
  export default class BranchList extends EasCommand {
7
- static hidden: boolean;
8
7
  static description: string;
9
8
  static flags: {
10
9
  json: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
@@ -77,7 +77,6 @@ class BranchList extends EasCommand_1.default {
77
77
  }
78
78
  }
79
79
  exports.default = BranchList;
80
- BranchList.hidden = true;
81
80
  BranchList.description = 'List all branches on this project.';
82
81
  BranchList.flags = {
83
82
  json: command_1.flags.boolean({
@@ -1,7 +1,6 @@
1
1
  import { flags } from '@oclif/command';
2
2
  import EasCommand from '../../commandUtils/EasCommand';
3
3
  export default class BranchRename extends EasCommand {
4
- static hidden: boolean;
5
4
  static description: string;
6
5
  static flags: {
7
6
  from: flags.IOptionFlag<string | undefined>;
@@ -75,7 +75,6 @@ class BranchRename extends EasCommand_1.default {
75
75
  }
76
76
  }
77
77
  exports.default = BranchRename;
78
- BranchRename.hidden = true;
79
78
  BranchRename.description = 'Rename a branch.';
80
79
  BranchRename.flags = {
81
80
  from: command_1.flags.string({
@@ -2,7 +2,6 @@ import EasCommand from '../../commandUtils/EasCommand';
2
2
  import { ViewBranchQuery, ViewBranchQueryVariables } from '../../graphql/generated';
3
3
  export declare function viewUpdateBranchAsync({ appId, name, }: Pick<ViewBranchQueryVariables, 'appId' | 'name'>): Promise<ViewBranchQuery>;
4
4
  export default class BranchView extends EasCommand {
5
- static hidden: boolean;
6
5
  static description: string;
7
6
  static args: {
8
7
  name: string;
@@ -115,7 +115,6 @@ class BranchView extends EasCommand_1.default {
115
115
  }
116
116
  }
117
117
  exports.default = BranchView;
118
- BranchView.hidden = true;
119
118
  BranchView.description = 'View a branch.';
120
119
  BranchView.args = [
121
120
  {
@@ -6,7 +6,6 @@ export declare function createUpdateChannelOnAppAsync({ appId, channelName, bran
6
6
  branchId: string;
7
7
  }): Promise<CreateUpdateChannelOnAppMutation>;
8
8
  export default class ChannelCreate extends EasCommand {
9
- static hidden: boolean;
10
9
  static description: string;
11
10
  static args: {
12
11
  name: string;
@@ -103,7 +103,6 @@ class ChannelCreate extends EasCommand_1.default {
103
103
  }
104
104
  }
105
105
  exports.default = ChannelCreate;
106
- ChannelCreate.hidden = true;
107
106
  ChannelCreate.description = 'Create a channel on the current project.';
108
107
  ChannelCreate.args = [
109
108
  {
@@ -7,7 +7,6 @@ export declare function updateChannelBranchMappingAsync({ channelId, branchMappi
7
7
  branchMapping: string;
8
8
  }>;
9
9
  export default class ChannelEdit extends EasCommand {
10
- static hidden: boolean;
11
10
  static description: string;
12
11
  static args: {
13
12
  name: string;
@@ -112,7 +112,6 @@ class ChannelEdit extends EasCommand_1.default {
112
112
  }
113
113
  }
114
114
  exports.default = ChannelEdit;
115
- ChannelEdit.hidden = true;
116
115
  ChannelEdit.description = 'Point a channel at a new branch.';
117
116
  ChannelEdit.args = [
118
117
  {
@@ -1,6 +1,5 @@
1
1
  import EasCommand from '../../commandUtils/EasCommand';
2
2
  export default class ChannelList extends EasCommand {
3
- static hidden: boolean;
4
3
  static description: string;
5
4
  static flags: {
6
5
  json: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
@@ -79,7 +79,6 @@ class ChannelList extends EasCommand_1.default {
79
79
  }
80
80
  }
81
81
  exports.default = ChannelList;
82
- ChannelList.hidden = true;
83
82
  ChannelList.description = 'List all channels on the current project.';
84
83
  ChannelList.flags = {
85
84
  json: command_1.flags.boolean({
@@ -35,7 +35,6 @@ export declare function logChannelDetails(channel: {
35
35
  }[];
36
36
  }): void;
37
37
  export default class ChannelView extends EasCommand {
38
- static hidden: boolean;
39
38
  static description: string;
40
39
  static args: {
41
40
  name: string;
@@ -186,7 +186,6 @@ class ChannelView extends EasCommand_1.default {
186
186
  }
187
187
  }
188
188
  exports.default = ChannelView;
189
- ChannelView.hidden = true;
190
189
  ChannelView.description = 'View a channel on the current project.';
191
190
  ChannelView.args = [
192
191
  {
@@ -28,6 +28,7 @@ class Diagnostics extends EasCommand_1.default {
28
28
  'react-navigation',
29
29
  '@expo/webpack-config',
30
30
  'expo-dev-client',
31
+ 'expo-updates',
31
32
  ],
32
33
  npmGlobalPackages: ['eas-cli', 'expo-cli'],
33
34
  }, {
@@ -1,8 +1,5 @@
1
- import { ExpoConfig } from '@expo/config';
2
1
  import EasCommand from '../../commandUtils/EasCommand';
3
- export declare function getEASUpdateURLAsync(exp: ExpoConfig): Promise<string>;
4
2
  export default class UpdateConfigure extends EasCommand {
5
- static hidden: boolean;
6
3
  static description: string;
7
4
  runAsync(): Promise<void>;
8
5
  }
@@ -1,25 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getEASUpdateURLAsync = void 0;
4
3
  const tslib_1 = require("tslib");
5
4
  const config_1 = require("@expo/config");
6
5
  const eas_build_job_1 = require("@expo/eas-build-job");
7
6
  const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
7
+ const api_1 = require("../../api");
8
8
  const EasCommand_1 = (0, tslib_1.__importDefault)(require("../../commandUtils/EasCommand"));
9
9
  const log_1 = (0, tslib_1.__importStar)(require("../../log"));
10
10
  const projectUtils_1 = require("../../project/projectUtils");
11
11
  const workflow_1 = require("../../project/workflow");
12
- const EAS_UPDATE_URL = 'https://u.expo.dev';
13
12
  const DEFAULT_MANAGED_RUNTIME_VERSION = { policy: 'sdkVersion' };
14
13
  const DEFAULT_BARE_RUNTIME_VERSION = '1.0.0';
15
- async function getEASUpdateURLAsync(exp) {
16
- const projectId = await (0, projectUtils_1.getProjectIdAsync)(exp);
17
- return new URL(projectId, EAS_UPDATE_URL).href;
18
- }
19
- exports.getEASUpdateURLAsync = getEASUpdateURLAsync;
20
14
  async function configureProjectForEASUpdateAsync(projectDir, exp, isBare) {
21
15
  var _a, _b;
22
- const easUpdateURL = await getEASUpdateURLAsync(exp);
16
+ const projectId = await (0, projectUtils_1.getProjectIdAsync)(exp);
17
+ const easUpdateURL = (0, api_1.getEASUpdateURL)(projectId);
23
18
  const preexistingRuntimeVersion = exp.runtimeVersion;
24
19
  const defaultRuntimeVersion = isBare
25
20
  ? DEFAULT_BARE_RUNTIME_VERSION
@@ -77,5 +72,4 @@ class UpdateConfigure extends EasCommand_1.default {
77
72
  }
78
73
  }
79
74
  exports.default = UpdateConfigure;
80
- UpdateConfigure.hidden = true;
81
75
  UpdateConfigure.description = 'Configure the project to support EAS Update.';
@@ -1,6 +1,5 @@
1
1
  import EasCommand from '../../commandUtils/EasCommand';
2
2
  export default class UpdateDelete extends EasCommand {
3
- static hidden: boolean;
4
3
  static description: string;
5
4
  static args: {
6
5
  name: string;
@@ -46,7 +46,6 @@ class UpdateDelete extends EasCommand_1.default {
46
46
  }
47
47
  }
48
48
  exports.default = UpdateDelete;
49
- UpdateDelete.hidden = true;
50
49
  UpdateDelete.description = 'Delete all the updates in an update Group.';
51
50
  UpdateDelete.args = [
52
51
  {
@@ -3,7 +3,6 @@ import EasCommand from '../../commandUtils/EasCommand';
3
3
  import { PublishPlatform } from '../../project/publish';
4
4
  export declare const defaultPublishPlatforms: PublishPlatform[];
5
5
  export default class UpdatePublish extends EasCommand {
6
- static hidden: boolean;
7
6
  static description: string;
8
7
  static flags: {
9
8
  branch: flags.IOptionFlag<string | undefined>;
@@ -10,6 +10,7 @@ const assert_1 = (0, tslib_1.__importDefault)(require("assert"));
10
10
  const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
11
11
  const dateformat_1 = (0, tslib_1.__importDefault)(require("dateformat"));
12
12
  const graphql_tag_1 = (0, tslib_1.__importDefault)(require("graphql-tag"));
13
+ const api_1 = require("../../api");
13
14
  const EasCommand_1 = (0, tslib_1.__importDefault)(require("../../commandUtils/EasCommand"));
14
15
  const client_1 = require("../../graphql/client");
15
16
  const PublishMutation_1 = require("../../graphql/mutations/PublishMutation");
@@ -27,7 +28,6 @@ const create_1 = require("../branch/create");
27
28
  const list_1 = require("../branch/list");
28
29
  const view_1 = require("../branch/view");
29
30
  const create_2 = require("../channel/create");
30
- const configure_1 = require("./configure");
31
31
  exports.defaultPublishPlatforms = ['android', 'ios'];
32
32
  async function getUpdateGroupAsync({ group, }) {
33
33
  const { updatesByGroup } = await (0, client_1.withErrorHandlingAsync)(client_1.graphqlClient
@@ -299,7 +299,6 @@ class UpdatePublish extends EasCommand_1.default {
299
299
  }
300
300
  }
301
301
  exports.default = UpdatePublish;
302
- UpdatePublish.hidden = true;
303
302
  UpdatePublish.description = 'Publish an update group.';
304
303
  UpdatePublish.flags = {
305
304
  branch: command_1.flags.string({
@@ -377,7 +376,8 @@ function formatUpdateTitle(update) {
377
376
  async function checkEASUpdateURLIsSetAsync(exp) {
378
377
  var _a;
379
378
  const configuredURL = (_a = exp.updates) === null || _a === void 0 ? void 0 : _a.url;
380
- const expectedURL = await (0, configure_1.getEASUpdateURLAsync)(exp);
379
+ const projectId = await (0, projectUtils_1.getProjectIdAsync)(exp);
380
+ const expectedURL = (0, api_1.getEASUpdateURL)(projectId);
381
381
  if (configuredURL !== expectedURL) {
382
382
  throw new Error(`The update URL is incorrectly configured for EAS Update. Please set updates.url to ${expectedURL} in your app.json.`);
383
383
  }
@@ -4,7 +4,6 @@ export declare function viewUpdateAsync({ groupId, }: {
4
4
  groupId: string;
5
5
  }): Promise<UpdatesByGroupQuery>;
6
6
  export default class UpdateView extends EasCommand {
7
- static hidden: boolean;
8
7
  static description: string;
9
8
  static args: {
10
9
  name: string;
@@ -68,7 +68,6 @@ class UpdateView extends EasCommand_1.default {
68
68
  }
69
69
  }
70
70
  exports.default = UpdateView;
71
- UpdateView.hidden = true;
72
71
  UpdateView.description = 'Update group details.';
73
72
  UpdateView.args = [
74
73
  {
@@ -138,7 +138,12 @@ class IosSubmitCommand {
138
138
  }
139
139
  // interpret this to mean the user had some intention of passing in ASC Api key
140
140
  if (ascApiKeyPath || ascApiKeyIssuerId || ascApiKeyId) {
141
- log_1.default.warn(`ascApiKeyPath, ascApiKeyIssuerId and ascApiKeyId must all be defined in eas.json`);
141
+ const message = `ascApiKeyPath, ascApiKeyIssuerId and ascApiKeyId must all be defined in eas.json`;
142
+ // in non-interactive mode, we should fail
143
+ if (this.ctx.nonInteractive) {
144
+ throw new Error(message);
145
+ }
146
+ log_1.default.warn(message);
142
147
  return (0, results_1.result)({
143
148
  sourceType: AscApiKeySource_1.AscApiKeySourceType.prompt,
144
149
  });
@@ -1 +1 @@
1
- {"version":"0.41.0","commands":{"analytics":{"id":"analytics","description":"view or change analytics settings","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"show the eas.json config","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option"}},"args":[]},"credentials":{"id":"credentials","description":"manage your credentials","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"diagnostics":{"id":"diagnostics","description":"log environment info to the console","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"submit":{"id":"submit","description":"Submit build archive to App Store Connect\nSee how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/","pluginName":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json."},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false},"id":{"name":"id","type":"option","description":"ID of the build to submit"},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file"},"url":{"name":"url","type":"option","description":"App archive url"},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from Submission Service","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":[]},"account:login":{"id":"account:login","description":"log in with your Expo account","pluginName":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[]},"account:logout":{"id":"account:logout","description":"log out","pluginName":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[]},"account:view":{"id":"account:view","description":"show the username you are logged in as","pluginName":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[]},"branch:create":{"id":"branch:create","description":"Create a branch on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the new branch ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}]},"branch:delete":{"id":"branch:delete","description":"Republish an update group","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return JSON with the edited branch's ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}]},"branch:list":{"id":"branch:list","description":"List all branches on this project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return output as JSON","allowNo":false}},"args":[]},"branch:publish":{"id":"branch:publish","description":"deprecated, use \"eas update\"","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"branch:rename":{"id":"branch:rename","description":"Rename a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false},"json":{"name":"json","type":"boolean","description":"return a json with the edited branch's ID and name.","allowNo":false}},"args":[]},"branch:view":{"id":"branch:view","description":"View a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the branch's ID name and recent update groups.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}]},"build:cancel":{"id":"build:cancel","description":"Cancel a build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"BUILD_ID"}]},"build:configure":{"id":"build:configure","description":"Configure the project to support EAS Build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","options":["android","ios","all"]}},"args":[]},"build":{"id":"build","description":"Start a build","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","description":"Skip project configuration","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":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},"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"}},"args":[]},"build:inspect":{"id":"build:inspect","description":"Inspect the state of the project at specific build stages. Useful for troubleshooting.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","required":true,"helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"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)","options":["archive","pre-build","post-build"]},"output":{"name":"output","type":"option","description":"Output directory.","required":true,"helpValue":"OUTPUT_DIRECTORY"},"force":{"name":"force","type":"boolean","description":"Delete OUTPUT_DIRECTORY if it already exists.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","allowNo":false}},"args":[]},"build:list":{"id":"build:list","description":"list all builds for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","options":["all","android","ios"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option"},"appVersion":{"name":"appVersion","type":"option"},"appBuildVersion":{"name":"appBuildVersion","type":"option"},"sdkVersion":{"name":"sdkVersion","type":"option"},"runtimeVersion":{"name":"runtimeVersion","type":"option"},"appIdentifier":{"name":"appIdentifier","type":"option"},"buildProfile":{"name":"buildProfile","type":"option"},"gitCommitHash":{"name":"gitCommitHash","type":"option"},"limit":{"name":"limit","type":"option"}},"args":[]},"build:view":{"id":"build:view","description":"view a build for your project","pluginName":"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"}]},"channel:create":{"id":"channel:create","description":"Create a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}]},"channel:edit":{"id":"channel:edit","description":"Point a channel at a new branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to"},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}]},"channel:list":{"id":"channel:list","description":"List all channels on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[]},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}]},"channel:view":{"id":"channel:view","description":"View a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}]},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"device:list":{"id":"device:list","description":"list all registered devices for your account","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option"}},"args":[]},"device:view":{"id":"device:view","description":"view a device for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}]},"project:info":{"id":"project:info","description":"information about the current project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"project:init":{"id":"project:init","description":"create or link an EAS project","pluginName":"eas-cli","pluginType":"core","aliases":["init"],"flags":{},"args":[]},"secret:create":{"id":"secret:create","description":"Create an environment secret on the current project or owner account.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret"},"value":{"name":"value","type":"option","description":"Value of the secret"},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false}},"args":[]},"secret:delete":{"id":"secret:delete","description":"Delete an environment secret by ID.\nUnsure where to find the secret's ID? Run eas secret:list","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete"}},"args":[]},"secret:list":{"id":"secret:list","description":"Lists environment secrets available for your current app","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"update:configure":{"id":"update:configure","description":"Configure the project to support EAS Update.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"update:delete":{"id":"update:delete","description":"Delete all the updates in an update Group.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the group ID of the deleted updates.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}]},"update":{"id":"update","description":"Publish an update group.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Branch to publish the update group on","required":false},"message":{"name":"message","type":"option","description":"A short message describing the update","required":false},"republish":{"name":"republish","type":"boolean","description":"Republish an update group","allowNo":false},"group":{"name":"group","type":"option","description":"Update group to republish"},"input-dir":{"name":"input-dir","type":"option","description":"Location of the bundle","required":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)","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},"auto":{"name":"auto","type":"boolean","description":"Use the current git branch and commit message for the EAS branch and update message","allowNo":false}},"args":[]},"update:view":{"id":"update:view","description":"Update group details.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the updates belonging to the group.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}]},"webhook:create":{"id":"webhook:create","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:delete":{"id":"webhook:delete","description":"Delete a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}]},"webhook:list":{"id":"webhook:list","description":"List webhooks on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]}},"args":[]},"webhook:update":{"id":"webhook:update","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:view":{"id":"webhook:view","description":"View a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}]}}}
1
+ {"version":"0.41.1","commands":{"analytics":{"id":"analytics","description":"view or change analytics settings","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"show the eas.json config","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option"}},"args":[]},"credentials":{"id":"credentials","description":"manage your credentials","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"diagnostics":{"id":"diagnostics","description":"log environment info to the console","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"submit":{"id":"submit","description":"Submit build archive to App Store Connect\nSee how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/","pluginName":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json."},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false},"id":{"name":"id","type":"option","description":"ID of the build to submit"},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file"},"url":{"name":"url","type":"option","description":"App archive url"},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from Submission Service","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":[]},"account:login":{"id":"account:login","description":"log in with your Expo account","pluginName":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[]},"account:logout":{"id":"account:logout","description":"log out","pluginName":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[]},"account:view":{"id":"account:view","description":"show the username you are logged in as","pluginName":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[]},"branch:create":{"id":"branch:create","description":"Create a branch on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the new branch ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}]},"branch:delete":{"id":"branch:delete","description":"Delete a branch on the current project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return JSON with the edited branch's ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}]},"branch:list":{"id":"branch:list","description":"List all branches on this project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return output as JSON","allowNo":false}},"args":[]},"branch:publish":{"id":"branch:publish","description":"deprecated, use \"eas update\"","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"branch:rename":{"id":"branch:rename","description":"Rename a branch.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false},"json":{"name":"json","type":"boolean","description":"return a json with the edited branch's ID and name.","allowNo":false}},"args":[]},"branch:view":{"id":"branch:view","description":"View a branch.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the branch's ID name and recent update groups.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}]},"build:cancel":{"id":"build:cancel","description":"Cancel a build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"BUILD_ID"}]},"build:configure":{"id":"build:configure","description":"Configure the project to support EAS Build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","options":["android","ios","all"]}},"args":[]},"build":{"id":"build","description":"Start a build","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","description":"Skip project configuration","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":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},"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"}},"args":[]},"build:inspect":{"id":"build:inspect","description":"Inspect the state of the project at specific build stages. Useful for troubleshooting.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","required":true,"helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"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)","options":["archive","pre-build","post-build"]},"output":{"name":"output","type":"option","description":"Output directory.","required":true,"helpValue":"OUTPUT_DIRECTORY"},"force":{"name":"force","type":"boolean","description":"Delete OUTPUT_DIRECTORY if it already exists.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","allowNo":false}},"args":[]},"build:list":{"id":"build:list","description":"list all builds for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","options":["all","android","ios"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option"},"appVersion":{"name":"appVersion","type":"option"},"appBuildVersion":{"name":"appBuildVersion","type":"option"},"sdkVersion":{"name":"sdkVersion","type":"option"},"runtimeVersion":{"name":"runtimeVersion","type":"option"},"appIdentifier":{"name":"appIdentifier","type":"option"},"buildProfile":{"name":"buildProfile","type":"option"},"gitCommitHash":{"name":"gitCommitHash","type":"option"},"limit":{"name":"limit","type":"option"}},"args":[]},"build:view":{"id":"build:view","description":"view a build for your project","pluginName":"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"}]},"channel:create":{"id":"channel:create","description":"Create a channel on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}]},"channel:edit":{"id":"channel:edit","description":"Point a channel at a new branch.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to"},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}]},"channel:list":{"id":"channel:list","description":"List all channels on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[]},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}]},"channel:view":{"id":"channel:view","description":"View a channel on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}]},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"device:list":{"id":"device:list","description":"list all registered devices for your account","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option"}},"args":[]},"device:view":{"id":"device:view","description":"view a device for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}]},"project:info":{"id":"project:info","description":"information about the current project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"project:init":{"id":"project:init","description":"create or link an EAS project","pluginName":"eas-cli","pluginType":"core","aliases":["init"],"flags":{},"args":[]},"secret:create":{"id":"secret:create","description":"Create an environment secret on the current project or owner account.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret"},"value":{"name":"value","type":"option","description":"Value of the secret"},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false}},"args":[]},"secret:delete":{"id":"secret:delete","description":"Delete an environment secret by ID.\nUnsure where to find the secret's ID? Run eas secret:list","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete"}},"args":[]},"secret:list":{"id":"secret:list","description":"Lists environment secrets available for your current app","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"update:configure":{"id":"update:configure","description":"Configure the project to support EAS Update.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"update:delete":{"id":"update:delete","description":"Delete all the updates in an update Group.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the group ID of the deleted updates.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}]},"update":{"id":"update","description":"Publish an update group.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Branch to publish the update group on","required":false},"message":{"name":"message","type":"option","description":"A short message describing the update","required":false},"republish":{"name":"republish","type":"boolean","description":"Republish an update group","allowNo":false},"group":{"name":"group","type":"option","description":"Update group to republish"},"input-dir":{"name":"input-dir","type":"option","description":"Location of the bundle","required":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)","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},"auto":{"name":"auto","type":"boolean","description":"Use the current git branch and commit message for the EAS branch and update message","allowNo":false}},"args":[]},"update:view":{"id":"update:view","description":"Update group details.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the updates belonging to the group.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}]},"webhook:create":{"id":"webhook:create","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:delete":{"id":"webhook:delete","description":"Delete a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}]},"webhook:list":{"id":"webhook:list","description":"List webhooks on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]}},"args":[]},"webhook:update":{"id":"webhook:update","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:view":{"id":"webhook:view","description":"View a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}]}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "0.41.0",
4
+ "version": "0.41.1",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -179,5 +179,5 @@
179
179
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
180
180
  "clean": "rm -rf dist build node_modules yarn-error.log"
181
181
  },
182
- "gitHead": "0ccfbe5dd6b70b814de50e8cae00136c75726cda"
182
+ "gitHead": "5e4663ac442dc1106412d977e2d6cbc0a69916b9"
183
183
  }