eas-cli 7.1.3 → 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 (31) hide show
  1. package/README.md +60 -61
  2. package/build/commands/update/index.d.ts +0 -1
  3. package/build/commands/update/index.js +3 -8
  4. package/build/credentials/android/actions/{AssignGoogleServiceAccountKey.d.ts → AssignGoogleServiceAccountKeyForFcmV1.d.ts} +1 -1
  5. package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.js +19 -0
  6. package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.d.ts +8 -0
  7. package/build/credentials/android/actions/{AssignGoogleServiceAccountKey.js → AssignGoogleServiceAccountKeyForSubmissions.js} +3 -3
  8. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +1 -1
  9. package/build/credentials/android/actions/{SetUpGoogleServiceAccountKey.d.ts → SetUpGoogleServiceAccountKeyForFcmV1.d.ts} +1 -1
  10. package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.js +59 -0
  11. package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.d.ts +10 -0
  12. package/build/credentials/android/actions/{SetUpGoogleServiceAccountKey.js → SetUpGoogleServiceAccountKeyForSubmissions.js} +5 -5
  13. package/build/credentials/android/api/GraphqlClient.d.ts +2 -1
  14. package/build/credentials/android/api/GraphqlClient.js +5 -1
  15. package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.d.ts +1 -0
  16. package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.js +26 -0
  17. package/build/credentials/android/utils/googleServiceAccountKey.js +1 -1
  18. package/build/credentials/android/utils/printCredentials.js +24 -2
  19. package/build/credentials/manager/Actions.d.ts +22 -16
  20. package/build/credentials/manager/Actions.js +22 -16
  21. package/build/credentials/manager/AndroidActions.d.ts +3 -1
  22. package/build/credentials/manager/AndroidActions.js +46 -12
  23. package/build/credentials/manager/ManageAndroid.js +30 -12
  24. package/build/graphql/generated.d.ts +160 -0
  25. package/build/graphql/types/credentials/AndroidAppCredentials.js +4 -0
  26. package/build/project/customBuildConfig.js +1 -1
  27. package/build/project/publish.d.ts +1 -2
  28. package/build/project/publish.js +1 -4
  29. package/build/submit/android/ServiceAccountSource.js +2 -2
  30. package/oclif.manifest.json +1 -7
  31. package/package.json +4 -4
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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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
 
@@ -481,7 +481,7 @@ DESCRIPTION
481
481
  list all builds for your project
482
482
  ```
483
483
 
484
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
485
485
 
486
486
  ## `eas build:resign`
487
487
 
@@ -507,7 +507,7 @@ DESCRIPTION
507
507
  re-sign a build archive
508
508
  ```
509
509
 
510
- _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
511
511
 
512
512
  ## `eas build:run`
513
513
 
@@ -533,7 +533,7 @@ DESCRIPTION
533
533
  run simulator/emulator builds from eas-cli
534
534
  ```
535
535
 
536
- _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
537
537
 
538
538
  ## `eas build:submit`
539
539
 
@@ -582,7 +582,7 @@ DESCRIPTION
582
582
  get the latest version from EAS servers
583
583
  ```
584
584
 
585
- _See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
586
586
 
587
587
  ## `eas build:version:set`
588
588
 
@@ -601,7 +601,7 @@ DESCRIPTION
601
601
  update version of an app
602
602
  ```
603
603
 
604
- _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
605
605
 
606
606
  ## `eas build:version:sync`
607
607
 
@@ -620,7 +620,7 @@ DESCRIPTION
620
620
  update a version in native code with a value stored on EAS servers
621
621
  ```
622
622
 
623
- _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
624
624
 
625
625
  ## `eas build:view [BUILD_ID]`
626
626
 
@@ -637,7 +637,7 @@ DESCRIPTION
637
637
  view a build for your project
638
638
  ```
639
639
 
640
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
641
641
 
642
642
  ## `eas channel:create [NAME]`
643
643
 
@@ -658,7 +658,7 @@ DESCRIPTION
658
658
  create a channel
659
659
  ```
660
660
 
661
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
662
662
 
663
663
  ## `eas channel:edit [NAME]`
664
664
 
@@ -680,7 +680,7 @@ DESCRIPTION
680
680
  point a channel at a new branch
681
681
  ```
682
682
 
683
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
684
684
 
685
685
  ## `eas channel:list`
686
686
 
@@ -700,7 +700,7 @@ DESCRIPTION
700
700
  list all channels
701
701
  ```
702
702
 
703
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
704
704
 
705
705
  ## `eas channel:rollout [CHANNEL]`
706
706
 
@@ -732,7 +732,7 @@ DESCRIPTION
732
732
  Roll a new branch out on a channel incrementally.
733
733
  ```
734
734
 
735
- _See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
736
736
 
737
737
  ## `eas channel:view [NAME]`
738
738
 
@@ -755,7 +755,7 @@ DESCRIPTION
755
755
  view a channel
756
756
  ```
757
757
 
758
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
759
759
 
760
760
  ## `eas config`
761
761
 
@@ -776,7 +776,7 @@ DESCRIPTION
776
776
  display project configuration (app.json + eas.json)
777
777
  ```
778
778
 
779
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
780
780
 
781
781
  ## `eas credentials`
782
782
 
@@ -793,7 +793,7 @@ DESCRIPTION
793
793
  manage credentials
794
794
  ```
795
795
 
796
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
797
797
 
798
798
  ## `eas device:create`
799
799
 
@@ -807,7 +807,7 @@ DESCRIPTION
807
807
  register new Apple Devices to use for internal distribution
808
808
  ```
809
809
 
810
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
811
811
 
812
812
  ## `eas device:delete`
813
813
 
@@ -827,7 +827,7 @@ DESCRIPTION
827
827
  remove a registered device from your account
828
828
  ```
829
829
 
830
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
831
831
 
832
832
  ## `eas device:list`
833
833
 
@@ -848,7 +848,7 @@ DESCRIPTION
848
848
  list all registered devices for your account
849
849
  ```
850
850
 
851
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
852
852
 
853
853
  ## `eas device:rename`
854
854
 
@@ -869,7 +869,7 @@ DESCRIPTION
869
869
  rename a registered device
870
870
  ```
871
871
 
872
- _See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
873
873
 
874
874
  ## `eas device:view [UDID]`
875
875
 
@@ -883,7 +883,7 @@ DESCRIPTION
883
883
  view a device for your project
884
884
  ```
885
885
 
886
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
887
887
 
888
888
  ## `eas diagnostics`
889
889
 
@@ -897,7 +897,7 @@ DESCRIPTION
897
897
  display environment info
898
898
  ```
899
899
 
900
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
901
901
 
902
902
  ## `eas help [COMMAND]`
903
903
 
@@ -985,7 +985,7 @@ DESCRIPTION
985
985
  validate the local store configuration
986
986
  ```
987
987
 
988
- _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
989
989
 
990
990
  ## `eas metadata:pull`
991
991
 
@@ -1002,7 +1002,7 @@ DESCRIPTION
1002
1002
  generate the local store configuration from the app stores
1003
1003
  ```
1004
1004
 
1005
- _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1006
1006
 
1007
1007
  ## `eas metadata:push`
1008
1008
 
@@ -1019,7 +1019,7 @@ DESCRIPTION
1019
1019
  sync the local store configuration to the app stores
1020
1020
  ```
1021
1021
 
1022
- _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1023
1023
 
1024
1024
  ## `eas open`
1025
1025
 
@@ -1033,7 +1033,7 @@ DESCRIPTION
1033
1033
  open the project page in a web browser
1034
1034
  ```
1035
1035
 
1036
- _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1037
1037
 
1038
1038
  ## `eas project:info`
1039
1039
 
@@ -1047,7 +1047,7 @@ DESCRIPTION
1047
1047
  information about the current project
1048
1048
  ```
1049
1049
 
1050
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1051
1051
 
1052
1052
  ## `eas project:init`
1053
1053
 
@@ -1069,7 +1069,7 @@ ALIASES
1069
1069
  $ eas init
1070
1070
  ```
1071
1071
 
1072
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1073
1073
 
1074
1074
  ## `eas secret:create`
1075
1075
 
@@ -1092,7 +1092,7 @@ DESCRIPTION
1092
1092
  create an environment secret on the current project or owner account
1093
1093
  ```
1094
1094
 
1095
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1096
1096
 
1097
1097
  ## `eas secret:delete`
1098
1098
 
@@ -1110,7 +1110,7 @@ DESCRIPTION
1110
1110
  delete an environment secret by ID
1111
1111
  ```
1112
1112
 
1113
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1114
1114
 
1115
1115
  ## `eas secret:list`
1116
1116
 
@@ -1124,7 +1124,7 @@ DESCRIPTION
1124
1124
  list environment secrets available for your current app
1125
1125
  ```
1126
1126
 
1127
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1128
1128
 
1129
1129
  ## `eas secret:push`
1130
1130
 
@@ -1144,7 +1144,7 @@ DESCRIPTION
1144
1144
  read environment secrets from env file and store on the server
1145
1145
  ```
1146
1146
 
1147
- _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1148
1148
 
1149
1149
  ## `eas submit`
1150
1150
 
@@ -1174,7 +1174,7 @@ ALIASES
1174
1174
  $ eas build:submit
1175
1175
  ```
1176
1176
 
1177
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1178
1178
 
1179
1179
  ## `eas update`
1180
1180
 
@@ -1183,8 +1183,8 @@ publish an update group
1183
1183
  ```
1184
1184
  USAGE
1185
1185
  $ eas update [--branch <value>] [--channel <value>] [-m <value>] [--republish | --input-dir <value> |
1186
- --skip-bundler] [--group <value> | | ] [--clear-cache] [-p android|ios|all] [--dev] [--auto] [--private-key-path
1187
- <value>] [--json --non-interactive]
1186
+ --skip-bundler] [--group <value> | | ] [--clear-cache] [-p android|ios|all] [--auto] [--private-key-path <value>]
1187
+ [--json --non-interactive]
1188
1188
 
1189
1189
  FLAGS
1190
1190
  -m, --message=<value> A short message describing the update
@@ -1193,7 +1193,6 @@ FLAGS
1193
1193
  --branch=<value> Branch to publish the update group on
1194
1194
  --channel=<value> Channel that the published update should affect
1195
1195
  --clear-cache Clear the bundler cache before publishing
1196
- --dev Publish a development bundle
1197
1196
  --group=<value> Update group to republish (deprecated, see republish command)
1198
1197
  --input-dir=<value> [default: dist] Location of the bundle
1199
1198
  --json Enable JSON output, non-JSON messages will be printed to stderr.
@@ -1208,7 +1207,7 @@ DESCRIPTION
1208
1207
  publish an update group
1209
1208
  ```
1210
1209
 
1211
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1212
1211
 
1213
1212
  ## `eas update:configure`
1214
1213
 
@@ -1226,7 +1225,7 @@ DESCRIPTION
1226
1225
  configure the project to support EAS Update
1227
1226
  ```
1228
1227
 
1229
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1230
1229
 
1231
1230
  ## `eas update:delete GROUPID`
1232
1231
 
@@ -1247,7 +1246,7 @@ DESCRIPTION
1247
1246
  delete all the updates in an update group
1248
1247
  ```
1249
1248
 
1250
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1251
1250
 
1252
1251
  ## `eas update:list`
1253
1252
 
@@ -1269,7 +1268,7 @@ DESCRIPTION
1269
1268
  view the recent updates
1270
1269
  ```
1271
1270
 
1272
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1273
1272
 
1274
1273
  ## `eas update:republish`
1275
1274
 
@@ -1296,7 +1295,7 @@ DESCRIPTION
1296
1295
  roll back to an existing update
1297
1296
  ```
1298
1297
 
1299
- _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1300
1299
 
1301
1300
  ## `eas update:roll-back-to-embedded`
1302
1301
 
@@ -1323,7 +1322,7 @@ DESCRIPTION
1323
1322
  roll back to the embedded update
1324
1323
  ```
1325
1324
 
1326
- _See code: [src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1327
1326
 
1328
1327
  ## `eas update:rollback`
1329
1328
 
@@ -1342,7 +1341,7 @@ DESCRIPTION
1342
1341
  roll back to an embedded update or an existing update
1343
1342
  ```
1344
1343
 
1345
- _See code: [src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1346
1345
 
1347
1346
  ## `eas update:view GROUPID`
1348
1347
 
@@ -1362,7 +1361,7 @@ DESCRIPTION
1362
1361
  update group details
1363
1362
  ```
1364
1363
 
1365
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1366
1365
 
1367
1366
  ## `eas webhook:create`
1368
1367
 
@@ -1383,7 +1382,7 @@ DESCRIPTION
1383
1382
  create a webhook
1384
1383
  ```
1385
1384
 
1386
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1387
1386
 
1388
1387
  ## `eas webhook:delete [ID]`
1389
1388
 
@@ -1403,7 +1402,7 @@ DESCRIPTION
1403
1402
  delete a webhook
1404
1403
  ```
1405
1404
 
1406
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1407
1406
 
1408
1407
  ## `eas webhook:list`
1409
1408
 
@@ -1421,7 +1420,7 @@ DESCRIPTION
1421
1420
  list webhooks
1422
1421
  ```
1423
1422
 
1424
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1425
1424
 
1426
1425
  ## `eas webhook:update`
1427
1426
 
@@ -1443,7 +1442,7 @@ DESCRIPTION
1443
1442
  update a webhook
1444
1443
  ```
1445
1444
 
1446
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1447
1446
 
1448
1447
  ## `eas webhook:view ID`
1449
1448
 
@@ -1460,7 +1459,7 @@ DESCRIPTION
1460
1459
  view a webhook
1461
1460
  ```
1462
1461
 
1463
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.1.3/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)_
1464
1463
 
1465
1464
  ## `eas whoami`
1466
1465
 
@@ -13,7 +13,6 @@ export default class UpdatePublish extends EasCommand {
13
13
  'skip-bundler': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
14
14
  'clear-cache': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
15
15
  platform: import("@oclif/core/lib/interfaces").OptionFlag<string>;
16
- dev: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
17
16
  auto: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
18
17
  'private-key-path': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
19
18
  };
@@ -31,7 +31,7 @@ class UpdatePublish extends EasCommand_1.default {
31
31
  async runAsync() {
32
32
  const { flags: rawFlags } = await this.parse(_a);
33
33
  const paginatedQueryOptions = (0, pagination_1.getPaginatedQueryOptions)(rawFlags);
34
- const { auto: autoFlag, platform: platformFlag, channelName: channelNameArg, dev, updateMessage: updateMessageArg, inputDir, skipBundler, clearCache, privateKeyPath, json: jsonFlag, nonInteractive, branchName: branchNameArg, } = this.sanitizeFlags(rawFlags);
34
+ const { auto: autoFlag, platform: platformFlag, channelName: channelNameArg, updateMessage: updateMessageArg, inputDir, skipBundler, clearCache, privateKeyPath, json: jsonFlag, nonInteractive, branchName: branchNameArg, } = this.sanitizeFlags(rawFlags);
35
35
  const { getDynamicPublicProjectConfigAsync, getDynamicPrivateProjectConfigAsync, loggedIn: { graphqlClient }, vcsClient, } = await this.getContextAsync(_a, {
36
36
  nonInteractive,
37
37
  });
@@ -72,7 +72,7 @@ class UpdatePublish extends EasCommand_1.default {
72
72
  if (!skipBundler) {
73
73
  const bundleSpinner = (0, ora_1.ora)().start('Exporting...');
74
74
  try {
75
- await (0, publish_1.buildBundlesAsync)({ projectDir, inputDir, dev, exp, platformFlag, clearCache });
75
+ await (0, publish_1.buildBundlesAsync)({ projectDir, inputDir, exp, platformFlag, clearCache });
76
76
  bundleSpinner.succeed('Exported bundle(s)');
77
77
  }
78
78
  catch (e) {
@@ -299,7 +299,7 @@ class UpdatePublish extends EasCommand_1.default {
299
299
  sanitizeFlags(flags) {
300
300
  var _b, _c;
301
301
  const nonInteractive = (_b = flags['non-interactive']) !== null && _b !== void 0 ? _b : false;
302
- const { auto, branch: branchName, channel: channelName, dev, message: updateMessage } = flags;
302
+ const { auto, branch: branchName, channel: channelName, message: updateMessage } = flags;
303
303
  if (nonInteractive && !auto && !(updateMessage && (branchName || channelName))) {
304
304
  core_1.Errors.error('--branch and --message, or --channel and --message are required when updating in non-interactive mode unless --auto is specified', { exit: 1 });
305
305
  }
@@ -319,7 +319,6 @@ class UpdatePublish extends EasCommand_1.default {
319
319
  auto,
320
320
  branchName,
321
321
  channelName,
322
- dev,
323
322
  updateMessage,
324
323
  inputDir: flags['input-dir'],
325
324
  skipBundler: flags['skip-bundler'],
@@ -378,10 +377,6 @@ UpdatePublish.flags = {
378
377
  default: 'all',
379
378
  required: false,
380
379
  }),
381
- dev: core_1.Flags.boolean({
382
- description: 'Publish a development bundle',
383
- default: false,
384
- }),
385
380
  auto: core_1.Flags.boolean({
386
381
  description: 'Use the current git branch and commit message for the EAS branch and update message',
387
382
  default: false,
@@ -1,7 +1,7 @@
1
1
  import { CommonAndroidAppCredentialsFragment, GoogleServiceAccountKeyFragment } from '../../../graphql/generated';
2
2
  import { CredentialsContext } from '../../context';
3
3
  import { AppLookupParams } from '../api/GraphqlClient';
4
- export declare class AssignGoogleServiceAccountKey {
4
+ export declare class AssignGoogleServiceAccountKeyForFcmV1 {
5
5
  private app;
6
6
  constructor(app: AppLookupParams);
7
7
  runAsync(ctx: CredentialsContext, googleServiceAccountKey: GoogleServiceAccountKeyFragment): Promise<CommonAndroidAppCredentialsFragment>;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AssignGoogleServiceAccountKeyForFcmV1 = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const log_1 = tslib_1.__importDefault(require("../../../log"));
6
+ class AssignGoogleServiceAccountKeyForFcmV1 {
7
+ constructor(app) {
8
+ this.app = app;
9
+ }
10
+ async runAsync(ctx, googleServiceAccountKey) {
11
+ const appCredentials = await ctx.android.createOrGetExistingAndroidAppCredentialsWithBuildCredentialsAsync(ctx.graphqlClient, this.app);
12
+ const updatedAppCredentials = await ctx.android.updateAndroidAppCredentialsAsync(ctx.graphqlClient, appCredentials, {
13
+ googleServiceAccountKeyForFcmV1Id: googleServiceAccountKey.id,
14
+ });
15
+ log_1.default.succeed(`Google Service Account Key assigned to ${this.app.androidApplicationIdentifier} for FCM V1`);
16
+ return updatedAppCredentials;
17
+ }
18
+ }
19
+ exports.AssignGoogleServiceAccountKeyForFcmV1 = AssignGoogleServiceAccountKeyForFcmV1;
@@ -0,0 +1,8 @@
1
+ import { CommonAndroidAppCredentialsFragment, GoogleServiceAccountKeyFragment } from '../../../graphql/generated';
2
+ import { CredentialsContext } from '../../context';
3
+ import { AppLookupParams } from '../api/GraphqlClient';
4
+ export declare class AssignGoogleServiceAccountKeyForSubmissions {
5
+ private app;
6
+ constructor(app: AppLookupParams);
7
+ runAsync(ctx: CredentialsContext, googleServiceAccountKey: GoogleServiceAccountKeyFragment): Promise<CommonAndroidAppCredentialsFragment>;
8
+ }
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AssignGoogleServiceAccountKey = void 0;
3
+ exports.AssignGoogleServiceAccountKeyForSubmissions = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const log_1 = tslib_1.__importDefault(require("../../../log"));
6
- class AssignGoogleServiceAccountKey {
6
+ class AssignGoogleServiceAccountKeyForSubmissions {
7
7
  constructor(app) {
8
8
  this.app = app;
9
9
  }
@@ -16,4 +16,4 @@ class AssignGoogleServiceAccountKey {
16
16
  return updatedAppCredentials;
17
17
  }
18
18
  }
19
- exports.AssignGoogleServiceAccountKey = AssignGoogleServiceAccountKey;
19
+ exports.AssignGoogleServiceAccountKeyForSubmissions = AssignGoogleServiceAccountKeyForSubmissions;
@@ -35,7 +35,7 @@ class CreateGoogleServiceAccountKey {
35
35
  if (detectedPath) {
36
36
  return detectedPath;
37
37
  }
38
- log_1.default.log(`${chalk_1.default.bold('A Google Service Account JSON key is required to upload your app to Google Play Store')}.\n` +
38
+ log_1.default.log(`${chalk_1.default.bold('A Google Service Account JSON key is required for uploading your app to Google Play Store, and for sending Android Notifications via FCM V1.')}.\n` +
39
39
  `If you're not sure what this is or how to create one, ${(0, log_1.learnMore)('https://expo.fyi/creating-google-service-account', { learnMoreMessage: 'learn more' })}`);
40
40
  const { filePath } = await (0, prompts_1.promptAsync)({
41
41
  name: 'filePath',
@@ -1,7 +1,7 @@
1
1
  import { CommonAndroidAppCredentialsFragment } from '../../../graphql/generated';
2
2
  import { CredentialsContext } from '../../context';
3
3
  import { AppLookupParams } from '../api/GraphqlClient';
4
- export declare class SetUpGoogleServiceAccountKey {
4
+ export declare class SetUpGoogleServiceAccountKeyForFcmV1 {
5
5
  private app;
6
6
  constructor(app: AppLookupParams);
7
7
  runAsync(ctx: CredentialsContext): Promise<CommonAndroidAppCredentialsFragment>;