@supabase/lite 0.8.1-next.1 → 0.8.1-next.2

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.
@@ -156,6 +156,7 @@ declare const schema: s.ObjectSchema<{
156
156
  secure_password_change?: boolean | undefined;
157
157
  otp_expiry?: number | undefined;
158
158
  smtp?: {
159
+ enabled?: boolean | undefined;
159
160
  port?: number | undefined;
160
161
  host?: string | undefined;
161
162
  user?: string | undefined;
@@ -457,6 +458,7 @@ declare const schema: s.ObjectSchema<{
457
458
  secure_password_change?: boolean | undefined;
458
459
  otp_expiry?: number | undefined;
459
460
  smtp?: {
461
+ enabled?: boolean | undefined;
460
462
  port?: number | undefined;
461
463
  host?: string | undefined;
462
464
  user?: string | undefined;
@@ -970,8 +972,13 @@ interface AuthConfig {
970
972
  otp_length?: number;
971
973
  otp_expiry?: number;
972
974
  smtp?: {
973
- sender_name?: string;
975
+ enabled?: boolean;
976
+ host?: string;
977
+ port?: number;
978
+ user?: string;
979
+ pass?: string;
974
980
  admin_email?: string;
981
+ sender_name?: string;
975
982
  };
976
983
  template?: Partial<Record<EmailTemplateType, EmailTemplateConfig>>;
977
984
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/lite",
3
- "version": "0.8.1-next.1",
3
+ "version": "0.8.1-next.2",
4
4
  "description": "Lightweight TypeScript-native Supabase implementation on SQLite (alpha). PostgREST + GoTrue compatible — use @supabase/supabase-js as-is.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -150,6 +150,7 @@
150
150
  "pgsql-deparser": "17.18.3",
151
151
  "bcryptjs": "^3.0.3",
152
152
  "chokidar": "^5.0.0",
153
+ "nodemailer": "^9.0.5",
153
154
  "uuid": "^13.0.0"
154
155
  },
155
156
  "peerDependencies": {
@@ -179,6 +180,7 @@
179
180
  "@pgsql/utils": "^17.8.15",
180
181
  "@sqlite.org/sqlite-wasm": "^3.51.2-build7",
181
182
  "@types/bcryptjs": "^3.0.0",
183
+ "@types/nodemailer": "^8.0.1",
182
184
  "aws4fetch": "^1.0.20",
183
185
  "bun-plugin-tailwind": "^0.1.2",
184
186
  "dedent": "^1.7.2",