eas-cli 0.55.0 → 0.57.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 (78) hide show
  1. package/README.md +58 -49
  2. package/build/branch/queries.d.ts +5 -0
  3. package/build/branch/queries.js +87 -0
  4. package/build/build/android/version.d.ts +5 -0
  5. package/build/build/android/version.js +16 -9
  6. package/build/build/build.js +7 -2
  7. package/build/build/context.d.ts +3 -3
  8. package/build/build/createContext.d.ts +4 -2
  9. package/build/build/createContext.js +3 -1
  10. package/build/build/ios/build.js +1 -16
  11. package/build/build/ios/syncProjectConfiguration.d.ts +3 -3
  12. package/build/build/ios/syncProjectConfiguration.js +2 -2
  13. package/build/build/ios/version.d.ts +10 -3
  14. package/build/build/ios/version.js +57 -28
  15. package/build/build/metadata.d.ts +1 -0
  16. package/build/build/metadata.js +15 -5
  17. package/build/build/runBuildAndSubmit.d.ts +1 -0
  18. package/build/build/runBuildAndSubmit.js +8 -4
  19. package/build/commandUtils/pagination.d.ts +13 -0
  20. package/build/commandUtils/pagination.js +42 -0
  21. package/build/commands/branch/list.d.ts +3 -4
  22. package/build/commands/branch/list.js +6 -69
  23. package/build/commands/branch/view.d.ts +3 -0
  24. package/build/commands/branch/view.js +15 -63
  25. package/build/commands/build/index.d.ts +1 -0
  26. package/build/commands/build/index.js +9 -0
  27. package/build/commands/build/version/set.d.ts +10 -0
  28. package/build/commands/build/version/set.js +82 -0
  29. package/build/commands/build/version/sync.d.ts +12 -0
  30. package/build/commands/build/version/sync.js +124 -0
  31. package/build/commands/update/index.d.ts +2 -2
  32. package/build/commands/update/index.js +13 -5
  33. package/build/commands/update/list.js +13 -18
  34. package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +2 -2
  35. package/build/credentials/ios/types.d.ts +2 -0
  36. package/build/devices/actions/create/action.d.ts +5 -2
  37. package/build/devices/actions/create/action.js +12 -2
  38. package/build/devices/actions/create/developerPortalMethod.d.ts +6 -0
  39. package/build/devices/actions/create/developerPortalMethod.js +90 -0
  40. package/build/devices/manager.js +4 -4
  41. package/build/graphql/generated.d.ts +271 -59
  42. package/build/graphql/generated.js +8 -1
  43. package/build/graphql/mutations/AppVersionMutation.d.ts +11 -0
  44. package/build/graphql/mutations/AppVersionMutation.js +28 -0
  45. package/build/graphql/queries/AppVersionQuery.d.ts +4 -0
  46. package/build/graphql/queries/AppVersionQuery.js +37 -0
  47. package/build/graphql/queries/BranchQuery.d.ts +2 -1
  48. package/build/graphql/queries/BranchQuery.js +26 -0
  49. package/build/graphql/queries/UpdateQuery.d.ts +6 -8
  50. package/build/graphql/queries/UpdateQuery.js +27 -23
  51. package/build/platform.d.ts +1 -0
  52. package/build/platform.js +17 -1
  53. package/build/project/android/applicationId.js +2 -2
  54. package/build/project/android/versions.d.ts +3 -0
  55. package/build/project/android/versions.js +23 -0
  56. package/build/project/applicationIdentifier.d.ts +4 -0
  57. package/build/project/applicationIdentifier.js +37 -0
  58. package/build/project/ios/bundleIdentifier.js +2 -2
  59. package/build/project/ios/target.js +14 -1
  60. package/build/project/ios/versions.d.ts +3 -0
  61. package/build/project/ios/versions.js +17 -0
  62. package/build/project/publish.d.ts +1 -2
  63. package/build/project/publish.js +8 -12
  64. package/build/project/remoteVersionSource.d.ts +6 -0
  65. package/build/project/remoteVersionSource.js +52 -0
  66. package/build/submit/utils/files.js +1 -1
  67. package/build/update/queries.d.ts +3 -0
  68. package/build/update/queries.js +72 -0
  69. package/build/update/utils.d.ts +14 -0
  70. package/build/update/utils.js +26 -9
  71. package/build/uploads.d.ts +4 -3
  72. package/build/uploads.js +11 -9
  73. package/build/utils/expodash/chunk.d.ts +1 -0
  74. package/build/utils/expodash/chunk.js +16 -0
  75. package/build/utils/queries.d.ts +25 -0
  76. package/build/utils/queries.js +67 -0
  77. package/oclif.manifest.json +1 -1
  78. package/package.json +10 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "0.55.0",
4
+ "version": "0.57.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -13,8 +13,8 @@
13
13
  "@expo/config": "6.0.23",
14
14
  "@expo/config-plugins": "4.1.4",
15
15
  "@expo/config-types": "45.0.0",
16
- "@expo/eas-build-job": "0.2.77",
17
- "@expo/eas-json": "0.55.0",
16
+ "@expo/eas-build-job": "0.2.84",
17
+ "@expo/eas-json": "0.57.0",
18
18
  "@expo/json-file": "8.2.36",
19
19
  "@expo/multipart-body-parser": "1.1.0",
20
20
  "@expo/pkcs12": "0.0.8",
@@ -103,6 +103,7 @@
103
103
  "nock": "13.2.4",
104
104
  "tempy": "0.7.0",
105
105
  "ts-deepmerge": "2.0.1",
106
+ "ts-mockito": "2.6.1",
106
107
  "typescript": "4.7.4"
107
108
  },
108
109
  "engines": {
@@ -166,7 +167,7 @@
166
167
  },
167
168
  "warn-if-update-available": {
168
169
  "timeoutInDays": 0.5,
169
- "message": "<%= chalk.bold('★') %> <%= chalk.bold(config.name + '@' + latest) %> <%= chalk.bold('is now available, please upgrade.') %>\n<%= chalk.dim('Proceeding with outdated version') %>\n"
170
+ "message": "<%= chalk('★') %> <%= chalk.bold(config.name + '@' + latest) %> <%= chalk.bold('is now available.') %>\n<%= chalk.dim('To upgrade, run ') %><%= chalk.dim(chalk.bold('npm install -g eas-cli')) %><%= chalk.dim('.') %>\n<%= chalk.dim('Proceeding with outdated version.') %>\n"
170
171
  },
171
172
  "update": {
172
173
  "node": {
@@ -201,5 +202,9 @@
201
202
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
202
203
  "clean": "rm -rf dist build tmp node_modules yarn-error.log"
203
204
  },
204
- "gitHead": "be38117012a25011044440d48b6125cfed8aac2a"
205
+ "volta": {
206
+ "node": "18.6.0",
207
+ "yarn": "1.22.19"
208
+ },
209
+ "gitHead": "f797ae1c0a9514403286aca9ef42233569ce768a"
205
210
  }