eas-cli 18.8.1 → 18.9.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 (32) hide show
  1. package/README.md +162 -94
  2. package/build/commands/build/download.d.ts +6 -2
  3. package/build/commands/build/download.js +130 -18
  4. package/build/commands/integrations/asc/connect.d.ts +19 -0
  5. package/build/commands/integrations/asc/connect.js +159 -0
  6. package/build/commands/integrations/asc/disconnect.d.ts +15 -0
  7. package/build/commands/integrations/asc/disconnect.js +115 -0
  8. package/build/commands/integrations/asc/status.d.ts +14 -0
  9. package/build/commands/integrations/asc/status.js +65 -0
  10. package/build/commands/simulator/start.js +2 -0
  11. package/build/commands/simulator/stop.d.ts +13 -0
  12. package/build/commands/simulator/stop.js +38 -0
  13. package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +2 -1
  14. package/build/credentials/ios/actions/AscApiKeyUtils.js +16 -0
  15. package/build/credentials/ios/appstore/AppStoreApi.d.ts +3 -1
  16. package/build/credentials/ios/appstore/AppStoreApi.js +2 -2
  17. package/build/graphql/generated.d.ts +243 -0
  18. package/build/graphql/generated.js +11 -3
  19. package/build/graphql/mutations/AscAppLinkMutation.d.ts +12 -0
  20. package/build/graphql/mutations/AscAppLinkMutation.js +36 -0
  21. package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +2 -1
  22. package/build/graphql/mutations/DeviceRunSessionMutation.js +15 -0
  23. package/build/graphql/queries/AscAppLinkQuery.d.ts +8 -0
  24. package/build/graphql/queries/AscAppLinkQuery.js +67 -0
  25. package/build/integrations/asc/ascApiKey.d.ts +7 -0
  26. package/build/integrations/asc/ascApiKey.js +26 -0
  27. package/build/integrations/asc/utils.d.ts +21 -0
  28. package/build/integrations/asc/utils.js +56 -0
  29. package/build/utils/download.d.ts +1 -0
  30. package/build/utils/download.js +1 -0
  31. package/oclif.manifest.json +1342 -962
  32. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eas-cli",
3
- "version": "18.8.1",
3
+ "version": "18.9.1",
4
4
  "description": "EAS command line tool",
5
5
  "keywords": [
6
6
  "cli",
@@ -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.8.0",
66
+ "@expo/steps": "18.9.0",
67
67
  "@expo/timeago.js": "1.0.0",
68
68
  "@oclif/core": "^4.8.3",
69
69
  "@oclif/plugin-autocomplete": "^3.2.40",
@@ -201,6 +201,9 @@
201
201
  "env": {
202
202
  "description": "manage project and account environment variables"
203
203
  },
204
+ "integrations": {
205
+ "description": "manage service connections"
206
+ },
204
207
  "metadata": {
205
208
  "description": "manage store configuration"
206
209
  },
@@ -247,5 +250,5 @@
247
250
  "engines": {
248
251
  "node": ">=20.0.0"
249
252
  },
250
- "gitHead": "714aec69c79af71e68b0212cb3e511f6ccef2ae0"
253
+ "gitHead": "0e2a1756ce08460ed4182770557a877a27d21bcf"
251
254
  }