@everylanguage/shared-types 1.0.4 → 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 (2) hide show
  1. package/package.json +2 -1
  2. package/types/database.d.ts +3406 -67
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everylanguage/shared-types",
3
- "version": "1.0.4",
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",