eas-cli 18.7.0 → 18.8.1

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 (49) hide show
  1. package/README.md +147 -90
  2. package/build/build/utils/url.d.ts +6 -0
  3. package/build/build/utils/url.js +9 -0
  4. package/build/channel/insights/formatInsights.d.ts +47 -0
  5. package/build/channel/insights/formatInsights.js +108 -0
  6. package/build/commands/channel/insights.d.ts +18 -0
  7. package/build/commands/channel/insights.js +71 -0
  8. package/build/commands/observe/events.d.ts +1 -0
  9. package/build/commands/observe/events.js +17 -4
  10. package/build/commands/observe/metrics.d.ts +1 -0
  11. package/build/commands/observe/metrics.js +18 -6
  12. package/build/commands/observe/versions.d.ts +1 -0
  13. package/build/commands/observe/versions.js +17 -4
  14. package/build/commands/simulator/start.d.ts +16 -0
  15. package/build/commands/simulator/start.js +203 -0
  16. package/build/commands/update/insights.d.ts +19 -0
  17. package/build/commands/update/insights.js +75 -0
  18. package/build/commands/update/view.d.ts +4 -0
  19. package/build/commands/update/view.js +47 -2
  20. package/build/credentials/ios/appstore/capabilityIdentifiers.js +28 -3
  21. package/build/graphql/client.d.ts +13 -0
  22. package/build/graphql/client.js +36 -1
  23. package/build/graphql/generated.d.ts +318 -0
  24. package/build/graphql/generated.js +21 -3
  25. package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +5 -0
  26. package/build/graphql/mutations/DeviceRunSessionMutation.js +34 -0
  27. package/build/graphql/queries/ChannelInsightsQuery.d.ts +12 -0
  28. package/build/graphql/queries/ChannelInsightsQuery.js +81 -0
  29. package/build/graphql/queries/DeviceRunSessionQuery.d.ts +5 -0
  30. package/build/graphql/queries/DeviceRunSessionQuery.js +28 -0
  31. package/build/graphql/queries/UpdateInsightsQuery.d.ts +10 -0
  32. package/build/graphql/queries/UpdateInsightsQuery.js +53 -0
  33. package/build/graphql/types/Observe.js +1 -0
  34. package/build/insights/formatTimespan.d.ts +7 -0
  35. package/build/insights/formatTimespan.js +15 -0
  36. package/build/insights/timeRange.d.ts +10 -0
  37. package/build/insights/timeRange.js +10 -0
  38. package/build/metadata/apple/tasks/previews.js +41 -15
  39. package/build/observe/formatEvents.d.ts +3 -0
  40. package/build/observe/formatEvents.js +4 -0
  41. package/build/observe/formatMetrics.d.ts +3 -2
  42. package/build/observe/formatMetrics.js +16 -27
  43. package/build/observe/formatVersions.js +2 -8
  44. package/build/update/insights/formatInsights.d.ts +34 -0
  45. package/build/update/insights/formatInsights.js +128 -0
  46. package/build/utils/renderTextTable.d.ts +6 -0
  47. package/build/utils/renderTextTable.js +23 -0
  48. package/oclif.manifest.json +995 -593
  49. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eas-cli",
3
- "version": "18.7.0",
3
+ "version": "18.8.1",
4
4
  "description": "EAS command line tool",
5
5
  "keywords": [
6
6
  "cli",
@@ -47,8 +47,8 @@
47
47
  "@expo/code-signing-certificates": "0.0.5",
48
48
  "@expo/config": "55.0.10",
49
49
  "@expo/config-plugins": "55.0.7",
50
- "@expo/eas-build-job": "18.6.0",
51
- "@expo/eas-json": "18.6.0",
50
+ "@expo/eas-build-job": "18.8.0",
51
+ "@expo/eas-json": "18.8.0",
52
52
  "@expo/env": "^1.0.0",
53
53
  "@expo/json-file": "8.3.3",
54
54
  "@expo/logger": "18.5.0",
@@ -63,7 +63,7 @@
63
63
  "@expo/results": "1.0.0",
64
64
  "@expo/rudder-sdk-node": "1.1.1",
65
65
  "@expo/spawn-async": "1.7.2",
66
- "@expo/steps": "18.6.0",
66
+ "@expo/steps": "18.8.0",
67
67
  "@expo/timeago.js": "1.0.0",
68
68
  "@oclif/core": "^4.8.3",
69
69
  "@oclif/plugin-autocomplete": "^3.2.40",
@@ -247,5 +247,5 @@
247
247
  "engines": {
248
248
  "node": ">=20.0.0"
249
249
  },
250
- "gitHead": "7f163e3e529c71db2d394db4826ffff41313ae37"
250
+ "gitHead": "714aec69c79af71e68b0212cb3e511f6ccef2ae0"
251
251
  }