@everylanguage/shared-types 1.0.6 → 1.0.8
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.
- package/package.json +5 -1
- package/types/README.md +3 -3
- package/types/database.d.ts +1707 -203
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everylanguage/shared-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "types/database.js",
|
|
6
6
|
"types": "types/database.d.ts",
|
|
@@ -66,10 +66,12 @@
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
68
68
|
"@typescript-eslint/parser": "^8.34.1",
|
|
69
|
+
"backblaze-b2": "^1.7.1",
|
|
69
70
|
"eslint": "^9.29.0",
|
|
70
71
|
"eslint-config-prettier": "^10.1.5",
|
|
71
72
|
"eslint-plugin-prettier": "^5.5.0",
|
|
72
73
|
"eslint-plugin-sql": "^3.2.2",
|
|
74
|
+
"form-data": "^4.0.3",
|
|
73
75
|
"husky": "^9.1.7",
|
|
74
76
|
"jest": "^30.0.2",
|
|
75
77
|
"lint-staged": "^16.1.2",
|
|
@@ -83,8 +85,10 @@
|
|
|
83
85
|
"@supabase/supabase-js": "^2.50.2",
|
|
84
86
|
"@types/jest": "^30.0.0",
|
|
85
87
|
"@types/node": "^24.0.7",
|
|
88
|
+
"@types/node-fetch": "^2.6.12",
|
|
86
89
|
"commitizen": "^4.3.1",
|
|
87
90
|
"cz-conventional-changelog": "^3.3.0",
|
|
91
|
+
"node-fetch": "^3.3.2",
|
|
88
92
|
"ts-jest": "^29.4.0"
|
|
89
93
|
}
|
|
90
94
|
}
|
package/types/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @everylanguage/shared-types
|
|
2
2
|
|
|
3
|
-
🎯 **Shared TypeScript types
|
|
3
|
+
🎯 **Shared TypeScript types**
|
|
4
4
|
|
|
5
5
|
This package contains automatically generated TypeScript types from our Supabase database schema, ensuring type safety across all applications in the EverlyLanguage ecosystem.
|
|
6
6
|
|
|
@@ -59,6 +59,6 @@ This package follows [Semantic Versioning](https://semver.org/):
|
|
|
59
59
|
|
|
60
60
|
## 🐛 Issues & Support
|
|
61
61
|
|
|
62
|
-
- **Backend Issues**: [Backend Repository](https://github.com/
|
|
63
|
-
- **Type Issues**: [Type-specific issues](https://github.com/
|
|
62
|
+
- **Backend Issues**: [Backend Repository](https://github.com/every-language/el-backend/issues)
|
|
63
|
+
- **Type Issues**: [Type-specific issues](https://github.com/every-language/el-backend/issues?q=label%3Atypes)
|
|
64
64
|
- **Application Integration**: Contact your respective app team
|