eas-cli 7.1.2 → 7.2.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 (41) hide show
  1. package/README.md +64 -62
  2. package/build/build/metadata.js +3 -3
  3. package/build/build/types.d.ts +1 -0
  4. package/build/build/types.js +1 -0
  5. package/build/commands/build/list.d.ts +1 -0
  6. package/build/commands/build/list.js +12 -0
  7. package/build/commands/build/run.js +3 -3
  8. package/build/commands/update/index.d.ts +0 -1
  9. package/build/commands/update/index.js +3 -8
  10. package/build/credentials/android/actions/{AssignGoogleServiceAccountKey.d.ts → AssignGoogleServiceAccountKeyForFcmV1.d.ts} +1 -1
  11. package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.js +19 -0
  12. package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.d.ts +8 -0
  13. package/build/credentials/android/actions/{AssignGoogleServiceAccountKey.js → AssignGoogleServiceAccountKeyForSubmissions.js} +3 -3
  14. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +1 -1
  15. package/build/credentials/android/actions/{SetUpGoogleServiceAccountKey.d.ts → SetUpGoogleServiceAccountKeyForFcmV1.d.ts} +1 -1
  16. package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.js +59 -0
  17. package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.d.ts +10 -0
  18. package/build/credentials/android/actions/{SetUpGoogleServiceAccountKey.js → SetUpGoogleServiceAccountKeyForSubmissions.js} +5 -5
  19. package/build/credentials/android/api/GraphqlClient.d.ts +2 -1
  20. package/build/credentials/android/api/GraphqlClient.js +5 -1
  21. package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.d.ts +1 -0
  22. package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.js +26 -0
  23. package/build/credentials/android/utils/googleServiceAccountKey.js +1 -1
  24. package/build/credentials/android/utils/printCredentials.js +24 -2
  25. package/build/credentials/ios/actions/CreateAscApiKey.js +1 -5
  26. package/build/credentials/manager/Actions.d.ts +22 -16
  27. package/build/credentials/manager/Actions.js +22 -16
  28. package/build/credentials/manager/AndroidActions.d.ts +3 -1
  29. package/build/credentials/manager/AndroidActions.js +46 -12
  30. package/build/credentials/manager/ManageAndroid.js +30 -12
  31. package/build/graphql/generated.d.ts +198 -0
  32. package/build/graphql/generated.js +3 -0
  33. package/build/graphql/types/Build.js +1 -0
  34. package/build/graphql/types/credentials/AndroidAppCredentials.js +4 -0
  35. package/build/project/customBuildConfig.js +1 -1
  36. package/build/project/publish.d.ts +1 -2
  37. package/build/project/publish.js +1 -4
  38. package/build/run/utils.js +1 -1
  39. package/build/submit/android/ServiceAccountSource.js +2 -2
  40. package/oclif.manifest.json +7 -7
  41. package/package.json +6 -6
package/README.md CHANGED
@@ -136,7 +136,7 @@ ALIASES
136
136
  $ eas login
137
137
  ```
138
138
 
139
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/account/login.ts)_
139
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/account/login.ts)_
140
140
 
141
141
  ## `eas account:logout`
142
142
 
@@ -153,7 +153,7 @@ ALIASES
153
153
  $ eas logout
154
154
  ```
155
155
 
156
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/account/logout.ts)_
156
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/account/logout.ts)_
157
157
 
158
158
  ## `eas account:view`
159
159
 
@@ -170,7 +170,7 @@ ALIASES
170
170
  $ eas whoami
171
171
  ```
172
172
 
173
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/account/view.ts)_
173
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/account/view.ts)_
174
174
 
175
175
  ## `eas analytics [STATUS]`
176
176
 
@@ -184,7 +184,7 @@ DESCRIPTION
184
184
  display or change analytics settings
185
185
  ```
186
186
 
187
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/analytics.ts)_
187
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/analytics.ts)_
188
188
 
189
189
  ## `eas autocomplete [SHELL]`
190
190
 
@@ -236,7 +236,7 @@ DESCRIPTION
236
236
  create a branch
237
237
  ```
238
238
 
239
- _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/branch/create.ts)_
239
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/branch/create.ts)_
240
240
 
241
241
  ## `eas branch:delete [NAME]`
242
242
 
@@ -257,7 +257,7 @@ DESCRIPTION
257
257
  delete a branch
258
258
  ```
259
259
 
260
- _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/branch/delete.ts)_
260
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/branch/delete.ts)_
261
261
 
262
262
  ## `eas branch:list`
263
263
 
@@ -277,7 +277,7 @@ DESCRIPTION
277
277
  list all branches
278
278
  ```
279
279
 
280
- _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/branch/list.ts)_
280
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/branch/list.ts)_
281
281
 
282
282
  ## `eas branch:rename`
283
283
 
@@ -297,7 +297,7 @@ DESCRIPTION
297
297
  rename a branch
298
298
  ```
299
299
 
300
- _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/branch/rename.ts)_
300
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/branch/rename.ts)_
301
301
 
302
302
  ## `eas branch:view [NAME]`
303
303
 
@@ -320,7 +320,7 @@ DESCRIPTION
320
320
  view a branch
321
321
  ```
322
322
 
323
- _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/branch/view.ts)_
323
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/branch/view.ts)_
324
324
 
325
325
  ## `eas build`
326
326
 
@@ -350,7 +350,7 @@ DESCRIPTION
350
350
  start a build
351
351
  ```
352
352
 
353
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/index.ts)_
353
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/index.ts)_
354
354
 
355
355
  ## `eas build:cancel [BUILD_ID]`
356
356
 
@@ -369,7 +369,7 @@ DESCRIPTION
369
369
  cancel a build
370
370
  ```
371
371
 
372
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/cancel.ts)_
372
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/cancel.ts)_
373
373
 
374
374
  ## `eas build:configure`
375
375
 
@@ -386,7 +386,7 @@ DESCRIPTION
386
386
  configure the project to support EAS Build
387
387
  ```
388
388
 
389
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/configure.ts)_
389
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/configure.ts)_
390
390
 
391
391
  ## `eas build:delete [BUILD_ID]`
392
392
 
@@ -405,7 +405,7 @@ DESCRIPTION
405
405
  delete a build
406
406
  ```
407
407
 
408
- _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/delete.ts)_
408
+ _See code: [src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/delete.ts)_
409
409
 
410
410
  ## `eas build:inspect`
411
411
 
@@ -440,7 +440,7 @@ DESCRIPTION
440
440
  inspect the state of the project at specific build stages, useful for troubleshooting
441
441
  ```
442
442
 
443
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/inspect.ts)_
443
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/inspect.ts)_
444
444
 
445
445
  ## `eas build:list`
446
446
 
@@ -452,7 +452,7 @@ USAGE
452
452
  new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
453
453
  [--channel <value>] [--appVersion <value>] [--appBuildVersion <value>] [--sdkVersion <value>] [--runtimeVersion
454
454
  <value>] [--appIdentifier <value>] [--buildProfile <value>] [--gitCommitHash <value>] [--offset <value>] [--limit
455
- <value>] [--json --non-interactive]
455
+ <value>] [--json --non-interactive] [--simulator]
456
456
 
457
457
  FLAGS
458
458
  --appBuildVersion=<value>
@@ -472,13 +472,16 @@ FLAGS
472
472
  --platform=(all|android|ios)
473
473
  --runtimeVersion=<value>
474
474
  --sdkVersion=<value>
475
+ --simulator Filter only iOS simulator builds. Can
476
+ only be used with --platform flag set to
477
+ "ios"
475
478
  --status=(new|in-queue|in-progress|pending-cancel|errored|finished|canceled)
476
479
 
477
480
  DESCRIPTION
478
481
  list all builds for your project
479
482
  ```
480
483
 
481
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/list.ts)_
484
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/list.ts)_
482
485
 
483
486
  ## `eas build:resign`
484
487
 
@@ -504,7 +507,7 @@ DESCRIPTION
504
507
  re-sign a build archive
505
508
  ```
506
509
 
507
- _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/resign.ts)_
510
+ _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/resign.ts)_
508
511
 
509
512
  ## `eas build:run`
510
513
 
@@ -530,7 +533,7 @@ DESCRIPTION
530
533
  run simulator/emulator builds from eas-cli
531
534
  ```
532
535
 
533
- _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/run.ts)_
536
+ _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/run.ts)_
534
537
 
535
538
  ## `eas build:submit`
536
539
 
@@ -579,7 +582,7 @@ DESCRIPTION
579
582
  get the latest version from EAS servers
580
583
  ```
581
584
 
582
- _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/version/get.ts)_
585
+ _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/version/get.ts)_
583
586
 
584
587
  ## `eas build:version:set`
585
588
 
@@ -598,7 +601,7 @@ DESCRIPTION
598
601
  update version of an app
599
602
  ```
600
603
 
601
- _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/version/set.ts)_
604
+ _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/version/set.ts)_
602
605
 
603
606
  ## `eas build:version:sync`
604
607
 
@@ -617,7 +620,7 @@ DESCRIPTION
617
620
  update a version in native code with a value stored on EAS servers
618
621
  ```
619
622
 
620
- _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/version/sync.ts)_
623
+ _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/version/sync.ts)_
621
624
 
622
625
  ## `eas build:view [BUILD_ID]`
623
626
 
@@ -634,7 +637,7 @@ DESCRIPTION
634
637
  view a build for your project
635
638
  ```
636
639
 
637
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/build/view.ts)_
640
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/build/view.ts)_
638
641
 
639
642
  ## `eas channel:create [NAME]`
640
643
 
@@ -655,7 +658,7 @@ DESCRIPTION
655
658
  create a channel
656
659
  ```
657
660
 
658
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/channel/create.ts)_
661
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/channel/create.ts)_
659
662
 
660
663
  ## `eas channel:edit [NAME]`
661
664
 
@@ -677,7 +680,7 @@ DESCRIPTION
677
680
  point a channel at a new branch
678
681
  ```
679
682
 
680
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/channel/edit.ts)_
683
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/channel/edit.ts)_
681
684
 
682
685
  ## `eas channel:list`
683
686
 
@@ -697,7 +700,7 @@ DESCRIPTION
697
700
  list all channels
698
701
  ```
699
702
 
700
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/channel/list.ts)_
703
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/channel/list.ts)_
701
704
 
702
705
  ## `eas channel:rollout [CHANNEL]`
703
706
 
@@ -729,7 +732,7 @@ DESCRIPTION
729
732
  Roll a new branch out on a channel incrementally.
730
733
  ```
731
734
 
732
- _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/channel/rollout.ts)_
735
+ _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/channel/rollout.ts)_
733
736
 
734
737
  ## `eas channel:view [NAME]`
735
738
 
@@ -752,7 +755,7 @@ DESCRIPTION
752
755
  view a channel
753
756
  ```
754
757
 
755
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/channel/view.ts)_
758
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/channel/view.ts)_
756
759
 
757
760
  ## `eas config`
758
761
 
@@ -773,7 +776,7 @@ DESCRIPTION
773
776
  display project configuration (app.json + eas.json)
774
777
  ```
775
778
 
776
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/config.ts)_
779
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/config.ts)_
777
780
 
778
781
  ## `eas credentials`
779
782
 
@@ -790,7 +793,7 @@ DESCRIPTION
790
793
  manage credentials
791
794
  ```
792
795
 
793
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/credentials.ts)_
796
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/credentials.ts)_
794
797
 
795
798
  ## `eas device:create`
796
799
 
@@ -804,7 +807,7 @@ DESCRIPTION
804
807
  register new Apple Devices to use for internal distribution
805
808
  ```
806
809
 
807
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/device/create.ts)_
810
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/device/create.ts)_
808
811
 
809
812
  ## `eas device:delete`
810
813
 
@@ -824,7 +827,7 @@ DESCRIPTION
824
827
  remove a registered device from your account
825
828
  ```
826
829
 
827
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/device/delete.ts)_
830
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/device/delete.ts)_
828
831
 
829
832
  ## `eas device:list`
830
833
 
@@ -845,7 +848,7 @@ DESCRIPTION
845
848
  list all registered devices for your account
846
849
  ```
847
850
 
848
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/device/list.ts)_
851
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/device/list.ts)_
849
852
 
850
853
  ## `eas device:rename`
851
854
 
@@ -866,7 +869,7 @@ DESCRIPTION
866
869
  rename a registered device
867
870
  ```
868
871
 
869
- _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/device/rename.ts)_
872
+ _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/device/rename.ts)_
870
873
 
871
874
  ## `eas device:view [UDID]`
872
875
 
@@ -880,7 +883,7 @@ DESCRIPTION
880
883
  view a device for your project
881
884
  ```
882
885
 
883
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/device/view.ts)_
886
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/device/view.ts)_
884
887
 
885
888
  ## `eas diagnostics`
886
889
 
@@ -894,7 +897,7 @@ DESCRIPTION
894
897
  display environment info
895
898
  ```
896
899
 
897
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/diagnostics.ts)_
900
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/diagnostics.ts)_
898
901
 
899
902
  ## `eas help [COMMAND]`
900
903
 
@@ -982,7 +985,7 @@ DESCRIPTION
982
985
  validate the local store configuration
983
986
  ```
984
987
 
985
- _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/metadata/lint.ts)_
988
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/metadata/lint.ts)_
986
989
 
987
990
  ## `eas metadata:pull`
988
991
 
@@ -999,7 +1002,7 @@ DESCRIPTION
999
1002
  generate the local store configuration from the app stores
1000
1003
  ```
1001
1004
 
1002
- _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/metadata/pull.ts)_
1005
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/metadata/pull.ts)_
1003
1006
 
1004
1007
  ## `eas metadata:push`
1005
1008
 
@@ -1016,7 +1019,7 @@ DESCRIPTION
1016
1019
  sync the local store configuration to the app stores
1017
1020
  ```
1018
1021
 
1019
- _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/metadata/push.ts)_
1022
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/metadata/push.ts)_
1020
1023
 
1021
1024
  ## `eas open`
1022
1025
 
@@ -1030,7 +1033,7 @@ DESCRIPTION
1030
1033
  open the project page in a web browser
1031
1034
  ```
1032
1035
 
1033
- _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/open.ts)_
1036
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/open.ts)_
1034
1037
 
1035
1038
  ## `eas project:info`
1036
1039
 
@@ -1044,7 +1047,7 @@ DESCRIPTION
1044
1047
  information about the current project
1045
1048
  ```
1046
1049
 
1047
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/project/info.ts)_
1050
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/project/info.ts)_
1048
1051
 
1049
1052
  ## `eas project:init`
1050
1053
 
@@ -1066,7 +1069,7 @@ ALIASES
1066
1069
  $ eas init
1067
1070
  ```
1068
1071
 
1069
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/project/init.ts)_
1072
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/project/init.ts)_
1070
1073
 
1071
1074
  ## `eas secret:create`
1072
1075
 
@@ -1089,7 +1092,7 @@ DESCRIPTION
1089
1092
  create an environment secret on the current project or owner account
1090
1093
  ```
1091
1094
 
1092
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/secret/create.ts)_
1095
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/secret/create.ts)_
1093
1096
 
1094
1097
  ## `eas secret:delete`
1095
1098
 
@@ -1107,7 +1110,7 @@ DESCRIPTION
1107
1110
  delete an environment secret by ID
1108
1111
  ```
1109
1112
 
1110
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/secret/delete.ts)_
1113
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/secret/delete.ts)_
1111
1114
 
1112
1115
  ## `eas secret:list`
1113
1116
 
@@ -1121,7 +1124,7 @@ DESCRIPTION
1121
1124
  list environment secrets available for your current app
1122
1125
  ```
1123
1126
 
1124
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/secret/list.ts)_
1127
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/secret/list.ts)_
1125
1128
 
1126
1129
  ## `eas secret:push`
1127
1130
 
@@ -1141,7 +1144,7 @@ DESCRIPTION
1141
1144
  read environment secrets from env file and store on the server
1142
1145
  ```
1143
1146
 
1144
- _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/secret/push.ts)_
1147
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/secret/push.ts)_
1145
1148
 
1146
1149
  ## `eas submit`
1147
1150
 
@@ -1171,7 +1174,7 @@ ALIASES
1171
1174
  $ eas build:submit
1172
1175
  ```
1173
1176
 
1174
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/submit.ts)_
1177
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/submit.ts)_
1175
1178
 
1176
1179
  ## `eas update`
1177
1180
 
@@ -1180,8 +1183,8 @@ publish an update group
1180
1183
  ```
1181
1184
  USAGE
1182
1185
  $ eas update [--branch <value>] [--channel <value>] [-m <value>] [--republish | --input-dir <value> |
1183
- --skip-bundler] [--group <value> | | ] [--clear-cache] [-p android|ios|all] [--dev] [--auto] [--private-key-path
1184
- <value>] [--json --non-interactive]
1186
+ --skip-bundler] [--group <value> | | ] [--clear-cache] [-p android|ios|all] [--auto] [--private-key-path <value>]
1187
+ [--json --non-interactive]
1185
1188
 
1186
1189
  FLAGS
1187
1190
  -m, --message=<value> A short message describing the update
@@ -1190,7 +1193,6 @@ FLAGS
1190
1193
  --branch=<value> Branch to publish the update group on
1191
1194
  --channel=<value> Channel that the published update should affect
1192
1195
  --clear-cache Clear the bundler cache before publishing
1193
- --dev Publish a development bundle
1194
1196
  --group=<value> Update group to republish (deprecated, see republish command)
1195
1197
  --input-dir=<value> [default: dist] Location of the bundle
1196
1198
  --json Enable JSON output, non-JSON messages will be printed to stderr.
@@ -1205,7 +1207,7 @@ DESCRIPTION
1205
1207
  publish an update group
1206
1208
  ```
1207
1209
 
1208
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/index.ts)_
1210
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/index.ts)_
1209
1211
 
1210
1212
  ## `eas update:configure`
1211
1213
 
@@ -1223,7 +1225,7 @@ DESCRIPTION
1223
1225
  configure the project to support EAS Update
1224
1226
  ```
1225
1227
 
1226
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/configure.ts)_
1228
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/configure.ts)_
1227
1229
 
1228
1230
  ## `eas update:delete GROUPID`
1229
1231
 
@@ -1244,7 +1246,7 @@ DESCRIPTION
1244
1246
  delete all the updates in an update group
1245
1247
  ```
1246
1248
 
1247
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/delete.ts)_
1249
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/delete.ts)_
1248
1250
 
1249
1251
  ## `eas update:list`
1250
1252
 
@@ -1266,7 +1268,7 @@ DESCRIPTION
1266
1268
  view the recent updates
1267
1269
  ```
1268
1270
 
1269
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/list.ts)_
1271
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/list.ts)_
1270
1272
 
1271
1273
  ## `eas update:republish`
1272
1274
 
@@ -1293,7 +1295,7 @@ DESCRIPTION
1293
1295
  roll back to an existing update
1294
1296
  ```
1295
1297
 
1296
- _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/republish.ts)_
1298
+ _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/republish.ts)_
1297
1299
 
1298
1300
  ## `eas update:roll-back-to-embedded`
1299
1301
 
@@ -1320,7 +1322,7 @@ DESCRIPTION
1320
1322
  roll back to the embedded update
1321
1323
  ```
1322
1324
 
1323
- _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/roll-back-to-embedded.ts)_
1325
+ _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/roll-back-to-embedded.ts)_
1324
1326
 
1325
1327
  ## `eas update:rollback`
1326
1328
 
@@ -1339,7 +1341,7 @@ DESCRIPTION
1339
1341
  roll back to an embedded update or an existing update
1340
1342
  ```
1341
1343
 
1342
- _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/rollback.ts)_
1344
+ _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/rollback.ts)_
1343
1345
 
1344
1346
  ## `eas update:view GROUPID`
1345
1347
 
@@ -1359,7 +1361,7 @@ DESCRIPTION
1359
1361
  update group details
1360
1362
  ```
1361
1363
 
1362
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/update/view.ts)_
1364
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/update/view.ts)_
1363
1365
 
1364
1366
  ## `eas webhook:create`
1365
1367
 
@@ -1380,7 +1382,7 @@ DESCRIPTION
1380
1382
  create a webhook
1381
1383
  ```
1382
1384
 
1383
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/webhook/create.ts)_
1385
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/webhook/create.ts)_
1384
1386
 
1385
1387
  ## `eas webhook:delete [ID]`
1386
1388
 
@@ -1400,7 +1402,7 @@ DESCRIPTION
1400
1402
  delete a webhook
1401
1403
  ```
1402
1404
 
1403
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/webhook/delete.ts)_
1405
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/webhook/delete.ts)_
1404
1406
 
1405
1407
  ## `eas webhook:list`
1406
1408
 
@@ -1418,7 +1420,7 @@ DESCRIPTION
1418
1420
  list webhooks
1419
1421
  ```
1420
1422
 
1421
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/webhook/list.ts)_
1423
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/webhook/list.ts)_
1422
1424
 
1423
1425
  ## `eas webhook:update`
1424
1426
 
@@ -1440,7 +1442,7 @@ DESCRIPTION
1440
1442
  update a webhook
1441
1443
  ```
1442
1444
 
1443
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/webhook/update.ts)_
1445
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/webhook/update.ts)_
1444
1446
 
1445
1447
  ## `eas webhook:view ID`
1446
1448
 
@@ -1457,7 +1459,7 @@ DESCRIPTION
1457
1459
  view a webhook
1458
1460
  ```
1459
1461
 
1460
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.1.2/src/commands/webhook/view.ts)_
1462
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.2.0/src/commands/webhook/view.ts)_
1461
1463
 
1462
1464
  ## `eas whoami`
1463
1465
 
@@ -9,6 +9,7 @@ const resolve_from_1 = tslib_1.__importDefault(require("resolve-from"));
9
9
  const version_1 = require("./android/version");
10
10
  const version_2 = require("./ios/version");
11
11
  const local_1 = require("./local");
12
+ const types_1 = require("./types");
12
13
  const log_1 = tslib_1.__importDefault(require("../log"));
13
14
  const projectUtils_1 = require("../project/projectUtils");
14
15
  const UpdatesModule_1 = require("../update/android/UpdatesModule");
@@ -17,9 +18,7 @@ const easCli_1 = require("../utils/easCli");
17
18
  async function collectMetadataAsync(ctx) {
18
19
  var _a, _b, _c, _d, _e;
19
20
  const channelOrReleaseChannel = await resolveChannelOrReleaseChannelAsync(ctx);
20
- const distribution = (_a = ('simulator' in ctx.buildProfile && ctx.buildProfile.simulator
21
- ? 'simulator'
22
- : ctx.buildProfile.distribution)) !== null && _a !== void 0 ? _a : 'store';
21
+ const distribution = (_a = ctx.buildProfile.distribution) !== null && _a !== void 0 ? _a : types_1.BuildDistributionType.STORE;
23
22
  const metadata = {
24
23
  trackingContext: ctx.analyticsEventProperties,
25
24
  ...(await maybeResolveVersionsAsync(ctx)),
@@ -51,6 +50,7 @@ async function collectMetadataAsync(ctx) {
51
50
  requiredPackageManager: (_e = ctx.requiredPackageManager) !== null && _e !== void 0 ? _e : undefined,
52
51
  selectedImage: ctx.buildProfile.image,
53
52
  customNodeVersion: ctx.buildProfile.node,
53
+ simulator: 'simulator' in ctx.buildProfile && ctx.buildProfile.simulator,
54
54
  };
55
55
  return (0, eas_build_job_1.sanitizeMetadata)(metadata);
56
56
  }
@@ -10,5 +10,6 @@ export declare enum BuildStatus {
10
10
  export declare enum BuildDistributionType {
11
11
  STORE = "store",
12
12
  INTERNAL = "internal",
13
+ /** @deprecated Use simulator flag instead */
13
14
  SIMULATOR = "simulator"
14
15
  }
@@ -15,5 +15,6 @@ var BuildDistributionType;
15
15
  (function (BuildDistributionType) {
16
16
  BuildDistributionType["STORE"] = "store";
17
17
  BuildDistributionType["INTERNAL"] = "internal";
18
+ /** @deprecated Use simulator flag instead */
18
19
  BuildDistributionType["SIMULATOR"] = "simulator";
19
20
  })(BuildDistributionType || (exports.BuildDistributionType = BuildDistributionType = {}));
@@ -4,6 +4,7 @@ import { RequestedPlatform } from '../../platform';
4
4
  export default class BuildList extends EasCommand {
5
5
  static description: string;
6
6
  static flags: {
7
+ simulator: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
7
8
  json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
8
9
  'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
10
  limit: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined>;
@@ -9,6 +9,7 @@ const EasCommand_1 = tslib_1.__importDefault(require("../../commandUtils/EasComm
9
9
  const flags_1 = require("../../commandUtils/flags");
10
10
  const pagination_1 = require("../../commandUtils/pagination");
11
11
  const generated_1 = require("../../graphql/generated");
12
+ const log_1 = tslib_1.__importDefault(require("../../log"));
12
13
  const platform_1 = require("../../platform");
13
14
  const projectUtils_1 = require("../../project/projectUtils");
14
15
  const buildDistribution_1 = require("../../utils/buildDistribution");
@@ -18,6 +19,13 @@ class BuildList extends EasCommand_1.default {
18
19
  const { flags } = await this.parse(_a);
19
20
  const paginatedQueryOptions = (0, pagination_1.getPaginatedQueryOptions)(flags);
20
21
  const { json: jsonFlag, platform: requestedPlatform, status: buildStatus, distribution: buildDistribution, 'non-interactive': nonInteractive, } = flags;
22
+ if (buildDistribution === types_1.BuildDistributionType.SIMULATOR) {
23
+ log_1.default.warn(`Using --distribution flag with "simulator" value is deprecated - use --simulator flag instead`);
24
+ }
25
+ if (flags.simulator && requestedPlatform !== platform_1.RequestedPlatform.Ios) {
26
+ log_1.default.error(`The --simulator flag is only usable with --platform flag set to "ios", as it is used to filter specifically iOS simulator builds`);
27
+ process.exit(1);
28
+ }
21
29
  const { privateProjectConfig: { projectId }, loggedIn: { graphqlClient }, } = await this.getContextAsync(_a, {
22
30
  nonInteractive,
23
31
  });
@@ -43,6 +51,7 @@ class BuildList extends EasCommand_1.default {
43
51
  appIdentifier: flags.appIdentifier,
44
52
  buildProfile: flags.buildProfile,
45
53
  gitCommitHash: flags.gitCommitHash,
54
+ simulator: flags.simulator,
46
55
  },
47
56
  paginatedQueryOptions,
48
57
  });
@@ -83,6 +92,9 @@ BuildList.flags = {
83
92
  ...pagination_1.EasPaginatedQueryFlags,
84
93
  limit: (0, pagination_1.getLimitFlagWithCustomValues)({ defaultTo: 10, limit: queries_1.BUILDS_LIMIT }),
85
94
  ...flags_1.EasNonInteractiveAndJsonFlags,
95
+ simulator: core_1.Flags.boolean({
96
+ description: 'Filter only iOS simulator builds. Can only be used with --platform flag set to "ios"',
97
+ }),
86
98
  };
87
99
  BuildList.contextDefinition = {
88
100
  ..._a.ContextOptions.ProjectConfig,