eas-cli 18.9.0 → 18.10.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 (30) hide show
  1. package/README.md +223 -93
  2. package/build/build/utils/repository.js +7 -3
  3. package/build/commandUtils/convex.d.ts +11 -0
  4. package/build/commandUtils/convex.js +71 -0
  5. package/build/commands/build/download.js +1 -0
  6. package/build/commands/build/resign.js +0 -1
  7. package/build/commands/integrations/convex/connect.d.ts +24 -0
  8. package/build/commands/integrations/convex/connect.js +258 -0
  9. package/build/commands/integrations/convex/dashboard.d.ts +9 -0
  10. package/build/commands/integrations/convex/dashboard.js +42 -0
  11. package/build/commands/integrations/convex/project/delete.d.ts +13 -0
  12. package/build/commands/integrations/convex/project/delete.js +65 -0
  13. package/build/commands/integrations/convex/project.d.ts +9 -0
  14. package/build/commands/integrations/convex/project.js +28 -0
  15. package/build/commands/integrations/convex/team/delete.d.ts +17 -0
  16. package/build/commands/integrations/convex/team/delete.js +93 -0
  17. package/build/commands/integrations/convex/team/invite.d.ts +19 -0
  18. package/build/commands/integrations/convex/team/invite.js +108 -0
  19. package/build/commands/integrations/convex/team.d.ts +9 -0
  20. package/build/commands/integrations/convex/team.js +35 -0
  21. package/build/fingerprint/cli.js +1 -0
  22. package/build/graphql/generated.d.ts +241 -1
  23. package/build/graphql/mutations/ConvexMutation.d.ts +10 -0
  24. package/build/graphql/mutations/ConvexMutation.js +89 -0
  25. package/build/graphql/queries/ConvexQuery.d.ts +6 -0
  26. package/build/graphql/queries/ConvexQuery.js +49 -0
  27. package/build/graphql/types/ConvexTeamConnection.d.ts +11 -0
  28. package/build/graphql/types/ConvexTeamConnection.js +42 -0
  29. package/oclif.manifest.json +3884 -3333
  30. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eas-cli",
3
- "version": "18.9.0",
3
+ "version": "18.10.0",
4
4
  "description": "EAS command line tool",
5
5
  "keywords": [
6
6
  "cli",
@@ -37,7 +37,7 @@
37
37
  "typecheck-for-build": "tsc --project tsconfig.build.json",
38
38
  "test": "jest",
39
39
  "version": "yarn run -T oclif readme && node scripts/patch-readme && git add README.md",
40
- "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
40
+ "generate-graphql-code": "graphql-codegen --config graphql-codegen.ts",
41
41
  "verify-graphql-code": "./scripts/verify-graphql.sh",
42
42
  "clean": "rimraf dist build tmp node_modules yarn-error.log \"*.tsbuildinfo\"",
43
43
  "copy-new-templates": "rimraf build/commandUtils/new/templates && mkdir -p build/commandUtils/new && cp -r src/commandUtils/new/templates build/commandUtils/new"
@@ -202,7 +202,7 @@
202
202
  "description": "manage project and account environment variables"
203
203
  },
204
204
  "integrations": {
205
- "description": "manage service connections"
205
+ "description": "manage third-party service integrations"
206
206
  },
207
207
  "metadata": {
208
208
  "description": "manage store configuration"
@@ -250,5 +250,5 @@
250
250
  "engines": {
251
251
  "node": ">=20.0.0"
252
252
  },
253
- "gitHead": "8fdf47aa7d5d8241d8afa04924a1d0f6d00fdc5a"
253
+ "gitHead": "cacd48bf669342be783037607b02e5f9b1b148c0"
254
254
  }