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/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "7.1.2",
4
+ "version": "7.2.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
8
8
  },
9
9
  "bugs": "https://github.com/expo/eas-cli/issues",
10
10
  "dependencies": {
11
- "@expo/apple-utils": "1.3.2",
11
+ "@expo/apple-utils": "1.4.0",
12
12
  "@expo/code-signing-certificates": "0.0.5",
13
13
  "@expo/config": "8.5.4",
14
14
  "@expo/config-plugins": "7.8.4",
15
15
  "@expo/config-types": "50.0.0",
16
- "@expo/eas-build-job": "1.0.59",
17
- "@expo/eas-json": "7.1.2",
16
+ "@expo/eas-build-job": "1.0.61",
17
+ "@expo/eas-json": "7.1.3",
18
18
  "@expo/json-file": "8.2.37",
19
19
  "@expo/multipart-body-parser": "1.1.0",
20
20
  "@expo/osascript": "2.0.33",
@@ -27,7 +27,7 @@
27
27
  "@expo/results": "1.0.0",
28
28
  "@expo/rudder-sdk-node": "1.1.1",
29
29
  "@expo/spawn-async": "1.7.0",
30
- "@expo/steps": "1.0.51",
30
+ "@expo/steps": "1.0.67",
31
31
  "@expo/timeago.js": "1.0.0",
32
32
  "@oclif/core": "^1.26.2",
33
33
  "@oclif/plugin-autocomplete": "^2.3.10",
@@ -222,5 +222,5 @@
222
222
  "node": "20.11.0",
223
223
  "yarn": "1.22.21"
224
224
  },
225
- "gitHead": "e8e5eb622cf6a433d62b03754d0db5f1e688de9c"
225
+ "gitHead": "39dc6299d2278b71a0c27cac596fe42b3ab7049e"
226
226
  }