eas-cli 20.2.0 → 20.3.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 +202 -110
  2. package/build/commandUtils/posthog.d.ts +4 -0
  3. package/build/commandUtils/posthog.js +23 -0
  4. package/build/commands/account/audit.d.ts +17 -0
  5. package/build/commands/account/audit.js +112 -0
  6. package/build/commands/integrations/posthog/connect.d.ts +27 -0
  7. package/build/commands/integrations/posthog/connect.js +432 -0
  8. package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
  9. package/build/commands/integrations/posthog/dashboard.js +66 -0
  10. package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
  11. package/build/commands/integrations/posthog/disconnect.js +80 -0
  12. package/build/commands/update/view.d.ts +7 -0
  13. package/build/commands/update/view.js +30 -3
  14. package/build/graphql/generated.d.ts +519 -30
  15. package/build/graphql/generated.js +29 -5
  16. package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
  17. package/build/graphql/mutations/PostHogMutation.js +55 -0
  18. package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
  19. package/build/graphql/queries/AuditLogQuery.js +57 -0
  20. package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
  21. package/build/graphql/queries/PostHogQuery.d.ts +6 -0
  22. package/build/graphql/queries/PostHogQuery.js +49 -0
  23. package/build/graphql/types/AuditLog.d.ts +1 -0
  24. package/build/graphql/types/AuditLog.js +18 -0
  25. package/build/graphql/types/PostHogConnection.d.ts +7 -0
  26. package/build/graphql/types/PostHogConnection.js +30 -0
  27. package/build/simulator/utils.js +28 -5
  28. package/build/user/SessionManager.d.ts +1 -22
  29. package/build/user/SessionManager.js +7 -89
  30. package/oclif.manifest.json +566 -186
  31. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eas-cli",
3
- "version": "20.2.0",
3
+ "version": "20.3.0",
4
4
  "description": "EAS command line tool",
5
5
  "keywords": [
6
6
  "cli",
@@ -224,6 +224,9 @@
224
224
  "update": {
225
225
  "description": "manage individual updates"
226
226
  },
227
+ "update:embedded": {
228
+ "description": "manage embedded updates registered with EAS Update"
229
+ },
227
230
  "webhook": {
228
231
  "description": "manage webhooks"
229
232
  },
@@ -252,5 +255,5 @@
252
255
  "engines": {
253
256
  "node": ">=20.0.0"
254
257
  },
255
- "gitHead": "203e9997eebafcbddc600285f6a809afb4a93a74"
258
+ "gitHead": "490457976c996d06447e6442fbd1aec1ace09f1b"
256
259
  }