eas-cli 7.6.2 → 7.7.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 (40) hide show
  1. package/README.md +81 -60
  2. package/build/build/android/prepareJob.d.ts +2 -2
  3. package/build/build/android/prepareJob.js +1 -1
  4. package/build/build/build.d.ts +4 -4
  5. package/build/build/build.js +33 -3
  6. package/build/build/graphql.js +1 -0
  7. package/build/build/ios/prepareJob.d.ts +2 -2
  8. package/build/build/ios/prepareJob.js +1 -1
  9. package/build/build/local.js +1 -1
  10. package/build/build/runBuildAndSubmit.js +1 -0
  11. package/build/build/utils/repository.d.ts +4 -2
  12. package/build/build/utils/repository.js +37 -1
  13. package/build/commands/credentials/configure-build.d.ts +18 -0
  14. package/build/commands/credentials/configure-build.js +43 -0
  15. package/build/commands/credentials/index.d.ts +16 -0
  16. package/build/commands/{credentials.js → credentials/index.js} +2 -2
  17. package/build/commands/submit.d.ts +1 -0
  18. package/build/commands/submit.js +7 -1
  19. package/build/credentials/manager/Actions.d.ts +2 -1
  20. package/build/credentials/manager/Actions.js +1 -0
  21. package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +10 -0
  22. package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.js +35 -0
  23. package/build/credentials/manager/ManageAndroid.d.ts +9 -5
  24. package/build/credentials/manager/ManageAndroid.js +4 -0
  25. package/build/credentials/manager/ManageIos.d.ts +17 -8
  26. package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +7 -0
  27. package/build/credentials/manager/SetUpAndroidBuildCredentials.js +48 -0
  28. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +19 -0
  29. package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +25 -0
  30. package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +7 -0
  31. package/build/credentials/manager/SetUpIosBuildCredentials.js +58 -0
  32. package/build/graphql/generated.d.ts +5 -0
  33. package/build/graphql/generated.js +1 -0
  34. package/build/submit/android/AndroidSubmitter.js +1 -0
  35. package/build/submit/context.d.ts +2 -0
  36. package/build/submit/ios/IosSubmitter.d.ts +1 -0
  37. package/build/submit/ios/IosSubmitter.js +2 -0
  38. package/oclif.manifest.json +77 -32
  39. package/package.json +6 -6
  40. 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.7.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.7.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.7.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.7.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.7.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.7.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.7.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.7.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.7.0/src/commands/branch/view.ts)_
324
325
 
325
326
  ## `eas build`
326
327
 
@@ -350,7 +351,7 @@ DESCRIPTION
350
351
  start a build
351
352
  ```
352
353
 
353
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/index.ts)_
354
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/index.ts)_
354
355
 
355
356
  ## `eas build:cancel [BUILD_ID]`
356
357
 
@@ -369,7 +370,7 @@ DESCRIPTION
369
370
  cancel a build
370
371
  ```
371
372
 
372
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/cancel.ts)_
373
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/cancel.ts)_
373
374
 
374
375
  ## `eas build:configure`
375
376
 
@@ -386,7 +387,7 @@ DESCRIPTION
386
387
  configure the project to support EAS Build
387
388
  ```
388
389
 
389
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/configure.ts)_
390
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/configure.ts)_
390
391
 
391
392
  ## `eas build:delete [BUILD_ID]`
392
393
 
@@ -405,7 +406,7 @@ DESCRIPTION
405
406
  delete a build
406
407
  ```
407
408
 
408
- _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/delete.ts)_
409
+ _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/delete.ts)_
409
410
 
410
411
  ## `eas build:inspect`
411
412
 
@@ -440,7 +441,7 @@ DESCRIPTION
440
441
  inspect the state of the project at specific build stages, useful for troubleshooting
441
442
  ```
442
443
 
443
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/inspect.ts)_
444
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/inspect.ts)_
444
445
 
445
446
  ## `eas build:list`
446
447
 
@@ -481,7 +482,7 @@ DESCRIPTION
481
482
  list all builds for your project
482
483
  ```
483
484
 
484
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/list.ts)_
485
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/list.ts)_
485
486
 
486
487
  ## `eas build:resign`
487
488
 
@@ -507,7 +508,7 @@ DESCRIPTION
507
508
  re-sign a build archive
508
509
  ```
509
510
 
510
- _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/resign.ts)_
511
+ _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/resign.ts)_
511
512
 
512
513
  ## `eas build:run`
513
514
 
@@ -533,7 +534,7 @@ DESCRIPTION
533
534
  run simulator/emulator builds from eas-cli
534
535
  ```
535
536
 
536
- _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/run.ts)_
537
+ _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/run.ts)_
537
538
 
538
539
  ## `eas build:submit`
539
540
 
@@ -542,7 +543,7 @@ submit app binary to App Store and/or Play Store
542
543
  ```
543
544
  USAGE
544
545
  $ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
545
- [--verbose] [--wait] [--non-interactive]
546
+ [--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
546
547
 
547
548
  FLAGS
548
549
  -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
@@ -554,6 +555,7 @@ FLAGS
554
555
  --path=<value> Path to the .apk/.aab/.ipa file
555
556
  --url=<value> App archive url
556
557
  --verbose Always print logs from EAS Submit
558
+ --verbose-fastlane Enable verbose logging for the submission process
557
559
  --[no-]wait Wait for submission to complete
558
560
 
559
561
  DESCRIPTION
@@ -582,7 +584,7 @@ DESCRIPTION
582
584
  get the latest version from EAS servers
583
585
  ```
584
586
 
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)_
587
+ _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/get.ts)_
586
588
 
587
589
  ## `eas build:version:set`
588
590
 
@@ -601,7 +603,7 @@ DESCRIPTION
601
603
  update version of an app
602
604
  ```
603
605
 
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)_
606
+ _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/set.ts)_
605
607
 
606
608
  ## `eas build:version:sync`
607
609
 
@@ -620,7 +622,7 @@ DESCRIPTION
620
622
  update a version in native code with a value stored on EAS servers
621
623
  ```
622
624
 
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)_
625
+ _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/version/sync.ts)_
624
626
 
625
627
  ## `eas build:view [BUILD_ID]`
626
628
 
@@ -637,7 +639,7 @@ DESCRIPTION
637
639
  view a build for your project
638
640
  ```
639
641
 
640
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/build/view.ts)_
642
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/build/view.ts)_
641
643
 
642
644
  ## `eas channel:create [NAME]`
643
645
 
@@ -658,7 +660,7 @@ DESCRIPTION
658
660
  create a channel
659
661
  ```
660
662
 
661
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/create.ts)_
663
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/create.ts)_
662
664
 
663
665
  ## `eas channel:edit [NAME]`
664
666
 
@@ -680,7 +682,7 @@ DESCRIPTION
680
682
  point a channel at a new branch
681
683
  ```
682
684
 
683
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/edit.ts)_
685
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/edit.ts)_
684
686
 
685
687
  ## `eas channel:list`
686
688
 
@@ -700,7 +702,7 @@ DESCRIPTION
700
702
  list all channels
701
703
  ```
702
704
 
703
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/list.ts)_
705
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/list.ts)_
704
706
 
705
707
  ## `eas channel:rollout [CHANNEL]`
706
708
 
@@ -732,7 +734,7 @@ DESCRIPTION
732
734
  Roll a new branch out on a channel incrementally.
733
735
  ```
734
736
 
735
- _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/rollout.ts)_
737
+ _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/rollout.ts)_
736
738
 
737
739
  ## `eas channel:view [NAME]`
738
740
 
@@ -755,7 +757,7 @@ DESCRIPTION
755
757
  view a channel
756
758
  ```
757
759
 
758
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/channel/view.ts)_
760
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/channel/view.ts)_
759
761
 
760
762
  ## `eas config`
761
763
 
@@ -776,7 +778,7 @@ DESCRIPTION
776
778
  display project configuration (app.json + eas.json)
777
779
  ```
778
780
 
779
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/config.ts)_
781
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/config.ts)_
780
782
 
781
783
  ## `eas credentials`
782
784
 
@@ -793,7 +795,25 @@ DESCRIPTION
793
795
  manage credentials
794
796
  ```
795
797
 
796
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/credentials.ts)_
798
+ _See code: [src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/credentials/index.ts)_
799
+
800
+ ## `eas credentials:configure-build`
801
+
802
+ Set up credentials for building your project.
803
+
804
+ ```
805
+ USAGE
806
+ $ eas credentials:configure-build [-p android|ios] [-e <value>]
807
+
808
+ FLAGS
809
+ -e, --profile=PROFILE_NAME The name of the build profile in eas.json.
810
+ -p, --platform=(android|ios)
811
+
812
+ DESCRIPTION
813
+ Set up credentials for building your project.
814
+ ```
815
+
816
+ _See code: [src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/credentials/configure-build.ts)_
797
817
 
798
818
  ## `eas device:create`
799
819
 
@@ -807,7 +827,7 @@ DESCRIPTION
807
827
  register new Apple Devices to use for internal distribution
808
828
  ```
809
829
 
810
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/create.ts)_
830
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/create.ts)_
811
831
 
812
832
  ## `eas device:delete`
813
833
 
@@ -827,7 +847,7 @@ DESCRIPTION
827
847
  remove a registered device from your account
828
848
  ```
829
849
 
830
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/delete.ts)_
850
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/delete.ts)_
831
851
 
832
852
  ## `eas device:list`
833
853
 
@@ -848,7 +868,7 @@ DESCRIPTION
848
868
  list all registered devices for your account
849
869
  ```
850
870
 
851
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/list.ts)_
871
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/list.ts)_
852
872
 
853
873
  ## `eas device:rename`
854
874
 
@@ -869,7 +889,7 @@ DESCRIPTION
869
889
  rename a registered device
870
890
  ```
871
891
 
872
- _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/rename.ts)_
892
+ _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/rename.ts)_
873
893
 
874
894
  ## `eas device:view [UDID]`
875
895
 
@@ -883,7 +903,7 @@ DESCRIPTION
883
903
  view a device for your project
884
904
  ```
885
905
 
886
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/device/view.ts)_
906
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/device/view.ts)_
887
907
 
888
908
  ## `eas diagnostics`
889
909
 
@@ -897,7 +917,7 @@ DESCRIPTION
897
917
  display environment info
898
918
  ```
899
919
 
900
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/diagnostics.ts)_
920
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/diagnostics.ts)_
901
921
 
902
922
  ## `eas help [COMMAND]`
903
923
 
@@ -985,7 +1005,7 @@ DESCRIPTION
985
1005
  validate the local store configuration
986
1006
  ```
987
1007
 
988
- _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/lint.ts)_
1008
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/lint.ts)_
989
1009
 
990
1010
  ## `eas metadata:pull`
991
1011
 
@@ -1002,7 +1022,7 @@ DESCRIPTION
1002
1022
  generate the local store configuration from the app stores
1003
1023
  ```
1004
1024
 
1005
- _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/pull.ts)_
1025
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/pull.ts)_
1006
1026
 
1007
1027
  ## `eas metadata:push`
1008
1028
 
@@ -1019,7 +1039,7 @@ DESCRIPTION
1019
1039
  sync the local store configuration to the app stores
1020
1040
  ```
1021
1041
 
1022
- _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/metadata/push.ts)_
1042
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/metadata/push.ts)_
1023
1043
 
1024
1044
  ## `eas open`
1025
1045
 
@@ -1033,7 +1053,7 @@ DESCRIPTION
1033
1053
  open the project page in a web browser
1034
1054
  ```
1035
1055
 
1036
- _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/open.ts)_
1056
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/open.ts)_
1037
1057
 
1038
1058
  ## `eas project:info`
1039
1059
 
@@ -1047,7 +1067,7 @@ DESCRIPTION
1047
1067
  information about the current project
1048
1068
  ```
1049
1069
 
1050
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/project/info.ts)_
1070
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/project/info.ts)_
1051
1071
 
1052
1072
  ## `eas project:init`
1053
1073
 
@@ -1069,7 +1089,7 @@ ALIASES
1069
1089
  $ eas init
1070
1090
  ```
1071
1091
 
1072
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/project/init.ts)_
1092
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/project/init.ts)_
1073
1093
 
1074
1094
  ## `eas secret:create`
1075
1095
 
@@ -1092,7 +1112,7 @@ DESCRIPTION
1092
1112
  create an environment secret on the current project or owner account
1093
1113
  ```
1094
1114
 
1095
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/create.ts)_
1115
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/create.ts)_
1096
1116
 
1097
1117
  ## `eas secret:delete`
1098
1118
 
@@ -1110,7 +1130,7 @@ DESCRIPTION
1110
1130
  delete an environment secret by ID
1111
1131
  ```
1112
1132
 
1113
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/delete.ts)_
1133
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/delete.ts)_
1114
1134
 
1115
1135
  ## `eas secret:list`
1116
1136
 
@@ -1124,7 +1144,7 @@ DESCRIPTION
1124
1144
  list environment secrets available for your current app
1125
1145
  ```
1126
1146
 
1127
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/list.ts)_
1147
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/list.ts)_
1128
1148
 
1129
1149
  ## `eas secret:push`
1130
1150
 
@@ -1144,7 +1164,7 @@ DESCRIPTION
1144
1164
  read environment secrets from env file and store on the server
1145
1165
  ```
1146
1166
 
1147
- _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/secret/push.ts)_
1167
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/secret/push.ts)_
1148
1168
 
1149
1169
  ## `eas submit`
1150
1170
 
@@ -1153,7 +1173,7 @@ submit app binary to App Store and/or Play Store
1153
1173
  ```
1154
1174
  USAGE
1155
1175
  $ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
1156
- [--verbose] [--wait] [--non-interactive]
1176
+ [--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
1157
1177
 
1158
1178
  FLAGS
1159
1179
  -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
@@ -1165,6 +1185,7 @@ FLAGS
1165
1185
  --path=<value> Path to the .apk/.aab/.ipa file
1166
1186
  --url=<value> App archive url
1167
1187
  --verbose Always print logs from EAS Submit
1188
+ --verbose-fastlane Enable verbose logging for the submission process
1168
1189
  --[no-]wait Wait for submission to complete
1169
1190
 
1170
1191
  DESCRIPTION
@@ -1174,7 +1195,7 @@ ALIASES
1174
1195
  $ eas build:submit
1175
1196
  ```
1176
1197
 
1177
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/submit.ts)_
1198
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/submit.ts)_
1178
1199
 
1179
1200
  ## `eas update`
1180
1201
 
@@ -1207,7 +1228,7 @@ DESCRIPTION
1207
1228
  publish an update group
1208
1229
  ```
1209
1230
 
1210
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/index.ts)_
1231
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/index.ts)_
1211
1232
 
1212
1233
  ## `eas update:configure`
1213
1234
 
@@ -1225,7 +1246,7 @@ DESCRIPTION
1225
1246
  configure the project to support EAS Update
1226
1247
  ```
1227
1248
 
1228
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/configure.ts)_
1249
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/configure.ts)_
1229
1250
 
1230
1251
  ## `eas update:delete GROUPID`
1231
1252
 
@@ -1246,7 +1267,7 @@ DESCRIPTION
1246
1267
  delete all the updates in an update group
1247
1268
  ```
1248
1269
 
1249
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/delete.ts)_
1270
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/delete.ts)_
1250
1271
 
1251
1272
  ## `eas update:list`
1252
1273
 
@@ -1268,7 +1289,7 @@ DESCRIPTION
1268
1289
  view the recent updates
1269
1290
  ```
1270
1291
 
1271
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/list.ts)_
1292
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/list.ts)_
1272
1293
 
1273
1294
  ## `eas update:republish`
1274
1295
 
@@ -1295,7 +1316,7 @@ DESCRIPTION
1295
1316
  roll back to an existing update
1296
1317
  ```
1297
1318
 
1298
- _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/republish.ts)_
1319
+ _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/republish.ts)_
1299
1320
 
1300
1321
  ## `eas update:roll-back-to-embedded`
1301
1322
 
@@ -1322,7 +1343,7 @@ DESCRIPTION
1322
1343
  roll back to the embedded update
1323
1344
  ```
1324
1345
 
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)_
1346
+ _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/roll-back-to-embedded.ts)_
1326
1347
 
1327
1348
  ## `eas update:rollback`
1328
1349
 
@@ -1341,7 +1362,7 @@ DESCRIPTION
1341
1362
  roll back to an embedded update or an existing update
1342
1363
  ```
1343
1364
 
1344
- _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/rollback.ts)_
1365
+ _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/rollback.ts)_
1345
1366
 
1346
1367
  ## `eas update:view GROUPID`
1347
1368
 
@@ -1361,7 +1382,7 @@ DESCRIPTION
1361
1382
  update group details
1362
1383
  ```
1363
1384
 
1364
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/update/view.ts)_
1385
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/update/view.ts)_
1365
1386
 
1366
1387
  ## `eas webhook:create`
1367
1388
 
@@ -1382,7 +1403,7 @@ DESCRIPTION
1382
1403
  create a webhook
1383
1404
  ```
1384
1405
 
1385
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/create.ts)_
1406
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/create.ts)_
1386
1407
 
1387
1408
  ## `eas webhook:delete [ID]`
1388
1409
 
@@ -1402,7 +1423,7 @@ DESCRIPTION
1402
1423
  delete a webhook
1403
1424
  ```
1404
1425
 
1405
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/delete.ts)_
1426
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/delete.ts)_
1406
1427
 
1407
1428
  ## `eas webhook:list`
1408
1429
 
@@ -1420,7 +1441,7 @@ DESCRIPTION
1420
1441
  list webhooks
1421
1442
  ```
1422
1443
 
1423
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/list.ts)_
1444
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/list.ts)_
1424
1445
 
1425
1446
  ## `eas webhook:update`
1426
1447
 
@@ -1442,7 +1463,7 @@ DESCRIPTION
1442
1463
  update a webhook
1443
1464
  ```
1444
1465
 
1445
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/update.ts)_
1466
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/update.ts)_
1446
1467
 
1447
1468
  ## `eas webhook:view ID`
1448
1469
 
@@ -1459,7 +1480,7 @@ DESCRIPTION
1459
1480
  view a webhook
1460
1481
  ```
1461
1482
 
1462
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.6.2/src/commands/webhook/view.ts)_
1483
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.7.0/src/commands/webhook/view.ts)_
1463
1484
 
1464
1485
  ## `eas whoami`
1465
1486
 
@@ -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 {};
@@ -83,6 +83,6 @@ async function prepareJobAsync(ctx, jobData) {
83
83
  },
84
84
  }),
85
85
  };
86
- return (0, eas_build_job_1.sanitizeJob)(job);
86
+ return (0, eas_build_job_1.sanitizeBuildJob)(job);
87
87
  }
88
88
  exports.prepareJobAsync = prepareJobAsync;
@@ -1,4 +1,4 @@
1
- import { ArchiveSource, Job, Metadata, Platform } from '@expo/eas-build-job';
1
+ import { ArchiveSource, BuildJob, Metadata, Platform } from '@expo/eas-build-job';
2
2
  import { CredentialsSource } from '@expo/eas-json';
3
3
  import { BuildContext } from './context';
4
4
  import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGraphqlClient';
@@ -12,15 +12,15 @@ export interface JobData<Credentials> {
12
12
  credentials?: Credentials;
13
13
  projectArchive: ArchiveSource;
14
14
  }
15
- interface Builder<TPlatform extends Platform, Credentials, TJob extends Job> {
15
+ interface Builder<TPlatform extends Platform, Credentials, TJob extends BuildJob> {
16
16
  ctx: BuildContext<TPlatform>;
17
17
  ensureCredentialsAsync(ctx: BuildContext<TPlatform>): Promise<CredentialsResult<Credentials> | undefined>;
18
18
  syncProjectConfigurationAsync(ctx: BuildContext<TPlatform>): Promise<void>;
19
- prepareJobAsync(ctx: BuildContext<TPlatform>, jobData: JobData<Credentials>): Promise<Job>;
19
+ prepareJobAsync(ctx: BuildContext<TPlatform>, jobData: JobData<Credentials>): Promise<BuildJob>;
20
20
  sendBuildRequestAsync(appId: string, job: TJob, metadata: Metadata, buildParams: BuildParamsInput): Promise<BuildResult>;
21
21
  }
22
22
  export type BuildRequestSender = () => Promise<BuildFragment | undefined>;
23
- export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends Job>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
23
+ export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends BuildJob>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
24
24
  export declare function handleBuildRequestError(error: any, platform: Platform): never;
25
25
  export type MaybeBuildFragment = BuildFragment | null;
26
26
  export declare function waitForBuildEndAsync(graphqlClient: ExpoGraphqlClient, { buildIds, accountName }: {