eas-cli 7.6.2 → 7.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +99 -73
  2. package/build/build/android/graphql.js +3 -0
  3. package/build/build/android/prepareJob.d.ts +2 -2
  4. package/build/build/android/prepareJob.js +2 -1
  5. package/build/build/build.d.ts +4 -4
  6. package/build/build/build.js +33 -3
  7. package/build/build/context.d.ts +2 -0
  8. package/build/build/createContext.d.ts +3 -1
  9. package/build/build/createContext.js +2 -1
  10. package/build/build/graphql.d.ts +3 -1
  11. package/build/build/graphql.js +11 -1
  12. package/build/build/ios/graphql.js +3 -0
  13. package/build/build/ios/prepareJob.d.ts +2 -2
  14. package/build/build/ios/prepareJob.js +2 -1
  15. package/build/build/local.js +1 -1
  16. package/build/build/runBuildAndSubmit.d.ts +2 -0
  17. package/build/build/runBuildAndSubmit.js +20 -0
  18. package/build/build/utils/repository.d.ts +4 -2
  19. package/build/build/utils/repository.js +37 -1
  20. package/build/commands/build/index.d.ts +2 -0
  21. package/build/commands/build/index.js +6 -0
  22. package/build/commands/credentials/configure-build.d.ts +18 -0
  23. package/build/commands/credentials/configure-build.js +43 -0
  24. package/build/commands/credentials/index.d.ts +16 -0
  25. package/build/commands/{credentials.js → credentials/index.js} +2 -2
  26. package/build/commands/submit.d.ts +1 -0
  27. package/build/commands/submit.js +7 -1
  28. package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +1 -0
  29. package/build/credentials/manager/Actions.d.ts +2 -1
  30. package/build/credentials/manager/Actions.js +1 -0
  31. package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +10 -0
  32. package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.js +35 -0
  33. package/build/credentials/manager/ManageAndroid.d.ts +9 -5
  34. package/build/credentials/manager/ManageAndroid.js +4 -0
  35. package/build/credentials/manager/ManageIos.d.ts +17 -8
  36. package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +7 -0
  37. package/build/credentials/manager/SetUpAndroidBuildCredentials.js +48 -0
  38. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +19 -0
  39. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +25 -0
  40. package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +7 -0
  41. package/build/credentials/manager/SetUpIosBuildCredentials.js +58 -0
  42. package/build/devices/utils/formatDevice.js +1 -0
  43. package/build/graphql/generated.d.ts +346 -47
  44. package/build/graphql/generated.js +25 -2
  45. package/build/graphql/types/credentials/AppleDevice.js +1 -0
  46. package/build/submit/android/AndroidSubmitter.js +1 -0
  47. package/build/submit/context.d.ts +2 -0
  48. package/build/submit/ios/IosSubmitter.d.ts +1 -0
  49. package/build/submit/ios/IosSubmitter.js +2 -0
  50. package/oclif.manifest.json +92 -32
  51. package/package.json +7 -6
  52. package/build/commands/credentials.d.ts +0 -16
package/README.md CHANGED
@@ -85,6 +85,7 @@ eas --help COMMAND
85
85
  * [`eas channel:view [NAME]`](#eas-channelview-name)
86
86
  * [`eas config`](#eas-config)
87
87
  * [`eas credentials`](#eas-credentials)
88
+ * [`eas credentials:configure-build`](#eas-credentialsconfigure-build)
88
89
  * [`eas device:create`](#eas-devicecreate)
89
90
  * [`eas device:delete`](#eas-devicedelete)
90
91
  * [`eas device:list`](#eas-devicelist)
@@ -136,7 +137,7 @@ ALIASES
136
137
  $ eas login
137
138
  ```
138
139
 
139
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/account/login.ts)_
140
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/login.ts)_
140
141
 
141
142
  ## `eas account:logout`
142
143
 
@@ -153,7 +154,7 @@ ALIASES
153
154
  $ eas logout
154
155
  ```
155
156
 
156
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/account/logout.ts)_
157
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/logout.ts)_
157
158
 
158
159
  ## `eas account:view`
159
160
 
@@ -170,7 +171,7 @@ ALIASES
170
171
  $ eas whoami
171
172
  ```
172
173
 
173
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/account/view.ts)_
174
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/account/view.ts)_
174
175
 
175
176
  ## `eas analytics [STATUS]`
176
177
 
@@ -184,7 +185,7 @@ DESCRIPTION
184
185
  display or change analytics settings
185
186
  ```
186
187
 
187
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/analytics.ts)_
188
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/analytics.ts)_
188
189
 
189
190
  ## `eas autocomplete [SHELL]`
190
191
 
@@ -236,7 +237,7 @@ DESCRIPTION
236
237
  create a branch
237
238
  ```
238
239
 
239
- _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/branch/create.ts)_
240
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/create.ts)_
240
241
 
241
242
  ## `eas branch:delete [NAME]`
242
243
 
@@ -257,7 +258,7 @@ DESCRIPTION
257
258
  delete a branch
258
259
  ```
259
260
 
260
- _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/branch/delete.ts)_
261
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/delete.ts)_
261
262
 
262
263
  ## `eas branch:list`
263
264
 
@@ -277,7 +278,7 @@ DESCRIPTION
277
278
  list all branches
278
279
  ```
279
280
 
280
- _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/branch/list.ts)_
281
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/list.ts)_
281
282
 
282
283
  ## `eas branch:rename`
283
284
 
@@ -297,7 +298,7 @@ DESCRIPTION
297
298
  rename a branch
298
299
  ```
299
300
 
300
- _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/branch/rename.ts)_
301
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/rename.ts)_
301
302
 
302
303
  ## `eas branch:view [NAME]`
303
304
 
@@ -320,7 +321,7 @@ DESCRIPTION
320
321
  view a branch
321
322
  ```
322
323
 
323
- _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/branch/view.ts)_
324
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/branch/view.ts)_
324
325
 
325
326
  ## `eas build`
326
327
 
@@ -329,28 +330,33 @@ start a build
329
330
  ```
330
331
  USAGE
331
332
  $ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
332
- [--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--json --non-interactive]
333
+ [--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--build-logger-level
334
+ trace|debug|info|warn|error|fatal] [--json --non-interactive]
333
335
 
334
336
  FLAGS
335
- -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
336
- in eas.json.
337
- -m, --message=<value> A short message describing the build
337
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to
338
+ "production" if defined in eas.json.
339
+ -m, --message=<value> A short message describing the build
338
340
  -p, --platform=(android|ios|all)
339
- --auto-submit Submit on build complete using the submit profile with the same name as the
340
- build profile
341
- --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
342
- --clear-cache Clear cache before the build
343
- --json Enable JSON output, non-JSON messages will be printed to stderr.
344
- --local Run build locally [experimental]
345
- --non-interactive Run the command in non-interactive mode.
346
- --output=<value> Output path for local build
347
- --[no-]wait Wait for build(s) to complete
341
+ --auto-submit Submit on build complete using the submit profile with the
342
+ same name as the build profile
343
+ --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with
344
+ provided name
345
+ --build-logger-level=(trace|debug|info|warn|error|fatal) The level of logs to output during the build process.
346
+ Defaults to "info".
347
+ --clear-cache Clear cache before the build
348
+ --json Enable JSON output, non-JSON messages will be printed to
349
+ stderr.
350
+ --local Run build locally [experimental]
351
+ --non-interactive Run the command in non-interactive mode.
352
+ --output=<value> Output path for local build
353
+ --[no-]wait Wait for build(s) to complete
348
354
 
349
355
  DESCRIPTION
350
356
  start a build
351
357
  ```
352
358
 
353
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/index.ts)_
359
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/index.ts)_
354
360
 
355
361
  ## `eas build:cancel [BUILD_ID]`
356
362
 
@@ -369,7 +375,7 @@ DESCRIPTION
369
375
  cancel a build
370
376
  ```
371
377
 
372
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/cancel.ts)_
378
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/cancel.ts)_
373
379
 
374
380
  ## `eas build:configure`
375
381
 
@@ -386,7 +392,7 @@ DESCRIPTION
386
392
  configure the project to support EAS Build
387
393
  ```
388
394
 
389
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/configure.ts)_
395
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/configure.ts)_
390
396
 
391
397
  ## `eas build:delete [BUILD_ID]`
392
398
 
@@ -405,7 +411,7 @@ DESCRIPTION
405
411
  delete a build
406
412
  ```
407
413
 
408
- _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/delete.ts)_
414
+ _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/delete.ts)_
409
415
 
410
416
  ## `eas build:inspect`
411
417
 
@@ -440,7 +446,7 @@ DESCRIPTION
440
446
  inspect the state of the project at specific build stages, useful for troubleshooting
441
447
  ```
442
448
 
443
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/inspect.ts)_
449
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/inspect.ts)_
444
450
 
445
451
  ## `eas build:list`
446
452
 
@@ -481,7 +487,7 @@ DESCRIPTION
481
487
  list all builds for your project
482
488
  ```
483
489
 
484
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/list.ts)_
490
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/list.ts)_
485
491
 
486
492
  ## `eas build:resign`
487
493
 
@@ -507,7 +513,7 @@ DESCRIPTION
507
513
  re-sign a build archive
508
514
  ```
509
515
 
510
- _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/resign.ts)_
516
+ _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/resign.ts)_
511
517
 
512
518
  ## `eas build:run`
513
519
 
@@ -533,7 +539,7 @@ DESCRIPTION
533
539
  run simulator/emulator builds from eas-cli
534
540
  ```
535
541
 
536
- _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/run.ts)_
542
+ _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/run.ts)_
537
543
 
538
544
  ## `eas build:submit`
539
545
 
@@ -542,7 +548,7 @@ submit app binary to App Store and/or Play Store
542
548
  ```
543
549
  USAGE
544
550
  $ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
545
- [--verbose] [--wait] [--non-interactive]
551
+ [--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
546
552
 
547
553
  FLAGS
548
554
  -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
@@ -554,6 +560,7 @@ FLAGS
554
560
  --path=<value> Path to the .apk/.aab/.ipa file
555
561
  --url=<value> App archive url
556
562
  --verbose Always print logs from EAS Submit
563
+ --verbose-fastlane Enable verbose logging for the submission process
557
564
  --[no-]wait Wait for submission to complete
558
565
 
559
566
  DESCRIPTION
@@ -582,7 +589,7 @@ DESCRIPTION
582
589
  get the latest version from EAS servers
583
590
  ```
584
591
 
585
- _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/version/get.ts)_
592
+ _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/get.ts)_
586
593
 
587
594
  ## `eas build:version:set`
588
595
 
@@ -601,7 +608,7 @@ DESCRIPTION
601
608
  update version of an app
602
609
  ```
603
610
 
604
- _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/version/set.ts)_
611
+ _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/set.ts)_
605
612
 
606
613
  ## `eas build:version:sync`
607
614
 
@@ -620,7 +627,7 @@ DESCRIPTION
620
627
  update a version in native code with a value stored on EAS servers
621
628
  ```
622
629
 
623
- _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/version/sync.ts)_
630
+ _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/version/sync.ts)_
624
631
 
625
632
  ## `eas build:view [BUILD_ID]`
626
633
 
@@ -637,7 +644,7 @@ DESCRIPTION
637
644
  view a build for your project
638
645
  ```
639
646
 
640
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/view.ts)_
647
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/build/view.ts)_
641
648
 
642
649
  ## `eas channel:create [NAME]`
643
650
 
@@ -658,7 +665,7 @@ DESCRIPTION
658
665
  create a channel
659
666
  ```
660
667
 
661
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/create.ts)_
668
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/create.ts)_
662
669
 
663
670
  ## `eas channel:edit [NAME]`
664
671
 
@@ -680,7 +687,7 @@ DESCRIPTION
680
687
  point a channel at a new branch
681
688
  ```
682
689
 
683
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/edit.ts)_
690
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/edit.ts)_
684
691
 
685
692
  ## `eas channel:list`
686
693
 
@@ -700,7 +707,7 @@ DESCRIPTION
700
707
  list all channels
701
708
  ```
702
709
 
703
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/list.ts)_
710
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/list.ts)_
704
711
 
705
712
  ## `eas channel:rollout [CHANNEL]`
706
713
 
@@ -732,7 +739,7 @@ DESCRIPTION
732
739
  Roll a new branch out on a channel incrementally.
733
740
  ```
734
741
 
735
- _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/rollout.ts)_
742
+ _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/rollout.ts)_
736
743
 
737
744
  ## `eas channel:view [NAME]`
738
745
 
@@ -755,7 +762,7 @@ DESCRIPTION
755
762
  view a channel
756
763
  ```
757
764
 
758
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/view.ts)_
765
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/channel/view.ts)_
759
766
 
760
767
  ## `eas config`
761
768
 
@@ -776,7 +783,7 @@ DESCRIPTION
776
783
  display project configuration (app.json + eas.json)
777
784
  ```
778
785
 
779
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/config.ts)_
786
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/config.ts)_
780
787
 
781
788
  ## `eas credentials`
782
789
 
@@ -793,7 +800,25 @@ DESCRIPTION
793
800
  manage credentials
794
801
  ```
795
802
 
796
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/credentials.ts)_
803
+ _See code: [src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/credentials/index.ts)_
804
+
805
+ ## `eas credentials:configure-build`
806
+
807
+ Set up credentials for building your project.
808
+
809
+ ```
810
+ USAGE
811
+ $ eas credentials:configure-build [-p android|ios] [-e <value>]
812
+
813
+ FLAGS
814
+ -e, --profile=PROFILE_NAME The name of the build profile in eas.json.
815
+ -p, --platform=(android|ios)
816
+
817
+ DESCRIPTION
818
+ Set up credentials for building your project.
819
+ ```
820
+
821
+ _See code: [src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/credentials/configure-build.ts)_
797
822
 
798
823
  ## `eas device:create`
799
824
 
@@ -807,7 +832,7 @@ DESCRIPTION
807
832
  register new Apple Devices to use for internal distribution
808
833
  ```
809
834
 
810
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/create.ts)_
835
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/create.ts)_
811
836
 
812
837
  ## `eas device:delete`
813
838
 
@@ -827,7 +852,7 @@ DESCRIPTION
827
852
  remove a registered device from your account
828
853
  ```
829
854
 
830
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/delete.ts)_
855
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/delete.ts)_
831
856
 
832
857
  ## `eas device:list`
833
858
 
@@ -848,7 +873,7 @@ DESCRIPTION
848
873
  list all registered devices for your account
849
874
  ```
850
875
 
851
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/list.ts)_
876
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/list.ts)_
852
877
 
853
878
  ## `eas device:rename`
854
879
 
@@ -869,7 +894,7 @@ DESCRIPTION
869
894
  rename a registered device
870
895
  ```
871
896
 
872
- _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/rename.ts)_
897
+ _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/rename.ts)_
873
898
 
874
899
  ## `eas device:view [UDID]`
875
900
 
@@ -883,7 +908,7 @@ DESCRIPTION
883
908
  view a device for your project
884
909
  ```
885
910
 
886
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/view.ts)_
911
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/device/view.ts)_
887
912
 
888
913
  ## `eas diagnostics`
889
914
 
@@ -897,7 +922,7 @@ DESCRIPTION
897
922
  display environment info
898
923
  ```
899
924
 
900
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/diagnostics.ts)_
925
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/diagnostics.ts)_
901
926
 
902
927
  ## `eas help [COMMAND]`
903
928
 
@@ -985,7 +1010,7 @@ DESCRIPTION
985
1010
  validate the local store configuration
986
1011
  ```
987
1012
 
988
- _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/lint.ts)_
1013
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/lint.ts)_
989
1014
 
990
1015
  ## `eas metadata:pull`
991
1016
 
@@ -1002,7 +1027,7 @@ DESCRIPTION
1002
1027
  generate the local store configuration from the app stores
1003
1028
  ```
1004
1029
 
1005
- _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/pull.ts)_
1030
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/pull.ts)_
1006
1031
 
1007
1032
  ## `eas metadata:push`
1008
1033
 
@@ -1019,7 +1044,7 @@ DESCRIPTION
1019
1044
  sync the local store configuration to the app stores
1020
1045
  ```
1021
1046
 
1022
- _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/push.ts)_
1047
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/metadata/push.ts)_
1023
1048
 
1024
1049
  ## `eas open`
1025
1050
 
@@ -1033,7 +1058,7 @@ DESCRIPTION
1033
1058
  open the project page in a web browser
1034
1059
  ```
1035
1060
 
1036
- _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/open.ts)_
1061
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/open.ts)_
1037
1062
 
1038
1063
  ## `eas project:info`
1039
1064
 
@@ -1047,7 +1072,7 @@ DESCRIPTION
1047
1072
  information about the current project
1048
1073
  ```
1049
1074
 
1050
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/project/info.ts)_
1075
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/project/info.ts)_
1051
1076
 
1052
1077
  ## `eas project:init`
1053
1078
 
@@ -1069,7 +1094,7 @@ ALIASES
1069
1094
  $ eas init
1070
1095
  ```
1071
1096
 
1072
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/project/init.ts)_
1097
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/project/init.ts)_
1073
1098
 
1074
1099
  ## `eas secret:create`
1075
1100
 
@@ -1092,7 +1117,7 @@ DESCRIPTION
1092
1117
  create an environment secret on the current project or owner account
1093
1118
  ```
1094
1119
 
1095
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/create.ts)_
1120
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/create.ts)_
1096
1121
 
1097
1122
  ## `eas secret:delete`
1098
1123
 
@@ -1110,7 +1135,7 @@ DESCRIPTION
1110
1135
  delete an environment secret by ID
1111
1136
  ```
1112
1137
 
1113
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/delete.ts)_
1138
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/delete.ts)_
1114
1139
 
1115
1140
  ## `eas secret:list`
1116
1141
 
@@ -1124,7 +1149,7 @@ DESCRIPTION
1124
1149
  list environment secrets available for your current app
1125
1150
  ```
1126
1151
 
1127
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/list.ts)_
1152
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/list.ts)_
1128
1153
 
1129
1154
  ## `eas secret:push`
1130
1155
 
@@ -1144,7 +1169,7 @@ DESCRIPTION
1144
1169
  read environment secrets from env file and store on the server
1145
1170
  ```
1146
1171
 
1147
- _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/push.ts)_
1172
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/secret/push.ts)_
1148
1173
 
1149
1174
  ## `eas submit`
1150
1175
 
@@ -1153,7 +1178,7 @@ submit app binary to App Store and/or Play Store
1153
1178
  ```
1154
1179
  USAGE
1155
1180
  $ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
1156
- [--verbose] [--wait] [--non-interactive]
1181
+ [--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
1157
1182
 
1158
1183
  FLAGS
1159
1184
  -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
@@ -1165,6 +1190,7 @@ FLAGS
1165
1190
  --path=<value> Path to the .apk/.aab/.ipa file
1166
1191
  --url=<value> App archive url
1167
1192
  --verbose Always print logs from EAS Submit
1193
+ --verbose-fastlane Enable verbose logging for the submission process
1168
1194
  --[no-]wait Wait for submission to complete
1169
1195
 
1170
1196
  DESCRIPTION
@@ -1174,7 +1200,7 @@ ALIASES
1174
1200
  $ eas build:submit
1175
1201
  ```
1176
1202
 
1177
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/submit.ts)_
1203
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/submit.ts)_
1178
1204
 
1179
1205
  ## `eas update`
1180
1206
 
@@ -1207,7 +1233,7 @@ DESCRIPTION
1207
1233
  publish an update group
1208
1234
  ```
1209
1235
 
1210
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/index.ts)_
1236
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/index.ts)_
1211
1237
 
1212
1238
  ## `eas update:configure`
1213
1239
 
@@ -1225,7 +1251,7 @@ DESCRIPTION
1225
1251
  configure the project to support EAS Update
1226
1252
  ```
1227
1253
 
1228
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/configure.ts)_
1254
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/configure.ts)_
1229
1255
 
1230
1256
  ## `eas update:delete GROUPID`
1231
1257
 
@@ -1246,7 +1272,7 @@ DESCRIPTION
1246
1272
  delete all the updates in an update group
1247
1273
  ```
1248
1274
 
1249
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/delete.ts)_
1275
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/delete.ts)_
1250
1276
 
1251
1277
  ## `eas update:list`
1252
1278
 
@@ -1268,7 +1294,7 @@ DESCRIPTION
1268
1294
  view the recent updates
1269
1295
  ```
1270
1296
 
1271
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/list.ts)_
1297
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/list.ts)_
1272
1298
 
1273
1299
  ## `eas update:republish`
1274
1300
 
@@ -1295,7 +1321,7 @@ DESCRIPTION
1295
1321
  roll back to an existing update
1296
1322
  ```
1297
1323
 
1298
- _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/republish.ts)_
1324
+ _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/republish.ts)_
1299
1325
 
1300
1326
  ## `eas update:roll-back-to-embedded`
1301
1327
 
@@ -1322,7 +1348,7 @@ DESCRIPTION
1322
1348
  roll back to the embedded update
1323
1349
  ```
1324
1350
 
1325
- _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/roll-back-to-embedded.ts)_
1351
+ _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/roll-back-to-embedded.ts)_
1326
1352
 
1327
1353
  ## `eas update:rollback`
1328
1354
 
@@ -1341,7 +1367,7 @@ DESCRIPTION
1341
1367
  roll back to an embedded update or an existing update
1342
1368
  ```
1343
1369
 
1344
- _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/rollback.ts)_
1370
+ _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/rollback.ts)_
1345
1371
 
1346
1372
  ## `eas update:view GROUPID`
1347
1373
 
@@ -1361,7 +1387,7 @@ DESCRIPTION
1361
1387
  update group details
1362
1388
  ```
1363
1389
 
1364
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/view.ts)_
1390
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/update/view.ts)_
1365
1391
 
1366
1392
  ## `eas webhook:create`
1367
1393
 
@@ -1382,7 +1408,7 @@ DESCRIPTION
1382
1408
  create a webhook
1383
1409
  ```
1384
1410
 
1385
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/create.ts)_
1411
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/create.ts)_
1386
1412
 
1387
1413
  ## `eas webhook:delete [ID]`
1388
1414
 
@@ -1402,7 +1428,7 @@ DESCRIPTION
1402
1428
  delete a webhook
1403
1429
  ```
1404
1430
 
1405
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/delete.ts)_
1431
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/delete.ts)_
1406
1432
 
1407
1433
  ## `eas webhook:list`
1408
1434
 
@@ -1420,7 +1446,7 @@ DESCRIPTION
1420
1446
  list webhooks
1421
1447
  ```
1422
1448
 
1423
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/list.ts)_
1449
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/list.ts)_
1424
1450
 
1425
1451
  ## `eas webhook:update`
1426
1452
 
@@ -1442,7 +1468,7 @@ DESCRIPTION
1442
1468
  update a webhook
1443
1469
  ```
1444
1470
 
1445
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/update.ts)_
1471
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/update.ts)_
1446
1472
 
1447
1473
  ## `eas webhook:view ID`
1448
1474
 
@@ -1459,7 +1485,7 @@ DESCRIPTION
1459
1485
  view a webhook
1460
1486
  ```
1461
1487
 
1462
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/view.ts)_
1488
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.8.0/src/commands/webhook/view.ts)_
1463
1489
 
1464
1490
  ## `eas whoami`
1465
1491
 
@@ -26,6 +26,9 @@ function transformJob(job) {
26
26
  experimental: job.experimental,
27
27
  mode: (0, graphql_1.transformBuildMode)(job.mode),
28
28
  customBuildConfig: job.customBuildConfig,
29
+ loggerLevel: job.loggerLevel
30
+ ? graphql_1.loggerLevelToGraphQLWorkerLoggerLevel[job.loggerLevel]
31
+ : undefined,
29
32
  };
30
33
  }
31
34
  exports.transformJob = transformJob;
@@ -1,9 +1,9 @@
1
- import { ArchiveSource, Job, Platform } from '@expo/eas-build-job';
1
+ import { Android, ArchiveSource, Platform } from '@expo/eas-build-job';
2
2
  import { AndroidCredentials } from '../../credentials/android/AndroidCredentialsProvider';
3
3
  import { BuildContext } from '../context';
4
4
  interface JobData {
5
5
  projectArchive: ArchiveSource;
6
6
  credentials?: AndroidCredentials;
7
7
  }
8
- export declare function prepareJobAsync(ctx: BuildContext<Platform.ANDROID>, jobData: JobData): Promise<Job>;
8
+ export declare function prepareJobAsync(ctx: BuildContext<Platform.ANDROID>, jobData: JobData): Promise<Android.Job>;
9
9
  export {};
@@ -82,7 +82,8 @@ async function prepareJobAsync(ctx, jobData) {
82
82
  path: maybeCustomBuildConfigPath,
83
83
  },
84
84
  }),
85
+ loggerLevel: ctx.loggerLevel,
85
86
  };
86
- return (0, eas_build_job_1.sanitizeJob)(job);
87
+ return (0, eas_build_job_1.sanitizeBuildJob)(job);
87
88
  }
88
89
  exports.prepareJobAsync = prepareJobAsync;