@everylanguage/shared-types 1.0.1 → 1.0.5

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 (3) hide show
  1. package/README.md +0 -26
  2. package/package.json +4 -2
  3. package/types/database.d.ts +3495 -119
package/README.md CHANGED
@@ -298,29 +298,3 @@ npm run type-check
298
298
  # Run CI checks locally
299
299
  npm run lint && npm run format:check && npm run type-check && npm test
300
300
  ```
301
-
302
- ## 📚 Documentation
303
-
304
- - [Development Setup](./docs/development-setup.md)
305
- - [CI/CD Pipeline](./docs/ci-cd-pipeline.md)
306
- - [GitHub Setup Guide](./docs/github-setup-guide.md)
307
- - [Project Setup Checklist](./docs/project-setup-checklist.md)
308
-
309
- ## 🤝 Contributing
310
-
311
- 1. Read the [GitHub Setup Guide](./docs/github-setup-guide.md)
312
- 2. Follow the development workflow above
313
- 3. Ensure all CI checks pass
314
- 4. Request review from team members
315
- 5. Keep PRs small and focused
316
-
317
- ## 📄 License
318
-
319
- This project is licensed under the ISC License - see the [LICENSE](LICENSE) file for details.
320
-
321
- ## 🆘 Support
322
-
323
- - Check [troubleshooting section](#-troubleshooting) above
324
- - Review documentation in `docs/` folder
325
- - Create an issue for bugs or feature requests
326
- - Ask team members for help with setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everylanguage/shared-types",
3
- "version": "1.0.1",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "main": "types/database.js",
6
6
  "types": "types/database.d.ts",
@@ -35,6 +35,7 @@
35
35
  "generate-types": "supabase gen types typescript --local > types/database.ts",
36
36
  "build-types": "tsc types/database.ts --declaration --emitDeclarationOnly --outDir types/",
37
37
  "prepare-package": "npm run build-types && echo '// Re-export all types from the TypeScript definitions\nexport * from \"./database.d.ts\";' > types/database.js",
38
+ "seed:language-region": "psql -h localhost -p 54322 -U postgres -d postgres -f supabase/seed/language_region_seed.sql",
38
39
  "prepare-package:ci": "npm run build-types && echo '// Re-export all types from the TypeScript definitions\nexport * from \"./database.d.ts\";' > types/database.js",
39
40
  "functions:serve": "supabase functions serve",
40
41
  "functions:deploy": "supabase functions deploy",
@@ -63,7 +64,6 @@
63
64
  "license": "ISC",
64
65
  "description": "Supabase backend for EL audio translation platform",
65
66
  "dependencies": {
66
- "@types/node": "^24.0.3",
67
67
  "@typescript-eslint/eslint-plugin": "^8.34.1",
68
68
  "@typescript-eslint/parser": "^8.34.1",
69
69
  "eslint": "^9.29.0",
@@ -80,7 +80,9 @@
80
80
  "devDependencies": {
81
81
  "@commitlint/cli": "^19.8.1",
82
82
  "@commitlint/config-conventional": "^19.8.1",
83
+ "@supabase/supabase-js": "^2.50.2",
83
84
  "@types/jest": "^30.0.0",
85
+ "@types/node": "^24.0.7",
84
86
  "commitizen": "^4.3.1",
85
87
  "cz-conventional-changelog": "^3.3.0",
86
88
  "ts-jest": "^29.4.0"